4 # == Block core (VM unrelated)
7 { 'include': 'common.json' }
8 { 'include': 'crypto.json' }
9 { 'include': 'job.json' }
10 { 'include': 'sockets.json' }
15 # @id: unique snapshot id
17 # @name: user chosen name
19 # @vm-state-size: size of the VM state
21 # @date-sec: UTC date of the snapshot in seconds
23 # @date-nsec: fractional part in nano seconds to be used with date-sec
25 # @vm-clock-sec: VM clock relative to boot in seconds
27 # @vm-clock-nsec: fractional part in nano seconds to be used with vm-clock-sec
32 { 'struct': 'SnapshotInfo',
33 'data': { 'id': 'str', 'name': 'str', 'vm-state-size': 'int',
34 'date-sec': 'int', 'date-nsec': 'int',
35 'vm-clock-sec': 'int', 'vm-clock-nsec': 'int' } }
38 # @ImageInfoSpecificQCow2EncryptionBase:
40 # @format: The encryption format
44 { 'struct': 'ImageInfoSpecificQCow2EncryptionBase',
45 'data': { 'format': 'BlockdevQcow2EncryptionFormat'}}
48 # @ImageInfoSpecificQCow2Encryption:
52 { 'union': 'ImageInfoSpecificQCow2Encryption',
53 'base': 'ImageInfoSpecificQCow2EncryptionBase',
54 'discriminator': 'format',
55 'data': { 'luks': 'QCryptoBlockInfoLUKS' } }
58 # @ImageInfoSpecificQCow2:
60 # @compat: compatibility level
62 # @lazy-refcounts: on or off; only valid for compat >= 1.1
64 # @corrupt: true if the image has been marked corrupt; only valid for
65 # compat >= 1.1 (since 2.2)
67 # @refcount-bits: width of a refcount entry in bits (since 2.3)
69 # @encrypt: details about encryption parameters; only set if image
70 # is encrypted (since 2.10)
72 # @bitmaps: A list of qcow2 bitmap details (since 4.0)
76 { 'struct': 'ImageInfoSpecificQCow2',
79 '*lazy-refcounts': 'bool',
81 'refcount-bits': 'int',
82 '*encrypt': 'ImageInfoSpecificQCow2Encryption',
83 '*bitmaps': ['Qcow2BitmapInfo']
87 # @ImageInfoSpecificVmdk:
89 # @create-type: The create type of VMDK image
91 # @cid: Content id of image
93 # @parent-cid: Parent VMDK image's cid
95 # @extents: List of extent files
99 { 'struct': 'ImageInfoSpecificVmdk',
101 'create-type': 'str',
104 'extents': ['ImageInfo']
108 # @ImageInfoSpecific:
110 # A discriminated record of image format specific information structures.
114 { 'union': 'ImageInfoSpecific',
116 'qcow2': 'ImageInfoSpecificQCow2',
117 'vmdk': 'ImageInfoSpecificVmdk',
118 # If we need to add block driver specific parameters for
119 # LUKS in future, then we'll subclass QCryptoBlockInfoLUKS
120 # to define a ImageInfoSpecificLUKS
121 'luks': 'QCryptoBlockInfoLUKS'
127 # Information about a QEMU image file
129 # @filename: name of the image file
131 # @format: format of the image file
133 # @virtual-size: maximum capacity in bytes of the image
135 # @actual-size: actual size on disk in bytes of the image
137 # @dirty-flag: true if image is not cleanly closed
139 # @cluster-size: size of a cluster in bytes
141 # @encrypted: true if the image is encrypted
143 # @compressed: true if the image is compressed (Since 1.7)
145 # @backing-filename: name of the backing file
147 # @full-backing-filename: full path of the backing file
149 # @backing-filename-format: the format of the backing file
151 # @snapshots: list of VM snapshots
153 # @backing-image: info of the backing image (since 1.6)
155 # @format-specific: structure supplying additional format-specific
156 # information (since 1.7)
161 { 'struct': 'ImageInfo',
162 'data': {'filename': 'str', 'format': 'str', '*dirty-flag': 'bool',
163 '*actual-size': 'int', 'virtual-size': 'int',
164 '*cluster-size': 'int', '*encrypted': 'bool', '*compressed': 'bool',
165 '*backing-filename': 'str', '*full-backing-filename': 'str',
166 '*backing-filename-format': 'str', '*snapshots': ['SnapshotInfo'],
167 '*backing-image': 'ImageInfo',
168 '*format-specific': 'ImageInfoSpecific' } }
173 # Information about a QEMU image file check
175 # @filename: name of the image file checked
177 # @format: format of the image file checked
179 # @check-errors: number of unexpected errors occurred during check
181 # @image-end-offset: offset (in bytes) where the image ends, this
182 # field is present if the driver for the image format
185 # @corruptions: number of corruptions found during the check if any
187 # @leaks: number of leaks found during the check if any
189 # @corruptions-fixed: number of corruptions fixed during the check
192 # @leaks-fixed: number of leaks fixed during the check if any
194 # @total-clusters: total number of clusters, this field is present
195 # if the driver for the image format supports it
197 # @allocated-clusters: total number of allocated clusters, this
198 # field is present if the driver for the image format
201 # @fragmented-clusters: total number of fragmented clusters, this
202 # field is present if the driver for the image format
205 # @compressed-clusters: total number of compressed clusters, this
206 # field is present if the driver for the image format
212 { 'struct': 'ImageCheck',
213 'data': {'filename': 'str', 'format': 'str', 'check-errors': 'int',
214 '*image-end-offset': 'int', '*corruptions': 'int', '*leaks': 'int',
215 '*corruptions-fixed': 'int', '*leaks-fixed': 'int',
216 '*total-clusters': 'int', '*allocated-clusters': 'int',
217 '*fragmented-clusters': 'int', '*compressed-clusters': 'int' } }
222 # Mapping information from a virtual block range to a host file range
224 # @start: the start byte of the mapped virtual range
226 # @length: the number of bytes of the mapped virtual range
228 # @data: whether the mapped range has data
230 # @zero: whether the virtual blocks are zeroed
232 # @depth: the depth of the mapping
234 # @offset: the offset in file that the virtual sectors are mapped to
236 # @filename: filename that is referred to by @offset
241 { 'struct': 'MapEntry',
242 'data': {'start': 'int', 'length': 'int', 'data': 'bool',
243 'zero': 'bool', 'depth': 'int', '*offset': 'int',
244 '*filename': 'str' } }
247 # @BlockdevCacheInfo:
249 # Cache mode information for a block device
251 # @writeback: true if writeback mode is enabled
252 # @direct: true if the host page cache is bypassed (O_DIRECT)
253 # @no-flush: true if flush requests are ignored for the device
257 { 'struct': 'BlockdevCacheInfo',
258 'data': { 'writeback': 'bool',
260 'no-flush': 'bool' } }
265 # Information about the backing device for a block device.
267 # @file: the filename of the backing device
269 # @node-name: the name of the block driver node (Since 2.0)
271 # @ro: true if the backing device was open read-only
273 # @drv: the name of the block format used to open the backing device. As of
274 # 0.14.0 this can be: 'blkdebug', 'bochs', 'cloop', 'cow', 'dmg',
275 # 'file', 'file', 'ftp', 'ftps', 'host_cdrom', 'host_device',
276 # 'http', 'https', 'luks', 'nbd', 'parallels', 'qcow',
277 # 'qcow2', 'raw', 'vdi', 'vmdk', 'vpc', 'vvfat'
278 # 2.2: 'archipelago' added, 'cow' dropped
279 # 2.3: 'host_floppy' deprecated
280 # 2.5: 'host_floppy' dropped
282 # 2.8: 'replication' added, 'tftp' dropped
283 # 2.9: 'archipelago' dropped
285 # @backing_file: the name of the backing file (for copy-on-write)
287 # @backing_file_depth: number of files in the backing file chain (since: 1.2)
289 # @encrypted: true if the backing device is encrypted
291 # @encryption_key_missing: Deprecated; always false
293 # @detect_zeroes: detect and optimize zero writes (Since 2.1)
295 # @bps: total throughput limit in bytes per second is specified
297 # @bps_rd: read throughput limit in bytes per second is specified
299 # @bps_wr: write throughput limit in bytes per second is specified
301 # @iops: total I/O operations per second is specified
303 # @iops_rd: read I/O operations per second is specified
305 # @iops_wr: write I/O operations per second is specified
307 # @image: the info of image used (since: 1.6)
309 # @bps_max: total throughput limit during bursts,
310 # in bytes (Since 1.7)
312 # @bps_rd_max: read throughput limit during bursts,
313 # in bytes (Since 1.7)
315 # @bps_wr_max: write throughput limit during bursts,
316 # in bytes (Since 1.7)
318 # @iops_max: total I/O operations per second during bursts,
319 # in bytes (Since 1.7)
321 # @iops_rd_max: read I/O operations per second during bursts,
322 # in bytes (Since 1.7)
324 # @iops_wr_max: write I/O operations per second during bursts,
325 # in bytes (Since 1.7)
327 # @bps_max_length: maximum length of the @bps_max burst
328 # period, in seconds. (Since 2.6)
330 # @bps_rd_max_length: maximum length of the @bps_rd_max
331 # burst period, in seconds. (Since 2.6)
333 # @bps_wr_max_length: maximum length of the @bps_wr_max
334 # burst period, in seconds. (Since 2.6)
336 # @iops_max_length: maximum length of the @iops burst
337 # period, in seconds. (Since 2.6)
339 # @iops_rd_max_length: maximum length of the @iops_rd_max
340 # burst period, in seconds. (Since 2.6)
342 # @iops_wr_max_length: maximum length of the @iops_wr_max
343 # burst period, in seconds. (Since 2.6)
345 # @iops_size: an I/O size in bytes (Since 1.7)
347 # @group: throttle group name (Since 2.4)
349 # @cache: the cache mode used for the block device (since: 2.3)
351 # @write_threshold: configured write threshold for the device.
352 # 0 if disabled. (Since 2.3)
357 { 'struct': 'BlockDeviceInfo',
358 'data': { 'file': 'str', '*node-name': 'str', 'ro': 'bool', 'drv': 'str',
359 '*backing_file': 'str', 'backing_file_depth': 'int',
360 'encrypted': 'bool', 'encryption_key_missing': 'bool',
361 'detect_zeroes': 'BlockdevDetectZeroesOptions',
362 'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
363 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
364 'image': 'ImageInfo',
365 '*bps_max': 'int', '*bps_rd_max': 'int',
366 '*bps_wr_max': 'int', '*iops_max': 'int',
367 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
368 '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
369 '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
370 '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
371 '*iops_size': 'int', '*group': 'str', 'cache': 'BlockdevCacheInfo',
372 'write_threshold': 'int' } }
375 # @BlockDeviceIoStatus:
377 # An enumeration of block device I/O status.
379 # @ok: The last I/O operation has succeeded
381 # @failed: The last I/O operation has failed
383 # @nospace: The last I/O operation has failed due to a no-space condition
387 { 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
390 # @BlockDeviceMapEntry:
392 # Entry in the metadata map of the device (returned by "qemu-img map")
394 # @start: Offset in the image of the first byte described by this entry
397 # @length: Length of the range described by this entry (in bytes)
399 # @depth: Number of layers (0 = top image, 1 = top image's backing file, etc.)
400 # before reaching one for which the range is allocated. The value is
401 # in the range 0 to the depth of the image chain - 1.
403 # @zero: the sectors in this range read as zeros
405 # @data: reading the image will actually read data from a file (in particular,
406 # if @offset is present this means that the sectors are not simply
407 # preallocated, but contain actual data in raw format)
409 # @offset: if present, the image file stores the data for this range in
410 # raw format at the given offset.
414 { 'struct': 'BlockDeviceMapEntry',
415 'data': { 'start': 'int', 'length': 'int', 'depth': 'int', 'zero': 'bool',
416 'data': 'bool', '*offset': 'int' } }
419 # @DirtyBitmapStatus:
421 # An enumeration of possible states that a dirty bitmap can report to the user.
423 # @frozen: The bitmap is currently in-use by some operation and is immutable.
424 # If the bitmap was @active prior to the operation, new writes by the
425 # guest are being recorded in a temporary buffer, and will not be lost.
426 # Generally, bitmaps are cleared on successful use in an operation and
427 # the temporary buffer is committed into the bitmap. On failure, the
428 # temporary buffer is merged back into the bitmap without first
430 # Please refer to the documentation for each bitmap-using operation,
431 # See also @blockdev-backup, @drive-backup.
433 # @disabled: The bitmap is not currently recording new writes by the guest.
434 # This is requested explicitly via @block-dirty-bitmap-disable.
435 # It can still be cleared, deleted, or used for backup operations.
437 # @active: The bitmap is actively monitoring for new writes, and can be cleared,
438 # deleted, or used for backup operations.
440 # @locked: The bitmap is currently in-use by some operation and is immutable.
441 # If the bitmap was @active prior to the operation, it is still
442 # recording new writes. If the bitmap was @disabled, it is not
443 # recording new writes. (Since 2.12)
447 { 'enum': 'DirtyBitmapStatus',
448 'data': ['active', 'disabled', 'frozen', 'locked'] }
453 # Block dirty bitmap information.
455 # @name: the name of the dirty bitmap (Since 2.4)
457 # @count: number of dirty bytes according to the dirty bitmap
459 # @granularity: granularity of the dirty bitmap in bytes (since 1.4)
461 # @status: current status of the dirty bitmap (since 2.4)
463 # @persistent: true if the bitmap will eventually be flushed to persistent
464 # storage (since 4.0)
468 { 'struct': 'BlockDirtyInfo',
469 'data': {'*name': 'str', 'count': 'int', 'granularity': 'uint32',
470 'status': 'DirtyBitmapStatus', 'persistent': 'bool' } }
473 # @Qcow2BitmapInfoFlags:
475 # An enumeration of flags that a bitmap can report to the user.
477 # @in-use: This flag is set by any process actively modifying the qcow2 file,
478 # and cleared when the updated bitmap is flushed to the qcow2 image.
479 # The presence of this flag in an offline image means that the bitmap
480 # was not saved correctly after its last usage, and may contain
483 # @auto: The bitmap must reflect all changes of the virtual disk by any
484 # application that would write to this qcow2 file.
488 { 'enum': 'Qcow2BitmapInfoFlags',
489 'data': ['in-use', 'auto'] }
494 # Qcow2 bitmap information.
496 # @name: the name of the bitmap
498 # @granularity: granularity of the bitmap in bytes
500 # @flags: flags of the bitmap
504 { 'struct': 'Qcow2BitmapInfo',
505 'data': {'name': 'str', 'granularity': 'uint32',
506 'flags': ['Qcow2BitmapInfoFlags'] } }
509 # @BlockLatencyHistogramInfo:
511 # Block latency histogram.
513 # @boundaries: list of interval boundary values in nanoseconds, all greater
514 # than zero and in ascending order.
515 # For example, the list [10, 50, 100] produces the following
516 # histogram intervals: [0, 10), [10, 50), [50, 100), [100, +inf).
518 # @bins: list of io request counts corresponding to histogram intervals.
519 # len(@bins) = len(@boundaries) + 1
520 # For the example above, @bins may be something like [3, 1, 5, 2],
521 # and corresponding histogram looks like:
528 # +------------------
533 { 'struct': 'BlockLatencyHistogramInfo',
534 'data': {'boundaries': ['uint64'], 'bins': ['uint64'] } }
537 # @x-block-latency-histogram-set:
539 # Manage read, write and flush latency histograms for the device.
541 # If only @device parameter is specified, remove all present latency histograms
542 # for the device. Otherwise, add/reset some of (or all) latency histograms.
544 # @device: device name to set latency histogram for.
546 # @boundaries: list of interval boundary values (see description in
547 # BlockLatencyHistogramInfo definition). If specified, all
548 # latency histograms are removed, and empty ones created for all
549 # io types with intervals corresponding to @boundaries (except for
550 # io types, for which specific boundaries are set through the
551 # following parameters).
553 # @boundaries-read: list of interval boundary values for read latency
554 # histogram. If specified, old read latency histogram is
555 # removed, and empty one created with intervals
556 # corresponding to @boundaries-read. The parameter has higher
557 # priority then @boundaries.
559 # @boundaries-write: list of interval boundary values for write latency
562 # @boundaries-flush: list of interval boundary values for flush latency
565 # Returns: error if device is not found or any boundary arrays are invalid.
569 # Example: set new histograms for all io types with intervals
570 # [0, 10), [10, 50), [50, 100), [100, +inf):
572 # -> { "execute": "block-latency-histogram-set",
573 # "arguments": { "device": "drive0",
574 # "boundaries": [10, 50, 100] } }
575 # <- { "return": {} }
577 # Example: set new histogram only for write, other histograms will remain
578 # not changed (or not created):
580 # -> { "execute": "block-latency-histogram-set",
581 # "arguments": { "device": "drive0",
582 # "boundaries-write": [10, 50, 100] } }
583 # <- { "return": {} }
585 # Example: set new histograms with the following intervals:
586 # read, flush: [0, 10), [10, 50), [50, 100), [100, +inf)
587 # write: [0, 1000), [1000, 5000), [5000, +inf)
589 # -> { "execute": "block-latency-histogram-set",
590 # "arguments": { "device": "drive0",
591 # "boundaries": [10, 50, 100],
592 # "boundaries-write": [1000, 5000] } }
593 # <- { "return": {} }
595 # Example: remove all latency histograms:
597 # -> { "execute": "block-latency-histogram-set",
598 # "arguments": { "device": "drive0" } }
599 # <- { "return": {} }
601 { 'command': 'x-block-latency-histogram-set',
602 'data': {'device': 'str',
603 '*boundaries': ['uint64'],
604 '*boundaries-read': ['uint64'],
605 '*boundaries-write': ['uint64'],
606 '*boundaries-flush': ['uint64'] } }
611 # Block device information. This structure describes a virtual device and
612 # the backing device associated with it.
614 # @device: The device name associated with the virtual device.
616 # @qdev: The qdev ID, or if no ID is assigned, the QOM path of the block
617 # device. (since 2.10)
619 # @type: This field is returned only for compatibility reasons, it should
620 # not be used (always returns 'unknown')
622 # @removable: True if the device supports removable media.
624 # @locked: True if the guest has locked this device from having its media
627 # @tray_open: True if the device's tray is open
628 # (only present if it has a tray)
630 # @dirty-bitmaps: dirty bitmaps information (only present if the
631 # driver has one or more dirty bitmaps) (Since 2.0)
633 # @io-status: @BlockDeviceIoStatus. Only present if the device
634 # supports it and the VM is configured to stop on errors
635 # (supported device models: virtio-blk, IDE, SCSI except
638 # @inserted: @BlockDeviceInfo describing the device if media is
643 { 'struct': 'BlockInfo',
644 'data': {'device': 'str', '*qdev': 'str', 'type': 'str', 'removable': 'bool',
645 'locked': 'bool', '*inserted': 'BlockDeviceInfo',
646 '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus',
647 '*dirty-bitmaps': ['BlockDirtyInfo'] } }
652 # Image file size calculation information. This structure describes the size
653 # requirements for creating a new image file.
655 # The size requirements depend on the new image file format. File size always
656 # equals virtual disk size for the 'raw' format, even for sparse POSIX files.
657 # Compact formats such as 'qcow2' represent unallocated and zero regions
658 # efficiently so file size may be smaller than virtual disk size.
660 # The values are upper bounds that are guaranteed to fit the new image file.
661 # Subsequent modification, such as internal snapshot or bitmap creation, may
662 # require additional space and is not covered here.
664 # @required: Size required for a new image file, in bytes.
666 # @fully-allocated: Image file size, in bytes, once data has been written
671 { 'struct': 'BlockMeasureInfo',
672 'data': {'required': 'int', 'fully-allocated': 'int'} }
677 # Get a list of BlockInfo for all virtual block devices.
679 # Returns: a list of @BlockInfo describing each virtual block device. Filter
680 # nodes that were created implicitly are skipped over.
686 # -> { "execute": "query-block" }
691 # "device":"ide0-hd0",
698 # "file":"disks/test.qcow2",
699 # "backing_file_depth":1,
706 # "bps_max": 8000000,
713 # "detect_zeroes": "on",
714 # "write_threshold": 0,
716 # "filename":"disks/test.qcow2",
718 # "virtual-size":2048000,
719 # "backing_file":"base.qcow2",
720 # "full-backing-filename":"disks/base.qcow2",
721 # "backing-filename-format":"qcow2",
725 # "name": "snapshot1",
726 # "vm-state-size": 0,
727 # "date-sec": 10000200,
729 # "vm-clock-sec": 206,
730 # "vm-clock-nsec": 30
734 # "filename":"disks/base.qcow2",
736 # "virtual-size":2048000
740 # "qdev": "ide_disk",
745 # "device":"ide1-cd0",
748 # "qdev": "/machine/unattached/device[23]",
749 # "tray_open": false,
753 # "device":"floppy0",
756 # "qdev": "/machine/unattached/device[20]",
769 { 'command': 'query-block', 'returns': ['BlockInfo'] }
773 # @BlockDeviceTimedStats:
775 # Statistics of a block device during a given interval of time.
777 # @interval_length: Interval used for calculating the statistics,
780 # @min_rd_latency_ns: Minimum latency of read operations in the
781 # defined interval, in nanoseconds.
783 # @min_wr_latency_ns: Minimum latency of write operations in the
784 # defined interval, in nanoseconds.
786 # @min_flush_latency_ns: Minimum latency of flush operations in the
787 # defined interval, in nanoseconds.
789 # @max_rd_latency_ns: Maximum latency of read operations in the
790 # defined interval, in nanoseconds.
792 # @max_wr_latency_ns: Maximum latency of write operations in the
793 # defined interval, in nanoseconds.
795 # @max_flush_latency_ns: Maximum latency of flush operations in the
796 # defined interval, in nanoseconds.
798 # @avg_rd_latency_ns: Average latency of read operations in the
799 # defined interval, in nanoseconds.
801 # @avg_wr_latency_ns: Average latency of write operations in the
802 # defined interval, in nanoseconds.
804 # @avg_flush_latency_ns: Average latency of flush operations in the
805 # defined interval, in nanoseconds.
807 # @avg_rd_queue_depth: Average number of pending read operations
808 # in the defined interval.
810 # @avg_wr_queue_depth: Average number of pending write operations
811 # in the defined interval.
815 { 'struct': 'BlockDeviceTimedStats',
816 'data': { 'interval_length': 'int', 'min_rd_latency_ns': 'int',
817 'max_rd_latency_ns': 'int', 'avg_rd_latency_ns': 'int',
818 'min_wr_latency_ns': 'int', 'max_wr_latency_ns': 'int',
819 'avg_wr_latency_ns': 'int', 'min_flush_latency_ns': 'int',
820 'max_flush_latency_ns': 'int', 'avg_flush_latency_ns': 'int',
821 'avg_rd_queue_depth': 'number', 'avg_wr_queue_depth': 'number' } }
826 # Statistics of a virtual block device or a block backing device.
828 # @rd_bytes: The number of bytes read by the device.
830 # @wr_bytes: The number of bytes written by the device.
832 # @rd_operations: The number of read operations performed by the device.
834 # @wr_operations: The number of write operations performed by the device.
836 # @flush_operations: The number of cache flush operations performed by the
837 # device (since 0.15.0)
839 # @flush_total_time_ns: Total time spend on cache flushes in nano-seconds
842 # @wr_total_time_ns: Total time spend on writes in nano-seconds (since 0.15.0).
844 # @rd_total_time_ns: Total_time_spend on reads in nano-seconds (since 0.15.0).
846 # @wr_highest_offset: The offset after the greatest byte written to the
847 # device. The intended use of this information is for
848 # growable sparse files (like qcow2) that are used on top
849 # of a physical device.
851 # @rd_merged: Number of read requests that have been merged into another
852 # request (Since 2.3).
854 # @wr_merged: Number of write requests that have been merged into another
855 # request (Since 2.3).
857 # @idle_time_ns: Time since the last I/O operation, in
858 # nanoseconds. If the field is absent it means that
859 # there haven't been any operations yet (Since 2.5).
861 # @failed_rd_operations: The number of failed read operations
862 # performed by the device (Since 2.5)
864 # @failed_wr_operations: The number of failed write operations
865 # performed by the device (Since 2.5)
867 # @failed_flush_operations: The number of failed flush operations
868 # performed by the device (Since 2.5)
870 # @invalid_rd_operations: The number of invalid read operations
871 # performed by the device (Since 2.5)
873 # @invalid_wr_operations: The number of invalid write operations
874 # performed by the device (Since 2.5)
876 # @invalid_flush_operations: The number of invalid flush operations
877 # performed by the device (Since 2.5)
879 # @account_invalid: Whether invalid operations are included in the
880 # last access statistics (Since 2.5)
882 # @account_failed: Whether failed operations are included in the
883 # latency and last access statistics (Since 2.5)
885 # @timed_stats: Statistics specific to the set of previously defined
886 # intervals of time (Since 2.5)
888 # @x_rd_latency_histogram: @BlockLatencyHistogramInfo. (Since 2.12)
890 # @x_wr_latency_histogram: @BlockLatencyHistogramInfo. (Since 2.12)
892 # @x_flush_latency_histogram: @BlockLatencyHistogramInfo. (Since 2.12)
896 { 'struct': 'BlockDeviceStats',
897 'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'rd_operations': 'int',
898 'wr_operations': 'int', 'flush_operations': 'int',
899 'flush_total_time_ns': 'int', 'wr_total_time_ns': 'int',
900 'rd_total_time_ns': 'int', 'wr_highest_offset': 'int',
901 'rd_merged': 'int', 'wr_merged': 'int', '*idle_time_ns': 'int',
902 'failed_rd_operations': 'int', 'failed_wr_operations': 'int',
903 'failed_flush_operations': 'int', 'invalid_rd_operations': 'int',
904 'invalid_wr_operations': 'int', 'invalid_flush_operations': 'int',
905 'account_invalid': 'bool', 'account_failed': 'bool',
906 'timed_stats': ['BlockDeviceTimedStats'],
907 '*x_rd_latency_histogram': 'BlockLatencyHistogramInfo',
908 '*x_wr_latency_histogram': 'BlockLatencyHistogramInfo',
909 '*x_flush_latency_histogram': 'BlockLatencyHistogramInfo' } }
914 # Statistics of a virtual block device or a block backing device.
916 # @device: If the stats are for a virtual block device, the name
917 # corresponding to the virtual block device.
919 # @node-name: The node name of the device. (Since 2.3)
921 # @qdev: The qdev ID, or if no ID is assigned, the QOM path of the block
922 # device. (since 3.0)
924 # @stats: A @BlockDeviceStats for the device.
926 # @parent: This describes the file block device if it has one.
927 # Contains recursively the statistics of the underlying
928 # protocol (e.g. the host file for a qcow2 image). If there is
929 # no underlying protocol, this field is omitted
931 # @backing: This describes the backing block device if it has one.
936 { 'struct': 'BlockStats',
937 'data': {'*device': 'str', '*qdev': 'str', '*node-name': 'str',
938 'stats': 'BlockDeviceStats',
939 '*parent': 'BlockStats',
940 '*backing': 'BlockStats'} }
945 # Query the @BlockStats for all virtual block devices.
947 # @query-nodes: If true, the command will query all the block nodes
948 # that have a node name, in a list which will include "parent"
949 # information, but not "backing".
950 # If false or omitted, the behavior is as before - query all the
951 # device backends, recursively including their "parent" and
952 # "backing". Filter nodes that were created implicitly are
953 # skipped over in this mode. (Since 2.3)
955 # Returns: A list of @BlockStats for each virtual block devices.
961 # -> { "execute": "query-blockstats" }
965 # "device":"ide0-hd0",
968 # "wr_highest_offset":3686448128,
969 # "wr_bytes":9786368,
970 # "wr_operations":751,
971 # "rd_bytes":122567168,
972 # "rd_operations":36772
973 # "wr_total_times_ns":313253456
974 # "rd_total_times_ns":3465673657
975 # "flush_total_times_ns":49653
976 # "flush_operations":61,
979 # "idle_time_ns":2953431879,
980 # "account_invalid":true,
981 # "account_failed":false
985 # "wr_highest_offset":2821110784,
986 # "wr_bytes":9786368,
987 # "wr_operations":692,
988 # "rd_bytes":122739200,
989 # "rd_operations":36604
990 # "flush_operations":51,
991 # "wr_total_times_ns":313253456
992 # "rd_total_times_ns":3465673657
993 # "flush_total_times_ns":49653,
996 # "idle_time_ns":2953431879,
997 # "account_invalid":true,
998 # "account_failed":false
1000 # "qdev": "/machine/unattached/device[23]"
1003 # "device":"ide1-cd0",
1005 # "wr_highest_offset":0,
1007 # "wr_operations":0,
1010 # "flush_operations":0,
1011 # "wr_total_times_ns":0
1012 # "rd_total_times_ns":0
1013 # "flush_total_times_ns":0,
1016 # "account_invalid":false,
1017 # "account_failed":false
1019 # "qdev": "/machine/unattached/device[24]"
1022 # "device":"floppy0",
1024 # "wr_highest_offset":0,
1026 # "wr_operations":0,
1029 # "flush_operations":0,
1030 # "wr_total_times_ns":0
1031 # "rd_total_times_ns":0
1032 # "flush_total_times_ns":0,
1035 # "account_invalid":false,
1036 # "account_failed":false
1038 # "qdev": "/machine/unattached/device[16]"
1043 # "wr_highest_offset":0,
1045 # "wr_operations":0,
1048 # "flush_operations":0,
1049 # "wr_total_times_ns":0
1050 # "rd_total_times_ns":0
1051 # "flush_total_times_ns":0,
1054 # "account_invalid":false,
1055 # "account_failed":false
1062 { 'command': 'query-blockstats',
1063 'data': { '*query-nodes': 'bool' },
1064 'returns': ['BlockStats'] }
1069 # An enumeration of possible behaviors for errors on I/O operations.
1070 # The exact meaning depends on whether the I/O was initiated by a guest
1073 # @report: for guest operations, report the error to the guest;
1074 # for jobs, cancel the job
1076 # @ignore: ignore the error, only report a QMP event (BLOCK_IO_ERROR
1077 # or BLOCK_JOB_ERROR)
1079 # @enospc: same as @stop on ENOSPC, same as @report otherwise.
1081 # @stop: for guest operations, stop the virtual machine;
1082 # for jobs, pause the job
1084 # @auto: inherit the error handling policy of the backend (since: 2.7)
1088 { 'enum': 'BlockdevOnError',
1089 'data': ['report', 'ignore', 'enospc', 'stop', 'auto'] }
1094 # An enumeration of possible behaviors for the initial synchronization
1095 # phase of storage mirroring.
1097 # @top: copies data in the topmost image to the destination
1099 # @full: copies data from all images to the destination
1101 # @none: only copy data written from now on
1103 # @incremental: only copy data described by the dirty bitmap. Since: 2.4
1107 { 'enum': 'MirrorSyncMode',
1108 'data': ['top', 'full', 'none', 'incremental'] }
1113 # An enumeration whose values tell the mirror block job when to
1114 # trigger writes to the target.
1116 # @background: copy data in background only.
1118 # @write-blocking: when data is written to the source, write it
1119 # (synchronously) to the target as well. In
1120 # addition, data is copied in background just like in
1125 { 'enum': 'MirrorCopyMode',
1126 'data': ['background', 'write-blocking'] }
1131 # Information about a long-running block device operation.
1133 # @type: the job type ('stream' for image streaming)
1135 # @device: The job identifier. Originally the device name but other
1136 # values are allowed since QEMU 2.7
1138 # @len: Estimated @offset value at the completion of the job. This value can
1139 # arbitrarily change while the job is running, in both directions.
1141 # @offset: Progress made until now. The unit is arbitrary and the value can
1142 # only meaningfully be used for the ratio of @offset to @len. The
1143 # value is monotonically increasing.
1145 # @busy: false if the job is known to be in a quiescent state, with
1146 # no pending I/O. Since 1.3.
1148 # @paused: whether the job is paused or, if @busy is true, will
1149 # pause itself as soon as possible. Since 1.3.
1151 # @speed: the rate limit, bytes per second
1153 # @io-status: the status of the job (since 1.3)
1155 # @ready: true if the job may be completed (since 2.2)
1157 # @status: Current job state/status (since 2.12)
1159 # @auto-finalize: Job will finalize itself when PENDING, moving to
1160 # the CONCLUDED state. (since 2.12)
1162 # @auto-dismiss: Job will dismiss itself when CONCLUDED, moving to the NULL
1163 # state and disappearing from the query list. (since 2.12)
1165 # @error: Error information if the job did not complete successfully.
1166 # Not set if the job completed successfully. (since 2.12.1)
1170 { 'struct': 'BlockJobInfo',
1171 'data': {'type': 'str', 'device': 'str', 'len': 'int',
1172 'offset': 'int', 'busy': 'bool', 'paused': 'bool', 'speed': 'int',
1173 'io-status': 'BlockDeviceIoStatus', 'ready': 'bool',
1174 'status': 'JobStatus',
1175 'auto-finalize': 'bool', 'auto-dismiss': 'bool',
1179 # @query-block-jobs:
1181 # Return information about long-running block device operations.
1183 # Returns: a list of @BlockJobInfo for each active block job
1187 { 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }
1192 # This command sets the password of a block device that has not been open
1193 # with a password and requires one.
1195 # This command is now obsolete and will always return an error since 2.10
1198 { 'command': 'block_passwd',
1199 'data': { '*device': 'str',
1200 '*node-name': 'str',
1201 'password': 'str' } }
1206 # Resize a block image while a guest is running.
1208 # Either @device or @node-name must be set but not both.
1210 # @device: the name of the device to get the image resized
1212 # @node-name: graph node name to get the image resized (Since 2.0)
1214 # @size: new image size in bytes
1216 # Returns: nothing on success
1217 # If @device is not a valid block device, DeviceNotFound
1223 # -> { "execute": "block_resize",
1224 # "arguments": { "device": "scratch", "size": 1073741824 } }
1225 # <- { "return": {} }
1228 { 'command': 'block_resize',
1229 'data': { '*device': 'str',
1230 '*node-name': 'str',
1236 # An enumeration that tells QEMU how to set the backing file path in
1239 # @existing: QEMU should look for an existing image file.
1241 # @absolute-paths: QEMU should create a new image with absolute paths
1242 # for the backing file. If there is no backing file available, the new
1243 # image will not be backed either.
1247 { 'enum': 'NewImageMode',
1248 'data': [ 'existing', 'absolute-paths' ] }
1251 # @BlockdevSnapshotSync:
1253 # Either @device or @node-name must be set but not both.
1255 # @device: the name of the device to generate the snapshot from.
1257 # @node-name: graph node name to generate the snapshot from (Since 2.0)
1259 # @snapshot-file: the target of the new image. If the file exists, or
1260 # if it is a device, the snapshot will be created in the existing
1261 # file/device. Otherwise, a new file will be created.
1263 # @snapshot-node-name: the graph node name of the new image (Since 2.0)
1265 # @format: the format of the snapshot image, default is 'qcow2'.
1267 # @mode: whether and how QEMU should create a new image, default is
1270 { 'struct': 'BlockdevSnapshotSync',
1271 'data': { '*device': 'str', '*node-name': 'str',
1272 'snapshot-file': 'str', '*snapshot-node-name': 'str',
1273 '*format': 'str', '*mode': 'NewImageMode' } }
1276 # @BlockdevSnapshot:
1278 # @node: device or node name that will have a snapshot created.
1280 # @overlay: reference to the existing block device that will become
1281 # the overlay of @node, as part of creating the snapshot.
1282 # It must not have a current backing file (this can be
1283 # achieved by passing "backing": null to blockdev-add).
1287 { 'struct': 'BlockdevSnapshot',
1288 'data': { 'node': 'str', 'overlay': 'str' } }
1293 # @job-id: identifier for the newly-created block job. If
1294 # omitted, the device name will be used. (Since 2.7)
1296 # @device: the device name or node-name of a root node which should be copied.
1298 # @target: the target of the new image. If the file exists, or if it
1299 # is a device, the existing file/device will be used as the new
1300 # destination. If it does not exist, a new file will be created.
1302 # @format: the format of the new destination, default is to
1303 # probe if @mode is 'existing', else the format of the source
1305 # @sync: what parts of the disk image should be copied to the destination
1306 # (all the disk, only the sectors allocated in the topmost image, from a
1307 # dirty bitmap, or only new I/O).
1309 # @mode: whether and how QEMU should create a new image, default is
1312 # @speed: the maximum speed, in bytes per second
1314 # @bitmap: the name of dirty bitmap if sync is "incremental".
1315 # Must be present if sync is "incremental", must NOT be present
1316 # otherwise. (Since 2.4)
1318 # @compress: true to compress data, if the target format supports it.
1319 # (default: false) (since 2.8)
1321 # @on-source-error: the action to take on an error on the source,
1322 # default 'report'. 'stop' and 'enospc' can only be used
1323 # if the block device supports io-status (see BlockInfo).
1325 # @on-target-error: the action to take on an error on the target,
1326 # default 'report' (no limitations, since this applies to
1327 # a different block device than @device).
1329 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1330 # finished its work, waiting for @block-job-finalize before
1331 # making any block graph changes.
1332 # When true, this job will automatically
1333 # perform its abort or commit actions.
1334 # Defaults to true. (Since 2.12)
1336 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1337 # has completely ceased all work, and awaits @block-job-dismiss.
1338 # When true, this job will automatically disappear from the query
1339 # list without user intervention.
1340 # Defaults to true. (Since 2.12)
1342 # Note: @on-source-error and @on-target-error only affect background
1343 # I/O. If an error occurs during a guest write request, the device's
1344 # rerror/werror actions will be used.
1348 { 'struct': 'DriveBackup',
1349 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1350 '*format': 'str', 'sync': 'MirrorSyncMode',
1351 '*mode': 'NewImageMode', '*speed': 'int',
1352 '*bitmap': 'str', '*compress': 'bool',
1353 '*on-source-error': 'BlockdevOnError',
1354 '*on-target-error': 'BlockdevOnError',
1355 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1360 # @job-id: identifier for the newly-created block job. If
1361 # omitted, the device name will be used. (Since 2.7)
1363 # @device: the device name or node-name of a root node which should be copied.
1365 # @target: the device name or node-name of the backup target node.
1367 # @sync: what parts of the disk image should be copied to the destination
1368 # (all the disk, only the sectors allocated in the topmost image, or
1371 # @speed: the maximum speed, in bytes per second. The default is 0,
1374 # @bitmap: the name of dirty bitmap if sync is "incremental".
1375 # Must be present if sync is "incremental", must NOT be present
1376 # otherwise. (Since 3.1)
1378 # @compress: true to compress data, if the target format supports it.
1379 # (default: false) (since 2.8)
1381 # @on-source-error: the action to take on an error on the source,
1382 # default 'report'. 'stop' and 'enospc' can only be used
1383 # if the block device supports io-status (see BlockInfo).
1385 # @on-target-error: the action to take on an error on the target,
1386 # default 'report' (no limitations, since this applies to
1387 # a different block device than @device).
1389 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1390 # finished its work, waiting for @block-job-finalize before
1391 # making any block graph changes.
1392 # When true, this job will automatically
1393 # perform its abort or commit actions.
1394 # Defaults to true. (Since 2.12)
1396 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1397 # has completely ceased all work, and awaits @block-job-dismiss.
1398 # When true, this job will automatically disappear from the query
1399 # list without user intervention.
1400 # Defaults to true. (Since 2.12)
1402 # Note: @on-source-error and @on-target-error only affect background
1403 # I/O. If an error occurs during a guest write request, the device's
1404 # rerror/werror actions will be used.
1408 { 'struct': 'BlockdevBackup',
1409 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1410 'sync': 'MirrorSyncMode', '*speed': 'int',
1411 '*bitmap': 'str', '*compress': 'bool',
1412 '*on-source-error': 'BlockdevOnError',
1413 '*on-target-error': 'BlockdevOnError',
1414 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1417 # @blockdev-snapshot-sync:
1419 # Generates a synchronous snapshot of a block device.
1421 # For the arguments, see the documentation of BlockdevSnapshotSync.
1423 # Returns: nothing on success
1424 # If @device is not a valid block device, DeviceNotFound
1430 # -> { "execute": "blockdev-snapshot-sync",
1431 # "arguments": { "device": "ide-hd0",
1433 # "/some/place/my-image",
1434 # "format": "qcow2" } }
1435 # <- { "return": {} }
1438 { 'command': 'blockdev-snapshot-sync',
1439 'data': 'BlockdevSnapshotSync' }
1443 # @blockdev-snapshot:
1445 # Generates a snapshot of a block device.
1447 # Create a snapshot, by installing 'node' as the backing image of
1448 # 'overlay'. Additionally, if 'node' is associated with a block
1449 # device, the block device changes to using 'overlay' as its new active
1452 # For the arguments, see the documentation of BlockdevSnapshot.
1458 # -> { "execute": "blockdev-add",
1459 # "arguments": { "driver": "qcow2",
1460 # "node-name": "node1534",
1461 # "file": { "driver": "file",
1462 # "filename": "hd1.qcow2" },
1463 # "backing": null } }
1465 # <- { "return": {} }
1467 # -> { "execute": "blockdev-snapshot",
1468 # "arguments": { "node": "ide-hd0",
1469 # "overlay": "node1534" } }
1470 # <- { "return": {} }
1473 { 'command': 'blockdev-snapshot',
1474 'data': 'BlockdevSnapshot' }
1477 # @change-backing-file:
1479 # Change the backing file in the image file metadata. This does not
1480 # cause QEMU to reopen the image file to reparse the backing filename
1481 # (it may, however, perform a reopen to change permissions from
1482 # r/o -> r/w -> r/o, if needed). The new backing file string is written
1483 # into the image file metadata, and the QEMU internal strings are
1486 # @image-node-name: The name of the block driver state node of the
1487 # image to modify. The "device" argument is used
1488 # to verify "image-node-name" is in the chain
1489 # described by "device".
1491 # @device: The device name or node-name of the root node that owns
1494 # @backing-file: The string to write as the backing file. This
1495 # string is not validated, so care should be taken
1496 # when specifying the string or the image chain may
1497 # not be able to be reopened again.
1499 # Returns: Nothing on success
1501 # If "device" does not exist or cannot be determined, DeviceNotFound
1505 { 'command': 'change-backing-file',
1506 'data': { 'device': 'str', 'image-node-name': 'str',
1507 'backing-file': 'str' } }
1512 # Live commit of data from overlay image nodes into backing nodes - i.e.,
1513 # writes data between 'top' and 'base' into 'base'.
1515 # @job-id: identifier for the newly-created block job. If
1516 # omitted, the device name will be used. (Since 2.7)
1518 # @device: the device name or node-name of a root node
1520 # @base-node: The node name of the backing image to write data into.
1521 # If not specified, this is the deepest backing image.
1524 # @base: Same as @base-node, except that it is a file name rather than a node
1525 # name. This must be the exact filename string that was used to open the
1526 # node; other strings, even if addressing the same file, are not
1527 # accepted (deprecated, use @base-node instead)
1529 # @top-node: The node name of the backing image within the image chain
1530 # which contains the topmost data to be committed down. If
1531 # not specified, this is the active layer. (since: 3.1)
1533 # @top: Same as @top-node, except that it is a file name rather than a node
1534 # name. This must be the exact filename string that was used to open the
1535 # node; other strings, even if addressing the same file, are not
1536 # accepted (deprecated, use @base-node instead)
1538 # @backing-file: The backing file string to write into the overlay
1539 # image of 'top'. If 'top' is the active layer,
1540 # specifying a backing file string is an error. This
1541 # filename is not validated.
1543 # If a pathname string is such that it cannot be
1544 # resolved by QEMU, that means that subsequent QMP or
1545 # HMP commands must use node-names for the image in
1546 # question, as filename lookup methods will fail.
1548 # If not specified, QEMU will automatically determine
1549 # the backing file string to use, or error out if
1550 # there is no obvious choice. Care should be taken
1551 # when specifying the string, to specify a valid
1552 # filename or protocol.
1555 # If top == base, that is an error.
1556 # If top == active, the job will not be completed by itself,
1557 # user needs to complete the job with the block-job-complete
1558 # command after getting the ready event. (Since 2.0)
1560 # If the base image is smaller than top, then the base image
1561 # will be resized to be the same size as top. If top is
1562 # smaller than the base image, the base will not be
1563 # truncated. If you want the base image size to match the
1564 # size of the smaller top, you can safely truncate it
1565 # yourself once the commit operation successfully completes.
1567 # @speed: the maximum speed, in bytes per second
1569 # @filter-node-name: the node name that should be assigned to the
1570 # filter driver that the commit job inserts into the graph
1571 # above @top. If this option is not given, a node name is
1572 # autogenerated. (Since: 2.9)
1574 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1575 # finished its work, waiting for @block-job-finalize before
1576 # making any block graph changes.
1577 # When true, this job will automatically
1578 # perform its abort or commit actions.
1579 # Defaults to true. (Since 3.1)
1581 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1582 # has completely ceased all work, and awaits @block-job-dismiss.
1583 # When true, this job will automatically disappear from the query
1584 # list without user intervention.
1585 # Defaults to true. (Since 3.1)
1587 # Returns: Nothing on success
1588 # If @device does not exist, DeviceNotFound
1589 # Any other error returns a GenericError.
1595 # -> { "execute": "block-commit",
1596 # "arguments": { "device": "virtio0",
1597 # "top": "/tmp/snap1.qcow2" } }
1598 # <- { "return": {} }
1601 { 'command': 'block-commit',
1602 'data': { '*job-id': 'str', 'device': 'str', '*base-node': 'str',
1603 '*base': 'str', '*top-node': 'str', '*top': 'str',
1604 '*backing-file': 'str', '*speed': 'int',
1605 '*filter-node-name': 'str',
1606 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1611 # Start a point-in-time copy of a block device to a new destination. The
1612 # status of ongoing drive-backup operations can be checked with
1613 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1614 # The operation can be stopped before it has completed using the
1615 # block-job-cancel command.
1617 # Returns: nothing on success
1618 # If @device is not a valid block device, GenericError
1624 # -> { "execute": "drive-backup",
1625 # "arguments": { "device": "drive0",
1627 # "target": "backup.img" } }
1628 # <- { "return": {} }
1631 { 'command': 'drive-backup', 'boxed': true,
1632 'data': 'DriveBackup' }
1637 # Start a point-in-time copy of a block device to a new destination. The
1638 # status of ongoing blockdev-backup operations can be checked with
1639 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1640 # The operation can be stopped before it has completed using the
1641 # block-job-cancel command.
1643 # Returns: nothing on success
1644 # If @device is not a valid block device, DeviceNotFound
1649 # -> { "execute": "blockdev-backup",
1650 # "arguments": { "device": "src-id",
1652 # "target": "tgt-id" } }
1653 # <- { "return": {} }
1656 { 'command': 'blockdev-backup', 'boxed': true,
1657 'data': 'BlockdevBackup' }
1661 # @query-named-block-nodes:
1663 # Get the named block driver list
1665 # Returns: the list of BlockDeviceInfo
1671 # -> { "execute": "query-named-block-nodes" }
1672 # <- { "return": [ { "ro":false,
1674 # "encrypted":false,
1675 # "file":"disks/test.qcow2",
1676 # "node-name": "my-node",
1677 # "backing_file_depth":1,
1684 # "bps_max": 8000000,
1691 # "write_threshold": 0,
1693 # "filename":"disks/test.qcow2",
1695 # "virtual-size":2048000,
1696 # "backing_file":"base.qcow2",
1697 # "full-backing-filename":"disks/base.qcow2",
1698 # "backing-filename-format":"qcow2",
1702 # "name": "snapshot1",
1703 # "vm-state-size": 0,
1704 # "date-sec": 10000200,
1706 # "vm-clock-sec": 206,
1707 # "vm-clock-nsec": 30
1711 # "filename":"disks/base.qcow2",
1713 # "virtual-size":2048000
1718 { 'command': 'query-named-block-nodes', 'returns': [ 'BlockDeviceInfo' ] }
1721 # @XDbgBlockGraphNodeType:
1723 # @block-backend: corresponds to BlockBackend
1725 # @block-job: corresonds to BlockJob
1727 # @block-driver: corresponds to BlockDriverState
1731 { 'enum': 'XDbgBlockGraphNodeType',
1732 'data': [ 'block-backend', 'block-job', 'block-driver' ] }
1735 # @XDbgBlockGraphNode:
1737 # @id: Block graph node identifier. This @id is generated only for
1738 # x-debug-query-block-graph and does not relate to any other identifiers in
1741 # @type: Type of graph node. Can be one of block-backend, block-job or
1742 # block-driver-state.
1744 # @name: Human readable name of the node. Corresponds to node-name for
1745 # block-driver-state nodes; is not guaranteed to be unique in the whole
1746 # graph (with block-jobs and block-backends).
1750 { 'struct': 'XDbgBlockGraphNode',
1751 'data': { 'id': 'uint64', 'type': 'XDbgBlockGraphNodeType', 'name': 'str' } }
1756 # Enum of base block permissions.
1758 # @consistent-read: A user that has the "permission" of consistent reads is
1759 # guaranteed that their view of the contents of the block
1760 # device is complete and self-consistent, representing the
1761 # contents of a disk at a specific point.
1762 # For most block devices (including their backing files) this
1763 # is true, but the property cannot be maintained in a few
1764 # situations like for intermediate nodes of a commit block
1767 # @write: This permission is required to change the visible disk contents.
1769 # @write-unchanged: This permission (which is weaker than BLK_PERM_WRITE) is
1770 # both enough and required for writes to the block node when
1771 # the caller promises that the visible disk content doesn't
1773 # As the BLK_PERM_WRITE permission is strictly stronger,
1774 # either is sufficient to perform an unchanging write.
1776 # @resize: This permission is required to change the size of a block node.
1778 # @graph-mod: This permission is required to change the node that this
1779 # BdrvChild points to.
1783 { 'enum': 'BlockPermission',
1784 'data': [ 'consistent-read', 'write', 'write-unchanged', 'resize',
1787 # @XDbgBlockGraphEdge:
1789 # Block Graph edge description for x-debug-query-block-graph.
1791 # @parent: parent id
1795 # @name: name of the relation (examples are 'file' and 'backing')
1797 # @perm: granted permissions for the parent operating on the child
1799 # @shared-perm: permissions that can still be granted to other users of the
1800 # child while it is still attached to this parent
1804 { 'struct': 'XDbgBlockGraphEdge',
1805 'data': { 'parent': 'uint64', 'child': 'uint64',
1806 'name': 'str', 'perm': [ 'BlockPermission' ],
1807 'shared-perm': [ 'BlockPermission' ] } }
1812 # Block Graph - list of nodes and list of edges.
1816 { 'struct': 'XDbgBlockGraph',
1817 'data': { 'nodes': ['XDbgBlockGraphNode'], 'edges': ['XDbgBlockGraphEdge'] } }
1820 # @x-debug-query-block-graph:
1822 # Get the block graph.
1826 { 'command': 'x-debug-query-block-graph', 'returns': 'XDbgBlockGraph' }
1831 # Start mirroring a block device's writes to a new destination. target
1832 # specifies the target of the new image. If the file exists, or if it
1833 # is a device, it will be used as the new destination for writes. If
1834 # it does not exist, a new file will be created. format specifies the
1835 # format of the mirror image, default is to probe if mode='existing',
1836 # else the format of the source.
1838 # Returns: nothing on success
1839 # If @device is not a valid block device, GenericError
1845 # -> { "execute": "drive-mirror",
1846 # "arguments": { "device": "ide-hd0",
1847 # "target": "/some/place/my-image",
1849 # "format": "qcow2" } }
1850 # <- { "return": {} }
1853 { 'command': 'drive-mirror', 'boxed': true,
1854 'data': 'DriveMirror' }
1859 # A set of parameters describing drive mirror setup.
1861 # @job-id: identifier for the newly-created block job. If
1862 # omitted, the device name will be used. (Since 2.7)
1864 # @device: the device name or node-name of a root node whose writes should be
1867 # @target: the target of the new image. If the file exists, or if it
1868 # is a device, the existing file/device will be used as the new
1869 # destination. If it does not exist, a new file will be created.
1871 # @format: the format of the new destination, default is to
1872 # probe if @mode is 'existing', else the format of the source
1874 # @node-name: the new block driver state node name in the graph
1877 # @replaces: with sync=full graph node name to be replaced by the new
1878 # image when a whole image copy is done. This can be used to repair
1879 # broken Quorum files. (Since 2.1)
1881 # @mode: whether and how QEMU should create a new image, default is
1884 # @speed: the maximum speed, in bytes per second
1886 # @sync: what parts of the disk image should be copied to the destination
1887 # (all the disk, only the sectors allocated in the topmost image, or
1890 # @granularity: granularity of the dirty bitmap, default is 64K
1891 # if the image format doesn't have clusters, 4K if the clusters
1892 # are smaller than that, else the cluster size. Must be a
1893 # power of 2 between 512 and 64M (since 1.4).
1895 # @buf-size: maximum amount of data in flight from source to
1896 # target (since 1.4).
1898 # @on-source-error: the action to take on an error on the source,
1899 # default 'report'. 'stop' and 'enospc' can only be used
1900 # if the block device supports io-status (see BlockInfo).
1902 # @on-target-error: the action to take on an error on the target,
1903 # default 'report' (no limitations, since this applies to
1904 # a different block device than @device).
1905 # @unmap: Whether to try to unmap target sectors where source has
1906 # only zero. If true, and target unallocated sectors will read as zero,
1907 # target image sectors will be unmapped; otherwise, zeroes will be
1908 # written. Both will result in identical contents.
1909 # Default is true. (Since 2.4)
1911 # @copy-mode: when to copy data to the destination; defaults to 'background'
1914 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1915 # finished its work, waiting for @block-job-finalize before
1916 # making any block graph changes.
1917 # When true, this job will automatically
1918 # perform its abort or commit actions.
1919 # Defaults to true. (Since 3.1)
1921 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1922 # has completely ceased all work, and awaits @block-job-dismiss.
1923 # When true, this job will automatically disappear from the query
1924 # list without user intervention.
1925 # Defaults to true. (Since 3.1)
1928 { 'struct': 'DriveMirror',
1929 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1930 '*format': 'str', '*node-name': 'str', '*replaces': 'str',
1931 'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
1932 '*speed': 'int', '*granularity': 'uint32',
1933 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1934 '*on-target-error': 'BlockdevOnError',
1935 '*unmap': 'bool', '*copy-mode': 'MirrorCopyMode',
1936 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1939 # @BlockDirtyBitmap:
1941 # @node: name of device/node which the bitmap is tracking
1943 # @name: name of the dirty bitmap
1947 { 'struct': 'BlockDirtyBitmap',
1948 'data': { 'node': 'str', 'name': 'str' } }
1951 # @BlockDirtyBitmapAdd:
1953 # @node: name of device/node which the bitmap is tracking
1955 # @name: name of the dirty bitmap
1957 # @granularity: the bitmap granularity, default is 64k for
1958 # block-dirty-bitmap-add
1960 # @persistent: the bitmap is persistent, i.e. it will be saved to the
1961 # corresponding block device image file on its close. For now only
1962 # Qcow2 disks support persistent bitmaps. Default is false for
1963 # block-dirty-bitmap-add. (Since: 2.10)
1965 # @autoload: ignored and deprecated since 2.12.
1966 # Currently, all dirty tracking bitmaps are loaded from Qcow2 on
1969 # @disabled: the bitmap is created in the disabled state, which means that
1970 # it will not track drive changes. The bitmap may be enabled with
1971 # block-dirty-bitmap-enable. Default is false. (Since: 4.0)
1975 { 'struct': 'BlockDirtyBitmapAdd',
1976 'data': { 'node': 'str', 'name': 'str', '*granularity': 'uint32',
1977 '*persistent': 'bool', '*autoload': 'bool', '*disabled': 'bool' } }
1980 # @BlockDirtyBitmapMerge:
1982 # @node: name of device/node which the bitmap is tracking
1984 # @target: name of the destination dirty bitmap
1986 # @bitmaps: name(s) of the source dirty bitmap(s)
1990 { 'struct': 'BlockDirtyBitmapMerge',
1991 'data': { 'node': 'str', 'target': 'str', 'bitmaps': ['str'] } }
1994 # @block-dirty-bitmap-add:
1996 # Create a dirty bitmap with a name on the node, and start tracking the writes.
1998 # Returns: nothing on success
1999 # If @node is not a valid block device or node, DeviceNotFound
2000 # If @name is already taken, GenericError with an explanation
2006 # -> { "execute": "block-dirty-bitmap-add",
2007 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2008 # <- { "return": {} }
2011 { 'command': 'block-dirty-bitmap-add',
2012 'data': 'BlockDirtyBitmapAdd' }
2015 # @block-dirty-bitmap-remove:
2017 # Stop write tracking and remove the dirty bitmap that was created
2018 # with block-dirty-bitmap-add. If the bitmap is persistent, remove it from its
2021 # Returns: nothing on success
2022 # If @node is not a valid block device or node, DeviceNotFound
2023 # If @name is not found, GenericError with an explanation
2024 # if @name is frozen by an operation, GenericError
2030 # -> { "execute": "block-dirty-bitmap-remove",
2031 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2032 # <- { "return": {} }
2035 { 'command': 'block-dirty-bitmap-remove',
2036 'data': 'BlockDirtyBitmap' }
2039 # @block-dirty-bitmap-clear:
2041 # Clear (reset) a dirty bitmap on the device, so that an incremental
2042 # backup from this point in time forward will only backup clusters
2043 # modified after this clear operation.
2045 # Returns: nothing on success
2046 # If @node is not a valid block device, DeviceNotFound
2047 # If @name is not found, GenericError with an explanation
2053 # -> { "execute": "block-dirty-bitmap-clear",
2054 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2055 # <- { "return": {} }
2058 { 'command': 'block-dirty-bitmap-clear',
2059 'data': 'BlockDirtyBitmap' }
2062 # @block-dirty-bitmap-enable:
2064 # Enables a dirty bitmap so that it will begin tracking disk changes.
2066 # Returns: nothing on success
2067 # If @node is not a valid block device, DeviceNotFound
2068 # If @name is not found, GenericError with an explanation
2074 # -> { "execute": "block-dirty-bitmap-enable",
2075 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2076 # <- { "return": {} }
2079 { 'command': 'block-dirty-bitmap-enable',
2080 'data': 'BlockDirtyBitmap' }
2083 # @block-dirty-bitmap-disable:
2085 # Disables a dirty bitmap so that it will stop tracking disk changes.
2087 # Returns: nothing on success
2088 # If @node is not a valid block device, DeviceNotFound
2089 # If @name is not found, GenericError with an explanation
2095 # -> { "execute": "block-dirty-bitmap-disable",
2096 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2097 # <- { "return": {} }
2100 { 'command': 'block-dirty-bitmap-disable',
2101 'data': 'BlockDirtyBitmap' }
2104 # @block-dirty-bitmap-merge:
2106 # Merge dirty bitmaps listed in @bitmaps to the @target dirty bitmap.
2107 # Dirty bitmaps in @bitmaps will be unchanged, except if it also appears
2108 # as the @target bitmap. Any bits already set in @target will still be
2109 # set after the merge, i.e., this operation does not clear the target.
2110 # On error, @target is unchanged.
2112 # The resulting bitmap will count as dirty any clusters that were dirty in any
2113 # of the source bitmaps. This can be used to achieve backup checkpoints, or in
2114 # simpler usages, to copy bitmaps.
2116 # Returns: nothing on success
2117 # If @node is not a valid block device, DeviceNotFound
2118 # If any bitmap in @bitmaps or @target is not found, GenericError
2119 # If any of the bitmaps have different sizes or granularities,
2126 # -> { "execute": "block-dirty-bitmap-merge",
2127 # "arguments": { "node": "drive0", "target": "bitmap0",
2128 # "bitmaps": ["bitmap1"] } }
2129 # <- { "return": {} }
2132 { 'command': 'block-dirty-bitmap-merge',
2133 'data': 'BlockDirtyBitmapMerge' }
2136 # @BlockDirtyBitmapSha256:
2138 # SHA256 hash of dirty bitmap data
2140 # @sha256: ASCII representation of SHA256 bitmap hash
2144 { 'struct': 'BlockDirtyBitmapSha256',
2145 'data': {'sha256': 'str'} }
2148 # @x-debug-block-dirty-bitmap-sha256:
2150 # Get bitmap SHA256.
2152 # Returns: BlockDirtyBitmapSha256 on success
2153 # If @node is not a valid block device, DeviceNotFound
2154 # If @name is not found or if hashing has failed, GenericError with an
2159 { 'command': 'x-debug-block-dirty-bitmap-sha256',
2160 'data': 'BlockDirtyBitmap', 'returns': 'BlockDirtyBitmapSha256' }
2165 # Start mirroring a block device's writes to a new destination.
2167 # @job-id: identifier for the newly-created block job. If
2168 # omitted, the device name will be used. (Since 2.7)
2170 # @device: The device name or node-name of a root node whose writes should be
2173 # @target: the id or node-name of the block device to mirror to. This mustn't be
2174 # attached to guest.
2176 # @replaces: with sync=full graph node name to be replaced by the new
2177 # image when a whole image copy is done. This can be used to repair
2178 # broken Quorum files.
2180 # @speed: the maximum speed, in bytes per second
2182 # @sync: what parts of the disk image should be copied to the destination
2183 # (all the disk, only the sectors allocated in the topmost image, or
2186 # @granularity: granularity of the dirty bitmap, default is 64K
2187 # if the image format doesn't have clusters, 4K if the clusters
2188 # are smaller than that, else the cluster size. Must be a
2189 # power of 2 between 512 and 64M
2191 # @buf-size: maximum amount of data in flight from source to
2194 # @on-source-error: the action to take on an error on the source,
2195 # default 'report'. 'stop' and 'enospc' can only be used
2196 # if the block device supports io-status (see BlockInfo).
2198 # @on-target-error: the action to take on an error on the target,
2199 # default 'report' (no limitations, since this applies to
2200 # a different block device than @device).
2202 # @filter-node-name: the node name that should be assigned to the
2203 # filter driver that the mirror job inserts into the graph
2204 # above @device. If this option is not given, a node name is
2205 # autogenerated. (Since: 2.9)
2207 # @copy-mode: when to copy data to the destination; defaults to 'background'
2210 # @auto-finalize: When false, this job will wait in a PENDING state after it has
2211 # finished its work, waiting for @block-job-finalize before
2212 # making any block graph changes.
2213 # When true, this job will automatically
2214 # perform its abort or commit actions.
2215 # Defaults to true. (Since 3.1)
2217 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
2218 # has completely ceased all work, and awaits @block-job-dismiss.
2219 # When true, this job will automatically disappear from the query
2220 # list without user intervention.
2221 # Defaults to true. (Since 3.1)
2222 # Returns: nothing on success.
2228 # -> { "execute": "blockdev-mirror",
2229 # "arguments": { "device": "ide-hd0",
2230 # "target": "target0",
2231 # "sync": "full" } }
2232 # <- { "return": {} }
2235 { 'command': 'blockdev-mirror',
2236 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
2238 'sync': 'MirrorSyncMode',
2239 '*speed': 'int', '*granularity': 'uint32',
2240 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
2241 '*on-target-error': 'BlockdevOnError',
2242 '*filter-node-name': 'str',
2243 '*copy-mode': 'MirrorCopyMode',
2244 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
2247 # @block_set_io_throttle:
2249 # Change I/O throttle limits for a block drive.
2251 # Since QEMU 2.4, each device with I/O limits is member of a throttle
2254 # If two or more devices are members of the same group, the limits
2255 # will apply to the combined I/O of the whole group in a round-robin
2256 # fashion. Therefore, setting new I/O limits to a device will affect
2259 # The name of the group can be specified using the 'group' parameter.
2260 # If the parameter is unset, it is assumed to be the current group of
2261 # that device. If it's not in any group yet, the name of the device
2262 # will be used as the name for its group.
2264 # The 'group' parameter can also be used to move a device to a
2265 # different group. In this case the limits specified in the parameters
2266 # will be applied to the new group only.
2268 # I/O limits can be disabled by setting all of them to 0. In this case
2269 # the device will be removed from its group and the rest of its
2270 # members will not be affected. The 'group' parameter is ignored.
2272 # Returns: Nothing on success
2273 # If @device is not a valid block device, DeviceNotFound
2279 # -> { "execute": "block_set_io_throttle",
2280 # "arguments": { "id": "virtio-blk-pci0/virtio-backend",
2293 # "bps_max_length": 0,
2294 # "iops_size": 0 } }
2295 # <- { "return": {} }
2297 # -> { "execute": "block_set_io_throttle",
2298 # "arguments": { "id": "ide0-1-0",
2305 # "bps_max": 8000000,
2311 # "bps_max_length": 60,
2312 # "iops_size": 0 } }
2313 # <- { "return": {} }
2315 { 'command': 'block_set_io_throttle', 'boxed': true,
2316 'data': 'BlockIOThrottle' }
2321 # A set of parameters describing block throttling.
2323 # @device: Block device name (deprecated, use @id instead)
2325 # @id: The name or QOM path of the guest device (since: 2.8)
2327 # @bps: total throughput limit in bytes per second
2329 # @bps_rd: read throughput limit in bytes per second
2331 # @bps_wr: write throughput limit in bytes per second
2333 # @iops: total I/O operations per second
2335 # @iops_rd: read I/O operations per second
2337 # @iops_wr: write I/O operations per second
2339 # @bps_max: total throughput limit during bursts,
2340 # in bytes (Since 1.7)
2342 # @bps_rd_max: read throughput limit during bursts,
2343 # in bytes (Since 1.7)
2345 # @bps_wr_max: write throughput limit during bursts,
2346 # in bytes (Since 1.7)
2348 # @iops_max: total I/O operations per second during bursts,
2349 # in bytes (Since 1.7)
2351 # @iops_rd_max: read I/O operations per second during bursts,
2352 # in bytes (Since 1.7)
2354 # @iops_wr_max: write I/O operations per second during bursts,
2355 # in bytes (Since 1.7)
2357 # @bps_max_length: maximum length of the @bps_max burst
2358 # period, in seconds. It must only
2359 # be set if @bps_max is set as well.
2360 # Defaults to 1. (Since 2.6)
2362 # @bps_rd_max_length: maximum length of the @bps_rd_max
2363 # burst period, in seconds. It must only
2364 # be set if @bps_rd_max is set as well.
2365 # Defaults to 1. (Since 2.6)
2367 # @bps_wr_max_length: maximum length of the @bps_wr_max
2368 # burst period, in seconds. It must only
2369 # be set if @bps_wr_max is set as well.
2370 # Defaults to 1. (Since 2.6)
2372 # @iops_max_length: maximum length of the @iops burst
2373 # period, in seconds. It must only
2374 # be set if @iops_max is set as well.
2375 # Defaults to 1. (Since 2.6)
2377 # @iops_rd_max_length: maximum length of the @iops_rd_max
2378 # burst period, in seconds. It must only
2379 # be set if @iops_rd_max is set as well.
2380 # Defaults to 1. (Since 2.6)
2382 # @iops_wr_max_length: maximum length of the @iops_wr_max
2383 # burst period, in seconds. It must only
2384 # be set if @iops_wr_max is set as well.
2385 # Defaults to 1. (Since 2.6)
2387 # @iops_size: an I/O size in bytes (Since 1.7)
2389 # @group: throttle group name (Since 2.4)
2393 { 'struct': 'BlockIOThrottle',
2394 'data': { '*device': 'str', '*id': 'str', 'bps': 'int', 'bps_rd': 'int',
2395 'bps_wr': 'int', 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
2396 '*bps_max': 'int', '*bps_rd_max': 'int',
2397 '*bps_wr_max': 'int', '*iops_max': 'int',
2398 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
2399 '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
2400 '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
2401 '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
2402 '*iops_size': 'int', '*group': 'str' } }
2407 # Limit parameters for throttling.
2408 # Since some limit combinations are illegal, limits should always be set in one
2409 # transaction. All fields are optional. When setting limits, if a field is
2410 # missing the current value is not changed.
2412 # @iops-total: limit total I/O operations per second
2413 # @iops-total-max: I/O operations burst
2414 # @iops-total-max-length: length of the iops-total-max burst period, in seconds
2415 # It must only be set if @iops-total-max is set as well.
2416 # @iops-read: limit read operations per second
2417 # @iops-read-max: I/O operations read burst
2418 # @iops-read-max-length: length of the iops-read-max burst period, in seconds
2419 # It must only be set if @iops-read-max is set as well.
2420 # @iops-write: limit write operations per second
2421 # @iops-write-max: I/O operations write burst
2422 # @iops-write-max-length: length of the iops-write-max burst period, in seconds
2423 # It must only be set if @iops-write-max is set as well.
2424 # @bps-total: limit total bytes per second
2425 # @bps-total-max: total bytes burst
2426 # @bps-total-max-length: length of the bps-total-max burst period, in seconds.
2427 # It must only be set if @bps-total-max is set as well.
2428 # @bps-read: limit read bytes per second
2429 # @bps-read-max: total bytes read burst
2430 # @bps-read-max-length: length of the bps-read-max burst period, in seconds
2431 # It must only be set if @bps-read-max is set as well.
2432 # @bps-write: limit write bytes per second
2433 # @bps-write-max: total bytes write burst
2434 # @bps-write-max-length: length of the bps-write-max burst period, in seconds
2435 # It must only be set if @bps-write-max is set as well.
2436 # @iops-size: when limiting by iops max size of an I/O in bytes
2440 { 'struct': 'ThrottleLimits',
2441 'data': { '*iops-total' : 'int', '*iops-total-max' : 'int',
2442 '*iops-total-max-length' : 'int', '*iops-read' : 'int',
2443 '*iops-read-max' : 'int', '*iops-read-max-length' : 'int',
2444 '*iops-write' : 'int', '*iops-write-max' : 'int',
2445 '*iops-write-max-length' : 'int', '*bps-total' : 'int',
2446 '*bps-total-max' : 'int', '*bps-total-max-length' : 'int',
2447 '*bps-read' : 'int', '*bps-read-max' : 'int',
2448 '*bps-read-max-length' : 'int', '*bps-write' : 'int',
2449 '*bps-write-max' : 'int', '*bps-write-max-length' : 'int',
2450 '*iops-size' : 'int' } }
2455 # Copy data from a backing file into a block device.
2457 # The block streaming operation is performed in the background until the entire
2458 # backing file has been copied. This command returns immediately once streaming
2459 # has started. The status of ongoing block streaming operations can be checked
2460 # with query-block-jobs. The operation can be stopped before it has completed
2461 # using the block-job-cancel command.
2463 # The node that receives the data is called the top image, can be located in
2464 # any part of the chain (but always above the base image; see below) and can be
2465 # specified using its device or node name. Earlier qemu versions only allowed
2466 # 'device' to name the top level node; presence of the 'base-node' parameter
2467 # during introspection can be used as a witness of the enhanced semantics
2470 # If a base file is specified then sectors are not copied from that base file and
2471 # its backing chain. When streaming completes the image file will have the base
2472 # file as its backing file. This can be used to stream a subset of the backing
2473 # file chain instead of flattening the entire image.
2475 # On successful completion the image file is updated to drop the backing file
2476 # and the BLOCK_JOB_COMPLETED event is emitted.
2478 # @job-id: identifier for the newly-created block job. If
2479 # omitted, the device name will be used. (Since 2.7)
2481 # @device: the device or node name of the top image
2483 # @base: the common backing file name.
2484 # It cannot be set if @base-node is also set.
2486 # @base-node: the node name of the backing file.
2487 # It cannot be set if @base is also set. (Since 2.8)
2489 # @backing-file: The backing file string to write into the top
2490 # image. This filename is not validated.
2492 # If a pathname string is such that it cannot be
2493 # resolved by QEMU, that means that subsequent QMP or
2494 # HMP commands must use node-names for the image in
2495 # question, as filename lookup methods will fail.
2497 # If not specified, QEMU will automatically determine
2498 # the backing file string to use, or error out if there
2499 # is no obvious choice. Care should be taken when
2500 # specifying the string, to specify a valid filename or
2504 # @speed: the maximum speed, in bytes per second
2506 # @on-error: the action to take on an error (default report).
2507 # 'stop' and 'enospc' can only be used if the block device
2508 # supports io-status (see BlockInfo). Since 1.3.
2510 # @auto-finalize: When false, this job will wait in a PENDING state after it has
2511 # finished its work, waiting for @block-job-finalize before
2512 # making any block graph changes.
2513 # When true, this job will automatically
2514 # perform its abort or commit actions.
2515 # Defaults to true. (Since 3.1)
2517 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
2518 # has completely ceased all work, and awaits @block-job-dismiss.
2519 # When true, this job will automatically disappear from the query
2520 # list without user intervention.
2521 # Defaults to true. (Since 3.1)
2523 # Returns: Nothing on success. If @device does not exist, DeviceNotFound.
2529 # -> { "execute": "block-stream",
2530 # "arguments": { "device": "virtio0",
2531 # "base": "/tmp/master.qcow2" } }
2532 # <- { "return": {} }
2535 { 'command': 'block-stream',
2536 'data': { '*job-id': 'str', 'device': 'str', '*base': 'str',
2537 '*base-node': 'str', '*backing-file': 'str', '*speed': 'int',
2538 '*on-error': 'BlockdevOnError',
2539 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
2542 # @block-job-set-speed:
2544 # Set maximum speed for a background block operation.
2546 # This command can only be issued when there is an active block job.
2548 # Throttling can be disabled by setting the speed to 0.
2550 # @device: The job identifier. This used to be a device name (hence
2551 # the name of the parameter), but since QEMU 2.7 it can have
2554 # @speed: the maximum speed, in bytes per second, or 0 for unlimited.
2557 # Returns: Nothing on success
2558 # If no background operation is active on this device, DeviceNotActive
2562 { 'command': 'block-job-set-speed',
2563 'data': { 'device': 'str', 'speed': 'int' } }
2566 # @block-job-cancel:
2568 # Stop an active background block operation.
2570 # This command returns immediately after marking the active background block
2571 # operation for cancellation. It is an error to call this command if no
2572 # operation is in progress.
2574 # The operation will cancel as soon as possible and then emit the
2575 # BLOCK_JOB_CANCELLED event. Before that happens the job is still visible when
2576 # enumerated using query-block-jobs.
2578 # Note that if you issue 'block-job-cancel' after 'drive-mirror' has indicated
2579 # (via the event BLOCK_JOB_READY) that the source and destination are
2580 # synchronized, then the event triggered by this command changes to
2581 # BLOCK_JOB_COMPLETED, to indicate that the mirroring has ended and the
2582 # destination now has a point-in-time copy tied to the time of the cancellation.
2584 # For streaming, the image file retains its backing file unless the streaming
2585 # operation happens to complete just as it is being cancelled. A new streaming
2586 # operation can be started at a later time to finish copying all data from the
2589 # @device: The job identifier. This used to be a device name (hence
2590 # the name of the parameter), but since QEMU 2.7 it can have
2593 # @force: If true, and the job has already emitted the event BLOCK_JOB_READY,
2594 # abandon the job immediately (even if it is paused) instead of waiting
2595 # for the destination to complete its final synchronization (since 1.3)
2597 # Returns: Nothing on success
2598 # If no background operation is active on this device, DeviceNotActive
2602 { 'command': 'block-job-cancel', 'data': { 'device': 'str', '*force': 'bool' } }
2607 # Pause an active background block operation.
2609 # This command returns immediately after marking the active background block
2610 # operation for pausing. It is an error to call this command if no
2611 # operation is in progress or if the job is already paused.
2613 # The operation will pause as soon as possible. No event is emitted when
2614 # the operation is actually paused. Cancelling a paused job automatically
2617 # @device: The job identifier. This used to be a device name (hence
2618 # the name of the parameter), but since QEMU 2.7 it can have
2621 # Returns: Nothing on success
2622 # If no background operation is active on this device, DeviceNotActive
2626 { 'command': 'block-job-pause', 'data': { 'device': 'str' } }
2629 # @block-job-resume:
2631 # Resume an active background block operation.
2633 # This command returns immediately after resuming a paused background block
2634 # operation. It is an error to call this command if no operation is in
2635 # progress or if the job is not paused.
2637 # This command also clears the error status of the job.
2639 # @device: The job identifier. This used to be a device name (hence
2640 # the name of the parameter), but since QEMU 2.7 it can have
2643 # Returns: Nothing on success
2644 # If no background operation is active on this device, DeviceNotActive
2648 { 'command': 'block-job-resume', 'data': { 'device': 'str' } }
2651 # @block-job-complete:
2653 # Manually trigger completion of an active background block operation. This
2654 # is supported for drive mirroring, where it also switches the device to
2655 # write to the target path only. The ability to complete is signaled with
2656 # a BLOCK_JOB_READY event.
2658 # This command completes an active background block operation synchronously.
2659 # The ordering of this command's return with the BLOCK_JOB_COMPLETED event
2660 # is not defined. Note that if an I/O error occurs during the processing of
2661 # this command: 1) the command itself will fail; 2) the error will be processed
2662 # according to the rerror/werror arguments that were specified when starting
2665 # A cancelled or paused job cannot be completed.
2667 # @device: The job identifier. This used to be a device name (hence
2668 # the name of the parameter), but since QEMU 2.7 it can have
2671 # Returns: Nothing on success
2672 # If no background operation is active on this device, DeviceNotActive
2676 { 'command': 'block-job-complete', 'data': { 'device': 'str' } }
2679 # @block-job-dismiss:
2681 # For jobs that have already concluded, remove them from the block-job-query
2682 # list. This command only needs to be run for jobs which were started with
2683 # QEMU 2.12+ job lifetime management semantics.
2685 # This command will refuse to operate on any job that has not yet reached
2686 # its terminal state, JOB_STATUS_CONCLUDED. For jobs that make use of the
2687 # BLOCK_JOB_READY event, block-job-cancel or block-job-complete will still need
2688 # to be used as appropriate.
2690 # @id: The job identifier.
2692 # Returns: Nothing on success
2696 { 'command': 'block-job-dismiss', 'data': { 'id': 'str' } }
2699 # @block-job-finalize:
2701 # Once a job that has manual=true reaches the pending state, it can be
2702 # instructed to finalize any graph changes and do any necessary cleanup
2704 # For jobs in a transaction, instructing one job to finalize will force
2705 # ALL jobs in the transaction to finalize, so it is only necessary to instruct
2706 # a single member job to finalize.
2708 # @id: The job identifier.
2710 # Returns: Nothing on success
2714 { 'command': 'block-job-finalize', 'data': { 'id': 'str' } }
2717 # @BlockdevDiscardOptions:
2719 # Determines how to handle discard requests.
2721 # @ignore: Ignore the request
2722 # @unmap: Forward as an unmap request
2726 { 'enum': 'BlockdevDiscardOptions',
2727 'data': [ 'ignore', 'unmap' ] }
2730 # @BlockdevDetectZeroesOptions:
2732 # Describes the operation mode for the automatic conversion of plain
2733 # zero writes by the OS to driver specific optimized zero write commands.
2735 # @off: Disabled (default)
2737 # @unmap: Enabled and even try to unmap blocks if possible. This requires
2738 # also that @BlockdevDiscardOptions is set to unmap for this device.
2742 { 'enum': 'BlockdevDetectZeroesOptions',
2743 'data': [ 'off', 'on', 'unmap' ] }
2746 # @BlockdevAioOptions:
2748 # Selects the AIO backend to handle I/O requests
2750 # @threads: Use qemu's thread pool
2751 # @native: Use native AIO backend (only Linux and Windows)
2755 { 'enum': 'BlockdevAioOptions',
2756 'data': [ 'threads', 'native' ] }
2759 # @BlockdevCacheOptions:
2761 # Includes cache-related options for block devices
2763 # @direct: enables use of O_DIRECT (bypass the host page cache;
2765 # @no-flush: ignore any flush requests for the device (default:
2770 { 'struct': 'BlockdevCacheOptions',
2771 'data': { '*direct': 'bool',
2772 '*no-flush': 'bool' } }
2777 # Drivers that are supported in block device operations.
2780 # @throttle: Since 2.11
2782 # @copy-on-read: Since 3.0
2783 # @blklogwrites: Since 3.0
2787 { 'enum': 'BlockdevDriver',
2788 'data': [ 'blkdebug', 'blklogwrites', 'blkverify', 'bochs', 'cloop',
2789 'copy-on-read', 'dmg', 'file', 'ftp', 'ftps', 'gluster',
2790 'host_cdrom', 'host_device', 'http', 'https', 'iscsi', 'luks',
2791 'nbd', 'nfs', 'null-aio', 'null-co', 'nvme', 'parallels', 'qcow',
2792 'qcow2', 'qed', 'quorum', 'raw', 'rbd',
2793 { 'name': 'replication', 'if': 'defined(CONFIG_REPLICATION)' },
2795 'ssh', 'throttle', 'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat', 'vxhs' ] }
2798 # @BlockdevOptionsFile:
2800 # Driver specific block device options for the file backend.
2802 # @filename: path to the image file
2803 # @pr-manager: the id for the object that will handle persistent reservations
2804 # for this device (default: none, forward the commands via SG_IO;
2806 # @aio: AIO backend (default: threads) (since: 2.8)
2807 # @locking: whether to enable file locking. If set to 'auto', only enable
2808 # when Open File Descriptor (OFD) locking API is available
2809 # (default: auto, since 2.10)
2810 # @x-check-cache-dropped: whether to check that page cache was dropped on live
2811 # migration. May cause noticeable delays if the image
2812 # file is large, do not use in production.
2813 # (default: off) (since: 3.0)
2817 { 'struct': 'BlockdevOptionsFile',
2818 'data': { 'filename': 'str',
2819 '*pr-manager': 'str',
2820 '*locking': 'OnOffAuto',
2821 '*aio': 'BlockdevAioOptions',
2822 '*x-check-cache-dropped': 'bool' } }
2825 # @BlockdevOptionsNull:
2827 # Driver specific block device options for the null backend.
2829 # @size: size of the device in bytes.
2830 # @latency-ns: emulated latency (in nanoseconds) in processing
2831 # requests. Default to zero which completes requests immediately.
2836 { 'struct': 'BlockdevOptionsNull',
2837 'data': { '*size': 'int', '*latency-ns': 'uint64' } }
2840 # @BlockdevOptionsNVMe:
2842 # Driver specific block device options for the NVMe backend.
2844 # @device: controller address of the NVMe device.
2845 # @namespace: namespace number of the device, starting from 1.
2849 { 'struct': 'BlockdevOptionsNVMe',
2850 'data': { 'device': 'str', 'namespace': 'int' } }
2853 # @BlockdevOptionsVVFAT:
2855 # Driver specific block device options for the vvfat protocol.
2857 # @dir: directory to be exported as FAT image
2858 # @fat-type: FAT type: 12, 16 or 32
2859 # @floppy: whether to export a floppy image (true) or
2860 # partitioned hard disk (false; default)
2861 # @label: set the volume label, limited to 11 bytes. FAT16 and
2862 # FAT32 traditionally have some restrictions on labels, which are
2863 # ignored by most operating systems. Defaults to "QEMU VVFAT".
2865 # @rw: whether to allow write operations (default: false)
2869 { 'struct': 'BlockdevOptionsVVFAT',
2870 'data': { 'dir': 'str', '*fat-type': 'int', '*floppy': 'bool',
2871 '*label': 'str', '*rw': 'bool' } }
2874 # @BlockdevOptionsGenericFormat:
2876 # Driver specific block device options for image format that have no option
2877 # besides their data source.
2879 # @file: reference to or definition of the data source block device
2883 { 'struct': 'BlockdevOptionsGenericFormat',
2884 'data': { 'file': 'BlockdevRef' } }
2887 # @BlockdevOptionsLUKS:
2889 # Driver specific block device options for LUKS.
2891 # @key-secret: the ID of a QCryptoSecret object providing
2892 # the decryption key (since 2.6). Mandatory except when
2893 # doing a metadata-only probe of the image.
2897 { 'struct': 'BlockdevOptionsLUKS',
2898 'base': 'BlockdevOptionsGenericFormat',
2899 'data': { '*key-secret': 'str' } }
2903 # @BlockdevOptionsGenericCOWFormat:
2905 # Driver specific block device options for image format that have no option
2906 # besides their data source and an optional backing file.
2908 # @backing: reference to or definition of the backing file block
2909 # device, null disables the backing file entirely.
2910 # Defaults to the backing file stored the image file.
2914 { 'struct': 'BlockdevOptionsGenericCOWFormat',
2915 'base': 'BlockdevOptionsGenericFormat',
2916 'data': { '*backing': 'BlockdevRefOrNull' } }
2919 # @Qcow2OverlapCheckMode:
2921 # General overlap check modes.
2923 # @none: Do not perform any checks
2925 # @constant: Perform only checks which can be done in constant time and
2926 # without reading anything from disk
2928 # @cached: Perform only checks which can be done without reading anything
2931 # @all: Perform all available overlap checks
2935 { 'enum': 'Qcow2OverlapCheckMode',
2936 'data': [ 'none', 'constant', 'cached', 'all' ] }
2939 # @Qcow2OverlapCheckFlags:
2941 # Structure of flags for each metadata structure. Setting a field to 'true'
2942 # makes qemu guard that structure against unintended overwriting. The default
2943 # value is chosen according to the template given.
2945 # @template: Specifies a template mode which can be adjusted using the other
2946 # flags, defaults to 'cached'
2948 # @bitmap-directory: since 3.0
2952 { 'struct': 'Qcow2OverlapCheckFlags',
2953 'data': { '*template': 'Qcow2OverlapCheckMode',
2954 '*main-header': 'bool',
2955 '*active-l1': 'bool',
2956 '*active-l2': 'bool',
2957 '*refcount-table': 'bool',
2958 '*refcount-block': 'bool',
2959 '*snapshot-table': 'bool',
2960 '*inactive-l1': 'bool',
2961 '*inactive-l2': 'bool',
2962 '*bitmap-directory': 'bool' } }
2965 # @Qcow2OverlapChecks:
2967 # Specifies which metadata structures should be guarded against unintended
2970 # @flags: set of flags for separate specification of each metadata structure
2973 # @mode: named mode which chooses a specific set of flags
2977 { 'alternate': 'Qcow2OverlapChecks',
2978 'data': { 'flags': 'Qcow2OverlapCheckFlags',
2979 'mode': 'Qcow2OverlapCheckMode' } }
2982 # @BlockdevQcowEncryptionFormat:
2984 # @aes: AES-CBC with plain64 initialization vectors
2988 { 'enum': 'BlockdevQcowEncryptionFormat',
2992 # @BlockdevQcowEncryption:
2996 { 'union': 'BlockdevQcowEncryption',
2997 'base': { 'format': 'BlockdevQcowEncryptionFormat' },
2998 'discriminator': 'format',
2999 'data': { 'aes': 'QCryptoBlockOptionsQCow' } }
3002 # @BlockdevOptionsQcow:
3004 # Driver specific block device options for qcow.
3006 # @encrypt: Image decryption options. Mandatory for
3007 # encrypted images, except when doing a metadata-only
3008 # probe of the image.
3012 { 'struct': 'BlockdevOptionsQcow',
3013 'base': 'BlockdevOptionsGenericCOWFormat',
3014 'data': { '*encrypt': 'BlockdevQcowEncryption' } }
3019 # @BlockdevQcow2EncryptionFormat:
3020 # @aes: AES-CBC with plain64 initialization vectors
3024 { 'enum': 'BlockdevQcow2EncryptionFormat',
3025 'data': [ 'aes', 'luks' ] }
3028 # @BlockdevQcow2Encryption:
3032 { 'union': 'BlockdevQcow2Encryption',
3033 'base': { 'format': 'BlockdevQcow2EncryptionFormat' },
3034 'discriminator': 'format',
3035 'data': { 'aes': 'QCryptoBlockOptionsQCow',
3036 'luks': 'QCryptoBlockOptionsLUKS'} }
3039 # @BlockdevOptionsQcow2:
3041 # Driver specific block device options for qcow2.
3043 # @lazy-refcounts: whether to enable the lazy refcounts
3044 # feature (default is taken from the image file)
3046 # @pass-discard-request: whether discard requests to the qcow2
3047 # device should be forwarded to the data source
3049 # @pass-discard-snapshot: whether discard requests for the data source
3050 # should be issued when a snapshot operation (e.g.
3051 # deleting a snapshot) frees clusters in the qcow2 file
3053 # @pass-discard-other: whether discard requests for the data source
3054 # should be issued on other occasions where a cluster
3057 # @overlap-check: which overlap checks to perform for writes
3058 # to the image, defaults to 'cached' (since 2.2)
3060 # @cache-size: the maximum total size of the L2 table and
3061 # refcount block caches in bytes (since 2.2)
3063 # @l2-cache-size: the maximum size of the L2 table cache in
3066 # @l2-cache-entry-size: the size of each entry in the L2 cache in
3067 # bytes. It must be a power of two between 512
3068 # and the cluster size. The default value is
3069 # the cluster size (since 2.12)
3071 # @refcount-cache-size: the maximum size of the refcount block cache
3072 # in bytes (since 2.2)
3074 # @cache-clean-interval: clean unused entries in the L2 and refcount
3075 # caches. The interval is in seconds. The default value
3076 # is 600 on supporting platforms, and 0 on other
3077 # platforms. 0 disables this feature. (since 2.5)
3079 # @encrypt: Image decryption options. Mandatory for
3080 # encrypted images, except when doing a metadata-only
3081 # probe of the image. (since 2.10)
3083 # @data-file: reference to or definition of the external data file.
3084 # This may only be specified for images that require an
3085 # external data file. (since 4.0)
3089 { 'struct': 'BlockdevOptionsQcow2',
3090 'base': 'BlockdevOptionsGenericCOWFormat',
3091 'data': { '*lazy-refcounts': 'bool',
3092 '*pass-discard-request': 'bool',
3093 '*pass-discard-snapshot': 'bool',
3094 '*pass-discard-other': 'bool',
3095 '*overlap-check': 'Qcow2OverlapChecks',
3096 '*cache-size': 'int',
3097 '*l2-cache-size': 'int',
3098 '*l2-cache-entry-size': 'int',
3099 '*refcount-cache-size': 'int',
3100 '*cache-clean-interval': 'int',
3101 '*encrypt': 'BlockdevQcow2Encryption',
3102 '*data-file': 'BlockdevRef' } }
3105 # @SshHostKeyCheckMode:
3107 # @none Don't check the host key at all
3108 # @hash Compare the host key with a given hash
3109 # @known_hosts Check the host key against the known_hosts file
3113 { 'enum': 'SshHostKeyCheckMode',
3114 'data': [ 'none', 'hash', 'known_hosts' ] }
3117 # @SshHostKeyCheckHashType:
3119 # @md5 The given hash is an md5 hash
3120 # @sha1 The given hash is an sha1 hash
3124 { 'enum': 'SshHostKeyCheckHashType',
3125 'data': [ 'md5', 'sha1' ] }
3130 # @type The hash algorithm used for the hash
3131 # @hash The expected hash value
3135 { 'struct': 'SshHostKeyHash',
3136 'data': { 'type': 'SshHostKeyCheckHashType',
3144 { 'union': 'SshHostKeyCheck',
3145 'base': { 'mode': 'SshHostKeyCheckMode' },
3146 'discriminator': 'mode',
3147 'data': { 'hash': 'SshHostKeyHash' } }
3150 # @BlockdevOptionsSsh:
3152 # @server: host address
3154 # @path: path to the image on the host
3156 # @user: user as which to connect, defaults to current
3159 # @host-key-check: Defines how and what to check the host key against
3160 # (default: known_hosts)
3164 { 'struct': 'BlockdevOptionsSsh',
3165 'data': { 'server': 'InetSocketAddress',
3168 '*host-key-check': 'SshHostKeyCheck' } }
3174 # Trigger events supported by blkdebug.
3176 # @l1_shrink_write_table: write zeros to the l1 table to shrink image.
3179 # @l1_shrink_free_l2_clusters: discard the l2 tables. (since 2.11)
3181 # @cor_write: a write due to copy-on-read (since 2.11)
3185 { 'enum': 'BlkdebugEvent', 'prefix': 'BLKDBG',
3186 'data': [ 'l1_update', 'l1_grow_alloc_table', 'l1_grow_write_table',
3187 'l1_grow_activate_table', 'l2_load', 'l2_update',
3188 'l2_update_compressed', 'l2_alloc_cow_read', 'l2_alloc_write',
3189 'read_aio', 'read_backing_aio', 'read_compressed', 'write_aio',
3190 'write_compressed', 'vmstate_load', 'vmstate_save', 'cow_read',
3191 'cow_write', 'reftable_load', 'reftable_grow', 'reftable_update',
3192 'refblock_load', 'refblock_update', 'refblock_update_part',
3193 'refblock_alloc', 'refblock_alloc_hookup', 'refblock_alloc_write',
3194 'refblock_alloc_write_blocks', 'refblock_alloc_write_table',
3195 'refblock_alloc_switch_table', 'cluster_alloc',
3196 'cluster_alloc_bytes', 'cluster_free', 'flush_to_os',
3197 'flush_to_disk', 'pwritev_rmw_head', 'pwritev_rmw_after_head',
3198 'pwritev_rmw_tail', 'pwritev_rmw_after_tail', 'pwritev',
3199 'pwritev_zero', 'pwritev_done', 'empty_image_prepare',
3200 'l1_shrink_write_table', 'l1_shrink_free_l2_clusters',
3204 # @BlkdebugInjectErrorOptions:
3206 # Describes a single error injection for blkdebug.
3208 # @event: trigger event
3210 # @state: the state identifier blkdebug needs to be in to
3211 # actually trigger the event; defaults to "any"
3213 # @errno: error identifier (errno) to be returned; defaults to
3216 # @sector: specifies the sector index which has to be affected
3217 # in order to actually trigger the event; defaults to "any
3220 # @once: disables further events after this one has been
3221 # triggered; defaults to false
3223 # @immediately: fail immediately; defaults to false
3227 { 'struct': 'BlkdebugInjectErrorOptions',
3228 'data': { 'event': 'BlkdebugEvent',
3233 '*immediately': 'bool' } }
3236 # @BlkdebugSetStateOptions:
3238 # Describes a single state-change event for blkdebug.
3240 # @event: trigger event
3242 # @state: the current state identifier blkdebug needs to be in;
3245 # @new_state: the state identifier blkdebug is supposed to assume if
3246 # this event is triggered
3250 { 'struct': 'BlkdebugSetStateOptions',
3251 'data': { 'event': 'BlkdebugEvent',
3253 'new_state': 'int' } }
3256 # @BlockdevOptionsBlkdebug:
3258 # Driver specific block device options for blkdebug.
3260 # @image: underlying raw block device (or image file)
3262 # @config: filename of the configuration file
3264 # @align: required alignment for requests in bytes, must be
3265 # positive power of 2, or 0 for default
3267 # @max-transfer: maximum size for I/O transfers in bytes, must be
3268 # positive multiple of @align and of the underlying
3269 # file's request alignment (but need not be a power of
3270 # 2), or 0 for default (since 2.10)
3272 # @opt-write-zero: preferred alignment for write zero requests in bytes,
3273 # must be positive multiple of @align and of the
3274 # underlying file's request alignment (but need not be a
3275 # power of 2), or 0 for default (since 2.10)
3277 # @max-write-zero: maximum size for write zero requests in bytes, must be
3278 # positive multiple of @align, of @opt-write-zero, and of
3279 # the underlying file's request alignment (but need not
3280 # be a power of 2), or 0 for default (since 2.10)
3282 # @opt-discard: preferred alignment for discard requests in bytes, must
3283 # be positive multiple of @align and of the underlying
3284 # file's request alignment (but need not be a power of
3285 # 2), or 0 for default (since 2.10)
3287 # @max-discard: maximum size for discard requests in bytes, must be
3288 # positive multiple of @align, of @opt-discard, and of
3289 # the underlying file's request alignment (but need not
3290 # be a power of 2), or 0 for default (since 2.10)
3292 # @inject-error: array of error injection descriptions
3294 # @set-state: array of state-change descriptions
3298 { 'struct': 'BlockdevOptionsBlkdebug',
3299 'data': { 'image': 'BlockdevRef',
3301 '*align': 'int', '*max-transfer': 'int32',
3302 '*opt-write-zero': 'int32', '*max-write-zero': 'int32',
3303 '*opt-discard': 'int32', '*max-discard': 'int32',
3304 '*inject-error': ['BlkdebugInjectErrorOptions'],
3305 '*set-state': ['BlkdebugSetStateOptions'] } }
3308 # @BlockdevOptionsBlklogwrites:
3310 # Driver specific block device options for blklogwrites.
3312 # @file: block device
3314 # @log: block device used to log writes to @file
3316 # @log-sector-size: sector size used in logging writes to @file, determines
3317 # granularity of offsets and sizes of writes (default: 512)
3319 # @log-append: append to an existing log (default: false)
3321 # @log-super-update-interval: interval of write requests after which the log
3322 # super block is updated to disk (default: 4096)
3326 { 'struct': 'BlockdevOptionsBlklogwrites',
3327 'data': { 'file': 'BlockdevRef',
3328 'log': 'BlockdevRef',
3329 '*log-sector-size': 'uint32',
3330 '*log-append': 'bool',
3331 '*log-super-update-interval': 'uint64' } }
3334 # @BlockdevOptionsBlkverify:
3336 # Driver specific block device options for blkverify.
3338 # @test: block device to be tested
3340 # @raw: raw image used for verification
3344 { 'struct': 'BlockdevOptionsBlkverify',
3345 'data': { 'test': 'BlockdevRef',
3346 'raw': 'BlockdevRef' } }
3349 # @QuorumReadPattern:
3351 # An enumeration of quorum read patterns.
3353 # @quorum: read all the children and do a quorum vote on reads
3355 # @fifo: read only from the first child that has not failed
3359 { 'enum': 'QuorumReadPattern', 'data': [ 'quorum', 'fifo' ] }
3362 # @BlockdevOptionsQuorum:
3364 # Driver specific block device options for Quorum
3366 # @blkverify: true if the driver must print content mismatch
3367 # set to false by default
3369 # @children: the children block devices to use
3371 # @vote-threshold: the vote limit under which a read will fail
3373 # @rewrite-corrupted: rewrite corrupted data when quorum is reached
3376 # @read-pattern: choose read pattern and set to quorum by default
3381 { 'struct': 'BlockdevOptionsQuorum',
3382 'data': { '*blkverify': 'bool',
3383 'children': [ 'BlockdevRef' ],
3384 'vote-threshold': 'int',
3385 '*rewrite-corrupted': 'bool',
3386 '*read-pattern': 'QuorumReadPattern' } }
3389 # @BlockdevOptionsGluster:
3391 # Driver specific block device options for Gluster
3393 # @volume: name of gluster volume where VM image resides
3395 # @path: absolute path to image file in gluster volume
3397 # @server: gluster servers description
3399 # @debug: libgfapi log level (default '4' which is Error)
3402 # @logfile: libgfapi log file (default /dev/stderr) (Since 2.8)
3406 { 'struct': 'BlockdevOptionsGluster',
3407 'data': { 'volume': 'str',
3409 'server': ['SocketAddress'],
3411 '*logfile': 'str' } }
3416 # An enumeration of libiscsi transport types
3420 { 'enum': 'IscsiTransport',
3421 'data': [ 'tcp', 'iser' ] }
3424 # @IscsiHeaderDigest:
3426 # An enumeration of header digests supported by libiscsi
3430 { 'enum': 'IscsiHeaderDigest',
3431 'prefix': 'QAPI_ISCSI_HEADER_DIGEST',
3432 'data': [ 'crc32c', 'none', 'crc32c-none', 'none-crc32c' ] }
3435 # @BlockdevOptionsIscsi:
3437 # @transport: The iscsi transport type
3439 # @portal: The address of the iscsi portal
3441 # @target: The target iqn name
3443 # @lun: LUN to connect to. Defaults to 0.
3445 # @user: User name to log in with. If omitted, no CHAP
3446 # authentication is performed.
3448 # @password-secret: The ID of a QCryptoSecret object providing
3449 # the password for the login. This option is required if
3450 # @user is specified.
3452 # @initiator-name: The iqn name we want to identify to the target
3453 # as. If this option is not specified, an initiator name is
3454 # generated automatically.
3456 # @header-digest: The desired header digest. Defaults to
3459 # @timeout: Timeout in seconds after which a request will
3460 # timeout. 0 means no timeout and is the default.
3462 # Driver specific block device options for iscsi
3466 { 'struct': 'BlockdevOptionsIscsi',
3467 'data': { 'transport': 'IscsiTransport',
3472 '*password-secret': 'str',
3473 '*initiator-name': 'str',
3474 '*header-digest': 'IscsiHeaderDigest',
3475 '*timeout': 'int' } }
3483 { 'enum': 'RbdAuthMode',
3484 'data': [ 'cephx', 'none' ] }
3487 # @BlockdevOptionsRbd:
3489 # @pool: Ceph pool name.
3491 # @image: Image name in the Ceph pool.
3493 # @conf: path to Ceph configuration file. Values
3494 # in the configuration file will be overridden by
3495 # options specified via QAPI.
3497 # @snapshot: Ceph snapshot name.
3499 # @user: Ceph id name.
3501 # @auth-client-required: Acceptable authentication modes.
3502 # This maps to Ceph configuration option
3503 # "auth_client_required". (Since 3.0)
3505 # @key-secret: ID of a QCryptoSecret object providing a key
3506 # for cephx authentication.
3507 # This maps to Ceph configuration option
3508 # "key". (Since 3.0)
3510 # @server: Monitor host address and port. This maps
3511 # to the "mon_host" Ceph option.
3515 { 'struct': 'BlockdevOptionsRbd',
3516 'data': { 'pool': 'str',
3521 '*auth-client-required': ['RbdAuthMode'],
3522 '*key-secret': 'str',
3523 '*server': ['InetSocketAddressBase'] } }
3526 # @BlockdevOptionsSheepdog:
3528 # Driver specific block device options for sheepdog
3530 # @vdi: Virtual disk image name
3531 # @server: The Sheepdog server to connect to
3532 # @snap-id: Snapshot ID
3533 # @tag: Snapshot tag name
3535 # Only one of @snap-id and @tag may be present.
3539 { 'struct': 'BlockdevOptionsSheepdog',
3540 'data': { 'server': 'SocketAddress',
3542 '*snap-id': 'uint32',
3548 # An enumeration of replication modes.
3550 # @primary: Primary mode, the vm's state will be sent to secondary QEMU.
3552 # @secondary: Secondary mode, receive the vm's state from primary QEMU.
3556 { 'enum' : 'ReplicationMode', 'data' : [ 'primary', 'secondary' ],
3557 'if': 'defined(CONFIG_REPLICATION)' }
3560 # @BlockdevOptionsReplication:
3562 # Driver specific block device options for replication
3564 # @mode: the replication mode
3566 # @top-id: In secondary mode, node name or device ID of the root
3567 # node who owns the replication node chain. Must not be given in
3572 { 'struct': 'BlockdevOptionsReplication',
3573 'base': 'BlockdevOptionsGenericFormat',
3574 'data': { 'mode': 'ReplicationMode',
3576 'if': 'defined(CONFIG_REPLICATION)' }
3581 # An enumeration of NFS transport types
3583 # @inet: TCP transport
3587 { 'enum': 'NFSTransport',
3588 'data': [ 'inet' ] }
3593 # Captures the address of the socket
3595 # @type: transport type used for NFS (only TCP supported)
3597 # @host: host address for NFS server
3601 { 'struct': 'NFSServer',
3602 'data': { 'type': 'NFSTransport',
3606 # @BlockdevOptionsNfs:
3608 # Driver specific block device option for NFS
3610 # @server: host address
3612 # @path: path of the image on the host
3614 # @user: UID value to use when talking to the
3615 # server (defaults to 65534 on Windows and getuid()
3618 # @group: GID value to use when talking to the
3619 # server (defaults to 65534 on Windows and getgid()
3622 # @tcp-syn-count: number of SYNs during the session
3623 # establishment (defaults to libnfs default)
3625 # @readahead-size: set the readahead size in bytes (defaults
3626 # to libnfs default)
3628 # @page-cache-size: set the pagecache size in bytes (defaults
3629 # to libnfs default)
3631 # @debug: set the NFS debug level (max 2) (defaults
3632 # to libnfs default)
3636 { 'struct': 'BlockdevOptionsNfs',
3637 'data': { 'server': 'NFSServer',
3641 '*tcp-syn-count': 'int',
3642 '*readahead-size': 'int',
3643 '*page-cache-size': 'int',
3647 # @BlockdevOptionsCurlBase:
3649 # Driver specific block device options shared by all protocols supported by the
3652 # @url: URL of the image file
3654 # @readahead: Size of the read-ahead cache; must be a multiple of
3655 # 512 (defaults to 256 kB)
3657 # @timeout: Timeout for connections, in seconds (defaults to 5)
3659 # @username: Username for authentication (defaults to none)
3661 # @password-secret: ID of a QCryptoSecret object providing a password
3662 # for authentication (defaults to no password)
3664 # @proxy-username: Username for proxy authentication (defaults to none)
3666 # @proxy-password-secret: ID of a QCryptoSecret object providing a password
3667 # for proxy authentication (defaults to no password)
3671 { 'struct': 'BlockdevOptionsCurlBase',
3672 'data': { 'url': 'str',
3673 '*readahead': 'int',
3676 '*password-secret': 'str',
3677 '*proxy-username': 'str',
3678 '*proxy-password-secret': 'str' } }
3681 # @BlockdevOptionsCurlHttp:
3683 # Driver specific block device options for HTTP connections over the curl
3684 # backend. URLs must start with "http://".
3686 # @cookie: List of cookies to set; format is
3687 # "name1=content1; name2=content2;" as explained by
3688 # CURLOPT_COOKIE(3). Defaults to no cookies.
3690 # @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
3691 # secure way. See @cookie for the format. (since 2.10)
3695 { 'struct': 'BlockdevOptionsCurlHttp',
3696 'base': 'BlockdevOptionsCurlBase',
3697 'data': { '*cookie': 'str',
3698 '*cookie-secret': 'str'} }
3701 # @BlockdevOptionsCurlHttps:
3703 # Driver specific block device options for HTTPS connections over the curl
3704 # backend. URLs must start with "https://".
3706 # @cookie: List of cookies to set; format is
3707 # "name1=content1; name2=content2;" as explained by
3708 # CURLOPT_COOKIE(3). Defaults to no cookies.
3710 # @sslverify: Whether to verify the SSL certificate's validity (defaults to
3713 # @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
3714 # secure way. See @cookie for the format. (since 2.10)
3718 { 'struct': 'BlockdevOptionsCurlHttps',
3719 'base': 'BlockdevOptionsCurlBase',
3720 'data': { '*cookie': 'str',
3721 '*sslverify': 'bool',
3722 '*cookie-secret': 'str'} }
3725 # @BlockdevOptionsCurlFtp:
3727 # Driver specific block device options for FTP connections over the curl
3728 # backend. URLs must start with "ftp://".
3732 { 'struct': 'BlockdevOptionsCurlFtp',
3733 'base': 'BlockdevOptionsCurlBase',
3737 # @BlockdevOptionsCurlFtps:
3739 # Driver specific block device options for FTPS connections over the curl
3740 # backend. URLs must start with "ftps://".
3742 # @sslverify: Whether to verify the SSL certificate's validity (defaults to
3747 { 'struct': 'BlockdevOptionsCurlFtps',
3748 'base': 'BlockdevOptionsCurlBase',
3749 'data': { '*sslverify': 'bool' } }
3752 # @BlockdevOptionsNbd:
3754 # Driver specific block device options for NBD.
3756 # @server: NBD server address
3758 # @export: export name
3760 # @tls-creds: TLS credentials ID
3762 # @x-dirty-bitmap: A "qemu:dirty-bitmap:NAME" string to query in place of
3763 # traditional "base:allocation" block status (see
3764 # NBD_OPT_LIST_META_CONTEXT in the NBD protocol) (since 3.0)
3768 { 'struct': 'BlockdevOptionsNbd',
3769 'data': { 'server': 'SocketAddress',
3771 '*tls-creds': 'str',
3772 '*x-dirty-bitmap': 'str' } }
3775 # @BlockdevOptionsRaw:
3777 # Driver specific block device options for the raw driver.
3779 # @offset: position where the block device starts
3780 # @size: the assumed size of the device
3784 { 'struct': 'BlockdevOptionsRaw',
3785 'base': 'BlockdevOptionsGenericFormat',
3786 'data': { '*offset': 'int', '*size': 'int' } }
3789 # @BlockdevOptionsVxHS:
3791 # Driver specific block device options for VxHS
3793 # @vdisk-id: UUID of VxHS volume
3794 # @server: vxhs server IP, port
3795 # @tls-creds: TLS credentials ID
3799 { 'struct': 'BlockdevOptionsVxHS',
3800 'data': { 'vdisk-id': 'str',
3801 'server': 'InetSocketAddressBase',
3802 '*tls-creds': 'str' } }
3805 # @BlockdevOptionsThrottle:
3807 # Driver specific block device options for the throttle driver
3809 # @throttle-group: the name of the throttle-group object to use. It
3810 # must already exist.
3811 # @file: reference to or definition of the data source block device
3814 { 'struct': 'BlockdevOptionsThrottle',
3815 'data': { 'throttle-group': 'str',
3816 'file' : 'BlockdevRef'
3821 # Options for creating a block device. Many options are available for all
3822 # block devices, independent of the block driver:
3824 # @driver: block driver name
3825 # @node-name: the node name of the new node (Since 2.0).
3826 # This option is required on the top level of blockdev-add.
3827 # Valid node names start with an alphabetic character and may
3828 # contain only alphanumeric characters, '-', '.' and '_'. Their
3829 # maximum length is 31 characters.
3830 # @discard: discard-related options (default: ignore)
3831 # @cache: cache-related options
3832 # @read-only: whether the block device should be read-only (default: false).
3833 # Note that some block drivers support only read-only access,
3834 # either generally or in certain configurations. In this case,
3835 # the default value does not work and the option must be
3836 # specified explicitly.
3837 # @auto-read-only: if true and @read-only is false, QEMU may automatically
3838 # decide not to open the image read-write as requested, but
3839 # fall back to read-only instead (and switch between the modes
3840 # later), e.g. depending on whether the image file is writable
3841 # or whether a writing user is attached to the node
3842 # (default: false, since 3.1)
3843 # @detect-zeroes: detect and optimize zero writes (Since 2.1)
3845 # @force-share: force share all permission on added nodes.
3846 # Requires read-only=true. (Since 2.10)
3848 # Remaining options are determined by the block driver.
3852 { 'union': 'BlockdevOptions',
3853 'base': { 'driver': 'BlockdevDriver',
3854 '*node-name': 'str',
3855 '*discard': 'BlockdevDiscardOptions',
3856 '*cache': 'BlockdevCacheOptions',
3857 '*read-only': 'bool',
3858 '*auto-read-only': 'bool',
3859 '*force-share': 'bool',
3860 '*detect-zeroes': 'BlockdevDetectZeroesOptions' },
3861 'discriminator': 'driver',
3863 'blkdebug': 'BlockdevOptionsBlkdebug',
3864 'blklogwrites':'BlockdevOptionsBlklogwrites',
3865 'blkverify': 'BlockdevOptionsBlkverify',
3866 'bochs': 'BlockdevOptionsGenericFormat',
3867 'cloop': 'BlockdevOptionsGenericFormat',
3868 'copy-on-read':'BlockdevOptionsGenericFormat',
3869 'dmg': 'BlockdevOptionsGenericFormat',
3870 'file': 'BlockdevOptionsFile',
3871 'ftp': 'BlockdevOptionsCurlFtp',
3872 'ftps': 'BlockdevOptionsCurlFtps',
3873 'gluster': 'BlockdevOptionsGluster',
3874 'host_cdrom': 'BlockdevOptionsFile',
3875 'host_device':'BlockdevOptionsFile',
3876 'http': 'BlockdevOptionsCurlHttp',
3877 'https': 'BlockdevOptionsCurlHttps',
3878 'iscsi': 'BlockdevOptionsIscsi',
3879 'luks': 'BlockdevOptionsLUKS',
3880 'nbd': 'BlockdevOptionsNbd',
3881 'nfs': 'BlockdevOptionsNfs',
3882 'null-aio': 'BlockdevOptionsNull',
3883 'null-co': 'BlockdevOptionsNull',
3884 'nvme': 'BlockdevOptionsNVMe',
3885 'parallels': 'BlockdevOptionsGenericFormat',
3886 'qcow2': 'BlockdevOptionsQcow2',
3887 'qcow': 'BlockdevOptionsQcow',
3888 'qed': 'BlockdevOptionsGenericCOWFormat',
3889 'quorum': 'BlockdevOptionsQuorum',
3890 'raw': 'BlockdevOptionsRaw',
3891 'rbd': 'BlockdevOptionsRbd',
3892 'replication': { 'type': 'BlockdevOptionsReplication',
3893 'if': 'defined(CONFIG_REPLICATION)' },
3894 'sheepdog': 'BlockdevOptionsSheepdog',
3895 'ssh': 'BlockdevOptionsSsh',
3896 'throttle': 'BlockdevOptionsThrottle',
3897 'vdi': 'BlockdevOptionsGenericFormat',
3898 'vhdx': 'BlockdevOptionsGenericFormat',
3899 'vmdk': 'BlockdevOptionsGenericCOWFormat',
3900 'vpc': 'BlockdevOptionsGenericFormat',
3901 'vvfat': 'BlockdevOptionsVVFAT',
3902 'vxhs': 'BlockdevOptionsVxHS'
3908 # Reference to a block device.
3910 # @definition: defines a new block device inline
3911 # @reference: references the ID of an existing block device
3915 { 'alternate': 'BlockdevRef',
3916 'data': { 'definition': 'BlockdevOptions',
3917 'reference': 'str' } }
3920 # @BlockdevRefOrNull:
3922 # Reference to a block device.
3924 # @definition: defines a new block device inline
3925 # @reference: references the ID of an existing block device.
3926 # An empty string means that no block device should
3927 # be referenced. Deprecated; use null instead.
3928 # @null: No block device should be referenced (since 2.10)
3932 { 'alternate': 'BlockdevRefOrNull',
3933 'data': { 'definition': 'BlockdevOptions',
3940 # Creates a new block device. If the @id option is given at the top level, a
3941 # BlockBackend will be created; otherwise, @node-name is mandatory at the top
3942 # level and no BlockBackend will be created.
3949 # -> { "execute": "blockdev-add",
3951 # "driver": "qcow2",
3952 # "node-name": "test1",
3955 # "filename": "test.qcow2"
3959 # <- { "return": {} }
3962 # -> { "execute": "blockdev-add",
3964 # "driver": "qcow2",
3965 # "node-name": "node0",
3966 # "discard": "unmap",
3972 # "filename": "/tmp/test.qcow2"
3978 # "filename": "/dev/fdset/4"
3984 # <- { "return": {} }
3987 { 'command': 'blockdev-add', 'data': 'BlockdevOptions', 'boxed': true }
3992 # Deletes a block device that has been added using blockdev-add.
3993 # The command will fail if the node is attached to a device or is
3994 # otherwise being used.
3996 # @node-name: Name of the graph node to delete.
4002 # -> { "execute": "blockdev-add",
4004 # "driver": "qcow2",
4005 # "node-name": "node0",
4008 # "filename": "test.qcow2"
4012 # <- { "return": {} }
4014 # -> { "execute": "blockdev-del",
4015 # "arguments": { "node-name": "node0" }
4017 # <- { "return": {} }
4020 { 'command': 'blockdev-del', 'data': { 'node-name': 'str' } }
4023 # @BlockdevCreateOptionsFile:
4025 # Driver specific image creation options for file.
4027 # @filename Filename for the new image file
4028 # @size Size of the virtual disk in bytes
4029 # @preallocation Preallocation mode for the new image (default: off)
4030 # @nocow Turn off copy-on-write (valid only on btrfs; default: off)
4034 { 'struct': 'BlockdevCreateOptionsFile',
4035 'data': { 'filename': 'str',
4037 '*preallocation': 'PreallocMode',
4038 '*nocow': 'bool' } }
4041 # @BlockdevCreateOptionsGluster:
4043 # Driver specific image creation options for gluster.
4045 # @location Where to store the new image file
4046 # @size Size of the virtual disk in bytes
4047 # @preallocation Preallocation mode for the new image (default: off)
4051 { 'struct': 'BlockdevCreateOptionsGluster',
4052 'data': { 'location': 'BlockdevOptionsGluster',
4054 '*preallocation': 'PreallocMode' } }
4057 # @BlockdevCreateOptionsLUKS:
4059 # Driver specific image creation options for LUKS.
4061 # @file Node to create the image format on
4062 # @size Size of the virtual disk in bytes
4066 { 'struct': 'BlockdevCreateOptionsLUKS',
4067 'base': 'QCryptoBlockCreateOptionsLUKS',
4068 'data': { 'file': 'BlockdevRef',
4072 # @BlockdevCreateOptionsNfs:
4074 # Driver specific image creation options for NFS.
4076 # @location Where to store the new image file
4077 # @size Size of the virtual disk in bytes
4081 { 'struct': 'BlockdevCreateOptionsNfs',
4082 'data': { 'location': 'BlockdevOptionsNfs',
4086 # @BlockdevCreateOptionsParallels:
4088 # Driver specific image creation options for parallels.
4090 # @file Node to create the image format on
4091 # @size Size of the virtual disk in bytes
4092 # @cluster-size Cluster size in bytes (default: 1 MB)
4096 { 'struct': 'BlockdevCreateOptionsParallels',
4097 'data': { 'file': 'BlockdevRef',
4099 '*cluster-size': 'size' } }
4102 # @BlockdevCreateOptionsQcow:
4104 # Driver specific image creation options for qcow.
4106 # @file Node to create the image format on
4107 # @size Size of the virtual disk in bytes
4108 # @backing-file File name of the backing file if a backing file
4110 # @encrypt Encryption options if the image should be encrypted
4114 { 'struct': 'BlockdevCreateOptionsQcow',
4115 'data': { 'file': 'BlockdevRef',
4117 '*backing-file': 'str',
4118 '*encrypt': 'QCryptoBlockCreateOptions' } }
4121 # @BlockdevQcow2Version:
4123 # @v2: The original QCOW2 format as introduced in qemu 0.10 (version 2)
4124 # @v3: The extended QCOW2 format as introduced in qemu 1.1 (version 3)
4128 { 'enum': 'BlockdevQcow2Version',
4129 'data': [ 'v2', 'v3' ] }
4133 # @BlockdevCreateOptionsQcow2:
4135 # Driver specific image creation options for qcow2.
4137 # @file Node to create the image format on
4138 # @data-file Node to use as an external data file in which all guest
4139 # data is stored so that only metadata remains in the qcow2
4141 # @size Size of the virtual disk in bytes
4142 # @version Compatibility level (default: v3)
4143 # @backing-file File name of the backing file if a backing file
4145 # @backing-fmt Name of the block driver to use for the backing file
4146 # @encrypt Encryption options if the image should be encrypted
4147 # @cluster-size qcow2 cluster size in bytes (default: 65536)
4148 # @preallocation Preallocation mode for the new image (default: off)
4149 # @lazy-refcounts True if refcounts may be updated lazily (default: off)
4150 # @refcount-bits Width of reference counts in bits (default: 16)
4154 { 'struct': 'BlockdevCreateOptionsQcow2',
4155 'data': { 'file': 'BlockdevRef',
4156 '*data-file': 'BlockdevRef',
4158 '*version': 'BlockdevQcow2Version',
4159 '*backing-file': 'str',
4160 '*backing-fmt': 'BlockdevDriver',
4161 '*encrypt': 'QCryptoBlockCreateOptions',
4162 '*cluster-size': 'size',
4163 '*preallocation': 'PreallocMode',
4164 '*lazy-refcounts': 'bool',
4165 '*refcount-bits': 'int' } }
4168 # @BlockdevCreateOptionsQed:
4170 # Driver specific image creation options for qed.
4172 # @file Node to create the image format on
4173 # @size Size of the virtual disk in bytes
4174 # @backing-file File name of the backing file if a backing file
4176 # @backing-fmt Name of the block driver to use for the backing file
4177 # @cluster-size Cluster size in bytes (default: 65536)
4178 # @table-size L1/L2 table size (in clusters)
4182 { 'struct': 'BlockdevCreateOptionsQed',
4183 'data': { 'file': 'BlockdevRef',
4185 '*backing-file': 'str',
4186 '*backing-fmt': 'BlockdevDriver',
4187 '*cluster-size': 'size',
4188 '*table-size': 'int' } }
4191 # @BlockdevCreateOptionsRbd:
4193 # Driver specific image creation options for rbd/Ceph.
4195 # @location Where to store the new image file. This location cannot
4196 # point to a snapshot.
4197 # @size Size of the virtual disk in bytes
4198 # @cluster-size RBD object size
4202 { 'struct': 'BlockdevCreateOptionsRbd',
4203 'data': { 'location': 'BlockdevOptionsRbd',
4205 '*cluster-size' : 'size' } }
4208 # @BlockdevVmdkSubformat:
4210 # Subformat options for VMDK images
4212 # @monolithicSparse: Single file image with sparse cluster allocation
4214 # @monolithicFlat: Single flat data image and a descriptor file
4216 # @twoGbMaxExtentSparse: Data is split into 2GB (per virtual LBA) sparse extent
4217 # files, in addition to a descriptor file
4219 # @twoGbMaxExtentFlat: Data is split into 2GB (per virtual LBA) flat extent
4220 # files, in addition to a descriptor file
4222 # @streamOptimized: Single file image sparse cluster allocation, optimized
4223 # for streaming over network.
4227 { 'enum': 'BlockdevVmdkSubformat',
4228 'data': [ 'monolithicSparse', 'monolithicFlat', 'twoGbMaxExtentSparse',
4229 'twoGbMaxExtentFlat', 'streamOptimized'] }
4232 # @BlockdevVmdkAdapterType:
4234 # Adapter type info for VMDK images
4238 { 'enum': 'BlockdevVmdkAdapterType',
4239 'data': [ 'ide', 'buslogic', 'lsilogic', 'legacyESX'] }
4242 # @BlockdevCreateOptionsVmdk:
4244 # Driver specific image creation options for VMDK.
4246 # @file Where to store the new image file. This refers to the image
4247 # file for monolithcSparse and streamOptimized format, or the
4248 # descriptor file for other formats.
4249 # @size Size of the virtual disk in bytes
4250 # @extents Where to store the data extents. Required for monolithcFlat,
4251 # twoGbMaxExtentSparse and twoGbMaxExtentFlat formats. For
4252 # monolithicFlat, only one entry is required; for
4253 # twoGbMaxExtent* formats, the number of entries required is
4254 # calculated as extent_number = virtual_size / 2GB. Providing
4255 # more extents than will be used is an error.
4256 # @subformat The subformat of the VMDK image. Default: "monolithicSparse".
4257 # @backing-file The path of backing file. Default: no backing file is used.
4258 # @adapter-type The adapter type used to fill in the descriptor. Default: ide.
4259 # @hwversion Hardware version. The meaningful options are "4" or "6".
4261 # @zeroed-grain Whether to enable zeroed-grain feature for sparse subformats.
4266 { 'struct': 'BlockdevCreateOptionsVmdk',
4267 'data': { 'file': 'BlockdevRef',
4269 '*extents': ['BlockdevRef'],
4270 '*subformat': 'BlockdevVmdkSubformat',
4271 '*backing-file': 'str',
4272 '*adapter-type': 'BlockdevVmdkAdapterType',
4273 '*hwversion': 'str',
4274 '*zeroed-grain': 'bool' } }
4278 # @SheepdogRedundancyType:
4280 # @full Create a fully replicated vdi with x copies
4281 # @erasure-coded Create an erasure coded vdi with x data strips and
4286 { 'enum': 'SheepdogRedundancyType',
4287 'data': [ 'full', 'erasure-coded' ] }
4290 # @SheepdogRedundancyFull:
4292 # @copies Number of copies to use (between 1 and 31)
4296 { 'struct': 'SheepdogRedundancyFull',
4297 'data': { 'copies': 'int' }}
4300 # @SheepdogRedundancyErasureCoded:
4302 # @data-strips Number of data strips to use (one of {2,4,8,16})
4303 # @parity-strips Number of parity strips to use (between 1 and 15)
4307 { 'struct': 'SheepdogRedundancyErasureCoded',
4308 'data': { 'data-strips': 'int',
4309 'parity-strips': 'int' }}
4312 # @SheepdogRedundancy:
4316 { 'union': 'SheepdogRedundancy',
4317 'base': { 'type': 'SheepdogRedundancyType' },
4318 'discriminator': 'type',
4319 'data': { 'full': 'SheepdogRedundancyFull',
4320 'erasure-coded': 'SheepdogRedundancyErasureCoded' } }
4323 # @BlockdevCreateOptionsSheepdog:
4325 # Driver specific image creation options for Sheepdog.
4327 # @location Where to store the new image file
4328 # @size Size of the virtual disk in bytes
4329 # @backing-file File name of a base image
4330 # @preallocation Preallocation mode (allowed values: off, full)
4331 # @redundancy Redundancy of the image
4332 # @object-size Object size of the image
4336 { 'struct': 'BlockdevCreateOptionsSheepdog',
4337 'data': { 'location': 'BlockdevOptionsSheepdog',
4339 '*backing-file': 'str',
4340 '*preallocation': 'PreallocMode',
4341 '*redundancy': 'SheepdogRedundancy',
4342 '*object-size': 'size' } }
4345 # @BlockdevCreateOptionsSsh:
4347 # Driver specific image creation options for SSH.
4349 # @location Where to store the new image file
4350 # @size Size of the virtual disk in bytes
4354 { 'struct': 'BlockdevCreateOptionsSsh',
4355 'data': { 'location': 'BlockdevOptionsSsh',
4359 # @BlockdevCreateOptionsVdi:
4361 # Driver specific image creation options for VDI.
4363 # @file Node to create the image format on
4364 # @size Size of the virtual disk in bytes
4365 # @preallocation Preallocation mode for the new image (allowed values: off,
4366 # metadata; default: off)
4370 { 'struct': 'BlockdevCreateOptionsVdi',
4371 'data': { 'file': 'BlockdevRef',
4373 '*preallocation': 'PreallocMode' } }
4376 # @BlockdevVhdxSubformat:
4378 # @dynamic: Growing image file
4379 # @fixed: Preallocated fixed-size image file
4383 { 'enum': 'BlockdevVhdxSubformat',
4384 'data': [ 'dynamic', 'fixed' ] }
4387 # @BlockdevCreateOptionsVhdx:
4389 # Driver specific image creation options for vhdx.
4391 # @file Node to create the image format on
4392 # @size Size of the virtual disk in bytes
4393 # @log-size Log size in bytes, must be a multiple of 1 MB
4395 # @block-size Block size in bytes, must be a multiple of 1 MB and not
4396 # larger than 256 MB (default: automatically choose a block
4397 # size depending on the image size)
4398 # @subformat vhdx subformat (default: dynamic)
4399 # @block-state-zero Force use of payload blocks of type 'ZERO'. Non-standard,
4400 # but default. Do not set to 'off' when using 'qemu-img
4401 # convert' with subformat=dynamic.
4405 { 'struct': 'BlockdevCreateOptionsVhdx',
4406 'data': { 'file': 'BlockdevRef',
4408 '*log-size': 'size',
4409 '*block-size': 'size',
4410 '*subformat': 'BlockdevVhdxSubformat',
4411 '*block-state-zero': 'bool' } }
4414 # @BlockdevVpcSubformat:
4416 # @dynamic: Growing image file
4417 # @fixed: Preallocated fixed-size image file
4421 { 'enum': 'BlockdevVpcSubformat',
4422 'data': [ 'dynamic', 'fixed' ] }
4425 # @BlockdevCreateOptionsVpc:
4427 # Driver specific image creation options for vpc (VHD).
4429 # @file Node to create the image format on
4430 # @size Size of the virtual disk in bytes
4431 # @subformat vhdx subformat (default: dynamic)
4432 # @force-size Force use of the exact byte size instead of rounding to the
4433 # next size that can be represented in CHS geometry
4438 { 'struct': 'BlockdevCreateOptionsVpc',
4439 'data': { 'file': 'BlockdevRef',
4441 '*subformat': 'BlockdevVpcSubformat',
4442 '*force-size': 'bool' } }
4445 # @BlockdevCreateOptions:
4447 # Options for creating an image format on a given node.
4449 # @driver block driver to create the image format
4453 { 'union': 'BlockdevCreateOptions',
4455 'driver': 'BlockdevDriver' },
4456 'discriminator': 'driver',
4458 'file': 'BlockdevCreateOptionsFile',
4459 'gluster': 'BlockdevCreateOptionsGluster',
4460 'luks': 'BlockdevCreateOptionsLUKS',
4461 'nfs': 'BlockdevCreateOptionsNfs',
4462 'parallels': 'BlockdevCreateOptionsParallels',
4463 'qcow': 'BlockdevCreateOptionsQcow',
4464 'qcow2': 'BlockdevCreateOptionsQcow2',
4465 'qed': 'BlockdevCreateOptionsQed',
4466 'rbd': 'BlockdevCreateOptionsRbd',
4467 'sheepdog': 'BlockdevCreateOptionsSheepdog',
4468 'ssh': 'BlockdevCreateOptionsSsh',
4469 'vdi': 'BlockdevCreateOptionsVdi',
4470 'vhdx': 'BlockdevCreateOptionsVhdx',
4471 'vmdk': 'BlockdevCreateOptionsVmdk',
4472 'vpc': 'BlockdevCreateOptionsVpc'
4478 # Starts a job to create an image format on a given node. The job is
4479 # automatically finalized, but a manual job-dismiss is required.
4481 # @job-id: Identifier for the newly created job.
4483 # @options: Options for the image creation.
4487 { 'command': 'blockdev-create',
4488 'data': { 'job-id': 'str',
4489 'options': 'BlockdevCreateOptions' } }
4492 # @blockdev-open-tray:
4494 # Opens a block device's tray. If there is a block driver state tree inserted as
4495 # a medium, it will become inaccessible to the guest (but it will remain
4496 # associated to the block device, so closing the tray will make it accessible
4499 # If the tray was already open before, this will be a no-op.
4501 # Once the tray opens, a DEVICE_TRAY_MOVED event is emitted. There are cases in
4502 # which no such event will be generated, these include:
4503 # - if the guest has locked the tray, @force is false and the guest does not
4504 # respond to the eject request
4505 # - if the BlockBackend denoted by @device does not have a guest device attached
4507 # - if the guest device does not have an actual tray
4509 # @device: Block device name (deprecated, use @id instead)
4511 # @id: The name or QOM path of the guest device (since: 2.8)
4513 # @force: if false (the default), an eject request will be sent to
4514 # the guest if it has locked the tray (and the tray will not be opened
4515 # immediately); if true, the tray will be opened regardless of whether
4522 # -> { "execute": "blockdev-open-tray",
4523 # "arguments": { "id": "ide0-1-0" } }
4525 # <- { "timestamp": { "seconds": 1418751016,
4526 # "microseconds": 716996 },
4527 # "event": "DEVICE_TRAY_MOVED",
4528 # "data": { "device": "ide1-cd0",
4530 # "tray-open": true } }
4532 # <- { "return": {} }
4535 { 'command': 'blockdev-open-tray',
4536 'data': { '*device': 'str',
4538 '*force': 'bool' } }
4541 # @blockdev-close-tray:
4543 # Closes a block device's tray. If there is a block driver state tree associated
4544 # with the block device (which is currently ejected), that tree will be loaded
4547 # If the tray was already closed before, this will be a no-op.
4549 # @device: Block device name (deprecated, use @id instead)
4551 # @id: The name or QOM path of the guest device (since: 2.8)
4557 # -> { "execute": "blockdev-close-tray",
4558 # "arguments": { "id": "ide0-1-0" } }
4560 # <- { "timestamp": { "seconds": 1418751345,
4561 # "microseconds": 272147 },
4562 # "event": "DEVICE_TRAY_MOVED",
4563 # "data": { "device": "ide1-cd0",
4565 # "tray-open": false } }
4567 # <- { "return": {} }
4570 { 'command': 'blockdev-close-tray',
4571 'data': { '*device': 'str',
4575 # @blockdev-remove-medium:
4577 # Removes a medium (a block driver state tree) from a block device. That block
4578 # device's tray must currently be open (unless there is no attached guest
4581 # If the tray is open and there is no medium inserted, this will be a no-op.
4583 # @id: The name or QOM path of the guest device
4589 # -> { "execute": "blockdev-remove-medium",
4590 # "arguments": { "id": "ide0-1-0" } }
4592 # <- { "error": { "class": "GenericError",
4593 # "desc": "Tray of device 'ide0-1-0' is not open" } }
4595 # -> { "execute": "blockdev-open-tray",
4596 # "arguments": { "id": "ide0-1-0" } }
4598 # <- { "timestamp": { "seconds": 1418751627,
4599 # "microseconds": 549958 },
4600 # "event": "DEVICE_TRAY_MOVED",
4601 # "data": { "device": "ide1-cd0",
4603 # "tray-open": true } }
4605 # <- { "return": {} }
4607 # -> { "execute": "blockdev-remove-medium",
4608 # "arguments": { "id": "ide0-1-0" } }
4610 # <- { "return": {} }
4613 { 'command': 'blockdev-remove-medium',
4614 'data': { 'id': 'str' } }
4617 # @blockdev-insert-medium:
4619 # Inserts a medium (a block driver state tree) into a block device. That block
4620 # device's tray must currently be open (unless there is no attached guest
4621 # device) and there must be no medium inserted already.
4623 # @id: The name or QOM path of the guest device
4625 # @node-name: name of a node in the block driver state graph
4631 # -> { "execute": "blockdev-add",
4633 # "node-name": "node0",
4635 # "file": { "driver": "file",
4636 # "filename": "fedora.iso" } } }
4637 # <- { "return": {} }
4639 # -> { "execute": "blockdev-insert-medium",
4640 # "arguments": { "id": "ide0-1-0",
4641 # "node-name": "node0" } }
4643 # <- { "return": {} }
4646 { 'command': 'blockdev-insert-medium',
4647 'data': { 'id': 'str',
4648 'node-name': 'str'} }
4652 # @BlockdevChangeReadOnlyMode:
4654 # Specifies the new read-only mode of a block device subject to the
4655 # @blockdev-change-medium command.
4657 # @retain: Retains the current read-only mode
4659 # @read-only: Makes the device read-only
4661 # @read-write: Makes the device writable
4666 { 'enum': 'BlockdevChangeReadOnlyMode',
4667 'data': ['retain', 'read-only', 'read-write'] }
4671 # @blockdev-change-medium:
4673 # Changes the medium inserted into a block device by ejecting the current medium
4674 # and loading a new image file which is inserted as the new medium (this command
4675 # combines blockdev-open-tray, blockdev-remove-medium, blockdev-insert-medium
4676 # and blockdev-close-tray).
4678 # @device: Block device name (deprecated, use @id instead)
4680 # @id: The name or QOM path of the guest device
4683 # @filename: filename of the new image to be loaded
4685 # @format: format to open the new image with (defaults to
4686 # the probed format)
4688 # @read-only-mode: change the read-only mode of the device; defaults
4695 # 1. Change a removable medium
4697 # -> { "execute": "blockdev-change-medium",
4698 # "arguments": { "id": "ide0-1-0",
4699 # "filename": "/srv/images/Fedora-12-x86_64-DVD.iso",
4700 # "format": "raw" } }
4701 # <- { "return": {} }
4703 # 2. Load a read-only medium into a writable drive
4705 # -> { "execute": "blockdev-change-medium",
4706 # "arguments": { "id": "floppyA",
4707 # "filename": "/srv/images/ro.img",
4709 # "read-only-mode": "retain" } }
4712 # { "class": "GenericError",
4713 # "desc": "Could not open '/srv/images/ro.img': Permission denied" } }
4715 # -> { "execute": "blockdev-change-medium",
4716 # "arguments": { "id": "floppyA",
4717 # "filename": "/srv/images/ro.img",
4719 # "read-only-mode": "read-only" } }
4721 # <- { "return": {} }
4724 { 'command': 'blockdev-change-medium',
4725 'data': { '*device': 'str',
4729 '*read-only-mode': 'BlockdevChangeReadOnlyMode' } }
4733 # @BlockErrorAction:
4735 # An enumeration of action that has been taken when a DISK I/O occurs
4737 # @ignore: error has been ignored
4739 # @report: error has been reported to the device
4741 # @stop: error caused VM to be stopped
4745 { 'enum': 'BlockErrorAction',
4746 'data': [ 'ignore', 'report', 'stop' ] }
4750 # @BLOCK_IMAGE_CORRUPTED:
4752 # Emitted when a disk image is being marked corrupt. The image can be
4753 # identified by its device or node name. The 'device' field is always
4754 # present for compatibility reasons, but it can be empty ("") if the
4755 # image does not have a device name associated.
4757 # @device: device name. This is always present for compatibility
4758 # reasons, but it can be empty ("") if the image does not
4759 # have a device name associated.
4761 # @node-name: node name (Since: 2.4)
4763 # @msg: informative message for human consumption, such as the kind of
4764 # corruption being detected. It should not be parsed by machine as it is
4765 # not guaranteed to be stable
4767 # @offset: if the corruption resulted from an image access, this is
4768 # the host's access offset into the image
4770 # @size: if the corruption resulted from an image access, this is
4773 # @fatal: if set, the image is marked corrupt and therefore unusable after this
4774 # event and must be repaired (Since 2.2; before, every
4775 # BLOCK_IMAGE_CORRUPTED event was fatal)
4777 # Note: If action is "stop", a STOP event will eventually follow the
4778 # BLOCK_IO_ERROR event.
4782 # <- { "event": "BLOCK_IMAGE_CORRUPTED",
4783 # "data": { "device": "ide0-hd0", "node-name": "node0",
4784 # "msg": "Prevented active L1 table overwrite", "offset": 196608,
4786 # "timestamp": { "seconds": 1378126126, "microseconds": 966463 } }
4790 { 'event': 'BLOCK_IMAGE_CORRUPTED',
4791 'data': { 'device' : 'str',
4792 '*node-name' : 'str',
4796 'fatal' : 'bool' } }
4801 # Emitted when a disk I/O error occurs
4803 # @device: device name. This is always present for compatibility
4804 # reasons, but it can be empty ("") if the image does not
4805 # have a device name associated.
4807 # @node-name: node name. Note that errors may be reported for the root node
4808 # that is directly attached to a guest device rather than for the
4809 # node where the error occurred. The node name is not present if
4810 # the drive is empty. (Since: 2.8)
4812 # @operation: I/O operation
4814 # @action: action that has been taken
4816 # @nospace: true if I/O error was caused due to a no-space
4817 # condition. This key is only present if query-block's
4818 # io-status is present, please see query-block documentation
4819 # for more information (since: 2.2)
4821 # @reason: human readable string describing the error cause.
4822 # (This field is a debugging aid for humans, it should not
4823 # be parsed by applications) (since: 2.2)
4825 # Note: If action is "stop", a STOP event will eventually follow the
4826 # BLOCK_IO_ERROR event
4832 # <- { "event": "BLOCK_IO_ERROR",
4833 # "data": { "device": "ide0-hd1",
4834 # "node-name": "#block212",
4835 # "operation": "write",
4836 # "action": "stop" },
4837 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4840 { 'event': 'BLOCK_IO_ERROR',
4841 'data': { 'device': 'str', '*node-name': 'str',
4842 'operation': 'IoOperationType',
4843 'action': 'BlockErrorAction', '*nospace': 'bool',
4847 # @BLOCK_JOB_COMPLETED:
4849 # Emitted when a block job has completed
4853 # @device: The job identifier. Originally the device name but other
4854 # values are allowed since QEMU 2.7
4856 # @len: maximum progress value
4858 # @offset: current progress value. On success this is equal to len.
4859 # On failure this is less than len
4861 # @speed: rate limit, bytes per second
4863 # @error: error message. Only present on failure. This field
4864 # contains a human-readable error message. There are no semantics
4865 # other than that streaming has failed and clients should not try to
4866 # interpret the error string
4872 # <- { "event": "BLOCK_JOB_COMPLETED",
4873 # "data": { "type": "stream", "device": "virtio-disk0",
4874 # "len": 10737418240, "offset": 10737418240,
4876 # "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
4879 { 'event': 'BLOCK_JOB_COMPLETED',
4880 'data': { 'type' : 'JobType',
4888 # @BLOCK_JOB_CANCELLED:
4890 # Emitted when a block job has been cancelled
4894 # @device: The job identifier. Originally the device name but other
4895 # values are allowed since QEMU 2.7
4897 # @len: maximum progress value
4899 # @offset: current progress value. On success this is equal to len.
4900 # On failure this is less than len
4902 # @speed: rate limit, bytes per second
4908 # <- { "event": "BLOCK_JOB_CANCELLED",
4909 # "data": { "type": "stream", "device": "virtio-disk0",
4910 # "len": 10737418240, "offset": 134217728,
4912 # "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
4915 { 'event': 'BLOCK_JOB_CANCELLED',
4916 'data': { 'type' : 'JobType',
4925 # Emitted when a block job encounters an error
4927 # @device: The job identifier. Originally the device name but other
4928 # values are allowed since QEMU 2.7
4930 # @operation: I/O operation
4932 # @action: action that has been taken
4938 # <- { "event": "BLOCK_JOB_ERROR",
4939 # "data": { "device": "ide0-hd1",
4940 # "operation": "write",
4941 # "action": "stop" },
4942 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4945 { 'event': 'BLOCK_JOB_ERROR',
4946 'data': { 'device' : 'str',
4947 'operation': 'IoOperationType',
4948 'action' : 'BlockErrorAction' } }
4953 # Emitted when a block job is ready to complete
4957 # @device: The job identifier. Originally the device name but other
4958 # values are allowed since QEMU 2.7
4960 # @len: maximum progress value
4962 # @offset: current progress value. On success this is equal to len.
4963 # On failure this is less than len
4965 # @speed: rate limit, bytes per second
4967 # Note: The "ready to complete" status is always reset by a @BLOCK_JOB_ERROR
4974 # <- { "event": "BLOCK_JOB_READY",
4975 # "data": { "device": "drive0", "type": "mirror", "speed": 0,
4976 # "len": 2097152, "offset": 2097152 }
4977 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4980 { 'event': 'BLOCK_JOB_READY',
4981 'data': { 'type' : 'JobType',
4988 # @BLOCK_JOB_PENDING:
4990 # Emitted when a block job is awaiting explicit authorization to finalize graph
4991 # changes via @block-job-finalize. If this job is part of a transaction, it will
4992 # not emit this event until the transaction has converged first.
4996 # @id: The job identifier.
5002 # <- { "event": "BLOCK_JOB_WAITING",
5003 # "data": { "device": "drive0", "type": "mirror" },
5004 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
5007 { 'event': 'BLOCK_JOB_PENDING',
5008 'data': { 'type' : 'JobType',
5014 # Preallocation mode of QEMU image file
5016 # @off: no preallocation
5017 # @metadata: preallocate only for metadata
5018 # @falloc: like @full preallocation but allocate disk space by
5019 # posix_fallocate() rather than writing zeros.
5020 # @full: preallocate all data by writing zeros to device to ensure disk
5021 # space is really available. @full preallocation also sets up
5022 # metadata correctly.
5026 { 'enum': 'PreallocMode',
5027 'data': [ 'off', 'metadata', 'falloc', 'full' ] }
5030 # @BLOCK_WRITE_THRESHOLD:
5032 # Emitted when writes on block device reaches or exceeds the
5033 # configured write threshold. For thin-provisioned devices, this
5034 # means the device should be extended to avoid pausing for
5036 # The event is one shot. Once triggered, it needs to be
5037 # re-registered with another block-set-write-threshold command.
5039 # @node-name: graph node name on which the threshold was exceeded.
5041 # @amount-exceeded: amount of data which exceeded the threshold, in bytes.
5043 # @write-threshold: last configured threshold, in bytes.
5047 { 'event': 'BLOCK_WRITE_THRESHOLD',
5048 'data': { 'node-name': 'str',
5049 'amount-exceeded': 'uint64',
5050 'write-threshold': 'uint64' } }
5053 # @block-set-write-threshold:
5055 # Change the write threshold for a block drive. An event will be
5056 # delivered if a write to this block drive crosses the configured
5057 # threshold. The threshold is an offset, thus must be
5058 # non-negative. Default is no write threshold. Setting the threshold
5059 # to zero disables it.
5061 # This is useful to transparently resize thin-provisioned drives without
5062 # the guest OS noticing.
5064 # @node-name: graph node name on which the threshold must be set.
5066 # @write-threshold: configured threshold for the block device, bytes.
5067 # Use 0 to disable the threshold.
5073 # -> { "execute": "block-set-write-threshold",
5074 # "arguments": { "node-name": "mydev",
5075 # "write-threshold": 17179869184 } }
5076 # <- { "return": {} }
5079 { 'command': 'block-set-write-threshold',
5080 'data': { 'node-name': 'str', 'write-threshold': 'uint64' } }
5083 # @x-blockdev-change:
5085 # Dynamically reconfigure the block driver state graph. It can be used
5086 # to add, remove, insert or replace a graph node. Currently only the
5087 # Quorum driver implements this feature to add or remove its child. This
5088 # is useful to fix a broken quorum child.
5090 # If @node is specified, it will be inserted under @parent. @child
5091 # may not be specified in this case. If both @parent and @child are
5092 # specified but @node is not, @child will be detached from @parent.
5094 # @parent: the id or name of the parent node.
5096 # @child: the name of a child under the given parent node.
5098 # @node: the name of the node that will be added.
5100 # Note: this command is experimental, and its API is not stable. It
5101 # does not support all kinds of operations, all kinds of children, nor
5102 # all block drivers.
5104 # FIXME Removing children from a quorum node means introducing gaps in the
5105 # child indices. This cannot be represented in the 'children' list of
5106 # BlockdevOptionsQuorum, as returned by .bdrv_refresh_filename().
5108 # Warning: The data in a new quorum child MUST be consistent with that of
5109 # the rest of the array.
5115 # 1. Add a new node to a quorum
5116 # -> { "execute": "blockdev-add",
5119 # "node-name": "new_node",
5120 # "file": { "driver": "file",
5121 # "filename": "test.raw" } } }
5122 # <- { "return": {} }
5123 # -> { "execute": "x-blockdev-change",
5124 # "arguments": { "parent": "disk1",
5125 # "node": "new_node" } }
5126 # <- { "return": {} }
5128 # 2. Delete a quorum's node
5129 # -> { "execute": "x-blockdev-change",
5130 # "arguments": { "parent": "disk1",
5131 # "child": "children.1" } }
5132 # <- { "return": {} }
5135 { 'command': 'x-blockdev-change',
5136 'data' : { 'parent': 'str',
5141 # @x-blockdev-set-iothread:
5143 # Move @node and its children into the @iothread. If @iothread is null then
5144 # move @node and its children into the main loop.
5146 # The node must not be attached to a BlockBackend.
5148 # @node-name: the name of the block driver node
5150 # @iothread: the name of the IOThread object or null for the main loop
5152 # @force: true if the node and its children should be moved when a BlockBackend
5153 # is already attached
5155 # Note: this command is experimental and intended for test cases that need
5156 # control over IOThreads only.
5162 # 1. Move a node into an IOThread
5163 # -> { "execute": "x-blockdev-set-iothread",
5164 # "arguments": { "node-name": "disk1",
5165 # "iothread": "iothread0" } }
5166 # <- { "return": {} }
5168 # 2. Move a node into the main loop
5169 # -> { "execute": "x-blockdev-set-iothread",
5170 # "arguments": { "node-name": "disk1",
5171 # "iothread": null } }
5172 # <- { "return": {} }
5175 { 'command': 'x-blockdev-set-iothread',
5176 'data' : { 'node-name': 'str',
5177 'iothread': 'StrOrNull',
5178 '*force': 'bool' } }