QEMU QMP Reference Manualïƒ

Introductionïƒ

This manual describes the commands and events supported by the QEMU Monitor Protocol (QMP).

For locating a particular item, please see the QMP Index.

The following notation is used in examples:

Example:

-> ... text sent by client (commands) ...
<- ... text sent by server (command responses and events) ...

Example text is formatted for readability. However, in real protocol usage, its commonly emitted as a single line.

Please refer to the QEMU Machine Protocol Specification for the general format of commands, responses, and events.

QMP errorsïƒ

Enum QapiErrorClass (Since: 1.2)ïƒ

QEMU error classes

Values:
  • GenericError – this is used for errors that don’t require a specific error class. This should be the default case for most errors

  • CommandNotFound – the requested command has not been found

  • DeviceNotActive – a device has failed to be become active

  • DeviceNotFound – the requested device has not been found

  • KVMMissingCap – the requested operation can’t be fulfilled because a required KVM capability is missing

Common data typesïƒ

Enum IoOperationType (Since: 2.1)ïƒ

An enumeration of the I/O operation types

Values:
  • read – read operation

  • write – write operation

Enum OnOffAuto (Since: 2.2)ïƒ

An enumeration of three options: on, off, and auto

Values:
  • auto – QEMU selects the value between on and off

  • on – Enabled

  • off – Disabled

Enum OnOffSplit (Since: 2.6)ïƒ

An enumeration of three values: on, off, and split

Values:
  • on – Enabled

  • off – Disabled

  • split – Mixed

Alternate StrOrNull (Since: 2.10)ïƒ

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.

Alternatives:
  • s (string) – the string value

  • n (null) – no string value

Enum OffAutoPCIBAR (Since: 2.12)ïƒ

An enumeration of options for specifying a PCI BAR

Values:
  • off – The specified feature is disabled

  • auto – The PCI BAR for the feature is automatically selected

  • bar0 – PCI BAR0 is used for the feature

  • bar1 – PCI BAR1 is used for the feature

  • bar2 – PCI BAR2 is used for the feature

  • bar3 – PCI BAR3 is used for the feature

  • bar4 – PCI BAR4 is used for the feature

  • bar5 – PCI BAR5 is used for the feature

Enum PCIELinkSpeed (Since: 4.0)ïƒ

An enumeration of PCIe link speeds in units of GT/s

Values:
  • 2_5 – 2.5GT/s

  • 5 – 5.0GT/s

  • 8 – 8.0GT/s

  • 16 – 16.0GT/s

  • 32 – 32.0GT/s (since 9.0)

  • 64 – 64.0GT/s (since 9.0)

Enum PCIELinkWidth (Since: 4.0)ïƒ

An enumeration of PCIe link width

Values:
  • 1 – x1

  • 2 – x2

  • 4 – x4

  • 8 – x8

  • 12 – x12

  • 16 – x16

  • 32 – x32

Enum HostMemPolicy (Since: 2.1)ïƒ

Host memory policy types

Values:
  • default – restore default policy, remove any nondefault policy

  • preferred – set the preferred host nodes for allocation

  • bind – a strict policy that restricts memory allocation to the host nodes specified

  • interleave – memory allocations are interleaved across the set of host nodes specified

Enum NetFilterDirection (Since: 2.5)ïƒ

Indicates whether a netfilter is attached to a netdev’s transmit queue or receive queue or both.

Values:
  • all – the filter is attached both to the receive and the transmit queue of the netdev (default).

  • rx – the filter is attached to the receive queue of the netdev, where it will receive packets sent to the netdev.

  • tx – the filter is attached to the transmit queue of the netdev, where it will receive packets sent by the netdev.

Enum GrabToggleKeys (Since: 4.0)ïƒ

Key combinations to toggle input-linux between host and guest.

Values:
  • ctrl-ctrl – left and right control key

  • alt-alt – left and right alt key

  • shift-shift – left and right shift key

  • meta-meta – left and right meta key

  • scrolllock – scroll lock key

  • ctrl-scrolllock – either control key and scroll lock key

Object HumanReadableText (Since: 6.2)ïƒ
Members:
  • human-readable-text (string) – Formatted output intended for humans.

Enum EndianMode (Since: 10.0)ïƒ
Values:
  • unspecified – Endianness not specified

  • little – Little endianness

  • big – Big endianness

Socket data typesïƒ

Enum NetworkAddressFamily (Since: 2.1)ïƒ

The network address family

Values:
  • ipv4 – IPV4 family

  • ipv6 – IPV6 family

  • unix – unix socket

  • vsock – vsock family (since 2.8)

  • unknown – otherwise

Object InetSocketAddressBaseïƒ
Members:
  • host (string) – host part of the address

  • port (string) – port part of the address

Object InetSocketAddress (Since: 1.3)ïƒ

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

  • keep-alive (boolean, optional) – enable keep-alive when connecting to this socket. Not supported for passive sockets. (Since 4.2)

  • mptcp (boolean, optional) – enable multi-path TCP. (Since 6.1)

  • The members of InetSocketAddressBase.

Object UnixSocketAddress (Since: 1.3)ïƒ

Captures a socket address in the local (“Unix socketâ€) namespace.

Members:
  • path (string) – filesystem path to use

  • abstract (boolean, optional) – if true, this is a Linux abstract socket address. path will be prefixed by a null byte, and optionally padded with null bytes. Defaults to false. (Since 5.1)

  • tight (boolean, optional) – if false, pad an abstract socket address with enough null bytes to make it fill struct sockaddr_un member sun_path. Defaults to true. (Since 5.1)

Object VsockSocketAddress (Since: 2.8)ïƒ

Captures a socket address in the vsock namespace.

Members:
  • cid (string) – unique host identifier

  • port (string) – port

Note

String types are used to allow for possible future hostname or service resolution support.

Object FdSocketAddress (Since: 1.2)ïƒ

A file descriptor name or number.

Members:
  • str (string) – decimal is for file descriptor number, otherwise it’s 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.

Object InetSocketAddressWrapper (Since: 1.3)ïƒ
Members:
Object UnixSocketAddressWrapper (Since: 1.3)ïƒ
Members:
Object VsockSocketAddressWrapper (Since: 2.8)ïƒ
Members:
Object FdSocketAddressWrapper (Since: 1.3)ïƒ
Members:
Object SocketAddressLegacy (Since: 1.3)ïƒ

Captures the address of a socket, which could also be a named file descriptor

Members:
Enum SocketAddressType (Since: 2.9)ïƒ

Available SocketAddress types

Values:
  • inet – Internet address

  • unix – Unix domain socket

  • vsock – VMCI address

  • fd – Socket file descriptor

Object SocketAddress (Since: 2.9)ïƒ

Captures the address of a socket, which could also be a socket file descriptor

Members:

VM run stateïƒ

Enum RunStateïƒ

An enumeration of VM run states.

Values:
  • debug – QEMU is running on a debugger

  • finish-migrate – guest is paused to finish the migration process

  • inmigrate – guest 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-error – An internal error that prevents further guest execution has occurred

  • io-error – the last IOP has failed and the device is configured to pause on I/O errors

  • paused – guest has been paused via the ‘stop’ command

  • postmigrate – guest is paused following a successful ‘migrate’

  • prelaunch – QEMU was started with -S and guest has not started

  • restore-vm – guest is paused to restore VM state

  • running – guest is actively running

  • save-vm – guest is paused to save the VM state

  • shutdown – guest is shut down (and -no-shutdown is in use)

  • suspended – guest is suspended (ACPI S3)

  • watchdog – the watchdog action is configured to pause and has been triggered

  • guest-panicked – guest has been panicked as a result of guest OS panic

  • colo – guest 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)

Enum ShutdownCauseïƒ

An enumeration of reasons for a Shutdown.

Values:
  • none – No shutdown request pending

  • host-error – An error prevents further use of guest

  • host-qmp-quit – Reaction to the QMP command ‘quit’

  • host-qmp-system-reset – Reaction to the QMP command ‘system_reset’

  • host-signal – Reaction to a signal, such as SIGINT

  • host-ui – Reaction to a UI event, like window close

  • guest-shutdown – Guest shutdown/suspend request, via ACPI or other hardware-specific means

  • guest-reset – Guest reset request, and command line turns that into a shutdown

  • guest-panic – Guest panicked, and command line turns that into a shutdown

  • subsystem-reset – Partial guest reset that does not trigger QMP events and ignores –no-reboot. This is useful for sanitizing hypercalls on s390 that are used during kexec/kdump/boot

  • snapshot-load – A snapshot is being loaded by the record & replay subsystem. This value is used only within QEMU. It doesn’t occur in QMP. (since 7.2)

Object StatusInfo (Since: 0.14)ïƒ

Information about VM run state

Members:
  • running (boolean) – true if all VCPUs are runnable, false if not runnable

  • status (RunState) – the virtual machine RunState

Command query-status (Since: 0.14)ïƒ

Query the run status of the VM

Return:

StatusInfo – StatusInfo reflecting the VM

Example:

-> { "execute": "query-status" }
<- { "return": { "running": true,
                 "status": "running" } }
Event SHUTDOWN (Since: 0.12)ïƒ

Emitted when the virtual machine has shut down, indicating that qemu is about to exit.

Members:
  • guest (boolean) – If 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)

  • reason (ShutdownCause) – The ShutdownCause which resulted in the SHUTDOWN. (since 4.0)

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.

Example:

<- { "event": "SHUTDOWN",
     "data": { "guest": true, "reason": "guest-shutdown" },
     "timestamp": { "seconds": 1267040730, "microseconds": 682951 } }
Event POWERDOWN (Since: 0.12)ïƒ

Emitted when the virtual machine is powered down through the power control system, such as via ACPI.

Example:

<- { "event": "POWERDOWN",
     "timestamp": { "seconds": 1267040730, "microseconds": 682951 } }
Event RESET (Since: 0.12)ïƒ

Emitted when the virtual machine is reset

Members:
  • guest (boolean) – If 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)

  • reason (ShutdownCause) – The ShutdownCause of the RESET. (since 4.0)

Example:

<- { "event": "RESET",
     "data": { "guest": false, "reason": "guest-reset" },
     "timestamp": { "seconds": 1267041653, "microseconds": 9518 } }
Event STOP (Since: 0.12)ïƒ

Emitted when the virtual machine is stopped

Example:

<- { "event": "STOP",
     "timestamp": { "seconds": 1267041730, "microseconds": 281295 } }
Event RESUME (Since: 0.12)ïƒ

Emitted when the virtual machine resumes execution

Example:

<- { "event": "RESUME",
     "timestamp": { "seconds": 1271770767, "microseconds": 582542 } }
Event SUSPEND (Since: 1.1)ïƒ

Emitted when guest enters a hardware suspension state, for example, S3 state, which is sometimes called standby state

Example:

<- { "event": "SUSPEND",
     "timestamp": { "seconds": 1344456160, "microseconds": 309119 } }
Event SUSPEND_DISK (Since: 1.2)ïƒ

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.

Example:

<- { "event": "SUSPEND_DISK",
     "timestamp": { "seconds": 1344456160, "microseconds": 309119 } }
Event WAKEUP (Since: 1.1)ïƒ

Emitted when the guest has woken up from suspend state and is running

Example:

