5 # == Block core (VM unrelated)
8 { 'include': 'common.json' }
9 { 'include': 'crypto.json' }
10 { 'include': 'job.json' }
11 { 'include': 'sockets.json' }
16 # @id: unique snapshot id
18 # @name: user chosen name
20 # @vm-state-size: size of the VM state
22 # @date-sec: UTC date of the snapshot in seconds
24 # @date-nsec: fractional part in nano seconds to be used with date-sec
26 # @vm-clock-sec: VM clock relative to boot in seconds
28 # @vm-clock-nsec: fractional part in nano seconds to be used with vm-clock-sec
30 # @icount: Current instruction count. Appears when execution record/replay
31 # is enabled. Used for "time-traveling" to match the moment
32 # in the recorded execution with the snapshots. This counter may
33 # be obtained through @query-replay command (since 5.2)
38 { 'struct': 'SnapshotInfo',
39 'data': { 'id': 'str', 'name': 'str', 'vm-state-size': 'int',
40 'date-sec': 'int', 'date-nsec': 'int',
41 'vm-clock-sec': 'int', 'vm-clock-nsec': 'int',
45 # @ImageInfoSpecificQCow2EncryptionBase:
47 # @format: The encryption format
51 { 'struct': 'ImageInfoSpecificQCow2EncryptionBase',
52 'data': { 'format': 'BlockdevQcow2EncryptionFormat'}}
55 # @ImageInfoSpecificQCow2Encryption:
59 { 'union': 'ImageInfoSpecificQCow2Encryption',
60 'base': 'ImageInfoSpecificQCow2EncryptionBase',
61 'discriminator': 'format',
62 'data': { 'luks': 'QCryptoBlockInfoLUKS' } }
65 # @ImageInfoSpecificQCow2:
67 # @compat: compatibility level
69 # @data-file: the filename of the external data file that is stored in the
70 # image and used as a default for opening the image (since: 4.0)
72 # @data-file-raw: True if the external data file must stay valid as a
73 # standalone (read-only) raw image without looking at qcow2
74 # metadata (since: 4.0)
76 # @extended-l2: true if the image has extended L2 entries; only valid for
77 # compat >= 1.1 (since 5.2)
79 # @lazy-refcounts: on or off; only valid for compat >= 1.1
81 # @corrupt: true if the image has been marked corrupt; only valid for
82 # compat >= 1.1 (since 2.2)
84 # @refcount-bits: width of a refcount entry in bits (since 2.3)
86 # @encrypt: details about encryption parameters; only set if image
87 # is encrypted (since 2.10)
89 # @bitmaps: A list of qcow2 bitmap details (since 4.0)
91 # @compression-type: the image cluster compression method (since 5.1)
95 { 'struct': 'ImageInfoSpecificQCow2',
99 '*data-file-raw': 'bool',
100 '*extended-l2': 'bool',
101 '*lazy-refcounts': 'bool',
103 'refcount-bits': 'int',
104 '*encrypt': 'ImageInfoSpecificQCow2Encryption',
105 '*bitmaps': ['Qcow2BitmapInfo'],
106 'compression-type': 'Qcow2CompressionType'
110 # @ImageInfoSpecificVmdk:
112 # @create-type: The create type of VMDK image
114 # @cid: Content id of image
116 # @parent-cid: Parent VMDK image's cid
118 # @extents: List of extent files
122 { 'struct': 'ImageInfoSpecificVmdk',
124 'create-type': 'str',
127 'extents': ['ImageInfo']
131 # @ImageInfoSpecific:
133 # A discriminated record of image format specific information structures.
137 { 'union': 'ImageInfoSpecific',
139 'qcow2': 'ImageInfoSpecificQCow2',
140 'vmdk': 'ImageInfoSpecificVmdk',
141 # If we need to add block driver specific parameters for
142 # LUKS in future, then we'll subclass QCryptoBlockInfoLUKS
143 # to define a ImageInfoSpecificLUKS
144 'luks': 'QCryptoBlockInfoLUKS'
150 # Information about a QEMU image file
152 # @filename: name of the image file
154 # @format: format of the image file
156 # @virtual-size: maximum capacity in bytes of the image
158 # @actual-size: actual size on disk in bytes of the image
160 # @dirty-flag: true if image is not cleanly closed
162 # @cluster-size: size of a cluster in bytes
164 # @encrypted: true if the image is encrypted
166 # @compressed: true if the image is compressed (Since 1.7)
168 # @backing-filename: name of the backing file
170 # @full-backing-filename: full path of the backing file
172 # @backing-filename-format: the format of the backing file
174 # @snapshots: list of VM snapshots
176 # @backing-image: info of the backing image (since 1.6)
178 # @format-specific: structure supplying additional format-specific
179 # information (since 1.7)
184 { 'struct': 'ImageInfo',
185 'data': {'filename': 'str', 'format': 'str', '*dirty-flag': 'bool',
186 '*actual-size': 'int', 'virtual-size': 'int',
187 '*cluster-size': 'int', '*encrypted': 'bool', '*compressed': 'bool',
188 '*backing-filename': 'str', '*full-backing-filename': 'str',
189 '*backing-filename-format': 'str', '*snapshots': ['SnapshotInfo'],
190 '*backing-image': 'ImageInfo',
191 '*format-specific': 'ImageInfoSpecific' } }
196 # Information about a QEMU image file check
198 # @filename: name of the image file checked
200 # @format: format of the image file checked
202 # @check-errors: number of unexpected errors occurred during check
204 # @image-end-offset: offset (in bytes) where the image ends, this
205 # field is present if the driver for the image format
208 # @corruptions: number of corruptions found during the check if any
210 # @leaks: number of leaks found during the check if any
212 # @corruptions-fixed: number of corruptions fixed during the check
215 # @leaks-fixed: number of leaks fixed during the check if any
217 # @total-clusters: total number of clusters, this field is present
218 # if the driver for the image format supports it
220 # @allocated-clusters: total number of allocated clusters, this
221 # field is present if the driver for the image format
224 # @fragmented-clusters: total number of fragmented clusters, this
225 # field is present if the driver for the image format
228 # @compressed-clusters: total number of compressed clusters, this
229 # field is present if the driver for the image format
235 { 'struct': 'ImageCheck',
236 'data': {'filename': 'str', 'format': 'str', 'check-errors': 'int',
237 '*image-end-offset': 'int', '*corruptions': 'int', '*leaks': 'int',
238 '*corruptions-fixed': 'int', '*leaks-fixed': 'int',
239 '*total-clusters': 'int', '*allocated-clusters': 'int',
240 '*fragmented-clusters': 'int', '*compressed-clusters': 'int' } }
245 # Mapping information from a virtual block range to a host file range
247 # @start: virtual (guest) offset of the first byte described by this
250 # @length: the number of bytes of the mapped virtual range
252 # @data: reading the image will actually read data from a file (in
253 # particular, if @offset is present this means that the sectors
254 # are not simply preallocated, but contain actual data in raw
257 # @zero: whether the virtual blocks read as zeroes
259 # @depth: number of layers (0 = top image, 1 = top image's backing
260 # file, ..., n - 1 = bottom image (where n is the number of
261 # images in the chain)) before reaching one for which the
264 # @offset: if present, the image file stores the data for this range
265 # in raw format at the given (host) offset
267 # @filename: filename that is referred to by @offset
272 { 'struct': 'MapEntry',
273 'data': {'start': 'int', 'length': 'int', 'data': 'bool',
274 'zero': 'bool', 'depth': 'int', '*offset': 'int',
275 '*filename': 'str' } }
278 # @BlockdevCacheInfo:
280 # Cache mode information for a block device
282 # @writeback: true if writeback mode is enabled
283 # @direct: true if the host page cache is bypassed (O_DIRECT)
284 # @no-flush: true if flush requests are ignored for the device
288 { 'struct': 'BlockdevCacheInfo',
289 'data': { 'writeback': 'bool',
291 'no-flush': 'bool' } }
296 # Information about the backing device for a block device.
298 # @file: the filename of the backing device
300 # @node-name: the name of the block driver node (Since 2.0)
302 # @ro: true if the backing device was open read-only
304 # @drv: the name of the block format used to open the backing device. As of
305 # 0.14 this can be: 'blkdebug', 'bochs', 'cloop', 'cow', 'dmg',
306 # 'file', 'file', 'ftp', 'ftps', 'host_cdrom', 'host_device',
307 # 'http', 'https', 'luks', 'nbd', 'parallels', 'qcow',
308 # 'qcow2', 'raw', 'vdi', 'vmdk', 'vpc', 'vvfat'
309 # 2.2: 'archipelago' added, 'cow' dropped
310 # 2.3: 'host_floppy' deprecated
311 # 2.5: 'host_floppy' dropped
313 # 2.8: 'replication' added, 'tftp' dropped
314 # 2.9: 'archipelago' dropped
316 # @backing_file: the name of the backing file (for copy-on-write)
318 # @backing_file_depth: number of files in the backing file chain (since: 1.2)
320 # @encrypted: true if the backing device is encrypted
322 # @encryption_key_missing: always false
324 # @detect_zeroes: detect and optimize zero writes (Since 2.1)
326 # @bps: total throughput limit in bytes per second is specified
328 # @bps_rd: read throughput limit in bytes per second is specified
330 # @bps_wr: write throughput limit in bytes per second is specified
332 # @iops: total I/O operations per second is specified
334 # @iops_rd: read I/O operations per second is specified
336 # @iops_wr: write I/O operations per second is specified
338 # @image: the info of image used (since: 1.6)
340 # @bps_max: total throughput limit during bursts,
341 # in bytes (Since 1.7)
343 # @bps_rd_max: read throughput limit during bursts,
344 # in bytes (Since 1.7)
346 # @bps_wr_max: write throughput limit during bursts,
347 # in bytes (Since 1.7)
349 # @iops_max: total I/O operations per second during bursts,
350 # in bytes (Since 1.7)
352 # @iops_rd_max: read I/O operations per second during bursts,
353 # in bytes (Since 1.7)
355 # @iops_wr_max: write I/O operations per second during bursts,
356 # in bytes (Since 1.7)
358 # @bps_max_length: maximum length of the @bps_max burst
359 # period, in seconds. (Since 2.6)
361 # @bps_rd_max_length: maximum length of the @bps_rd_max
362 # burst period, in seconds. (Since 2.6)
364 # @bps_wr_max_length: maximum length of the @bps_wr_max
365 # burst period, in seconds. (Since 2.6)
367 # @iops_max_length: maximum length of the @iops burst
368 # period, in seconds. (Since 2.6)
370 # @iops_rd_max_length: maximum length of the @iops_rd_max
371 # burst period, in seconds. (Since 2.6)
373 # @iops_wr_max_length: maximum length of the @iops_wr_max
374 # burst period, in seconds. (Since 2.6)
376 # @iops_size: an I/O size in bytes (Since 1.7)
378 # @group: throttle group name (Since 2.4)
380 # @cache: the cache mode used for the block device (since: 2.3)
382 # @write_threshold: configured write threshold for the device.
383 # 0 if disabled. (Since 2.3)
385 # @dirty-bitmaps: dirty bitmaps information (only present if node
386 # has one or more dirty bitmaps) (Since 4.2)
389 # @deprecated: Member @encryption_key_missing is deprecated. It is
395 { 'struct': 'BlockDeviceInfo',
396 'data': { 'file': 'str', '*node-name': 'str', 'ro': 'bool', 'drv': 'str',
397 '*backing_file': 'str', 'backing_file_depth': 'int',
399 'encryption_key_missing': { 'type': 'bool',
400 'features': [ 'deprecated' ] },
401 'detect_zeroes': 'BlockdevDetectZeroesOptions',
402 'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
403 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
404 'image': 'ImageInfo',
405 '*bps_max': 'int', '*bps_rd_max': 'int',
406 '*bps_wr_max': 'int', '*iops_max': 'int',
407 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
408 '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
409 '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
410 '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
411 '*iops_size': 'int', '*group': 'str', 'cache': 'BlockdevCacheInfo',
412 'write_threshold': 'int', '*dirty-bitmaps': ['BlockDirtyInfo'] } }
415 # @BlockDeviceIoStatus:
417 # An enumeration of block device I/O status.
419 # @ok: The last I/O operation has succeeded
421 # @failed: The last I/O operation has failed
423 # @nospace: The last I/O operation has failed due to a no-space condition
427 { 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
430 # @DirtyBitmapStatus:
432 # An enumeration of possible states that a dirty bitmap can report to the user.
434 # @frozen: The bitmap is currently in-use by some operation and is immutable.
435 # If the bitmap was @active prior to the operation, new writes by the
436 # guest are being recorded in a temporary buffer, and will not be lost.
437 # Generally, bitmaps are cleared on successful use in an operation and
438 # the temporary buffer is committed into the bitmap. On failure, the
439 # temporary buffer is merged back into the bitmap without first
441 # Please refer to the documentation for each bitmap-using operation,
442 # See also @blockdev-backup, @drive-backup.
444 # @disabled: The bitmap is not currently recording new writes by the guest.
445 # This is requested explicitly via @block-dirty-bitmap-disable.
446 # It can still be cleared, deleted, or used for backup operations.
448 # @active: The bitmap is actively monitoring for new writes, and can be cleared,
449 # deleted, or used for backup operations.
451 # @locked: The bitmap is currently in-use by some operation and is immutable.
452 # If the bitmap was @active prior to the operation, it is still
453 # recording new writes. If the bitmap was @disabled, it is not
454 # recording new writes. (Since 2.12)
456 # @inconsistent: This is a persistent dirty bitmap that was marked in-use on
457 # disk, and is unusable by QEMU. It can only be deleted.
458 # Please rely on the inconsistent field in @BlockDirtyInfo
459 # instead, as the status field is deprecated. (Since 4.0)
463 { 'enum': 'DirtyBitmapStatus',
464 'data': ['active', 'disabled', 'frozen', 'locked', 'inconsistent'] }
469 # Block dirty bitmap information.
471 # @name: the name of the dirty bitmap (Since 2.4)
473 # @count: number of dirty bytes according to the dirty bitmap
475 # @granularity: granularity of the dirty bitmap in bytes (since 1.4)
477 # @status: current status of the dirty bitmap (since 2.4)
479 # @recording: true if the bitmap is recording new writes from the guest.
480 # Replaces `active` and `disabled` statuses. (since 4.0)
482 # @busy: true if the bitmap is in-use by some operation (NBD or jobs)
483 # and cannot be modified via QMP or used by another operation.
484 # Replaces `locked` and `frozen` statuses. (since 4.0)
486 # @persistent: true if the bitmap was stored on disk, is scheduled to be stored
487 # on disk, or both. (since 4.0)
489 # @inconsistent: true if this is a persistent bitmap that was improperly
490 # stored. Implies @persistent to be true; @recording and
491 # @busy to be false. This bitmap cannot be used. To remove
492 # it, use @block-dirty-bitmap-remove. (Since 4.0)
495 # @deprecated: Member @status is deprecated. Use @recording and
500 { 'struct': 'BlockDirtyInfo',
501 'data': {'*name': 'str', 'count': 'int', 'granularity': 'uint32',
502 'recording': 'bool', 'busy': 'bool',
503 'status': { 'type': 'DirtyBitmapStatus',
504 'features': [ 'deprecated' ] },
505 'persistent': 'bool', '*inconsistent': 'bool' } }
508 # @Qcow2BitmapInfoFlags:
510 # An enumeration of flags that a bitmap can report to the user.
512 # @in-use: This flag is set by any process actively modifying the qcow2 file,
513 # and cleared when the updated bitmap is flushed to the qcow2 image.
514 # The presence of this flag in an offline image means that the bitmap
515 # was not saved correctly after its last usage, and may contain
518 # @auto: The bitmap must reflect all changes of the virtual disk by any
519 # application that would write to this qcow2 file.
523 { 'enum': 'Qcow2BitmapInfoFlags',
524 'data': ['in-use', 'auto'] }
529 # Qcow2 bitmap information.
531 # @name: the name of the bitmap
533 # @granularity: granularity of the bitmap in bytes
535 # @flags: flags of the bitmap
539 { 'struct': 'Qcow2BitmapInfo',
540 'data': {'name': 'str', 'granularity': 'uint32',
541 'flags': ['Qcow2BitmapInfoFlags'] } }
544 # @BlockLatencyHistogramInfo:
546 # Block latency histogram.
548 # @boundaries: list of interval boundary values in nanoseconds, all greater
549 # than zero and in ascending order.
550 # For example, the list [10, 50, 100] produces the following
551 # histogram intervals: [0, 10), [10, 50), [50, 100), [100, +inf).
553 # @bins: list of io request counts corresponding to histogram intervals.
554 # len(@bins) = len(@boundaries) + 1
555 # For the example above, @bins may be something like [3, 1, 5, 2],
556 # and corresponding histogram looks like:
565 # +------------------
570 { 'struct': 'BlockLatencyHistogramInfo',
571 'data': {'boundaries': ['uint64'], 'bins': ['uint64'] } }
576 # Block device information. This structure describes a virtual device and
577 # the backing device associated with it.
579 # @device: The device name associated with the virtual device.
581 # @qdev: The qdev ID, or if no ID is assigned, the QOM path of the block
582 # device. (since 2.10)
584 # @type: This field is returned only for compatibility reasons, it should
585 # not be used (always returns 'unknown')
587 # @removable: True if the device supports removable media.
589 # @locked: True if the guest has locked this device from having its media
592 # @tray_open: True if the device's tray is open
593 # (only present if it has a tray)
595 # @dirty-bitmaps: dirty bitmaps information (only present if the
596 # driver has one or more dirty bitmaps) (Since 2.0)
598 # @io-status: @BlockDeviceIoStatus. Only present if the device
599 # supports it and the VM is configured to stop on errors
600 # (supported device models: virtio-blk, IDE, SCSI except
603 # @inserted: @BlockDeviceInfo describing the device if media is
607 # @deprecated: Member @dirty-bitmaps is deprecated. Use @inserted
608 # member @dirty-bitmaps instead.
612 { 'struct': 'BlockInfo',
613 'data': {'device': 'str', '*qdev': 'str', 'type': 'str', 'removable': 'bool',
614 'locked': 'bool', '*inserted': 'BlockDeviceInfo',
615 '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus',
616 '*dirty-bitmaps': { 'type': ['BlockDirtyInfo'],
617 'features': [ 'deprecated' ] } } }
622 # Image file size calculation information. This structure describes the size
623 # requirements for creating a new image file.
625 # The size requirements depend on the new image file format. File size always
626 # equals virtual disk size for the 'raw' format, even for sparse POSIX files.
627 # Compact formats such as 'qcow2' represent unallocated and zero regions
628 # efficiently so file size may be smaller than virtual disk size.
630 # The values are upper bounds that are guaranteed to fit the new image file.
631 # Subsequent modification, such as internal snapshot or further bitmap
632 # creation, may require additional space and is not covered here.
634 # @required: Size required for a new image file, in bytes, when copying just
635 # allocated guest-visible contents.
637 # @fully-allocated: Image file size, in bytes, once data has been written
638 # to all sectors, when copying just guest-visible contents.
640 # @bitmaps: Additional size required if all the top-level bitmap metadata
641 # in the source image were to be copied to the destination,
642 # present only when source and destination both support
643 # persistent bitmaps. (since 5.1)
647 { 'struct': 'BlockMeasureInfo',
648 'data': {'required': 'int', 'fully-allocated': 'int', '*bitmaps': 'int'} }
653 # Get a list of BlockInfo for all virtual block devices.
655 # Returns: a list of @BlockInfo describing each virtual block device. Filter
656 # nodes that were created implicitly are skipped over.
662 # -> { "execute": "query-block" }
667 # "device":"ide0-hd0",
674 # "file":"disks/test.qcow2",
675 # "backing_file_depth":1,
682 # "bps_max": 8000000,
689 # "detect_zeroes": "on",
690 # "write_threshold": 0,
692 # "filename":"disks/test.qcow2",
694 # "virtual-size":2048000,
695 # "backing_file":"base.qcow2",
696 # "full-backing-filename":"disks/base.qcow2",
697 # "backing-filename-format":"qcow2",
701 # "name": "snapshot1",
702 # "vm-state-size": 0,
703 # "date-sec": 10000200,
705 # "vm-clock-sec": 206,
706 # "vm-clock-nsec": 30
710 # "filename":"disks/base.qcow2",
712 # "virtual-size":2048000
716 # "qdev": "ide_disk",
721 # "device":"ide1-cd0",
724 # "qdev": "/machine/unattached/device[23]",
725 # "tray_open": false,
729 # "device":"floppy0",
732 # "qdev": "/machine/unattached/device[20]",
745 { 'command': 'query-block', 'returns': ['BlockInfo'] }
749 # @BlockDeviceTimedStats:
751 # Statistics of a block device during a given interval of time.
753 # @interval_length: Interval used for calculating the statistics,
756 # @min_rd_latency_ns: Minimum latency of read operations in the
757 # defined interval, in nanoseconds.
759 # @min_wr_latency_ns: Minimum latency of write operations in the
760 # defined interval, in nanoseconds.
762 # @min_flush_latency_ns: Minimum latency of flush operations in the
763 # defined interval, in nanoseconds.
765 # @max_rd_latency_ns: Maximum latency of read operations in the
766 # defined interval, in nanoseconds.
768 # @max_wr_latency_ns: Maximum latency of write operations in the
769 # defined interval, in nanoseconds.
771 # @max_flush_latency_ns: Maximum latency of flush operations in the
772 # defined interval, in nanoseconds.
774 # @avg_rd_latency_ns: Average latency of read operations in the
775 # defined interval, in nanoseconds.
777 # @avg_wr_latency_ns: Average latency of write operations in the
778 # defined interval, in nanoseconds.
780 # @avg_flush_latency_ns: Average latency of flush operations in the
781 # defined interval, in nanoseconds.
783 # @avg_rd_queue_depth: Average number of pending read operations
784 # in the defined interval.
786 # @avg_wr_queue_depth: Average number of pending write operations
787 # in the defined interval.
791 { 'struct': 'BlockDeviceTimedStats',
792 'data': { 'interval_length': 'int', 'min_rd_latency_ns': 'int',
793 'max_rd_latency_ns': 'int', 'avg_rd_latency_ns': 'int',
794 'min_wr_latency_ns': 'int', 'max_wr_latency_ns': 'int',
795 'avg_wr_latency_ns': 'int', 'min_flush_latency_ns': 'int',
796 'max_flush_latency_ns': 'int', 'avg_flush_latency_ns': 'int',
797 'avg_rd_queue_depth': 'number', 'avg_wr_queue_depth': 'number' } }
802 # Statistics of a virtual block device or a block backing device.
804 # @rd_bytes: The number of bytes read by the device.
806 # @wr_bytes: The number of bytes written by the device.
808 # @unmap_bytes: The number of bytes unmapped by the device (Since 4.2)
810 # @rd_operations: The number of read operations performed by the device.
812 # @wr_operations: The number of write operations performed by the device.
814 # @flush_operations: The number of cache flush operations performed by the
815 # device (since 0.15)
817 # @unmap_operations: The number of unmap operations performed by the device
820 # @rd_total_time_ns: Total time spent on reads in nanoseconds (since 0.15).
822 # @wr_total_time_ns: Total time spent on writes in nanoseconds (since 0.15).
824 # @flush_total_time_ns: Total time spent on cache flushes in nanoseconds
827 # @unmap_total_time_ns: Total time spent on unmap operations in nanoseconds
830 # @wr_highest_offset: The offset after the greatest byte written to the
831 # device. The intended use of this information is for
832 # growable sparse files (like qcow2) that are used on top
833 # of a physical device.
835 # @rd_merged: Number of read requests that have been merged into another
836 # request (Since 2.3).
838 # @wr_merged: Number of write requests that have been merged into another
839 # request (Since 2.3).
841 # @unmap_merged: Number of unmap requests that have been merged into another
842 # request (Since 4.2)
844 # @idle_time_ns: Time since the last I/O operation, in
845 # nanoseconds. If the field is absent it means that
846 # there haven't been any operations yet (Since 2.5).
848 # @failed_rd_operations: The number of failed read operations
849 # performed by the device (Since 2.5)
851 # @failed_wr_operations: The number of failed write operations
852 # performed by the device (Since 2.5)
854 # @failed_flush_operations: The number of failed flush operations
855 # performed by the device (Since 2.5)
857 # @failed_unmap_operations: The number of failed unmap operations performed
858 # by the device (Since 4.2)
860 # @invalid_rd_operations: The number of invalid read operations
861 # performed by the device (Since 2.5)
863 # @invalid_wr_operations: The number of invalid write operations
864 # performed by the device (Since 2.5)
866 # @invalid_flush_operations: The number of invalid flush operations
867 # performed by the device (Since 2.5)
869 # @invalid_unmap_operations: The number of invalid unmap operations performed
870 # by the device (Since 4.2)
872 # @account_invalid: Whether invalid operations are included in the
873 # last access statistics (Since 2.5)
875 # @account_failed: Whether failed operations are included in the
876 # latency and last access statistics (Since 2.5)
878 # @timed_stats: Statistics specific to the set of previously defined
879 # intervals of time (Since 2.5)
881 # @rd_latency_histogram: @BlockLatencyHistogramInfo. (Since 4.0)
883 # @wr_latency_histogram: @BlockLatencyHistogramInfo. (Since 4.0)
885 # @flush_latency_histogram: @BlockLatencyHistogramInfo. (Since 4.0)
889 { 'struct': 'BlockDeviceStats',
890 'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'unmap_bytes' : 'int',
891 'rd_operations': 'int', 'wr_operations': 'int',
892 'flush_operations': 'int', 'unmap_operations': 'int',
893 'rd_total_time_ns': 'int', 'wr_total_time_ns': 'int',
894 'flush_total_time_ns': 'int', 'unmap_total_time_ns': 'int',
895 'wr_highest_offset': 'int',
896 'rd_merged': 'int', 'wr_merged': 'int', 'unmap_merged': 'int',
897 '*idle_time_ns': 'int',
898 'failed_rd_operations': 'int', 'failed_wr_operations': 'int',
899 'failed_flush_operations': 'int', 'failed_unmap_operations': 'int',
900 'invalid_rd_operations': 'int', 'invalid_wr_operations': 'int',
901 'invalid_flush_operations': 'int', 'invalid_unmap_operations': 'int',
902 'account_invalid': 'bool', 'account_failed': 'bool',
903 'timed_stats': ['BlockDeviceTimedStats'],
904 '*rd_latency_histogram': 'BlockLatencyHistogramInfo',
905 '*wr_latency_histogram': 'BlockLatencyHistogramInfo',
906 '*flush_latency_histogram': 'BlockLatencyHistogramInfo' } }
909 # @BlockStatsSpecificFile:
911 # File driver statistics
913 # @discard-nb-ok: The number of successful discard operations performed by
916 # @discard-nb-failed: The number of failed discard operations performed by
919 # @discard-bytes-ok: The number of bytes discarded by the driver.
923 { 'struct': 'BlockStatsSpecificFile',
925 'discard-nb-ok': 'uint64',
926 'discard-nb-failed': 'uint64',
927 'discard-bytes-ok': 'uint64' } }
930 # @BlockStatsSpecificNvme:
932 # NVMe driver statistics
934 # @completion-errors: The number of completion errors.
936 # @aligned-accesses: The number of aligned accesses performed by
939 # @unaligned-accesses: The number of unaligned accesses performed by
944 { 'struct': 'BlockStatsSpecificNvme',
946 'completion-errors': 'uint64',
947 'aligned-accesses': 'uint64',
948 'unaligned-accesses': 'uint64' } }
951 # @BlockStatsSpecific:
953 # Block driver specific statistics
957 { 'union': 'BlockStatsSpecific',
958 'base': { 'driver': 'BlockdevDriver' },
959 'discriminator': 'driver',
961 'file': 'BlockStatsSpecificFile',
962 'host_device': 'BlockStatsSpecificFile',
963 'nvme': 'BlockStatsSpecificNvme' } }
968 # Statistics of a virtual block device or a block backing device.
970 # @device: If the stats are for a virtual block device, the name
971 # corresponding to the virtual block device.
973 # @node-name: The node name of the device. (Since 2.3)
975 # @qdev: The qdev ID, or if no ID is assigned, the QOM path of the block
976 # device. (since 3.0)
978 # @stats: A @BlockDeviceStats for the device.
980 # @driver-specific: Optional driver-specific stats. (Since 4.2)
982 # @parent: This describes the file block device if it has one.
983 # Contains recursively the statistics of the underlying
984 # protocol (e.g. the host file for a qcow2 image). If there is
985 # no underlying protocol, this field is omitted
987 # @backing: This describes the backing block device if it has one.
992 { 'struct': 'BlockStats',
993 'data': {'*device': 'str', '*qdev': 'str', '*node-name': 'str',
994 'stats': 'BlockDeviceStats',
995 '*driver-specific': 'BlockStatsSpecific',
996 '*parent': 'BlockStats',
997 '*backing': 'BlockStats'} }
1000 # @query-blockstats:
1002 # Query the @BlockStats for all virtual block devices.
1004 # @query-nodes: If true, the command will query all the block nodes
1005 # that have a node name, in a list which will include "parent"
1006 # information, but not "backing".
1007 # If false or omitted, the behavior is as before - query all the
1008 # device backends, recursively including their "parent" and
1009 # "backing". Filter nodes that were created implicitly are
1010 # skipped over in this mode. (Since 2.3)
1012 # Returns: A list of @BlockStats for each virtual block devices.
1018 # -> { "execute": "query-blockstats" }
1022 # "device":"ide0-hd0",
1025 # "wr_highest_offset":3686448128,
1026 # "wr_bytes":9786368,
1027 # "wr_operations":751,
1028 # "rd_bytes":122567168,
1029 # "rd_operations":36772
1030 # "wr_total_times_ns":313253456
1031 # "rd_total_times_ns":3465673657
1032 # "flush_total_times_ns":49653
1033 # "flush_operations":61,
1036 # "idle_time_ns":2953431879,
1037 # "account_invalid":true,
1038 # "account_failed":false
1042 # "wr_highest_offset":2821110784,
1043 # "wr_bytes":9786368,
1044 # "wr_operations":692,
1045 # "rd_bytes":122739200,
1046 # "rd_operations":36604
1047 # "flush_operations":51,
1048 # "wr_total_times_ns":313253456
1049 # "rd_total_times_ns":3465673657
1050 # "flush_total_times_ns":49653,
1053 # "idle_time_ns":2953431879,
1054 # "account_invalid":true,
1055 # "account_failed":false
1057 # "qdev": "/machine/unattached/device[23]"
1060 # "device":"ide1-cd0",
1062 # "wr_highest_offset":0,
1064 # "wr_operations":0,
1067 # "flush_operations":0,
1068 # "wr_total_times_ns":0
1069 # "rd_total_times_ns":0
1070 # "flush_total_times_ns":0,
1073 # "account_invalid":false,
1074 # "account_failed":false
1076 # "qdev": "/machine/unattached/device[24]"
1079 # "device":"floppy0",
1081 # "wr_highest_offset":0,
1083 # "wr_operations":0,
1086 # "flush_operations":0,
1087 # "wr_total_times_ns":0
1088 # "rd_total_times_ns":0
1089 # "flush_total_times_ns":0,
1092 # "account_invalid":false,
1093 # "account_failed":false
1095 # "qdev": "/machine/unattached/device[16]"
1100 # "wr_highest_offset":0,
1102 # "wr_operations":0,
1105 # "flush_operations":0,
1106 # "wr_total_times_ns":0
1107 # "rd_total_times_ns":0
1108 # "flush_total_times_ns":0,
1111 # "account_invalid":false,
1112 # "account_failed":false
1119 { 'command': 'query-blockstats',
1120 'data': { '*query-nodes': 'bool' },
1121 'returns': ['BlockStats'] }
1126 # An enumeration of possible behaviors for errors on I/O operations.
1127 # The exact meaning depends on whether the I/O was initiated by a guest
1130 # @report: for guest operations, report the error to the guest;
1131 # for jobs, cancel the job
1133 # @ignore: ignore the error, only report a QMP event (BLOCK_IO_ERROR
1134 # or BLOCK_JOB_ERROR). The backup, mirror and commit block jobs retry
1135 # the failing request later and may still complete successfully. The
1136 # stream block job continues to stream and will complete with an
1139 # @enospc: same as @stop on ENOSPC, same as @report otherwise.
1141 # @stop: for guest operations, stop the virtual machine;
1142 # for jobs, pause the job
1144 # @auto: inherit the error handling policy of the backend (since: 2.7)
1148 { 'enum': 'BlockdevOnError',
1149 'data': ['report', 'ignore', 'enospc', 'stop', 'auto'] }
1154 # An enumeration of possible behaviors for the initial synchronization
1155 # phase of storage mirroring.
1157 # @top: copies data in the topmost image to the destination
1159 # @full: copies data from all images to the destination
1161 # @none: only copy data written from now on
1163 # @incremental: only copy data described by the dirty bitmap. (since: 2.4)
1165 # @bitmap: only copy data described by the dirty bitmap. (since: 4.2)
1166 # Behavior on completion is determined by the BitmapSyncMode.
1170 { 'enum': 'MirrorSyncMode',
1171 'data': ['top', 'full', 'none', 'incremental', 'bitmap'] }
1176 # An enumeration of possible behaviors for the synchronization of a bitmap
1177 # when used for data copy operations.
1179 # @on-success: The bitmap is only synced when the operation is successful.
1180 # This is the behavior always used for 'INCREMENTAL' backups.
1182 # @never: The bitmap is never synchronized with the operation, and is
1183 # treated solely as a read-only manifest of blocks to copy.
1185 # @always: The bitmap is always synchronized with the operation,
1186 # regardless of whether or not the operation was successful.
1190 { 'enum': 'BitmapSyncMode',
1191 'data': ['on-success', 'never', 'always'] }
1196 # An enumeration whose values tell the mirror block job when to
1197 # trigger writes to the target.
1199 # @background: copy data in background only.
1201 # @write-blocking: when data is written to the source, write it
1202 # (synchronously) to the target as well. In
1203 # addition, data is copied in background just like in
1208 { 'enum': 'MirrorCopyMode',
1209 'data': ['background', 'write-blocking'] }
1214 # Information about a long-running block device operation.
1216 # @type: the job type ('stream' for image streaming)
1218 # @device: The job identifier. Originally the device name but other
1219 # values are allowed since QEMU 2.7
1221 # @len: Estimated @offset value at the completion of the job. This value can
1222 # arbitrarily change while the job is running, in both directions.
1224 # @offset: Progress made until now. The unit is arbitrary and the value can
1225 # only meaningfully be used for the ratio of @offset to @len. The
1226 # value is monotonically increasing.
1228 # @busy: false if the job is known to be in a quiescent state, with
1229 # no pending I/O. Since 1.3.
1231 # @paused: whether the job is paused or, if @busy is true, will
1232 # pause itself as soon as possible. Since 1.3.
1234 # @speed: the rate limit, bytes per second
1236 # @io-status: the status of the job (since 1.3)
1238 # @ready: true if the job may be completed (since 2.2)
1240 # @status: Current job state/status (since 2.12)
1242 # @auto-finalize: Job will finalize itself when PENDING, moving to
1243 # the CONCLUDED state. (since 2.12)
1245 # @auto-dismiss: Job will dismiss itself when CONCLUDED, moving to the NULL
1246 # state and disappearing from the query list. (since 2.12)
1248 # @error: Error information if the job did not complete successfully.
1249 # Not set if the job completed successfully. (since 2.12.1)
1253 { 'struct': 'BlockJobInfo',
1254 'data': {'type': 'str', 'device': 'str', 'len': 'int',
1255 'offset': 'int', 'busy': 'bool', 'paused': 'bool', 'speed': 'int',
1256 'io-status': 'BlockDeviceIoStatus', 'ready': 'bool',
1257 'status': 'JobStatus',
1258 'auto-finalize': 'bool', 'auto-dismiss': 'bool',
1262 # @query-block-jobs:
1264 # Return information about long-running block device operations.
1266 # Returns: a list of @BlockJobInfo for each active block job
1270 { 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }
1275 # This command sets the password of a block device that has not been open
1276 # with a password and requires one.
1278 # This command is now obsolete and will always return an error since 2.10
1281 { 'command': 'block_passwd',
1282 'data': { '*device': 'str',
1283 '*node-name': 'str',
1284 'password': 'str' } }
1289 # Resize a block image while a guest is running.
1291 # Either @device or @node-name must be set but not both.
1293 # @device: the name of the device to get the image resized
1295 # @node-name: graph node name to get the image resized (Since 2.0)
1297 # @size: new image size in bytes
1299 # Returns: - nothing on success
1300 # - If @device is not a valid block device, DeviceNotFound
1306 # -> { "execute": "block_resize",
1307 # "arguments": { "device": "scratch", "size": 1073741824 } }
1308 # <- { "return": {} }
1311 { 'command': 'block_resize',
1312 'data': { '*device': 'str',
1313 '*node-name': 'str',
1320 # An enumeration that tells QEMU how to set the backing file path in
1323 # @existing: QEMU should look for an existing image file.
1325 # @absolute-paths: QEMU should create a new image with absolute paths
1326 # for the backing file. If there is no backing file available, the new
1327 # image will not be backed either.
1331 { 'enum': 'NewImageMode',
1332 'data': [ 'existing', 'absolute-paths' ] }
1335 # @BlockdevSnapshotSync:
1337 # Either @device or @node-name must be set but not both.
1339 # @device: the name of the device to take a snapshot of.
1341 # @node-name: graph node name to generate the snapshot from (Since 2.0)
1343 # @snapshot-file: the target of the new overlay image. If the file
1344 # exists, or if it is a device, the overlay will be created in the
1345 # existing file/device. Otherwise, a new file will be created.
1347 # @snapshot-node-name: the graph node name of the new image (Since 2.0)
1349 # @format: the format of the overlay image, default is 'qcow2'.
1351 # @mode: whether and how QEMU should create a new image, default is
1354 { 'struct': 'BlockdevSnapshotSync',
1355 'data': { '*device': 'str', '*node-name': 'str',
1356 'snapshot-file': 'str', '*snapshot-node-name': 'str',
1357 '*format': 'str', '*mode': 'NewImageMode' } }
1360 # @BlockdevSnapshot:
1362 # @node: device or node name that will have a snapshot taken.
1364 # @overlay: reference to the existing block device that will become
1365 # the overlay of @node, as part of taking the snapshot.
1366 # It must not have a current backing file (this can be
1367 # achieved by passing "backing": null to blockdev-add).
1371 { 'struct': 'BlockdevSnapshot',
1372 'data': { 'node': 'str', 'overlay': 'str' } }
1377 # @job-id: identifier for the newly-created block job. If
1378 # omitted, the device name will be used. (Since 2.7)
1380 # @device: the device name or node-name of a root node which should be copied.
1382 # @sync: what parts of the disk image should be copied to the destination
1383 # (all the disk, only the sectors allocated in the topmost image, from a
1384 # dirty bitmap, or only new I/O).
1386 # @speed: the maximum speed, in bytes per second. The default is 0,
1389 # @bitmap: The name of a dirty bitmap to use.
1390 # Must be present if sync is "bitmap" or "incremental".
1391 # Can be present if sync is "full" or "top".
1392 # Must not be present otherwise.
1393 # (Since 2.4 (drive-backup), 3.1 (blockdev-backup))
1395 # @bitmap-mode: Specifies the type of data the bitmap should contain after
1396 # the operation concludes.
1397 # Must be present if a bitmap was provided,
1398 # Must NOT be present otherwise. (Since 4.2)
1400 # @compress: true to compress data, if the target format supports it.
1401 # (default: false) (since 2.8)
1403 # @on-source-error: the action to take on an error on the source,
1404 # default 'report'. 'stop' and 'enospc' can only be used
1405 # if the block device supports io-status (see BlockInfo).
1407 # @on-target-error: the action to take on an error on the target,
1408 # default 'report' (no limitations, since this applies to
1409 # a different block device than @device).
1411 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1412 # finished its work, waiting for @block-job-finalize before
1413 # making any block graph changes.
1414 # When true, this job will automatically
1415 # perform its abort or commit actions.
1416 # Defaults to true. (Since 2.12)
1418 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1419 # has completely ceased all work, and awaits @block-job-dismiss.
1420 # When true, this job will automatically disappear from the query
1421 # list without user intervention.
1422 # Defaults to true. (Since 2.12)
1424 # @filter-node-name: the node name that should be assigned to the
1425 # filter driver that the backup job inserts into the graph
1426 # above node specified by @drive. If this option is not given,
1427 # a node name is autogenerated. (Since: 4.2)
1429 # Note: @on-source-error and @on-target-error only affect background
1430 # I/O. If an error occurs during a guest write request, the device's
1431 # rerror/werror actions will be used.
1435 { 'struct': 'BackupCommon',
1436 'data': { '*job-id': 'str', 'device': 'str',
1437 'sync': 'MirrorSyncMode', '*speed': 'int',
1438 '*bitmap': 'str', '*bitmap-mode': 'BitmapSyncMode',
1439 '*compress': 'bool',
1440 '*on-source-error': 'BlockdevOnError',
1441 '*on-target-error': 'BlockdevOnError',
1442 '*auto-finalize': 'bool', '*auto-dismiss': 'bool',
1443 '*filter-node-name': 'str' } }
1448 # @target: the target of the new image. If the file exists, or if it
1449 # is a device, the existing file/device will be used as the new
1450 # destination. If it does not exist, a new file will be created.
1452 # @format: the format of the new destination, default is to
1453 # probe if @mode is 'existing', else the format of the source
1455 # @mode: whether and how QEMU should create a new image, default is
1460 { 'struct': 'DriveBackup',
1461 'base': 'BackupCommon',
1462 'data': { 'target': 'str',
1464 '*mode': 'NewImageMode' } }
1469 # @target: the device name or node-name of the backup target node.
1473 { 'struct': 'BlockdevBackup',
1474 'base': 'BackupCommon',
1475 'data': { 'target': 'str' } }
1478 # @blockdev-snapshot-sync:
1480 # Takes a synchronous snapshot of a block device.
1482 # For the arguments, see the documentation of BlockdevSnapshotSync.
1484 # Returns: - nothing on success
1485 # - If @device is not a valid block device, DeviceNotFound
1491 # -> { "execute": "blockdev-snapshot-sync",
1492 # "arguments": { "device": "ide-hd0",
1494 # "/some/place/my-image",
1495 # "format": "qcow2" } }
1496 # <- { "return": {} }
1499 { 'command': 'blockdev-snapshot-sync',
1500 'data': 'BlockdevSnapshotSync' }
1504 # @blockdev-snapshot:
1506 # Takes a snapshot of a block device.
1508 # Take a snapshot, by installing 'node' as the backing image of
1509 # 'overlay'. Additionally, if 'node' is associated with a block
1510 # device, the block device changes to using 'overlay' as its new active
1513 # For the arguments, see the documentation of BlockdevSnapshot.
1516 # @allow-write-only-overlay: If present, the check whether this operation is safe
1517 # was relaxed so that it can be used to change
1518 # backing file of a destination of a blockdev-mirror.
1525 # -> { "execute": "blockdev-add",
1526 # "arguments": { "driver": "qcow2",
1527 # "node-name": "node1534",
1528 # "file": { "driver": "file",
1529 # "filename": "hd1.qcow2" },
1530 # "backing": null } }
1532 # <- { "return": {} }
1534 # -> { "execute": "blockdev-snapshot",
1535 # "arguments": { "node": "ide-hd0",
1536 # "overlay": "node1534" } }
1537 # <- { "return": {} }
1540 { 'command': 'blockdev-snapshot',
1541 'data': 'BlockdevSnapshot',
1542 'features': [ 'allow-write-only-overlay' ] }
1545 # @change-backing-file:
1547 # Change the backing file in the image file metadata. This does not
1548 # cause QEMU to reopen the image file to reparse the backing filename
1549 # (it may, however, perform a reopen to change permissions from
1550 # r/o -> r/w -> r/o, if needed). The new backing file string is written
1551 # into the image file metadata, and the QEMU internal strings are
1554 # @image-node-name: The name of the block driver state node of the
1555 # image to modify. The "device" argument is used
1556 # to verify "image-node-name" is in the chain
1557 # described by "device".
1559 # @device: The device name or node-name of the root node that owns
1562 # @backing-file: The string to write as the backing file. This
1563 # string is not validated, so care should be taken
1564 # when specifying the string or the image chain may
1565 # not be able to be reopened again.
1567 # Returns: - Nothing on success
1568 # - If "device" does not exist or cannot be determined, DeviceNotFound
1572 { 'command': 'change-backing-file',
1573 'data': { 'device': 'str', 'image-node-name': 'str',
1574 'backing-file': 'str' } }
1579 # Live commit of data from overlay image nodes into backing nodes - i.e.,
1580 # writes data between 'top' and 'base' into 'base'.
1582 # If top == base, that is an error.
1583 # If top has no overlays on top of it, or if it is in use by a writer,
1584 # the job will not be completed by itself. The user needs to complete
1585 # the job with the block-job-complete command after getting the ready
1586 # event. (Since 2.0)
1588 # If the base image is smaller than top, then the base image will be
1589 # resized to be the same size as top. If top is smaller than the base
1590 # image, the base will not be truncated. If you want the base image
1591 # size to match the size of the smaller top, you can safely truncate
1592 # it yourself once the commit operation successfully completes.
1594 # @job-id: identifier for the newly-created block job. If
1595 # omitted, the device name will be used. (Since 2.7)
1597 # @device: the device name or node-name of a root node
1599 # @base-node: The node name of the backing image to write data into.
1600 # If not specified, this is the deepest backing image.
1603 # @base: Same as @base-node, except that it is a file name rather than a node
1604 # name. This must be the exact filename string that was used to open the
1605 # node; other strings, even if addressing the same file, are not
1608 # @top-node: The node name of the backing image within the image chain
1609 # which contains the topmost data to be committed down. If
1610 # not specified, this is the active layer. (since: 3.1)
1612 # @top: Same as @top-node, except that it is a file name rather than a node
1613 # name. This must be the exact filename string that was used to open the
1614 # node; other strings, even if addressing the same file, are not
1617 # @backing-file: The backing file string to write into the overlay
1618 # image of 'top'. If 'top' does not have an overlay
1619 # image, or if 'top' is in use by a writer, specifying
1620 # a backing file string is an error.
1622 # This filename is not validated. If a pathname string
1623 # is such that it cannot be resolved by QEMU, that
1624 # means that subsequent QMP or HMP commands must use
1625 # node-names for the image in question, as filename
1626 # lookup methods will fail.
1628 # If not specified, QEMU will automatically determine
1629 # the backing file string to use, or error out if
1630 # there is no obvious choice. Care should be taken
1631 # when specifying the string, to specify a valid
1632 # filename or protocol.
1635 # @speed: the maximum speed, in bytes per second
1637 # @on-error: the action to take on an error. 'ignore' means that the request
1638 # should be retried. (default: report; Since: 5.0)
1640 # @filter-node-name: the node name that should be assigned to the
1641 # filter driver that the commit job inserts into the graph
1642 # above @top. If this option is not given, a node name is
1643 # autogenerated. (Since: 2.9)
1645 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1646 # finished its work, waiting for @block-job-finalize before
1647 # making any block graph changes.
1648 # When true, this job will automatically
1649 # perform its abort or commit actions.
1650 # Defaults to true. (Since 3.1)
1652 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1653 # has completely ceased all work, and awaits @block-job-dismiss.
1654 # When true, this job will automatically disappear from the query
1655 # list without user intervention.
1656 # Defaults to true. (Since 3.1)
1659 # @deprecated: Members @base and @top are deprecated. Use @base-node
1660 # and @top-node instead.
1662 # Returns: - Nothing on success
1663 # - If @device does not exist, DeviceNotFound
1664 # - Any other error returns a GenericError.
1670 # -> { "execute": "block-commit",
1671 # "arguments": { "device": "virtio0",
1672 # "top": "/tmp/snap1.qcow2" } }
1673 # <- { "return": {} }
1676 { 'command': 'block-commit',
1677 'data': { '*job-id': 'str', 'device': 'str', '*base-node': 'str',
1678 '*base': { 'type': 'str', 'features': [ 'deprecated' ] },
1680 '*top': { 'type': 'str', 'features': [ 'deprecated' ] },
1681 '*backing-file': 'str', '*speed': 'int',
1682 '*on-error': 'BlockdevOnError',
1683 '*filter-node-name': 'str',
1684 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1689 # Start a point-in-time copy of a block device to a new destination. The
1690 # status of ongoing drive-backup operations can be checked with
1691 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1692 # The operation can be stopped before it has completed using the
1693 # block-job-cancel command.
1695 # Returns: - nothing on success
1696 # - If @device is not a valid block device, GenericError
1702 # -> { "execute": "drive-backup",
1703 # "arguments": { "device": "drive0",
1705 # "target": "backup.img" } }
1706 # <- { "return": {} }
1709 { 'command': 'drive-backup', 'boxed': true,
1710 'data': 'DriveBackup' }
1715 # Start a point-in-time copy of a block device to a new destination. The
1716 # status of ongoing blockdev-backup operations can be checked with
1717 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1718 # The operation can be stopped before it has completed using the
1719 # block-job-cancel command.
1721 # Returns: - nothing on success
1722 # - If @device is not a valid block device, DeviceNotFound
1727 # -> { "execute": "blockdev-backup",
1728 # "arguments": { "device": "src-id",
1730 # "target": "tgt-id" } }
1731 # <- { "return": {} }
1734 { 'command': 'blockdev-backup', 'boxed': true,
1735 'data': 'BlockdevBackup' }
1739 # @query-named-block-nodes:
1741 # Get the named block driver list
1743 # @flat: Omit the nested data about backing image ("backing-image" key) if true.
1744 # Default is false (Since 5.0)
1746 # Returns: the list of BlockDeviceInfo
1752 # -> { "execute": "query-named-block-nodes" }
1753 # <- { "return": [ { "ro":false,
1755 # "encrypted":false,
1756 # "file":"disks/test.qcow2",
1757 # "node-name": "my-node",
1758 # "backing_file_depth":1,
1765 # "bps_max": 8000000,
1772 # "write_threshold": 0,
1774 # "filename":"disks/test.qcow2",
1776 # "virtual-size":2048000,
1777 # "backing_file":"base.qcow2",
1778 # "full-backing-filename":"disks/base.qcow2",
1779 # "backing-filename-format":"qcow2",
1783 # "name": "snapshot1",
1784 # "vm-state-size": 0,
1785 # "date-sec": 10000200,
1787 # "vm-clock-sec": 206,
1788 # "vm-clock-nsec": 30
1792 # "filename":"disks/base.qcow2",
1794 # "virtual-size":2048000
1799 { 'command': 'query-named-block-nodes',
1800 'returns': [ 'BlockDeviceInfo' ],
1801 'data': { '*flat': 'bool' } }
1804 # @XDbgBlockGraphNodeType:
1806 # @block-backend: corresponds to BlockBackend
1808 # @block-job: corresponds to BlockJob
1810 # @block-driver: corresponds to BlockDriverState
1814 { 'enum': 'XDbgBlockGraphNodeType',
1815 'data': [ 'block-backend', 'block-job', 'block-driver' ] }
1818 # @XDbgBlockGraphNode:
1820 # @id: Block graph node identifier. This @id is generated only for
1821 # x-debug-query-block-graph and does not relate to any other identifiers in
1824 # @type: Type of graph node. Can be one of block-backend, block-job or
1825 # block-driver-state.
1827 # @name: Human readable name of the node. Corresponds to node-name for
1828 # block-driver-state nodes; is not guaranteed to be unique in the whole
1829 # graph (with block-jobs and block-backends).
1833 { 'struct': 'XDbgBlockGraphNode',
1834 'data': { 'id': 'uint64', 'type': 'XDbgBlockGraphNodeType', 'name': 'str' } }
1839 # Enum of base block permissions.
1841 # @consistent-read: A user that has the "permission" of consistent reads is
1842 # guaranteed that their view of the contents of the block
1843 # device is complete and self-consistent, representing the
1844 # contents of a disk at a specific point.
1845 # For most block devices (including their backing files) this
1846 # is true, but the property cannot be maintained in a few
1847 # situations like for intermediate nodes of a commit block
1850 # @write: This permission is required to change the visible disk contents.
1852 # @write-unchanged: This permission (which is weaker than BLK_PERM_WRITE) is
1853 # both enough and required for writes to the block node when
1854 # the caller promises that the visible disk content doesn't
1856 # As the BLK_PERM_WRITE permission is strictly stronger,
1857 # either is sufficient to perform an unchanging write.
1859 # @resize: This permission is required to change the size of a block node.
1861 # @graph-mod: This permission is required to change the node that this
1862 # BdrvChild points to.
1866 { 'enum': 'BlockPermission',
1867 'data': [ 'consistent-read', 'write', 'write-unchanged', 'resize',
1870 # @XDbgBlockGraphEdge:
1872 # Block Graph edge description for x-debug-query-block-graph.
1874 # @parent: parent id
1878 # @name: name of the relation (examples are 'file' and 'backing')
1880 # @perm: granted permissions for the parent operating on the child
1882 # @shared-perm: permissions that can still be granted to other users of the
1883 # child while it is still attached to this parent
1887 { 'struct': 'XDbgBlockGraphEdge',
1888 'data': { 'parent': 'uint64', 'child': 'uint64',
1889 'name': 'str', 'perm': [ 'BlockPermission' ],
1890 'shared-perm': [ 'BlockPermission' ] } }
1895 # Block Graph - list of nodes and list of edges.
1899 { 'struct': 'XDbgBlockGraph',
1900 'data': { 'nodes': ['XDbgBlockGraphNode'], 'edges': ['XDbgBlockGraphEdge'] } }
1903 # @x-debug-query-block-graph:
1905 # Get the block graph.
1909 { 'command': 'x-debug-query-block-graph', 'returns': 'XDbgBlockGraph' }
1914 # Start mirroring a block device's writes to a new destination. target
1915 # specifies the target of the new image. If the file exists, or if it
1916 # is a device, it will be used as the new destination for writes. If
1917 # it does not exist, a new file will be created. format specifies the
1918 # format of the mirror image, default is to probe if mode='existing',
1919 # else the format of the source.
1921 # Returns: - nothing on success
1922 # - If @device is not a valid block device, GenericError
1928 # -> { "execute": "drive-mirror",
1929 # "arguments": { "device": "ide-hd0",
1930 # "target": "/some/place/my-image",
1932 # "format": "qcow2" } }
1933 # <- { "return": {} }
1936 { 'command': 'drive-mirror', 'boxed': true,
1937 'data': 'DriveMirror' }
1942 # A set of parameters describing drive mirror setup.
1944 # @job-id: identifier for the newly-created block job. If
1945 # omitted, the device name will be used. (Since 2.7)
1947 # @device: the device name or node-name of a root node whose writes should be
1950 # @target: the target of the new image. If the file exists, or if it
1951 # is a device, the existing file/device will be used as the new
1952 # destination. If it does not exist, a new file will be created.
1954 # @format: the format of the new destination, default is to
1955 # probe if @mode is 'existing', else the format of the source
1957 # @node-name: the new block driver state node name in the graph
1960 # @replaces: with sync=full graph node name to be replaced by the new
1961 # image when a whole image copy is done. This can be used to repair
1962 # broken Quorum files. By default, @device is replaced, although
1963 # implicitly created filters on it are kept. (Since 2.1)
1965 # @mode: whether and how QEMU should create a new image, default is
1968 # @speed: the maximum speed, in bytes per second
1970 # @sync: what parts of the disk image should be copied to the destination
1971 # (all the disk, only the sectors allocated in the topmost image, or
1974 # @granularity: granularity of the dirty bitmap, default is 64K
1975 # if the image format doesn't have clusters, 4K if the clusters
1976 # are smaller than that, else the cluster size. Must be a
1977 # power of 2 between 512 and 64M (since 1.4).
1979 # @buf-size: maximum amount of data in flight from source to
1980 # target (since 1.4).
1982 # @on-source-error: the action to take on an error on the source,
1983 # default 'report'. 'stop' and 'enospc' can only be used
1984 # if the block device supports io-status (see BlockInfo).
1986 # @on-target-error: the action to take on an error on the target,
1987 # default 'report' (no limitations, since this applies to
1988 # a different block device than @device).
1989 # @unmap: Whether to try to unmap target sectors where source has
1990 # only zero. If true, and target unallocated sectors will read as zero,
1991 # target image sectors will be unmapped; otherwise, zeroes will be
1992 # written. Both will result in identical contents.
1993 # Default is true. (Since 2.4)
1995 # @copy-mode: when to copy data to the destination; defaults to 'background'
1998 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1999 # finished its work, waiting for @block-job-finalize before
2000 # making any block graph changes.
2001 # When true, this job will automatically
2002 # perform its abort or commit actions.
2003 # Defaults to true. (Since 3.1)
2005 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
2006 # has completely ceased all work, and awaits @block-job-dismiss.
2007 # When true, this job will automatically disappear from the query
2008 # list without user intervention.
2009 # Defaults to true. (Since 3.1)
2012 { 'struct': 'DriveMirror',
2013 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
2014 '*format': 'str', '*node-name': 'str', '*replaces': 'str',
2015 'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
2016 '*speed': 'int', '*granularity': 'uint32',
2017 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
2018 '*on-target-error': 'BlockdevOnError',
2019 '*unmap': 'bool', '*copy-mode': 'MirrorCopyMode',
2020 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
2023 # @BlockDirtyBitmap:
2025 # @node: name of device/node which the bitmap is tracking
2027 # @name: name of the dirty bitmap
2031 { 'struct': 'BlockDirtyBitmap',
2032 'data': { 'node': 'str', 'name': 'str' } }
2035 # @BlockDirtyBitmapAdd:
2037 # @node: name of device/node which the bitmap is tracking
2039 # @name: name of the dirty bitmap (must be less than 1024 bytes)
2041 # @granularity: the bitmap granularity, default is 64k for
2042 # block-dirty-bitmap-add
2044 # @persistent: the bitmap is persistent, i.e. it will be saved to the
2045 # corresponding block device image file on its close. For now only
2046 # Qcow2 disks support persistent bitmaps. Default is false for
2047 # block-dirty-bitmap-add. (Since: 2.10)
2049 # @disabled: the bitmap is created in the disabled state, which means that
2050 # it will not track drive changes. The bitmap may be enabled with
2051 # block-dirty-bitmap-enable. Default is false. (Since: 4.0)
2055 { 'struct': 'BlockDirtyBitmapAdd',
2056 'data': { 'node': 'str', 'name': 'str', '*granularity': 'uint32',
2057 '*persistent': 'bool', '*disabled': 'bool' } }
2060 # @BlockDirtyBitmapMergeSource:
2062 # @local: name of the bitmap, attached to the same node as target bitmap.
2064 # @external: bitmap with specified node
2068 { 'alternate': 'BlockDirtyBitmapMergeSource',
2069 'data': { 'local': 'str',
2070 'external': 'BlockDirtyBitmap' } }
2073 # @BlockDirtyBitmapMerge:
2075 # @node: name of device/node which the @target bitmap is tracking
2077 # @target: name of the destination dirty bitmap
2079 # @bitmaps: name(s) of the source dirty bitmap(s) at @node and/or fully
2080 # specified BlockDirtyBitmap elements. The latter are supported
2085 { 'struct': 'BlockDirtyBitmapMerge',
2086 'data': { 'node': 'str', 'target': 'str',
2087 'bitmaps': ['BlockDirtyBitmapMergeSource'] } }
2090 # @block-dirty-bitmap-add:
2092 # Create a dirty bitmap with a name on the node, and start tracking the writes.
2094 # Returns: - nothing on success
2095 # - If @node is not a valid block device or node, DeviceNotFound
2096 # - If @name is already taken, GenericError with an explanation
2102 # -> { "execute": "block-dirty-bitmap-add",
2103 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2104 # <- { "return": {} }
2107 { 'command': 'block-dirty-bitmap-add',
2108 'data': 'BlockDirtyBitmapAdd' }
2111 # @block-dirty-bitmap-remove:
2113 # Stop write tracking and remove the dirty bitmap that was created
2114 # with block-dirty-bitmap-add. If the bitmap is persistent, remove it from its
2117 # Returns: - nothing on success
2118 # - If @node is not a valid block device or node, DeviceNotFound
2119 # - If @name is not found, GenericError with an explanation
2120 # - if @name is frozen by an operation, GenericError
2126 # -> { "execute": "block-dirty-bitmap-remove",
2127 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2128 # <- { "return": {} }
2131 { 'command': 'block-dirty-bitmap-remove',
2132 'data': 'BlockDirtyBitmap' }
2135 # @block-dirty-bitmap-clear:
2137 # Clear (reset) a dirty bitmap on the device, so that an incremental
2138 # backup from this point in time forward will only backup clusters
2139 # modified after this clear operation.
2141 # Returns: - nothing on success
2142 # - If @node is not a valid block device, DeviceNotFound
2143 # - If @name is not found, GenericError with an explanation
2149 # -> { "execute": "block-dirty-bitmap-clear",
2150 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2151 # <- { "return": {} }
2154 { 'command': 'block-dirty-bitmap-clear',
2155 'data': 'BlockDirtyBitmap' }
2158 # @block-dirty-bitmap-enable:
2160 # Enables a dirty bitmap so that it will begin tracking disk changes.
2162 # Returns: - nothing on success
2163 # - If @node is not a valid block device, DeviceNotFound
2164 # - If @name is not found, GenericError with an explanation
2170 # -> { "execute": "block-dirty-bitmap-enable",
2171 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2172 # <- { "return": {} }
2175 { 'command': 'block-dirty-bitmap-enable',
2176 'data': 'BlockDirtyBitmap' }
2179 # @block-dirty-bitmap-disable:
2181 # Disables a dirty bitmap so that it will stop tracking disk changes.
2183 # Returns: - nothing on success
2184 # - If @node is not a valid block device, DeviceNotFound
2185 # - If @name is not found, GenericError with an explanation
2191 # -> { "execute": "block-dirty-bitmap-disable",
2192 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2193 # <- { "return": {} }
2196 { 'command': 'block-dirty-bitmap-disable',
2197 'data': 'BlockDirtyBitmap' }
2200 # @block-dirty-bitmap-merge:
2202 # Merge dirty bitmaps listed in @bitmaps to the @target dirty bitmap.
2203 # Dirty bitmaps in @bitmaps will be unchanged, except if it also appears
2204 # as the @target bitmap. Any bits already set in @target will still be
2205 # set after the merge, i.e., this operation does not clear the target.
2206 # On error, @target is unchanged.
2208 # The resulting bitmap will count as dirty any clusters that were dirty in any
2209 # of the source bitmaps. This can be used to achieve backup checkpoints, or in
2210 # simpler usages, to copy bitmaps.
2212 # Returns: - nothing on success
2213 # - If @node is not a valid block device, DeviceNotFound
2214 # - If any bitmap in @bitmaps or @target is not found, GenericError
2215 # - If any of the bitmaps have different sizes or granularities,
2222 # -> { "execute": "block-dirty-bitmap-merge",
2223 # "arguments": { "node": "drive0", "target": "bitmap0",
2224 # "bitmaps": ["bitmap1"] } }
2225 # <- { "return": {} }
2228 { 'command': 'block-dirty-bitmap-merge',
2229 'data': 'BlockDirtyBitmapMerge' }
2232 # @BlockDirtyBitmapSha256:
2234 # SHA256 hash of dirty bitmap data
2236 # @sha256: ASCII representation of SHA256 bitmap hash
2240 { 'struct': 'BlockDirtyBitmapSha256',
2241 'data': {'sha256': 'str'} }
2244 # @x-debug-block-dirty-bitmap-sha256:
2246 # Get bitmap SHA256.
2248 # Returns: - BlockDirtyBitmapSha256 on success
2249 # - If @node is not a valid block device, DeviceNotFound
2250 # - If @name is not found or if hashing has failed, GenericError with an
2255 { 'command': 'x-debug-block-dirty-bitmap-sha256',
2256 'data': 'BlockDirtyBitmap', 'returns': 'BlockDirtyBitmapSha256' }
2261 # Start mirroring a block device's writes to a new destination.
2263 # @job-id: identifier for the newly-created block job. If
2264 # omitted, the device name will be used. (Since 2.7)
2266 # @device: The device name or node-name of a root node whose writes should be
2269 # @target: the id or node-name of the block device to mirror to. This mustn't be
2270 # attached to guest.
2272 # @replaces: with sync=full graph node name to be replaced by the new
2273 # image when a whole image copy is done. This can be used to repair
2274 # broken Quorum files. By default, @device is replaced, although
2275 # implicitly created filters on it are kept.
2277 # @speed: the maximum speed, in bytes per second
2279 # @sync: what parts of the disk image should be copied to the destination
2280 # (all the disk, only the sectors allocated in the topmost image, or
2283 # @granularity: granularity of the dirty bitmap, default is 64K
2284 # if the image format doesn't have clusters, 4K if the clusters
2285 # are smaller than that, else the cluster size. Must be a
2286 # power of 2 between 512 and 64M
2288 # @buf-size: maximum amount of data in flight from source to
2291 # @on-source-error: the action to take on an error on the source,
2292 # default 'report'. 'stop' and 'enospc' can only be used
2293 # if the block device supports io-status (see BlockInfo).
2295 # @on-target-error: the action to take on an error on the target,
2296 # default 'report' (no limitations, since this applies to
2297 # a different block device than @device).
2299 # @filter-node-name: the node name that should be assigned to the
2300 # filter driver that the mirror job inserts into the graph
2301 # above @device. If this option is not given, a node name is
2302 # autogenerated. (Since: 2.9)
2304 # @copy-mode: when to copy data to the destination; defaults to 'background'
2307 # @auto-finalize: When false, this job will wait in a PENDING state after it has
2308 # finished its work, waiting for @block-job-finalize before
2309 # making any block graph changes.
2310 # When true, this job will automatically
2311 # perform its abort or commit actions.
2312 # Defaults to true. (Since 3.1)
2314 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
2315 # has completely ceased all work, and awaits @block-job-dismiss.
2316 # When true, this job will automatically disappear from the query
2317 # list without user intervention.
2318 # Defaults to true. (Since 3.1)
2319 # Returns: nothing on success.
2325 # -> { "execute": "blockdev-mirror",
2326 # "arguments": { "device": "ide-hd0",
2327 # "target": "target0",
2328 # "sync": "full" } }
2329 # <- { "return": {} }
2332 { 'command': 'blockdev-mirror',
2333 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
2335 'sync': 'MirrorSyncMode',
2336 '*speed': 'int', '*granularity': 'uint32',
2337 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
2338 '*on-target-error': 'BlockdevOnError',
2339 '*filter-node-name': 'str',
2340 '*copy-mode': 'MirrorCopyMode',
2341 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
2346 # A set of parameters describing block throttling.
2348 # @device: Block device name
2350 # @id: The name or QOM path of the guest device (since: 2.8)
2352 # @bps: total throughput limit in bytes per second
2354 # @bps_rd: read throughput limit in bytes per second
2356 # @bps_wr: write throughput limit in bytes per second
2358 # @iops: total I/O operations per second
2360 # @iops_rd: read I/O operations per second
2362 # @iops_wr: write I/O operations per second
2364 # @bps_max: total throughput limit during bursts,
2365 # in bytes (Since 1.7)
2367 # @bps_rd_max: read throughput limit during bursts,
2368 # in bytes (Since 1.7)
2370 # @bps_wr_max: write throughput limit during bursts,
2371 # in bytes (Since 1.7)
2373 # @iops_max: total I/O operations per second during bursts,
2374 # in bytes (Since 1.7)
2376 # @iops_rd_max: read I/O operations per second during bursts,
2377 # in bytes (Since 1.7)
2379 # @iops_wr_max: write I/O operations per second during bursts,
2380 # in bytes (Since 1.7)
2382 # @bps_max_length: maximum length of the @bps_max burst
2383 # period, in seconds. It must only
2384 # be set if @bps_max is set as well.
2385 # Defaults to 1. (Since 2.6)
2387 # @bps_rd_max_length: maximum length of the @bps_rd_max
2388 # burst period, in seconds. It must only
2389 # be set if @bps_rd_max is set as well.
2390 # Defaults to 1. (Since 2.6)
2392 # @bps_wr_max_length: maximum length of the @bps_wr_max
2393 # burst period, in seconds. It must only
2394 # be set if @bps_wr_max is set as well.
2395 # Defaults to 1. (Since 2.6)
2397 # @iops_max_length: maximum length of the @iops burst
2398 # period, in seconds. It must only
2399 # be set if @iops_max is set as well.
2400 # Defaults to 1. (Since 2.6)
2402 # @iops_rd_max_length: maximum length of the @iops_rd_max
2403 # burst period, in seconds. It must only
2404 # be set if @iops_rd_max is set as well.
2405 # Defaults to 1. (Since 2.6)
2407 # @iops_wr_max_length: maximum length of the @iops_wr_max
2408 # burst period, in seconds. It must only
2409 # be set if @iops_wr_max is set as well.
2410 # Defaults to 1. (Since 2.6)
2412 # @iops_size: an I/O size in bytes (Since 1.7)
2414 # @group: throttle group name (Since 2.4)
2417 # @deprecated: Member @device is deprecated. Use @id instead.
2421 { 'struct': 'BlockIOThrottle',
2422 'data': { '*device': { 'type': 'str', 'features': [ 'deprecated' ] },
2423 '*id': 'str', 'bps': 'int', 'bps_rd': 'int',
2424 'bps_wr': 'int', 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
2425 '*bps_max': 'int', '*bps_rd_max': 'int',
2426 '*bps_wr_max': 'int', '*iops_max': 'int',
2427 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
2428 '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
2429 '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
2430 '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
2431 '*iops_size': 'int', '*group': 'str' } }
2436 # Limit parameters for throttling.
2437 # Since some limit combinations are illegal, limits should always be set in one
2438 # transaction. All fields are optional. When setting limits, if a field is
2439 # missing the current value is not changed.
2441 # @iops-total: limit total I/O operations per second
2442 # @iops-total-max: I/O operations burst
2443 # @iops-total-max-length: length of the iops-total-max burst period, in seconds
2444 # It must only be set if @iops-total-max is set as well.
2445 # @iops-read: limit read operations per second
2446 # @iops-read-max: I/O operations read burst
2447 # @iops-read-max-length: length of the iops-read-max burst period, in seconds
2448 # It must only be set if @iops-read-max is set as well.
2449 # @iops-write: limit write operations per second
2450 # @iops-write-max: I/O operations write burst
2451 # @iops-write-max-length: length of the iops-write-max burst period, in seconds
2452 # It must only be set if @iops-write-max is set as well.
2453 # @bps-total: limit total bytes per second
2454 # @bps-total-max: total bytes burst
2455 # @bps-total-max-length: length of the bps-total-max burst period, in seconds.
2456 # It must only be set if @bps-total-max is set as well.
2457 # @bps-read: limit read bytes per second
2458 # @bps-read-max: total bytes read burst
2459 # @bps-read-max-length: length of the bps-read-max burst period, in seconds
2460 # It must only be set if @bps-read-max is set as well.
2461 # @bps-write: limit write bytes per second
2462 # @bps-write-max: total bytes write burst
2463 # @bps-write-max-length: length of the bps-write-max burst period, in seconds
2464 # It must only be set if @bps-write-max is set as well.
2465 # @iops-size: when limiting by iops max size of an I/O in bytes
2469 { 'struct': 'ThrottleLimits',
2470 'data': { '*iops-total' : 'int', '*iops-total-max' : 'int',
2471 '*iops-total-max-length' : 'int', '*iops-read' : 'int',
2472 '*iops-read-max' : 'int', '*iops-read-max-length' : 'int',
2473 '*iops-write' : 'int', '*iops-write-max' : 'int',
2474 '*iops-write-max-length' : 'int', '*bps-total' : 'int',
2475 '*bps-total-max' : 'int', '*bps-total-max-length' : 'int',
2476 '*bps-read' : 'int', '*bps-read-max' : 'int',
2477 '*bps-read-max-length' : 'int', '*bps-write' : 'int',
2478 '*bps-write-max' : 'int', '*bps-write-max-length' : 'int',
2479 '*iops-size' : 'int' } }
2484 # Copy data from a backing file into a block device.
2486 # The block streaming operation is performed in the background until the entire
2487 # backing file has been copied. This command returns immediately once streaming
2488 # has started. The status of ongoing block streaming operations can be checked
2489 # with query-block-jobs. The operation can be stopped before it has completed
2490 # using the block-job-cancel command.
2492 # The node that receives the data is called the top image, can be located in
2493 # any part of the chain (but always above the base image; see below) and can be
2494 # specified using its device or node name. Earlier qemu versions only allowed
2495 # 'device' to name the top level node; presence of the 'base-node' parameter
2496 # during introspection can be used as a witness of the enhanced semantics
2499 # If a base file is specified then sectors are not copied from that base file and
2500 # its backing chain. This can be used to stream a subset of the backing file
2501 # chain instead of flattening the entire image.
2502 # When streaming completes the image file will have the base file as its backing
2503 # file, unless that node was changed while the job was running. In that case,
2504 # base's parent's backing (or filtered, whichever exists) child (i.e., base at
2505 # the beginning of the job) will be the new backing file.
2507 # On successful completion the image file is updated to drop the backing file
2508 # and the BLOCK_JOB_COMPLETED event is emitted.
2510 # In case @device is a filter node, block-stream modifies the first non-filter
2511 # overlay node below it to point to the new backing node instead of modifying
2514 # @job-id: identifier for the newly-created block job. If
2515 # omitted, the device name will be used. (Since 2.7)
2517 # @device: the device or node name of the top image
2519 # @base: the common backing file name.
2520 # It cannot be set if @base-node is also set.
2522 # @base-node: the node name of the backing file.
2523 # It cannot be set if @base is also set. (Since 2.8)
2525 # @backing-file: The backing file string to write into the top
2526 # image. This filename is not validated.
2528 # If a pathname string is such that it cannot be
2529 # resolved by QEMU, that means that subsequent QMP or
2530 # HMP commands must use node-names for the image in
2531 # question, as filename lookup methods will fail.
2533 # If not specified, QEMU will automatically determine
2534 # the backing file string to use, or error out if there
2535 # is no obvious choice. Care should be taken when
2536 # specifying the string, to specify a valid filename or
2540 # @speed: the maximum speed, in bytes per second
2542 # @on-error: the action to take on an error (default report).
2543 # 'stop' and 'enospc' can only be used if the block device
2544 # supports io-status (see BlockInfo). Since 1.3.
2546 # @auto-finalize: When false, this job will wait in a PENDING state after it has
2547 # finished its work, waiting for @block-job-finalize before
2548 # making any block graph changes.
2549 # When true, this job will automatically
2550 # perform its abort or commit actions.
2551 # Defaults to true. (Since 3.1)
2553 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
2554 # has completely ceased all work, and awaits @block-job-dismiss.
2555 # When true, this job will automatically disappear from the query
2556 # list without user intervention.
2557 # Defaults to true. (Since 3.1)
2559 # Returns: - Nothing on success.
2560 # - If @device does not exist, DeviceNotFound.
2566 # -> { "execute": "block-stream",
2567 # "arguments": { "device": "virtio0",
2568 # "base": "/tmp/master.qcow2" } }
2569 # <- { "return": {} }
2572 { 'command': 'block-stream',
2573 'data': { '*job-id': 'str', 'device': 'str', '*base': 'str',
2574 '*base-node': 'str', '*backing-file': 'str', '*speed': 'int',
2575 '*on-error': 'BlockdevOnError',
2576 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
2579 # @block-job-set-speed:
2581 # Set maximum speed for a background block operation.
2583 # This command can only be issued when there is an active block job.
2585 # Throttling can be disabled by setting the speed to 0.
2587 # @device: The job identifier. This used to be a device name (hence
2588 # the name of the parameter), but since QEMU 2.7 it can have
2591 # @speed: the maximum speed, in bytes per second, or 0 for unlimited.
2594 # Returns: - Nothing on success
2595 # - If no background operation is active on this device, DeviceNotActive
2599 { 'command': 'block-job-set-speed',
2600 'data': { 'device': 'str', 'speed': 'int' } }
2603 # @block-job-cancel:
2605 # Stop an active background block operation.
2607 # This command returns immediately after marking the active background block
2608 # operation for cancellation. It is an error to call this command if no
2609 # operation is in progress.
2611 # The operation will cancel as soon as possible and then emit the
2612 # BLOCK_JOB_CANCELLED event. Before that happens the job is still visible when
2613 # enumerated using query-block-jobs.
2615 # Note that if you issue 'block-job-cancel' after 'drive-mirror' has indicated
2616 # (via the event BLOCK_JOB_READY) that the source and destination are
2617 # synchronized, then the event triggered by this command changes to
2618 # BLOCK_JOB_COMPLETED, to indicate that the mirroring has ended and the
2619 # destination now has a point-in-time copy tied to the time of the cancellation.
2621 # For streaming, the image file retains its backing file unless the streaming
2622 # operation happens to complete just as it is being cancelled. A new streaming
2623 # operation can be started at a later time to finish copying all data from the
2626 # @device: The job identifier. This used to be a device name (hence
2627 # the name of the parameter), but since QEMU 2.7 it can have
2630 # @force: If true, and the job has already emitted the event BLOCK_JOB_READY,
2631 # abandon the job immediately (even if it is paused) instead of waiting
2632 # for the destination to complete its final synchronization (since 1.3)
2634 # Returns: - Nothing on success
2635 # - If no background operation is active on this device, DeviceNotActive
2639 { 'command': 'block-job-cancel', 'data': { 'device': 'str', '*force': 'bool' } }
2644 # Pause an active background block operation.
2646 # This command returns immediately after marking the active background block
2647 # operation for pausing. It is an error to call this command if no
2648 # operation is in progress or if the job is already paused.
2650 # The operation will pause as soon as possible. No event is emitted when
2651 # the operation is actually paused. Cancelling a paused job automatically
2654 # @device: The job identifier. This used to be a device name (hence
2655 # the name of the parameter), but since QEMU 2.7 it can have
2658 # Returns: - Nothing on success
2659 # - If no background operation is active on this device, DeviceNotActive
2663 { 'command': 'block-job-pause', 'data': { 'device': 'str' } }
2666 # @block-job-resume:
2668 # Resume an active background block operation.
2670 # This command returns immediately after resuming a paused background block
2671 # operation. It is an error to call this command if no operation is in
2672 # progress or if the job is not paused.
2674 # This command also clears the error status of the job.
2676 # @device: The job identifier. This used to be a device name (hence
2677 # the name of the parameter), but since QEMU 2.7 it can have
2680 # Returns: - Nothing on success
2681 # - If no background operation is active on this device, DeviceNotActive
2685 { 'command': 'block-job-resume', 'data': { 'device': 'str' } }
2688 # @block-job-complete:
2690 # Manually trigger completion of an active background block operation. This
2691 # is supported for drive mirroring, where it also switches the device to
2692 # write to the target path only. The ability to complete is signaled with
2693 # a BLOCK_JOB_READY event.
2695 # This command completes an active background block operation synchronously.
2696 # The ordering of this command's return with the BLOCK_JOB_COMPLETED event
2697 # is not defined. Note that if an I/O error occurs during the processing of
2698 # this command: 1) the command itself will fail; 2) the error will be processed
2699 # according to the rerror/werror arguments that were specified when starting
2702 # A cancelled or paused job cannot be completed.
2704 # @device: The job identifier. This used to be a device name (hence
2705 # the name of the parameter), but since QEMU 2.7 it can have
2708 # Returns: - Nothing on success
2709 # - If no background operation is active on this device, DeviceNotActive
2713 { 'command': 'block-job-complete', 'data': { 'device': 'str' } }
2716 # @block-job-dismiss:
2718 # For jobs that have already concluded, remove them from the block-job-query
2719 # list. This command only needs to be run for jobs which were started with
2720 # QEMU 2.12+ job lifetime management semantics.
2722 # This command will refuse to operate on any job that has not yet reached
2723 # its terminal state, JOB_STATUS_CONCLUDED. For jobs that make use of the
2724 # BLOCK_JOB_READY event, block-job-cancel or block-job-complete will still need
2725 # to be used as appropriate.
2727 # @id: The job identifier.
2729 # Returns: Nothing on success
2733 { 'command': 'block-job-dismiss', 'data': { 'id': 'str' } }
2736 # @block-job-finalize:
2738 # Once a job that has manual=true reaches the pending state, it can be
2739 # instructed to finalize any graph changes and do any necessary cleanup
2741 # For jobs in a transaction, instructing one job to finalize will force
2742 # ALL jobs in the transaction to finalize, so it is only necessary to instruct
2743 # a single member job to finalize.
2745 # @id: The job identifier.
2747 # Returns: Nothing on success
2751 { 'command': 'block-job-finalize', 'data': { 'id': 'str' } }
2754 # @BlockdevDiscardOptions:
2756 # Determines how to handle discard requests.
2758 # @ignore: Ignore the request
2759 # @unmap: Forward as an unmap request
2763 { 'enum': 'BlockdevDiscardOptions',
2764 'data': [ 'ignore', 'unmap' ] }
2767 # @BlockdevDetectZeroesOptions:
2769 # Describes the operation mode for the automatic conversion of plain
2770 # zero writes by the OS to driver specific optimized zero write commands.
2772 # @off: Disabled (default)
2774 # @unmap: Enabled and even try to unmap blocks if possible. This requires
2775 # also that @BlockdevDiscardOptions is set to unmap for this device.
2779 { 'enum': 'BlockdevDetectZeroesOptions',
2780 'data': [ 'off', 'on', 'unmap' ] }
2783 # @BlockdevAioOptions:
2785 # Selects the AIO backend to handle I/O requests
2787 # @threads: Use qemu's thread pool
2788 # @native: Use native AIO backend (only Linux and Windows)
2789 # @io_uring: Use linux io_uring (since 5.0)
2793 { 'enum': 'BlockdevAioOptions',
2794 'data': [ 'threads', 'native',
2795 { 'name': 'io_uring', 'if': 'defined(CONFIG_LINUX_IO_URING)' } ] }
2798 # @BlockdevCacheOptions:
2800 # Includes cache-related options for block devices
2802 # @direct: enables use of O_DIRECT (bypass the host page cache;
2804 # @no-flush: ignore any flush requests for the device (default:
2809 { 'struct': 'BlockdevCacheOptions',
2810 'data': { '*direct': 'bool',
2811 '*no-flush': 'bool' } }
2816 # Drivers that are supported in block device operations.
2818 # @throttle: Since 2.11
2820 # @copy-on-read: Since 3.0
2821 # @blklogwrites: Since 3.0
2822 # @blkreplay: Since 4.2
2823 # @compress: Since 5.0
2827 { 'enum': 'BlockdevDriver',
2828 'data': [ 'blkdebug', 'blklogwrites', 'blkreplay', 'blkverify', 'bochs',
2829 'cloop', 'compress', 'copy-on-read', 'dmg', 'file', 'ftp', 'ftps',
2830 'gluster', 'host_cdrom', 'host_device', 'http', 'https', 'iscsi',
2831 'luks', 'nbd', 'nfs', 'null-aio', 'null-co', 'nvme', 'parallels',
2832 'preallocate', 'qcow', 'qcow2', 'qed', 'quorum', 'raw', 'rbd',
2833 { 'name': 'replication', 'if': 'defined(CONFIG_REPLICATION)' },
2835 'ssh', 'throttle', 'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat' ] }
2838 # @BlockdevOptionsFile:
2840 # Driver specific block device options for the file backend.
2842 # @filename: path to the image file
2843 # @pr-manager: the id for the object that will handle persistent reservations
2844 # for this device (default: none, forward the commands via SG_IO;
2846 # @aio: AIO backend (default: threads) (since: 2.8)
2847 # @locking: whether to enable file locking. If set to 'auto', only enable
2848 # when Open File Descriptor (OFD) locking API is available
2849 # (default: auto, since 2.10)
2850 # @drop-cache: invalidate page cache during live migration. This prevents
2851 # stale data on the migration destination with cache.direct=off.
2852 # Currently only supported on Linux hosts.
2853 # (default: on, since: 4.0)
2854 # @x-check-cache-dropped: whether to check that page cache was dropped on live
2855 # migration. May cause noticeable delays if the image
2856 # file is large, do not use in production.
2857 # (default: off) (since: 3.0)
2860 # @dynamic-auto-read-only: If present, enabled auto-read-only means that the
2861 # driver will open the image read-only at first,
2862 # dynamically reopen the image file read-write when
2863 # the first writer is attached to the node and reopen
2864 # read-only when the last writer is detached. This
2865 # allows giving QEMU write permissions only on demand
2866 # when an operation actually needs write access.
2870 { 'struct': 'BlockdevOptionsFile',
2871 'data': { 'filename': 'str',
2872 '*pr-manager': 'str',
2873 '*locking': 'OnOffAuto',
2874 '*aio': 'BlockdevAioOptions',
2875 '*drop-cache': {'type': 'bool',
2876 'if': 'defined(CONFIG_LINUX)'},
2877 '*x-check-cache-dropped': 'bool' },
2878 'features': [ { 'name': 'dynamic-auto-read-only',
2879 'if': 'defined(CONFIG_POSIX)' } ] }
2882 # @BlockdevOptionsNull:
2884 # Driver specific block device options for the null backend.
2886 # @size: size of the device in bytes.
2887 # @latency-ns: emulated latency (in nanoseconds) in processing
2888 # requests. Default to zero which completes requests immediately.
2890 # @read-zeroes: if true, reads from the device produce zeroes; if false, the
2891 # buffer is left unchanged. (default: false; since: 4.1)
2895 { 'struct': 'BlockdevOptionsNull',
2896 'data': { '*size': 'int', '*latency-ns': 'uint64', '*read-zeroes': 'bool' } }
2899 # @BlockdevOptionsNVMe:
2901 # Driver specific block device options for the NVMe backend.
2903 # @device: PCI controller address of the NVMe device in
2904 # format hhhh:bb:ss.f (host:bus:slot.function)
2905 # @namespace: namespace number of the device, starting from 1.
2907 # Note that the PCI @device must have been unbound from any host
2908 # kernel driver before instructing QEMU to add the blockdev.
2912 { 'struct': 'BlockdevOptionsNVMe',
2913 'data': { 'device': 'str', 'namespace': 'int' } }
2916 # @BlockdevOptionsVVFAT:
2918 # Driver specific block device options for the vvfat protocol.
2920 # @dir: directory to be exported as FAT image
2921 # @fat-type: FAT type: 12, 16 or 32
2922 # @floppy: whether to export a floppy image (true) or
2923 # partitioned hard disk (false; default)
2924 # @label: set the volume label, limited to 11 bytes. FAT16 and
2925 # FAT32 traditionally have some restrictions on labels, which are
2926 # ignored by most operating systems. Defaults to "QEMU VVFAT".
2928 # @rw: whether to allow write operations (default: false)
2932 { 'struct': 'BlockdevOptionsVVFAT',
2933 'data': { 'dir': 'str', '*fat-type': 'int', '*floppy': 'bool',
2934 '*label': 'str', '*rw': 'bool' } }
2937 # @BlockdevOptionsGenericFormat:
2939 # Driver specific block device options for image format that have no option
2940 # besides their data source.
2942 # @file: reference to or definition of the data source block device
2946 { 'struct': 'BlockdevOptionsGenericFormat',
2947 'data': { 'file': 'BlockdevRef' } }
2950 # @BlockdevOptionsLUKS:
2952 # Driver specific block device options for LUKS.
2954 # @key-secret: the ID of a QCryptoSecret object providing
2955 # the decryption key (since 2.6). Mandatory except when
2956 # doing a metadata-only probe of the image.
2960 { 'struct': 'BlockdevOptionsLUKS',
2961 'base': 'BlockdevOptionsGenericFormat',
2962 'data': { '*key-secret': 'str' } }
2966 # @BlockdevOptionsGenericCOWFormat:
2968 # Driver specific block device options for image format that have no option
2969 # besides their data source and an optional backing file.
2971 # @backing: reference to or definition of the backing file block
2972 # device, null disables the backing file entirely.
2973 # Defaults to the backing file stored the image file.
2977 { 'struct': 'BlockdevOptionsGenericCOWFormat',
2978 'base': 'BlockdevOptionsGenericFormat',
2979 'data': { '*backing': 'BlockdevRefOrNull' } }
2982 # @Qcow2OverlapCheckMode:
2984 # General overlap check modes.
2986 # @none: Do not perform any checks
2988 # @constant: Perform only checks which can be done in constant time and
2989 # without reading anything from disk
2991 # @cached: Perform only checks which can be done without reading anything
2994 # @all: Perform all available overlap checks
2998 { 'enum': 'Qcow2OverlapCheckMode',
2999 'data': [ 'none', 'constant', 'cached', 'all' ] }
3002 # @Qcow2OverlapCheckFlags:
3004 # Structure of flags for each metadata structure. Setting a field to 'true'
3005 # makes qemu guard that structure against unintended overwriting. The default
3006 # value is chosen according to the template given.
3008 # @template: Specifies a template mode which can be adjusted using the other
3009 # flags, defaults to 'cached'
3011 # @bitmap-directory: since 3.0
3015 { 'struct': 'Qcow2OverlapCheckFlags',
3016 'data': { '*template': 'Qcow2OverlapCheckMode',
3017 '*main-header': 'bool',
3018 '*active-l1': 'bool',
3019 '*active-l2': 'bool',
3020 '*refcount-table': 'bool',
3021 '*refcount-block': 'bool',
3022 '*snapshot-table': 'bool',
3023 '*inactive-l1': 'bool',
3024 '*inactive-l2': 'bool',
3025 '*bitmap-directory': 'bool' } }
3028 # @Qcow2OverlapChecks:
3030 # Specifies which metadata structures should be guarded against unintended
3033 # @flags: set of flags for separate specification of each metadata structure
3036 # @mode: named mode which chooses a specific set of flags
3040 { 'alternate': 'Qcow2OverlapChecks',
3041 'data': { 'flags': 'Qcow2OverlapCheckFlags',
3042 'mode': 'Qcow2OverlapCheckMode' } }
3045 # @BlockdevQcowEncryptionFormat:
3047 # @aes: AES-CBC with plain64 initialization vectors
3051 { 'enum': 'BlockdevQcowEncryptionFormat',
3055 # @BlockdevQcowEncryption:
3059 { 'union': 'BlockdevQcowEncryption',
3060 'base': { 'format': 'BlockdevQcowEncryptionFormat' },
3061 'discriminator': 'format',
3062 'data': { 'aes': 'QCryptoBlockOptionsQCow' } }
3065 # @BlockdevOptionsQcow:
3067 # Driver specific block device options for qcow.
3069 # @encrypt: Image decryption options. Mandatory for
3070 # encrypted images, except when doing a metadata-only
3071 # probe of the image.
3075 { 'struct': 'BlockdevOptionsQcow',
3076 'base': 'BlockdevOptionsGenericCOWFormat',
3077 'data': { '*encrypt': 'BlockdevQcowEncryption' } }
3082 # @BlockdevQcow2EncryptionFormat:
3083 # @aes: AES-CBC with plain64 initialization vectors
3087 { 'enum': 'BlockdevQcow2EncryptionFormat',
3088 'data': [ 'aes', 'luks' ] }
3091 # @BlockdevQcow2Encryption:
3095 { 'union': 'BlockdevQcow2Encryption',
3096 'base': { 'format': 'BlockdevQcow2EncryptionFormat' },
3097 'discriminator': 'format',
3098 'data': { 'aes': 'QCryptoBlockOptionsQCow',
3099 'luks': 'QCryptoBlockOptionsLUKS'} }
3102 # @BlockdevOptionsPreallocate:
3104 # Filter driver intended to be inserted between format and protocol node
3105 # and do preallocation in protocol node on write.
3107 # @prealloc-align: on preallocation, align file length to this number,
3108 # default 1048576 (1M)
3110 # @prealloc-size: how much to preallocate, default 134217728 (128M)
3114 { 'struct': 'BlockdevOptionsPreallocate',
3115 'base': 'BlockdevOptionsGenericFormat',
3116 'data': { '*prealloc-align': 'int', '*prealloc-size': 'int' } }
3119 # @BlockdevOptionsQcow2:
3121 # Driver specific block device options for qcow2.
3123 # @lazy-refcounts: whether to enable the lazy refcounts
3124 # feature (default is taken from the image file)
3126 # @pass-discard-request: whether discard requests to the qcow2
3127 # device should be forwarded to the data source
3129 # @pass-discard-snapshot: whether discard requests for the data source
3130 # should be issued when a snapshot operation (e.g.
3131 # deleting a snapshot) frees clusters in the qcow2 file
3133 # @pass-discard-other: whether discard requests for the data source
3134 # should be issued on other occasions where a cluster
3137 # @overlap-check: which overlap checks to perform for writes
3138 # to the image, defaults to 'cached' (since 2.2)
3140 # @cache-size: the maximum total size of the L2 table and
3141 # refcount block caches in bytes (since 2.2)
3143 # @l2-cache-size: the maximum size of the L2 table cache in
3146 # @l2-cache-entry-size: the size of each entry in the L2 cache in
3147 # bytes. It must be a power of two between 512
3148 # and the cluster size. The default value is
3149 # the cluster size (since 2.12)
3151 # @refcount-cache-size: the maximum size of the refcount block cache
3152 # in bytes (since 2.2)
3154 # @cache-clean-interval: clean unused entries in the L2 and refcount
3155 # caches. The interval is in seconds. The default value
3156 # is 600 on supporting platforms, and 0 on other
3157 # platforms. 0 disables this feature. (since 2.5)
3159 # @encrypt: Image decryption options. Mandatory for
3160 # encrypted images, except when doing a metadata-only
3161 # probe of the image. (since 2.10)
3163 # @data-file: reference to or definition of the external data file.
3164 # This may only be specified for images that require an
3165 # external data file. If it is not specified for such
3166 # an image, the data file name is loaded from the image
3171 { 'struct': 'BlockdevOptionsQcow2',
3172 'base': 'BlockdevOptionsGenericCOWFormat',
3173 'data': { '*lazy-refcounts': 'bool',
3174 '*pass-discard-request': 'bool',
3175 '*pass-discard-snapshot': 'bool',
3176 '*pass-discard-other': 'bool',
3177 '*overlap-check': 'Qcow2OverlapChecks',
3178 '*cache-size': 'int',
3179 '*l2-cache-size': 'int',
3180 '*l2-cache-entry-size': 'int',
3181 '*refcount-cache-size': 'int',
3182 '*cache-clean-interval': 'int',
3183 '*encrypt': 'BlockdevQcow2Encryption',
3184 '*data-file': 'BlockdevRef' } }
3187 # @SshHostKeyCheckMode:
3189 # @none: Don't check the host key at all
3190 # @hash: Compare the host key with a given hash
3191 # @known_hosts: Check the host key against the known_hosts file
3195 { 'enum': 'SshHostKeyCheckMode',
3196 'data': [ 'none', 'hash', 'known_hosts' ] }
3199 # @SshHostKeyCheckHashType:
3201 # @md5: The given hash is an md5 hash
3202 # @sha1: The given hash is an sha1 hash
3206 { 'enum': 'SshHostKeyCheckHashType',
3207 'data': [ 'md5', 'sha1' ] }
3212 # @type: The hash algorithm used for the hash
3213 # @hash: The expected hash value
3217 { 'struct': 'SshHostKeyHash',
3218 'data': { 'type': 'SshHostKeyCheckHashType',
3226 { 'union': 'SshHostKeyCheck',
3227 'base': { 'mode': 'SshHostKeyCheckMode' },
3228 'discriminator': 'mode',
3229 'data': { 'hash': 'SshHostKeyHash' } }
3232 # @BlockdevOptionsSsh:
3234 # @server: host address
3236 # @path: path to the image on the host
3238 # @user: user as which to connect, defaults to current
3241 # @host-key-check: Defines how and what to check the host key against
3242 # (default: known_hosts)
3246 { 'struct': 'BlockdevOptionsSsh',
3247 'data': { 'server': 'InetSocketAddress',
3250 '*host-key-check': 'SshHostKeyCheck' } }
3256 # Trigger events supported by blkdebug.
3258 # @l1_shrink_write_table: write zeros to the l1 table to shrink image.
3261 # @l1_shrink_free_l2_clusters: discard the l2 tables. (since 2.11)
3263 # @cor_write: a write due to copy-on-read (since 2.11)
3265 # @cluster_alloc_space: an allocation of file space for a cluster (since 4.1)
3267 # @none: triggers once at creation of the blkdebug node (since 4.1)
3271 { 'enum': 'BlkdebugEvent', 'prefix': 'BLKDBG',
3272 'data': [ 'l1_update', 'l1_grow_alloc_table', 'l1_grow_write_table',
3273 'l1_grow_activate_table', 'l2_load', 'l2_update',
3274 'l2_update_compressed', 'l2_alloc_cow_read', 'l2_alloc_write',
3275 'read_aio', 'read_backing_aio', 'read_compressed', 'write_aio',
3276 'write_compressed', 'vmstate_load', 'vmstate_save', 'cow_read',
3277 'cow_write', 'reftable_load', 'reftable_grow', 'reftable_update',
3278 'refblock_load', 'refblock_update', 'refblock_update_part',
3279 'refblock_alloc', 'refblock_alloc_hookup', 'refblock_alloc_write',
3280 'refblock_alloc_write_blocks', 'refblock_alloc_write_table',
3281 'refblock_alloc_switch_table', 'cluster_alloc',
3282 'cluster_alloc_bytes', 'cluster_free', 'flush_to_os',
3283 'flush_to_disk', 'pwritev_rmw_head', 'pwritev_rmw_after_head',
3284 'pwritev_rmw_tail', 'pwritev_rmw_after_tail', 'pwritev',
3285 'pwritev_zero', 'pwritev_done', 'empty_image_prepare',
3286 'l1_shrink_write_table', 'l1_shrink_free_l2_clusters',
3287 'cor_write', 'cluster_alloc_space', 'none'] }
3292 # Kinds of I/O that blkdebug can inject errors in.
3294 # @read: .bdrv_co_preadv()
3296 # @write: .bdrv_co_pwritev()
3298 # @write-zeroes: .bdrv_co_pwrite_zeroes()
3300 # @discard: .bdrv_co_pdiscard()
3302 # @flush: .bdrv_co_flush_to_disk()
3304 # @block-status: .bdrv_co_block_status()
3308 { 'enum': 'BlkdebugIOType', 'prefix': 'BLKDEBUG_IO_TYPE',
3309 'data': [ 'read', 'write', 'write-zeroes', 'discard', 'flush',
3313 # @BlkdebugInjectErrorOptions:
3315 # Describes a single error injection for blkdebug.
3317 # @event: trigger event
3319 # @state: the state identifier blkdebug needs to be in to
3320 # actually trigger the event; defaults to "any"
3322 # @iotype: the type of I/O operations on which this error should
3323 # be injected; defaults to "all read, write,
3324 # write-zeroes, discard, and flush operations"
3327 # @errno: error identifier (errno) to be returned; defaults to
3330 # @sector: specifies the sector index which has to be affected
3331 # in order to actually trigger the event; defaults to "any
3334 # @once: disables further events after this one has been
3335 # triggered; defaults to false
3337 # @immediately: fail immediately; defaults to false
3341 { 'struct': 'BlkdebugInjectErrorOptions',
3342 'data': { 'event': 'BlkdebugEvent',
3344 '*iotype': 'BlkdebugIOType',
3348 '*immediately': 'bool' } }
3351 # @BlkdebugSetStateOptions:
3353 # Describes a single state-change event for blkdebug.
3355 # @event: trigger event
3357 # @state: the current state identifier blkdebug needs to be in;
3360 # @new_state: the state identifier blkdebug is supposed to assume if
3361 # this event is triggered
3365 { 'struct': 'BlkdebugSetStateOptions',
3366 'data': { 'event': 'BlkdebugEvent',
3368 'new_state': 'int' } }
3371 # @BlockdevOptionsBlkdebug:
3373 # Driver specific block device options for blkdebug.
3375 # @image: underlying raw block device (or image file)
3377 # @config: filename of the configuration file
3379 # @align: required alignment for requests in bytes, must be
3380 # positive power of 2, or 0 for default
3382 # @max-transfer: maximum size for I/O transfers in bytes, must be
3383 # positive multiple of @align and of the underlying
3384 # file's request alignment (but need not be a power of
3385 # 2), or 0 for default (since 2.10)
3387 # @opt-write-zero: preferred alignment for write zero requests in bytes,
3388 # must be positive multiple of @align and of the
3389 # underlying file's request alignment (but need not be a
3390 # power of 2), or 0 for default (since 2.10)
3392 # @max-write-zero: maximum size for write zero requests in bytes, must be
3393 # positive multiple of @align, of @opt-write-zero, and of
3394 # the underlying file's request alignment (but need not
3395 # be a power of 2), or 0 for default (since 2.10)
3397 # @opt-discard: preferred alignment for discard requests in bytes, must
3398 # be positive multiple of @align and of the underlying
3399 # file's request alignment (but need not be a power of
3400 # 2), or 0 for default (since 2.10)
3402 # @max-discard: maximum size for discard requests in bytes, must be
3403 # positive multiple of @align, of @opt-discard, and of
3404 # the underlying file's request alignment (but need not
3405 # be a power of 2), or 0 for default (since 2.10)
3407 # @inject-error: array of error injection descriptions
3409 # @set-state: array of state-change descriptions
3411 # @take-child-perms: Permissions to take on @image in addition to what
3412 # is necessary anyway (which depends on how the
3413 # blkdebug node is used). Defaults to none.
3416 # @unshare-child-perms: Permissions not to share on @image in addition
3417 # to what cannot be shared anyway (which depends
3418 # on how the blkdebug node is used). Defaults
3419 # to none. (since 5.0)
3423 { 'struct': 'BlockdevOptionsBlkdebug',
3424 'data': { 'image': 'BlockdevRef',
3426 '*align': 'int', '*max-transfer': 'int32',
3427 '*opt-write-zero': 'int32', '*max-write-zero': 'int32',
3428 '*opt-discard': 'int32', '*max-discard': 'int32',
3429 '*inject-error': ['BlkdebugInjectErrorOptions'],
3430 '*set-state': ['BlkdebugSetStateOptions'],
3431 '*take-child-perms': ['BlockPermission'],
3432 '*unshare-child-perms': ['BlockPermission'] } }
3435 # @BlockdevOptionsBlklogwrites:
3437 # Driver specific block device options for blklogwrites.
3439 # @file: block device
3441 # @log: block device used to log writes to @file
3443 # @log-sector-size: sector size used in logging writes to @file, determines
3444 # granularity of offsets and sizes of writes (default: 512)
3446 # @log-append: append to an existing log (default: false)
3448 # @log-super-update-interval: interval of write requests after which the log
3449 # super block is updated to disk (default: 4096)
3453 { 'struct': 'BlockdevOptionsBlklogwrites',
3454 'data': { 'file': 'BlockdevRef',
3455 'log': 'BlockdevRef',
3456 '*log-sector-size': 'uint32',
3457 '*log-append': 'bool',
3458 '*log-super-update-interval': 'uint64' } }
3461 # @BlockdevOptionsBlkverify:
3463 # Driver specific block device options for blkverify.
3465 # @test: block device to be tested
3467 # @raw: raw image used for verification
3471 { 'struct': 'BlockdevOptionsBlkverify',
3472 'data': { 'test': 'BlockdevRef',
3473 'raw': 'BlockdevRef' } }
3476 # @BlockdevOptionsBlkreplay:
3478 # Driver specific block device options for blkreplay.
3480 # @image: disk image which should be controlled with blkreplay
3484 { 'struct': 'BlockdevOptionsBlkreplay',
3485 'data': { 'image': 'BlockdevRef' } }
3488 # @QuorumReadPattern:
3490 # An enumeration of quorum read patterns.
3492 # @quorum: read all the children and do a quorum vote on reads
3494 # @fifo: read only from the first child that has not failed
3498 { 'enum': 'QuorumReadPattern', 'data': [ 'quorum', 'fifo' ] }
3501 # @BlockdevOptionsQuorum:
3503 # Driver specific block device options for Quorum
3505 # @blkverify: true if the driver must print content mismatch
3506 # set to false by default
3508 # @children: the children block devices to use
3510 # @vote-threshold: the vote limit under which a read will fail
3512 # @rewrite-corrupted: rewrite corrupted data when quorum is reached
3515 # @read-pattern: choose read pattern and set to quorum by default
3520 { 'struct': 'BlockdevOptionsQuorum',
3521 'data': { '*blkverify': 'bool',
3522 'children': [ 'BlockdevRef' ],
3523 'vote-threshold': 'int',
3524 '*rewrite-corrupted': 'bool',
3525 '*read-pattern': 'QuorumReadPattern' } }
3528 # @BlockdevOptionsGluster:
3530 # Driver specific block device options for Gluster
3532 # @volume: name of gluster volume where VM image resides
3534 # @path: absolute path to image file in gluster volume
3536 # @server: gluster servers description
3538 # @debug: libgfapi log level (default '4' which is Error)
3541 # @logfile: libgfapi log file (default /dev/stderr) (Since 2.8)
3545 { 'struct': 'BlockdevOptionsGluster',
3546 'data': { 'volume': 'str',
3548 'server': ['SocketAddress'],
3550 '*logfile': 'str' } }
3555 # An enumeration of libiscsi transport types
3559 { 'enum': 'IscsiTransport',
3560 'data': [ 'tcp', 'iser' ] }
3563 # @IscsiHeaderDigest:
3565 # An enumeration of header digests supported by libiscsi
3569 { 'enum': 'IscsiHeaderDigest',
3570 'prefix': 'QAPI_ISCSI_HEADER_DIGEST',
3571 'data': [ 'crc32c', 'none', 'crc32c-none', 'none-crc32c' ] }
3574 # @BlockdevOptionsIscsi:
3576 # @transport: The iscsi transport type
3578 # @portal: The address of the iscsi portal
3580 # @target: The target iqn name
3582 # @lun: LUN to connect to. Defaults to 0.
3584 # @user: User name to log in with. If omitted, no CHAP
3585 # authentication is performed.
3587 # @password-secret: The ID of a QCryptoSecret object providing
3588 # the password for the login. This option is required if
3589 # @user is specified.
3591 # @initiator-name: The iqn name we want to identify to the target
3592 # as. If this option is not specified, an initiator name is
3593 # generated automatically.
3595 # @header-digest: The desired header digest. Defaults to
3598 # @timeout: Timeout in seconds after which a request will
3599 # timeout. 0 means no timeout and is the default.
3601 # Driver specific block device options for iscsi
3605 { 'struct': 'BlockdevOptionsIscsi',
3606 'data': { 'transport': 'IscsiTransport',
3611 '*password-secret': 'str',
3612 '*initiator-name': 'str',
3613 '*header-digest': 'IscsiHeaderDigest',
3614 '*timeout': 'int' } }
3622 { 'enum': 'RbdAuthMode',
3623 'data': [ 'cephx', 'none' ] }
3626 # @BlockdevOptionsRbd:
3628 # @pool: Ceph pool name.
3630 # @namespace: Rados namespace name in the Ceph pool. (Since 5.0)
3632 # @image: Image name in the Ceph pool.
3634 # @conf: path to Ceph configuration file. Values
3635 # in the configuration file will be overridden by
3636 # options specified via QAPI.
3638 # @snapshot: Ceph snapshot name.
3640 # @user: Ceph id name.
3642 # @auth-client-required: Acceptable authentication modes.
3643 # This maps to Ceph configuration option
3644 # "auth_client_required". (Since 3.0)
3646 # @key-secret: ID of a QCryptoSecret object providing a key
3647 # for cephx authentication.
3648 # This maps to Ceph configuration option
3649 # "key". (Since 3.0)
3651 # @server: Monitor host address and port. This maps
3652 # to the "mon_host" Ceph option.
3656 { 'struct': 'BlockdevOptionsRbd',
3657 'data': { 'pool': 'str',
3658 '*namespace': 'str',
3663 '*auth-client-required': ['RbdAuthMode'],
3664 '*key-secret': 'str',
3665 '*server': ['InetSocketAddressBase'] } }
3668 # @BlockdevOptionsSheepdog:
3670 # Driver specific block device options for sheepdog
3672 # @vdi: Virtual disk image name
3673 # @server: The Sheepdog server to connect to
3674 # @snap-id: Snapshot ID
3675 # @tag: Snapshot tag name
3677 # Only one of @snap-id and @tag may be present.
3681 { 'struct': 'BlockdevOptionsSheepdog',
3682 'data': { 'server': 'SocketAddress',
3684 '*snap-id': 'uint32',
3690 # An enumeration of replication modes.
3692 # @primary: Primary mode, the vm's state will be sent to secondary QEMU.
3694 # @secondary: Secondary mode, receive the vm's state from primary QEMU.
3698 { 'enum' : 'ReplicationMode', 'data' : [ 'primary', 'secondary' ],
3699 'if': 'defined(CONFIG_REPLICATION)' }
3702 # @BlockdevOptionsReplication:
3704 # Driver specific block device options for replication
3706 # @mode: the replication mode
3708 # @top-id: In secondary mode, node name or device ID of the root
3709 # node who owns the replication node chain. Must not be given in
3714 { 'struct': 'BlockdevOptionsReplication',
3715 'base': 'BlockdevOptionsGenericFormat',
3716 'data': { 'mode': 'ReplicationMode',
3718 'if': 'defined(CONFIG_REPLICATION)' }
3723 # An enumeration of NFS transport types
3725 # @inet: TCP transport
3729 { 'enum': 'NFSTransport',
3730 'data': [ 'inet' ] }
3735 # Captures the address of the socket
3737 # @type: transport type used for NFS (only TCP supported)
3739 # @host: host address for NFS server
3743 { 'struct': 'NFSServer',
3744 'data': { 'type': 'NFSTransport',
3748 # @BlockdevOptionsNfs:
3750 # Driver specific block device option for NFS
3752 # @server: host address
3754 # @path: path of the image on the host
3756 # @user: UID value to use when talking to the
3757 # server (defaults to 65534 on Windows and getuid()
3760 # @group: GID value to use when talking to the
3761 # server (defaults to 65534 on Windows and getgid()
3764 # @tcp-syn-count: number of SYNs during the session
3765 # establishment (defaults to libnfs default)
3767 # @readahead-size: set the readahead size in bytes (defaults
3768 # to libnfs default)
3770 # @page-cache-size: set the pagecache size in bytes (defaults
3771 # to libnfs default)
3773 # @debug: set the NFS debug level (max 2) (defaults
3774 # to libnfs default)
3778 { 'struct': 'BlockdevOptionsNfs',
3779 'data': { 'server': 'NFSServer',
3783 '*tcp-syn-count': 'int',
3784 '*readahead-size': 'int',
3785 '*page-cache-size': 'int',
3789 # @BlockdevOptionsCurlBase:
3791 # Driver specific block device options shared by all protocols supported by the
3794 # @url: URL of the image file
3796 # @readahead: Size of the read-ahead cache; must be a multiple of
3797 # 512 (defaults to 256 kB)
3799 # @timeout: Timeout for connections, in seconds (defaults to 5)
3801 # @username: Username for authentication (defaults to none)
3803 # @password-secret: ID of a QCryptoSecret object providing a password
3804 # for authentication (defaults to no password)
3806 # @proxy-username: Username for proxy authentication (defaults to none)
3808 # @proxy-password-secret: ID of a QCryptoSecret object providing a password
3809 # for proxy authentication (defaults to no password)
3813 { 'struct': 'BlockdevOptionsCurlBase',
3814 'data': { 'url': 'str',
3815 '*readahead': 'int',
3818 '*password-secret': 'str',
3819 '*proxy-username': 'str',
3820 '*proxy-password-secret': 'str' } }
3823 # @BlockdevOptionsCurlHttp:
3825 # Driver specific block device options for HTTP connections over the curl
3826 # backend. URLs must start with "http://".
3828 # @cookie: List of cookies to set; format is
3829 # "name1=content1; name2=content2;" as explained by
3830 # CURLOPT_COOKIE(3). Defaults to no cookies.
3832 # @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
3833 # secure way. See @cookie for the format. (since 2.10)
3837 { 'struct': 'BlockdevOptionsCurlHttp',
3838 'base': 'BlockdevOptionsCurlBase',
3839 'data': { '*cookie': 'str',
3840 '*cookie-secret': 'str'} }
3843 # @BlockdevOptionsCurlHttps:
3845 # Driver specific block device options for HTTPS connections over the curl
3846 # backend. URLs must start with "https://".
3848 # @cookie: List of cookies to set; format is
3849 # "name1=content1; name2=content2;" as explained by
3850 # CURLOPT_COOKIE(3). Defaults to no cookies.
3852 # @sslverify: Whether to verify the SSL certificate's validity (defaults to
3855 # @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
3856 # secure way. See @cookie for the format. (since 2.10)
3860 { 'struct': 'BlockdevOptionsCurlHttps',
3861 'base': 'BlockdevOptionsCurlBase',
3862 'data': { '*cookie': 'str',
3863 '*sslverify': 'bool',
3864 '*cookie-secret': 'str'} }
3867 # @BlockdevOptionsCurlFtp:
3869 # Driver specific block device options for FTP connections over the curl
3870 # backend. URLs must start with "ftp://".
3874 { 'struct': 'BlockdevOptionsCurlFtp',
3875 'base': 'BlockdevOptionsCurlBase',
3879 # @BlockdevOptionsCurlFtps:
3881 # Driver specific block device options for FTPS connections over the curl
3882 # backend. URLs must start with "ftps://".
3884 # @sslverify: Whether to verify the SSL certificate's validity (defaults to
3889 { 'struct': 'BlockdevOptionsCurlFtps',
3890 'base': 'BlockdevOptionsCurlBase',
3891 'data': { '*sslverify': 'bool' } }
3894 # @BlockdevOptionsNbd:
3896 # Driver specific block device options for NBD.
3898 # @server: NBD server address
3900 # @export: export name
3902 # @tls-creds: TLS credentials ID
3904 # @x-dirty-bitmap: A metadata context name such as "qemu:dirty-bitmap:NAME"
3905 # or "qemu:allocation-depth" to query in place of the
3906 # traditional "base:allocation" block status (see
3907 # NBD_OPT_LIST_META_CONTEXT in the NBD protocol; and
3908 # yes, naming this option x-context would have made
3909 # more sense) (since 3.0)
3911 # @reconnect-delay: On an unexpected disconnect, the nbd client tries to
3912 # connect again until succeeding or encountering a serious
3913 # error. During the first @reconnect-delay seconds, all
3914 # requests are paused and will be rerun on a successful
3915 # reconnect. After that time, any delayed requests and all
3916 # future requests before a successful reconnect will
3917 # immediately fail. Default 0 (Since 4.2)
3921 { 'struct': 'BlockdevOptionsNbd',
3922 'data': { 'server': 'SocketAddress',
3924 '*tls-creds': 'str',
3925 '*x-dirty-bitmap': 'str',
3926 '*reconnect-delay': 'uint32' } }
3929 # @BlockdevOptionsRaw:
3931 # Driver specific block device options for the raw driver.
3933 # @offset: position where the block device starts
3934 # @size: the assumed size of the device
3938 { 'struct': 'BlockdevOptionsRaw',
3939 'base': 'BlockdevOptionsGenericFormat',
3940 'data': { '*offset': 'int', '*size': 'int' } }
3943 # @BlockdevOptionsThrottle:
3945 # Driver specific block device options for the throttle driver
3947 # @throttle-group: the name of the throttle-group object to use. It
3948 # must already exist.
3949 # @file: reference to or definition of the data source block device
3952 { 'struct': 'BlockdevOptionsThrottle',
3953 'data': { 'throttle-group': 'str',
3954 'file' : 'BlockdevRef'
3959 # Options for creating a block device. Many options are available for all
3960 # block devices, independent of the block driver:
3962 # @driver: block driver name
3963 # @node-name: the node name of the new node (Since 2.0).
3964 # This option is required on the top level of blockdev-add.
3965 # Valid node names start with an alphabetic character and may
3966 # contain only alphanumeric characters, '-', '.' and '_'. Their
3967 # maximum length is 31 characters.
3968 # @discard: discard-related options (default: ignore)
3969 # @cache: cache-related options
3970 # @read-only: whether the block device should be read-only (default: false).
3971 # Note that some block drivers support only read-only access,
3972 # either generally or in certain configurations. In this case,
3973 # the default value does not work and the option must be
3974 # specified explicitly.
3975 # @auto-read-only: if true and @read-only is false, QEMU may automatically
3976 # decide not to open the image read-write as requested, but
3977 # fall back to read-only instead (and switch between the modes
3978 # later), e.g. depending on whether the image file is writable
3979 # or whether a writing user is attached to the node
3980 # (default: false, since 3.1)
3981 # @detect-zeroes: detect and optimize zero writes (Since 2.1)
3983 # @force-share: force share all permission on added nodes.
3984 # Requires read-only=true. (Since 2.10)
3986 # Remaining options are determined by the block driver.
3990 { 'union': 'BlockdevOptions',
3991 'base': { 'driver': 'BlockdevDriver',
3992 '*node-name': 'str',
3993 '*discard': 'BlockdevDiscardOptions',
3994 '*cache': 'BlockdevCacheOptions',
3995 '*read-only': 'bool',
3996 '*auto-read-only': 'bool',
3997 '*force-share': 'bool',
3998 '*detect-zeroes': 'BlockdevDetectZeroesOptions' },
3999 'discriminator': 'driver',
4001 'blkdebug': 'BlockdevOptionsBlkdebug',
4002 'blklogwrites':'BlockdevOptionsBlklogwrites',
4003 'blkverify': 'BlockdevOptionsBlkverify',
4004 'blkreplay': 'BlockdevOptionsBlkreplay',
4005 'bochs': 'BlockdevOptionsGenericFormat',
4006 'cloop': 'BlockdevOptionsGenericFormat',
4007 'compress': 'BlockdevOptionsGenericFormat',
4008 'copy-on-read':'BlockdevOptionsGenericFormat',
4009 'dmg': 'BlockdevOptionsGenericFormat',
4010 'file': 'BlockdevOptionsFile',
4011 'ftp': 'BlockdevOptionsCurlFtp',
4012 'ftps': 'BlockdevOptionsCurlFtps',
4013 'gluster': 'BlockdevOptionsGluster',
4014 'host_cdrom': 'BlockdevOptionsFile',
4015 'host_device':'BlockdevOptionsFile',
4016 'http': 'BlockdevOptionsCurlHttp',
4017 'https': 'BlockdevOptionsCurlHttps',
4018 'iscsi': 'BlockdevOptionsIscsi',
4019 'luks': 'BlockdevOptionsLUKS',
4020 'nbd': 'BlockdevOptionsNbd',
4021 'nfs': 'BlockdevOptionsNfs',
4022 'null-aio': 'BlockdevOptionsNull',
4023 'null-co': 'BlockdevOptionsNull',
4024 'nvme': 'BlockdevOptionsNVMe',
4025 'parallels': 'BlockdevOptionsGenericFormat',
4026 'preallocate':'BlockdevOptionsPreallocate',
4027 'qcow2': 'BlockdevOptionsQcow2',
4028 'qcow': 'BlockdevOptionsQcow',
4029 'qed': 'BlockdevOptionsGenericCOWFormat',
4030 'quorum': 'BlockdevOptionsQuorum',
4031 'raw': 'BlockdevOptionsRaw',
4032 'rbd': 'BlockdevOptionsRbd',
4033 'replication': { 'type': 'BlockdevOptionsReplication',
4034 'if': 'defined(CONFIG_REPLICATION)' },
4035 'sheepdog': 'BlockdevOptionsSheepdog',
4036 'ssh': 'BlockdevOptionsSsh',
4037 'throttle': 'BlockdevOptionsThrottle',
4038 'vdi': 'BlockdevOptionsGenericFormat',
4039 'vhdx': 'BlockdevOptionsGenericFormat',
4040 'vmdk': 'BlockdevOptionsGenericCOWFormat',
4041 'vpc': 'BlockdevOptionsGenericFormat',
4042 'vvfat': 'BlockdevOptionsVVFAT'
4048 # Reference to a block device.
4050 # @definition: defines a new block device inline
4051 # @reference: references the ID of an existing block device
4055 { 'alternate': 'BlockdevRef',
4056 'data': { 'definition': 'BlockdevOptions',
4057 'reference': 'str' } }
4060 # @BlockdevRefOrNull:
4062 # Reference to a block device.
4064 # @definition: defines a new block device inline
4065 # @reference: references the ID of an existing block device.
4066 # An empty string means that no block device should
4067 # be referenced. Deprecated; use null instead.
4068 # @null: No block device should be referenced (since 2.10)
4072 { 'alternate': 'BlockdevRefOrNull',
4073 'data': { 'definition': 'BlockdevOptions',
4080 # Creates a new block device.
4087 # -> { "execute": "blockdev-add",
4089 # "driver": "qcow2",
4090 # "node-name": "test1",
4093 # "filename": "test.qcow2"
4097 # <- { "return": {} }
4100 # -> { "execute": "blockdev-add",
4102 # "driver": "qcow2",
4103 # "node-name": "node0",
4104 # "discard": "unmap",
4110 # "filename": "/tmp/test.qcow2"
4116 # "filename": "/dev/fdset/4"
4122 # <- { "return": {} }
4125 { 'command': 'blockdev-add', 'data': 'BlockdevOptions', 'boxed': true }
4128 # @x-blockdev-reopen:
4130 # Reopens a block device using the given set of options. Any option
4131 # not specified will be reset to its default value regardless of its
4132 # previous status. If an option cannot be changed or a particular
4133 # driver does not support reopening then the command will return an
4136 # The top-level @node-name option (from BlockdevOptions) must be
4137 # specified and is used to select the block device to be reopened.
4138 # Other @node-name options must be either omitted or set to the
4139 # current name of the appropriate node. This command won't change any
4140 # node name and any attempt to do it will result in an error.
4142 # In the case of options that refer to child nodes, the behavior of
4143 # this command depends on the value:
4145 # 1) A set of options (BlockdevOptions): the child is reopened with
4146 # the specified set of options.
4148 # 2) A reference to the current child: the child is reopened using
4149 # its existing set of options.
4151 # 3) A reference to a different node: the current child is replaced
4152 # with the specified one.
4154 # 4) NULL: the current child (if any) is detached.
4156 # Options (1) and (2) are supported in all cases, but at the moment
4157 # only @backing allows replacing or detaching an existing child.
4159 # Unlike with blockdev-add, the @backing option must always be present
4160 # unless the node being reopened does not have a backing file and its
4161 # image does not have a default backing file name as part of its
4166 { 'command': 'x-blockdev-reopen',
4167 'data': 'BlockdevOptions', 'boxed': true }
4172 # Deletes a block device that has been added using blockdev-add.
4173 # The command will fail if the node is attached to a device or is
4174 # otherwise being used.
4176 # @node-name: Name of the graph node to delete.
4182 # -> { "execute": "blockdev-add",
4184 # "driver": "qcow2",
4185 # "node-name": "node0",
4188 # "filename": "test.qcow2"
4192 # <- { "return": {} }
4194 # -> { "execute": "blockdev-del",
4195 # "arguments": { "node-name": "node0" }
4197 # <- { "return": {} }
4200 { 'command': 'blockdev-del', 'data': { 'node-name': 'str' } }
4203 # @BlockdevCreateOptionsFile:
4205 # Driver specific image creation options for file.
4207 # @filename: Filename for the new image file
4208 # @size: Size of the virtual disk in bytes
4209 # @preallocation: Preallocation mode for the new image (default: off;
4210 # allowed values: off,
4211 # falloc (if defined CONFIG_POSIX_FALLOCATE),
4212 # full (if defined CONFIG_POSIX))
4213 # @nocow: Turn off copy-on-write (valid only on btrfs; default: off)
4214 # @extent-size-hint: Extent size hint to add to the image file; 0 for not
4215 # adding an extent size hint (default: 1 MB, since 5.1)
4219 { 'struct': 'BlockdevCreateOptionsFile',
4220 'data': { 'filename': 'str',
4222 '*preallocation': 'PreallocMode',
4224 '*extent-size-hint': 'size'} }
4227 # @BlockdevCreateOptionsGluster:
4229 # Driver specific image creation options for gluster.
4231 # @location: Where to store the new image file
4232 # @size: Size of the virtual disk in bytes
4233 # @preallocation: Preallocation mode for the new image (default: off;
4234 # allowed values: off,
4235 # falloc (if defined CONFIG_GLUSTERFS_FALLOCATE),
4236 # full (if defined CONFIG_GLUSTERFS_ZEROFILL))
4240 { 'struct': 'BlockdevCreateOptionsGluster',
4241 'data': { 'location': 'BlockdevOptionsGluster',
4243 '*preallocation': 'PreallocMode' } }
4246 # @BlockdevCreateOptionsLUKS:
4248 # Driver specific image creation options for LUKS.
4250 # @file: Node to create the image format on
4251 # @size: Size of the virtual disk in bytes
4252 # @preallocation: Preallocation mode for the new image
4254 # (default: off; allowed values: off, metadata, falloc, full)
4258 { 'struct': 'BlockdevCreateOptionsLUKS',
4259 'base': 'QCryptoBlockCreateOptionsLUKS',
4260 'data': { 'file': 'BlockdevRef',
4262 '*preallocation': 'PreallocMode' } }
4265 # @BlockdevCreateOptionsNfs:
4267 # Driver specific image creation options for NFS.
4269 # @location: Where to store the new image file
4270 # @size: Size of the virtual disk in bytes
4274 { 'struct': 'BlockdevCreateOptionsNfs',
4275 'data': { 'location': 'BlockdevOptionsNfs',
4279 # @BlockdevCreateOptionsParallels:
4281 # Driver specific image creation options for parallels.
4283 # @file: Node to create the image format on
4284 # @size: Size of the virtual disk in bytes
4285 # @cluster-size: Cluster size in bytes (default: 1 MB)
4289 { 'struct': 'BlockdevCreateOptionsParallels',
4290 'data': { 'file': 'BlockdevRef',
4292 '*cluster-size': 'size' } }
4295 # @BlockdevCreateOptionsQcow:
4297 # Driver specific image creation options for qcow.
4299 # @file: Node to create the image format on
4300 # @size: Size of the virtual disk in bytes
4301 # @backing-file: File name of the backing file if a backing file
4303 # @encrypt: Encryption options if the image should be encrypted
4307 { 'struct': 'BlockdevCreateOptionsQcow',
4308 'data': { 'file': 'BlockdevRef',
4310 '*backing-file': 'str',
4311 '*encrypt': 'QCryptoBlockCreateOptions' } }
4314 # @BlockdevQcow2Version:
4316 # @v2: The original QCOW2 format as introduced in qemu 0.10 (version 2)
4317 # @v3: The extended QCOW2 format as introduced in qemu 1.1 (version 3)
4321 { 'enum': 'BlockdevQcow2Version',
4322 'data': [ 'v2', 'v3' ] }
4326 # @Qcow2CompressionType:
4328 # Compression type used in qcow2 image file
4330 # @zlib: zlib compression, see <http://zlib.net/>
4331 # @zstd: zstd compression, see <http://github.com/facebook/zstd>
4335 { 'enum': 'Qcow2CompressionType',
4336 'data': [ 'zlib', { 'name': 'zstd', 'if': 'defined(CONFIG_ZSTD)' } ] }
4339 # @BlockdevCreateOptionsQcow2:
4341 # Driver specific image creation options for qcow2.
4343 # @file: Node to create the image format on
4344 # @data-file: Node to use as an external data file in which all guest
4345 # data is stored so that only metadata remains in the qcow2
4347 # @data-file-raw: True if the external data file must stay valid as a
4348 # standalone (read-only) raw image without looking at qcow2
4349 # metadata (default: false; since: 4.0)
4350 # @extended-l2: True to make the image have extended L2 entries
4351 # (default: false; since 5.2)
4352 # @size: Size of the virtual disk in bytes
4353 # @version: Compatibility level (default: v3)
4354 # @backing-file: File name of the backing file if a backing file
4356 # @backing-fmt: Name of the block driver to use for the backing file
4357 # @encrypt: Encryption options if the image should be encrypted
4358 # @cluster-size: qcow2 cluster size in bytes (default: 65536)
4359 # @preallocation: Preallocation mode for the new image (default: off;
4360 # allowed values: off, falloc, full, metadata)
4361 # @lazy-refcounts: True if refcounts may be updated lazily (default: off)
4362 # @refcount-bits: Width of reference counts in bits (default: 16)
4363 # @compression-type: The image cluster compression method
4364 # (default: zlib, since 5.1)
4368 { 'struct': 'BlockdevCreateOptionsQcow2',
4369 'data': { 'file': 'BlockdevRef',
4370 '*data-file': 'BlockdevRef',
4371 '*data-file-raw': 'bool',
4372 '*extended-l2': 'bool',
4374 '*version': 'BlockdevQcow2Version',
4375 '*backing-file': 'str',
4376 '*backing-fmt': 'BlockdevDriver',
4377 '*encrypt': 'QCryptoBlockCreateOptions',
4378 '*cluster-size': 'size',
4379 '*preallocation': 'PreallocMode',
4380 '*lazy-refcounts': 'bool',
4381 '*refcount-bits': 'int',
4382 '*compression-type':'Qcow2CompressionType' } }
4385 # @BlockdevCreateOptionsQed:
4387 # Driver specific image creation options for qed.
4389 # @file: Node to create the image format on
4390 # @size: Size of the virtual disk in bytes
4391 # @backing-file: File name of the backing file if a backing file
4393 # @backing-fmt: Name of the block driver to use for the backing file
4394 # @cluster-size: Cluster size in bytes (default: 65536)
4395 # @table-size: L1/L2 table size (in clusters)
4399 { 'struct': 'BlockdevCreateOptionsQed',
4400 'data': { 'file': 'BlockdevRef',
4402 '*backing-file': 'str',
4403 '*backing-fmt': 'BlockdevDriver',
4404 '*cluster-size': 'size',
4405 '*table-size': 'int' } }
4408 # @BlockdevCreateOptionsRbd:
4410 # Driver specific image creation options for rbd/Ceph.
4412 # @location: Where to store the new image file. This location cannot
4413 # point to a snapshot.
4414 # @size: Size of the virtual disk in bytes
4415 # @cluster-size: RBD object size
4419 { 'struct': 'BlockdevCreateOptionsRbd',
4420 'data': { 'location': 'BlockdevOptionsRbd',
4422 '*cluster-size' : 'size' } }
4425 # @BlockdevVmdkSubformat:
4427 # Subformat options for VMDK images
4429 # @monolithicSparse: Single file image with sparse cluster allocation
4431 # @monolithicFlat: Single flat data image and a descriptor file
4433 # @twoGbMaxExtentSparse: Data is split into 2GB (per virtual LBA) sparse extent
4434 # files, in addition to a descriptor file
4436 # @twoGbMaxExtentFlat: Data is split into 2GB (per virtual LBA) flat extent
4437 # files, in addition to a descriptor file
4439 # @streamOptimized: Single file image sparse cluster allocation, optimized
4440 # for streaming over network.
4444 { 'enum': 'BlockdevVmdkSubformat',
4445 'data': [ 'monolithicSparse', 'monolithicFlat', 'twoGbMaxExtentSparse',
4446 'twoGbMaxExtentFlat', 'streamOptimized'] }
4449 # @BlockdevVmdkAdapterType:
4451 # Adapter type info for VMDK images
4455 { 'enum': 'BlockdevVmdkAdapterType',
4456 'data': [ 'ide', 'buslogic', 'lsilogic', 'legacyESX'] }
4459 # @BlockdevCreateOptionsVmdk:
4461 # Driver specific image creation options for VMDK.
4463 # @file: Where to store the new image file. This refers to the image
4464 # file for monolithcSparse and streamOptimized format, or the
4465 # descriptor file for other formats.
4466 # @size: Size of the virtual disk in bytes
4467 # @extents: Where to store the data extents. Required for monolithcFlat,
4468 # twoGbMaxExtentSparse and twoGbMaxExtentFlat formats. For
4469 # monolithicFlat, only one entry is required; for
4470 # twoGbMaxExtent* formats, the number of entries required is
4471 # calculated as extent_number = virtual_size / 2GB. Providing
4472 # more extents than will be used is an error.
4473 # @subformat: The subformat of the VMDK image. Default: "monolithicSparse".
4474 # @backing-file: The path of backing file. Default: no backing file is used.
4475 # @adapter-type: The adapter type used to fill in the descriptor. Default: ide.
4476 # @hwversion: Hardware version. The meaningful options are "4" or "6".
4478 # @zeroed-grain: Whether to enable zeroed-grain feature for sparse subformats.
4483 { 'struct': 'BlockdevCreateOptionsVmdk',
4484 'data': { 'file': 'BlockdevRef',
4486 '*extents': ['BlockdevRef'],
4487 '*subformat': 'BlockdevVmdkSubformat',
4488 '*backing-file': 'str',
4489 '*adapter-type': 'BlockdevVmdkAdapterType',
4490 '*hwversion': 'str',
4491 '*zeroed-grain': 'bool' } }
4495 # @SheepdogRedundancyType:
4497 # @full: Create a fully replicated vdi with x copies
4498 # @erasure-coded: Create an erasure coded vdi with x data strips and
4503 { 'enum': 'SheepdogRedundancyType',
4504 'data': [ 'full', 'erasure-coded' ] }
4507 # @SheepdogRedundancyFull:
4509 # @copies: Number of copies to use (between 1 and 31)
4513 { 'struct': 'SheepdogRedundancyFull',
4514 'data': { 'copies': 'int' }}
4517 # @SheepdogRedundancyErasureCoded:
4519 # @data-strips: Number of data strips to use (one of {2,4,8,16})
4520 # @parity-strips: Number of parity strips to use (between 1 and 15)
4524 { 'struct': 'SheepdogRedundancyErasureCoded',
4525 'data': { 'data-strips': 'int',
4526 'parity-strips': 'int' }}
4529 # @SheepdogRedundancy:
4533 { 'union': 'SheepdogRedundancy',
4534 'base': { 'type': 'SheepdogRedundancyType' },
4535 'discriminator': 'type',
4536 'data': { 'full': 'SheepdogRedundancyFull',
4537 'erasure-coded': 'SheepdogRedundancyErasureCoded' } }
4540 # @BlockdevCreateOptionsSheepdog:
4542 # Driver specific image creation options for Sheepdog.
4544 # @location: Where to store the new image file
4545 # @size: Size of the virtual disk in bytes
4546 # @backing-file: File name of a base image
4547 # @preallocation: Preallocation mode for the new image (default: off;
4548 # allowed values: off, full)
4549 # @redundancy: Redundancy of the image
4550 # @object-size: Object size of the image
4554 { 'struct': 'BlockdevCreateOptionsSheepdog',
4555 'data': { 'location': 'BlockdevOptionsSheepdog',
4557 '*backing-file': 'str',
4558 '*preallocation': 'PreallocMode',
4559 '*redundancy': 'SheepdogRedundancy',
4560 '*object-size': 'size' } }
4563 # @BlockdevCreateOptionsSsh:
4565 # Driver specific image creation options for SSH.
4567 # @location: Where to store the new image file
4568 # @size: Size of the virtual disk in bytes
4572 { 'struct': 'BlockdevCreateOptionsSsh',
4573 'data': { 'location': 'BlockdevOptionsSsh',
4577 # @BlockdevCreateOptionsVdi:
4579 # Driver specific image creation options for VDI.
4581 # @file: Node to create the image format on
4582 # @size: Size of the virtual disk in bytes
4583 # @preallocation: Preallocation mode for the new image (default: off;
4584 # allowed values: off, metadata)
4588 { 'struct': 'BlockdevCreateOptionsVdi',
4589 'data': { 'file': 'BlockdevRef',
4591 '*preallocation': 'PreallocMode' } }
4594 # @BlockdevVhdxSubformat:
4596 # @dynamic: Growing image file
4597 # @fixed: Preallocated fixed-size image file
4601 { 'enum': 'BlockdevVhdxSubformat',
4602 'data': [ 'dynamic', 'fixed' ] }
4605 # @BlockdevCreateOptionsVhdx:
4607 # Driver specific image creation options for vhdx.
4609 # @file: Node to create the image format on
4610 # @size: Size of the virtual disk in bytes
4611 # @log-size: Log size in bytes, must be a multiple of 1 MB
4613 # @block-size: Block size in bytes, must be a multiple of 1 MB and not
4614 # larger than 256 MB (default: automatically choose a block
4615 # size depending on the image size)
4616 # @subformat: vhdx subformat (default: dynamic)
4617 # @block-state-zero: Force use of payload blocks of type 'ZERO'. Non-standard,
4618 # but default. Do not set to 'off' when using 'qemu-img
4619 # convert' with subformat=dynamic.
4623 { 'struct': 'BlockdevCreateOptionsVhdx',
4624 'data': { 'file': 'BlockdevRef',
4626 '*log-size': 'size',
4627 '*block-size': 'size',
4628 '*subformat': 'BlockdevVhdxSubformat',
4629 '*block-state-zero': 'bool' } }
4632 # @BlockdevVpcSubformat:
4634 # @dynamic: Growing image file
4635 # @fixed: Preallocated fixed-size image file
4639 { 'enum': 'BlockdevVpcSubformat',
4640 'data': [ 'dynamic', 'fixed' ] }
4643 # @BlockdevCreateOptionsVpc:
4645 # Driver specific image creation options for vpc (VHD).
4647 # @file: Node to create the image format on
4648 # @size: Size of the virtual disk in bytes
4649 # @subformat: vhdx subformat (default: dynamic)
4650 # @force-size: Force use of the exact byte size instead of rounding to the
4651 # next size that can be represented in CHS geometry
4656 { 'struct': 'BlockdevCreateOptionsVpc',
4657 'data': { 'file': 'BlockdevRef',
4659 '*subformat': 'BlockdevVpcSubformat',
4660 '*force-size': 'bool' } }
4663 # @BlockdevCreateOptions:
4665 # Options for creating an image format on a given node.
4667 # @driver: block driver to create the image format
4671 { 'union': 'BlockdevCreateOptions',
4673 'driver': 'BlockdevDriver' },
4674 'discriminator': 'driver',
4676 'file': 'BlockdevCreateOptionsFile',
4677 'gluster': 'BlockdevCreateOptionsGluster',
4678 'luks': 'BlockdevCreateOptionsLUKS',
4679 'nfs': 'BlockdevCreateOptionsNfs',
4680 'parallels': 'BlockdevCreateOptionsParallels',
4681 'qcow': 'BlockdevCreateOptionsQcow',
4682 'qcow2': 'BlockdevCreateOptionsQcow2',
4683 'qed': 'BlockdevCreateOptionsQed',
4684 'rbd': 'BlockdevCreateOptionsRbd',
4685 'sheepdog': 'BlockdevCreateOptionsSheepdog',
4686 'ssh': 'BlockdevCreateOptionsSsh',
4687 'vdi': 'BlockdevCreateOptionsVdi',
4688 'vhdx': 'BlockdevCreateOptionsVhdx',
4689 'vmdk': 'BlockdevCreateOptionsVmdk',
4690 'vpc': 'BlockdevCreateOptionsVpc'
4696 # Starts a job to create an image format on a given node. The job is
4697 # automatically finalized, but a manual job-dismiss is required.
4699 # @job-id: Identifier for the newly created job.
4701 # @options: Options for the image creation.
4705 { 'command': 'blockdev-create',
4706 'data': { 'job-id': 'str',
4707 'options': 'BlockdevCreateOptions' } }
4710 # @BlockdevAmendOptionsLUKS:
4712 # Driver specific image amend options for LUKS.
4716 { 'struct': 'BlockdevAmendOptionsLUKS',
4717 'base': 'QCryptoBlockAmendOptionsLUKS',
4722 # @BlockdevAmendOptionsQcow2:
4724 # Driver specific image amend options for qcow2.
4725 # For now, only encryption options can be amended
4727 # @encrypt Encryption options to be amended
4731 { 'struct': 'BlockdevAmendOptionsQcow2',
4732 'data': { '*encrypt': 'QCryptoBlockAmendOptions' } }
4735 # @BlockdevAmendOptions:
4737 # Options for amending an image format
4739 # @driver: Block driver of the node to amend.
4743 { 'union': 'BlockdevAmendOptions',
4745 'driver': 'BlockdevDriver' },
4746 'discriminator': 'driver',
4748 'luks': 'BlockdevAmendOptionsLUKS',
4749 'qcow2': 'BlockdevAmendOptionsQcow2' } }
4752 # @x-blockdev-amend:
4754 # Starts a job to amend format specific options of an existing open block device
4755 # The job is automatically finalized, but a manual job-dismiss is required.
4757 # @job-id: Identifier for the newly created job.
4759 # @node-name: Name of the block node to work on
4761 # @options: Options (driver specific)
4763 # @force: Allow unsafe operations, format specific
4764 # For luks that allows erase of the last active keyslot
4765 # (permanent loss of data),
4766 # and replacement of an active keyslot
4767 # (possible loss of data if IO error happens)
4771 { 'command': 'x-blockdev-amend',
4772 'data': { 'job-id': 'str',
4774 'options': 'BlockdevAmendOptions',
4775 '*force': 'bool' } }
4778 # @BlockErrorAction:
4780 # An enumeration of action that has been taken when a DISK I/O occurs
4782 # @ignore: error has been ignored
4784 # @report: error has been reported to the device
4786 # @stop: error caused VM to be stopped
4790 { 'enum': 'BlockErrorAction',
4791 'data': [ 'ignore', 'report', 'stop' ] }
4795 # @BLOCK_IMAGE_CORRUPTED:
4797 # Emitted when a disk image is being marked corrupt. The image can be
4798 # identified by its device or node name. The 'device' field is always
4799 # present for compatibility reasons, but it can be empty ("") if the
4800 # image does not have a device name associated.
4802 # @device: device name. This is always present for compatibility
4803 # reasons, but it can be empty ("") if the image does not
4804 # have a device name associated.
4806 # @node-name: node name (Since: 2.4)
4808 # @msg: informative message for human consumption, such as the kind of
4809 # corruption being detected. It should not be parsed by machine as it is
4810 # not guaranteed to be stable
4812 # @offset: if the corruption resulted from an image access, this is
4813 # the host's access offset into the image
4815 # @size: if the corruption resulted from an image access, this is
4818 # @fatal: if set, the image is marked corrupt and therefore unusable after this
4819 # event and must be repaired (Since 2.2; before, every
4820 # BLOCK_IMAGE_CORRUPTED event was fatal)
4822 # Note: If action is "stop", a STOP event will eventually follow the
4823 # BLOCK_IO_ERROR event.
4827 # <- { "event": "BLOCK_IMAGE_CORRUPTED",
4828 # "data": { "device": "ide0-hd0", "node-name": "node0",
4829 # "msg": "Prevented active L1 table overwrite", "offset": 196608,
4831 # "timestamp": { "seconds": 1378126126, "microseconds": 966463 } }
4835 { 'event': 'BLOCK_IMAGE_CORRUPTED',
4836 'data': { 'device' : 'str',
4837 '*node-name' : 'str',
4841 'fatal' : 'bool' } }
4846 # Emitted when a disk I/O error occurs
4848 # @device: device name. This is always present for compatibility
4849 # reasons, but it can be empty ("") if the image does not
4850 # have a device name associated.
4852 # @node-name: node name. Note that errors may be reported for the root node
4853 # that is directly attached to a guest device rather than for the
4854 # node where the error occurred. The node name is not present if
4855 # the drive is empty. (Since: 2.8)
4857 # @operation: I/O operation
4859 # @action: action that has been taken
4861 # @nospace: true if I/O error was caused due to a no-space
4862 # condition. This key is only present if query-block's
4863 # io-status is present, please see query-block documentation
4864 # for more information (since: 2.2)
4866 # @reason: human readable string describing the error cause.
4867 # (This field is a debugging aid for humans, it should not
4868 # be parsed by applications) (since: 2.2)
4870 # Note: If action is "stop", a STOP event will eventually follow the
4871 # BLOCK_IO_ERROR event
4877 # <- { "event": "BLOCK_IO_ERROR",
4878 # "data": { "device": "ide0-hd1",
4879 # "node-name": "#block212",
4880 # "operation": "write",
4881 # "action": "stop" },
4882 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4885 { 'event': 'BLOCK_IO_ERROR',
4886 'data': { 'device': 'str', '*node-name': 'str',
4887 'operation': 'IoOperationType',
4888 'action': 'BlockErrorAction', '*nospace': 'bool',
4892 # @BLOCK_JOB_COMPLETED:
4894 # Emitted when a block job has completed
4898 # @device: The job identifier. Originally the device name but other
4899 # values are allowed since QEMU 2.7
4901 # @len: maximum progress value
4903 # @offset: current progress value. On success this is equal to len.
4904 # On failure this is less than len
4906 # @speed: rate limit, bytes per second
4908 # @error: error message. Only present on failure. This field
4909 # contains a human-readable error message. There are no semantics
4910 # other than that streaming has failed and clients should not try to
4911 # interpret the error string
4917 # <- { "event": "BLOCK_JOB_COMPLETED",
4918 # "data": { "type": "stream", "device": "virtio-disk0",
4919 # "len": 10737418240, "offset": 10737418240,
4921 # "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
4924 { 'event': 'BLOCK_JOB_COMPLETED',
4925 'data': { 'type' : 'JobType',
4933 # @BLOCK_JOB_CANCELLED:
4935 # Emitted when a block job has been cancelled
4939 # @device: The job identifier. Originally the device name but other
4940 # values are allowed since QEMU 2.7
4942 # @len: maximum progress value
4944 # @offset: current progress value. On success this is equal to len.
4945 # On failure this is less than len
4947 # @speed: rate limit, bytes per second
4953 # <- { "event": "BLOCK_JOB_CANCELLED",
4954 # "data": { "type": "stream", "device": "virtio-disk0",
4955 # "len": 10737418240, "offset": 134217728,
4957 # "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
4960 { 'event': 'BLOCK_JOB_CANCELLED',
4961 'data': { 'type' : 'JobType',
4970 # Emitted when a block job encounters an error
4972 # @device: The job identifier. Originally the device name but other
4973 # values are allowed since QEMU 2.7
4975 # @operation: I/O operation
4977 # @action: action that has been taken
4983 # <- { "event": "BLOCK_JOB_ERROR",
4984 # "data": { "device": "ide0-hd1",
4985 # "operation": "write",
4986 # "action": "stop" },
4987 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4990 { 'event': 'BLOCK_JOB_ERROR',
4991 'data': { 'device' : 'str',
4992 'operation': 'IoOperationType',
4993 'action' : 'BlockErrorAction' } }
4998 # Emitted when a block job is ready to complete
5002 # @device: The job identifier. Originally the device name but other
5003 # values are allowed since QEMU 2.7
5005 # @len: maximum progress value
5007 # @offset: current progress value. On success this is equal to len.
5008 # On failure this is less than len
5010 # @speed: rate limit, bytes per second
5012 # Note: The "ready to complete" status is always reset by a @BLOCK_JOB_ERROR
5019 # <- { "event": "BLOCK_JOB_READY",
5020 # "data": { "device": "drive0", "type": "mirror", "speed": 0,
5021 # "len": 2097152, "offset": 2097152 }
5022 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
5025 { 'event': 'BLOCK_JOB_READY',
5026 'data': { 'type' : 'JobType',
5033 # @BLOCK_JOB_PENDING:
5035 # Emitted when a block job is awaiting explicit authorization to finalize graph
5036 # changes via @block-job-finalize. If this job is part of a transaction, it will
5037 # not emit this event until the transaction has converged first.
5041 # @id: The job identifier.
5047 # <- { "event": "BLOCK_JOB_WAITING",
5048 # "data": { "device": "drive0", "type": "mirror" },
5049 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
5052 { 'event': 'BLOCK_JOB_PENDING',
5053 'data': { 'type' : 'JobType',
5059 # Preallocation mode of QEMU image file
5061 # @off: no preallocation
5062 # @metadata: preallocate only for metadata
5063 # @falloc: like @full preallocation but allocate disk space by
5064 # posix_fallocate() rather than writing data.
5065 # @full: preallocate all data by writing it to the device to ensure
5066 # disk space is really available. This data may or may not be
5067 # zero, depending on the image format and storage.
5068 # @full preallocation also sets up metadata correctly.
5072 { 'enum': 'PreallocMode',
5073 'data': [ 'off', 'metadata', 'falloc', 'full' ] }
5076 # @BLOCK_WRITE_THRESHOLD:
5078 # Emitted when writes on block device reaches or exceeds the
5079 # configured write threshold. For thin-provisioned devices, this
5080 # means the device should be extended to avoid pausing for
5082 # The event is one shot. Once triggered, it needs to be
5083 # re-registered with another block-set-write-threshold command.
5085 # @node-name: graph node name on which the threshold was exceeded.
5087 # @amount-exceeded: amount of data which exceeded the threshold, in bytes.
5089 # @write-threshold: last configured threshold, in bytes.
5093 { 'event': 'BLOCK_WRITE_THRESHOLD',
5094 'data': { 'node-name': 'str',
5095 'amount-exceeded': 'uint64',
5096 'write-threshold': 'uint64' } }
5099 # @block-set-write-threshold:
5101 # Change the write threshold for a block drive. An event will be
5102 # delivered if a write to this block drive crosses the configured
5103 # threshold. The threshold is an offset, thus must be
5104 # non-negative. Default is no write threshold. Setting the threshold
5105 # to zero disables it.
5107 # This is useful to transparently resize thin-provisioned drives without
5108 # the guest OS noticing.
5110 # @node-name: graph node name on which the threshold must be set.
5112 # @write-threshold: configured threshold for the block device, bytes.
5113 # Use 0 to disable the threshold.
5119 # -> { "execute": "block-set-write-threshold",
5120 # "arguments": { "node-name": "mydev",
5121 # "write-threshold": 17179869184 } }
5122 # <- { "return": {} }
5125 { 'command': 'block-set-write-threshold',
5126 'data': { 'node-name': 'str', 'write-threshold': 'uint64' } }
5129 # @x-blockdev-change:
5131 # Dynamically reconfigure the block driver state graph. It can be used
5132 # to add, remove, insert or replace a graph node. Currently only the
5133 # Quorum driver implements this feature to add or remove its child. This
5134 # is useful to fix a broken quorum child.
5136 # If @node is specified, it will be inserted under @parent. @child
5137 # may not be specified in this case. If both @parent and @child are
5138 # specified but @node is not, @child will be detached from @parent.
5140 # @parent: the id or name of the parent node.
5142 # @child: the name of a child under the given parent node.
5144 # @node: the name of the node that will be added.
5146 # Note: this command is experimental, and its API is not stable. It
5147 # does not support all kinds of operations, all kinds of children, nor
5148 # all block drivers.
5150 # FIXME Removing children from a quorum node means introducing gaps in the
5151 # child indices. This cannot be represented in the 'children' list of
5152 # BlockdevOptionsQuorum, as returned by .bdrv_refresh_filename().
5154 # Warning: The data in a new quorum child MUST be consistent with that of
5155 # the rest of the array.
5161 # 1. Add a new node to a quorum
5162 # -> { "execute": "blockdev-add",
5165 # "node-name": "new_node",
5166 # "file": { "driver": "file",
5167 # "filename": "test.raw" } } }
5168 # <- { "return": {} }
5169 # -> { "execute": "x-blockdev-change",
5170 # "arguments": { "parent": "disk1",
5171 # "node": "new_node" } }
5172 # <- { "return": {} }
5174 # 2. Delete a quorum's node
5175 # -> { "execute": "x-blockdev-change",
5176 # "arguments": { "parent": "disk1",
5177 # "child": "children.1" } }
5178 # <- { "return": {} }
5181 { 'command': 'x-blockdev-change',
5182 'data' : { 'parent': 'str',
5187 # @x-blockdev-set-iothread:
5189 # Move @node and its children into the @iothread. If @iothread is null then
5190 # move @node and its children into the main loop.
5192 # The node must not be attached to a BlockBackend.
5194 # @node-name: the name of the block driver node
5196 # @iothread: the name of the IOThread object or null for the main loop
5198 # @force: true if the node and its children should be moved when a BlockBackend
5199 # is already attached
5201 # Note: this command is experimental and intended for test cases that need
5202 # control over IOThreads only.
5208 # 1. Move a node into an IOThread
5209 # -> { "execute": "x-blockdev-set-iothread",
5210 # "arguments": { "node-name": "disk1",
5211 # "iothread": "iothread0" } }
5212 # <- { "return": {} }
5214 # 2. Move a node into the main loop
5215 # -> { "execute": "x-blockdev-set-iothread",
5216 # "arguments": { "node-name": "disk1",
5217 # "iothread": null } }
5218 # <- { "return": {} }
5221 { 'command': 'x-blockdev-set-iothread',
5222 'data' : { 'node-name': 'str',
5223 'iothread': 'StrOrNull',
5224 '*force': 'bool' } }
5229 # An enumeration of the quorum operation types
5231 # @read: read operation
5233 # @write: write operation
5235 # @flush: flush operation
5239 { 'enum': 'QuorumOpType',
5240 'data': [ 'read', 'write', 'flush' ] }
5245 # Emitted by the Quorum block driver if it fails to establish a quorum
5247 # @reference: device name if defined else node name
5249 # @sector-num: number of the first sector of the failed read operation
5251 # @sectors-count: failed read operation sector count
5253 # Note: This event is rate-limited.
5259 # <- { "event": "QUORUM_FAILURE",
5260 # "data": { "reference": "usr1", "sector-num": 345435, "sectors-count": 5 },
5261 # "timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
5264 { 'event': 'QUORUM_FAILURE',
5265 'data': { 'reference': 'str', 'sector-num': 'int', 'sectors-count': 'int' } }
5268 # @QUORUM_REPORT_BAD:
5270 # Emitted to report a corruption of a Quorum file
5272 # @type: quorum operation type (Since 2.6)
5274 # @error: error message. Only present on failure. This field
5275 # contains a human-readable error message. There are no semantics other
5276 # than that the block layer reported an error and clients should not
5277 # try to interpret the error string.
5279 # @node-name: the graph node name of the block driver state
5281 # @sector-num: number of the first sector of the failed read operation
5283 # @sectors-count: failed read operation sector count
5285 # Note: This event is rate-limited.
5293 # { "event": "QUORUM_REPORT_BAD",
5294 # "data": { "node-name": "node0", "sector-num": 345435, "sectors-count": 5,
5296 # "timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
5298 # 2. Flush operation
5300 # { "event": "QUORUM_REPORT_BAD",
5301 # "data": { "node-name": "node0", "sector-num": 0, "sectors-count": 2097120,
5302 # "type": "flush", "error": "Broken pipe" },
5303 # "timestamp": { "seconds": 1456406829, "microseconds": 291763 } }
5306 { 'event': 'QUORUM_REPORT_BAD',
5307 'data': { 'type': 'QuorumOpType', '*error': 'str', 'node-name': 'str',
5308 'sector-num': 'int', 'sectors-count': 'int' } }
5311 # @BlockdevSnapshotInternal:
5313 # @device: the device name or node-name of a root node to generate the snapshot
5316 # @name: the name of the internal snapshot to be created
5318 # Notes: In transaction, if @name is empty, or any snapshot matching @name
5319 # exists, the operation will fail. Only some image formats support it,
5320 # for example, qcow2, rbd, and sheepdog.
5324 { 'struct': 'BlockdevSnapshotInternal',
5325 'data': { 'device': 'str', 'name': 'str' } }
5328 # @blockdev-snapshot-internal-sync:
5330 # Synchronously take an internal snapshot of a block device, when the
5331 # format of the image used supports it. If the name is an empty
5332 # string, or a snapshot with name already exists, the operation will
5335 # For the arguments, see the documentation of BlockdevSnapshotInternal.
5337 # Returns: - nothing on success
5338 # - If @device is not a valid block device, GenericError
5339 # - If any snapshot matching @name exists, or @name is empty,
5341 # - If the format of the image used does not support it,
5342 # BlockFormatFeatureNotSupported
5348 # -> { "execute": "blockdev-snapshot-internal-sync",
5349 # "arguments": { "device": "ide-hd0",
5350 # "name": "snapshot0" }
5352 # <- { "return": {} }
5355 { 'command': 'blockdev-snapshot-internal-sync',
5356 'data': 'BlockdevSnapshotInternal' }
5359 # @blockdev-snapshot-delete-internal-sync:
5361 # Synchronously delete an internal snapshot of a block device, when the format
5362 # of the image used support it. The snapshot is identified by name or id or
5363 # both. One of the name or id is required. Return SnapshotInfo for the
5364 # successfully deleted snapshot.
5366 # @device: the device name or node-name of a root node to delete the snapshot
5369 # @id: optional the snapshot's ID to be deleted
5371 # @name: optional the snapshot's name to be deleted
5373 # Returns: - SnapshotInfo on success
5374 # - If @device is not a valid block device, GenericError
5375 # - If snapshot not found, GenericError
5376 # - If the format of the image used does not support it,
5377 # BlockFormatFeatureNotSupported
5378 # - If @id and @name are both not specified, GenericError
5384 # -> { "execute": "blockdev-snapshot-delete-internal-sync",
5385 # "arguments": { "device": "ide-hd0",
5386 # "name": "snapshot0" }
5390 # "name": "snapshot0",
5391 # "vm-state-size": 0,
5392 # "date-sec": 1000012,
5394 # "vm-clock-sec": 100,
5395 # "vm-clock-nsec": 20,
5401 { 'command': 'blockdev-snapshot-delete-internal-sync',
5402 'data': { 'device': 'str', '*id': 'str', '*name': 'str'},
5403 'returns': 'SnapshotInfo' }