<- { "event": "WAKEUP",
     "timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
Event WATCHDOG (Since: 0.13)ïƒ

Emitted when the watchdog device’s timer is expired

Members:

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.

Example:

<- { "event": "WATCHDOG",
     "data": { "action": "reset" },
     "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
Enum WatchdogAction (Since: 2.1)ïƒ

An enumeration of the actions taken when the watchdog device’s timer is expired

Values:
  • reset – system resets

  • shutdown – system shutdown, note that it is similar to powerdown, which tries to set to system status and notify guest

  • poweroff – system poweroff, the emulator program exits

  • pause – system pauses, similar to stop

  • debug – system enters debug state

  • none – nothing is done

  • inject-nmi – a non-maskable interrupt is injected into the first VCPU (all VCPUS on x86) (since 2.4)

Enum RebootAction (Since: 6.0)ïƒ

Possible QEMU actions upon guest reboot

Values:
  • reset – Reset the VM

  • shutdown – Shutdown the VM and exit, according to the shutdown action

Enum ShutdownAction (Since: 6.0)ïƒ

Possible QEMU actions upon guest shutdown

Values:
  • poweroff – Shutdown the VM and exit

  • pause – pause the VM

Enum PanicAction (Since: 6.0)ïƒ
Values:
  • none – Continue VM execution

  • pause – Pause the VM

  • shutdown – Shutdown the VM and exit, according to the shutdown action

  • exit-failure – Shutdown the VM and exit with nonzero status (since 7.1)

Command watchdog-set-action (Since: 2.11)ïƒ

Set watchdog action.

Arguments:
  • action (WatchdogAction) – WatchdogAction action taken when watchdog timer expires.

Example:

-> { "execute": "watchdog-set-action",
     "arguments": { "action": "inject-nmi" } }
<- { "return": {} }
Command set-action (Since: 6.0)ïƒ

Set the actions that will be taken by the emulator in response to guest events.

Arguments:
  • reboot (RebootAction, optional) – RebootAction action taken on guest reboot.

  • shutdown (ShutdownAction, optional) – ShutdownAction action taken on guest shutdown.

  • panic (PanicAction, optional) – PanicAction action taken on guest panic.

  • watchdog (WatchdogAction, optional) – WatchdogAction action taken when watchdog timer expires.

Example:

-> { "execute": "set-action",
     "arguments": { "reboot": "shutdown",
                    "shutdown" : "pause",
                    "panic": "pause",
                    "watchdog": "inject-nmi" } }
<- { "return": {} }
Event GUEST_PANICKED (Since: 1.5)ïƒ

Emitted when guest OS panic is detected

Members:
  • action (GuestPanicAction) – action that has been taken, currently always “pauseâ€

  • info (GuestPanicInformation, optional) – information about a panic (since 2.9)

Example:

<- { "event": "GUEST_PANICKED",
     "data": { "action": "pause" },
     "timestamp": { "seconds": 1648245231, "microseconds": 900001 } }
Event GUEST_CRASHLOADED (Since: 5.0)ïƒ

Emitted when guest OS crash loaded is detected

Members:

Example:

<- { "event": "GUEST_CRASHLOADED",
     "data": { "action": "run" },
     "timestamp": { "seconds": 1648245259, "microseconds": 893771 } }
Event GUEST_PVSHUTDOWN (Since: 9.1)ïƒ

Emitted when guest submits a shutdown request via pvpanic interface

Example:

<- { "event": "GUEST_PVSHUTDOWN",
     "timestamp": { "seconds": 1648245259, "microseconds": 893771 } }
Enum GuestPanicAction (Since: 2.1)ïƒ

An enumeration of the actions taken when guest OS panic is detected

Values:
  • pause – system pauses

  • poweroff – system powers off (since 2.8)

  • run – system continues to run (since 5.0)

Enum GuestPanicInformationType (Since: 2.9)ïƒ

An enumeration of the guest panic information types

Values:
  • hyper-v – hyper-v guest panic information type

  • s390 – s390 guest panic information type (Since: 2.12)

Object GuestPanicInformation (Since: 2.9)ïƒ

Information about a guest panic

Members:
Object GuestPanicInformationHyperV (Since: 2.9)ïƒ

Hyper-V specific guest panic information (HV crash MSRs)

Members:
  • arg1 (int) – for Windows, STOP code for the guest crash. For Linux, an error code.

  • arg2 (int) – for Windows, first argument of the STOP. For Linux, the guest OS ID, which has the kernel version in bits 16-47 and 0x8100 in bits 48-63.

  • arg3 (int) – for Windows, second argument of the STOP. For Linux, the program counter of the guest.

  • arg4 (int) – for Windows, third argument of the STOP. For Linux, the RAX register (x86) or the stack pointer (aarch64) of the guest.

  • arg5 (int) – for Windows, fourth argument of the STOP. For x86 Linux, the stack pointer of the guest.

Enum S390CrashReason (Since: 2.12)ïƒ

Reason why the CPU is in a crashed state.

Values:
  • unknown – no crash reason was set

  • disabled-wait – the CPU has entered a disabled wait state

  • extint-loop – clock comparator or cpu timer interrupt with new PSW enabled for external interrupts

  • pgmint-loop – program interrupt with BAD new PSW

  • opint-loop – operation exception interrupt with invalid code at the program interrupt new PSW

Object GuestPanicInformationS390 (Since: 2.12)ïƒ

S390 specific guest panic information (PSW)

Members:
  • core (int) – core id of the CPU that crashed

  • psw-mask (int) – control fields of guest PSW

  • psw-addr (int) – guest instruction address

  • reason (S390CrashReason) – guest crash reason

Event MEMORY_FAILURE (Since: 5.2)ïƒ

Emitted when a memory failure occurs on host side.

Members:

Example:

<- { "event": "MEMORY_FAILURE",
     "data": { "recipient": "hypervisor",
               "action": "fatal",
               "flags": { "action-required": false,
                          "recursive": false } },
     "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
Enum MemoryFailureRecipient (Since: 5.2)ïƒ

Hardware memory failure occurs, handled by recipient.

Values:
  • hypervisor – memory failure at QEMU process address space. (none guest memory, but used by QEMU itself).

  • guest – memory failure at guest memory,

Enum MemoryFailureAction (Since: 5.2)ïƒ

Actions taken by QEMU in response to a hardware memory failure.

Values:
  • ignore – the memory failure could be ignored. This will only be the case for action-optional failures.

  • inject – memory failure occurred in guest memory, the guest enabled MCE handling mechanism, and QEMU could inject the MCE into the guest successfully.

  • fatal – the failure is unrecoverable. This occurs for action-required failures if the recipient is the hypervisor; QEMU will exit.

  • reset – the failure is unrecoverable but confined to the guest. This occurs if the recipient is a guest guest which is not ready to handle memory failures.

Object MemoryFailureFlags (Since: 5.2)ïƒ

Additional information on memory failures.

Members:
  • action-required (boolean) – whether a memory failure event is action-required or action-optional (e.g. a failure during memory scrub).

  • recursive (boolean) – whether the failure occurred while the previous failure was still in progress.

Enum NotifyVmexitOption (Since: 7.2)ïƒ

An enumeration of the options specified when enabling notify VM exit

Values:
  • run – enable the feature, do nothing and continue if the notify VM exit happens.

  • internal-error – enable the feature, raise a internal error if the notify VM exit happens.

  • disable – disable the feature.

Cryptographyïƒ

Enum QCryptoTLSCredsEndpoint (Since: 2.5)ïƒ

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:
  • client – the network endpoint is acting as the client

  • server – the network endpoint is acting as the server

Enum QCryptoSecretFormat (Since: 2.6)ïƒ

The data format that the secret is provided in

Values:
  • raw – raw bytes. When encoded in JSON only valid UTF-8 sequences can be used

  • base64 – arbitrary base64 encoded binary data

Enum QCryptoHashAlgo (Since: 2.6)ïƒ

The supported algorithms for computing content digests

Values:
  • md5 – MD5. Should not be used in any new code, legacy compat only

  • sha1 – SHA-1. Should not be used in any new code, legacy compat only

  • sha224 – SHA-224. (since 2.7)

  • sha256 – SHA-256. Current recommended strong hash.

  • sha384 – SHA-384. (since 2.7)

  • sha512 – SHA-512. (since 2.7)

  • ripemd160 – RIPEMD-160. (since 2.7)

  • sm3 – SM3. (since 9.2.0)

Enum QCryptoCipherAlgo (Since: 2.6)ïƒ

The supported algorithms for content encryption ciphers

Values:
  • aes-128 – AES with 128 bit / 16 byte keys

  • aes-192 – AES with 192 bit / 24 byte keys

  • aes-256 – AES with 256 bit / 32 byte keys

  • des – DES with 56 bit / 8 byte keys. Do not use except in VNC. (since 6.1)

  • 3des – 3DES(EDE) with 192 bit / 24 byte keys (since 2.9)

  • cast5-128 – Cast5 with 128 bit / 16 byte keys

  • serpent-128 – Serpent with 128 bit / 16 byte keys

  • serpent-192 – Serpent with 192 bit / 24 byte keys

  • serpent-256 – Serpent with 256 bit / 32 byte keys

  • twofish-128 – Twofish with 128 bit / 16 byte keys

  • twofish-192 – Twofish with 192 bit / 24 byte keys

  • twofish-256 – Twofish with 256 bit / 32 byte keys

  • sm4 – SM4 with 128 bit / 16 byte keys (since 9.0)

Enum QCryptoCipherMode (Since: 2.6)ïƒ

The supported modes for content encryption ciphers

Values:
  • ecb – Electronic Code Book

  • cbc – Cipher Block Chaining

  • xts – XEX with tweaked code book and ciphertext stealing

  • ctr – Counter (Since 2.8)

Enum QCryptoIVGenAlgo (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:
  • plain – 64-bit sector number truncated to 32-bits

  • plain64 – 64-bit sector number

  • essiv – 64-bit sector number encrypted with a hash of the encryption key

Enum QCryptoBlockFormat (Since: 2.6)ïƒ

The supported full disk encryption formats

Values:
  • qcow – QCow/QCow2 built-in AES-CBC encryption. Use only for liberating data from old images.

  • luks – LUKS encryption format. Recommended for new images

Object QCryptoBlockOptionsBase (Since: 2.6)ïƒ

The common options that apply to all full disk encryption formats

Members:
Object QCryptoBlockOptionsQCow (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.

Object QCryptoBlockOptionsLUKS (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.

Object QCryptoBlockCreateOptionsLUKS (Since: 2.6)ïƒ

The options that apply to LUKS encryption format initialization

Members:
  • cipher-alg (QCryptoCipherAlgo, optional) – the cipher algorithm for data encryption Currently defaults to ‘aes-256’.

  • cipher-mode (QCryptoCipherMode, optional) – the cipher mode for data encryption Currently defaults to ‘xts’

  • ivgen-alg (QCryptoIVGenAlgo, optional) – the initialization vector generator Currently defaults to ‘plain64’

  • ivgen-hash-alg (QCryptoHashAlgo, optional) – the initialization vector generator hash Currently defaults to ‘sha256’

  • hash-alg (QCryptoHashAlgo, 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)

  • The members of QCryptoBlockOptionsLUKS.

Object QCryptoBlockOpenOptions (Since: 2.6)ïƒ

The options that are available for all encryption formats when opening an existing volume

Members:
Object QCryptoBlockCreateOptions (Since: 2.6)ïƒ

The options that are available for all encryption formats when initializing a new volume

Members:
Object QCryptoBlockInfoBase (Since: 2.7)ïƒ

The common information that applies to all full disk encryption formats

Members:
Object QCryptoBlockInfoLUKSSlot (Since: 2.7)ïƒ

Information about the LUKS block encryption key slot options

Members:
  • active (boolean) – whether the key slot is currently in use

  • key-offset (int) – offset 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

Object QCryptoBlockInfoLUKS (Since: 2.7)ïƒ

Information about the LUKS block encryption options

Members:
  • cipher-alg (QCryptoCipherAlgo) – the cipher algorithm for data encryption

  • cipher-mode (QCryptoCipherMode) – the cipher mode for data encryption

  • ivgen-alg (QCryptoIVGenAlgo) – the initialization vector generator

  • ivgen-hash-alg (QCryptoHashAlgo, optional) – the initialization vector generator hash

  • hash-alg (QCryptoHashAlgo) – the master key hash algorithm

  • detached-header (boolean) – whether the LUKS header is detached (Since 9.0)

  • payload-offset (int) – offset to the payload data in bytes

  • master-key-iters (int) – number of PBKDF2 iterations for key material

  • uuid (string) – unique identifier for the volume

  • slots ([QCryptoBlockInfoLUKSSlot]) – information about each key slot

Object QCryptoBlockInfo (Since: 2.7)ïƒ

Information about the block encryption options

Members:
Enum QCryptoBlockLUKSKeyslotState (Since: 5.1)ïƒ

Defines state of keyslots that are affected by the update

Values:
  • active – The slots contain the given password and marked as active

  • inactive – The slots are erased (contain garbage) and marked as inactive

Object QCryptoBlockAmendOptionsLUKS (Since: 5.1)ïƒ

This struct defines the update parameters that activate/de-activate set of keyslots

Members:
  • state (QCryptoBlockLUKSKeyslotState) – the desired state of the keyslots

  • new-secret (string, optional) – The ID of a QCryptoSecret object providing the password to be written into added active keyslots

  • old-secret (string, optional) – Optional (for deactivation only) If given will deactivate all keyslots that match password located in QCryptoSecret with this ID

  • iter-time (int, optional) – Optional (for activation only) Number of milliseconds to spend in PBKDF passphrase processing for the newly activated keyslot. Currently defaults to 2000.

  • keyslot (int, optional) –

    Optional. ID of the keyslot to activate/deactivate. For keyslot activation, keyslot should not be active already (this is unsafe to update an active keyslot), but possible if ‘force’ parameter is given. If keyslot is not given, first free keyslot will be written.

    For keyslot deactivation, this parameter specifies the exact keyslot to deactivate

  • secret (string, optional) – Optional. The ID of a QCryptoSecret object providing the password to use to retrieve current master key. Defaults to the same secret that was used to open the image

Object QCryptoBlockAmendOptions (Since: 5.1)ïƒ

The options that are available for all encryption formats when amending encryption settings

Members:
Object SecretCommonProperties (Since: 2.6)ïƒ

Properties for objects of classes derived from secret-common.

Members:
  • format (QCryptoSecretFormat, optional) – the data format that the secret is provided in (default: raw)

  • keyid (string, optional) – the name of another secret that should be used to decrypt the provided data. If not present, the data is assumed to be unencrypted.

  • iv (string, optional) – the random initialization vector used for encryption of this particular secret. Should be a base64 encrypted string of the 16-byte IV. Mandatory if keyid is given. Ignored if keyid is absent.

Object SecretProperties (Since: 2.6)ïƒ

Properties for secret objects.

Either data or file must be provided, but not both.

Members:
  • data (string, optional) – the associated with the secret from

  • file (string, optional) – the filename to load the data associated with the secret from

  • The members of SecretCommonProperties.

Object SecretKeyringProperties (Since: 5.1)ïƒ
Availability: CONFIG_SECRET_KEYRING

Properties for secret_keyring objects.

Members:
  • serial (int) – serial number that identifies a key to get from the kernel

  • The members of SecretCommonProperties.

Object TlsCredsProperties (Since: 2.5)ïƒ

Properties for objects of classes derived from tls-creds.

Members:
  • verify-peer (boolean, optional) – if true the peer credentials will be verified once the handshake is completed. This is a no-op for anonymous credentials. (default: true)

  • dir (string, optional) – the path of the directory that contains the credential files

  • endpoint (QCryptoTLSCredsEndpoint, optional) – whether the QEMU network backend that uses the credentials will be acting as a client or as a server (default: client)

  • priority (string, optional) – a gnutls priority string as described at https://gnutls.org/manual/html_node/Priority-Strings.html

Object TlsCredsAnonProperties (Since: 2.5)ïƒ

Properties for tls-creds-anon objects.

Members:
Object TlsCredsPskProperties (Since: 3.0)ïƒ

Properties for tls-creds-psk objects.

Members:
  • username (string, optional) – the username which will be sent to the server. For clients only. If absent, “qemu†is sent and the property will read back as an empty string.

  • The members of TlsCredsProperties.

Object TlsCredsX509Properties (Since: 2.5)ïƒ

Properties for tls-creds-x509 objects.

Members:
  • sanity-check (boolean, optional) – if true, perform some sanity checks before using the credentials (default: true)

  • passwordid (string, optional) – For the server-key.pem and client-key.pem files which contain sensitive private keys, it is possible to use an encrypted version by providing the passwordid parameter. This provides the ID of a previously created secret object containing the password for decryption.

  • The members of TlsCredsProperties.

Enum QCryptoAkCipherAlgo (Since: 7.1)ïƒ

The supported algorithms for asymmetric encryption ciphers

Values:
  • rsa – RSA algorithm

Enum QCryptoAkCipherKeyType (Since: 7.1)ïƒ

The type of asymmetric keys.

Values:
  • public – public key

  • private – private key

Enum QCryptoRSAPaddingAlgo (Since: 7.1)ïƒ

The padding algorithm for RSA.

Values:
  • raw – no padding used

  • pkcs1 – pkcs1#v1.5

Object QCryptoAkCipherOptionsRSA (Since: 7.1)ïƒ

Specific parameters for RSA algorithm.

Members:
Object QCryptoAkCipherOptions (Since: 7.1)ïƒ

The options that are available for all asymmetric key algorithms when creating a new QCryptoAkCipher.

Members:

Background jobsïƒ

Enum JobType (Since: 1.7)ïƒ

Type of a background job.

Values:
  • commit – block commit job type, see “block-commitâ€

  • stream – block stream job type, see “block-streamâ€

  • mirror – drive mirror job type, see “drive-mirrorâ€

  • backup – drive backup job type, see “drive-backupâ€

  • create – image creation job type, see “blockdev-create†(since 3.0)

  • amend – image options amend job type, see “x-blockdev-amend†(since 5.1)

  • snapshot-load – snapshot load job type, see “snapshot-load†(since 6.0)

  • snapshot-save – snapshot save job type, see “snapshot-save†(since 6.0)

  • snapshot-delete – snapshot delete job type, see “snapshot-delete†(since 6.0)

Enum JobStatus (Since: 2.12)ïƒ

Indicates the present state of a given job in its lifetime.

Values:
  • undefined – Erroneous, default state. Should not ever be visible.

  • created – The job has been created, but not yet started.

  • running – The job is currently running.

  • paused – The job is running, but paused. The pause may be requested by either the QMP user or by internal processes.

  • ready – The job is running, but is ready for the user to signal completion. This is used for long-running jobs like mirror that are designed to run indefinitely.

  • standby – The job is ready, but paused. This is nearly identical to paused. The job may return to ready or otherwise be canceled.

  • waiting – The job is waiting for other jobs in the transaction to converge to the waiting state. This status will likely not be visible for the last job in a transaction.

  • pending – The job has finished its work, but has finalization steps that it needs to make prior to completing. These changes will require manual intervention via job-finalize if auto-finalize was set to false. These pending changes may still fail.

  • aborting – The job is in the process of being aborted, and will finish with an error. The job will afterwards report that it is concluded. This status may not be visible to the management process.

  • concluded – The job has finished all work. If auto-dismiss was set to false, the job will remain in the query list until it is dismissed via job-dismiss.

  • null – The job is in the process of being dismantled. This state should not ever be visible externally.

Enum JobVerb (Since: 2.12)ïƒ

Represents command verbs that can be applied to a job.

Values:
  • cancel – see job-cancel

  • pause – see job-pause

  • resume – see job-resume

  • set-speed – see block-job-set-speed

  • complete – see job-complete

  • dismiss – see job-dismiss

  • finalize – see job-finalize

  • change – see block-job-change (since 8.2)

Event JOB_STATUS_CHANGE (Since: 3.0)ïƒ

Emitted when a job transitions to a different status.

Members:
  • id (string) – The job identifier

  • status (JobStatus) – The new job status

Command job-pause (Since: 3.0)ïƒ

Pause an active job.

This command returns immediately after marking the active job for pausing. Pausing an already paused job is an error.

The job will pause as soon as possible, which means transitioning into the PAUSED state if it was RUNNING, or into STANDBY if it was READY. The corresponding JOB_STATUS_CHANGE event will be emitted.

Cancelling a paused job automatically resumes it.

Arguments:
  • id (string) – The job identifier.

Command job-resume (Since: 3.0)ïƒ

Resume a paused job.

This command returns immediately after resuming a paused job. Resuming an already running job is an error.

Arguments:
  • id (string) – The job identifier.

Command job-cancel (Since: 3.0)ïƒ

Instruct an active background job to cancel at the next opportunity. This command returns immediately after marking the active job for cancellation.

The job will cancel as soon as possible and then emit a JOB_STATUS_CHANGE event. Usually, the status will change to ABORTING, but it is possible that a job successfully completes (e.g. because it was almost done and there was no opportunity to cancel earlier than completing the job) and transitions to PENDING instead.

Arguments:
  • id (string) – The job identifier.

Command job-complete (Since: 3.0)ïƒ

Manually trigger completion of an active job in the READY state.

Arguments:
  • id (string) – The job identifier.

Command job-dismiss (Since: 3.0)ïƒ

Deletes a job that is in the CONCLUDED state. This command only needs to be run explicitly for jobs that don’t have automatic dismiss enabled.

This command will refuse to operate on any job that has not yet reached its terminal state, JOB_STATUS_CONCLUDED. For jobs that make use of JOB_READY event, job-cancel or job-complete will still need to be used as appropriate.

Arguments:
  • id (string) – The job identifier.

Command job-finalize (Since: 3.0)ïƒ

Instructs all jobs in a transaction (or a single job if it is not part of any transaction) to finalize any graph changes and do any necessary cleanup. This command requires that all involved jobs are in the PENDING state.

For jobs in a transaction, instructing one job to finalize will force ALL jobs in the transaction to finalize, so it is only necessary to instruct a single member job to finalize.

Arguments:
  • id (string) – The identifier of any job in the transaction, or of a job that is not part of any transaction.

Object JobInfo (Since: 3.0)ïƒ

Information about a job.

Members:
  • id (string) – The job identifier

  • type (JobType) – The kind of job that is being performed

  • status (JobStatus) – Current job state/status

  • current-progress (int) – Progress made until now. The unit is arbitrary and the value can only meaningfully be used for the ratio of current-progress to total-progress. The value is monotonically increasing.

  • total-progress (int) – Estimated current-progress value at the completion of the job. This value can arbitrarily change while the job is running, in both directions.

  • error (string, optional) –

    If this field is present, the job failed; if it is still missing in the CONCLUDED state, this indicates successful completion.

    The value is a human-readable error message to describe the reason for the job failure. It should not be parsed by applications.

Command query-jobs (Since: 3.0)ïƒ

Return information about jobs.

Return:

[JobInfo] – a list with a JobInfo for each active job

Block devicesïƒ

Block core (VM unrelated)ïƒ

Object SnapshotInfo (Since: 1.3)ïƒ
Members:
  • id (string) – unique snapshot id

  • name (string) – user chosen name

  • vm-state-size (int) – size of the VM state

  • date-sec (int) – UTC date of the snapshot in seconds

  • date-nsec (int) – fractional part in nano seconds to be used with date-sec

  • vm-clock-sec (int) – VM clock relative to boot in seconds

  • vm-clock-nsec (int) – fractional part in nano seconds to be used with vm-clock-sec

  • icount (int, optional) – Current instruction count. Appears when execution record/replay is enabled. Used for “time-traveling†to match the moment in the recorded execution with the snapshots. This counter may be obtained through query-replay command (since 5.2)

Object ImageInfoSpecificQCow2EncryptionBase (Since: 2.10)ïƒ
Members:
Object ImageInfoSpecificQCow2Encryption (Since: 2.10)ïƒ
Members:
Object ImageInfoSpecificQCow2 (Since: 1.7)ïƒ
Members:
  • compat (string) – compatibility level

  • data-file (string, optional) – the filename of the external data file that is stored in the image and used as a default for opening the image (since: 4.0)

  • data-file-raw (boolean, optional) – True if the external data file must stay valid as a standalone (read-only) raw image without looking at qcow2 metadata (since: 4.0)

  • extended-l2 (boolean, optional) – true if the image has extended L2 entries; only valid for compat >= 1.1 (since 5.2)

  • lazy-refcounts (boolean, optional) – on or off; only valid for compat >= 1.1

  • corrupt (boolean, optional) – true if the image has been marked corrupt; only valid for compat >= 1.1 (since 2.2)

  • refcount-bits (int) – width of a refcount entry in bits (since 2.3)

  • encrypt (ImageInfoSpecificQCow2Encryption, optional) – details about encryption parameters; only set if image is encrypted (since 2.10)

  • bitmaps ([Qcow2BitmapInfo], optional) – A list of qcow2 bitmap details (since 4.0)

  • compression-type (Qcow2CompressionType) – the image cluster compression method (since 5.1)

Object ImageInfoSpecificVmdk (Since: 1.7)ïƒ
Members:
  • create-type (string) – The create type of VMDK image

  • cid (int) – Content id of image

  • parent-cid (int) – Parent VMDK image’s cid

  • extents ([VmdkExtentInfo]) – List of extent files

Object VmdkExtentInfo (Since: 8.0)ïƒ

Information about a VMDK extent file

Members:
  • filename (string) – Name of the extent file

  • format (string) – Extent type (e.g. FLAT or SPARSE)

  • virtual-size (int) – Number of bytes covered by this extent

  • cluster-size (int, optional) – Cluster size in bytes (for non-flat extents)

  • compressed (boolean, optional) – Whether this extent contains compressed data

Object ImageInfoSpecificRbd (Since: 6.1)ïƒ
Members:
Object ImageInfoSpecificFile (Since: 8.0)ïƒ
Members:
  • extent-size-hint (int, optional) – Extent size hint (if available)

Enum ImageInfoSpecificKind (Since: 1.7)ïƒ
Values:
  • luks – Since 2.7

  • rbd – Since 6.1

  • file – Since 8.0

  • qcow2 – Not documented

  • vmdk – Not documented

Object ImageInfoSpecificQCow2Wrapper (Since: 1.7)ïƒ
Members:
Object ImageInfoSpecificVmdkWrapper (Since: 6.1)ïƒ
Members:
Object ImageInfoSpecificLUKSWrapper (Since: 2.7)ïƒ
Members:
Object ImageInfoSpecificRbdWrapper (Since: 6.1)ïƒ
Members:
Object ImageInfoSpecificFileWrapper (Since: 8.0)ïƒ
Members:
Object ImageInfoSpecific (Since: 1.7)ïƒ

A discriminated record of image format specific information structures.

Members:
Object BlockNodeInfo (Since: 8.0)ïƒ

Information about a QEMU image file

Members:
  • filename (string) – name of the image file

  • format (string) – format of the image file

  • virtual-size (int) – maximum capacity in bytes of the image

  • actual-size (int, optional) – actual size on disk in bytes of the image

  • dirty-flag (boolean, optional) – true if image is not cleanly closed

  • cluster-size (int, optional) – size of a cluster in bytes

  • encrypted (boolean, optional) – true if the image is encrypted

  • compressed (boolean, optional) – true if the image is compressed (Since 1.7)

  • backing-filename (string, optional) – name of the backing file

  • full-backing-filename (string, optional) – full path of the backing file

  • backing-filename-format (string, optional) – the format of the backing file

  • snapshots ([SnapshotInfo], optional) – list of VM snapshots

  • format-specific (ImageInfoSpecific, optional) – structure supplying additional format-specific information (since 1.7)

Object ImageInfo (Since: 1.3)ïƒ

Information about a QEMU image file, and potentially its backing image

Members:
Object BlockChildInfo (Since: 8.0)ïƒ

Information about all nodes in the block graph starting at some node, annotated with information about that node in relation to its parent.

Members:
  • name (string) – Child name of the root node in the BlockGraphInfo struct, in its role as the child of some undescribed parent node

  • info (BlockGraphInfo) – Block graph information starting at this node

Object BlockGraphInfo (Since: 8.0)ïƒ

Information about all nodes in a block (sub)graph in the form of BlockNodeInfo data. The base BlockNodeInfo struct contains the information for the (sub)graph’s root node.

Members:
  • children ([BlockChildInfo]) – Array of links to this node’s child nodes’ information

  • The members of BlockNodeInfo.

Object ImageCheck (Since: 1.4)ïƒ

Information about a QEMU image file check

Members:
  • filename (string) – name of the image file checked

  • format (string) – format of the image file checked

  • check-errors (int) – number of unexpected errors occurred during check

  • image-end-offset (int, optional) – offset (in bytes) where the image ends, this field is present if the driver for the image format supports it

  • corruptions (int, optional) – number of corruptions found during the check if any

  • leaks (int, optional) – number of leaks found during the check if any

  • corruptions-fixed (int, optional) – number of corruptions fixed during the check if any

  • leaks-fixed (int, optional) – number of leaks fixed during the check if any

  • total-clusters (int, optional) – total number of clusters, this field is present if the driver for the image format supports it

  • allocated-clusters (int, optional) – total number of allocated clusters, this field is present if the driver for the image format supports it

  • fragmented-clusters (int, optional) – total number of fragmented clusters, this field is present if the driver for the image format supports it

  • compressed-clusters (int, optional) – total number of compressed clusters, this field is present if the driver for the image format supports it

Object MapEntry (Since: 2.6)ïƒ

Mapping information from a virtual block range to a host file range

Members:
  • start (int) – virtual (guest) offset of the first byte described by this entry

  • length (int) – the number of bytes of the mapped virtual range

  • data (boolean) – reading the image will actually read data from a file (in particular, if offset is present this means that the sectors are not simply preallocated, but contain actual data in raw format)

  • zero (boolean) – whether the virtual blocks read as zeroes

  • compressed (boolean) – true if the data is stored compressed (since 8.2)

  • depth (int) – number of layers (0 = top image, 1 = top image’s backing file, …, n - 1 = bottom image (where n is the number of images in the chain)) before reaching one for which the range is allocated

  • present (boolean) – true if this layer provides the data, false if adding a backing layer could impact this region (since 6.1)

  • offset (int, optional) – if present, the image file stores the data for this range in raw format at the given (host) offset

  • filename (string, optional) – filename that is referred to by offset

Object BlockdevCacheInfo (Since: 2.3)ïƒ

Cache mode information for a block device

Members:
  • writeback (boolean) – true if writeback mode is enabled

  • direct (boolean) – true if the host page cache is bypassed (O_DIRECT)

  • no-flush (boolean) – true if flush requests are ignored for the device

Object BlockDeviceInfo (Since: 0.14)ïƒ

Information about the backing device for a block device.

Members:
  • file (string) – the filename of the backing device

  • node-name (string, optional) – the name of the block driver node (Since 2.0)

  • ro (boolean) – true if the backing device was open read-only

  • drv (string) – the name of the block format used to open the backing device. As of 0.14 this can be: ‘blkdebug’, ‘bochs’, ‘cloop’, ‘cow’, ‘dmg’, ‘file’, ‘file’, ‘ftp’, ‘ftps’, ‘host_cdrom’, ‘host_device’, ‘http’, ‘https’, ‘luks’, ‘nbd’, ‘parallels’, ‘qcow’, ‘qcow2’, ‘raw’, ‘vdi’, ‘vmdk’, ‘vpc’, ‘vvfat’ 2.2: ‘archipelago’ added, ‘cow’ dropped 2.3: ‘host_floppy’ deprecated 2.5: ‘host_floppy’ dropped 2.6: ‘luks’ added 2.8: ‘replication’ added, ‘tftp’ dropped 2.9: ‘archipelago’ dropped

  • backing_file (string, optional) – the name of the backing file (for copy-on-write)

  • backing_file_depth (int) – number of files in the backing file chain (since: 1.2)

  • active (boolean) – true if the backend is active; typical cases for inactive backends are on the migration source instance after migration completes and on the destination before it completes. (since: 10.0)

  • encrypted (boolean) – true if the backing device is encrypted

  • detect_zeroes (BlockdevDetectZeroesOptions) – detect and optimize zero writes (Since 2.1)

  • bps (int) – total throughput limit in bytes per second is specified

  • bps_rd (int) – read throughput limit in bytes per second is specified

  • bps_wr (int) – write throughput limit in bytes per second is specified

  • iops (int) – total I/O operations per second is specified

  • iops_rd (int) – read I/O operations per second is specified

  • iops_wr (int) – write I/O operations per second is specified

  • image (ImageInfo) – the info of image used (since: 1.6)

  • bps_max (int, optional) – total throughput limit during bursts, in bytes (Since 1.7)

  • bps_rd_max (int, optional) – read throughput limit during bursts, in bytes (Since 1.7)

  • bps_wr_max (int, optional) – write throughput limit during bursts, in bytes (Since 1.7)

  • iops_max (int, optional) – total I/O operations per second during bursts, in bytes (Since 1.7)

  • iops_rd_max (int, optional) – read I/O operations per second during bursts, in bytes (Since 1.7)

  • iops_wr_max (int, optional) – write I/O operations per second during bursts, in bytes (Since 1.7)

  • bps_max_length (int, optional) – maximum length of the bps_max burst period, in seconds. (Since 2.6)

  • bps_rd_max_length (int, optional) – maximum length of the bps_rd_max burst period, in seconds. (Since 2.6)

  • bps_wr_max_length (int, optional) – maximum length of the bps_wr_max burst period, in seconds. (Since 2.6)

  • iops_max_length (int, optional) – maximum length of the iops burst period, in seconds. (Since 2.6)

  • iops_rd_max_length (int, optional) – maximum length of the iops_rd_max burst period, in seconds. (Since 2.6)

  • iops_wr_max_length (int, optional) – maximum length of the iops_wr_max burst period, in seconds. (Since 2.6)

  • iops_size (int, optional) – an I/O size in bytes (Since 1.7)

  • group (string, optional) – throttle group name (Since 2.4)

  • cache (BlockdevCacheInfo) – the cache mode used for the block device (since: 2.3)

  • write_threshold (int) – configured write threshold for the device. 0 if disabled. (Since 2.3)

  • dirty-bitmaps ([BlockDirtyInfo], optional) – dirty bitmaps information (only present if node has one or more dirty bitmaps) (Since 4.2)

Enum BlockDeviceIoStatus (Since: 1.0)ïƒ

An enumeration of block device I/O status.

Values:
  • ok – The last I/O operation has succeeded

  • failed – The last I/O operation has failed

  • nospace – The last I/O operation has failed due to a no-space condition

Object BlockDirtyInfo (Since: 1.3)ïƒ

Block dirty bitmap information.

Members:
  • name (string, optional) – the name of the dirty bitmap (Since 2.4)

  • count (int) – number of dirty bytes according to the dirty bitmap

  • granularity (int) – granularity of the dirty bitmap in bytes (since 1.4)

  • recording (boolean) – true if the bitmap is recording new writes from the guest. (since 4.0)

  • busy (boolean) – true if the bitmap is in-use by some operation (NBD or jobs) and cannot be modified via QMP or used by another operation. (since 4.0)

  • persistent (boolean) – true if the bitmap was stored on disk, is scheduled to be stored on disk, or both. (since 4.0)

  • inconsistent (boolean, optional) – true if this is a persistent bitmap that was improperly stored. Implies persistent to be true; recording and busy to be false. This bitmap cannot be used. To remove it, use block-dirty-bitmap-remove. (Since 4.0)

Enum Qcow2BitmapInfoFlags (Since: 4.0)ïƒ

An enumeration of flags that a bitmap can report to the user.

Values:
  • in-use – This flag is set by any process actively modifying the qcow2 file, and cleared when the updated bitmap is flushed to the qcow2 image. The presence of this flag in an offline image means that the bitmap was not saved correctly after its last usage, and may contain inconsistent data.

  • auto – The bitmap must reflect all changes of the virtual disk by any application that would write to this qcow2 file.

Object Qcow2BitmapInfo (Since: 4.0)ïƒ

Qcow2 bitmap information.

Members:
  • name (string) – the name of the bitmap

  • granularity (int) – granularity of the bitmap in bytes

  • flags ([Qcow2BitmapInfoFlags]) – flags of the bitmap

Object BlockLatencyHistogramInfo (Since: 4.0)ïƒ

Block latency histogram.

Members:
  • boundaries ([int]) – list of interval boundary values in nanoseconds, all greater than zero and in ascending order. For example, the list [10, 50, 100] produces the following histogram intervals: [0, 10), [10, 50), [50, 100), [100, +inf).

  • bins ([int]) –

    list of io request counts corresponding to histogram intervals, one more element than boundaries has. For the example above, bins may be something like [3, 1, 5, 2], and corresponding histogram looks like:

    5|           *
    4|           *
    3| *         *
    2| *         *    *
    1| *    *    *    *
     +------------------
         10   50   100
    

Object BlockInfo (Since: 0.14)ïƒ

Block device information. This structure describes a virtual device and the backing device associated with it.

Members:
  • device (string) – The device name associated with the virtual device.

  • qdev (string, optional) – The qdev ID, or if no ID is assigned, the QOM path of the block device. (since 2.10)

  • type (string) – This field is returned only for compatibility reasons, it should not be used (always returns ‘unknown’)

  • removable (boolean) – True if the device supports removable media.

  • locked (boolean) – True if the guest has locked this device from having its media removed

  • tray_open (boolean, optional) – True if the device’s tray is open (only present if it has a tray)

  • io-status (BlockDeviceIoStatus, optional) – BlockDeviceIoStatus. Only present if the device supports it and the VM is configured to stop on errors (supported device models: virtio-blk, IDE, SCSI except scsi-generic)

  • inserted (BlockDeviceInfo, optional) – BlockDeviceInfo describing the device if media is present

Object BlockMeasureInfo (Since: 2.10)ïƒ

Image file size calculation information. This structure describes the size requirements for creating a new image file.

The size requirements depend on the new image file format. File size always equals virtual disk size for the ‘raw’ format, even for sparse POSIX files. Compact formats such as ‘qcow2’ represent unallocated and zero regions efficiently so file size may be smaller than virtual disk size.

The values are upper bounds that are guaranteed to fit the new image file. Subsequent modification, such as internal snapshot or further bitmap creation, may require additional space and is not covered here.

Members:
  • required (int) – Size required for a new image file, in bytes, when copying just allocated guest-visible contents.

  • fully-allocated (int) – Image file size, in bytes, once data has been written to all sectors, when copying just guest-visible contents.

  • bitmaps (int, optional) – Additional size required if all the top-level bitmap metadata in the source image were to be copied to the destination, present only when source and destination both support persistent bitmaps. (since 5.1)

Command query-block (Since: 0.14)ïƒ

Get a list of BlockInfo for all virtual block devices.

Return:

[BlockInfo] – a list of BlockInfo describing each virtual block device. Filter nodes that were created implicitly are skipped over.

Example:

-> { "execute": "query-block" }
<- {
      "return":[
         {
            "io-status": "ok",
            "device":"ide0-hd0",
            "locked":false,
            "removable":false,
            "inserted":{
               "ro":false,
               "drv":"qcow2",
               "encrypted":false,
               "file":"disks/test.qcow2",
               "backing_file_depth":1,
               "bps":1000000,
               "bps_rd":0,
               "bps_wr":0,
               "iops":1000000,
               "iops_rd":0,
               "iops_wr":0,
               "bps_max": 8000000,
               "bps_rd_max": 0,
               "bps_wr_max": 0,
               "iops_max": 0,
               "iops_rd_max": 0,
               "iops_wr_max": 0,
               "iops_size": 0,
               "detect_zeroes": "on",
               "write_threshold": 0,
               "image":{
                  "filename":"disks/test.qcow2",
                  "format":"qcow2",
                  "virtual-size":2048000,
                  "backing_file":"base.qcow2",
                  "full-backing-filename":"disks/base.qcow2",
                  "backing-filename-format":"qcow2",
                  "snapshots":[
                     {
                        "id": "1",
                        "name": "snapshot1",
                        "vm-state-size": 0,
                        "date-sec": 10000200,
                        "date-nsec": 12,
                        "vm-clock-sec": 206,
                        "vm-clock-nsec": 30
                     }
                  ],
                  "backing-image":{
                      "filename":"disks/base.qcow2",
                      "format":"qcow2",
                      "virtual-size":2048000
                  }
               }
            },
            "qdev": "ide_disk",
            "type":"unknown"
         },
         {
            "io-status": "ok",
            "device":"ide1-cd0",
            "locked":false,
            "removable":true,
            "qdev": "/machine/unattached/device[23]",
            "tray_open": false,
            "type":"unknown"
         },
         {
            "device":"floppy0",
            "locked":false,
            "removable":true,
            "qdev": "/machine/unattached/device[20]",
            "type":"unknown"
         },
         {
            "device":"sd0",
            "locked":false,
            "removable":true,
            "type":"unknown"
         }
      ]
   }
Object BlockDeviceTimedStats (Since: 2.5)ïƒ

Statistics of a block device during a given interval of time.

Members:
  • interval_length (int) – Interval used for calculating the statistics, in seconds.

  • min_rd_latency_ns (int) – Minimum latency of read operations in the defined interval, in nanoseconds.

  • min_wr_latency_ns (int) – Minimum latency of write operations in the defined interval, in nanoseconds.

  • min_zone_append_latency_ns (int) – Minimum latency of zone append operations in the defined interval, in nanoseconds (since 8.1)

  • min_flush_latency_ns (int) – Minimum latency of flush operations in the defined interval, in nanoseconds.

  • max_rd_latency_ns (int) – Maximum latency of read operations in the defined interval, in nanoseconds.

  • max_wr_latency_ns (int) – Maximum latency of write operations in the defined interval, in nanoseconds.

  • max_zone_append_latency_ns (int) – Maximum latency of zone append operations in the defined interval, in nanoseconds (since 8.1)

  • max_flush_latency_ns (int) – Maximum latency of flush operations in the defined interval, in nanoseconds.

  • avg_rd_latency_ns (int) – Average latency of read operations in the defined interval, in nanoseconds.

  • avg_wr_latency_ns (int) – Average latency of write operations in the defined interval, in nanoseconds.

  • avg_zone_append_latency_ns (int) – Average latency of zone append operations in the defined interval, in nanoseconds (since 8.1)

  • avg_flush_latency_ns (int) – Average latency of flush operations in the defined interval, in nanoseconds.

  • avg_rd_queue_depth (number) – Average number of pending read operations in the defined interval.

  • avg_wr_queue_depth (number) – Average number of pending write operations in the defined interval.

  • avg_zone_append_queue_depth (number) – Average number of pending zone append operations in the defined interval (since 8.1).

Object BlockDeviceStats (Since: 0.14)ïƒ

Statistics of a virtual block device or a block backing device.

Members:
  • rd_bytes (int) – The number of bytes read by the device.

  • wr_bytes (int) – The number of bytes written by the device.

  • zone_append_bytes (int) – The number of bytes appended by the zoned devices (since 8.1)

  • unmap_bytes (int) – The number of bytes unmapped by the device (Since 4.2)

  • rd_operations (int) – The number of read operations performed by the device.

  • wr_operations (int) – The number of write operations performed by the device.

  • zone_append_operations (int) – The number of zone append operations performed by the zoned devices (since 8.1)

  • flush_operations (int) – The number of cache flush operations performed by the device (since 0.15)

  • unmap_operations (int) – The number of unmap operations performed by the device (Since 4.2)

  • rd_total_time_ns (int) – Total time spent on reads in nanoseconds (since 0.15).

  • wr_total_time_ns (int) – Total time spent on writes in nanoseconds (since 0.15).

  • zone_append_total_time_ns (int) – Total time spent on zone append writes in nanoseconds (since 8.1)

  • flush_total_time_ns (int) – Total time spent on cache flushes in nanoseconds (since 0.15).

  • unmap_total_time_ns (int) – Total time spent on unmap operations in nanoseconds (Since 4.2)

  • wr_highest_offset (int) – The offset after the greatest byte written to the device. The intended use of this information is for growable sparse files (like qcow2) that are used on top of a physical device.

  • rd_merged (int) – Number of read requests that have been merged into another request (Since 2.3).

  • wr_merged (int) – Number of write requests that have been merged into another request (Since 2.3).

  • zone_append_merged (int) – Number of zone append requests that have been merged into another request (since 8.1)

  • unmap_merged (int) – Number of unmap requests that have been merged into another request (Since 4.2)

  • idle_time_ns (int, optional) – Time since the last I/O operation, in nanoseconds. If the field is absent it means that there haven’t been any operations yet (Since 2.5).

  • failed_rd_operations (int) – The number of failed read operations performed by the device (Since 2.5)

  • failed_wr_operations (int) – The number of failed write operations performed by the device (Since 2.5)

  • failed_zone_append_operations (int) – The number of failed zone append write operations performed by the zoned devices (since 8.1)

  • failed_flush_operations (int) – The number of failed flush operations performed by the device (Since 2.5)

  • failed_unmap_operations (int) – The number of failed unmap operations performed by the device (Since 4.2)

  • invalid_rd_operations (int) – The number of invalid read operations performed by the device (Since 2.5)

  • invalid_wr_operations (int) – The number of invalid write operations performed by the device (Since 2.5)

  • invalid_zone_append_operations (int) – The number of invalid zone append operations performed by the zoned device (since 8.1)

  • invalid_flush_operations (int) – The number of invalid flush operations performed by the device (Since 2.5)

  • invalid_unmap_operations (int) – The number of invalid unmap operations performed by the device (Since 4.2)

  • account_invalid (boolean) – Whether invalid operations are included in the last access statistics (Since 2.5)

  • account_failed (boolean) – Whether failed operations are included in the latency and last access statistics (Since 2.5)

  • timed_stats ([BlockDeviceTimedStats]) – Statistics specific to the set of previously defined intervals of time (Since 2.5)

  • rd_latency_histogram (BlockLatencyHistogramInfo, optional) – BlockLatencyHistogramInfo. (Since 4.0)

  • wr_latency_histogram (BlockLatencyHistogramInfo, optional) – BlockLatencyHistogramInfo. (Since 4.0)

  • zone_append_latency_histogram (BlockLatencyHistogramInfo, optional) – BlockLatencyHistogramInfo. (since 8.1)

  • flush_latency_histogram (BlockLatencyHistogramInfo, optional) – BlockLatencyHistogramInfo. (Since 4.0)

Object BlockStatsSpecificFile (Since: 4.2)ïƒ

File driver statistics

Members:
  • discard-nb-ok (int) – The number of successful discard operations performed by the driver.

  • discard-nb-failed (int) – The number of failed discard operations performed by the driver.

  • discard-bytes-ok (int) – The number of bytes discarded by the driver.

Object BlockStatsSpecificNvme (Since: 5.2)ïƒ

NVMe driver statistics

Members:
  • completion-errors (int) – The number of completion errors.

  • aligned-accesses (int) – The number of aligned accesses performed by the driver.

  • unaligned-accesses (int) – The number of unaligned accesses performed by the driver.

Object BlockStatsSpecific (Since: 4.2)ïƒ

Block driver specific statistics

Members:
Object BlockStats (Since: 0.14)ïƒ

Statistics of a virtual block device or a block backing device.

Members:
  • device (string, optional) – If the stats are for a virtual block device, the name corresponding to the virtual block device.

  • node-name (string, optional) – The node name of the device. (Since 2.3)

  • qdev (string, optional) – The qdev ID, or if no ID is assigned, the QOM path of the block device. (since 3.0)

  • stats (BlockDeviceStats) – A BlockDeviceStats for the device.

  • driver-specific (BlockStatsSpecific, optional) – Optional driver-specific stats. (Since 4.2)

  • parent (BlockStats, optional) – This describes the file block device if it has one. Contains recursively the statistics of the underlying protocol (e.g. the host file for a qcow2 image). If there is no underlying protocol, this field is omitted

  • backing (BlockStats, optional) – This describes the backing block device if it has one. (Since 2.0)

Command query-blockstats (Since: 0.14)ïƒ

Query the BlockStats for all virtual block devices.

Arguments:
  • query-nodes (boolean, optional) – If true, the command will query all the block nodes that have a node name, in a list which will include “parent†information, but not “backingâ€. If false or omitted, the behavior is as before - query all the device backends, recursively including their “parent†and “backingâ€. Filter nodes that were created implicitly are skipped over in this mode. (Since 2.3)

Return:

[BlockStats] – A list of BlockStats for each virtual block devices.

Example:

-> { "execute": "query-blockstats" }
<- {
      "return":[
         {
            "device":"ide0-hd0",
            "parent":{
               "stats":{
                  "wr_highest_offset":3686448128,
                  "wr_bytes":9786368,
                  "wr_operations":751,
                  "rd_bytes":122567168,
                  "rd_operations":36772
                  "wr_total_times_ns":313253456
                  "rd_total_times_ns":3465673657
                  "flush_total_times_ns":49653
                  "flush_operations":61,
                  "rd_merged":0,
                  "wr_merged":0,
                  "idle_time_ns":2953431879,
                  "account_invalid":true,
                  "account_failed":false
               }
            },
            "stats":{
               "wr_highest_offset":2821110784,
               "wr_bytes":9786368,
               "wr_operations":692,
               "rd_bytes":122739200,
               "rd_operations":36604
               "flush_operations":51,
               "wr_total_times_ns":313253456
               "rd_total_times_ns":3465673657
               "flush_total_times_ns":49653,
               "rd_merged":0,
               "wr_merged":0,
               "idle_time_ns":2953431879,
               "account_invalid":true,
               "account_failed":false
            },
            "qdev": "/machine/unattached/device[23]"
         },
         {
            "device":"ide1-cd0",
            "stats":{
               "wr_highest_offset":0,
               "wr_bytes":0,
               "wr_operations":0,
               "rd_bytes":0,
               "rd_operations":0
               "flush_operations":0,
               "wr_total_times_ns":0
               "rd_total_times_ns":0
               "flush_total_times_ns":0,
               "rd_merged":0,
               "wr_merged":0,
               "account_invalid":false,
               "account_failed":false
            },
            "qdev": "/machine/unattached/device[24]"
         },
         {
            "device":"floppy0",
            "stats":{
               "wr_highest_offset":0,
               "wr_bytes":0,
               "wr_operations":0,
               "rd_bytes":0,
               "rd_operations":0
               "flush_operations":0,
               "wr_total_times_ns":0
               "rd_total_times_ns":0
               "flush_total_times_ns":0,
               "rd_merged":0,
               "wr_merged":0,
               "account_invalid":false,
               "account_failed":false
            },
            "qdev": "/machine/unattached/device[16]"
         },
         {
            "device":"sd0",
            "stats":{
               "wr_highest_offset":0,
               "wr_bytes":0,
               "wr_operations":0,
               "rd_bytes":0,
               "rd_operations":0
               "flush_operations":0,
               "wr_total_times_ns":0
               "rd_total_times_ns":0
               "flush_total_times_ns":0,
               "rd_merged":0,
               "wr_merged":0,
               "account_invalid":false,
               "account_failed":false
            }
         }
      ]
   }
Enum BlockdevOnError (Since: 1.3)ïƒ

An enumeration of possible behaviors for errors on I/O operations. The exact meaning depends on whether the I/O was initiated by a guest or by a block job

Values:
  • report – for guest operations, report the error to the guest; for jobs, cancel the job

  • ignore – ignore the error, only report a QMP event (BLOCK_IO_ERROR or BLOCK_JOB_ERROR). The backup, mirror and commit block jobs retry the failing request later and may still complete successfully. The stream block job continues to stream and will complete with an error.

  • enospc – same as stop on ENOSPC, same as report otherwise.

  • stop – for guest operations, stop the virtual machine; for jobs, pause the job

  • auto – inherit the error handling policy of the backend (since: 2.7)

Enum MirrorSyncMode (Since: 1.3)ïƒ

An enumeration of possible behaviors for the initial synchronization phase of storage mirroring.

Values:
  • top – copies data in the topmost image to the destination

  • full – copies data from all images to the destination

  • none – only copy data written from now on

  • incremental – only copy data described by the dirty bitmap. (since: 2.4)

  • bitmap – only copy data described by the dirty bitmap. (since: 4.2) Behavior on completion is determined by the BitmapSyncMode.

Enum BitmapSyncMode (Since: 4.2)ïƒ

An enumeration of possible behaviors for the synchronization of a bitmap when used for data copy operations.

Values:
  • on-success – The bitmap is only synced when the operation is successful. This is the behavior always used for ‘INCREMENTAL’ backups.

  • never – The bitmap is never synchronized with the operation, and is treated solely as a read-only manifest of blocks to copy.

  • always – The bitmap is always synchronized with the operation, regardless of whether or not the operation was successful.

Enum MirrorCopyMode (Since: 3.0)ïƒ

An enumeration whose values tell the mirror block job when to trigger writes to the target.

Values:
  • background – copy data in background only.

  • write-blocking – when data is written to the source, write it (synchronously) to the target as well. In addition, data is copied in background just like in background mode.

Object BlockJobInfoMirror (Since: 8.2)ïƒ

Information specific to mirror block jobs.

Members:
  • actively-synced (boolean) – Whether the source is actively synced to the target, i.e. same data and new writes are done synchronously to both.

Object BlockJobInfo (Since: 1.1)ïƒ

Information about a long-running block device operation.

Members:
  • type (JobType) – the job type (‘stream’ for image streaming)

  • device (string) – The job identifier. Originally the device name but other values are allowed since QEMU 2.7

  • len (int) – Estimated offset value at the completion of the job. This value can arbitrarily change while the job is running, in both directions.

  • offset (int) – Progress made until now. The unit is arbitrary and the value can only meaningfully be used for the ratio of offset to len. The value is monotonically increasing.

  • busy (boolean) – false if the job is known to be in a quiescent state, with no pending I/O. (Since 1.3)

  • paused (boolean) – whether the job is paused or, if busy is true, will pause itself as soon as possible. (Since 1.3)

  • speed (int) – the rate limit, bytes per second

  • io-status (BlockDeviceIoStatus) – the status of the job (since 1.3)

  • ready (boolean) – true if the job may be completed (since 2.2)

  • status (JobStatus) – Current job state/status (since 2.12)

  • auto-finalize (boolean) – Job will finalize itself when PENDING, moving to the CONCLUDED state. (since 2.12)

  • auto-dismiss (boolean) – Job will dismiss itself when CONCLUDED, moving to the NULL state and disappearing from the query list. (since 2.12)

  • error (string, optional) – Error information if the job did not complete successfully. Not set if the job completed successfully. (since 2.12.1)

  • When type is mirror: The members of BlockJobInfoMirror.

Command query-block-jobs (Since: 1.1)ïƒ

Return information about long-running block device operations.

Return:

[BlockJobInfo] – a list of BlockJobInfo for each active block job

Command block_resize (Since: 0.14)ïƒ

Resize a block image while a guest is running.

Either device or node-name must be set but not both.

Arguments:
  • device (string, optional) – the name of the device to get the image resized

  • node-name (string, optional) – graph node name to get the image resized (Since 2.0)

  • size (int) – new image size in bytes

Errors:

  • If device is not a valid block device, DeviceNotFound

Example:

-> { "execute": "block_resize",
     "arguments": { "device": "scratch", "size": 1073741824 } }
<- { "return": {} }
Enum NewImageMode (Since: 1.1)ïƒ

An enumeration that tells QEMU how to set the backing file path in a new image file.

Values:
  • existing – QEMU should look for an existing image file.

  • absolute-paths – QEMU should create a new image with absolute paths for the backing file. If there is no backing file available, the new image will not be backed either.

Object BlockdevSnapshotSyncïƒ

Either device or node-name must be set but not both.

Members:
  • device (string, optional) – the name of the device to take a snapshot of.

  • node-name (string, optional) – graph node name to generate the snapshot from (Since 2.0)

  • snapshot-file (string) – the target of the new overlay image. If the file exists, or if it is a device, the overlay will be created in the existing file/device. Otherwise, a new file will be created.

  • snapshot-node-name (string, optional) – the graph node name of the new image (Since 2.0)

  • format (string, optional) – the format of the overlay image, default is ‘qcow2’.

  • mode (NewImageMode, optional) – whether and how QEMU should create a new image, default is ‘absolute-paths’.

Object BlockdevSnapshot (Since: 2.5)ïƒ
Members:
  • node (string) – device or node name that will have a snapshot taken.

  • overlay (string) – reference to the existing block device that will become the overlay of node, as part of taking the snapshot. It must not have a current backing file (this can be achieved by passing “backingâ€: null to blockdev-add).

Object BackupPerf (Since: 6.0)ïƒ

Optional parameters for backup. These parameters don’t affect functionality, but may significantly affect performance.

Members:
  • use-copy-range (boolean, optional) – Use copy offloading. Default false.

  • max-workers (int, optional) – Maximum number of parallel requests for the sustained background copying process. Doesn’t influence copy-before-write operations. Default 64.

  • max-chunk (int, optional) – Maximum request length for the sustained background copying process. Doesn’t influence copy-before-write operations. 0 means unlimited. If max-chunk is non-zero then it should not be less than job cluster size which is calculated as maximum of target image cluster size and 64k. Default 0.

  • min-cluster-size (int, optional) – Minimum size of blocks used by copy-before-write and background copy operations. Has to be a power of 2. No effect if smaller than the maximum of the target’s cluster size and 64 KiB. Default 0. (Since 9.2)

Object BackupCommon (Since: 4.2)ïƒ
Members:
  • job-id (string, optional) – identifier for the newly-created block job. If omitted, the device name will be used. (Since 2.7)

  • device (string) – the device name or node-name of a root node which should be copied.

  • sync (MirrorSyncMode) – what parts of the disk image should be copied to the destination (all the disk, only the sectors allocated in the topmost image, from a dirty bitmap, or only new I/O).

  • speed (int, optional) – the maximum speed, in bytes per second. The default is 0, for unlimited.

  • bitmap (string, optional) – The name of a dirty bitmap to use. Must be present if sync is “bitmap†or “incrementalâ€. Can be present if sync is “full†or “topâ€. Must not be present otherwise. (Since 2.4 (drive-backup), 3.1 (blockdev-backup))

  • bitmap-mode (BitmapSyncMode, optional) – Specifies the type of data the bitmap should contain after the operation concludes. Must be present if a bitmap was provided, Must NOT be present otherwise. (Since 4.2)

  • compress (boolean, optional) – true to compress data, if the target format supports it. (default: false) (since 2.8)

  • on-source-error (BlockdevOnError, optional) – the action to take on an error on the source, default ‘report’. ‘stop’ and ‘enospc’ can only be used if the block device supports io-status (see BlockInfo).

  • on-target-error (BlockdevOnError, optional) – the action to take on an error on the target, default ‘report’ (no limitations, since this applies to a different block device than device).

  • auto-finalize (boolean, optional) – When false, this job will wait in a PENDING state after it has finished its work, waiting for block-job-finalize before making any block graph changes. When true, this job will automatically perform its abort or commit actions. Defaults to true. (Since 2.12)

  • auto-dismiss (boolean, optional) – When false, this job will wait in a CONCLUDED state after it has completely ceased all work, and awaits block-job-dismiss. When true, this job will automatically disappear from the query list without user intervention. Defaults to true. (Since 2.12)

  • filter-node-name (string, optional) – the node name that should be assigned to the filter driver that the backup job inserts into the graph above node specified by drive. If this option is not given, a node name is autogenerated. (Since: 4.2)

  • discard-source (boolean, optional) – Discard blocks on source which have already been copied to the target. (Since 9.1)

  • x-perf (BackupPerf, optional) – Performance options. (Since 6.0)

Features:
  • unstable – Member x-perf is experimental.

Note

on-source-error and on-target-error only affect background I/O. If an error occurs during a guest write request, the device’s rerror/werror actions will be used.

Object DriveBackup (Since: 1.6)ïƒ
Members:
  • target (string) – the target of the new image. If the file exists, or if it is a device, the existing file/device will be used as the new destination. If it does not exist, a new file will be created.

  • format (string, optional) – the format of the new destination, default is to probe if mode is ‘existing’, else the format of the source

  • mode (NewImageMode, optional) – whether and how QEMU should create a new image, default is ‘absolute-paths’.

  • The members of BackupCommon.

Object BlockdevBackup (Since: 2.3)ïƒ
Members:
  • target (string) – the device name or node-name of the backup target node.

  • The members of BackupCommon.

Command blockdev-snapshot-sync (Since: 0.14)ïƒ

Takes a synchronous snapshot of a block device.

Arguments:
Errors:

  • If device is not a valid block device, DeviceNotFound

Example:

-> { "execute": "blockdev-snapshot-sync",
     "arguments": { "device": "ide-hd0",
                    "snapshot-file":
                    "/some/place/my-image",
                    "format": "qcow2" } }
<- { "return": {} }
Command blockdev-snapshot (Since: 2.5)ïƒ

Takes a snapshot of a block device.

Take a snapshot, by installing ‘node’ as the backing image of ‘overlay’. Additionally, if ‘node’ is associated with a block device, the block device changes to using ‘overlay’ as its new active image.

Arguments:
Features:
  • allow-write-only-overlay – If present, the check whether this operation is safe was relaxed so that it can be used to change backing file of a destination of a blockdev-mirror. (since 5.0)

Example:

-> { "execute": "blockdev-add",
     "arguments": { "driver": "qcow2",
                    "node-name": "node1534",
                    "file": { "driver": "file",
                              "filename": "hd1.qcow2" },
                    "backing": null } }

<- { "return": {} }

-> { "execute": "blockdev-snapshot",
     "arguments": { "node": "ide-hd0",
                    "overlay": "node1534" } }
<- { "return": {} }
Command change-backing-file (Since: 2.1)ïƒ

Change the backing file in the image file metadata. This does not cause QEMU to reopen the image file to reparse the backing filename (it may, however, perform a reopen to change permissions from r/o -> r/w -> r/o, if needed). The new backing file string is written into the image file metadata, and the QEMU internal strings are updated.

Arguments:
  • image-node-name (string) – The name of the block driver state node of the image to modify. The “device†argument is used to verify “image-node-name†is in the chain described by “deviceâ€.

  • device (string) – The device name or node-name of the root node that owns image-node-name.

  • backing-file (string) – The string to write as the backing file. This string is not validated, so care should be taken when specifying the string or the image chain may not be able to be reopened again.

Errors:

  • If “device†does not exist or cannot be determined, DeviceNotFound

Command block-commit (Since: 1.3)ïƒ

Live commit of data from overlay image nodes into backing nodes - i.e., writes data between ‘top’ and ‘base’ into ‘base’.

If top == base, that is an error. If top has no overlays on top of it, or if it is in use by a writer, the job will not be completed by itself. The user needs to complete the job with the block-job-complete command after getting the ready event. (Since 2.0)

If the base image is smaller than top, then the base image will be resized to be the same size as top. If top is smaller than the base image, the base will not be truncated. If you want the base image size to match the size of the smaller top, you can safely truncate it yourself once the commit operation successfully completes.

Arguments:
  • job-id (string, optional) – identifier for the newly-created block job. If omitted, the device name will be used. (Since 2.7)

  • device (string) – the device name or node-name of a root node

  • base-node (string, optional) – The node name of the backing image to write data into. If not specified, this is the deepest backing image. (since: 3.1)

  • base (string, optional) – Same as base-node, except that it is a file name rather than a node name. This must be the exact filename string that was used to open the node; other strings, even if addressing the same file, are not accepted

  • top-node (string, optional) – The node name of the backing image within the image chain which contains the topmost data to be committed down. If not specified, this is the active layer. (since: 3.1)

  • top (string, optional) – Same as top-node, except that it is a file name rather than a node name. This must be the exact filename string that was used to open the node; other strings, even if addressing the same file, are not accepted

  • backing-file (string, optional) –

    The backing file string to write into the overlay image of ‘top’. If ‘top’ does not have an overlay image, or if ‘top’ is in use by a writer, specifying a backing file string is an error.

    This filename is not validated. If a pathname string is such that it cannot be resolved by QEMU, that means that subsequent QMP or HMP commands must use node-names for the image in question, as filename lookup methods will fail.

    If not specified, QEMU will automatically determine the backing file string to use, or error out if there is no obvious choice. Care should be taken when specifying the string, to specify a valid filename or protocol. (Since 2.1)

  • backing-mask-protocol (boolean, optional) – If true, replace any protocol mentioned in the ‘backing file format’ with ‘raw’, rather than storing the protocol name as the backing format. Can be used even when no image header will be updated (default false; since 9.0).

  • speed (int, optional) – the maximum speed, in bytes per second

  • on-error (BlockdevOnError, optional) – the action to take on an error. ‘ignore’ means that the request should be retried. (default: report; Since: 5.0)

  • filter-node-name (string, optional) – the node name that should be assigned to the filter driver that the commit job inserts into the graph above top. If this option is not given, a node name is autogenerated. (Since: 2.9)

  • auto-finalize (boolean, optional) – When false, this job will wait in a PENDING state after it has finished its work, waiting for block-job-finalize before making any block graph changes. When true, this job will automatically perform its abort or commit actions. Defaults to true. (Since 3.1)

  • auto-dismiss (boolean, optional) – When false, this job will wait in a CONCLUDED state after it has completely ceased all work, and awaits block-job-dismiss. When true, this job will automatically disappear from the query list without user intervention. Defaults to true. (Since 3.1)

Features:
  • deprecated – Members base and top are deprecated. Use base-node and top-node instead.

Errors:

  • If device does not exist, DeviceNotFound

Example:

-> { "execute": "block-commit",
     "arguments": { "device": "virtio0",
                    "top": "/tmp/snap1.qcow2" } }
<- { "return": {} }
Command drive-backup (Since: 1.6)ïƒ
This command is deprecated.

Start a point-in-time copy of a block device to a new destination. The status of ongoing drive-backup operations can be checked with query-block-jobs where the BlockJobInfo.type field has the value ‘backup’. The operation can be stopped before it has completed using the block-job-cancel command.

Arguments:
Features:
  • deprecated – This command is deprecated. Use blockdev-backup instead.

Errors:

  • If device is not a valid block device, GenericError

Example:

-> { "execute": "drive-backup",
     "arguments": { "device": "drive0",
                    "sync": "full",
                    "target": "backup.img" } }
<- { "return": {} }
Command blockdev-backup (Since: 2.3)ïƒ

Start a point-in-time copy of a block device to a new destination. The status of ongoing blockdev-backup operations can be checked with query-block-jobs where the BlockJobInfo.type field has the value ‘backup’. The operation can be stopped before it has completed using the block-job-cancel command.

Arguments:
Errors:

  • If device is not a valid block device, DeviceNotFound

Example:

-> { "execute": "blockdev-backup",
     "arguments": { "device": "src-id",
                    "sync": "full",
                    "target": "tgt-id" } }
<- { "return": {} }
Command query-named-block-nodes (Since: 2.0)ïƒ

Get the named block driver list

Arguments:
  • flat (boolean, optional) – Omit the nested data about backing image (“backing-image†key) if true. Default is false (Since 5.0)

Return:

[BlockDeviceInfo] – the list of BlockDeviceInfo

Example:

-> { "execute": "query-named-block-nodes" }
<- { "return": [ { "ro":false,
                   "drv":"qcow2",
                   "encrypted":false,
                   "file":"disks/test.qcow2",
                   "node-name": "my-node",
                   "backing_file_depth":1,
                   "detect_zeroes":"off",
                   "bps":1000000,
                   "bps_rd":0,
                   "bps_wr":0,
                   "iops":1000000,
                   "iops_rd":0,
                   "iops_wr":0,
                   "bps_max": 8000000,
                   "bps_rd_max": 0,
                   "bps_wr_max": 0,
                   "iops_max": 0,
                   "iops_rd_max": 0,
                   "iops_wr_max": 0,
                   "iops_size": 0,
                   "write_threshold": 0,
                   "image":{
                      "filename":"disks/test.qcow2",
                      "format":"qcow2",
                      "virtual-size":2048000,
                      "backing_file":"base.qcow2",
                      "full-backing-filename":"disks/base.qcow2",
                      "backing-filename-format":"qcow2",
                      "snapshots":[
                         {
                            "id": "1",
                            "name": "snapshot1",
                            "vm-state-size": 0,
                            "date-sec": 10000200,
                            "date-nsec": 12,
                            "vm-clock-sec": 206,
                            "vm-clock-nsec": 30
                         }
                      ],
                      "backing-image":{
                          "filename":"disks/base.qcow2",
                          "format":"qcow2",
                          "virtual-size":2048000
                      }
                   } } ] }
Enum XDbgBlockGraphNodeType (Since: 4.0)ïƒ
Values:
  • block-backend – corresponds to BlockBackend

  • block-job – corresponds to BlockJob

  • block-driver – corresponds to BlockDriverState

Object XDbgBlockGraphNode (Since: 4.0)ïƒ
Members:
  • id (int) – Block graph node identifier. This id is generated only for x-debug-query-block-graph and does not relate to any other identifiers in Qemu.

  • type (XDbgBlockGraphNodeType) – Type of graph node. Can be one of block-backend, block-job or block-driver-state.

  • name (string) – Human readable name of the node. Corresponds to node-name for block-driver-state nodes; is not guaranteed to be unique in the whole graph (with block-jobs and block-backends).

Enum BlockPermission (Since: 4.0)ïƒ

Enum of base block permissions.

Values:
  • consistent-read – A user that has the “permission†of consistent reads is guaranteed that their view of the contents of the block device is complete and self-consistent, representing the contents of a disk at a specific point. For most block devices (including their backing files) this is true, but the property cannot be maintained in a few situations like for intermediate nodes of a commit block job.

  • write – This permission is required to change the visible disk contents.

  • write-unchanged – This permission (which is weaker than BLK_PERM_WRITE) is both enough and required for writes to the block node when the caller promises that the visible disk content doesn’t change. As the BLK_PERM_WRITE permission is strictly stronger, either is sufficient to perform an unchanging write.

  • resize – This permission is required to change the size of a block node.

Object XDbgBlockGraphEdge (Since: 4.0)ïƒ

Block Graph edge description for x-debug-query-block-graph.

Members:
  • parent (int) – parent id

  • child (int) – child id

  • name (string) – name of the relation (examples are ‘file’ and ‘backing’)

  • perm ([BlockPermission]) – granted permissions for the parent operating on the child

  • shared-perm ([BlockPermission]) – permissions that can still be granted to other users of the child while it is still attached to this parent

Object XDbgBlockGraph (Since: 4.0)ïƒ

Block Graph - list of nodes and list of edges.

Members:
Command x-debug-query-block-graph (Since: 4.0)ïƒ
This command is unstable/experimental.

Get the block graph.

Features:
  • unstable – This command is meant for debugging.

Command drive-mirror (Since: 1.3)ïƒ

Start mirroring a block device’s writes to a new destination. target specifies the target of the new image. If the file exists, or if it is a device, it will be used as the new destination for writes. If it does not exist, a new file will be created. format specifies the format of the mirror image, default is to probe if mode=’existing’, else the format of the source.

Arguments:
Errors:

  • If device is not a valid block device, GenericError

Example:

-> { "execute": "drive-mirror",
     "arguments": { "device": "ide-hd0",
                    "target": "/some/place/my-image",
                    "sync": "full",
                    "format": "qcow2" } }
<- { "return": {} }
Object DriveMirror (Since: 1.3)ïƒ

A set of parameters describing drive mirror setup.

Members:
  • job-id (string, optional) – identifier for the newly-created block job. If omitted, the device name will be used. (Since 2.7)

  • device (string) – the device name or node-name of a root node whose writes should be mirrored.

  • target (string) – the target of the new image. If the file exists, or if it is a device, the existing file/device will be used as the new destination. If it does not exist, a new file will be created.

  • format (string, optional) – the format of the new destination, default is to probe if mode is ‘existing’, else the format of the source

  • node-name (string, optional) – the new block driver state node name in the graph (Since 2.1)

  • replaces (string, optional) – with sync=full graph node name to be replaced by the new image when a whole image copy is done. This can be used to repair broken Quorum files. By default, device is replaced, although implicitly created filters on it are kept. (Since 2.1)

  • mode (NewImageMode, optional) – whether and how QEMU should create a new image, default is ‘absolute-paths’.

  • speed (int, optional) – the maximum speed, in bytes per second

  • sync (MirrorSyncMode) – what parts of the disk image should be copied to the destination (all the disk, only the sectors allocated in the topmost image, or only new I/O).

  • granularity (int, optional) – granularity of the dirty bitmap, default is 64K if the image format doesn’t have clusters, 4K if the clusters are smaller than that, else the cluster size. Must be a power of 2 between 512 and 64M (since 1.4).

  • buf-size (int, optional) – maximum amount of data in flight from source to target (since 1.4).

  • on-source-error (BlockdevOnError, optional) – the action to take on an error on the source, default ‘report’. ‘stop’ and ‘enospc’ can only be used if the block device supports io-status (see BlockInfo).

  • on-target-error (BlockdevOnError, optional) – the action to take on an error on the target, default ‘report’ (no limitations, since this applies to a different block device than device).

  • unmap (boolean, optional) – Whether to try to unmap target sectors where source has only zero. If true, and target unallocated sectors will read as zero, target image sectors will be unmapped; otherwise, zeroes will be written. Both will result in identical contents. Default is true. (Since 2.4)

  • copy-mode (MirrorCopyMode, optional) – when to copy data to the destination; defaults to ‘background’ (Since: 3.0)

  • auto-finalize (boolean, optional) – When false, this job will wait in a PENDING state after it has finished its work, waiting for block-job-finalize before making any block graph changes. When true, this job will automatically perform its abort or commit actions. Defaults to true. (Since 3.1)

  • auto-dismiss (boolean, optional) – When false, this job will wait in a CONCLUDED state after it has completely ceased all work, and awaits block-job-dismiss. When true, this job will automatically disappear from the query list without user intervention. Defaults to true. (Since 3.1)

Object BlockDirtyBitmap (Since: 2.4)ïƒ
Members:
  • node (string) – name of device/node which the bitmap is tracking

  • name (string) – name of the dirty bitmap

Object BlockDirtyBitmapAdd (Since: 2.4)ïƒ
Members:
  • node (string) – name of device/node which the bitmap is tracking

  • name (string) – name of the dirty bitmap (must be less than 1024 bytes)

  • granularity (int, optional) – the bitmap granularity, default is 64k for block-dirty-bitmap-add

  • persistent (boolean, optional) – the bitmap is persistent, i.e. it will be saved to the corresponding block device image file on its close. For now only Qcow2 disks support persistent bitmaps. Default is false for block-dirty-bitmap-add. (Since: 2.10)

  • disabled (boolean, optional) – the bitmap is created in the disabled state, which means that it will not track drive changes. The bitmap may be enabled with block-dirty-bitmap-enable. Default is false. (Since: 4.0)

Alternate BlockDirtyBitmapOrStr (Since: 4.1)ïƒ
Alternatives:
  • local (string) – name of the bitmap, attached to the same node as target bitmap.

  • external (BlockDirtyBitmap) – bitmap with specified node

Object BlockDirtyBitmapMerge (Since: 4.0)ïƒ
Members:
  • node (string) – name of device/node which the target bitmap is tracking

  • target (string) – name of the destination dirty bitmap

  • bitmaps ([BlockDirtyBitmapOrStr]) – name(s) of the source dirty bitmap(s) at node and/or fully specified BlockDirtyBitmap elements. The latter are supported since 4.1.

Command block-dirty-bitmap-add (Since: 2.4)ïƒ

Create a dirty bitmap with a name on the node, and start tracking the writes.

Arguments:
Errors:

  • If node is not a valid block device or node, DeviceNotFound

  • If name is already taken, GenericError

Example:

-> { "execute": "block-dirty-bitmap-add",
     "arguments": { "node": "drive0", "name": "bitmap0" } }
<- { "return": {} }
Command block-dirty-bitmap-remove (Since: 2.4)ïƒ

Stop write tracking and remove the dirty bitmap that was created with block-dirty-bitmap-add. If the bitmap is persistent, remove it from its storage too.

Arguments:
Errors:

  • If node is not a valid block device or node, DeviceNotFound

  • If name is not found, GenericError

  • if name is frozen by an operation, GenericError

Example:

-> { "execute": "block-dirty-bitmap-remove",
     "arguments": { "node": "drive0", "name": "bitmap0" } }
<- { "return": {} }
Command block-dirty-bitmap-clear (Since: 2.4)ïƒ

Clear (reset) a dirty bitmap on the device, so that an incremental backup from this point in time forward will only backup clusters modified after this clear operation.

Arguments:
Errors:

  • If node is not a valid block device, DeviceNotFound

  • If name is not found, GenericError

Example:

-> { "execute": "block-dirty-bitmap-clear",
     "arguments": { "node": "drive0", "name": "bitmap0" } }
<- { "return": {} }
Command block-dirty-bitmap-enable (Since: 4.0)ïƒ

Enables a dirty bitmap so that it will begin tracking disk changes.

Arguments:
Errors:

  • If node is not a valid block device, DeviceNotFound

  • If name is not found, GenericError

Example:

-> { "execute": "block-dirty-bitmap-enable",
     "arguments": { "node": "drive0", "name": "bitmap0" } }
<- { "return": {} }
Command block-dirty-bitmap-disable (Since: 4.0)ïƒ

Disables a dirty bitmap so that it will stop tracking disk changes.

Arguments:
Errors:

  • If node is not a valid block device, DeviceNotFound

  • If name is not found, GenericError

Example:

-> { "execute": "block-dirty-bitmap-disable",
     "arguments": { "node": "drive0", "name": "bitmap0" } }
<- { "return": {} }
Command block-dirty-bitmap-merge (Since: 4.0)ïƒ

Merge dirty bitmaps listed in bitmaps to the target dirty bitmap. Dirty bitmaps in bitmaps will be unchanged, except if it also appears as the target bitmap. Any bits already set in target will still be set after the merge, i.e., this operation does not clear the target. On error, target is unchanged.

The resulting bitmap will count as dirty any clusters that were dirty in any of the source bitmaps. This can be used to achieve backup checkpoints, or in simpler usages, to copy bitmaps.

Arguments:
Errors:

  • If node is not a valid block device, DeviceNotFound

  • If any bitmap in bitmaps or target is not found, GenericError

  • If any of the bitmaps have different sizes or granularities, GenericError

Example:

-> { "execute": "block-dirty-bitmap-merge",
     "arguments": { "node": "drive0", "target": "bitmap0",
                    "bitmaps": ["bitmap1"] } }
<- { "return": {} }
Object BlockDirtyBitmapSha256 (Since: 2.10)ïƒ

SHA256 hash of dirty bitmap data

Members:
  • sha256 (string) – ASCII representation of SHA256 bitmap hash

Command x-debug-block-dirty-bitmap-sha256 (Since: 2.10)ïƒ
This command is unstable/experimental.

Get bitmap SHA256.

Arguments:
Features:
  • unstable – This command is meant for debugging.

Return:

BlockDirtyBitmapSha256 – BlockDirtyBitmapSha256

Errors:

  • If node is not a valid block device, DeviceNotFound

  • If name is not found or if hashing has failed, GenericError

Command blockdev-mirror (Since: 2.6)ïƒ

Start mirroring a block device’s writes to a new destination.

Arguments:
  • job-id (string, optional) – identifier for the newly-created block job. If omitted, the device name will be used. (Since 2.7)

  • device (string) – The device name or node-name of a root node whose writes should be mirrored.

  • target (string) – the id or node-name of the block device to mirror to. This mustn’t be attached to guest.

  • replaces (string, optional) – with sync=full graph node name to be replaced by the new image when a whole image copy is done. This can be used to repair broken Quorum files. By default, device is replaced, although implicitly created filters on it are kept.

  • speed (int, optional) – the maximum speed, in bytes per second

  • sync (MirrorSyncMode) – what parts of the disk image should be copied to the destination (all the disk, only the sectors allocated in the topmost image, or only new I/O).

  • granularity (int, optional) – granularity of the dirty bitmap, default is 64K if the image format doesn’t have clusters, 4K if the clusters are smaller than that, else the cluster size. Must be a power of 2 between 512 and 64M

  • buf-size (int, optional) – maximum amount of data in flight from source to target

  • on-source-error (BlockdevOnError, optional) – the action to take on an error on the source, default ‘report’. ‘stop’ and ‘enospc’ can only be used if the block device supports io-status (see BlockInfo).

  • on-target-error (BlockdevOnError, optional) – the action to take on an error on the target, default ‘report’ (no limitations, since this applies to a different block device than device).

  • filter-node-name (string, optional) – the node name that should be assigned to the filter driver that the mirror job inserts into the graph above device. If this option is not given, a node name is autogenerated. (Since: 2.9)

  • copy-mode (MirrorCopyMode, optional) – when to copy data to the destination; defaults to ‘background’ (Since: 3.0)

  • auto-finalize (boolean, optional) – When false, this job will wait in a PENDING state after it has finished its work, waiting for block-job-finalize before making any block graph changes. When true, this job will automatically perform its abort or commit actions. Defaults to true. (Since 3.1)

  • auto-dismiss (boolean, optional) – When false, this job will wait in a CONCLUDED state after it has completely ceased all work, and awaits block-job-dismiss. When true, this job will automatically disappear from the query list without user intervention. Defaults to true. (Since 3.1)

Example:

-> { "execute": "blockdev-mirror",
     "arguments": { "device": "ide-hd0",
                    "target": "target0",
                    "sync": "full" } }
<- { "return": {} }
Object BlockIOThrottle (Since: 1.1)ïƒ

A set of parameters describing block throttling.

Members:
  • device (string, optional) – Block device name

  • id (string, optional) – The name or QOM path of the guest device (since: 2.8)

  • bps (int) – total throughput limit in bytes per second

  • bps_rd (int) – read throughput limit in bytes per second

  • bps_wr (int) – write throughput limit in bytes per second

  • iops (int) – total I/O operations per second

  • iops_rd (int) – read I/O operations per second

  • iops_wr (int) – write I/O operations per second

  • bps_max (int, optional) – total throughput limit during bursts, in bytes (Since 1.7)

  • bps_rd_max (int, optional) – read throughput limit during bursts, in bytes (Since 1.7)

  • bps_wr_max (int, optional) – write throughput limit during bursts, in bytes (Since 1.7)

  • iops_max (int, optional) – total I/O operations per second during bursts, in bytes (Since 1.7)

  • iops_rd_max (int, optional) – read I/O operations per second during bursts, in bytes (Since 1.7)

  • iops_wr_max (int, optional) – write I/O operations per second during bursts, in bytes (Since 1.7)

  • bps_max_length (int, optional) – maximum length of the bps_max burst period, in seconds. It must only be set if bps_max is set as well. Defaults to 1. (Since 2.6)

  • bps_rd_max_length (int, optional) – maximum length of the bps_rd_max burst period, in seconds. It must only be set if bps_rd_max is set as well. Defaults to 1. (Since 2.6)

  • bps_wr_max_length (int, optional) – maximum length of the bps_wr_max burst period, in seconds. It must only be set if bps_wr_max is set as well. Defaults to 1. (Since 2.6)

  • iops_max_length (int, optional) – maximum length of the iops burst period, in seconds. It must only be set if iops_max is set as well. Defaults to 1. (Since 2.6)

  • iops_rd_max_length (int, optional) – maximum length of the iops_rd_max burst period, in seconds. It must only be set if iops_rd_max is set as well. Defaults to 1. (Since 2.6)

  • iops_wr_max_length (int, optional) – maximum length of the iops_wr_max burst period, in seconds. It must only be set if iops_wr_max is set as well. Defaults to 1. (Since 2.6)

  • iops_size (int, optional) – an I/O size in bytes (Since 1.7)

  • group (string, optional) – throttle group name (Since 2.4)

Features:
  • deprecated – Member device is deprecated. Use id instead.

Object ThrottleLimits (Since: 2.11)ïƒ

Limit parameters for throttling. Since some limit combinations are illegal, limits should always be set in one transaction. All fields are optional. When setting limits, if a field is missing the current value is not changed.

Members:
  • iops-total (int, optional) – limit total I/O operations per second

  • iops-total-max (int, optional) – I/O operations burst

  • iops-total-max-length (int, optional) – length of the iops-total-max burst period, in seconds It must only be set if iops-total-max is set as well.

  • iops-read (int, optional) – limit read operations per second

  • iops-read-max (int, optional) – I/O operations read burst

  • iops-read-max-length (int, optional) – length of the iops-read-max burst period, in seconds It must only be set if iops-read-max is set as well.

  • iops-write (int, optional) – limit write operations per second

  • iops-write-max (int, optional) – I/O operations write burst

  • iops-write-max-length (int, optional) – length of the iops-write-max burst period, in seconds It must only be set if iops-write-max is set as well.

  • bps-total (int, optional) – limit total bytes per second

  • bps-total-max (int, optional) – total bytes burst

  • bps-total-max-length (int, optional) – length of the bps-total-max burst period, in seconds. It must only be set if bps-total-max is set as well.

  • bps-read (int, optional) – limit read bytes per second

  • bps-read-max (int, optional) – total bytes read burst

  • bps-read-max-length (int, optional) – length of the bps-read-max burst period, in seconds It must only be set if bps-read-max is set as well.

  • bps-write (int, optional) – limit write bytes per second

  • bps-write-max (int, optional) – total bytes write burst

  • bps-write-max-length (int, optional) – length of the bps-write-max burst period, in seconds It must only be set if bps-write-max is set as well.

  • iops-size (int, optional) – when limiting by iops max size of an I/O in bytes

Object ThrottleGroupProperties (Since: 2.11)ïƒ

Properties for throttle-group objects.

Members:
  • limits (ThrottleLimits, optional) – limits to apply for this throttle group

  • x-iops-total (int, optional) – Not documented

  • x-iops-total-max (int, optional) – Not documented

  • x-iops-total-max-length (int, optional) – Not documented

  • x-iops-read (int, optional) – Not documented

  • x-iops-read-max (int, optional) – Not documented

  • x-iops-read-max-length (int, optional) – Not documented

  • x-iops-write (int, optional) – Not documented

  • x-iops-write-max (int, optional) – Not documented

  • x-iops-write-max-length (int, optional) – Not documented

  • x-bps-total (int, optional) – Not documented

  • x-bps-total-max (int, optional) – Not documented

  • x-bps-total-max-length (int, optional) – Not documented

  • x-bps-read (int, optional) – Not documented

  • x-bps-read-max (int, optional) – Not documented

  • x-bps-read-max-length (int, optional) – Not documented

  • x-bps-write (int, optional) – Not documented

  • x-bps-write-max (int, optional) – Not documented

  • x-bps-write-max-length (int, optional) – Not documented

  • x-iops-size (int, optional) – Not documented

Features:
  • unstable – All members starting with x- are aliases for the same key without x- in the limits object. This is not a stable interface and may be removed or changed incompatibly in the future. Use limits for a supported stable interface.

Command block-stream (Since: 1.1)ïƒ

Copy data from a backing file into a block device.

The block streaming operation is performed in the background until the entire backing file has been copied. This command returns immediately once streaming has started. The status of ongoing block streaming operations can be checked with query-block-jobs. The operation can be stopped before it has completed using the block-job-cancel command.

The node that receives the data is called the top image, can be located in any part of the chain (but always above the base image; see below) and can be specified using its device or node name. Earlier qemu versions only allowed ‘device’ to name the top level node; presence of the ‘base-node’ parameter during introspection can be used as a witness of the enhanced semantics of ‘device’.

If a base file is specified then sectors are not copied from that base file and its backing chain. This can be used to stream a subset of the backing file chain instead of flattening the entire image. When streaming completes the image file will have the base file as its backing file, unless that node was changed while the job was running. In that case, base’s parent’s backing (or filtered, whichever exists) child (i.e., base at the beginning of the job) will be the new backing file.

On successful completion the image file is updated to drop the backing file and the BLOCK_JOB_COMPLETED event is emitted.

In case device is a filter node, block-stream modifies the first non-filter overlay node below it to point to the new backing node instead of modifying device itself.

Arguments:
  • job-id (string, optional) – identifier for the newly-created block job. If omitted, the device name will be used. (Since 2.7)

  • device (string) – the device or node name of the top image

  • base (string, optional) – the common backing file name. It cannot be set if base-node or bottom is also set.

  • base-node (string, optional) – the node name of the backing file. It cannot be set if base or bottom is also set. (Since 2.8)

  • bottom (string, optional) – the last node in the chain that should be streamed into top. It cannot be set if base or base-node is also set. It cannot be filter node. (Since 6.0)

  • backing-file (string, optional) –

    The backing file string to write into the top image. This filename is not validated.

    If a pathname string is such that it cannot be resolved by QEMU, that means that subsequent QMP or HMP commands must use node-names for the image in question, as filename lookup methods will fail.

    If not specified, QEMU will automatically determine the backing file string to use, or error out if there is no obvious choice. Care should be taken when specifying the string, to specify a valid filename or protocol. (Since 2.1)

  • backing-mask-protocol (boolean, optional) – If true, replace any protocol mentioned in the ‘backing file format’ with ‘raw’, rather than storing the protocol name as the backing format. Can be used even when no image header will be updated (default false; since 9.0).

  • speed (int, optional) – the maximum speed, in bytes per second

  • on-error (BlockdevOnError, optional) – the action to take on an error (default report). ‘stop’ and ‘enospc’ can only be used if the block device supports io-status (see BlockInfo). (Since 1.3)

  • filter-node-name (string, optional) – the node name that should be assigned to the filter driver that the stream job inserts into the graph above device. If this option is not given, a node name is autogenerated. (Since: 6.0)

  • auto-finalize (boolean, optional) – When false, this job will wait in a PENDING state after it has finished its work, waiting for block-job-finalize before making any block graph changes. When true, this job will automatically perform its abort or commit actions. Defaults to true. (Since 3.1)

  • auto-dismiss (boolean, optional) – When false, this job will wait in a CONCLUDED state after it has completely ceased all work, and awaits block-job-dismiss. When true, this job will automatically disappear from the query list without user intervention. Defaults to true. (Since 3.1)

Errors:

  • If device does not exist, DeviceNotFound.

Example:

-> { "execute": "block-stream",
     "arguments": { "device": "virtio0",
                    "base": "/tmp/master.qcow2" } }
<- { "return": {} }
Command block-job-set-speed (Since: 1.1)ïƒ

Set maximum speed for a background block operation.

This command can only be issued when there is an active block job.

Throttling can be disabled by setting the speed to 0.

Arguments:
  • device (string) – The job identifier. This used to be a device name (hence the name of the parameter), but since QEMU 2.7 it can have other values.

  • speed (int) – the maximum speed, in bytes per second, or 0 for unlimited. Defaults to 0.

Errors:

  • If no background operation is active on this device, DeviceNotActive

Command block-job-cancel (Since: 1.1)ïƒ

Stop an active background block operation.

This command returns immediately after marking the active background block operation for cancellation. It is an error to call this command if no operation is in progress.

The operation will cancel as soon as possible and then emit the BLOCK_JOB_CANCELLED event. Before that happens the job is still visible when enumerated using query-block-jobs.

Note that if you issue ‘block-job-cancel’ after ‘drive-mirror’ has indicated (via the event BLOCK_JOB_READY) that the source and destination are synchronized, then the event triggered by this command changes to BLOCK_JOB_COMPLETED, to indicate that the mirroring has ended and the destination now has a point-in-time copy tied to the time of the cancellation.

For streaming, the image file retains its backing file unless the streaming operation happens to complete just as it is being cancelled. A new streaming operation can be started at a later time to finish copying all data from the backing file.

Arguments:
  • device (string) – The job identifier. This used to be a device name (hence the name of the parameter), but since QEMU 2.7 it can have other values.

  • force (boolean, optional) – If true, and the job has already emitted the event BLOCK_JOB_READY, abandon the job immediately (even if it is paused) instead of waiting for the destination to complete its final synchronization (since 1.3)

Errors:

  • If no background operation is active on this device, DeviceNotActive

Command block-job-pause (Since: 1.3)ïƒ

Pause an active background block operation.

This command returns immediately after marking the active background block operation for pausing. It is an error to call this command if no operation is in progress or if the job is already paused.

The operation will pause as soon as possible. No event is emitted when the operation is actually paused. Cancelling a paused job automatically resumes it.

Arguments:
  • device (string) – The job identifier. This used to be a device name (hence the name of the parameter), but since QEMU 2.7 it can have other values.

Errors:

  • If no background operation is active on this device, DeviceNotActive

Command block-job-resume (Since: 1.3)ïƒ

Resume an active background block operation.

This command returns immediately after resuming a paused background block operation. It is an error to call this command if no operation is in progress or if the job is not paused.

This command also clears the error status of the job.

Arguments:
  • device (string) – The job identifier. This used to be a device name (hence the name of the parameter), but since QEMU 2.7 it can have other values.

Errors:

  • If no background operation is active on this device, DeviceNotActive

Command block-job-complete (Since: 1.3)ïƒ

Manually trigger completion of an active background block operation. This is supported for drive mirroring, where it also switches the device to write to the target path only. The ability to complete is signaled with a BLOCK_JOB_READY event.

This command completes an active background block operation synchronously. The ordering of this command’s return with the BLOCK_JOB_COMPLETED event is not defined. Note that if an I/O error occurs during the processing of this command: 1) the command itself will fail; 2) the error will be processed according to the rerror/werror arguments that were specified when starting the operation.

A cancelled or paused job cannot be completed.

Arguments:
  • device (string) – The job identifier. This used to be a device name (hence the name of the parameter), but since QEMU 2.7 it can have other values.

Errors:

  • If no background operation is active on this device, DeviceNotActive

Command block-job-dismiss (Since: 2.12)ïƒ

For jobs that have already concluded, remove them from the block-job-query list. This command only needs to be run for jobs which were started with QEMU 2.12+ job lifetime management semantics.

This command will refuse to operate on any job that has not yet reached its terminal state, JOB_STATUS_CONCLUDED. For jobs that make use of the BLOCK_JOB_READY event, block-job-cancel or block-job-complete will still need to be used as appropriate.

Arguments:
  • id (string) – The job identifier.

Command block-job-finalize (Since: 2.12)ïƒ

Once a job that has manual=true reaches the pending state, it can be instructed to finalize any graph changes and do any necessary cleanup via this command. For jobs in a transaction, instructing one job to finalize will force ALL jobs in the transaction to finalize, so it is only necessary to instruct a single member job to finalize.

Arguments:
  • id (string) – The job identifier.

Object BlockJobChangeOptionsMirror (Since: 8.2)ïƒ
Members:
  • copy-mode (MirrorCopyMode) – Switch to this copy mode. Currently, only the switch from ‘background’ to ‘write-blocking’ is implemented.

Object BlockJobChangeOptions (Since: 8.2)ïƒ

Block job options that can be changed after job creation.

Members:
Command block-job-change (Since: 8.2)ïƒ

Change the block job’s options.

Arguments:
Enum BlockdevDiscardOptions (Since: 2.9)ïƒ

Determines how to handle discard requests.

Values:
  • ignore – Ignore the request

  • unmap – Forward as an unmap request

Enum BlockdevDetectZeroesOptions (Since: 2.1)ïƒ

Describes the operation mode for the automatic conversion of plain zero writes by the OS to driver specific optimized zero write commands.

Values:
  • off – Disabled (default)

  • on – Enabled

  • unmap – Enabled and even try to unmap blocks if possible. This requires also that BlockdevDiscardOptions is set to unmap for this device.

Enum BlockdevAioOptions (Since: 2.9)ïƒ

Selects the AIO backend to handle I/O requests

Values:
  • threads – Use qemu’s thread pool

  • native – Use native AIO backend (only Linux and Windows)

  • io_uring – Use linux io_uring (since 5.0)

Object BlockdevCacheOptions (Since: 2.9)ïƒ

Includes cache-related options for block devices

Members:
  • direct (boolean, optional) – enables use of O_DIRECT (bypass the host page cache; default: false)

  • no-flush (boolean, optional) – ignore any flush requests for the device (default: false)

Enum BlockdevDriver (Since: 2.9)ïƒ

Drivers that are supported in block device operations.

Values:
  • throttle – Since 2.11

  • nvme – Since 2.12

  • copy-on-read – Since 3.0

  • blklogwrites – Since 3.0

  • blkreplay – Since 4.2

  • compress – Since 5.0

  • copy-before-write – Since 6.2

  • snapshot-access – Since 7.0

  • blkdebug – Not documented

  • blkverify – Not documented

  • bochs – Not documented

  • cloop – Not documented

  • dmg – Not documented

  • file – Not documented

  • ftp – Not documented

  • ftps – Not documented

  • gluster – Not documented

  • host_cdrom – Not documented

  • host_device – Not documented

  • http – Not documented

  • https – Not documented

  • io_uring – Not documented

  • iscsi – Not documented

  • luks – Not documented

  • nbd – Not documented

  • nfs – Not documented

  • null-aio – Not documented

  • null-co – Not documented

  • nvme-io_uring – Not documented

  • parallels – Not documented

  • preallocate – Not documented

  • qcow – Not documented

  • qcow2 – Not documented

  • qed – Not documented

  • quorum – Not documented

  • raw – Not documented

  • rbd – Not documented

  • replication – Not documented

  • ssh – Not documented

  • vdi – Not documented

  • vhdx – Not documented

  • virtio-blk-vfio-pci – Not documented

  • virtio-blk-vhost-user – Not documented

  • virtio-blk-vhost-vdpa – Not documented

  • vmdk – Not documented

  • vpc – Not documented

  • vvfat – Not documented

Features:
  • deprecated – Member gluster is deprecated because GlusterFS development ceased.

Object BlockdevOptionsFile (Since: 2.9)ïƒ

Driver specific block device options for the file backend.

Members:
  • filename (string) – path to the image file

  • pr-manager (string, optional) – the id for the object that will handle persistent reservations for this device (default: none, forward the commands via SG_IO; since 2.11)

  • aio (BlockdevAioOptions, optional) – AIO backend (default: threads) (since: 2.8)

  • aio-max-batch (int, optional) – maximum number of requests to batch together into a single submission in the AIO backend. The smallest value between this and the aio-max-batch value of the IOThread object is chosen. 0 means that the AIO backend will handle it automatically. (default: 0, since 6.2)

  • locking (OnOffAuto, optional) – whether to enable file locking. If set to ‘auto’, only enable when Open File Descriptor (OFD) locking API is available (default: auto, since 2.10)

  • drop-cache (boolean, optional) – invalidate page cache during live migration. This prevents stale data on the migration destination with cache.direct=off. Currently only supported on Linux hosts. (default: on, since: 4.0)

  • x-check-cache-dropped (boolean, optional) – whether to check that page cache was dropped on live migration. May cause noticeable delays if the image file is large, do not use in production. (default: off) (since: 3.0)

Features:
  • dynamic-auto-read-only – If present, enabled auto-read-only means that the driver will open the image read-only at first, dynamically reopen the image file read-write when the first writer is attached to the node and reopen read-only when the last writer is detached. This allows giving QEMU write permissions only on demand when an operation actually needs write access.

  • unstable – Member x-check-cache-dropped is meant for debugging.

Object BlockdevOptionsNull (Since: 2.9)ïƒ

Driver specific block device options for the null backend.

Members:
  • size (int, optional) – size of the device in bytes.

  • latency-ns (int, optional) – emulated latency (in nanoseconds) in processing requests. Default to zero which completes requests immediately. (Since 2.4)

  • read-zeroes (boolean, optional) – if true, reads from the device produce zeroes; if false, the buffer is left unchanged. (default: false; since: 4.1)

Object BlockdevOptionsNVMe (Since: 2.12)ïƒ

Driver specific block device options for the NVMe backend.

Members:
  • device (string) – PCI controller address of the NVMe device in format hhhh:bb:ss.f (host:bus:slot.function)

  • namespace (int) – namespace number of the device, starting from 1.

Note that the PCI device must have been unbound from any host kernel driver before instructing QEMU to add the blockdev.

Object BlockdevOptionsVVFAT (Since: 2.9)ïƒ

Driver specific block device options for the vvfat protocol.

Members:
  • dir (string) – directory to be exported as FAT image

  • fat-type (int, optional) – FAT type: 12, 16 or 32

  • floppy (boolean, optional) – whether to export a floppy image (true) or partitioned hard disk (false; default)

  • label (string, optional) – set the volume label, limited to 11 bytes. FAT16 and FAT32 traditionally have some restrictions on labels, which are ignored by most operating systems. Defaults to “QEMU VVFATâ€. (since 2.4)

  • rw (boolean, optional) – whether to allow write operations (default: false)

Object BlockdevOptionsGenericFormat (Since: 2.9)ïƒ

Driver specific block device options for image format that have no option besides their data source.

Members:
  • file (BlockdevRef) – reference to or definition of the data source block device

Object BlockdevOptionsLUKS (Since: 2.9)ïƒ

Driver specific block device options for LUKS.

Members:
  • key-secret (string, optional) – the ID of a QCryptoSecret object providing the decryption key (since 2.6). Mandatory except when doing a metadata-only probe of the image.

  • header (BlockdevRef, optional) – block device holding a detached LUKS header. (since 9.0)

  • The members of BlockdevOptionsGenericFormat.

Object BlockdevOptionsGenericCOWFormat (Since: 2.9)ïƒ

Driver specific block device options for image format that have no option besides their data source and an optional backing file.

Members:
  • backing (BlockdevRefOrNull, optional) – reference to or definition of the backing file block device, null disables the backing file entirely. Defaults to the backing file stored the image file.

  • The members of BlockdevOptionsGenericFormat.

Enum Qcow2OverlapCheckMode (Since: 2.9)ïƒ

General overlap check modes.

Values:
  • none – Do not perform any checks

  • constant – Perform only checks which can be done in constant time and without reading anything from disk

  • cached – Perform only checks which can be done without reading anything from disk

  • all – Perform all available overlap checks

Object Qcow2OverlapCheckFlags (Since: 2.9)ïƒ

Structure of flags for each metadata structure. Setting a field to ‘true’ makes QEMU guard that Qcow2 format structure against unintended overwriting. See Qcow2 format specification for detailed information on these structures. The default value is chosen according to the template given.

Members:
  • template (Qcow2OverlapCheckMode, optional) – Specifies a template mode which can be adjusted using the other flags, defaults to ‘cached’

  • main-header (boolean, optional) – Qcow2 format header

  • active-l1 (boolean, optional) – Qcow2 active L1 table

  • active-l2 (boolean, optional) – Qcow2 active L2 table

  • refcount-table (boolean, optional) – Qcow2 refcount table

  • refcount-block (boolean, optional) – Qcow2 refcount blocks

  • snapshot-table (boolean, optional) – Qcow2 snapshot table

  • inactive-l1 (boolean, optional) – Qcow2 inactive L1 tables

  • inactive-l2 (boolean, optional) – Qcow2 inactive L2 tables

  • bitmap-directory (boolean, optional) – Qcow2 bitmap directory (since 3.0)

Alternate Qcow2OverlapChecks (Since: 2.9)ïƒ

Specifies which metadata structures should be guarded against unintended overwriting.

Alternatives:
Enum BlockdevQcowEncryptionFormat (Since: 2.10)ïƒ
Values:
  • aes – AES-CBC with plain64 initialization vectors

Object BlockdevQcowEncryption (Since: 2.10)ïƒ
Members:
Object BlockdevOptionsQcow (Since: 2.10)ïƒ

Driver specific block device options for qcow.

Members:
Enum BlockdevQcow2EncryptionFormat (Since: 2.10)ïƒ
Values:
  • aes – AES-CBC with plain64 initialization vectors

  • luks – Not documented

Object BlockdevQcow2Encryption (Since: 2.10)ïƒ
Members:
Object BlockdevOptionsPreallocate (Since: 6.0)ïƒ

Filter driver intended to be inserted between format and protocol node and do preallocation in protocol node on write.

Members:
  • prealloc-align (int, optional) – on preallocation, align file length to this number, default 1048576 (1M)

  • prealloc-size (int, optional) – how much to preallocate, default 134217728 (128M)

  • The members of BlockdevOptionsGenericFormat.

Object BlockdevOptionsQcow2 (Since: 2.9)ïƒ

Driver specific block device options for qcow2.

Members:
  • lazy-refcounts (boolean, optional) – whether to enable the lazy refcounts feature (default is taken from the image file)

  • pass-discard-request (boolean, optional) – whether discard requests to the qcow2 device should be forwarded to the data source

  • pass-discard-snapshot (boolean, optional) – whether discard requests for the data source should be issued when a snapshot operation (e.g. deleting a snapshot) frees clusters in the qcow2 file

  • pass-discard-other (boolean, optional) – whether discard requests for the data source should be issued on other occasions where a cluster gets freed

  • discard-no-unref (boolean, optional) – when enabled, data clusters will remain preallocated when they are no longer used, e.g. because they are discarded or converted to zero clusters. As usual, whether the old data is discarded or kept on the protocol level (i.e. in the image file) depends on the setting of the pass-discard-request option. Keeping the clusters preallocated prevents qcow2 fragmentation that would otherwise be caused by freeing and re-allocating them later. Besides potential performance degradation, such fragmentation can lead to increased allocation of clusters past the end of the image file, resulting in image files whose file length can grow much larger than their guest disk size would suggest. If image file length is of concern (e.g. when storing qcow2 images directly on block devices), you should consider enabling this option. (since 8.1)

  • overlap-check (Qcow2OverlapChecks, optional) – which overlap checks to perform for writes to the image, defaults to ‘cached’ (since 2.2)

  • cache-size (int, optional) – the maximum total size of the L2 table and refcount block caches in bytes (since 2.2)

  • l2-cache-size (int, optional) – the maximum size of the L2 table cache in bytes (since 2.2)

  • l2-cache-entry-size (int, optional) – the size of each entry in the L2 cache in bytes. It must be a power of two between 512 and the cluster size. The default value is the cluster size (since 2.12)

  • refcount-cache-size (int, optional) – the maximum size of the refcount block cache in bytes (since 2.2)

  • cache-clean-interval (int, optional) – clean unused entries in the L2 and refcount caches. The interval is in seconds. The default value is 600 on supporting platforms, and 0 on other platforms. 0 disables this feature. (since 2.5)

  • encrypt (BlockdevQcow2Encryption, optional) – Image decryption options. Mandatory for encrypted images, except when doing a metadata-only probe of the image. (since 2.10)

  • data-file (BlockdevRef, optional) – reference to or definition of the external data file. This may only be specified for images that require an external data file. If it is not specified for such an image, the data file name is loaded from the image file. (since 4.0)

  • The members of BlockdevOptionsGenericCOWFormat.

Enum SshHostKeyCheckMode (Since: 2.12)ïƒ
Values:
  • none – Don’t check the host key at all

  • hash – Compare the host key with a given hash

  • known_hosts – Check the host key against the known_hosts file

Enum SshHostKeyCheckHashType (Since: 2.12)ïƒ
Values:
  • md5 – The given hash is an md5 hash

  • sha1 – The given hash is an sha1 hash

  • sha256 – The given hash is an sha256 hash

Object SshHostKeyHash (Since: 2.12)ïƒ
Members:
  • type (SshHostKeyCheckHashType) – The hash algorithm used for the hash

  • hash (string) – The expected hash value

Object SshHostKeyCheck (Since: 2.12)ïƒ
Members:
Object BlockdevOptionsSsh (Since: 2.9)ïƒ
Members:
  • server (InetSocketAddress) – host address

  • path (string) – path to the image on the host

  • user (string, optional) – user as which to connect, defaults to current local user name

  • host-key-check (SshHostKeyCheck, optional) – Defines how and what to check the host key against (default: known_hosts)

Enum BlkdebugEvent (Since: 2.9)ïƒ

Trigger events supported by blkdebug.

Values:
  • l1_shrink_write_table – write zeros to the l1 table to shrink image. (since 2.11)

  • l1_shrink_free_l2_clusters – discard the l2 tables. (since 2.11)

  • cor_write – a write due to copy-on-read (since 2.11)

  • cluster_alloc_space – an allocation of file space for a cluster (since 4.1)

  • none – triggers once at creation of the blkdebug node (since 4.1)

  • l1_update – Not documented

  • l1_grow_alloc_table – Not documented

  • l1_grow_write_table – Not documented

  • l1_grow_activate_table – Not documented

  • l2_load – Not documented

  • l2_update – Not documented

  • l2_update_compressed – Not documented

  • l2_alloc_cow_read – Not documented

  • l2_alloc_write – Not documented

  • read_aio – Not documented

  • read_backing_aio – Not documented

  • read_compressed – Not documented

  • write_aio – Not documented

  • write_compressed – Not documented

  • vmstate_load – Not documented

  • vmstate_save – Not documented

  • cow_read – Not documented

  • cow_write – Not documented

  • reftable_load – Not documented

  • reftable_grow – Not documented

  • reftable_update – Not documented

  • refblock_load – Not documented

  • refblock_update – Not documented

  • refblock_update_part – Not documented

  • refblock_alloc – Not documented

  • refblock_alloc_hookup – Not documented

  • refblock_alloc_write – Not documented

  • refblock_alloc_write_blocks – Not documented

  • refblock_alloc_write_table – Not documented

  • refblock_alloc_switch_table – Not documented

  • cluster_alloc – Not documented

  • cluster_alloc_bytes – Not documented

  • cluster_free – Not documented

  • flush_to_os – Not documented

  • flush_to_disk – Not documented

  • pwritev_rmw_head – Not documented

  • pwritev_rmw_after_head – Not documented

  • pwritev_rmw_tail – Not documented

  • pwritev_rmw_after_tail – Not documented

  • pwritev – Not documented

  • pwritev_zero – Not documented

  • pwritev_done – Not documented

  • empty_image_prepare – Not documented

Enum BlkdebugIOType (Since: 4.1)ïƒ

Kinds of I/O that blkdebug can inject errors in.

Values:
  • read – .bdrv_co_preadv()

  • write – .bdrv_co_pwritev()

  • write-zeroes – .bdrv_co_pwrite_zeroes()

  • discard – .bdrv_co_pdiscard()

  • flush – .bdrv_co_flush_to_disk()

  • block-status – .bdrv_co_block_status()

Object BlkdebugInjectErrorOptions (Since: 2.9)ïƒ

Describes a single error injection for blkdebug.

Members:
  • event (BlkdebugEvent) – trigger event

  • state (int, optional) – the state identifier blkdebug needs to be in to actually trigger the event; defaults to “anyâ€

  • iotype (BlkdebugIOType, optional) – the type of I/O operations on which this error should be injected; defaults to “all read, write, write-zeroes, discard, and flush operations†(since: 4.1)

  • errno (int, optional) – error identifier (errno) to be returned; defaults to EIO

  • sector (int, optional) – specifies the sector index which has to be affected in order to actually trigger the event; defaults to “any sectorâ€

  • once (boolean, optional) – disables further events after this one has been triggered; defaults to false

  • immediately (boolean, optional) – fail immediately; defaults to false

Object BlkdebugSetStateOptions (Since: 2.9)ïƒ

Describes a single state-change event for blkdebug.

Members:
  • event (BlkdebugEvent) – trigger event

  • state (int, optional) – the current state identifier blkdebug needs to be in; defaults to “anyâ€

  • new_state (int) – the state identifier blkdebug is supposed to assume if this event is triggered

Object BlockdevOptionsBlkdebug (Since: 2.9)ïƒ

Driver specific block device options for blkdebug.

Members:
  • image (BlockdevRef) – underlying raw block device (or image file)

  • config (string, optional) – filename of the configuration file

  • align (int, optional) – required alignment for requests in bytes, must be positive power of 2, or 0 for default

  • max-transfer (int, optional) – maximum size for I/O transfers in bytes, must be positive multiple of align and of the underlying file’s request alignment (but need not be a power of 2), or 0 for default (since 2.10)

  • opt-write-zero (int, optional) – preferred alignment for write zero requests in bytes, must be positive multiple of align and of the underlying file’s request alignment (but need not be a power of 2), or 0 for default (since 2.10)

  • max-write-zero (int, optional) – maximum size for write zero requests in bytes, must be positive multiple of align, of opt-write-zero, and of the underlying file’s request alignment (but need not be a power of 2), or 0 for default (since 2.10)

  • opt-discard (int, optional) – preferred alignment for discard requests in bytes, must be positive multiple of align and of the underlying file’s request alignment (but need not be a power of 2), or 0 for default (since 2.10)

  • max-discard (int, optional) – maximum size for discard requests in bytes, must be positive multiple of align, of opt-discard, and of the underlying file’s request alignment (but need not be a power of 2), or 0 for default (since 2.10)

  • inject-error ([BlkdebugInjectErrorOptions], optional) – array of error injection descriptions

  • set-state ([BlkdebugSetStateOptions], optional) – array of state-change descriptions

  • take-child-perms ([BlockPermission], optional) – Permissions to take on image in addition to what is necessary anyway (which depends on how the blkdebug node is used). Defaults to none. (since 5.0)

  • unshare-child-perms ([BlockPermission], optional) – Permissions not to share on image in addition to what cannot be shared anyway (which depends on how the blkdebug node is used). Defaults to none. (since 5.0)

Object BlockdevOptionsBlklogwrites (Since: 3.0)ïƒ

Driver specific block device options for blklogwrites.

Members:
  • file (BlockdevRef) – block device

  • log (BlockdevRef) – block device used to log writes to file

  • log-sector-size (int, optional) – sector size used in logging writes to file, determines granularity of offsets and sizes of writes (default: 512)

  • log-append (boolean, optional) – append to an existing log (default: false)

  • log-super-update-interval (int, optional) – interval of write requests after which the log super block is updated to disk (default: 4096)

Object BlockdevOptionsBlkverify (Since: 2.9)ïƒ

Driver specific block device options for blkverify.

Members:
  • test (BlockdevRef) – block device to be tested

  • raw (BlockdevRef) – raw image used for verification

Object BlockdevOptionsBlkreplay (Since: 4.2)ïƒ

Driver specific block device options for blkreplay.

Members:
  • image (BlockdevRef) – disk image which should be controlled with blkreplay

Enum QuorumReadPattern (Since: 2.9)ïƒ

An enumeration of quorum read patterns.

Values:
  • quorum – read all the children and do a quorum vote on reads

  • fifo – read only from the first child that has not failed

Object BlockdevOptionsQuorum (Since: 2.9)ïƒ

Driver specific block device options for Quorum

Members:
  • blkverify (boolean, optional) – true if the driver must print content mismatch set to false by default

  • children ([BlockdevRef]) – the children block devices to use

  • vote-threshold (int) – the vote limit under which a read will fail

  • rewrite-corrupted (boolean, optional) – rewrite corrupted data when quorum is reached (Since 2.1)

  • read-pattern (QuorumReadPattern, optional) – choose read pattern and set to quorum by default (Since 2.2)

Object BlockdevOptionsGluster (Since: 2.9)ïƒ

Driver specific block device options for Gluster

Members:
  • volume (string) – name of gluster volume where VM image resides

  • path (string) – absolute path to image file in gluster volume

  • server ([SocketAddress]) – gluster servers description

  • debug (int, optional) – libgfapi log level (default ‘4’ which is Error) (Since 2.8)

  • logfile (string, optional) – libgfapi log file (default /dev/stderr) (Since 2.8)

Object BlockdevOptionsIoUring (Since: 7.2)ïƒ
Availability: CONFIG_BLKIO

Driver specific block device options for the io_uring backend.

Members:
  • filename (string) – path to the image file

Object BlockdevOptionsNvmeIoUring (Since: 7.2)ïƒ
Availability: CONFIG_BLKIO

Driver specific block device options for the nvme-io_uring backend.

Members:
  • path (string) – path to the NVMe namespace’s character device (e.g. /dev/ng0n1).

Object BlockdevOptionsVirtioBlkVfioPci (Since: 7.2)ïƒ
Availability: CONFIG_BLKIO

Driver specific block device options for the virtio-blk-vfio-pci backend.

Members:
  • path (string) – path to the PCI device’s sysfs directory (e.g. /sys/bus/pci/devices/0000:00:01.0).

Object BlockdevOptionsVirtioBlkVhostUser (Since: 7.2)ïƒ
Availability: CONFIG_BLKIO

Driver specific block device options for the virtio-blk-vhost-user backend.

Members:
  • path (string) – path to the vhost-user UNIX domain socket.

Object BlockdevOptionsVirtioBlkVhostVdpa (Since: 7.2)ïƒ
Availability: CONFIG_BLKIO

Driver specific block device options for the virtio-blk-vhost-vdpa backend.

Members:
  • path (string) – path to the vhost-vdpa character device.

Features:
  • fdset – Member path supports the special “/dev/fdset/N†path (since 8.1)

Enum IscsiTransport (Since: 2.9)ïƒ

An enumeration of libiscsi transport types

Values:
  • tcp – Not documented

  • iser – Not documented

Enum IscsiHeaderDigest (Since: 2.9)ïƒ

An enumeration of header digests supported by libiscsi

Values:
  • crc32c – Not documented

  • none – Not documented

  • crc32c-none – Not documented

  • none-crc32c – Not documented

Object BlockdevOptionsIscsi (Since: 2.9)ïƒ

Driver specific block device options for iscsi

Members:
  • transport (IscsiTransport) – The iscsi transport type

  • portal (string) – The address of the iscsi portal

  • target (string) – The target iqn name

  • lun (int, optional) – LUN to connect to. Defaults to 0.

  • user (string, optional) – User name to log in with. If omitted, no CHAP authentication is performed.

  • password-secret (string, optional) – The ID of a QCryptoSecret object providing the password for the login. This option is required if user is specified.

  • initiator-name (string, optional) – The iqn name we want to identify to the target as. If this option is not specified, an initiator name is generated automatically.

  • header-digest (IscsiHeaderDigest, optional) – The desired header digest. Defaults to none-crc32c.

  • timeout (int, optional) – Timeout in seconds after which a request will timeout. 0 means no timeout and is the default.

Enum RbdAuthMode (Since: 3.0)ïƒ
Values:
  • cephx – Not documented

  • none – Not documented

Enum RbdImageEncryptionFormat (Since: 6.1)ïƒ
Values:
  • luks-any – Used for opening either luks or luks2 (Since 8.0)

  • luks – Not documented

  • luks2 – Not documented

Object RbdEncryptionOptionsLUKSBase (Since: 6.1)ïƒ
Members:
  • key-secret (string) – ID of a QCryptoSecret object providing a passphrase for unlocking the encryption

Object RbdEncryptionCreateOptionsLUKSBase (Since: 6.1)ïƒ
Members:
Object RbdEncryptionOptionsLUKS (Since: 6.1)ïƒ
Members:
Object RbdEncryptionOptionsLUKS2 (Since: 6.1)ïƒ
Members:
Object RbdEncryptionOptionsLUKSAny (Since: 8.0)ïƒ
Members:
Object RbdEncryptionCreateOptionsLUKS (Since: 6.1)ïƒ
Members:
Object RbdEncryptionCreateOptionsLUKS2 (Since: 6.1)ïƒ
Members:
Object RbdEncryptionOptions (Since: 6.1)ïƒ
Members:
Object RbdEncryptionCreateOptions (Since: 6.1)ïƒ
Members:
Object BlockdevOptionsRbd (Since: 2.9)ïƒ
Members:
  • pool (string) – Ceph pool name.

  • namespace (string, optional) – Rados namespace name in the Ceph pool. (Since 5.0)

  • image (string) – Image name in the Ceph pool.

  • conf (string, optional) – path to Ceph configuration file. Values in the configuration file will be overridden by options specified via QAPI.

  • snapshot (string, optional) – Ceph snapshot name.

  • encrypt (RbdEncryptionOptions, optional) – Image encryption options. (Since 6.1)

  • user (string, optional) – Ceph id name.

  • auth-client-required ([RbdAuthMode], optional) – Acceptable authentication modes. This maps to Ceph configuration option “auth_client_requiredâ€. (Since 3.0)

  • key-secret (string, optional) – ID of a QCryptoSecret object providing a key for cephx authentication. This maps to Ceph configuration option “keyâ€. (Since 3.0)

  • server ([InetSocketAddressBase], optional) – Monitor host address and port. This maps to the “mon_host†Ceph option.

Enum ReplicationMode (Since: 2.9)ïƒ
Availability: CONFIG_REPLICATION

An enumeration of replication modes.

Values:
  • primary – Primary mode, the vm’s state will be sent to secondary QEMU.

  • secondary – Secondary mode, receive the vm’s state from primary QEMU.

Object BlockdevOptionsReplication (Since: 2.9)ïƒ
Availability: CONFIG_REPLICATION

Driver specific block device options for replication

Members:
  • mode (ReplicationMode) – the replication mode

  • top-id (string, optional) – In secondary mode, node name or device ID of the root node who owns the replication node chain. Must not be given in primary mode.

  • The members of BlockdevOptionsGenericFormat.

Enum NFSTransport (Since: 2.9)ïƒ

An enumeration of NFS transport types

Values:
  • inet – TCP transport

Object NFSServer (Since: 2.9)ïƒ

Captures the address of the socket

Members:
  • type (NFSTransport) – transport type used for NFS (only TCP supported)

  • host (string) – host address for NFS server

Object BlockdevOptionsNfs (Since: 2.9)ïƒ

Driver specific block device option for NFS

Members:
  • server (NFSServer) – host address

  • path (string) – path of the image on the host

  • user (int, optional) – UID value to use when talking to the server (defaults to 65534 on Windows and getuid() on unix)

  • group (int, optional) – GID value to use when talking to the server (defaults to 65534 on Windows and getgid() in unix)

  • tcp-syn-count (int, optional) – number of SYNs during the session establishment (defaults to libnfs default)

  • readahead-size (int, optional) – set the readahead size in bytes (defaults to libnfs default)

  • page-cache-size (int, optional) – set the pagecache size in bytes (defaults to libnfs default)

  • debug (int, optional) – set the NFS debug level (max 2) (defaults to libnfs default)

Object BlockdevOptionsCurlBase (Since: 2.9)ïƒ

Driver specific block device options shared by all protocols supported by the curl backend.

Members:
  • url (string) – URL of the image file

  • readahead (int, optional) – Size of the read-ahead cache; must be a multiple of 512 (defaults to 256 kB)

  • timeout (int, optional) – Timeout for connections, in seconds (defaults to 5)

  • username (string, optional) – Username for authentication (defaults to none)

  • password-secret (string, optional) – ID of a QCryptoSecret object providing a password for authentication (defaults to no password)

  • proxy-username (string, optional) – Username for proxy authentication (defaults to none)

  • proxy-password-secret (string, optional) – ID of a QCryptoSecret object providing a password for proxy authentication (defaults to no password)

Object BlockdevOptionsCurlHttp (Since: 2.9)ïƒ

Driver specific block device options for HTTP connections over the curl backend. URLs must start with “http://â€.

Members:
  • cookie (string, optional) – List of cookies to set; format is “name1=content1; name2=content2;†as explained by CURLOPT_COOKIE(3). Defaults to no cookies.

  • cookie-secret (string, optional) – ID of a QCryptoSecret object providing the cookie data in a secure way. See cookie for the format. (since 2.10)

  • The members of BlockdevOptionsCurlBase.

Object BlockdevOptionsCurlHttps (Since: 2.9)ïƒ

Driver specific block device options for HTTPS connections over the curl backend. URLs must start with “https://â€.

Members:
  • cookie (string, optional) – List of cookies to set; format is “name1=content1; name2=content2;†as explained by CURLOPT_COOKIE(3). Defaults to no cookies.

  • sslverify (boolean, optional) – Whether to verify the SSL certificate’s validity (defaults to true)

  • cookie-secret (string, optional) – ID of a QCryptoSecret object providing the cookie data in a secure way. See cookie for the format. (since 2.10)

  • The members of BlockdevOptionsCurlBase.

Object BlockdevOptionsCurlFtp (Since: 2.9)ïƒ

Driver specific block device options for FTP connections over the curl backend. URLs must start with “ftp://â€.

Members:
Object BlockdevOptionsCurlFtps (Since: 2.9)ïƒ

Driver specific block device options for FTPS connections over the curl backend. URLs must start with “ftps://â€.

Members:
  • sslverify (boolean, optional) – Whether to verify the SSL certificate’s validity (defaults to true)

  • The members of BlockdevOptionsCurlBase.

Object BlockdevOptionsNbd (Since: 2.9)ïƒ

Driver specific block device options for NBD.

Members:
  • server (SocketAddress) – NBD server address

  • export (string, optional) – export name

  • tls-creds (string, optional) – TLS credentials ID

  • tls-hostname (string, optional) – TLS hostname override for certificate validation (Since 7.0)

  • x-dirty-bitmap (string, optional) – A metadata context name such as “qemu:dirty-bitmap:NAME†or “qemu:allocation-depth†to query in place of the traditional “base:allocation†block status (see NBD_OPT_LIST_META_CONTEXT in the NBD protocol; and yes, naming this option x-context would have made more sense) (since 3.0)

  • reconnect-delay (int, optional) – On an unexpected disconnect, the nbd client tries to connect again until succeeding or encountering a serious error. During the first reconnect-delay seconds, all requests are paused and will be rerun on a successful reconnect. After that time, any delayed requests and all future requests before a successful reconnect will immediately fail. Default 0 (Since 4.2)

  • open-timeout (int, optional) – In seconds. If zero, the nbd driver tries the connection only once, and fails to open if the connection fails. If non-zero, the nbd driver will repeat connection attempts until successful or until open-timeout seconds have elapsed. Default 0 (Since 7.0)

Features:
  • unstable – Member x-dirty-bitmap is experimental.

Object BlockdevOptionsRaw (Since: 2.9)ïƒ

Driver specific block device options for the raw driver.

Members:
  • offset (int, optional) – position where the block device starts

  • size (int, optional) – the assumed size of the device

  • The members of BlockdevOptionsGenericFormat.

Object BlockdevOptionsThrottle (Since: 2.11)ïƒ

Driver specific block device options for the throttle driver

Members:
  • throttle-group (string) – the name of the throttle-group object to use. It must already exist.

  • file (BlockdevRef) – reference to or definition of the data source block device

Object BlockdevOptionsCor (Since: 6.0)ïƒ

Driver specific block device options for the copy-on-read driver.

Members:
  • bottom (string, optional) – The name of a non-filter node (allocation-bearing layer) that limits the COR operations in the backing chain (inclusive), so that no data below this node will be copied by this filter. If option is absent, the limit is not applied, so that data from all backing layers may be copied.

  • The members of BlockdevOptionsGenericFormat.

Enum OnCbwError (Since: 7.1)ïƒ

An enumeration of possible behaviors for copy-before-write operation failures.

Values:
  • break-guest-write – report the error to the guest. This way, the guest will not be able to overwrite areas that cannot be backed up, so the backup process remains valid.

  • break-snapshot – continue guest write. Doing so will make the provided snapshot state invalid and any backup or export process based on it will finally fail.

Object BlockdevOptionsCbw (Since: 6.2)ïƒ

Driver specific block device options for the copy-before-write driver, which does so called copy-before-write operations: when data is written to the filter, the filter first reads corresponding blocks from its file child and copies them to target child. After successfully copying, the write request is propagated to file child. If copying fails, the original write request is failed too and no data is written to file child.

Members:
  • target (BlockdevRef) – The target for copy-before-write operations.

  • bitmap (BlockDirtyBitmap, optional) – If specified, copy-before-write filter will do copy-before-write operations only for dirty regions of the bitmap. Bitmap size must be equal to length of file and target child of the filter. Note also, that bitmap is used only to initialize internal bitmap of the process, so further modifications (or removing) of specified bitmap doesn’t influence the filter. (Since 7.0)

  • on-cbw-error (OnCbwError, optional) – Behavior on failure of copy-before-write operation. Default is break-guest-write. (Since 7.1)

  • cbw-timeout (int, optional) – Zero means no limit. Non-zero sets the timeout in seconds for copy-before-write operation. When a timeout occurs, the respective copy-before-write operation will fail, and the on-cbw-error parameter will decide how this failure is handled. Default 0. (Since 7.1)

  • min-cluster-size (int, optional) – Minimum size of blocks used by copy-before-write operations. Has to be a power of 2. No effect if smaller than the maximum of the target’s cluster size and 64 KiB. Default 0. (Since 9.2)

  • The members of BlockdevOptionsGenericFormat.

Object BlockdevOptions (Since: 2.9)ïƒ

Options for creating a block device. Many options are available for all block devices, independent of the block driver:

Members:
Alternate BlockdevRef (Since: 2.9)ïƒ

Reference to a block device.

Alternatives:
  • definition (BlockdevOptions) – defines a new block device inline

  • reference (string) – references the ID of an existing block device

Alternate BlockdevRefOrNull (Since: 2.9)ïƒ

Reference to a block device.

Alternatives:
  • definition (BlockdevOptions) – defines a new block device inline

  • reference (string) – references the ID of an existing block device. An empty string means that no block device should be referenced. Deprecated; use null instead.

  • null (null) – No block device should be referenced (since 2.10)

Command blockdev-add (Since: 2.9)ïƒ

Creates a new block device.

Arguments:

Example:

-> { "execute": "blockdev-add",
     "arguments": {
          "driver": "qcow2",
          "node-name": "test1",
          "file": {
              "driver": "file",
              "filename": "test.qcow2"
           }
      }
    }
<- { "return": {} }

Example:

-> { "execute": "blockdev-add",
     "arguments": {
          "driver": "qcow2",
          "node-name": "node0",
          "discard": "unmap",
          "cache": {
             "direct": true
           },
           "file": {
             "driver": "file",
             "filename": "/tmp/test.qcow2"
           },
           "backing": {
              "driver": "raw",
              "file": {
                 "driver": "file",
                 "filename": "/dev/fdset/4"
               }
           }
       }
     }

<- { "return": {} }
Command blockdev-reopen (Since: 6.1)ïƒ

Reopens one or more block devices using the given set of options. Any option not specified will be reset to its default value regardless of its previous status. If an option cannot be changed or a particular driver does not support reopening then the command will return an error. All devices in the list are reopened in one transaction, so if one of them fails then the whole transaction is cancelled.

The command receives a list of block devices to reopen. For each one of them, the top-level node-name option (from BlockdevOptions) must be specified and is used to select the block device to be reopened. Other node-name options must be either omitted or set to the current name of the appropriate node. This command won’t change any node name and any attempt to do it will result in an error.

In the case of options that refer to child nodes, the behavior of this command depends on the value:

  1. A set of options (BlockdevOptions): the child is reopened with the specified set of options.

  2. A reference to the current child: the child is reopened using its existing set of options.

  3. A reference to a different node: the current child is replaced with the specified one.

  4. NULL: the current child (if any) is detached.

Options (1) and (2) are supported in all cases. Option (3) is supported for file and backing, and option (4) for backing only.

Unlike with blockdev-add, the backing option must always be present unless the node being reopened does not have a backing file and its image does not have a default backing file name as part of its metadata.

Arguments:
Command blockdev-del (Since: 2.9)ïƒ

Deletes a block device that has been added using blockdev-add. The command will fail if the node is attached to a device or is otherwise being used.

Arguments:
  • node-name (string) – Name of the graph node to delete.

Example:

-> { "execute": "blockdev-add",
     "arguments": {
          "driver": "qcow2",
          "node-name": "node0",
          "file": {
              "driver": "file",
              "filename": "test.qcow2"
          }
     }
   }
<- { "return": {} }

-> { "execute": "blockdev-del",
     "arguments": { "node-name": "node0" }
   }
<- { "return": {} }
Command blockdev-set-active (Since: 10.0)ïƒ

Activate or inactivate a block device. Use this to manage the handover of block devices on migration with qemu-storage-daemon.

Activating a node automatically activates all of its child nodes first. Inactivating a node automatically inactivates any of its child nodes that are not in use by a still active node.

Arguments:
  • node-name (string, optional) – Name of the graph node to activate or inactivate. By default, all nodes are affected by the operation.

  • active (boolean) – true if the nodes should be active when the command returns success, false if they should be inactive.

Example:

-> { "execute": "blockdev-set-active",
     "arguments": {
          "node-name": "node0",
          "active": false
     }
   }
<- { "return": {} }
Object BlockdevCreateOptionsFile (Since: 2.12)ïƒ

Driver specific image creation options for file.

Members:
  • filename (string) – Filename for the new image file

  • size (int) – Size of the virtual disk in bytes

  • preallocation (PreallocMode, optional) – Preallocation mode for the new image (default: off; allowed values: off, falloc (if CONFIG_POSIX_FALLOCATE), full (if CONFIG_POSIX))

  • nocow (boolean, optional) – Turn off copy-on-write (valid only on btrfs; default: off)

  • extent-size-hint (int, optional) – Extent size hint to add to the image file; 0 for not adding an extent size hint (default: 1 MB, since 5.1)

Object BlockdevCreateOptionsGluster (Since: 2.12)ïƒ

Driver specific image creation options for gluster.

Members:
  • location (BlockdevOptionsGluster) – Where to store the new image file

  • size (int) – Size of the virtual disk in bytes

  • preallocation (PreallocMode, optional) – Preallocation mode for the new image (default: off; allowed values: off, falloc (if CONFIG_GLUSTERFS_FALLOCATE), full (if CONFIG_GLUSTERFS_ZEROFILL))

Object BlockdevCreateOptionsLUKS (Since: 2.12)ïƒ

Driver specific image creation options for LUKS.

Members:
  • file (BlockdevRef, optional) – Node to create the image format on, mandatory except when ‘preallocation’ is not requested

  • header (BlockdevRef, optional) – Block device holding a detached LUKS header. (since 9.0)

  • size (int) – Size of the virtual disk in bytes

  • preallocation (PreallocMode, optional) – Preallocation mode for the new image (since: 4.2) (default: off; allowed values: off, metadata, falloc, full)

  • The members of QCryptoBlockCreateOptionsLUKS.

Object BlockdevCreateOptionsNfs (Since: 2.12)ïƒ

Driver specific image creation options for NFS.

Members:
  • location (BlockdevOptionsNfs) – Where to store the new image file

  • size (int) – Size of the virtual disk in bytes

Object BlockdevCreateOptionsParallels (Since: 2.12)ïƒ

Driver specific image creation options for parallels.

Members:
  • file (BlockdevRef) – Node to create the image format on

  • size (int) – Size of the virtual disk in bytes

  • cluster-size (int, optional) – Cluster size in bytes (default: 1 MB)

Object BlockdevCreateOptionsQcow (Since: 2.12)ïƒ

Driver specific image creation options for qcow.

Members:
  • file (BlockdevRef) – Node to create the image format on

  • size (int) – Size of the virtual disk in bytes

  • backing-file (string, optional) – File name of the backing file if a backing file should be used

  • encrypt (QCryptoBlockCreateOptions, optional) – Encryption options if the image should be encrypted

Enum BlockdevQcow2Version (Since: 2.12)ïƒ
Values:
  • v2 – The original QCOW2 format as introduced in qemu 0.10 (version 2)

  • v3 – The extended QCOW2 format as introduced in qemu 1.1 (version 3)

Enum Qcow2CompressionType (Since: 5.1)ïƒ

Compression type used in qcow2 image file

Values:
Object BlockdevCreateOptionsQcow2 (Since: 2.12)ïƒ

Driver specific image creation options for qcow2.

Members:
  • file (BlockdevRef) – Node to create the image format on

  • data-file (BlockdevRef, optional) – Node to use as an external data file in which all guest data is stored so that only metadata remains in the qcow2 file (since: 4.0)

  • data-file-raw (boolean, optional) – True if the external data file must stay valid as a standalone (read-only) raw image without looking at qcow2 metadata (default: false; since: 4.0)

  • extended-l2 (boolean, optional) – True to make the image have extended L2 entries (default: false; since 5.2)

  • size (int) – Size of the virtual disk in bytes

  • version (BlockdevQcow2Version, optional) – Compatibility level (default: v3)

  • backing-file (string, optional) – File name of the backing file if a backing file should be used

  • backing-fmt (BlockdevDriver, optional) – Name of the block driver to use for the backing file

  • encrypt (QCryptoBlockCreateOptions, optional) – Encryption options if the image should be encrypted

  • cluster-size (int, optional) – qcow2 cluster size in bytes (default: 65536)

  • preallocation (PreallocMode, optional) – Preallocation mode for the new image (default: off; allowed values: off, falloc, full, metadata)

  • lazy-refcounts (boolean, optional) – True if refcounts may be updated lazily (default: off)

  • refcount-bits (int, optional) – Width of reference counts in bits (default: 16)

  • compression-type (Qcow2CompressionType, optional) – The image cluster compression method (default: zlib, since 5.1)

Object BlockdevCreateOptionsQed (Since: 2.12)ïƒ

Driver specific image creation options for qed.

Members:
  • file (BlockdevRef) – Node to create the image format on

  • size (int) – Size of the virtual disk in bytes

  • backing-file (string, optional) – File name of the backing file if a backing file should be used

  • backing-fmt (BlockdevDriver, optional) – Name of the block driver to use for the backing file

  • cluster-size (int, optional) – Cluster size in bytes (default: 65536)

  • table-size (int, optional) – L1/L2 table size (in clusters)

Object BlockdevCreateOptionsRbd (Since: 2.12)ïƒ

Driver specific image creation options for rbd/Ceph.

Members:
  • location (BlockdevOptionsRbd) – Where to store the new image file. This location cannot point to a snapshot.

  • size (int) – Size of the virtual disk in bytes

  • cluster-size (int, optional) – RBD object size

  • encrypt (RbdEncryptionCreateOptions, optional) – Image encryption options. (Since 6.1)

Enum BlockdevVmdkSubformat (Since: 4.0)ïƒ

Subformat options for VMDK images

Values:
  • monolithicSparse – Single file image with sparse cluster allocation

  • monolithicFlat – Single flat data image and a descriptor file

  • twoGbMaxExtentSparse – Data is split into 2GB (per virtual LBA) sparse extent files, in addition to a descriptor file

  • twoGbMaxExtentFlat – Data is split into 2GB (per virtual LBA) flat extent files, in addition to a descriptor file

  • streamOptimized – Single file image sparse cluster allocation, optimized for streaming over network.

Enum BlockdevVmdkAdapterType (Since: 4.0)ïƒ

Adapter type info for VMDK images

Values:
  • ide – Not documented

  • buslogic – Not documented

  • lsilogic – Not documented

  • legacyESX – Not documented

Object BlockdevCreateOptionsVmdk (Since: 4.0)ïƒ

Driver specific image creation options for VMDK.

Members:
  • file (BlockdevRef) – Where to store the new image file. This refers to the image file for monolithcSparse and streamOptimized format, or the descriptor file for other formats.

  • size (int) – Size of the virtual disk in bytes

  • extents ([BlockdevRef], optional) – Where to store the data extents. Required for monolithcFlat, twoGbMaxExtentSparse and twoGbMaxExtentFlat formats. For monolithicFlat, only one entry is required; for twoGbMaxExtent* formats, the number of entries required is calculated as extent_number = virtual_size / 2GB. Providing more extents than will be used is an error.

  • subformat (BlockdevVmdkSubformat, optional) – The subformat of the VMDK image. Default: “monolithicSparseâ€.

  • backing-file (string, optional) – The path of backing file. Default: no backing file is used.

  • adapter-type (BlockdevVmdkAdapterType, optional) – The adapter type used to fill in the descriptor. Default: ide.

  • hwversion (string, optional) – Hardware version. The meaningful options are “4†or “6â€. Default: “4â€.

  • toolsversion (string, optional) – VMware guest tools version. Default: “2147483647†(Since 6.2)

  • zeroed-grain (boolean, optional) – Whether to enable zeroed-grain feature for sparse subformats. Default: false.

Object BlockdevCreateOptionsSsh (Since: 2.12)ïƒ

Driver specific image creation options for SSH.

Members:
  • location (BlockdevOptionsSsh) – Where to store the new image file

  • size (int) – Size of the virtual disk in bytes

Object BlockdevCreateOptionsVdi (Since: 2.12)ïƒ

Driver specific image creation options for VDI.

Members:
  • file (BlockdevRef) – Node to create the image format on

  • size (int) – Size of the virtual disk in bytes

  • preallocation (PreallocMode, optional) – Preallocation mode for the new image (default: off; allowed values: off, metadata)

Enum BlockdevVhdxSubformat (Since: 2.12)ïƒ
Values:
  • dynamic – Growing image file

  • fixed – Preallocated fixed-size image file

Object BlockdevCreateOptionsVhdx (Since: 2.12)ïƒ

Driver specific image creation options for vhdx.

Members:
  • file (BlockdevRef) – Node to create the image format on

  • size (int) – Size of the virtual disk in bytes

  • log-size (int, optional) – Log size in bytes, must be a multiple of 1 MB (default: 1 MB)

  • block-size (int, optional) – Block size in bytes, must be a multiple of 1 MB and not larger than 256 MB (default: automatically choose a block size depending on the image size)

  • subformat (BlockdevVhdxSubformat, optional) – vhdx subformat (default: dynamic)

  • block-state-zero (boolean, optional) – Force use of payload blocks of type ‘ZERO’. Non-standard, but default. Do not set to ‘off’ when using ‘qemu-img convert’ with subformat=dynamic.

Enum BlockdevVpcSubformat (Since: 2.12)ïƒ
Values:
  • dynamic – Growing image file

  • fixed – Preallocated fixed-size image file

Object BlockdevCreateOptionsVpc (Since: 2.12)ïƒ

Driver specific image creation options for vpc (VHD).

Members:
  • file (BlockdevRef) – Node to create the image format on

  • size (int) – Size of the virtual disk in bytes

  • subformat (BlockdevVpcSubformat, optional) – vhdx subformat (default: dynamic)

  • force-size (boolean, optional) – Force use of the exact byte size instead of rounding to the next size that can be represented in CHS geometry (default: false)

Object BlockdevCreateOptions (Since: 2.12)ïƒ

Options for creating an image format on a given node.

Members:
Command blockdev-create (Since: 3.0)ïƒ

Starts a job to create an image format on a given node. The job is automatically finalized, but a manual job-dismiss is required.

Arguments:
  • job-id (string) – Identifier for the newly created job.

  • options (BlockdevCreateOptions) – Options for the image creation.

Object BlockdevAmendOptionsLUKS (Since: 5.1)ïƒ

Driver specific image amend options for LUKS.

Members:
Object BlockdevAmendOptionsQcow2 (Since: 5.1)ïƒ

Driver specific image amend options for qcow2. For now, only encryption options can be amended

Members:
Object BlockdevAmendOptions (Since: 5.1)ïƒ

Options for amending an image format

Members:
Command x-blockdev-amend (Since: 5.1)ïƒ
This command is unstable/experimental.

Starts a job to amend format specific options of an existing open block device The job is automatically finalized, but a manual job-dismiss is required.

Arguments:
  • job-id (string) – Identifier for the newly created job.

  • node-name (string) – Name of the block node to work on

  • options (BlockdevAmendOptions) – Options (driver specific)

  • force (boolean, optional) – Allow unsafe operations, format specific For luks that allows erase of the last active keyslot (permanent loss of data), and replacement of an active keyslot (possible loss of data if IO error happens)

Features:
  • unstable – This command is experimental.

Enum BlockErrorAction (Since: 2.1)ïƒ

An enumeration of action that has been taken when a DISK I/O occurs

Values:
  • ignore – error has been ignored

  • report – error has been reported to the device

  • stop – error caused VM to be stopped

Event BLOCK_IMAGE_CORRUPTED (Since: 1.7)ïƒ

Emitted when a disk image is being marked corrupt. The image can be identified by its device or node name. The ‘device’ field is always present for compatibility reasons, but it can be empty (“â€) if the image does not have a device name associated.

Members:
  • device (string) – device name. This is always present for compatibility reasons, but it can be empty (“â€) if the image does not have a device name associated.

  • node-name (string, optional) – node name (Since: 2.4)

  • msg (string) – informative message for human consumption, such as the kind of corruption being detected. It should not be parsed by machine as it is not guaranteed to be stable

  • offset (int, optional) – if the corruption resulted from an image access, this is the host’s access offset into the image

  • size (int, optional) – if the corruption resulted from an image access, this is the access size

  • fatal (boolean) – if set, the image is marked corrupt and therefore unusable after this event and must be repaired (Since 2.2; before, every BLOCK_IMAGE_CORRUPTED event was fatal)

Note

If action is “stopâ€, a STOP event will eventually follow the BLOCK_IO_ERROR event.

Example:

<- { "event": "BLOCK_IMAGE_CORRUPTED",
     "data": { "device": "", "node-name": "drive", "fatal": false,
               "msg": "L2 table offset 0x2a2a2a00 unaligned (L1 index: 0)" },
     "timestamp": { "seconds": 1648243240, "microseconds": 906060 } }
Event BLOCK_IO_ERROR (Since: 0.13)ïƒ

Emitted when a disk I/O error occurs

Members:
  • qom-path (string) – path to the device object in the QOM tree (since 9.2)

  • device (string) – device name. This is always present for compatibility reasons, but it can be empty (“â€) if the image does not have a device name associated.

  • node-name (string, optional) – node name. Note that errors may be reported for the root node that is directly attached to a guest device rather than for the node where the error occurred. The node name is not present if the drive is empty. (Since: 2.8)

  • operation (IoOperationType) – I/O operation

  • action (BlockErrorAction) – action that has been taken

  • nospace (boolean, optional) – true if I/O error was caused due to a no-space condition. This key is only present if query-block’s io-status is present, please see query-block documentation for more information (since: 2.2)

  • reason (string) – human readable string describing the error cause. (This field is a debugging aid for humans, it should not be parsed by applications) (since: 2.2)

Note

If action is “stopâ€, a STOP event will eventually follow the BLOCK_IO_ERROR event.

Note

This event is rate-limited.

Example:

<- { "event": "BLOCK_IO_ERROR",
     "data": { "qom-path": "/machine/unattached/device[0]",
               "device": "ide0-hd1",
               "node-name": "#block212",
               "operation": "write",
               "action": "stop",
               "reason": "No space left on device" },
     "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
Event BLOCK_JOB_COMPLETED (Since: 1.1)ïƒ

Emitted when a block job has completed

Members:
  • type (JobType) – job type

  • device (string) – The job identifier. Originally the device name but other values are allowed since QEMU 2.7

  • len (int) – maximum progress value

  • offset (int) – current progress value. On success this is equal to len. On failure this is less than len

  • speed (int) – rate limit, bytes per second

  • error (string, optional) – error message. Only present on failure. This field contains a human-readable error message. There are no semantics other than that streaming has failed and clients should not try to interpret the error string

Example:

<- { "event": "BLOCK_JOB_COMPLETED",
     "data": { "type": "stream", "device": "virtio-disk0",
               "len": 10737418240, "offset": 10737418240,
               "speed": 0 },
     "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
Event BLOCK_JOB_CANCELLED (Since: 1.1)ïƒ

Emitted when a block job has been cancelled

Members:
  • type (JobType) – job type

  • device (string) – The job identifier. Originally the device name but other values are allowed since QEMU 2.7

  • len (int) – maximum progress value

  • offset (int) – current progress value. On success this is equal to len. On failure this is less than len

  • speed (int) – rate limit, bytes per second

Example:

<- { "event": "BLOCK_JOB_CANCELLED",
     "data": { "type": "stream", "device": "virtio-disk0",
               "len": 10737418240, "offset": 134217728,
               "speed": 0 },
     "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
Event BLOCK_JOB_ERROR (Since: 1.3)ïƒ

Emitted when a block job encounters an error

Members:
  • device (string) – The job identifier. Originally the device name but other values are allowed since QEMU 2.7

  • operation (IoOperationType) – I/O operation

  • action (BlockErrorAction) – action that has been taken

Example:

<- { "event": "BLOCK_JOB_ERROR",
     "data": { "device": "ide0-hd1",
               "operation": "write",
               "action": "stop" },
     "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
Event BLOCK_JOB_READY (Since: 1.3)ïƒ

Emitted when a block job is ready to complete

Members:
  • type (JobType) – job type

  • device (string) – The job identifier. Originally the device name but other values are allowed since QEMU 2.7

  • len (int) – maximum progress value

  • offset (int) – current progress value. On success this is equal to len. On failure this is less than len

  • speed (int) – rate limit, bytes per second

Note

The “ready to complete†status is always reset by a BLOCK_JOB_ERROR event.

Example:

<- { "event": "BLOCK_JOB_READY",
     "data": { "device": "drive0", "type": "mirror", "speed": 0,
               "len": 2097152, "offset": 2097152 },
     "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
Event BLOCK_JOB_PENDING (Since: 2.12)ïƒ

Emitted when a block job is awaiting explicit authorization to finalize graph changes via block-job-finalize. If this job is part of a transaction, it will not emit this event until the transaction has converged first.

Members:
  • type (JobType) – job type

  • id (string) – The job identifier.

Example:

<- { "event": "BLOCK_JOB_PENDING",
     "data": { "type": "mirror", "id": "backup_1" },
     "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
Enum PreallocMode (Since: 2.2)ïƒ

Preallocation mode of QEMU image file

Values:
  • off – no preallocation

  • metadata – preallocate only for metadata

  • falloc – like full preallocation but allocate disk space by posix_fallocate() rather than writing data.

  • full – preallocate all data by writing it to the device to ensure disk space is really available. This data may or may not be zero, depending on the image format and storage. full preallocation also sets up metadata correctly.

Event BLOCK_WRITE_THRESHOLD (Since: 2.3)ïƒ

Emitted when writes on block device reaches or exceeds the configured write threshold. For thin-provisioned devices, this means the device should be extended to avoid pausing for disk exhaustion. The event is one shot. Once triggered, it needs to be re-registered with another block-set-write-threshold command.

Members:
  • node-name (string) – graph node name on which the threshold was exceeded.

  • amount-exceeded (int) – amount of data which exceeded the threshold, in bytes.

  • write-threshold (int) – last configured threshold, in bytes.

Command block-set-write-threshold (Since: 2.3)ïƒ

Change the write threshold for a block drive. An event will be delivered if a write to this block drive crosses the configured threshold. The threshold is an offset, thus must be non-negative. Default is no write threshold. Setting the threshold to zero disables it.

This is useful to transparently resize thin-provisioned drives without the guest OS noticing.

Arguments:
  • node-name (string) – graph node name on which the threshold must be set.

  • write-threshold (int) – configured threshold for the block device, bytes. Use 0 to disable the threshold.

Example:

-> { "execute": "block-set-write-threshold",
     "arguments": { "node-name": "mydev",
                    "write-threshold": 17179869184 } }
<- { "return": {} }
Command x-blockdev-change (Since: 2.7)ïƒ
This command is unstable/experimental.

Dynamically reconfigure the block driver state graph.

Currently only supports adding and deleting quorum children. A child will be added at the end of the list of children. Its contents must be consistent with the other childrens’ contents. Deleting a child that is not last in the list of children is problematic, because it “renumbers†the children following it.

Arguments:
  • parent (string) – the id or name of the parent node.

  • child (string, optional) – the name of a child to be deleted. Mutually exclusive with node.

  • node (string, optional) – the name of the node to be added. Mutually exclusive with child.

Features:
  • unstable – This command is experimental.

Example: Add a new node to a quorum

 -> { "execute": "blockdev-add",
      "arguments": {
          "driver": "raw",
          "node-name": "new_node",
          "file": { "driver": "file",
                    "filename": "test.raw" } } }
 <- { "return": {} }
 -> { "execute": "x-blockdev-change",
      "arguments": { "parent": "disk1",
                     "node": "new_node" } }
 <- { "return": {} }

Example: Delete a quorum’s node

 -> { "execute": "x-blockdev-change",
      "arguments": { "parent": "disk1",
                     "child": "children.1" } }
 <- { "return": {} }
Command x-blockdev-set-iothread (Since: 2.12)ïƒ
This command is unstable/experimental.

Move node and its children into the iothread. If iothread is null then move node and its children into the main loop.

The node must not be attached to a BlockBackend.

Arguments:
  • node-name (string) – the name of the block driver node

  • iothread (StrOrNull) – the name of the IOThread object or null for the main loop

  • force (boolean, optional) – true if the node and its children should be moved when a BlockBackend is already attached

Features:
  • unstable – This command is experimental and intended for test cases that need control over IOThreads only.

Example: Move a node into an IOThread

 -> { "execute": "x-blockdev-set-iothread",
      "arguments": { "node-name": "disk1",
                     "iothread": "iothread0" } }
 <- { "return": {} }

Example: Move a node into the main loop

 -> { "execute": "x-blockdev-set-iothread",
      "arguments": { "node-name": "disk1",
                     "iothread": null } }
 <- { "return": {} }
Enum QuorumOpType (Since: 2.6)ïƒ

An enumeration of the quorum operation types

Values:
  • read – read operation

  • write – write operation

  • flush – flush operation

Event QUORUM_FAILURE (Since: 2.0)ïƒ

Emitted by the Quorum block driver if it fails to establish a quorum

Members:
  • reference (string) – device name if defined else node name

  • sector-num (int) – number of the first sector of the failed read operation

  • sectors-count (int) – failed read operation sector count

Note

This event is rate-limited.

Example:

<- { "event": "QUORUM_FAILURE",
     "data": { "reference": "usr1", "sector-num": 345435, "sectors-count": 5 },
     "timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
Event QUORUM_REPORT_BAD (Since: 2.0)ïƒ

Emitted to report a corruption of a Quorum file

Members:
  • type (QuorumOpType) – quorum operation type (Since 2.6)

  • error (string, optional) – error message. Only present on failure. This field contains a human-readable error message. There are no semantics other than that the block layer reported an error and clients should not try to interpret the error string.

  • node-name (string) – the graph node name of the block driver state

  • sector-num (int) – number of the first sector of the failed read operation

  • sectors-count (int) – failed read operation sector count

Note

This event is rate-limited.

Example: Read operation

 <- { "event": "QUORUM_REPORT_BAD",
      "data": { "node-name": "node0", "sector-num": 345435, "sectors-count": 5,
                "type": "read" },
      "timestamp": { "seconds": 1344522075, "microseconds": 745528 } }

Example: Flush operation

 <- { "event": "QUORUM_REPORT_BAD",
      "data": { "node-name": "node0", "sector-num": 0, "sectors-count": 2097120,
                "type": "flush", "error": "Broken pipe" },
      "timestamp": { "seconds": 1456406829, "microseconds": 291763 } }
Object BlockdevSnapshotInternal (Since: 1.7)ïƒ
Members:
  • device (string) – the device name or node-name of a root node to generate the snapshot from

  • name (string) – the name of the internal snapshot to be created

Command blockdev-snapshot-internal-sync (Since: 1.7)ïƒ

Synchronously take an internal snapshot of a block device, when the format of the image used supports it. If the name is an empty string, or a snapshot with name already exists, the operation will fail.

Arguments:
Errors:

  • If device is not a valid block device, GenericError

  • If any snapshot matching name exists, or name is empty, GenericError

  • If the format of the image used does not support it, GenericError

Note

Only some image formats such as qcow2 and rbd support internal snapshots.

Example:

-> { "execute": "blockdev-snapshot-internal-sync",
     "arguments": { "device": "ide-hd0",
                    "name": "snapshot0" }
   }
<- { "return": {} }
Command blockdev-snapshot-delete-internal-sync (Since: 1.7)ïƒ

Synchronously delete an internal snapshot of a block device, when the format of the image used support it. The snapshot is identified by name or id or both. One of the name or id is required. Return SnapshotInfo for the successfully deleted snapshot.

Arguments:
  • device (string) – the device name or node-name of a root node to delete the snapshot from

  • id (string, optional) – optional the snapshot’s ID to be deleted

  • name (string, optional) – optional the snapshot’s name to be deleted

Return:

SnapshotInfo – SnapshotInfo

Errors:

  • If device is not a valid block device, GenericError

  • If snapshot not found, GenericError

  • If the format of the image used does not support it, GenericError

  • If id and name are both not specified, GenericError

Example:

-> { "execute": "blockdev-snapshot-delete-internal-sync",
     "arguments": { "device": "ide-hd0",
                    "name": "snapshot0" }
   }
<- { "return": {
                   "id": "1",
                   "name": "snapshot0",
                   "vm-state-size": 0,
                   "date-sec": 1000012,
                   "date-nsec": 10,
                   "vm-clock-sec": 100,
                   "vm-clock-nsec": 20,
                   "icount": 220414
     }
   }
Object DummyBlockCoreForceArrays (Since: 8.0)ïƒ

Not used by QMP; hack to let us use BlockGraphInfoList internally

Members:

Block device exportsïƒ

Object NbdServerOptionsBaseïƒ
Members:
  • handshake-max-seconds (int, optional) – Time limit, in seconds, at which a client that has not completed the negotiation handshake will be disconnected, or 0 for no limit (since 10.0; default: 10).

  • tls-creds (string, optional) – ID of the TLS credentials object (since 2.6).

  • tls-authz (string, optional) – ID of the QAuthZ authorization object used to validate the client’s x509 distinguished name. This object is is only resolved at time of use, so can be deleted and recreated on the fly while the NBD server is active. If missing, it will default to denying access (since 4.0).

  • max-connections (int, optional) – The maximum number of connections to allow at the same time, 0 for unlimited. Setting this to 1 also stops the server from advertising multiple client support (since 5.2; default: 100).

Object NbdServerOptionsïƒ

Keep this type consistent with the NbdServerOptionsLegacy type. The only intended difference is using SocketAddress instead of SocketAddressLegacy.

Members:
Object NbdServerOptionsLegacyïƒ

Keep this type consistent with the NbdServerOptions type. The only intended difference is using SocketAddressLegacy instead of SocketAddress.

Members:
Command nbd-server-start (Since: 1.3)ïƒ

Start an NBD server listening on the given host and port. Block devices can then be exported using nbd-server-add. The NBD server will present them as named exports; for example, another QEMU instance could refer to them as “nbd:HOST:PORT:exportname=NAMEâ€.

Arguments:
Errors:

  • if the server is already running

Object BlockExportOptionsNbdBase (Since: 5.0)ïƒ

An NBD block export (common options shared between nbd-server-add and the NBD branch of block-export-add).

Members:
  • name (string, optional) – Export name. If unspecified, the device parameter is used as the export name. (Since 2.12)

  • description (string, optional) – Free-form description of the export, up to 4096 bytes. (Since 5.0)

Object BlockExportOptionsNbd (Since: 5.2)ïƒ

An NBD block export (distinct options used in the NBD branch of block-export-add).

Members:
  • bitmaps ([BlockDirtyBitmapOrStr], optional) – Also export each of the named dirty bitmaps reachable from device, so the NBD client can use NBD_OPT_SET_META_CONTEXT with the metadata context name “qemu:dirty-bitmap:BITMAP†to inspect each bitmap. Since 7.1 bitmap may be specified by node/name pair.

  • allocation-depth (boolean, optional) – Also export the allocation depth map for device, so the NBD client can use NBD_OPT_SET_META_CONTEXT with the metadata context name “qemu:allocation-depth†to inspect allocation details. (since 5.2)

  • The members of BlockExportOptionsNbdBase.

Object BlockExportOptionsVhostUserBlk (Since: 5.2)ïƒ

A vhost-user-blk block export.

Members:
  • addr (SocketAddress) – The vhost-user socket on which to listen. Both ‘unix’ and ‘fd’ SocketAddress types are supported. Passed fds must be UNIX domain sockets.

  • logical-block-size (int, optional) – Logical block size in bytes. Defaults to 512 bytes.

  • num-queues (int, optional) – Number of request virtqueues. Must be greater than 0. Defaults to 1.

Enum FuseExportAllowOther (Since: 6.1)ïƒ

Possible allow_other modes for FUSE exports.

Values:
  • off – Do not pass allow_other as a mount option.

  • on – Pass allow_other as a mount option.

  • auto – Try mounting with allow_other first, and if that fails, retry without allow_other.

Object BlockExportOptionsFuse (Since: 6.0)ïƒ
Availability: CONFIG_FUSE

Options for exporting a block graph node on some (file) mountpoint as a raw image.

Members:
  • mountpoint (string) – Path on which to export the block device via FUSE. This must point to an existing regular file.

  • growable (boolean, optional) – Whether writes beyond the EOF should grow the block node accordingly. (default: false)

  • allow-other (FuseExportAllowOther, optional) – If this is off, only qemu’s user is allowed access to this export. That cannot be changed even with chmod or chown. Enabling this option will allow other users access to the export with the FUSE mount option “allow_otherâ€. Note that using allow_other as a non-root user requires user_allow_other to be enabled in the global fuse.conf configuration file. In auto mode (the default), the FUSE export driver will first attempt to mount the export with allow_other, and if that fails, try again without. (since 6.1; default: auto)

Object BlockExportOptionsVduseBlk (Since: 7.1)ïƒ

A vduse-blk block export.

Members:
  • name (string) – the name of VDUSE device (must be unique across the host).

  • num-queues (int, optional) – the number of virtqueues. Defaults to 1.

  • queue-size (int, optional) – the size of virtqueue. Defaults to 256.

  • logical-block-size (int, optional) – Logical block size in bytes. Range [512, PAGE_SIZE] and must be power of 2. Defaults to 512 bytes.

  • serial (string, optional) – the serial number of virtio block device. Defaults to empty string.

Object NbdServerAddOptions (Since: 5.0)ïƒ

An NBD block export, per legacy nbd-server-add command.

Members:
  • device (string) – The device name or node name of the node to be exported

  • writable (boolean, optional) – Whether clients should be able to write to the device via the NBD connection (default false).

  • bitmap (string, optional) – Also export a single dirty bitmap reachable from device, so the NBD client can use NBD_OPT_SET_META_CONTEXT with the metadata context name “qemu:dirty-bitmap:BITMAP†to inspect the bitmap (since 4.0).

  • The members of BlockExportOptionsNbdBase.

Command nbd-server-add (Since: 1.3)ïƒ
This command is deprecated.

Export a block node to QEMU’s embedded NBD server.

The export name will be used as the id for the resulting block export.

Arguments:
Features:
  • deprecated – This command is deprecated. Use block-export-add instead.

Errors:

  • if the server is not running

  • if an export with the same name already exists

Enum BlockExportRemoveMode (Since: 2.12)ïƒ

Mode for removing a block export.

Values:
  • safe – Remove export if there are no existing connections, fail otherwise.

  • hard – Drop all connections immediately and remove export.

Command nbd-server-remove (Since: 2.12)ïƒ
This command is deprecated.

Remove NBD export by name.

Arguments:
  • name (string) – Block export id.

  • mode (BlockExportRemoveMode, optional) – Mode of command operation. See BlockExportRemoveMode description. Default is ‘safe’.

Features:
  • deprecated – This command is deprecated. Use block-export-del instead.

Errors:

  • if the server is not running

  • if export is not found

  • if mode is ‘safe’ and there are existing connections

Command nbd-server-stop (Since: 1.3)ïƒ

Stop QEMU’s embedded NBD server, and unregister all devices previously added via nbd-server-add.

Enum BlockExportType (Since: 4.2)ïƒ

An enumeration of block export types

Values:
  • nbd – NBD export

  • vhost-user-blk – vhost-user-blk export (since 5.2)

  • fuse – FUSE export (since: 6.0)

  • vduse-blk – vduse-blk export (since 7.1)

Object BlockExportOptions (Since: 4.2)ïƒ

Describes a block export, i.e. how single node should be exported on an external interface.

Members:
  • type (BlockExportType) – Block export type

  • id (string) – A unique identifier for the block export (across all export types)

  • node-name (string) – The node name of the block node to be exported (since: 5.2)

  • writable (boolean, optional) – True if clients should be able to write to the export (default false)

  • writethrough (boolean, optional) – If true, caches are flushed after every write request to the export before completion is signalled. (since: 5.2; default: false)

  • iothread (string, optional) – The name of the iothread object where the export will run. The default is to use the thread currently associated with the block node. (since: 5.2)

  • fixed-iothread (boolean, optional) – True prevents the block node from being moved to another thread while the export is active. If true and iothread is given, export creation fails if the block node cannot be moved to the iothread. The default is false. (since: 5.2)

  • allow-inactive (boolean, optional) – If true, the export allows the exported node to be inactive. If it is created for an inactive block node, the node remains inactive. If the export type doesn’t support running on an inactive node, an error is returned. If false, inactive block nodes are automatically activated before creating the export and trying to inactivate them later fails. (since: 10.0; default: false)

  • When type is nbd: The members of BlockExportOptionsNbd.

  • When type is vhost-user-blk: The members of BlockExportOptionsVhostUserBlk.

  • When type is fuse: The members of BlockExportOptionsFuse.

  • When type is vduse-blk: The members of BlockExportOptionsVduseBlk.

Command block-export-add (Since: 5.2)ïƒ

Creates a new block export.

Arguments:
Command block-export-del (Since: 5.2)ïƒ

Request to remove a block export. This drops the user’s reference to the export, but the export may still stay around after this command returns until the shutdown of the export has completed.

Arguments:
  • id (string) – Block export id.

  • mode (BlockExportRemoveMode, optional) – Mode of command operation. See BlockExportRemoveMode description. Default is ‘safe’.

Errors:

  • if the export is not found

  • if mode is ‘safe’ and the export is still in use (e.g. by existing client connections)

Event BLOCK_EXPORT_DELETED (Since: 5.2)ïƒ

Emitted when a block export is removed and its id can be reused.

Members:
  • id (string) – Block export id.

Object BlockExportInfo (Since: 5.2)ïƒ

Information about a single block export.

Members:
  • id (string) – The unique identifier for the block export

  • type (BlockExportType) – The block export type

  • node-name (string) – The node name of the block node that is exported

  • shutting-down (boolean) – True if the export is shutting down (e.g. after a block-export-del command, but before the shutdown has completed)

Command query-block-exports (Since: 5.2)ïƒ
Return:

[BlockExportInfo] – A list of BlockExportInfo describing all block exports

Character devicesïƒ

Object ChardevInfo (Since: 0.14)ïƒ

Information about a character device.

Members:
  • label (string) – the label of the character device

  • filename (string) – the filename of the character device

  • frontend-open (boolean) – shows whether the frontend device attached to this backend (e.g. with the chardev=… option) is in open or closed state (since 2.1)

Note

filename is encoded using the QEMU command line character device encoding. See the QEMU man page for details.

Command query-chardev (Since: 0.14)ïƒ

Returns information about current character devices.

Return:

[ChardevInfo] – a list of ChardevInfo

Example:

-> { "execute": "query-chardev" }
<- {
      "return": [
         {
            "label": "charchannel0",
            "filename": "unix:/var/lib/libvirt/qemu/seabios.rhel6.agent,server=on",
            "frontend-open": false
         },
         {
            "label": "charmonitor",
            "filename": "unix:/var/lib/libvirt/qemu/seabios.rhel6.monitor,server=on",
            "frontend-open": true
         },
         {
            "label": "charserial0",
            "filename": "pty:/dev/pts/2",
            "frontend-open": true
         }
      ]
   }
Object ChardevBackendInfo (Since: 2.0)ïƒ

Information about a character device backend

Members:
  • name (string) – The backend name

Command query-chardev-backends (Since: 2.0)ïƒ

Returns information about character device backends.

Return:

[ChardevBackendInfo] – a list of ChardevBackendInfo

Example:

-> { "execute": "query-chardev-backends" }
<- {
      "return":[
         {
            "name":"udp"
         },
         {
            "name":"tcp"
         },
         {
            "name":"unix"
         },
         {
            "name":"spiceport"
         }
      ]
   }
Enum DataFormat (Since: 1.4)ïƒ

An enumeration of data format.

Values:
  • utf8 – Data is a UTF-8 string (RFC 3629)

  • base64 – Data is Base64 encoded binary (RFC 3548)

Command ringbuf-write (Since: 1.4)ïƒ

Write to a ring buffer character device.

Arguments:
  • device (string) – the ring buffer character device name

  • data (string) – data to write

  • format (DataFormat, optional) –

    data encoding (default ‘utf8’).

    • base64: data must be base64 encoded text. Its binary decoding gets written.

    • utf8: data’s UTF-8 encoding is written

    • data itself is always Unicode regardless of format, like any other string.

Example:

-> { "execute": "ringbuf-write",
     "arguments": { "device": "foo",
                    "data": "abcdefgh",
                    "format": "utf8" } }
<- { "return": {} }
Command ringbuf-read (Since: 1.4)ïƒ

Read from a ring buffer character device.

Arguments:
  • device (string) – the ring buffer character device name

  • size (int) – how many bytes to read at most

  • format (DataFormat, optional) –

    data encoding (default ‘utf8’).

    • base64: the data read is returned in base64 encoding.

    • utf8: the data read is interpreted as UTF-8. Bug: can screw up when the buffer contains invalid UTF-8 sequences, NUL characters, after the ring buffer lost data, and when reading stops because the size limit is reached.

    • The return value is always Unicode regardless of format, like any other string.

Return:

string – data read from the device

Example:

-> { "execute": "ringbuf-read",
     "arguments": { "device": "foo",
                    "size": 1000,
                    "format": "utf8" } }
<- { "return": "abcdefgh" }
Object ChardevCommon (Since: 2.6)ïƒ

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)

Object ChardevFile (Since: 1.4)ïƒ

Configuration info for file chardevs.

Members:
  • in (string, optional) – The name of the input file

  • out (string) – The name of the output file

  • append (boolean, optional) – Open the file in append mode (default false to truncate) (Since 2.6)

  • The members of ChardevCommon.

Object ChardevHostdev (Since: 1.4)ïƒ

Configuration info for device and pipe chardevs.

Members:
  • device (string) – The name of the special file for the device, i.e. /dev/ttyS0 on Unix or COM1: on Windows

  • The members of ChardevCommon.

Object ChardevSocket (Since: 1.4)ïƒ

Configuration info for (stream) socket chardevs.

Members:
  • addr (SocketAddressLegacy) – socket 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)

  • tls-authz (string, optional) – the ID of the QAuthZ authorization object against which the client’s x509 distinguished name will be validated. This object is only resolved at time of use, so can be deleted and recreated on the fly while the chardev server is active. If missing, it will default to denying access (since 4.0)

  • server (boolean, optional) – create server socket (default: true)

  • wait (boolean, optional) – wait for incoming connection on server sockets (default: false). Silently ignored with server: false. This use is deprecated.

  • 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)

  • websocket (boolean, optional) – enable websocket protocol on server sockets (default: false) (Since: 3.1)

  • 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. The use of this member is deprecated, use reconnect-ms instead. (default: 0) (Since: 2.2)

  • reconnect-ms (int, optional) – For a client socket, if a socket is disconnected, then attempt a reconnect after the given number of milliseconds. Setting this to zero disables this function. This member is mutually exclusive with reconnect. (default: 0) (Since: 9.2)

  • The members of ChardevCommon.

Features:
  • deprecated – Member reconnect is deprecated. Use reconnect-ms instead.

Object ChardevUdp (Since: 1.5)ïƒ

Configuration info for datagram socket chardevs.

Members:
Object ChardevMux (Since: 1.5)ïƒ

Configuration info for mux chardevs.

Members:
  • chardev (string) – name of the base chardev.

  • The members of ChardevCommon.

Object ChardevHub (Since: 10.0)ïƒ

Configuration info for hub chardevs.

Members:
  • chardevs ([string]) – IDs to be added to this hub (maximum 4 devices).

  • The members of ChardevCommon.

Object ChardevStdio (Since: 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.

  • The members of ChardevCommon.

Object ChardevSpiceChannel (Since: 1.5)ïƒ
Availability: CONFIG_SPICE

Configuration info for spice vm channel chardevs.

Members:
  • type (string) – kind of channel (for example vdagent).

  • The members of ChardevCommon.

Object ChardevSpicePort (Since: 1.5)ïƒ
Availability: CONFIG_SPICE

Configuration info for spice port chardevs.

Members:
  • fqdn (string) – name of the channel (see docs/spice-port-fqdn.txt)

  • The members of ChardevCommon.

Object ChardevDBus (Since: 7.0)ïƒ
Availability: CONFIG_DBUS_DISPLAY

Configuration info for DBus chardevs.

Members:
  • name (string) – name of the channel (following docs/spice-port-fqdn.txt)

  • The members of ChardevCommon.

Object ChardevVC (Since: 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

  • The members of ChardevCommon.

Note

The options are only effective when the VNC or SDL graphical display backend is active. They are ignored with the GTK, Spice, VNC and D-Bus display backends.

Object ChardevRingbuf (Since: 1.5)ïƒ

Configuration info for ring buffer chardevs.

Members:
  • size (int, optional) – ring buffer size, must be power of two, default is 65536

  • The members of ChardevCommon.

Object ChardevQemuVDAgent (Since: 6.1)ïƒ
Availability: CONFIG_SPICE_PROTOCOL

Configuration info for qemu vdagent implementation.

Members:
  • mouse (boolean, optional) – enable/disable mouse, default is enabled.

  • clipboard (boolean, optional) – enable/disable clipboard, default is disabled.

  • The members of ChardevCommon.

Object ChardevPty (Since: 9.2)ïƒ

Configuration info for pty implementation.

Members:
  • path (string, optional) – optional path to create a symbolic link that points to the allocated PTY

  • The members of ChardevCommon.

Enum ChardevBackendKind (Since: 1.4)ïƒ
Values:
  • file – regular files

  • serial – serial host device

  • parallel – parallel host device

  • pipe – pipes (since 1.5)

  • socket – stream socket

  • udp – datagram socket (since 1.5)

  • pty – pseudo-terminal

  • null – provides no input, throws away output

  • mux – (since 1.5)

  • hub – (since 10.0)

  • msmouse – emulated Microsoft serial mouse (since 1.5)

  • wctablet – emulated Wacom Penpartner serial tablet (since 2.9)

  • braille – Baum Braille device (since 1.5)

  • testdev – device for test-suite control (since 2.2)

  • stdio – standard I/O (since 1.5)

  • console – Windows console (since 1.5)

  • spicevmc – spice vm channel (since 1.5)

  • spiceport – Spice port channel (since 1.5)

  • qemu-vdagent – Spice vdagent (since 6.1)

  • dbus – D-Bus channel (since 7.0)

  • vc – virtual console (since 1.5)

  • ringbuf – memory ring buffer (since 1.6)

  • memory – synonym for ringbuf (since 1.5)

Features:
  • deprecated – Member memory is deprecated. Use ringbuf instead.

Object ChardevFileWrapper (Since: 1.4)ïƒ
Members:
  • data (ChardevFile) – Configuration info for file chardevs

Object ChardevHostdevWrapper (Since: 1.4)ïƒ
Members:
  • data (ChardevHostdev) – Configuration info for device and pipe chardevs

Object ChardevSocketWrapper (Since: 1.4)ïƒ
Members:
  • data (ChardevSocket) – Configuration info for (stream) socket chardevs

Object ChardevUdpWrapper (Since: 1.5)ïƒ
Members:
  • data (ChardevUdp) – Configuration info for datagram socket chardevs

Object ChardevCommonWrapper (Since: 2.6)ïƒ
Members:
  • data (ChardevCommon) – Configuration shared across all chardev backends

Object ChardevMuxWrapper (Since: 1.5)ïƒ
Members:
  • data (ChardevMux) – Configuration info for mux chardevs

Object ChardevHubWrapper (Since: 10.0)ïƒ
Members:
  • data (ChardevHub) – Configuration info for hub chardevs

Object ChardevStdioWrapper (Since: 1.5)ïƒ
Members:
  • data (ChardevStdio) – Configuration info for stdio chardevs

Object ChardevSpiceChannelWrapper (Since: 1.5)ïƒ
Availability: CONFIG_SPICE
Members:
Object ChardevSpicePortWrapper (Since: 1.5)ïƒ
Availability: CONFIG_SPICE
Members:
Object ChardevQemuVDAgentWrapper (Since: 6.1)ïƒ
Availability: CONFIG_SPICE_PROTOCOL
Members:
Object ChardevDBusWrapper (Since: 7.0)ïƒ
Availability: CONFIG_DBUS_DISPLAY
Members:
  • data (ChardevDBus) – Configuration info for DBus chardevs

Object ChardevVCWrapper (Since: 1.5)ïƒ
Members:
  • data (ChardevVC) – Configuration info for virtual console chardevs

Object ChardevRingbufWrapper (Since: 1.5)ïƒ
Members:
  • data (ChardevRingbuf) – Configuration info for ring buffer chardevs

Object ChardevPtyWrapper (Since: 9.2)ïƒ
Members:
  • data (ChardevPty) – Configuration info for pty chardevs

Object ChardevBackend (Since: 1.4)ïƒ

Configuration info for the new chardev backend.

Members:
Object ChardevReturn (Since: 1.4)ïƒ

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

Command chardev-add (Since: 1.4)ïƒ

Add a character device backend

Arguments:
  • id (string) – the chardev’s ID, must be unique

  • backend (ChardevBackend) – backend type and parameters

Return:

ChardevReturn – ChardevReturn.

Example:

-> { "execute" : "chardev-add",
     "arguments" : { "id" : "foo",
                     "backend" : { "type" : "null", "data" : {} } } }
<- { "return": {} }

Example:

-> { "execute" : "chardev-add",
     "arguments" : { "id" : "bar",
                     "backend" : { "type" : "file",
                                   "data" : { "out" : "/tmp/bar.log" } } } }
<- { "return": {} }

Example:

-> { "execute" : "chardev-add",
     "arguments" : { "id" : "baz",
                     "backend" : { "type" : "pty", "data" : {} } } }
<- { "return": { "pty" : "/dev/pty/42" } }
Command chardev-change (Since: 2.10)ïƒ

Change a character device backend

Arguments:
  • id (string) – the chardev’s ID, must exist

  • backend (ChardevBackend) – new backend type and parameters

Return:

ChardevReturn – ChardevReturn.

Example:

-> { "execute" : "chardev-change",
     "arguments" : { "id" : "baz",
                     "backend" : { "type" : "pty", "data" : {} } } }
<- { "return": { "pty" : "/dev/pty/42" } }

Example:

-> {"execute" : "chardev-change",
    "arguments" : {
        "id" : "charchannel2",
        "backend" : {
            "type" : "socket",
            "data" : {
                "addr" : {
                    "type" : "unix" ,
                    "data" : {
                        "path" : "/tmp/charchannel2.socket"
                    }
                 },
                 "server" : true,
                 "wait" : false }}}}
<- {"return": {}}
Command chardev-remove (Since: 1.4)ïƒ

Remove a character device backend

Arguments:
  • id (string) – the chardev’s ID, must exist and not be in use

Example:

-> { "execute": "chardev-remove", "arguments": { "id" : "foo" } }
<- { "return": {} }
Command chardev-send-break (Since: 2.10)ïƒ

Send a break to a character device

Arguments:
  • id (string) – the chardev’s ID, must exist

Example:

-> { "execute": "chardev-send-break", "arguments": { "id" : "foo" } }
<- { "return": {} }
Event VSERPORT_CHANGE (Since: 2.1)ïƒ

Emitted when the guest opens or closes a virtio-serial port.

Members:
  • id (string) – device identifier of the virtio-serial port

  • open (boolean) – true if the guest has opened the virtio-serial port

Note

This event is rate-limited.

Example:

<- { "event": "VSERPORT_CHANGE",
     "data": { "id": "channel0", "open": true },
     "timestamp": { "seconds": 1401385907, "microseconds": 422329 } }

Dump guest memoryïƒ

Enum DumpGuestMemoryFormat (Since: 2.0)ïƒ

An enumeration of guest-memory-dump’s format.

Values:
  • elf – elf format

  • kdump-zlib – makedumpfile flattened, kdump-compressed format with zlib compression

  • kdump-lzo – makedumpfile flattened, kdump-compressed format with lzo compression

  • kdump-snappy – makedumpfile flattened, kdump-compressed format with snappy compression

  • kdump-raw-zlib – raw assembled kdump-compressed format with zlib compression (since 8.2)

  • kdump-raw-lzo – raw assembled kdump-compressed format with lzo compression (since 8.2)

  • kdump-raw-snappy – raw assembled kdump-compressed format with snappy compression (since 8.2)

  • win-dmp – Windows full crashdump format, can be used instead of ELF converting (since 2.13)

Command dump-guest-memory (Since: 1.2)ïƒ

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 (boolean) –

    if 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:

    1. The guest may be in a catastrophic state or can have corrupted memory, which cannot be trusted

    2. The guest can be in real-mode even if paging is enabled. For example, the guest uses ACPI to sleep, and ACPI sleep state goes in real-mode

    3. Currently only supported on i386 and x86_64.

  • protocol (string) –

    the filename or file descriptor of the vmcore. The supported protocols are:

    1. file: the protocol starts with “file:â€, and the following string is the file’s path.

    2. fd: the protocol starts with “fd:â€, and the following string is the fd’s name.

  • 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.

Example:

-> { "execute": "dump-guest-memory",
     "arguments": { "paging": false, "protocol": "fd:dump" } }
<- { "return": {} }
Enum DumpStatus (Since: 2.6)ïƒ

Describe the status of a long-running background guest memory dump.

Values:
  • none – no dump-guest-memory has started yet.

  • active – there is one dump running in background.

  • completed – the last dump has finished successfully.

  • failed – the last dump has failed.

Object DumpQueryResult (Since: 2.6)ïƒ

The result format for ‘query-dump’.

Members:
  • status (DumpStatus) – enum of DumpStatus, which shows current dump status

  • completed (int) – bytes written in latest dump (uncompressed)

  • total (int) – total bytes to be written in latest dump (uncompressed)

Command query-dump (Since: 2.6)ïƒ

Query latest dump status.

Return:

DumpQueryResult – A DumpStatus object showing the dump status.

Example:

-> { "execute": "query-dump" }
<- { "return": { "status": "active", "completed": 1024000,
                 "total": 2048000 } }
Event DUMP_COMPLETED (Since: 2.6)ïƒ

Emitted when background dump has completed

Members:
  • result (DumpQueryResult) – final 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.

Example:

<- { "event": "DUMP_COMPLETED",
     "data": { "result": { "total": 1090650112, "status": "completed",
                           "completed": 1090650112 } },
     "timestamp": { "seconds": 1648244171, "microseconds": 950316 } }
Object DumpGuestMemoryCapability (Since: 2.0)ïƒ
Members:
Command query-dump-guest-memory-capability (Since: 2.0)ïƒ

Returns the available formats for dump-guest-memory

Return:

DumpGuestMemoryCapability – A DumpGuestMemoryCapability object listing available formats for dump-guest-memory

Example:

-> { "execute": "query-dump-guest-memory-capability" }
<- { "return": { "formats":
                 ["elf", "kdump-zlib", "kdump-lzo", "kdump-snappy"] } }

Net devicesïƒ

Sets the link status of a virtual network adapter.

Arguments:
  • name (string) – the device name of the virtual network adapter

  • up (boolean) – true to set the link status to be up

Errors:

  • If name is not a valid network device, DeviceNotFound

Note

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": {} }
Command netdev_add (Since: 0.14)ïƒ

Add a network backend.

Additional arguments depend on the type.

Arguments:
Errors:

  • If type is not a valid network backend, DeviceNotFound

Example:

-> { "execute": "netdev_add",
     "arguments": { "type": "user", "id": "netdev1",
                    "dnssearch": [ { "str": "example.org" } ] } }
<- { "return": {} }
Command netdev_del (Since: 0.14)ïƒ

Remove a network backend.

Arguments:
  • id (string) – the name of the network backend to remove

Errors:

  • If id is not a valid network backend, DeviceNotFound

Example:

-> { "execute": "netdev_del", "arguments": { "id": "netdev1" } }
<- { "return": {} }
Object NetLegacyNicOptions (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

Object String (Since: 1.2)ïƒ

A fat type wrapping ‘str’, to be embedded in lists.

Members:
  • str (string) – Not documented

Object NetdevUserOptions (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 ([String], optional) – list of DNS suffixes to search, passed as DHCP option to the guest

  • domainname (string, optional) – guest-visible domain name of the virtual nameserver (since 3.0)

  • 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 ([String], optional) – redirect incoming TCP or UDP host connections to guest endpoints

  • guestfwd ([String], optional) – forward guest TCP connections

  • tftp-server-name (string, optional) – RFC2132 “TFTP server name†string (Since 3.1)

Object NetdevTapOptions (Since: 1.2)ïƒ

Used to configure a host TAP network interface backend.

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)

Object NetdevSocketOptions (Since: 1.2)ïƒ

Socket netdevs are used to establish a network connection to another QEMU virtual machine via a TCP socket.

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

Object NetdevL2TPv3Options (Since: 2.1)ïƒ

Configure an Ethernet over L2TPv3 tunnel.

Members:
  • src (string) – source address

  • dst (string) – destination 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 cookies

  • 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 (int) – 32 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

Object NetdevVdeOptions (Since: 1.2)ïƒ

Connect 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

Object NetdevBridgeOptions (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

Object NetdevHubPortOptions (Since: 1.2)ïƒ

Connect two or more net clients through a software hub.

Members:
  • hubid (int) – hub identifier number

  • netdev (string, optional) – used to connect hub to a netdev instead of a device (since 2.12)

Object NetdevNetmapOptions (Since: 2.0)ïƒ

Connect a client to a netmap-enabled NIC or to a VALE switch port

Members:
  • ifname (string) – Either 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’).

Enum AFXDPMode (Since: 8.2)ïƒ
Availability: CONFIG_AF_XDP

Attach mode for a default XDP program

Values:
  • skb – generic mode, no driver support necessary

  • native – DRV mode, program is attached to a driver, packets are passed to the socket without allocation of skb.

Object NetdevAFXDPOptions (Since: 8.2)ïƒ
Availability: CONFIG_AF_XDP

AF_XDP network backend

Members:
  • ifname (string) – The name of an existing network interface.

  • mode (AFXDPMode, optional) – Attach mode for a default XDP program. If not specified, then ‘native’ will be tried first, then ‘skb’.

  • force-copy (boolean, optional) – Force XDP copy mode even if device supports zero-copy. (default: false)

  • queues (int, optional) – number of queues to be used for multiqueue interfaces (default: 1).

  • start-queue (int, optional) – Use queues starting from this queue number (default: 0).

  • inhibit (boolean, optional) – Don’t load a default XDP program, use one already loaded to the interface (default: false). Requires sock-fds.

  • sock-fds (string, optional) – A colon (:) separated list of file descriptors for already open but not bound AF_XDP sockets in the queue order. One fd per queue. These descriptors should already be added into XDP socket map for corresponding queues. Requires inhibit.

Object NetdevVhostUserOptions (Since: 2.1)ïƒ

Vhost-user network backend

Members:
  • chardev (string) – name 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)

Object NetdevVhostVDPAOptions (Since: 5.1)ïƒ

Vhost-vdpa network backend

vDPA device is a device that uses a datapath which complies with the virtio specifications with a vendor specific control path.

Members:
  • vhostdev (string, optional) – path of vhost-vdpa device (default:’/dev/vhost-vdpa-0’)

  • vhostfd (string, optional) – file descriptor of an already opened vhost vdpa device

  • queues (int, optional) – number of queues to be created for multiqueue vhost-vdpa (default: 1)

  • x-svq (boolean, optional) – Start device with (experimental) shadow virtqueue. (Since 7.1) (default: false)

Features:
  • unstable – Member x-svq is experimental.

Object NetdevVmnetHostOptions (Since: 7.1)ïƒ
Availability: CONFIG_VMNET

vmnet (host mode) network backend.

Allows the vmnet interface to communicate with other vmnet interfaces that are in host mode and also with the host.

Members:
  • start-address (string, optional) – The starting IPv4 address to use for the interface. Must be in the private IP range (RFC 1918). Must be specified along with end-address and subnet-mask. This address is used as the gateway address. The subsequent address up to and including end-address are placed in the DHCP pool.

  • end-address (string, optional) – The DHCP IPv4 range end address to use for the interface. Must be in the private IP range (RFC 1918). Must be specified along with start-address and subnet-mask.

  • subnet-mask (string, optional) – The IPv4 subnet mask to use on the interface. Must be specified along with start-address and subnet-mask.

  • isolated (boolean, optional) – Enable isolation for this interface. Interface isolation ensures that vmnet interface is not able to communicate with any other vmnet interfaces. Only communication with host is allowed. Requires at least macOS Big Sur 11.0.

  • net-uuid (string, optional) – The identifier (UUID) to uniquely identify the isolated network vmnet interface should be added to. If set, no DHCP service is provided for this interface and network communication is allowed only with other interfaces added to this network identified by the UUID. Requires at least macOS Big Sur 11.0.

Object NetdevVmnetSharedOptions (Since: 7.1)ïƒ
Availability: CONFIG_VMNET

vmnet (shared mode) network backend.

Allows traffic originating from the vmnet interface to reach the Internet through a network address translator (NAT). The vmnet interface can communicate with the host and with other shared mode interfaces on the same subnet. If no DHCP settings, subnet mask and IPv6 prefix specified, the interface can communicate with any of other interfaces in shared mode.

Members:
  • start-address (string, optional) – The starting IPv4 address to use for the interface. Must be in the private IP range (RFC 1918). Must be specified along with end-address and subnet-mask. This address is used as the gateway address. The subsequent address up to and including end-address are placed in the DHCP pool.

  • end-address (string, optional) – The DHCP IPv4 range end address to use for the interface. Must be in the private IP range (RFC 1918). Must be specified along with start-address and subnet-mask.

  • subnet-mask (string, optional) – The IPv4 subnet mask to use on the interface. Must be specified along with start-address and subnet-mask.

  • isolated (boolean, optional) – Enable isolation for this interface. Interface isolation ensures that vmnet interface is not able to communicate with any other vmnet interfaces. Only communication with host is allowed. Requires at least macOS Big Sur 11.0.

  • nat66-prefix (string, optional) – The IPv6 prefix to use into guest network. Must be a unique local address i.e. start with fd00::/8 and have length of 64.

Object NetdevVmnetBridgedOptions (Since: 7.1)ïƒ
Availability: CONFIG_VMNET

vmnet (bridged mode) network backend.

Bridges the vmnet interface with a physical network interface.

Members:
  • ifname (string) – The name of the physical interface to be bridged.

  • isolated (boolean, optional) – Enable isolation for this interface. Interface isolation ensures that vmnet interface is not able to communicate with any other vmnet interfaces. Only communication with host is allowed. Requires at least macOS Big Sur 11.0.

Object NetdevStreamOptions (Since: 7.2)ïƒ

Configuration info for stream socket netdev

Members:
  • addr (SocketAddress) – socket address to listen on (server=true) or connect to (server=false)

  • server (boolean, optional) – create server socket (default: false)

  • 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 8.0)

  • reconnect-ms (int, optional) – For a client socket, if a socket is disconnected, then attempt a reconnect after the given number of milliseconds. Setting this to zero disables this function. This member is mutually exclusive with reconnect. (default: 0) (Since: 9.2)

Only SocketAddress types ‘unix’, ‘inet’ and ‘fd’ are supported.

Features:
  • deprecated – Member reconnect is deprecated. Use reconnect-ms instead.

Object NetdevDgramOptions (Since: 7.2)ïƒ

Configuration info for datagram socket netdev.

Members:

Only SocketAddress types ‘unix’, ‘inet’ and ‘fd’ are supported.

If remote address is present and it’s a multicast address, local address is optional. Otherwise local address is required and remote address is optional.

Valid parameters combination tableïƒ

remote

local

okay?

absent

absent

no

absent

not fd

no

absent

fd

yes

multicast

absent

yes

multicast

present

yes

not multicast

absent

no

not multicast

present

yes

Enum NetClientDriver (Since: 2.7)ïƒ

Available netdev drivers.

Values:
  • l2tpv3 – since 2.1

  • vhost-vdpa – since 5.1

  • vmnet-host – since 7.1

  • vmnet-shared – since 7.1

  • vmnet-bridged – since 7.1

  • stream – since 7.2

  • dgram – since 7.2

  • af-xdp – since 8.2

  • none – Not documented

  • nic – Not documented

  • user – Not documented

  • tap – Not documented

  • socket – Not documented

  • vde – Not documented

  • bridge – Not documented

  • hubport – Not documented

  • netmap – Not documented

  • vhost-user – Not documented

Object Netdev (Since: 1.2)ïƒ

Captures the configuration of a network device.

Members:
Enum RxState (Since: 1.6)ïƒ

Packets receiving state

Values:
  • normal – filter assigned packets according to the mac-table

  • none – don’t receive any assigned packet

  • all – receive all assigned packets

Object RxFilterInfo (Since: 1.6)ïƒ

Rx-filter information for a NIC.

Members:
  • name (string) – net client name

  • promiscuous (boolean) – whether promiscuous mode is enabled

  • multicast (RxState) – multicast receive state

  • unicast (RxState) – unicast receive state

  • vlan (RxState) – vlan receive state (Since 2.0)

  • broadcast-allowed (boolean) – whether to receive broadcast

  • multicast-overflow (boolean) – multicast table is overflowed or not

  • unicast-overflow (boolean) – unicast table is overflowed or not

  • main-mac (string) – the main macaddr string

  • vlan-table ([int]) – a list of active vlan id

  • unicast-table ([string]) – a list of unicast macaddr string

  • multicast-table ([string]) – a list of multicast macaddr string

Command query-rx-filter (Since: 1.6)ïƒ

Return rx-filter information for all NICs (or for the given NIC).

Arguments:
  • name (string, optional) – net client name

Return:

[RxFilterInfo] – list of RxFilterInfo for all NICs (or for the given NIC).

Errors:

  • if the given name doesn’t exist

  • if the given NIC doesn’t support rx-filter querying

  • if the given net client isn’t a NIC

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
        }
      ]
   }
Event NIC_RX_FILTER_CHANGED (Since: 1.6)ïƒ

Emitted once until the ‘query-rx-filter’ command is executed, the first event will always be emitted

Members:
  • name (string, optional) – net client name

  • path (string) – device path

Example:

<- { "event": "NIC_RX_FILTER_CHANGED",
     "data": { "name": "vnet0",
               "path": "/machine/peripheral/vnet0/virtio-backend" },
     "timestamp": { "seconds": 1368697518, "microseconds": 326866 } }
Object AnnounceParameters (Since: 4.0)ïƒ

Parameters for self-announce timers

Members:
  • initial (int) – Initial delay (in ms) before sending the first GARP/RARP announcement

  • max (int) – Maximum delay (in ms) between GARP/RARP announcement packets

  • rounds (int) – Number of self-announcement attempts

  • step (int) – Delay increase (in ms) after each self-announcement attempt

  • interfaces ([string], optional) – An optional list of interface names, which restricts the announcement to the listed interfaces. (Since 4.1)

  • id (string, optional) – A name to be used to identify an instance of announce-timers and to allow it to modified later. Not for use as part of the migration parameters. (Since 4.1)

Command announce-self (Since: 4.0)ïƒ

Trigger generation of broadcast RARP frames to update network switches. This can be useful when network bonds fail-over the active slave.

Arguments:

Example:

-> { "execute": "announce-self",
     "arguments": {
         "initial": 50, "max": 550, "rounds": 10, "step": 50,
         "interfaces": ["vn2", "vn3"], "id": "bob" } }
<- { "return": {} }
Event FAILOVER_NEGOTIATED (Since: 4.2)ïƒ

Emitted when VIRTIO_NET_F_STANDBY was enabled during feature negotiation. Failover primary devices which were hidden (not hotplugged when requested) before will now be hotplugged by the virtio-net standby device.

Members:
  • device-id (string) – QEMU device id of the unplugged device

Example:

<- { "event": "FAILOVER_NEGOTIATED",
     "data": { "device-id": "net1" },
     "timestamp": { "seconds": 1368697518, "microseconds": 326866 } }
Event NETDEV_STREAM_CONNECTED (Since: 7.2)ïƒ

Emitted when the netdev stream backend is connected

Members:
  • netdev-id (string) – QEMU netdev id that is connected

  • addr (SocketAddress) – The destination address

Example:

<- { "event": "NETDEV_STREAM_CONNECTED",
     "data": { "netdev-id": "netdev0",
               "addr": { "port": "47666", "ipv6": true,
                         "host": "::1", "type": "inet" } },
     "timestamp": { "seconds": 1666269863, "microseconds": 311222 } }

Example:

<- { "event": "NETDEV_STREAM_CONNECTED",
     "data": { "netdev-id": "netdev0",
               "addr": { "path": "/tmp/qemu0", "type": "unix" } },
     "timestamp": { "seconds": 1666269706, "microseconds": 413651 } }
Event NETDEV_STREAM_DISCONNECTED (Since: 7.2)ïƒ

Emitted when the netdev stream backend is disconnected

Members:
  • netdev-id (string) – QEMU netdev id that is disconnected

Example:

<- { "event": "NETDEV_STREAM_DISCONNECTED",
     "data": {"netdev-id": "netdev0"},
     "timestamp": {"seconds": 1663330937, "microseconds": 526695} }
Event NETDEV_VHOST_USER_CONNECTED (Since: 10.0)ïƒ

Emitted when the vhost-user chardev is connected

Members:
  • netdev-id (string) – QEMU netdev id that is connected

  • chardev-id (string) – The character device id used by the QEMU netdev

Example:

<- { "timestamp": {"seconds": 1739538638, "microseconds": 354181 },
     "event": "NETDEV_VHOST_USER_CONNECTED",
     "data": { "netdev-id": "netdev0", "chardev-id": "chr0" } }
Event NETDEV_VHOST_USER_DISCONNECTED (Since: 10.0)ïƒ

Emitted when the vhost-user chardev is disconnected

Members:
  • netdev-id (string) – QEMU netdev id that is disconnected

Example:

<- { "timestamp": { "seconds": 1739538634, "microseconds": 920450 },
     "event": "NETDEV_VHOST_USER_DISCONNECTED",
     "data": { "netdev-id": "netdev0" } }

eBPF Objectsïƒ

eBPF object is an ELF binary that contains the eBPF program and eBPF map description(BTF). Overall, eBPF object should contain the program and enough metadata to create/load eBPF with libbpf. As the eBPF maps/program should correspond to QEMU, the eBPF can’t be used from different QEMU build.

Currently, there is a possible eBPF for receive-side scaling (RSS).

Object EbpfObject (Since: 9.0)ïƒ
Availability: CONFIG_EBPF

An eBPF ELF object.

Members:
  • object (string) – the eBPF object encoded in base64

Enum EbpfProgramID (Since: 9.0)ïƒ
Availability: CONFIG_EBPF

The eBPF programs that can be gotten with request-ebpf.

Values:
  • rss – Receive side scaling, technology that allows steering traffic between queues by calculation hash. Users may set up indirection table and hash/packet types configurations. Used with virtio-net.

Command request-ebpf (Since: 9.0)ïƒ
Availability: CONFIG_EBPF

Retrieve an eBPF object that can be loaded with libbpf. Management applications (e.g. libvirt) may load it and pass file descriptors to QEMU, so they can run running QEMU without BPF capabilities.

Arguments:
Return:

EbpfObject – eBPF object encoded in base64.

Rocker switch deviceïƒ

Object RockerSwitch (Since: 2.4)ïƒ

Rocker switch information.

Members:
  • name (string) – switch name

  • id (int) – switch ID

  • ports (int) – number of front-panel ports

Command query-rocker (Since: 2.4)ïƒ

Return rocker switch information.

Arguments:
  • name (string) – switch name

Return:

RockerSwitch – Rocker information

Example:

-> { "execute": "query-rocker", "arguments": { "name": "sw1" } }
<- { "return": {"name": "sw1", "ports": 2, "id": 1327446905938}}
Enum RockerPortDuplex (Since: 2.4)ïƒ

An enumeration of port duplex states.

Values:
  • half – half duplex

  • full – full duplex

Enum RockerPortAutoneg (Since: 2.4)ïƒ

An enumeration of port autoneg states.

Values:
  • off – autoneg is off

  • on – autoneg is on

Object RockerPort (Since: 2.4)ïƒ

Rocker switch port information.

Members:
  • name (string) – port name

  • enabled (boolean) – port is enabled for I/O

  • link-up (boolean) – physical link is UP on port

  • speed (int) – port link speed in Mbps

  • duplex (RockerPortDuplex) – port link duplex

  • autoneg (RockerPortAutoneg) – port link autoneg

Command query-rocker-ports (Since: 2.4)ïƒ

Return rocker switch port information.

Arguments:
  • name (string) – port name

Return:

[RockerPort] – a list of RockerPort information

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}
   ]}
Object RockerOfDpaFlowKey (Since: 2.4)ïƒ

Rocker switch OF-DPA flow key

Members:
  • priority (int) – key priority, 0 being lowest priority

  • tbl-id (int) – flow 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.

Object RockerOfDpaFlowMask (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.

Object RockerOfDpaFlowAction (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.

Object RockerOfDpaFlow (Since: 2.4)ïƒ

Rocker switch OF-DPA flow

Members:
Command query-rocker-of-dpa-flows (Since: 2.4)ïƒ

Return rocker OF-DPA flow information.

Arguments:
  • name (string) – switch name

  • tbl-id (int, optional) – flow table ID. If tbl-id is not specified, returns flow information for all tables.

Return:

[RockerOfDpaFlow] – rocker OF-DPA flow information

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}
                 },
                 ...
   ]}
Object RockerOfDpaGroup (Since: 2.4)ïƒ

Rocker switch OF-DPA group

Members:
  • id (int) – group unique ID

  • type (int) – group 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 ([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.

Command query-rocker-of-dpa-groups (Since: 2.4)ïƒ

Return rocker OF-DPA group information.

Arguments:
  • name (string) – switch name

  • type (int, optional) – group type. If type is not specified, returns group information for all group types.

Return:

[RockerOfDpaGroup] – rocker OF-DPA group information

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}
   ]}

TPM (trusted platform module) devicesïƒ

Enum TpmModel (Since: 1.5)ïƒ
Availability: CONFIG_TPM

An enumeration of TPM models

Values:
  • tpm-tis – TPM TIS model

  • tpm-crb – TPM CRB model (since 2.12)

  • tpm-spapr – TPM SPAPR model (since 5.0)

Command query-tpm-models (Since: 1.5)ïƒ
Availability: CONFIG_TPM

Return a list of supported TPM models

Return:

[TpmModel] – a list of TpmModel

Example:

-> { "execute": "query-tpm-models" }
<- { "return": [ "tpm-tis", "tpm-crb", "tpm-spapr" ] }
Enum TpmType (Since: 1.5)ïƒ
Availability: CONFIG_TPM

An enumeration of TPM types

Values:
  • passthrough – TPM passthrough type

  • emulator – Software Emulator TPM type (since 2.11)

Command query-tpm-types (Since: 1.5)ïƒ
Availability: CONFIG_TPM

Return a list of supported TPM types

Return:

[TpmType] – a list of TpmType

Example:

-> { "execute": "query-tpm-types" }
<- { "return": [ "passthrough", "emulator" ] }
Object TPMPassthroughOptions (Since: 1.5)ïƒ
Availability: CONFIG_TPM

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

Object TPMEmulatorOptions (Since: 2.11)ïƒ
Availability: CONFIG_TPM

Information about the TPM emulator type

Members:
  • chardev (string) – Name of a unix socket chardev

Object TPMPassthroughOptionsWrapper (Since: 1.5)ïƒ
Availability: CONFIG_TPM
Members:
Object TPMEmulatorOptionsWrapper (Since: 2.11)ïƒ
Availability: CONFIG_TPM
Members:
Object TpmTypeOptions (Since: 1.5)ïƒ
Availability: CONFIG_TPM

A union referencing different TPM backend types’ configuration options

Members:
  • type (TpmType) –

    • ‘passthrough’ The configuration options for the TPM passthrough type

    • ’emulator’ The configuration options for TPM emulator backend type

  • When type is passthrough: The members of TPMPassthroughOptionsWrapper.

  • When type is emulator: The members of TPMEmulatorOptionsWrapper.

Object TPMInfo (Since: 1.5)ïƒ
Availability: CONFIG_TPM

Information about the TPM

Members:
  • id (string) – The Id of the TPM

  • model (TpmModel) – The TPM frontend model

  • options (TpmTypeOptions) – The TPM (backend) type configuration options

Command query-tpm (Since: 1.5)ïƒ
Availability: CONFIG_TPM

Return information about the TPM device

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"
       }
     ]
   }

Remote desktopïƒ

Enum DisplayProtocol (Since: 7.0)ïƒ

Display protocols which support changing password options.

Values:
  • vnc – Not documented

  • spice – Not documented

Enum SetPasswordAction (Since: 7.0)ïƒ

An action to take on changing a password on a connection with active clients.

Values:
  • keep – maintain existing clients

  • fail – fail the command if clients are connected

  • disconnect – disconnect existing clients

div class="qapi-infopips docutils container">
Object NbdServerOpto optiopre">(Since: optiopre">(SincthroughOptl>
{"seconds" (Tppm.TpmType >Tppm.TpmType > ]}