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 # @detect_zeroes: detect and optimize zero writes (Since 2.1)
324 # @bps: total throughput limit in bytes per second is specified
326 # @bps_rd: read throughput limit in bytes per second is specified
328 # @bps_wr: write throughput limit in bytes per second is specified
330 # @iops: total I/O operations per second is specified
332 # @iops_rd: read I/O operations per second is specified
334 # @iops_wr: write I/O operations per second is specified
336 # @image: the info of image used (since: 1.6)
338 # @bps_max: total throughput limit during bursts,
339 # in bytes (Since 1.7)
341 # @bps_rd_max: read throughput limit during bursts,
342 # in bytes (Since 1.7)
344 # @bps_wr_max: write throughput limit during bursts,
345 # in bytes (Since 1.7)
347 # @iops_max: total I/O operations per second during bursts,
348 # in bytes (Since 1.7)
350 # @iops_rd_max: read I/O operations per second during bursts,
351 # in bytes (Since 1.7)
353 # @iops_wr_max: write I/O operations per second during bursts,
354 # in bytes (Since 1.7)
356 # @bps_max_length: maximum length of the @bps_max burst
357 # period, in seconds. (Since 2.6)
359 # @bps_rd_max_length: maximum length of the @bps_rd_max
360 # burst period, in seconds. (Since 2.6)
362 # @bps_wr_max_length: maximum length of the @bps_wr_max
363 # burst period, in seconds. (Since 2.6)
365 # @iops_max_length: maximum length of the @iops burst
366 # period, in seconds. (Since 2.6)
368 # @iops_rd_max_length: maximum length of the @iops_rd_max
369 # burst period, in seconds. (Since 2.6)
371 # @iops_wr_max_length: maximum length of the @iops_wr_max
372 # burst period, in seconds. (Since 2.6)
374 # @iops_size: an I/O size in bytes (Since 1.7)
376 # @group: throttle group name (Since 2.4)
378 # @cache: the cache mode used for the block device (since: 2.3)
380 # @write_threshold: configured write threshold for the device.
381 # 0 if disabled. (Since 2.3)
383 # @dirty-bitmaps: dirty bitmaps information (only present if node
384 # has one or more dirty bitmaps) (Since 4.2)
389 { 'struct': 'BlockDeviceInfo',
390 'data': { 'file': 'str', '*node-name': 'str', 'ro': 'bool', 'drv': 'str',
391 '*backing_file': 'str', 'backing_file_depth': 'int',
393 'detect_zeroes': 'BlockdevDetectZeroesOptions',
394 'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
395 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
396 'image': 'ImageInfo',
397 '*bps_max': 'int', '*bps_rd_max': 'int',
398 '*bps_wr_max': 'int', '*iops_max': 'int',
399 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
400 '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
401 '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
402 '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
403 '*iops_size': 'int', '*group': 'str', 'cache': 'BlockdevCacheInfo',
404 'write_threshold': 'int', '*dirty-bitmaps': ['BlockDirtyInfo'] } }
407 # @BlockDeviceIoStatus:
409 # An enumeration of block device I/O status.
411 # @ok: The last I/O operation has succeeded
413 # @failed: The last I/O operation has failed
415 # @nospace: The last I/O operation has failed due to a no-space condition
419 { 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
424 # Block dirty bitmap information.
426 # @name: the name of the dirty bitmap (Since 2.4)
428 # @count: number of dirty bytes according to the dirty bitmap
430 # @granularity: granularity of the dirty bitmap in bytes (since 1.4)
432 # @recording: true if the bitmap is recording new writes from the guest.
433 # Replaces `active` and `disabled` statuses. (since 4.0)
435 # @busy: true if the bitmap is in-use by some operation (NBD or jobs)
436 # and cannot be modified via QMP or used by another operation.
437 # Replaces `locked` and `frozen` statuses. (since 4.0)
439 # @persistent: true if the bitmap was stored on disk, is scheduled to be stored
440 # on disk, or both. (since 4.0)
442 # @inconsistent: true if this is a persistent bitmap that was improperly
443 # stored. Implies @persistent to be true; @recording and
444 # @busy to be false. This bitmap cannot be used. To remove
445 # it, use @block-dirty-bitmap-remove. (Since 4.0)
449 { 'struct': 'BlockDirtyInfo',
450 'data': {'*name': 'str', 'count': 'int', 'granularity': 'uint32',
451 'recording': 'bool', 'busy': 'bool',
452 'persistent': 'bool', '*inconsistent': 'bool' } }
455 # @Qcow2BitmapInfoFlags:
457 # An enumeration of flags that a bitmap can report to the user.
459 # @in-use: This flag is set by any process actively modifying the qcow2 file,
460 # and cleared when the updated bitmap is flushed to the qcow2 image.
461 # The presence of this flag in an offline image means that the bitmap
462 # was not saved correctly after its last usage, and may contain
465 # @auto: The bitmap must reflect all changes of the virtual disk by any
466 # application that would write to this qcow2 file.
470 { 'enum': 'Qcow2BitmapInfoFlags',
471 'data': ['in-use', 'auto'] }
476 # Qcow2 bitmap information.
478 # @name: the name of the bitmap
480 # @granularity: granularity of the bitmap in bytes
482 # @flags: flags of the bitmap
486 { 'struct': 'Qcow2BitmapInfo',
487 'data': {'name': 'str', 'granularity': 'uint32',
488 'flags': ['Qcow2BitmapInfoFlags'] } }
491 # @BlockLatencyHistogramInfo:
493 # Block latency histogram.
495 # @boundaries: list of interval boundary values in nanoseconds, all greater
496 # than zero and in ascending order.
497 # For example, the list [10, 50, 100] produces the following
498 # histogram intervals: [0, 10), [10, 50), [50, 100), [100, +inf).
500 # @bins: list of io request counts corresponding to histogram intervals.
501 # len(@bins) = len(@boundaries) + 1
502 # For the example above, @bins may be something like [3, 1, 5, 2],
503 # and corresponding histogram looks like:
512 # +------------------
517 { 'struct': 'BlockLatencyHistogramInfo',
518 'data': {'boundaries': ['uint64'], 'bins': ['uint64'] } }
523 # Block device information. This structure describes a virtual device and
524 # the backing device associated with it.
526 # @device: The device name associated with the virtual device.
528 # @qdev: The qdev ID, or if no ID is assigned, the QOM path of the block
529 # device. (since 2.10)
531 # @type: This field is returned only for compatibility reasons, it should
532 # not be used (always returns 'unknown')
534 # @removable: True if the device supports removable media.
536 # @locked: True if the guest has locked this device from having its media
539 # @tray_open: True if the device's tray is open
540 # (only present if it has a tray)
542 # @io-status: @BlockDeviceIoStatus. Only present if the device
543 # supports it and the VM is configured to stop on errors
544 # (supported device models: virtio-blk, IDE, SCSI except
547 # @inserted: @BlockDeviceInfo describing the device if media is
552 { 'struct': 'BlockInfo',
553 'data': {'device': 'str', '*qdev': 'str', 'type': 'str', 'removable': 'bool',
554 'locked': 'bool', '*inserted': 'BlockDeviceInfo',
555 '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus' } }
560 # Image file size calculation information. This structure describes the size
561 # requirements for creating a new image file.
563 # The size requirements depend on the new image file format. File size always
564 # equals virtual disk size for the 'raw' format, even for sparse POSIX files.
565 # Compact formats such as 'qcow2' represent unallocated and zero regions
566 # efficiently so file size may be smaller than virtual disk size.
568 # The values are upper bounds that are guaranteed to fit the new image file.
569 # Subsequent modification, such as internal snapshot or further bitmap
570 # creation, may require additional space and is not covered here.
572 # @required: Size required for a new image file, in bytes, when copying just
573 # allocated guest-visible contents.
575 # @fully-allocated: Image file size, in bytes, once data has been written
576 # to all sectors, when copying just guest-visible contents.
578 # @bitmaps: Additional size required if all the top-level bitmap metadata
579 # in the source image were to be copied to the destination,
580 # present only when source and destination both support
581 # persistent bitmaps. (since 5.1)
585 { 'struct': 'BlockMeasureInfo',
586 'data': {'required': 'int', 'fully-allocated': 'int', '*bitmaps': 'int'} }
591 # Get a list of BlockInfo for all virtual block devices.
593 # Returns: a list of @BlockInfo describing each virtual block device. Filter
594 # nodes that were created implicitly are skipped over.
600 # -> { "execute": "query-block" }
605 # "device":"ide0-hd0",
612 # "file":"disks/test.qcow2",
613 # "backing_file_depth":1,
620 # "bps_max": 8000000,
627 # "detect_zeroes": "on",
628 # "write_threshold": 0,
630 # "filename":"disks/test.qcow2",
632 # "virtual-size":2048000,
633 # "backing_file":"base.qcow2",
634 # "full-backing-filename":"disks/base.qcow2",
635 # "backing-filename-format":"qcow2",
639 # "name": "snapshot1",
640 # "vm-state-size": 0,
641 # "date-sec": 10000200,
643 # "vm-clock-sec": 206,
644 # "vm-clock-nsec": 30
648 # "filename":"disks/base.qcow2",
650 # "virtual-size":2048000
654 # "qdev": "ide_disk",
659 # "device":"ide1-cd0",
662 # "qdev": "/machine/unattached/device[23]",
663 # "tray_open": false,
667 # "device":"floppy0",
670 # "qdev": "/machine/unattached/device[20]",
683 { 'command': 'query-block', 'returns': ['BlockInfo'] }
687 # @BlockDeviceTimedStats:
689 # Statistics of a block device during a given interval of time.
691 # @interval_length: Interval used for calculating the statistics,
694 # @min_rd_latency_ns: Minimum latency of read operations in the
695 # defined interval, in nanoseconds.
697 # @min_wr_latency_ns: Minimum latency of write operations in the
698 # defined interval, in nanoseconds.
700 # @min_flush_latency_ns: Minimum latency of flush operations in the
701 # defined interval, in nanoseconds.
703 # @max_rd_latency_ns: Maximum latency of read operations in the
704 # defined interval, in nanoseconds.
706 # @max_wr_latency_ns: Maximum latency of write operations in the
707 # defined interval, in nanoseconds.
709 # @max_flush_latency_ns: Maximum latency of flush operations in the
710 # defined interval, in nanoseconds.
712 # @avg_rd_latency_ns: Average latency of read operations in the
713 # defined interval, in nanoseconds.
715 # @avg_wr_latency_ns: Average latency of write operations in the
716 # defined interval, in nanoseconds.
718 # @avg_flush_latency_ns: Average latency of flush operations in the
719 # defined interval, in nanoseconds.
721 # @avg_rd_queue_depth: Average number of pending read operations
722 # in the defined interval.
724 # @avg_wr_queue_depth: Average number of pending write operations
725 # in the defined interval.
729 { 'struct': 'BlockDeviceTimedStats',
730 'data': { 'interval_length': 'int', 'min_rd_latency_ns': 'int',
731 'max_rd_latency_ns': 'int', 'avg_rd_latency_ns': 'int',
732 'min_wr_latency_ns': 'int', 'max_wr_latency_ns': 'int',
733 'avg_wr_latency_ns': 'int', 'min_flush_latency_ns': 'int',
734 'max_flush_latency_ns': 'int', 'avg_flush_latency_ns': 'int',
735 'avg_rd_queue_depth': 'number', 'avg_wr_queue_depth': 'number' } }
740 # Statistics of a virtual block device or a block backing device.
742 # @rd_bytes: The number of bytes read by the device.
744 # @wr_bytes: The number of bytes written by the device.
746 # @unmap_bytes: The number of bytes unmapped by the device (Since 4.2)
748 # @rd_operations: The number of read operations performed by the device.
750 # @wr_operations: The number of write operations performed by the device.
752 # @flush_operations: The number of cache flush operations performed by the
753 # device (since 0.15)
755 # @unmap_operations: The number of unmap operations performed by the device
758 # @rd_total_time_ns: Total time spent on reads in nanoseconds (since 0.15).
760 # @wr_total_time_ns: Total time spent on writes in nanoseconds (since 0.15).
762 # @flush_total_time_ns: Total time spent on cache flushes in nanoseconds
765 # @unmap_total_time_ns: Total time spent on unmap operations in nanoseconds
768 # @wr_highest_offset: The offset after the greatest byte written to the
769 # device. The intended use of this information is for
770 # growable sparse files (like qcow2) that are used on top
771 # of a physical device.
773 # @rd_merged: Number of read requests that have been merged into another
774 # request (Since 2.3).
776 # @wr_merged: Number of write requests that have been merged into another
777 # request (Since 2.3).
779 # @unmap_merged: Number of unmap requests that have been merged into another
780 # request (Since 4.2)
782 # @idle_time_ns: Time since the last I/O operation, in
783 # nanoseconds. If the field is absent it means that
784 # there haven't been any operations yet (Since 2.5).
786 # @failed_rd_operations: The number of failed read operations
787 # performed by the device (Since 2.5)
789 # @failed_wr_operations: The number of failed write operations
790 # performed by the device (Since 2.5)
792 # @failed_flush_operations: The number of failed flush operations
793 # performed by the device (Since 2.5)
795 # @failed_unmap_operations: The number of failed unmap operations performed
796 # by the device (Since 4.2)
798 # @invalid_rd_operations: The number of invalid read operations
799 # performed by the device (Since 2.5)
801 # @invalid_wr_operations: The number of invalid write operations
802 # performed by the device (Since 2.5)
804 # @invalid_flush_operations: The number of invalid flush operations
805 # performed by the device (Since 2.5)
807 # @invalid_unmap_operations: The number of invalid unmap operations performed
808 # by the device (Since 4.2)
810 # @account_invalid: Whether invalid operations are included in the
811 # last access statistics (Since 2.5)
813 # @account_failed: Whether failed operations are included in the
814 # latency and last access statistics (Since 2.5)
816 # @timed_stats: Statistics specific to the set of previously defined
817 # intervals of time (Since 2.5)
819 # @rd_latency_histogram: @BlockLatencyHistogramInfo. (Since 4.0)
821 # @wr_latency_histogram: @BlockLatencyHistogramInfo. (Since 4.0)
823 # @flush_latency_histogram: @BlockLatencyHistogramInfo. (Since 4.0)
827 { 'struct': 'BlockDeviceStats',
828 'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'unmap_bytes' : 'int',
829 'rd_operations': 'int', 'wr_operations': 'int',
830 'flush_operations': 'int', 'unmap_operations': 'int',
831 'rd_total_time_ns': 'int', 'wr_total_time_ns': 'int',
832 'flush_total_time_ns': 'int', 'unmap_total_time_ns': 'int',
833 'wr_highest_offset': 'int',
834 'rd_merged': 'int', 'wr_merged': 'int', 'unmap_merged': 'int',
835 '*idle_time_ns': 'int',
836 'failed_rd_operations': 'int', 'failed_wr_operations': 'int',
837 'failed_flush_operations': 'int', 'failed_unmap_operations': 'int',
838 'invalid_rd_operations': 'int', 'invalid_wr_operations': 'int',
839 'invalid_flush_operations': 'int', 'invalid_unmap_operations': 'int',
840 'account_invalid': 'bool', 'account_failed': 'bool',
841 'timed_stats': ['BlockDeviceTimedStats'],
842 '*rd_latency_histogram': 'BlockLatencyHistogramInfo',
843 '*wr_latency_histogram': 'BlockLatencyHistogramInfo',
844 '*flush_latency_histogram': 'BlockLatencyHistogramInfo' } }
847 # @BlockStatsSpecificFile:
849 # File driver statistics
851 # @discard-nb-ok: The number of successful discard operations performed by
854 # @discard-nb-failed: The number of failed discard operations performed by
857 # @discard-bytes-ok: The number of bytes discarded by the driver.
861 { 'struct': 'BlockStatsSpecificFile',
863 'discard-nb-ok': 'uint64',
864 'discard-nb-failed': 'uint64',
865 'discard-bytes-ok': 'uint64' } }
868 # @BlockStatsSpecificNvme:
870 # NVMe driver statistics
872 # @completion-errors: The number of completion errors.
874 # @aligned-accesses: The number of aligned accesses performed by
877 # @unaligned-accesses: The number of unaligned accesses performed by
882 { 'struct': 'BlockStatsSpecificNvme',
884 'completion-errors': 'uint64',
885 'aligned-accesses': 'uint64',
886 'unaligned-accesses': 'uint64' } }
889 # @BlockStatsSpecific:
891 # Block driver specific statistics
895 { 'union': 'BlockStatsSpecific',
896 'base': { 'driver': 'BlockdevDriver' },
897 'discriminator': 'driver',
899 'file': 'BlockStatsSpecificFile',
900 'host_device': 'BlockStatsSpecificFile',
901 'nvme': 'BlockStatsSpecificNvme' } }
906 # Statistics of a virtual block device or a block backing device.
908 # @device: If the stats are for a virtual block device, the name
909 # corresponding to the virtual block device.
911 # @node-name: The node name of the device. (Since 2.3)
913 # @qdev: The qdev ID, or if no ID is assigned, the QOM path of the block
914 # device. (since 3.0)
916 # @stats: A @BlockDeviceStats for the device.
918 # @driver-specific: Optional driver-specific stats. (Since 4.2)
920 # @parent: This describes the file block device if it has one.
921 # Contains recursively the statistics of the underlying
922 # protocol (e.g. the host file for a qcow2 image). If there is
923 # no underlying protocol, this field is omitted
925 # @backing: This describes the backing block device if it has one.
930 { 'struct': 'BlockStats',
931 'data': {'*device': 'str', '*qdev': 'str', '*node-name': 'str',
932 'stats': 'BlockDeviceStats',
933 '*driver-specific': 'BlockStatsSpecific',
934 '*parent': 'BlockStats',
935 '*backing': 'BlockStats'} }
940 # Query the @BlockStats for all virtual block devices.
942 # @query-nodes: If true, the command will query all the block nodes
943 # that have a node name, in a list which will include "parent"
944 # information, but not "backing".
945 # If false or omitted, the behavior is as before - query all the
946 # device backends, recursively including their "parent" and
947 # "backing". Filter nodes that were created implicitly are
948 # skipped over in this mode. (Since 2.3)
950 # Returns: A list of @BlockStats for each virtual block devices.
956 # -> { "execute": "query-blockstats" }
960 # "device":"ide0-hd0",
963 # "wr_highest_offset":3686448128,
964 # "wr_bytes":9786368,
965 # "wr_operations":751,
966 # "rd_bytes":122567168,
967 # "rd_operations":36772
968 # "wr_total_times_ns":313253456
969 # "rd_total_times_ns":3465673657
970 # "flush_total_times_ns":49653
971 # "flush_operations":61,
974 # "idle_time_ns":2953431879,
975 # "account_invalid":true,
976 # "account_failed":false
980 # "wr_highest_offset":2821110784,
981 # "wr_bytes":9786368,
982 # "wr_operations":692,
983 # "rd_bytes":122739200,
984 # "rd_operations":36604
985 # "flush_operations":51,
986 # "wr_total_times_ns":313253456
987 # "rd_total_times_ns":3465673657
988 # "flush_total_times_ns":49653,
991 # "idle_time_ns":2953431879,
992 # "account_invalid":true,
993 # "account_failed":false
995 # "qdev": "/machine/unattached/device[23]"
998 # "device":"ide1-cd0",
1000 # "wr_highest_offset":0,
1002 # "wr_operations":0,
1005 # "flush_operations":0,
1006 # "wr_total_times_ns":0
1007 # "rd_total_times_ns":0
1008 # "flush_total_times_ns":0,
1011 # "account_invalid":false,
1012 # "account_failed":false
1014 # "qdev": "/machine/unattached/device[24]"
1017 # "device":"floppy0",
1019 # "wr_highest_offset":0,
1021 # "wr_operations":0,
1024 # "flush_operations":0,
1025 # "wr_total_times_ns":0
1026 # "rd_total_times_ns":0
1027 # "flush_total_times_ns":0,
1030 # "account_invalid":false,
1031 # "account_failed":false
1033 # "qdev": "/machine/unattached/device[16]"
1038 # "wr_highest_offset":0,
1040 # "wr_operations":0,
1043 # "flush_operations":0,
1044 # "wr_total_times_ns":0
1045 # "rd_total_times_ns":0
1046 # "flush_total_times_ns":0,
1049 # "account_invalid":false,
1050 # "account_failed":false
1057 { 'command': 'query-blockstats',
1058 'data': { '*query-nodes': 'bool' },
1059 'returns': ['BlockStats'] }
1064 # An enumeration of possible behaviors for errors on I/O operations.
1065 # The exact meaning depends on whether the I/O was initiated by a guest
1068 # @report: for guest operations, report the error to the guest;
1069 # for jobs, cancel the job
1071 # @ignore: ignore the error, only report a QMP event (BLOCK_IO_ERROR
1072 # or BLOCK_JOB_ERROR). The backup, mirror and commit block jobs retry
1073 # the failing request later and may still complete successfully. The
1074 # stream block job continues to stream and will complete with an
1077 # @enospc: same as @stop on ENOSPC, same as @report otherwise.
1079 # @stop: for guest operations, stop the virtual machine;
1080 # for jobs, pause the job
1082 # @auto: inherit the error handling policy of the backend (since: 2.7)
1086 { 'enum': 'BlockdevOnError',
1087 'data': ['report', 'ignore', 'enospc', 'stop', 'auto'] }
1092 # An enumeration of possible behaviors for the initial synchronization
1093 # phase of storage mirroring.
1095 # @top: copies data in the topmost image to the destination
1097 # @full: copies data from all images to the destination
1099 # @none: only copy data written from now on
1101 # @incremental: only copy data described by the dirty bitmap. (since: 2.4)
1103 # @bitmap: only copy data described by the dirty bitmap. (since: 4.2)
1104 # Behavior on completion is determined by the BitmapSyncMode.
1108 { 'enum': 'MirrorSyncMode',
1109 'data': ['top', 'full', 'none', 'incremental', 'bitmap'] }
1114 # An enumeration of possible behaviors for the synchronization of a bitmap
1115 # when used for data copy operations.
1117 # @on-success: The bitmap is only synced when the operation is successful.
1118 # This is the behavior always used for 'INCREMENTAL' backups.
1120 # @never: The bitmap is never synchronized with the operation, and is
1121 # treated solely as a read-only manifest of blocks to copy.
1123 # @always: The bitmap is always synchronized with the operation,
1124 # regardless of whether or not the operation was successful.
1128 { 'enum': 'BitmapSyncMode',
1129 'data': ['on-success', 'never', 'always'] }
1134 # An enumeration whose values tell the mirror block job when to
1135 # trigger writes to the target.
1137 # @background: copy data in background only.
1139 # @write-blocking: when data is written to the source, write it
1140 # (synchronously) to the target as well. In
1141 # addition, data is copied in background just like in
1146 { 'enum': 'MirrorCopyMode',
1147 'data': ['background', 'write-blocking'] }
1152 # Information about a long-running block device operation.
1154 # @type: the job type ('stream' for image streaming)
1156 # @device: The job identifier. Originally the device name but other
1157 # values are allowed since QEMU 2.7
1159 # @len: Estimated @offset value at the completion of the job. This value can
1160 # arbitrarily change while the job is running, in both directions.
1162 # @offset: Progress made until now. The unit is arbitrary and the value can
1163 # only meaningfully be used for the ratio of @offset to @len. The
1164 # value is monotonically increasing.
1166 # @busy: false if the job is known to be in a quiescent state, with
1167 # no pending I/O. Since 1.3.
1169 # @paused: whether the job is paused or, if @busy is true, will
1170 # pause itself as soon as possible. Since 1.3.
1172 # @speed: the rate limit, bytes per second
1174 # @io-status: the status of the job (since 1.3)
1176 # @ready: true if the job may be completed (since 2.2)
1178 # @status: Current job state/status (since 2.12)
1180 # @auto-finalize: Job will finalize itself when PENDING, moving to
1181 # the CONCLUDED state. (since 2.12)
1183 # @auto-dismiss: Job will dismiss itself when CONCLUDED, moving to the NULL
1184 # state and disappearing from the query list. (since 2.12)
1186 # @error: Error information if the job did not complete successfully.
1187 # Not set if the job completed successfully. (since 2.12.1)
1191 { 'struct': 'BlockJobInfo',
1192 'data': {'type': 'str', 'device': 'str', 'len': 'int',
1193 'offset': 'int', 'busy': 'bool', 'paused': 'bool', 'speed': 'int',
1194 'io-status': 'BlockDeviceIoStatus', 'ready': 'bool',
1195 'status': 'JobStatus',
1196 'auto-finalize': 'bool', 'auto-dismiss': 'bool',
1200 # @query-block-jobs:
1202 # Return information about long-running block device operations.
1204 # Returns: a list of @BlockJobInfo for each active block job
1208 { 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }
1213 # Resize a block image while a guest is running.
1215 # Either @device or @node-name must be set but not both.
1217 # @device: the name of the device to get the image resized
1219 # @node-name: graph node name to get the image resized (Since 2.0)
1221 # @size: new image size in bytes
1223 # Returns: - nothing on success
1224 # - If @device is not a valid block device, DeviceNotFound
1230 # -> { "execute": "block_resize",
1231 # "arguments": { "device": "scratch", "size": 1073741824 } }
1232 # <- { "return": {} }
1235 { 'command': 'block_resize',
1236 'data': { '*device': 'str',
1237 '*node-name': 'str',
1244 # An enumeration that tells QEMU how to set the backing file path in
1247 # @existing: QEMU should look for an existing image file.
1249 # @absolute-paths: QEMU should create a new image with absolute paths
1250 # for the backing file. If there is no backing file available, the new
1251 # image will not be backed either.
1255 { 'enum': 'NewImageMode',
1256 'data': [ 'existing', 'absolute-paths' ] }
1259 # @BlockdevSnapshotSync:
1261 # Either @device or @node-name must be set but not both.
1263 # @device: the name of the device to take a snapshot of.
1265 # @node-name: graph node name to generate the snapshot from (Since 2.0)
1267 # @snapshot-file: the target of the new overlay image. If the file
1268 # exists, or if it is a device, the overlay will be created in the
1269 # existing file/device. Otherwise, a new file will be created.
1271 # @snapshot-node-name: the graph node name of the new image (Since 2.0)
1273 # @format: the format of the overlay image, default is 'qcow2'.
1275 # @mode: whether and how QEMU should create a new image, default is
1278 { 'struct': 'BlockdevSnapshotSync',
1279 'data': { '*device': 'str', '*node-name': 'str',
1280 'snapshot-file': 'str', '*snapshot-node-name': 'str',
1281 '*format': 'str', '*mode': 'NewImageMode' } }
1284 # @BlockdevSnapshot:
1286 # @node: device or node name that will have a snapshot taken.
1288 # @overlay: reference to the existing block device that will become
1289 # the overlay of @node, as part of taking the snapshot.
1290 # It must not have a current backing file (this can be
1291 # achieved by passing "backing": null to blockdev-add).
1295 { 'struct': 'BlockdevSnapshot',
1296 'data': { 'node': 'str', 'overlay': 'str' } }
1301 # Optional parameters for backup. These parameters don't affect
1302 # functionality, but may significantly affect performance.
1304 # @use-copy-range: Use copy offloading. Default false.
1306 # @max-workers: Maximum number of parallel requests for the sustained background
1307 # copying process. Doesn't influence copy-before-write operations.
1310 # @max-chunk: Maximum request length for the sustained background copying
1311 # process. Doesn't influence copy-before-write operations.
1312 # 0 means unlimited. If max-chunk is non-zero then it should not be
1313 # less than job cluster size which is calculated as maximum of
1314 # target image cluster size and 64k. Default 0.
1318 { 'struct': 'BackupPerf',
1319 'data': { '*use-copy-range': 'bool',
1320 '*max-workers': 'int', '*max-chunk': 'int64' } }
1325 # @job-id: identifier for the newly-created block job. If
1326 # omitted, the device name will be used. (Since 2.7)
1328 # @device: the device name or node-name of a root node which should be copied.
1330 # @sync: what parts of the disk image should be copied to the destination
1331 # (all the disk, only the sectors allocated in the topmost image, from a
1332 # dirty bitmap, or only new I/O).
1334 # @speed: the maximum speed, in bytes per second. The default is 0,
1337 # @bitmap: The name of a dirty bitmap to use.
1338 # Must be present if sync is "bitmap" or "incremental".
1339 # Can be present if sync is "full" or "top".
1340 # Must not be present otherwise.
1341 # (Since 2.4 (drive-backup), 3.1 (blockdev-backup))
1343 # @bitmap-mode: Specifies the type of data the bitmap should contain after
1344 # the operation concludes.
1345 # Must be present if a bitmap was provided,
1346 # Must NOT be present otherwise. (Since 4.2)
1348 # @compress: true to compress data, if the target format supports it.
1349 # (default: false) (since 2.8)
1351 # @on-source-error: the action to take on an error on the source,
1352 # default 'report'. 'stop' and 'enospc' can only be used
1353 # if the block device supports io-status (see BlockInfo).
1355 # @on-target-error: the action to take on an error on the target,
1356 # default 'report' (no limitations, since this applies to
1357 # a different block device than @device).
1359 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1360 # finished its work, waiting for @block-job-finalize before
1361 # making any block graph changes.
1362 # When true, this job will automatically
1363 # perform its abort or commit actions.
1364 # Defaults to true. (Since 2.12)
1366 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1367 # has completely ceased all work, and awaits @block-job-dismiss.
1368 # When true, this job will automatically disappear from the query
1369 # list without user intervention.
1370 # Defaults to true. (Since 2.12)
1372 # @filter-node-name: the node name that should be assigned to the
1373 # filter driver that the backup job inserts into the graph
1374 # above node specified by @drive. If this option is not given,
1375 # a node name is autogenerated. (Since: 4.2)
1377 # @x-perf: Performance options. (Since 6.0)
1379 # Note: @on-source-error and @on-target-error only affect background
1380 # I/O. If an error occurs during a guest write request, the device's
1381 # rerror/werror actions will be used.
1385 { 'struct': 'BackupCommon',
1386 'data': { '*job-id': 'str', 'device': 'str',
1387 'sync': 'MirrorSyncMode', '*speed': 'int',
1388 '*bitmap': 'str', '*bitmap-mode': 'BitmapSyncMode',
1389 '*compress': 'bool',
1390 '*on-source-error': 'BlockdevOnError',
1391 '*on-target-error': 'BlockdevOnError',
1392 '*auto-finalize': 'bool', '*auto-dismiss': 'bool',
1393 '*filter-node-name': 'str', '*x-perf': 'BackupPerf' } }
1398 # @target: the target of the new image. If the file exists, or if it
1399 # is a device, the existing file/device will be used as the new
1400 # destination. If it does not exist, a new file will be created.
1402 # @format: the format of the new destination, default is to
1403 # probe if @mode is 'existing', else the format of the source
1405 # @mode: whether and how QEMU should create a new image, default is
1410 { 'struct': 'DriveBackup',
1411 'base': 'BackupCommon',
1412 'data': { 'target': 'str',
1414 '*mode': 'NewImageMode' } }
1419 # @target: the device name or node-name of the backup target node.
1423 { 'struct': 'BlockdevBackup',
1424 'base': 'BackupCommon',
1425 'data': { 'target': 'str' } }
1428 # @blockdev-snapshot-sync:
1430 # Takes a synchronous snapshot of a block device.
1432 # For the arguments, see the documentation of BlockdevSnapshotSync.
1434 # Returns: - nothing on success
1435 # - If @device is not a valid block device, DeviceNotFound
1441 # -> { "execute": "blockdev-snapshot-sync",
1442 # "arguments": { "device": "ide-hd0",
1444 # "/some/place/my-image",
1445 # "format": "qcow2" } }
1446 # <- { "return": {} }
1449 { 'command': 'blockdev-snapshot-sync',
1450 'data': 'BlockdevSnapshotSync' }
1454 # @blockdev-snapshot:
1456 # Takes a snapshot of a block device.
1458 # Take a snapshot, by installing 'node' as the backing image of
1459 # 'overlay'. Additionally, if 'node' is associated with a block
1460 # device, the block device changes to using 'overlay' as its new active
1463 # For the arguments, see the documentation of BlockdevSnapshot.
1466 # @allow-write-only-overlay: If present, the check whether this operation is safe
1467 # was relaxed so that it can be used to change
1468 # backing file of a destination of a blockdev-mirror.
1475 # -> { "execute": "blockdev-add",
1476 # "arguments": { "driver": "qcow2",
1477 # "node-name": "node1534",
1478 # "file": { "driver": "file",
1479 # "filename": "hd1.qcow2" },
1480 # "backing": null } }
1482 # <- { "return": {} }
1484 # -> { "execute": "blockdev-snapshot",
1485 # "arguments": { "node": "ide-hd0",
1486 # "overlay": "node1534" } }
1487 # <- { "return": {} }
1490 { 'command': 'blockdev-snapshot',
1491 'data': 'BlockdevSnapshot',
1492 'features': [ 'allow-write-only-overlay' ] }
1495 # @change-backing-file:
1497 # Change the backing file in the image file metadata. This does not
1498 # cause QEMU to reopen the image file to reparse the backing filename
1499 # (it may, however, perform a reopen to change permissions from
1500 # r/o -> r/w -> r/o, if needed). The new backing file string is written
1501 # into the image file metadata, and the QEMU internal strings are
1504 # @image-node-name: The name of the block driver state node of the
1505 # image to modify. The "device" argument is used
1506 # to verify "image-node-name" is in the chain
1507 # described by "device".
1509 # @device: The device name or node-name of the root node that owns
1512 # @backing-file: The string to write as the backing file. This
1513 # string is not validated, so care should be taken
1514 # when specifying the string or the image chain may
1515 # not be able to be reopened again.
1517 # Returns: - Nothing on success
1518 # - If "device" does not exist or cannot be determined, DeviceNotFound
1522 { 'command': 'change-backing-file',
1523 'data': { 'device': 'str', 'image-node-name': 'str',
1524 'backing-file': 'str' } }
1529 # Live commit of data from overlay image nodes into backing nodes - i.e.,
1530 # writes data between 'top' and 'base' into 'base'.
1532 # If top == base, that is an error.
1533 # If top has no overlays on top of it, or if it is in use by a writer,
1534 # the job will not be completed by itself. The user needs to complete
1535 # the job with the block-job-complete command after getting the ready
1536 # event. (Since 2.0)
1538 # If the base image is smaller than top, then the base image will be
1539 # resized to be the same size as top. If top is smaller than the base
1540 # image, the base will not be truncated. If you want the base image
1541 # size to match the size of the smaller top, you can safely truncate
1542 # it yourself once the commit operation successfully completes.
1544 # @job-id: identifier for the newly-created block job. If
1545 # omitted, the device name will be used. (Since 2.7)
1547 # @device: the device name or node-name of a root node
1549 # @base-node: The node name of the backing image to write data into.
1550 # If not specified, this is the deepest backing image.
1553 # @base: Same as @base-node, except that it is a file name rather than a node
1554 # name. This must be the exact filename string that was used to open the
1555 # node; other strings, even if addressing the same file, are not
1558 # @top-node: The node name of the backing image within the image chain
1559 # which contains the topmost data to be committed down. If
1560 # not specified, this is the active layer. (since: 3.1)
1562 # @top: Same as @top-node, except that it is a file name rather than a node
1563 # name. This must be the exact filename string that was used to open the
1564 # node; other strings, even if addressing the same file, are not
1567 # @backing-file: The backing file string to write into the overlay
1568 # image of 'top'. If 'top' does not have an overlay
1569 # image, or if 'top' is in use by a writer, specifying
1570 # a backing file string is an error.
1572 # This filename is not validated. If a pathname string
1573 # is such that it cannot be resolved by QEMU, that
1574 # means that subsequent QMP or HMP commands must use
1575 # node-names for the image in question, as filename
1576 # lookup methods will fail.
1578 # If not specified, QEMU will automatically determine
1579 # the backing file string to use, or error out if
1580 # there is no obvious choice. Care should be taken
1581 # when specifying the string, to specify a valid
1582 # filename or protocol.
1585 # @speed: the maximum speed, in bytes per second
1587 # @on-error: the action to take on an error. 'ignore' means that the request
1588 # should be retried. (default: report; Since: 5.0)
1590 # @filter-node-name: the node name that should be assigned to the
1591 # filter driver that the commit job inserts into the graph
1592 # above @top. If this option is not given, a node name is
1593 # autogenerated. (Since: 2.9)
1595 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1596 # finished its work, waiting for @block-job-finalize before
1597 # making any block graph changes.
1598 # When true, this job will automatically
1599 # perform its abort or commit actions.
1600 # Defaults to true. (Since 3.1)
1602 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1603 # has completely ceased all work, and awaits @block-job-dismiss.
1604 # When true, this job will automatically disappear from the query
1605 # list without user intervention.
1606 # Defaults to true. (Since 3.1)
1609 # @deprecated: Members @base and @top are deprecated. Use @base-node
1610 # and @top-node instead.
1612 # Returns: - Nothing on success
1613 # - If @device does not exist, DeviceNotFound
1614 # - Any other error returns a GenericError.
1620 # -> { "execute": "block-commit",
1621 # "arguments": { "device": "virtio0",
1622 # "top": "/tmp/snap1.qcow2" } }
1623 # <- { "return": {} }
1626 { 'command': 'block-commit',
1627 'data': { '*job-id': 'str', 'device': 'str', '*base-node': 'str',
1628 '*base': { 'type': 'str', 'features': [ 'deprecated' ] },
1630 '*top': { 'type': 'str', 'features': [ 'deprecated' ] },
1631 '*backing-file': 'str', '*speed': 'int',
1632 '*on-error': 'BlockdevOnError',
1633 '*filter-node-name': 'str',
1634 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1639 # Start a point-in-time copy of a block device to a new destination. The
1640 # status of ongoing drive-backup operations can be checked with
1641 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1642 # The operation can be stopped before it has completed using the
1643 # block-job-cancel command.
1645 # Returns: - nothing on success
1646 # - If @device is not a valid block device, GenericError
1652 # -> { "execute": "drive-backup",
1653 # "arguments": { "device": "drive0",
1655 # "target": "backup.img" } }
1656 # <- { "return": {} }
1659 { 'command': 'drive-backup', 'boxed': true,
1660 'data': 'DriveBackup' }
1665 # Start a point-in-time copy of a block device to a new destination. The
1666 # status of ongoing blockdev-backup operations can be checked with
1667 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1668 # The operation can be stopped before it has completed using the
1669 # block-job-cancel command.
1671 # Returns: - nothing on success
1672 # - If @device is not a valid block device, DeviceNotFound
1677 # -> { "execute": "blockdev-backup",
1678 # "arguments": { "device": "src-id",
1680 # "target": "tgt-id" } }
1681 # <- { "return": {} }
1684 { 'command': 'blockdev-backup', 'boxed': true,
1685 'data': 'BlockdevBackup' }
1689 # @query-named-block-nodes:
1691 # Get the named block driver list
1693 # @flat: Omit the nested data about backing image ("backing-image" key) if true.
1694 # Default is false (Since 5.0)
1696 # Returns: the list of BlockDeviceInfo
1702 # -> { "execute": "query-named-block-nodes" }
1703 # <- { "return": [ { "ro":false,
1705 # "encrypted":false,
1706 # "file":"disks/test.qcow2",
1707 # "node-name": "my-node",
1708 # "backing_file_depth":1,
1715 # "bps_max": 8000000,
1722 # "write_threshold": 0,
1724 # "filename":"disks/test.qcow2",
1726 # "virtual-size":2048000,
1727 # "backing_file":"base.qcow2",
1728 # "full-backing-filename":"disks/base.qcow2",
1729 # "backing-filename-format":"qcow2",
1733 # "name": "snapshot1",
1734 # "vm-state-size": 0,
1735 # "date-sec": 10000200,
1737 # "vm-clock-sec": 206,
1738 # "vm-clock-nsec": 30
1742 # "filename":"disks/base.qcow2",
1744 # "virtual-size":2048000
1749 { 'command': 'query-named-block-nodes',
1750 'returns': [ 'BlockDeviceInfo' ],
1751 'data': { '*flat': 'bool' } }
1754 # @XDbgBlockGraphNodeType:
1756 # @block-backend: corresponds to BlockBackend
1758 # @block-job: corresponds to BlockJob
1760 # @block-driver: corresponds to BlockDriverState
1764 { 'enum': 'XDbgBlockGraphNodeType',
1765 'data': [ 'block-backend', 'block-job', 'block-driver' ] }
1768 # @XDbgBlockGraphNode:
1770 # @id: Block graph node identifier. This @id is generated only for
1771 # x-debug-query-block-graph and does not relate to any other identifiers in
1774 # @type: Type of graph node. Can be one of block-backend, block-job or
1775 # block-driver-state.
1777 # @name: Human readable name of the node. Corresponds to node-name for
1778 # block-driver-state nodes; is not guaranteed to be unique in the whole
1779 # graph (with block-jobs and block-backends).
1783 { 'struct': 'XDbgBlockGraphNode',
1784 'data': { 'id': 'uint64', 'type': 'XDbgBlockGraphNodeType', 'name': 'str' } }
1789 # Enum of base block permissions.
1791 # @consistent-read: A user that has the "permission" of consistent reads is
1792 # guaranteed that their view of the contents of the block
1793 # device is complete and self-consistent, representing the
1794 # contents of a disk at a specific point.
1795 # For most block devices (including their backing files) this
1796 # is true, but the property cannot be maintained in a few
1797 # situations like for intermediate nodes of a commit block
1800 # @write: This permission is required to change the visible disk contents.
1802 # @write-unchanged: This permission (which is weaker than BLK_PERM_WRITE) is
1803 # both enough and required for writes to the block node when
1804 # the caller promises that the visible disk content doesn't
1806 # As the BLK_PERM_WRITE permission is strictly stronger,
1807 # either is sufficient to perform an unchanging write.
1809 # @resize: This permission is required to change the size of a block node.
1811 # @graph-mod: This permission is required to change the node that this
1812 # BdrvChild points to.
1816 { 'enum': 'BlockPermission',
1817 'data': [ 'consistent-read', 'write', 'write-unchanged', 'resize',
1820 # @XDbgBlockGraphEdge:
1822 # Block Graph edge description for x-debug-query-block-graph.
1824 # @parent: parent id
1828 # @name: name of the relation (examples are 'file' and 'backing')
1830 # @perm: granted permissions for the parent operating on the child
1832 # @shared-perm: permissions that can still be granted to other users of the
1833 # child while it is still attached to this parent
1837 { 'struct': 'XDbgBlockGraphEdge',
1838 'data': { 'parent': 'uint64', 'child': 'uint64',
1839 'name': 'str', 'perm': [ 'BlockPermission' ],
1840 'shared-perm': [ 'BlockPermission' ] } }
1845 # Block Graph - list of nodes and list of edges.
1849 { 'struct': 'XDbgBlockGraph',
1850 'data': { 'nodes': ['XDbgBlockGraphNode'], 'edges': ['XDbgBlockGraphEdge'] } }
1853 # @x-debug-query-block-graph:
1855 # Get the block graph.
1859 { 'command': 'x-debug-query-block-graph', 'returns': 'XDbgBlockGraph' }
1864 # Start mirroring a block device's writes to a new destination. target
1865 # specifies the target of the new image. If the file exists, or if it
1866 # is a device, it will be used as the new destination for writes. If
1867 # it does not exist, a new file will be created. format specifies the
1868 # format of the mirror image, default is to probe if mode='existing',
1869 # else the format of the source.
1871 # Returns: - nothing on success
1872 # - If @device is not a valid block device, GenericError
1878 # -> { "execute": "drive-mirror",
1879 # "arguments": { "device": "ide-hd0",
1880 # "target": "/some/place/my-image",
1882 # "format": "qcow2" } }
1883 # <- { "return": {} }
1886 { 'command': 'drive-mirror', 'boxed': true,
1887 'data': 'DriveMirror' }
1892 # A set of parameters describing drive mirror setup.
1894 # @job-id: identifier for the newly-created block job. If
1895 # omitted, the device name will be used. (Since 2.7)
1897 # @device: the device name or node-name of a root node whose writes should be
1900 # @target: the target of the new image. If the file exists, or if it
1901 # is a device, the existing file/device will be used as the new
1902 # destination. If it does not exist, a new file will be created.
1904 # @format: the format of the new destination, default is to
1905 # probe if @mode is 'existing', else the format of the source
1907 # @node-name: the new block driver state node name in the graph
1910 # @replaces: with sync=full graph node name to be replaced by the new
1911 # image when a whole image copy is done. This can be used to repair
1912 # broken Quorum files. By default, @device is replaced, although
1913 # implicitly created filters on it are kept. (Since 2.1)
1915 # @mode: whether and how QEMU should create a new image, default is
1918 # @speed: the maximum speed, in bytes per second
1920 # @sync: what parts of the disk image should be copied to the destination
1921 # (all the disk, only the sectors allocated in the topmost image, or
1924 # @granularity: granularity of the dirty bitmap, default is 64K
1925 # if the image format doesn't have clusters, 4K if the clusters
1926 # are smaller than that, else the cluster size. Must be a
1927 # power of 2 between 512 and 64M (since 1.4).
1929 # @buf-size: maximum amount of data in flight from source to
1930 # target (since 1.4).
1932 # @on-source-error: the action to take on an error on the source,
1933 # default 'report'. 'stop' and 'enospc' can only be used
1934 # if the block device supports io-status (see BlockInfo).
1936 # @on-target-error: the action to take on an error on the target,
1937 # default 'report' (no limitations, since this applies to
1938 # a different block device than @device).
1939 # @unmap: Whether to try to unmap target sectors where source has
1940 # only zero. If true, and target unallocated sectors will read as zero,
1941 # target image sectors will be unmapped; otherwise, zeroes will be
1942 # written. Both will result in identical contents.
1943 # Default is true. (Since 2.4)
1945 # @copy-mode: when to copy data to the destination; defaults to 'background'
1948 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1949 # finished its work, waiting for @block-job-finalize before
1950 # making any block graph changes.
1951 # When true, this job will automatically
1952 # perform its abort or commit actions.
1953 # Defaults to true. (Since 3.1)
1955 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1956 # has completely ceased all work, and awaits @block-job-dismiss.
1957 # When true, this job will automatically disappear from the query
1958 # list without user intervention.
1959 # Defaults to true. (Since 3.1)
1962 { 'struct': 'DriveMirror',
1963 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1964 '*format': 'str', '*node-name': 'str', '*replaces': 'str',
1965 'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
1966 '*speed': 'int', '*granularity': 'uint32',
1967 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1968 '*on-target-error': 'BlockdevOnError',
1969 '*unmap': 'bool', '*copy-mode': 'MirrorCopyMode',
1970 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1973 # @BlockDirtyBitmap:
1975 # @node: name of device/node which the bitmap is tracking
1977 # @name: name of the dirty bitmap
1981 { 'struct': 'BlockDirtyBitmap',
1982 'data': { 'node': 'str', 'name': 'str' } }
1985 # @BlockDirtyBitmapAdd:
1987 # @node: name of device/node which the bitmap is tracking
1989 # @name: name of the dirty bitmap (must be less than 1024 bytes)
1991 # @granularity: the bitmap granularity, default is 64k for
1992 # block-dirty-bitmap-add
1994 # @persistent: the bitmap is persistent, i.e. it will be saved to the
1995 # corresponding block device image file on its close. For now only
1996 # Qcow2 disks support persistent bitmaps. Default is false for
1997 # block-dirty-bitmap-add. (Since: 2.10)
1999 # @disabled: the bitmap is created in the disabled state, which means that
2000 # it will not track drive changes. The bitmap may be enabled with
2001 # block-dirty-bitmap-enable. Default is false. (Since: 4.0)
2005 { 'struct': 'BlockDirtyBitmapAdd',
2006 'data': { 'node': 'str', 'name': 'str', '*granularity': 'uint32',
2007 '*persistent': 'bool', '*disabled': 'bool' } }
2010 # @BlockDirtyBitmapMergeSource:
2012 # @local: name of the bitmap, attached to the same node as target bitmap.
2014 # @external: bitmap with specified node
2018 { 'alternate': 'BlockDirtyBitmapMergeSource',
2019 'data': { 'local': 'str',
2020 'external': 'BlockDirtyBitmap' } }
2023 # @BlockDirtyBitmapMerge:
2025 # @node: name of device/node which the @target bitmap is tracking
2027 # @target: name of the destination dirty bitmap
2029 # @bitmaps: name(s) of the source dirty bitmap(s) at @node and/or fully
2030 # specified BlockDirtyBitmap elements. The latter are supported
2035 { 'struct': 'BlockDirtyBitmapMerge',
2036 'data': { 'node': 'str', 'target': 'str',
2037 'bitmaps': ['BlockDirtyBitmapMergeSource'] } }
2040 # @block-dirty-bitmap-add:
2042 # Create a dirty bitmap with a name on the node, and start tracking the writes.
2044 # Returns: - nothing on success
2045 # - If @node is not a valid block device or node, DeviceNotFound
2046 # - If @name is already taken, GenericError with an explanation
2052 # -> { "execute": "block-dirty-bitmap-add",
2053 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2054 # <- { "return": {} }
2057 { 'command': 'block-dirty-bitmap-add',
2058 'data': 'BlockDirtyBitmapAdd' }
2061 # @block-dirty-bitmap-remove:
2063 # Stop write tracking and remove the dirty bitmap that was created
2064 # with block-dirty-bitmap-add. If the bitmap is persistent, remove it from its
2067 # Returns: - nothing on success
2068 # - If @node is not a valid block device or node, DeviceNotFound
2069 # - If @name is not found, GenericError with an explanation
2070 # - if @name is frozen by an operation, GenericError
2076 # -> { "execute": "block-dirty-bitmap-remove",
2077 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2078 # <- { "return": {} }
2081 { 'command': 'block-dirty-bitmap-remove',
2082 'data': 'BlockDirtyBitmap' }
2085 # @block-dirty-bitmap-clear:
2087 # Clear (reset) a dirty bitmap on the device, so that an incremental
2088 # backup from this point in time forward will only backup clusters
2089 # modified after this clear operation.
2091 # Returns: - nothing on success
2092 # - If @node is not a valid block device, DeviceNotFound
2093 # - If @name is not found, GenericError with an explanation
2099 # -> { "execute": "block-dirty-bitmap-clear",
2100 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2101 # <- { "return": {} }
2104 { 'command': 'block-dirty-bitmap-clear',
2105 'data': 'BlockDirtyBitmap' }
2108 # @block-dirty-bitmap-enable:
2110 # Enables a dirty bitmap so that it will begin tracking disk changes.
2112 # Returns: - nothing on success
2113 # - If @node is not a valid block device, DeviceNotFound
2114 # - If @name is not found, GenericError with an explanation
2120 # -> { "execute": "block-dirty-bitmap-enable",
2121 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2122 # <- { "return": {} }
2125 { 'command': 'block-dirty-bitmap-enable',
2126 'data': 'BlockDirtyBitmap' }
2129 # @block-dirty-bitmap-disable:
2131 # Disables a dirty bitmap so that it will stop tracking disk changes.
2133 # Returns: - nothing on success
2134 # - If @node is not a valid block device, DeviceNotFound
2135 # - If @name is not found, GenericError with an explanation
2141 # -> { "execute": "block-dirty-bitmap-disable",
2142 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2143 # <- { "return": {} }
2146 { 'command': 'block-dirty-bitmap-disable',
2147 'data': 'BlockDirtyBitmap' }
2150 # @block-dirty-bitmap-merge:
2152 # Merge dirty bitmaps listed in @bitmaps to the @target dirty bitmap.
2153 # Dirty bitmaps in @bitmaps will be unchanged, except if it also appears
2154 # as the @target bitmap. Any bits already set in @target will still be
2155 # set after the merge, i.e., this operation does not clear the target.
2156 # On error, @target is unchanged.
2158 # The resulting bitmap will count as dirty any clusters that were dirty in any
2159 # of the source bitmaps. This can be used to achieve backup checkpoints, or in
2160 # simpler usages, to copy bitmaps.
2162 # Returns: - nothing on success
2163 # - If @node is not a valid block device, DeviceNotFound
2164 # - If any bitmap in @bitmaps or @target is not found, GenericError
2165 # - If any of the bitmaps have different sizes or granularities,
2172 # -> { "execute": "block-dirty-bitmap-merge",
2173 # "arguments": { "node": "drive0", "target": "bitmap0",
2174 # "bitmaps": ["bitmap1"] } }
2175 # <- { "return": {} }
2178 { 'command': 'block-dirty-bitmap-merge',
2179 'data': 'BlockDirtyBitmapMerge' }
2182 # @BlockDirtyBitmapSha256:
2184 # SHA256 hash of dirty bitmap data
2186 # @sha256: ASCII representation of SHA256 bitmap hash
2190 { 'struct': 'BlockDirtyBitmapSha256',
2191 'data': {'sha256': 'str'} }
2194 # @x-debug-block-dirty-bitmap-sha256:
2196 # Get bitmap SHA256.
2198 # Returns: - BlockDirtyBitmapSha256 on success
2199 # - If @node is not a valid block device, DeviceNotFound
2200 # - If @name is not found or if hashing has failed, GenericError with an
2205 { 'command': 'x-debug-block-dirty-bitmap-sha256',
2206 'data': 'BlockDirtyBitmap', 'returns': 'BlockDirtyBitmapSha256' }
2211 # Start mirroring a block device's writes to a new destination.
2213 # @job-id: identifier for the newly-created block job. If
2214 # omitted, the device name will be used. (Since 2.7)
2216 # @device: The device name or node-name of a root node whose writes should be
2219 # @target: the id or node-name of the block device to mirror to. This mustn't be
2220 # attached to guest.
2222 # @replaces: with sync=full graph node name to be replaced by the new
2223 # image when a whole image copy is done. This can be used to repair
2224 # broken Quorum files. By default, @device is replaced, although
2225 # implicitly created filters on it are kept.
2227 # @speed: the maximum speed, in bytes per second
2229 # @sync: what parts of the disk image should be copied to the destination
2230 # (all the disk, only the sectors allocated in the topmost image, or
2233 # @granularity: granularity of the dirty bitmap, default is 64K
2234 # if the image format doesn't have clusters, 4K if the clusters
2235 # are smaller than that, else the cluster size. Must be a
2236 # power of 2 between 512 and 64M
2238 # @buf-size: maximum amount of data in flight from source to
2241 # @on-source-error: the action to take on an error on the source,
2242 # default 'report'. 'stop' and 'enospc' can only be used
2243 # if the block device supports io-status (see BlockInfo).
2245 # @on-target-error: the action to take on an error on the target,
2246 # default 'report' (no limitations, since this applies to
2247 # a different block device than @device).
2249 # @filter-node-name: the node name that should be assigned to the
2250 # filter driver that the mirror job inserts into the graph
2251 # above @device. If this option is not given, a node name is
2252 # autogenerated. (Since: 2.9)
2254 # @copy-mode: when to copy data to the destination; defaults to 'background'
2257 # @auto-finalize: When false, this job will wait in a PENDING state after it has
2258 # finished its work, waiting for @block-job-finalize before
2259 # making any block graph changes.
2260 # When true, this job will automatically
2261 # perform its abort or commit actions.
2262 # Defaults to true. (Since 3.1)
2264 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
2265 # has completely ceased all work, and awaits @block-job-dismiss.
2266 # When true, this job will automatically disappear from the query
2267 # list without user intervention.
2268 # Defaults to true. (Since 3.1)
2269 # Returns: nothing on success.
2275 # -> { "execute": "blockdev-mirror",
2276 # "arguments": { "device": "ide-hd0",
2277 # "target": "target0",
2278 # "sync": "full" } }
2279 # <- { "return": {} }
2282 { 'command': 'blockdev-mirror',
2283 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
2285 'sync': 'MirrorSyncMode',
2286 '*speed': 'int', '*granularity': 'uint32',
2287 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
2288 '*on-target-error': 'BlockdevOnError',
2289 '*filter-node-name': 'str',
2290 '*copy-mode': 'MirrorCopyMode',
2291 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
2296 # A set of parameters describing block throttling.
2298 # @device: Block device name
2300 # @id: The name or QOM path of the guest device (since: 2.8)
2302 # @bps: total throughput limit in bytes per second
2304 # @bps_rd: read throughput limit in bytes per second
2306 # @bps_wr: write throughput limit in bytes per second
2308 # @iops: total I/O operations per second
2310 # @iops_rd: read I/O operations per second
2312 # @iops_wr: write I/O operations per second
2314 # @bps_max: total throughput limit during bursts,
2315 # in bytes (Since 1.7)
2317 # @bps_rd_max: read throughput limit during bursts,
2318 # in bytes (Since 1.7)
2320 # @bps_wr_max: write throughput limit during bursts,
2321 # in bytes (Since 1.7)
2323 # @iops_max: total I/O operations per second during bursts,
2324 # in bytes (Since 1.7)
2326 # @iops_rd_max: read I/O operations per second during bursts,
2327 # in bytes (Since 1.7)
2329 # @iops_wr_max: write I/O operations per second during bursts,
2330 # in bytes (Since 1.7)
2332 # @bps_max_length: maximum length of the @bps_max burst
2333 # period, in seconds. It must only
2334 # be set if @bps_max is set as well.
2335 # Defaults to 1. (Since 2.6)
2337 # @bps_rd_max_length: maximum length of the @bps_rd_max
2338 # burst period, in seconds. It must only
2339 # be set if @bps_rd_max is set as well.
2340 # Defaults to 1. (Since 2.6)
2342 # @bps_wr_max_length: maximum length of the @bps_wr_max
2343 # burst period, in seconds. It must only
2344 # be set if @bps_wr_max is set as well.
2345 # Defaults to 1. (Since 2.6)
2347 # @iops_max_length: maximum length of the @iops burst
2348 # period, in seconds. It must only
2349 # be set if @iops_max is set as well.
2350 # Defaults to 1. (Since 2.6)
2352 # @iops_rd_max_length: maximum length of the @iops_rd_max
2353 # burst period, in seconds. It must only
2354 # be set if @iops_rd_max is set as well.
2355 # Defaults to 1. (Since 2.6)
2357 # @iops_wr_max_length: maximum length of the @iops_wr_max
2358 # burst period, in seconds. It must only
2359 # be set if @iops_wr_max is set as well.
2360 # Defaults to 1. (Since 2.6)
2362 # @iops_size: an I/O size in bytes (Since 1.7)
2364 # @group: throttle group name (Since 2.4)
2367 # @deprecated: Member @device is deprecated. Use @id instead.
2371 { 'struct': 'BlockIOThrottle',
2372 'data': { '*device': { 'type': 'str', 'features': [ 'deprecated' ] },
2373 '*id': 'str', 'bps': 'int', 'bps_rd': 'int',
2374 'bps_wr': 'int', 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
2375 '*bps_max': 'int', '*bps_rd_max': 'int',
2376 '*bps_wr_max': 'int', '*iops_max': 'int',
2377 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
2378 '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
2379 '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
2380 '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
2381 '*iops_size': 'int', '*group': 'str' } }
2386 # Limit parameters for throttling.
2387 # Since some limit combinations are illegal, limits should always be set in one
2388 # transaction. All fields are optional. When setting limits, if a field is
2389 # missing the current value is not changed.
2391 # @iops-total: limit total I/O operations per second
2392 # @iops-total-max: I/O operations burst
2393 # @iops-total-max-length: length of the iops-total-max burst period, in seconds
2394 # It must only be set if @iops-total-max is set as well.
2395 # @iops-read: limit read operations per second
2396 # @iops-read-max: I/O operations read burst
2397 # @iops-read-max-length: length of the iops-read-max burst period, in seconds
2398 # It must only be set if @iops-read-max is set as well.
2399 # @iops-write: limit write operations per second
2400 # @iops-write-max: I/O operations write burst
2401 # @iops-write-max-length: length of the iops-write-max burst period, in seconds
2402 # It must only be set if @iops-write-max is set as well.
2403 # @bps-total: limit total bytes per second
2404 # @bps-total-max: total bytes burst
2405 # @bps-total-max-length: length of the bps-total-max burst period, in seconds.
2406 # It must only be set if @bps-total-max is set as well.
2407 # @bps-read: limit read bytes per second
2408 # @bps-read-max: total bytes read burst
2409 # @bps-read-max-length: length of the bps-read-max burst period, in seconds
2410 # It must only be set if @bps-read-max is set as well.
2411 # @bps-write: limit write bytes per second
2412 # @bps-write-max: total bytes write burst
2413 # @bps-write-max-length: length of the bps-write-max burst period, in seconds
2414 # It must only be set if @bps-write-max is set as well.
2415 # @iops-size: when limiting by iops max size of an I/O in bytes
2419 { 'struct': 'ThrottleLimits',
2420 'data': { '*iops-total' : 'int', '*iops-total-max' : 'int',
2421 '*iops-total-max-length' : 'int', '*iops-read' : 'int',
2422 '*iops-read-max' : 'int', '*iops-read-max-length' : 'int',
2423 '*iops-write' : 'int', '*iops-write-max' : 'int',
2424 '*iops-write-max-length' : 'int', '*bps-total' : 'int',
2425 '*bps-total-max' : 'int', '*bps-total-max-length' : 'int',
2426 '*bps-read' : 'int', '*bps-read-max' : 'int',
2427 '*bps-read-max-length' : 'int', '*bps-write' : 'int',
2428 '*bps-write-max' : 'int', '*bps-write-max-length' : 'int',
2429 '*iops-size' : 'int' } }
2432 # @ThrottleGroupProperties:
2434 # Properties for throttle-group objects.
2436 # The options starting with x- are aliases for the same key without x- in
2437 # the @limits object. As indicated by the x- prefix, this is not a stable
2438 # interface and may be removed or changed incompatibly in the future. Use
2439 # @limits for a supported stable interface.
2441 # @limits: limits to apply for this throttle group
2445 { 'struct': 'ThrottleGroupProperties',
2446 'data': { '*limits': 'ThrottleLimits',
2447 '*x-iops-total' : 'int', '*x-iops-total-max' : 'int',
2448 '*x-iops-total-max-length' : 'int', '*x-iops-read' : 'int',
2449 '*x-iops-read-max' : 'int', '*x-iops-read-max-length' : 'int',
2450 '*x-iops-write' : 'int', '*x-iops-write-max' : 'int',
2451 '*x-iops-write-max-length' : 'int', '*x-bps-total' : 'int',
2452 '*x-bps-total-max' : 'int', '*x-bps-total-max-length' : 'int',
2453 '*x-bps-read' : 'int', '*x-bps-read-max' : 'int',
2454 '*x-bps-read-max-length' : 'int', '*x-bps-write' : 'int',
2455 '*x-bps-write-max' : 'int', '*x-bps-write-max-length' : 'int',
2456 '*x-iops-size' : 'int' } }
2461 # Copy data from a backing file into a block device.
2463 # The block streaming operation is performed in the background until the entire
2464 # backing file has been copied. This command returns immediately once streaming
2465 # has started. The status of ongoing block streaming operations can be checked
2466 # with query-block-jobs. The operation can be stopped before it has completed
2467 # using the block-job-cancel command.
2469 # The node that receives the data is called the top image, can be located in
2470 # any part of the chain (but always above the base image; see below) and can be
2471 # specified using its device or node name. Earlier qemu versions only allowed
2472 # 'device' to name the top level node; presence of the 'base-node' parameter
2473 # during introspection can be used as a witness of the enhanced semantics
2476 # If a base file is specified then sectors are not copied from that base file and
2477 # its backing chain. This can be used to stream a subset of the backing file
2478 # chain instead of flattening the entire image.
2479 # When streaming completes the image file will have the base file as its backing
2480 # file, unless that node was changed while the job was running. In that case,
2481 # base's parent's backing (or filtered, whichever exists) child (i.e., base at
2482 # the beginning of the job) will be the new backing file.
2484 # On successful completion the image file is updated to drop the backing file
2485 # and the BLOCK_JOB_COMPLETED event is emitted.
2487 # In case @device is a filter node, block-stream modifies the first non-filter
2488 # overlay node below it to point to the new backing node instead of modifying
2491 # @job-id: identifier for the newly-created block job. If
2492 # omitted, the device name will be used. (Since 2.7)
2494 # @device: the device or node name of the top image
2496 # @base: the common backing file name.
2497 # It cannot be set if @base-node or @bottom is also set.
2499 # @base-node: the node name of the backing file.
2500 # It cannot be set if @base or @bottom is also set. (Since 2.8)
2502 # @bottom: the last node in the chain that should be streamed into
2503 # top. It cannot be set if @base or @base-node is also set.
2504 # It cannot be filter node. (Since 6.0)
2506 # @backing-file: The backing file string to write into the top
2507 # image. This filename is not validated.
2509 # If a pathname string is such that it cannot be
2510 # resolved by QEMU, that means that subsequent QMP or
2511 # HMP commands must use node-names for the image in
2512 # question, as filename lookup methods will fail.
2514 # If not specified, QEMU will automatically determine
2515 # the backing file string to use, or error out if there
2516 # is no obvious choice. Care should be taken when
2517 # specifying the string, to specify a valid filename or
2521 # @speed: the maximum speed, in bytes per second
2523 # @on-error: the action to take on an error (default report).
2524 # 'stop' and 'enospc' can only be used if the block device
2525 # supports io-status (see BlockInfo). Since 1.3.
2527 # @filter-node-name: the node name that should be assigned to the
2528 # filter driver that the stream job inserts into the graph
2529 # above @device. If this option is not given, a node name is
2530 # autogenerated. (Since: 6.0)
2532 # @auto-finalize: When false, this job will wait in a PENDING state after it has
2533 # finished its work, waiting for @block-job-finalize before
2534 # making any block graph changes.
2535 # When true, this job will automatically
2536 # perform its abort or commit actions.
2537 # Defaults to true. (Since 3.1)
2539 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
2540 # has completely ceased all work, and awaits @block-job-dismiss.
2541 # When true, this job will automatically disappear from the query
2542 # list without user intervention.
2543 # Defaults to true. (Since 3.1)
2545 # Returns: - Nothing on success.
2546 # - If @device does not exist, DeviceNotFound.
2552 # -> { "execute": "block-stream",
2553 # "arguments": { "device": "virtio0",
2554 # "base": "/tmp/master.qcow2" } }
2555 # <- { "return": {} }
2558 { 'command': 'block-stream',
2559 'data': { '*job-id': 'str', 'device': 'str', '*base': 'str',
2560 '*base-node': 'str', '*backing-file': 'str', '*bottom': 'str',
2561 '*speed': 'int', '*on-error': 'BlockdevOnError',
2562 '*filter-node-name': 'str',
2563 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
2566 # @block-job-set-speed:
2568 # Set maximum speed for a background block operation.
2570 # This command can only be issued when there is an active block job.
2572 # Throttling can be disabled by setting the speed to 0.
2574 # @device: The job identifier. This used to be a device name (hence
2575 # the name of the parameter), but since QEMU 2.7 it can have
2578 # @speed: the maximum speed, in bytes per second, or 0 for unlimited.
2581 # Returns: - Nothing on success
2582 # - If no background operation is active on this device, DeviceNotActive
2586 { 'command': 'block-job-set-speed',
2587 'data': { 'device': 'str', 'speed': 'int' } }
2590 # @block-job-cancel:
2592 # Stop an active background block operation.
2594 # This command returns immediately after marking the active background block
2595 # operation for cancellation. It is an error to call this command if no
2596 # operation is in progress.
2598 # The operation will cancel as soon as possible and then emit the
2599 # BLOCK_JOB_CANCELLED event. Before that happens the job is still visible when
2600 # enumerated using query-block-jobs.
2602 # Note that if you issue 'block-job-cancel' after 'drive-mirror' has indicated
2603 # (via the event BLOCK_JOB_READY) that the source and destination are
2604 # synchronized, then the event triggered by this command changes to
2605 # BLOCK_JOB_COMPLETED, to indicate that the mirroring has ended and the
2606 # destination now has a point-in-time copy tied to the time of the cancellation.
2608 # For streaming, the image file retains its backing file unless the streaming
2609 # operation happens to complete just as it is being cancelled. A new streaming
2610 # operation can be started at a later time to finish copying all data from the
2613 # @device: The job identifier. This used to be a device name (hence
2614 # the name of the parameter), but since QEMU 2.7 it can have
2617 # @force: If true, and the job has already emitted the event BLOCK_JOB_READY,
2618 # abandon the job immediately (even if it is paused) instead of waiting
2619 # for the destination to complete its final synchronization (since 1.3)
2621 # Returns: - Nothing on success
2622 # - If no background operation is active on this device, DeviceNotActive
2626 { 'command': 'block-job-cancel', 'data': { 'device': 'str', '*force': 'bool' } }
2631 # Pause an active background block operation.
2633 # This command returns immediately after marking the active background block
2634 # operation for pausing. It is an error to call this command if no
2635 # operation is in progress or if the job is already paused.
2637 # The operation will pause as soon as possible. No event is emitted when
2638 # the operation is actually paused. Cancelling a paused job automatically
2641 # @device: The job identifier. This used to be a device name (hence
2642 # the name of the parameter), but since QEMU 2.7 it can have
2645 # Returns: - Nothing on success
2646 # - If no background operation is active on this device, DeviceNotActive
2650 { 'command': 'block-job-pause', 'data': { 'device': 'str' } }
2653 # @block-job-resume:
2655 # Resume an active background block operation.
2657 # This command returns immediately after resuming a paused background block
2658 # operation. It is an error to call this command if no operation is in
2659 # progress or if the job is not paused.
2661 # This command also clears the error status of the job.
2663 # @device: The job identifier. This used to be a device name (hence
2664 # the name of the parameter), but since QEMU 2.7 it can have
2667 # Returns: - Nothing on success
2668 # - If no background operation is active on this device, DeviceNotActive
2672 { 'command': 'block-job-resume', 'data': { 'device': 'str' } }
2675 # @block-job-complete:
2677 # Manually trigger completion of an active background block operation. This
2678 # is supported for drive mirroring, where it also switches the device to
2679 # write to the target path only. The ability to complete is signaled with
2680 # a BLOCK_JOB_READY event.
2682 # This command completes an active background block operation synchronously.
2683 # The ordering of this command's return with the BLOCK_JOB_COMPLETED event
2684 # is not defined. Note that if an I/O error occurs during the processing of
2685 # this command: 1) the command itself will fail; 2) the error will be processed
2686 # according to the rerror/werror arguments that were specified when starting
2689 # A cancelled or paused job cannot be completed.
2691 # @device: The job identifier. This used to be a device name (hence
2692 # the name of the parameter), but since QEMU 2.7 it can have
2695 # Returns: - Nothing on success
2696 # - If no background operation is active on this device, DeviceNotActive
2700 { 'command': 'block-job-complete', 'data': { 'device': 'str' } }
2703 # @block-job-dismiss:
2705 # For jobs that have already concluded, remove them from the block-job-query
2706 # list. This command only needs to be run for jobs which were started with
2707 # QEMU 2.12+ job lifetime management semantics.
2709 # This command will refuse to operate on any job that has not yet reached
2710 # its terminal state, JOB_STATUS_CONCLUDED. For jobs that make use of the
2711 # BLOCK_JOB_READY event, block-job-cancel or block-job-complete will still need
2712 # to be used as appropriate.
2714 # @id: The job identifier.
2716 # Returns: Nothing on success
2720 { 'command': 'block-job-dismiss', 'data': { 'id': 'str' } }
2723 # @block-job-finalize:
2725 # Once a job that has manual=true reaches the pending state, it can be
2726 # instructed to finalize any graph changes and do any necessary cleanup
2728 # For jobs in a transaction, instructing one job to finalize will force
2729 # ALL jobs in the transaction to finalize, so it is only necessary to instruct
2730 # a single member job to finalize.
2732 # @id: The job identifier.
2734 # Returns: Nothing on success
2738 { 'command': 'block-job-finalize', 'data': { 'id': 'str' } }
2741 # @BlockdevDiscardOptions:
2743 # Determines how to handle discard requests.
2745 # @ignore: Ignore the request
2746 # @unmap: Forward as an unmap request
2750 { 'enum': 'BlockdevDiscardOptions',
2751 'data': [ 'ignore', 'unmap' ] }
2754 # @BlockdevDetectZeroesOptions:
2756 # Describes the operation mode for the automatic conversion of plain
2757 # zero writes by the OS to driver specific optimized zero write commands.
2759 # @off: Disabled (default)
2761 # @unmap: Enabled and even try to unmap blocks if possible. This requires
2762 # also that @BlockdevDiscardOptions is set to unmap for this device.
2766 { 'enum': 'BlockdevDetectZeroesOptions',
2767 'data': [ 'off', 'on', 'unmap' ] }
2770 # @BlockdevAioOptions:
2772 # Selects the AIO backend to handle I/O requests
2774 # @threads: Use qemu's thread pool
2775 # @native: Use native AIO backend (only Linux and Windows)
2776 # @io_uring: Use linux io_uring (since 5.0)
2780 { 'enum': 'BlockdevAioOptions',
2781 'data': [ 'threads', 'native',
2782 { 'name': 'io_uring', 'if': 'defined(CONFIG_LINUX_IO_URING)' } ] }
2785 # @BlockdevCacheOptions:
2787 # Includes cache-related options for block devices
2789 # @direct: enables use of O_DIRECT (bypass the host page cache;
2791 # @no-flush: ignore any flush requests for the device (default:
2796 { 'struct': 'BlockdevCacheOptions',
2797 'data': { '*direct': 'bool',
2798 '*no-flush': 'bool' } }
2803 # Drivers that are supported in block device operations.
2805 # @throttle: Since 2.11
2807 # @copy-on-read: Since 3.0
2808 # @blklogwrites: Since 3.0
2809 # @blkreplay: Since 4.2
2810 # @compress: Since 5.0
2814 { 'enum': 'BlockdevDriver',
2815 'data': [ 'blkdebug', 'blklogwrites', 'blkreplay', 'blkverify', 'bochs',
2816 'cloop', 'compress', 'copy-on-read', 'dmg', 'file', 'ftp', 'ftps',
2817 'gluster', 'host_cdrom', 'host_device', 'http', 'https', 'iscsi',
2818 'luks', 'nbd', 'nfs', 'null-aio', 'null-co', 'nvme', 'parallels',
2819 'preallocate', 'qcow', 'qcow2', 'qed', 'quorum', 'raw', 'rbd',
2820 { 'name': 'replication', 'if': 'defined(CONFIG_REPLICATION)' },
2821 'ssh', 'throttle', 'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat' ] }
2824 # @BlockdevOptionsFile:
2826 # Driver specific block device options for the file backend.
2828 # @filename: path to the image file
2829 # @pr-manager: the id for the object that will handle persistent reservations
2830 # for this device (default: none, forward the commands via SG_IO;
2832 # @aio: AIO backend (default: threads) (since: 2.8)
2833 # @locking: whether to enable file locking. If set to 'auto', only enable
2834 # when Open File Descriptor (OFD) locking API is available
2835 # (default: auto, since 2.10)
2836 # @drop-cache: invalidate page cache during live migration. This prevents
2837 # stale data on the migration destination with cache.direct=off.
2838 # Currently only supported on Linux hosts.
2839 # (default: on, since: 4.0)
2840 # @x-check-cache-dropped: whether to check that page cache was dropped on live
2841 # migration. May cause noticeable delays if the image
2842 # file is large, do not use in production.
2843 # (default: off) (since: 3.0)
2846 # @dynamic-auto-read-only: If present, enabled auto-read-only means that the
2847 # driver will open the image read-only at first,
2848 # dynamically reopen the image file read-write when
2849 # the first writer is attached to the node and reopen
2850 # read-only when the last writer is detached. This
2851 # allows giving QEMU write permissions only on demand
2852 # when an operation actually needs write access.
2856 { 'struct': 'BlockdevOptionsFile',
2857 'data': { 'filename': 'str',
2858 '*pr-manager': 'str',
2859 '*locking': 'OnOffAuto',
2860 '*aio': 'BlockdevAioOptions',
2861 '*drop-cache': {'type': 'bool',
2862 'if': 'defined(CONFIG_LINUX)'},
2863 '*x-check-cache-dropped': 'bool' },
2864 'features': [ { 'name': 'dynamic-auto-read-only',
2865 'if': 'defined(CONFIG_POSIX)' } ] }
2868 # @BlockdevOptionsNull:
2870 # Driver specific block device options for the null backend.
2872 # @size: size of the device in bytes.
2873 # @latency-ns: emulated latency (in nanoseconds) in processing
2874 # requests. Default to zero which completes requests immediately.
2876 # @read-zeroes: if true, reads from the device produce zeroes; if false, the
2877 # buffer is left unchanged. (default: false; since: 4.1)
2881 { 'struct': 'BlockdevOptionsNull',
2882 'data': { '*size': 'int', '*latency-ns': 'uint64', '*read-zeroes': 'bool' } }
2885 # @BlockdevOptionsNVMe:
2887 # Driver specific block device options for the NVMe backend.
2889 # @device: PCI controller address of the NVMe device in
2890 # format hhhh:bb:ss.f (host:bus:slot.function)
2891 # @namespace: namespace number of the device, starting from 1.
2893 # Note that the PCI @device must have been unbound from any host
2894 # kernel driver before instructing QEMU to add the blockdev.
2898 { 'struct': 'BlockdevOptionsNVMe',
2899 'data': { 'device': 'str', 'namespace': 'int' } }
2902 # @BlockdevOptionsVVFAT:
2904 # Driver specific block device options for the vvfat protocol.
2906 # @dir: directory to be exported as FAT image
2907 # @fat-type: FAT type: 12, 16 or 32
2908 # @floppy: whether to export a floppy image (true) or
2909 # partitioned hard disk (false; default)
2910 # @label: set the volume label, limited to 11 bytes. FAT16 and
2911 # FAT32 traditionally have some restrictions on labels, which are
2912 # ignored by most operating systems. Defaults to "QEMU VVFAT".
2914 # @rw: whether to allow write operations (default: false)
2918 { 'struct': 'BlockdevOptionsVVFAT',
2919 'data': { 'dir': 'str', '*fat-type': 'int', '*floppy': 'bool',
2920 '*label': 'str', '*rw': 'bool' } }
2923 # @BlockdevOptionsGenericFormat:
2925 # Driver specific block device options for image format that have no option
2926 # besides their data source.
2928 # @file: reference to or definition of the data source block device
2932 { 'struct': 'BlockdevOptionsGenericFormat',
2933 'data': { 'file': 'BlockdevRef' } }
2936 # @BlockdevOptionsLUKS:
2938 # Driver specific block device options for LUKS.
2940 # @key-secret: the ID of a QCryptoSecret object providing
2941 # the decryption key (since 2.6). Mandatory except when
2942 # doing a metadata-only probe of the image.
2946 { 'struct': 'BlockdevOptionsLUKS',
2947 'base': 'BlockdevOptionsGenericFormat',
2948 'data': { '*key-secret': 'str' } }
2952 # @BlockdevOptionsGenericCOWFormat:
2954 # Driver specific block device options for image format that have no option
2955 # besides their data source and an optional backing file.
2957 # @backing: reference to or definition of the backing file block
2958 # device, null disables the backing file entirely.
2959 # Defaults to the backing file stored the image file.
2963 { 'struct': 'BlockdevOptionsGenericCOWFormat',
2964 'base': 'BlockdevOptionsGenericFormat',
2965 'data': { '*backing': 'BlockdevRefOrNull' } }
2968 # @Qcow2OverlapCheckMode:
2970 # General overlap check modes.
2972 # @none: Do not perform any checks
2974 # @constant: Perform only checks which can be done in constant time and
2975 # without reading anything from disk
2977 # @cached: Perform only checks which can be done without reading anything
2980 # @all: Perform all available overlap checks
2984 { 'enum': 'Qcow2OverlapCheckMode',
2985 'data': [ 'none', 'constant', 'cached', 'all' ] }
2988 # @Qcow2OverlapCheckFlags:
2990 # Structure of flags for each metadata structure. Setting a field to 'true'
2991 # makes qemu guard that structure against unintended overwriting. The default
2992 # value is chosen according to the template given.
2994 # @template: Specifies a template mode which can be adjusted using the other
2995 # flags, defaults to 'cached'
2997 # @bitmap-directory: since 3.0
3001 { 'struct': 'Qcow2OverlapCheckFlags',
3002 'data': { '*template': 'Qcow2OverlapCheckMode',
3003 '*main-header': 'bool',
3004 '*active-l1': 'bool',
3005 '*active-l2': 'bool',
3006 '*refcount-table': 'bool',
3007 '*refcount-block': 'bool',
3008 '*snapshot-table': 'bool',
3009 '*inactive-l1': 'bool',
3010 '*inactive-l2': 'bool',
3011 '*bitmap-directory': 'bool' } }
3014 # @Qcow2OverlapChecks:
3016 # Specifies which metadata structures should be guarded against unintended
3019 # @flags: set of flags for separate specification of each metadata structure
3022 # @mode: named mode which chooses a specific set of flags
3026 { 'alternate': 'Qcow2OverlapChecks',
3027 'data': { 'flags': 'Qcow2OverlapCheckFlags',
3028 'mode': 'Qcow2OverlapCheckMode' } }
3031 # @BlockdevQcowEncryptionFormat:
3033 # @aes: AES-CBC with plain64 initialization vectors
3037 { 'enum': 'BlockdevQcowEncryptionFormat',
3041 # @BlockdevQcowEncryption:
3045 { 'union': 'BlockdevQcowEncryption',
3046 'base': { 'format': 'BlockdevQcowEncryptionFormat' },
3047 'discriminator': 'format',
3048 'data': { 'aes': 'QCryptoBlockOptionsQCow' } }
3051 # @BlockdevOptionsQcow:
3053 # Driver specific block device options for qcow.
3055 # @encrypt: Image decryption options. Mandatory for
3056 # encrypted images, except when doing a metadata-only
3057 # probe of the image.
3061 { 'struct': 'BlockdevOptionsQcow',
3062 'base': 'BlockdevOptionsGenericCOWFormat',
3063 'data': { '*encrypt': 'BlockdevQcowEncryption' } }
3068 # @BlockdevQcow2EncryptionFormat:
3069 # @aes: AES-CBC with plain64 initialization vectors
3073 { 'enum': 'BlockdevQcow2EncryptionFormat',
3074 'data': [ 'aes', 'luks' ] }
3077 # @BlockdevQcow2Encryption:
3081 { 'union': 'BlockdevQcow2Encryption',
3082 'base': { 'format': 'BlockdevQcow2EncryptionFormat' },
3083 'discriminator': 'format',
3084 'data': { 'aes': 'QCryptoBlockOptionsQCow',
3085 'luks': 'QCryptoBlockOptionsLUKS'} }
3088 # @BlockdevOptionsPreallocate:
3090 # Filter driver intended to be inserted between format and protocol node
3091 # and do preallocation in protocol node on write.
3093 # @prealloc-align: on preallocation, align file length to this number,
3094 # default 1048576 (1M)
3096 # @prealloc-size: how much to preallocate, default 134217728 (128M)
3100 { 'struct': 'BlockdevOptionsPreallocate',
3101 'base': 'BlockdevOptionsGenericFormat',
3102 'data': { '*prealloc-align': 'int', '*prealloc-size': 'int' } }
3105 # @BlockdevOptionsQcow2:
3107 # Driver specific block device options for qcow2.
3109 # @lazy-refcounts: whether to enable the lazy refcounts
3110 # feature (default is taken from the image file)
3112 # @pass-discard-request: whether discard requests to the qcow2
3113 # device should be forwarded to the data source
3115 # @pass-discard-snapshot: whether discard requests for the data source
3116 # should be issued when a snapshot operation (e.g.
3117 # deleting a snapshot) frees clusters in the qcow2 file
3119 # @pass-discard-other: whether discard requests for the data source
3120 # should be issued on other occasions where a cluster
3123 # @overlap-check: which overlap checks to perform for writes
3124 # to the image, defaults to 'cached' (since 2.2)
3126 # @cache-size: the maximum total size of the L2 table and
3127 # refcount block caches in bytes (since 2.2)
3129 # @l2-cache-size: the maximum size of the L2 table cache in
3132 # @l2-cache-entry-size: the size of each entry in the L2 cache in
3133 # bytes. It must be a power of two between 512
3134 # and the cluster size. The default value is
3135 # the cluster size (since 2.12)
3137 # @refcount-cache-size: the maximum size of the refcount block cache
3138 # in bytes (since 2.2)
3140 # @cache-clean-interval: clean unused entries in the L2 and refcount
3141 # caches. The interval is in seconds. The default value
3142 # is 600 on supporting platforms, and 0 on other
3143 # platforms. 0 disables this feature. (since 2.5)
3145 # @encrypt: Image decryption options. Mandatory for
3146 # encrypted images, except when doing a metadata-only
3147 # probe of the image. (since 2.10)
3149 # @data-file: reference to or definition of the external data file.
3150 # This may only be specified for images that require an
3151 # external data file. If it is not specified for such
3152 # an image, the data file name is loaded from the image
3157 { 'struct': 'BlockdevOptionsQcow2',
3158 'base': 'BlockdevOptionsGenericCOWFormat',
3159 'data': { '*lazy-refcounts': 'bool',
3160 '*pass-discard-request': 'bool',
3161 '*pass-discard-snapshot': 'bool',
3162 '*pass-discard-other': 'bool',
3163 '*overlap-check': 'Qcow2OverlapChecks',
3164 '*cache-size': 'int',
3165 '*l2-cache-size': 'int',
3166 '*l2-cache-entry-size': 'int',
3167 '*refcount-cache-size': 'int',
3168 '*cache-clean-interval': 'int',
3169 '*encrypt': 'BlockdevQcow2Encryption',
3170 '*data-file': 'BlockdevRef' } }
3173 # @SshHostKeyCheckMode:
3175 # @none: Don't check the host key at all
3176 # @hash: Compare the host key with a given hash
3177 # @known_hosts: Check the host key against the known_hosts file
3181 { 'enum': 'SshHostKeyCheckMode',
3182 'data': [ 'none', 'hash', 'known_hosts' ] }
3185 # @SshHostKeyCheckHashType:
3187 # @md5: The given hash is an md5 hash
3188 # @sha1: The given hash is an sha1 hash
3192 { 'enum': 'SshHostKeyCheckHashType',
3193 'data': [ 'md5', 'sha1' ] }
3198 # @type: The hash algorithm used for the hash
3199 # @hash: The expected hash value
3203 { 'struct': 'SshHostKeyHash',
3204 'data': { 'type': 'SshHostKeyCheckHashType',
3212 { 'union': 'SshHostKeyCheck',
3213 'base': { 'mode': 'SshHostKeyCheckMode' },
3214 'discriminator': 'mode',
3215 'data': { 'hash': 'SshHostKeyHash' } }
3218 # @BlockdevOptionsSsh:
3220 # @server: host address
3222 # @path: path to the image on the host
3224 # @user: user as which to connect, defaults to current
3227 # @host-key-check: Defines how and what to check the host key against
3228 # (default: known_hosts)
3232 { 'struct': 'BlockdevOptionsSsh',
3233 'data': { 'server': 'InetSocketAddress',
3236 '*host-key-check': 'SshHostKeyCheck' } }
3242 # Trigger events supported by blkdebug.
3244 # @l1_shrink_write_table: write zeros to the l1 table to shrink image.
3247 # @l1_shrink_free_l2_clusters: discard the l2 tables. (since 2.11)
3249 # @cor_write: a write due to copy-on-read (since 2.11)
3251 # @cluster_alloc_space: an allocation of file space for a cluster (since 4.1)
3253 # @none: triggers once at creation of the blkdebug node (since 4.1)
3257 { 'enum': 'BlkdebugEvent', 'prefix': 'BLKDBG',
3258 'data': [ 'l1_update', 'l1_grow_alloc_table', 'l1_grow_write_table',
3259 'l1_grow_activate_table', 'l2_load', 'l2_update',
3260 'l2_update_compressed', 'l2_alloc_cow_read', 'l2_alloc_write',
3261 'read_aio', 'read_backing_aio', 'read_compressed', 'write_aio',
3262 'write_compressed', 'vmstate_load', 'vmstate_save', 'cow_read',
3263 'cow_write', 'reftable_load', 'reftable_grow', 'reftable_update',
3264 'refblock_load', 'refblock_update', 'refblock_update_part',
3265 'refblock_alloc', 'refblock_alloc_hookup', 'refblock_alloc_write',
3266 'refblock_alloc_write_blocks', 'refblock_alloc_write_table',
3267 'refblock_alloc_switch_table', 'cluster_alloc',
3268 'cluster_alloc_bytes', 'cluster_free', 'flush_to_os',
3269 'flush_to_disk', 'pwritev_rmw_head', 'pwritev_rmw_after_head',
3270 'pwritev_rmw_tail', 'pwritev_rmw_after_tail', 'pwritev',
3271 'pwritev_zero', 'pwritev_done', 'empty_image_prepare',
3272 'l1_shrink_write_table', 'l1_shrink_free_l2_clusters',
3273 'cor_write', 'cluster_alloc_space', 'none'] }
3278 # Kinds of I/O that blkdebug can inject errors in.
3280 # @read: .bdrv_co_preadv()
3282 # @write: .bdrv_co_pwritev()
3284 # @write-zeroes: .bdrv_co_pwrite_zeroes()
3286 # @discard: .bdrv_co_pdiscard()
3288 # @flush: .bdrv_co_flush_to_disk()
3290 # @block-status: .bdrv_co_block_status()
3294 { 'enum': 'BlkdebugIOType', 'prefix': 'BLKDEBUG_IO_TYPE',
3295 'data': [ 'read', 'write', 'write-zeroes', 'discard', 'flush',
3299 # @BlkdebugInjectErrorOptions:
3301 # Describes a single error injection for blkdebug.
3303 # @event: trigger event
3305 # @state: the state identifier blkdebug needs to be in to
3306 # actually trigger the event; defaults to "any"
3308 # @iotype: the type of I/O operations on which this error should
3309 # be injected; defaults to "all read, write,
3310 # write-zeroes, discard, and flush operations"
3313 # @errno: error identifier (errno) to be returned; defaults to
3316 # @sector: specifies the sector index which has to be affected
3317 # in order to actually trigger the event; defaults to "any
3320 # @once: disables further events after this one has been
3321 # triggered; defaults to false
3323 # @immediately: fail immediately; defaults to false
3327 { 'struct': 'BlkdebugInjectErrorOptions',
3328 'data': { 'event': 'BlkdebugEvent',
3330 '*iotype': 'BlkdebugIOType',
3334 '*immediately': 'bool' } }
3337 # @BlkdebugSetStateOptions:
3339 # Describes a single state-change event for blkdebug.
3341 # @event: trigger event
3343 # @state: the current state identifier blkdebug needs to be in;
3346 # @new_state: the state identifier blkdebug is supposed to assume if
3347 # this event is triggered
3351 { 'struct': 'BlkdebugSetStateOptions',
3352 'data': { 'event': 'BlkdebugEvent',
3354 'new_state': 'int' } }
3357 # @BlockdevOptionsBlkdebug:
3359 # Driver specific block device options for blkdebug.
3361 # @image: underlying raw block device (or image file)
3363 # @config: filename of the configuration file
3365 # @align: required alignment for requests in bytes, must be
3366 # positive power of 2, or 0 for default
3368 # @max-transfer: maximum size for I/O transfers in bytes, must be
3369 # positive multiple of @align and of the underlying
3370 # file's request alignment (but need not be a power of
3371 # 2), or 0 for default (since 2.10)
3373 # @opt-write-zero: preferred alignment for write zero requests in bytes,
3374 # must be positive multiple of @align and of the
3375 # underlying file's request alignment (but need not be a
3376 # power of 2), or 0 for default (since 2.10)
3378 # @max-write-zero: maximum size for write zero requests in bytes, must be
3379 # positive multiple of @align, of @opt-write-zero, and of
3380 # the underlying file's request alignment (but need not
3381 # be a power of 2), or 0 for default (since 2.10)
3383 # @opt-discard: preferred alignment for discard requests in bytes, must
3384 # be positive multiple of @align and of the underlying
3385 # file's request alignment (but need not be a power of
3386 # 2), or 0 for default (since 2.10)
3388 # @max-discard: maximum size for discard requests in bytes, must be
3389 # positive multiple of @align, of @opt-discard, and of
3390 # the underlying file's request alignment (but need not
3391 # be a power of 2), or 0 for default (since 2.10)
3393 # @inject-error: array of error injection descriptions
3395 # @set-state: array of state-change descriptions
3397 # @take-child-perms: Permissions to take on @image in addition to what
3398 # is necessary anyway (which depends on how the
3399 # blkdebug node is used). Defaults to none.
3402 # @unshare-child-perms: Permissions not to share on @image in addition
3403 # to what cannot be shared anyway (which depends
3404 # on how the blkdebug node is used). Defaults
3405 # to none. (since 5.0)
3409 { 'struct': 'BlockdevOptionsBlkdebug',
3410 'data': { 'image': 'BlockdevRef',
3412 '*align': 'int', '*max-transfer': 'int32',
3413 '*opt-write-zero': 'int32', '*max-write-zero': 'int32',
3414 '*opt-discard': 'int32', '*max-discard': 'int32',
3415 '*inject-error': ['BlkdebugInjectErrorOptions'],
3416 '*set-state': ['BlkdebugSetStateOptions'],
3417 '*take-child-perms': ['BlockPermission'],
3418 '*unshare-child-perms': ['BlockPermission'] } }
3421 # @BlockdevOptionsBlklogwrites:
3423 # Driver specific block device options for blklogwrites.
3425 # @file: block device
3427 # @log: block device used to log writes to @file
3429 # @log-sector-size: sector size used in logging writes to @file, determines
3430 # granularity of offsets and sizes of writes (default: 512)
3432 # @log-append: append to an existing log (default: false)
3434 # @log-super-update-interval: interval of write requests after which the log
3435 # super block is updated to disk (default: 4096)
3439 { 'struct': 'BlockdevOptionsBlklogwrites',
3440 'data': { 'file': 'BlockdevRef',
3441 'log': 'BlockdevRef',
3442 '*log-sector-size': 'uint32',
3443 '*log-append': 'bool',
3444 '*log-super-update-interval': 'uint64' } }
3447 # @BlockdevOptionsBlkverify:
3449 # Driver specific block device options for blkverify.
3451 # @test: block device to be tested
3453 # @raw: raw image used for verification
3457 { 'struct': 'BlockdevOptionsBlkverify',
3458 'data': { 'test': 'BlockdevRef',
3459 'raw': 'BlockdevRef' } }
3462 # @BlockdevOptionsBlkreplay:
3464 # Driver specific block device options for blkreplay.
3466 # @image: disk image which should be controlled with blkreplay
3470 { 'struct': 'BlockdevOptionsBlkreplay',
3471 'data': { 'image': 'BlockdevRef' } }
3474 # @QuorumReadPattern:
3476 # An enumeration of quorum read patterns.
3478 # @quorum: read all the children and do a quorum vote on reads
3480 # @fifo: read only from the first child that has not failed
3484 { 'enum': 'QuorumReadPattern', 'data': [ 'quorum', 'fifo' ] }
3487 # @BlockdevOptionsQuorum:
3489 # Driver specific block device options for Quorum
3491 # @blkverify: true if the driver must print content mismatch
3492 # set to false by default
3494 # @children: the children block devices to use
3496 # @vote-threshold: the vote limit under which a read will fail
3498 # @rewrite-corrupted: rewrite corrupted data when quorum is reached
3501 # @read-pattern: choose read pattern and set to quorum by default
3506 { 'struct': 'BlockdevOptionsQuorum',
3507 'data': { '*blkverify': 'bool',
3508 'children': [ 'BlockdevRef' ],
3509 'vote-threshold': 'int',
3510 '*rewrite-corrupted': 'bool',
3511 '*read-pattern': 'QuorumReadPattern' } }
3514 # @BlockdevOptionsGluster:
3516 # Driver specific block device options for Gluster
3518 # @volume: name of gluster volume where VM image resides
3520 # @path: absolute path to image file in gluster volume
3522 # @server: gluster servers description
3524 # @debug: libgfapi log level (default '4' which is Error)
3527 # @logfile: libgfapi log file (default /dev/stderr) (Since 2.8)
3531 { 'struct': 'BlockdevOptionsGluster',
3532 'data': { 'volume': 'str',
3534 'server': ['SocketAddress'],
3536 '*logfile': 'str' } }
3541 # An enumeration of libiscsi transport types
3545 { 'enum': 'IscsiTransport',
3546 'data': [ 'tcp', 'iser' ] }
3549 # @IscsiHeaderDigest:
3551 # An enumeration of header digests supported by libiscsi
3555 { 'enum': 'IscsiHeaderDigest',
3556 'prefix': 'QAPI_ISCSI_HEADER_DIGEST',
3557 'data': [ 'crc32c', 'none', 'crc32c-none', 'none-crc32c' ] }
3560 # @BlockdevOptionsIscsi:
3562 # @transport: The iscsi transport type
3564 # @portal: The address of the iscsi portal
3566 # @target: The target iqn name
3568 # @lun: LUN to connect to. Defaults to 0.
3570 # @user: User name to log in with. If omitted, no CHAP
3571 # authentication is performed.
3573 # @password-secret: The ID of a QCryptoSecret object providing
3574 # the password for the login. This option is required if
3575 # @user is specified.
3577 # @initiator-name: The iqn name we want to identify to the target
3578 # as. If this option is not specified, an initiator name is
3579 # generated automatically.
3581 # @header-digest: The desired header digest. Defaults to
3584 # @timeout: Timeout in seconds after which a request will
3585 # timeout. 0 means no timeout and is the default.
3587 # Driver specific block device options for iscsi
3591 { 'struct': 'BlockdevOptionsIscsi',
3592 'data': { 'transport': 'IscsiTransport',
3597 '*password-secret': 'str',
3598 '*initiator-name': 'str',
3599 '*header-digest': 'IscsiHeaderDigest',
3600 '*timeout': 'int' } }
3608 { 'enum': 'RbdAuthMode',
3609 'data': [ 'cephx', 'none' ] }
3612 # @BlockdevOptionsRbd:
3614 # @pool: Ceph pool name.
3616 # @namespace: Rados namespace name in the Ceph pool. (Since 5.0)
3618 # @image: Image name in the Ceph pool.
3620 # @conf: path to Ceph configuration file. Values
3621 # in the configuration file will be overridden by
3622 # options specified via QAPI.
3624 # @snapshot: Ceph snapshot name.
3626 # @user: Ceph id name.
3628 # @auth-client-required: Acceptable authentication modes.
3629 # This maps to Ceph configuration option
3630 # "auth_client_required". (Since 3.0)
3632 # @key-secret: ID of a QCryptoSecret object providing a key
3633 # for cephx authentication.
3634 # This maps to Ceph configuration option
3635 # "key". (Since 3.0)
3637 # @server: Monitor host address and port. This maps
3638 # to the "mon_host" Ceph option.
3642 { 'struct': 'BlockdevOptionsRbd',
3643 'data': { 'pool': 'str',
3644 '*namespace': 'str',
3649 '*auth-client-required': ['RbdAuthMode'],
3650 '*key-secret': 'str',
3651 '*server': ['InetSocketAddressBase'] } }
3656 # An enumeration of replication modes.
3658 # @primary: Primary mode, the vm's state will be sent to secondary QEMU.
3660 # @secondary: Secondary mode, receive the vm's state from primary QEMU.
3664 { 'enum' : 'ReplicationMode', 'data' : [ 'primary', 'secondary' ],
3665 'if': 'defined(CONFIG_REPLICATION)' }
3668 # @BlockdevOptionsReplication:
3670 # Driver specific block device options for replication
3672 # @mode: the replication mode
3674 # @top-id: In secondary mode, node name or device ID of the root
3675 # node who owns the replication node chain. Must not be given in
3680 { 'struct': 'BlockdevOptionsReplication',
3681 'base': 'BlockdevOptionsGenericFormat',
3682 'data': { 'mode': 'ReplicationMode',
3684 'if': 'defined(CONFIG_REPLICATION)' }
3689 # An enumeration of NFS transport types
3691 # @inet: TCP transport
3695 { 'enum': 'NFSTransport',
3696 'data': [ 'inet' ] }
3701 # Captures the address of the socket
3703 # @type: transport type used for NFS (only TCP supported)
3705 # @host: host address for NFS server
3709 { 'struct': 'NFSServer',
3710 'data': { 'type': 'NFSTransport',
3714 # @BlockdevOptionsNfs:
3716 # Driver specific block device option for NFS
3718 # @server: host address
3720 # @path: path of the image on the host
3722 # @user: UID value to use when talking to the
3723 # server (defaults to 65534 on Windows and getuid()
3726 # @group: GID value to use when talking to the
3727 # server (defaults to 65534 on Windows and getgid()
3730 # @tcp-syn-count: number of SYNs during the session
3731 # establishment (defaults to libnfs default)
3733 # @readahead-size: set the readahead size in bytes (defaults
3734 # to libnfs default)
3736 # @page-cache-size: set the pagecache size in bytes (defaults
3737 # to libnfs default)
3739 # @debug: set the NFS debug level (max 2) (defaults
3740 # to libnfs default)
3744 { 'struct': 'BlockdevOptionsNfs',
3745 'data': { 'server': 'NFSServer',
3749 '*tcp-syn-count': 'int',
3750 '*readahead-size': 'int',
3751 '*page-cache-size': 'int',
3755 # @BlockdevOptionsCurlBase:
3757 # Driver specific block device options shared by all protocols supported by the
3760 # @url: URL of the image file
3762 # @readahead: Size of the read-ahead cache; must be a multiple of
3763 # 512 (defaults to 256 kB)
3765 # @timeout: Timeout for connections, in seconds (defaults to 5)
3767 # @username: Username for authentication (defaults to none)
3769 # @password-secret: ID of a QCryptoSecret object providing a password
3770 # for authentication (defaults to no password)
3772 # @proxy-username: Username for proxy authentication (defaults to none)
3774 # @proxy-password-secret: ID of a QCryptoSecret object providing a password
3775 # for proxy authentication (defaults to no password)
3779 { 'struct': 'BlockdevOptionsCurlBase',
3780 'data': { 'url': 'str',
3781 '*readahead': 'int',
3784 '*password-secret': 'str',
3785 '*proxy-username': 'str',
3786 '*proxy-password-secret': 'str' } }
3789 # @BlockdevOptionsCurlHttp:
3791 # Driver specific block device options for HTTP connections over the curl
3792 # backend. URLs must start with "http://".
3794 # @cookie: List of cookies to set; format is
3795 # "name1=content1; name2=content2;" as explained by
3796 # CURLOPT_COOKIE(3). Defaults to no cookies.
3798 # @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
3799 # secure way. See @cookie for the format. (since 2.10)
3803 { 'struct': 'BlockdevOptionsCurlHttp',
3804 'base': 'BlockdevOptionsCurlBase',
3805 'data': { '*cookie': 'str',
3806 '*cookie-secret': 'str'} }
3809 # @BlockdevOptionsCurlHttps:
3811 # Driver specific block device options for HTTPS connections over the curl
3812 # backend. URLs must start with "https://".
3814 # @cookie: List of cookies to set; format is
3815 # "name1=content1; name2=content2;" as explained by
3816 # CURLOPT_COOKIE(3). Defaults to no cookies.
3818 # @sslverify: Whether to verify the SSL certificate's validity (defaults to
3821 # @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
3822 # secure way. See @cookie for the format. (since 2.10)
3826 { 'struct': 'BlockdevOptionsCurlHttps',
3827 'base': 'BlockdevOptionsCurlBase',
3828 'data': { '*cookie': 'str',
3829 '*sslverify': 'bool',
3830 '*cookie-secret': 'str'} }
3833 # @BlockdevOptionsCurlFtp:
3835 # Driver specific block device options for FTP connections over the curl
3836 # backend. URLs must start with "ftp://".
3840 { 'struct': 'BlockdevOptionsCurlFtp',
3841 'base': 'BlockdevOptionsCurlBase',
3845 # @BlockdevOptionsCurlFtps:
3847 # Driver specific block device options for FTPS connections over the curl
3848 # backend. URLs must start with "ftps://".
3850 # @sslverify: Whether to verify the SSL certificate's validity (defaults to
3855 { 'struct': 'BlockdevOptionsCurlFtps',
3856 'base': 'BlockdevOptionsCurlBase',
3857 'data': { '*sslverify': 'bool' } }
3860 # @BlockdevOptionsNbd:
3862 # Driver specific block device options for NBD.
3864 # @server: NBD server address
3866 # @export: export name
3868 # @tls-creds: TLS credentials ID
3870 # @x-dirty-bitmap: A metadata context name such as "qemu:dirty-bitmap:NAME"
3871 # or "qemu:allocation-depth" to query in place of the
3872 # traditional "base:allocation" block status (see
3873 # NBD_OPT_LIST_META_CONTEXT in the NBD protocol; and
3874 # yes, naming this option x-context would have made
3875 # more sense) (since 3.0)
3877 # @reconnect-delay: On an unexpected disconnect, the nbd client tries to
3878 # connect again until succeeding or encountering a serious
3879 # error. During the first @reconnect-delay seconds, all
3880 # requests are paused and will be rerun on a successful
3881 # reconnect. After that time, any delayed requests and all
3882 # future requests before a successful reconnect will
3883 # immediately fail. Default 0 (Since 4.2)
3887 { 'struct': 'BlockdevOptionsNbd',
3888 'data': { 'server': 'SocketAddress',
3890 '*tls-creds': 'str',
3891 '*x-dirty-bitmap': 'str',
3892 '*reconnect-delay': 'uint32' } }
3895 # @BlockdevOptionsRaw:
3897 # Driver specific block device options for the raw driver.
3899 # @offset: position where the block device starts
3900 # @size: the assumed size of the device
3904 { 'struct': 'BlockdevOptionsRaw',
3905 'base': 'BlockdevOptionsGenericFormat',
3906 'data': { '*offset': 'int', '*size': 'int' } }
3909 # @BlockdevOptionsThrottle:
3911 # Driver specific block device options for the throttle driver
3913 # @throttle-group: the name of the throttle-group object to use. It
3914 # must already exist.
3915 # @file: reference to or definition of the data source block device
3918 { 'struct': 'BlockdevOptionsThrottle',
3919 'data': { 'throttle-group': 'str',
3920 'file' : 'BlockdevRef'
3924 # @BlockdevOptionsCor:
3926 # Driver specific block device options for the copy-on-read driver.
3928 # @bottom: The name of a non-filter node (allocation-bearing layer) that
3929 # limits the COR operations in the backing chain (inclusive), so
3930 # that no data below this node will be copied by this filter.
3931 # If option is absent, the limit is not applied, so that data
3932 # from all backing layers may be copied.
3936 { 'struct': 'BlockdevOptionsCor',
3937 'base': 'BlockdevOptionsGenericFormat',
3938 'data': { '*bottom': 'str' } }
3943 # Options for creating a block device. Many options are available for all
3944 # block devices, independent of the block driver:
3946 # @driver: block driver name
3947 # @node-name: the node name of the new node (Since 2.0).
3948 # This option is required on the top level of blockdev-add.
3949 # Valid node names start with an alphabetic character and may
3950 # contain only alphanumeric characters, '-', '.' and '_'. Their
3951 # maximum length is 31 characters.
3952 # @discard: discard-related options (default: ignore)
3953 # @cache: cache-related options
3954 # @read-only: whether the block device should be read-only (default: false).
3955 # Note that some block drivers support only read-only access,
3956 # either generally or in certain configurations. In this case,
3957 # the default value does not work and the option must be
3958 # specified explicitly.
3959 # @auto-read-only: if true and @read-only is false, QEMU may automatically
3960 # decide not to open the image read-write as requested, but
3961 # fall back to read-only instead (and switch between the modes
3962 # later), e.g. depending on whether the image file is writable
3963 # or whether a writing user is attached to the node
3964 # (default: false, since 3.1)
3965 # @detect-zeroes: detect and optimize zero writes (Since 2.1)
3967 # @force-share: force share all permission on added nodes.
3968 # Requires read-only=true. (Since 2.10)
3970 # Remaining options are determined by the block driver.
3974 { 'union': 'BlockdevOptions',
3975 'base': { 'driver': 'BlockdevDriver',
3976 '*node-name': 'str',
3977 '*discard': 'BlockdevDiscardOptions',
3978 '*cache': 'BlockdevCacheOptions',
3979 '*read-only': 'bool',
3980 '*auto-read-only': 'bool',
3981 '*force-share': 'bool',
3982 '*detect-zeroes': 'BlockdevDetectZeroesOptions' },
3983 'discriminator': 'driver',
3985 'blkdebug': 'BlockdevOptionsBlkdebug',
3986 'blklogwrites':'BlockdevOptionsBlklogwrites',
3987 'blkverify': 'BlockdevOptionsBlkverify',
3988 'blkreplay': 'BlockdevOptionsBlkreplay',
3989 'bochs': 'BlockdevOptionsGenericFormat',
3990 'cloop': 'BlockdevOptionsGenericFormat',
3991 'compress': 'BlockdevOptionsGenericFormat',
3992 'copy-on-read':'BlockdevOptionsCor',
3993 'dmg': 'BlockdevOptionsGenericFormat',
3994 'file': 'BlockdevOptionsFile',
3995 'ftp': 'BlockdevOptionsCurlFtp',
3996 'ftps': 'BlockdevOptionsCurlFtps',
3997 'gluster': 'BlockdevOptionsGluster',
3998 'host_cdrom': 'BlockdevOptionsFile',
3999 'host_device':'BlockdevOptionsFile',
4000 'http': 'BlockdevOptionsCurlHttp',
4001 'https': 'BlockdevOptionsCurlHttps',
4002 'iscsi': 'BlockdevOptionsIscsi',
4003 'luks': 'BlockdevOptionsLUKS',
4004 'nbd': 'BlockdevOptionsNbd',
4005 'nfs': 'BlockdevOptionsNfs',
4006 'null-aio': 'BlockdevOptionsNull',
4007 'null-co': 'BlockdevOptionsNull',
4008 'nvme': 'BlockdevOptionsNVMe',
4009 'parallels': 'BlockdevOptionsGenericFormat',
4010 'preallocate':'BlockdevOptionsPreallocate',
4011 'qcow2': 'BlockdevOptionsQcow2',
4012 'qcow': 'BlockdevOptionsQcow',
4013 'qed': 'BlockdevOptionsGenericCOWFormat',
4014 'quorum': 'BlockdevOptionsQuorum',
4015 'raw': 'BlockdevOptionsRaw',
4016 'rbd': 'BlockdevOptionsRbd',
4017 'replication': { 'type': 'BlockdevOptionsReplication',
4018 'if': 'defined(CONFIG_REPLICATION)' },
4019 'ssh': 'BlockdevOptionsSsh',
4020 'throttle': 'BlockdevOptionsThrottle',
4021 'vdi': 'BlockdevOptionsGenericFormat',
4022 'vhdx': 'BlockdevOptionsGenericFormat',
4023 'vmdk': 'BlockdevOptionsGenericCOWFormat',
4024 'vpc': 'BlockdevOptionsGenericFormat',
4025 'vvfat': 'BlockdevOptionsVVFAT'
4031 # Reference to a block device.
4033 # @definition: defines a new block device inline
4034 # @reference: references the ID of an existing block device
4038 { 'alternate': 'BlockdevRef',
4039 'data': { 'definition': 'BlockdevOptions',
4040 'reference': 'str' } }
4043 # @BlockdevRefOrNull:
4045 # Reference to a block device.
4047 # @definition: defines a new block device inline
4048 # @reference: references the ID of an existing block device.
4049 # An empty string means that no block device should
4050 # be referenced. Deprecated; use null instead.
4051 # @null: No block device should be referenced (since 2.10)
4055 { 'alternate': 'BlockdevRefOrNull',
4056 'data': { 'definition': 'BlockdevOptions',
4063 # Creates a new block device.
4070 # -> { "execute": "blockdev-add",
4072 # "driver": "qcow2",
4073 # "node-name": "test1",
4076 # "filename": "test.qcow2"
4080 # <- { "return": {} }
4083 # -> { "execute": "blockdev-add",
4085 # "driver": "qcow2",
4086 # "node-name": "node0",
4087 # "discard": "unmap",
4093 # "filename": "/tmp/test.qcow2"
4099 # "filename": "/dev/fdset/4"
4105 # <- { "return": {} }
4108 { 'command': 'blockdev-add', 'data': 'BlockdevOptions', 'boxed': true }
4111 # @x-blockdev-reopen:
4113 # Reopens a block device using the given set of options. Any option
4114 # not specified will be reset to its default value regardless of its
4115 # previous status. If an option cannot be changed or a particular
4116 # driver does not support reopening then the command will return an
4119 # The top-level @node-name option (from BlockdevOptions) must be
4120 # specified and is used to select the block device to be reopened.
4121 # Other @node-name options must be either omitted or set to the
4122 # current name of the appropriate node. This command won't change any
4123 # node name and any attempt to do it will result in an error.
4125 # In the case of options that refer to child nodes, the behavior of
4126 # this command depends on the value:
4128 # 1) A set of options (BlockdevOptions): the child is reopened with
4129 # the specified set of options.
4131 # 2) A reference to the current child: the child is reopened using
4132 # its existing set of options.
4134 # 3) A reference to a different node: the current child is replaced
4135 # with the specified one.
4137 # 4) NULL: the current child (if any) is detached.
4139 # Options (1) and (2) are supported in all cases, but at the moment
4140 # only @backing allows replacing or detaching an existing child.
4142 # Unlike with blockdev-add, the @backing option must always be present
4143 # unless the node being reopened does not have a backing file and its
4144 # image does not have a default backing file name as part of its
4149 { 'command': 'x-blockdev-reopen',
4150 'data': 'BlockdevOptions', 'boxed': true }
4155 # Deletes a block device that has been added using blockdev-add.
4156 # The command will fail if the node is attached to a device or is
4157 # otherwise being used.
4159 # @node-name: Name of the graph node to delete.
4165 # -> { "execute": "blockdev-add",
4167 # "driver": "qcow2",
4168 # "node-name": "node0",
4171 # "filename": "test.qcow2"
4175 # <- { "return": {} }
4177 # -> { "execute": "blockdev-del",
4178 # "arguments": { "node-name": "node0" }
4180 # <- { "return": {} }
4183 { 'command': 'blockdev-del', 'data': { 'node-name': 'str' } }
4186 # @BlockdevCreateOptionsFile:
4188 # Driver specific image creation options for file.
4190 # @filename: Filename for the new image file
4191 # @size: Size of the virtual disk in bytes
4192 # @preallocation: Preallocation mode for the new image (default: off;
4193 # allowed values: off,
4194 # falloc (if defined CONFIG_POSIX_FALLOCATE),
4195 # full (if defined CONFIG_POSIX))
4196 # @nocow: Turn off copy-on-write (valid only on btrfs; default: off)
4197 # @extent-size-hint: Extent size hint to add to the image file; 0 for not
4198 # adding an extent size hint (default: 1 MB, since 5.1)
4202 { 'struct': 'BlockdevCreateOptionsFile',
4203 'data': { 'filename': 'str',
4205 '*preallocation': 'PreallocMode',
4207 '*extent-size-hint': 'size'} }
4210 # @BlockdevCreateOptionsGluster:
4212 # Driver specific image creation options for gluster.
4214 # @location: Where to store the new image file
4215 # @size: Size of the virtual disk in bytes
4216 # @preallocation: Preallocation mode for the new image (default: off;
4217 # allowed values: off,
4218 # falloc (if defined CONFIG_GLUSTERFS_FALLOCATE),
4219 # full (if defined CONFIG_GLUSTERFS_ZEROFILL))
4223 { 'struct': 'BlockdevCreateOptionsGluster',
4224 'data': { 'location': 'BlockdevOptionsGluster',
4226 '*preallocation': 'PreallocMode' } }
4229 # @BlockdevCreateOptionsLUKS:
4231 # Driver specific image creation options for LUKS.
4233 # @file: Node to create the image format on
4234 # @size: Size of the virtual disk in bytes
4235 # @preallocation: Preallocation mode for the new image
4237 # (default: off; allowed values: off, metadata, falloc, full)
4241 { 'struct': 'BlockdevCreateOptionsLUKS',
4242 'base': 'QCryptoBlockCreateOptionsLUKS',
4243 'data': { 'file': 'BlockdevRef',
4245 '*preallocation': 'PreallocMode' } }
4248 # @BlockdevCreateOptionsNfs:
4250 # Driver specific image creation options for NFS.
4252 # @location: Where to store the new image file
4253 # @size: Size of the virtual disk in bytes
4257 { 'struct': 'BlockdevCreateOptionsNfs',
4258 'data': { 'location': 'BlockdevOptionsNfs',
4262 # @BlockdevCreateOptionsParallels:
4264 # Driver specific image creation options for parallels.
4266 # @file: Node to create the image format on
4267 # @size: Size of the virtual disk in bytes
4268 # @cluster-size: Cluster size in bytes (default: 1 MB)
4272 { 'struct': 'BlockdevCreateOptionsParallels',
4273 'data': { 'file': 'BlockdevRef',
4275 '*cluster-size': 'size' } }
4278 # @BlockdevCreateOptionsQcow:
4280 # Driver specific image creation options for qcow.
4282 # @file: Node to create the image format on
4283 # @size: Size of the virtual disk in bytes
4284 # @backing-file: File name of the backing file if a backing file
4286 # @encrypt: Encryption options if the image should be encrypted
4290 { 'struct': 'BlockdevCreateOptionsQcow',
4291 'data': { 'file': 'BlockdevRef',
4293 '*backing-file': 'str',
4294 '*encrypt': 'QCryptoBlockCreateOptions' } }
4297 # @BlockdevQcow2Version:
4299 # @v2: The original QCOW2 format as introduced in qemu 0.10 (version 2)
4300 # @v3: The extended QCOW2 format as introduced in qemu 1.1 (version 3)
4304 { 'enum': 'BlockdevQcow2Version',
4305 'data': [ 'v2', 'v3' ] }
4309 # @Qcow2CompressionType:
4311 # Compression type used in qcow2 image file
4313 # @zlib: zlib compression, see <http://zlib.net/>
4314 # @zstd: zstd compression, see <http://github.com/facebook/zstd>
4318 { 'enum': 'Qcow2CompressionType',
4319 'data': [ 'zlib', { 'name': 'zstd', 'if': 'defined(CONFIG_ZSTD)' } ] }
4322 # @BlockdevCreateOptionsQcow2:
4324 # Driver specific image creation options for qcow2.
4326 # @file: Node to create the image format on
4327 # @data-file: Node to use as an external data file in which all guest
4328 # data is stored so that only metadata remains in the qcow2
4330 # @data-file-raw: True if the external data file must stay valid as a
4331 # standalone (read-only) raw image without looking at qcow2
4332 # metadata (default: false; since: 4.0)
4333 # @extended-l2: True to make the image have extended L2 entries
4334 # (default: false; since 5.2)
4335 # @size: Size of the virtual disk in bytes
4336 # @version: Compatibility level (default: v3)
4337 # @backing-file: File name of the backing file if a backing file
4339 # @backing-fmt: Name of the block driver to use for the backing file
4340 # @encrypt: Encryption options if the image should be encrypted
4341 # @cluster-size: qcow2 cluster size in bytes (default: 65536)
4342 # @preallocation: Preallocation mode for the new image (default: off;
4343 # allowed values: off, falloc, full, metadata)
4344 # @lazy-refcounts: True if refcounts may be updated lazily (default: off)
4345 # @refcount-bits: Width of reference counts in bits (default: 16)
4346 # @compression-type: The image cluster compression method
4347 # (default: zlib, since 5.1)
4351 { 'struct': 'BlockdevCreateOptionsQcow2',
4352 'data': { 'file': 'BlockdevRef',
4353 '*data-file': 'BlockdevRef',
4354 '*data-file-raw': 'bool',
4355 '*extended-l2': 'bool',
4357 '*version': 'BlockdevQcow2Version',
4358 '*backing-file': 'str',
4359 '*backing-fmt': 'BlockdevDriver',
4360 '*encrypt': 'QCryptoBlockCreateOptions',
4361 '*cluster-size': 'size',
4362 '*preallocation': 'PreallocMode',
4363 '*lazy-refcounts': 'bool',
4364 '*refcount-bits': 'int',
4365 '*compression-type':'Qcow2CompressionType' } }
4368 # @BlockdevCreateOptionsQed:
4370 # Driver specific image creation options for qed.
4372 # @file: Node to create the image format on
4373 # @size: Size of the virtual disk in bytes
4374 # @backing-file: File name of the backing file if a backing file
4376 # @backing-fmt: Name of the block driver to use for the backing file
4377 # @cluster-size: Cluster size in bytes (default: 65536)
4378 # @table-size: L1/L2 table size (in clusters)
4382 { 'struct': 'BlockdevCreateOptionsQed',
4383 'data': { 'file': 'BlockdevRef',
4385 '*backing-file': 'str',
4386 '*backing-fmt': 'BlockdevDriver',
4387 '*cluster-size': 'size',
4388 '*table-size': 'int' } }
4391 # @BlockdevCreateOptionsRbd:
4393 # Driver specific image creation options for rbd/Ceph.
4395 # @location: Where to store the new image file. This location cannot
4396 # point to a snapshot.
4397 # @size: Size of the virtual disk in bytes
4398 # @cluster-size: RBD object size
4402 { 'struct': 'BlockdevCreateOptionsRbd',
4403 'data': { 'location': 'BlockdevOptionsRbd',
4405 '*cluster-size' : 'size' } }
4408 # @BlockdevVmdkSubformat:
4410 # Subformat options for VMDK images
4412 # @monolithicSparse: Single file image with sparse cluster allocation
4414 # @monolithicFlat: Single flat data image and a descriptor file
4416 # @twoGbMaxExtentSparse: Data is split into 2GB (per virtual LBA) sparse extent
4417 # files, in addition to a descriptor file
4419 # @twoGbMaxExtentFlat: Data is split into 2GB (per virtual LBA) flat extent
4420 # files, in addition to a descriptor file
4422 # @streamOptimized: Single file image sparse cluster allocation, optimized
4423 # for streaming over network.
4427 { 'enum': 'BlockdevVmdkSubformat',
4428 'data': [ 'monolithicSparse', 'monolithicFlat', 'twoGbMaxExtentSparse',
4429 'twoGbMaxExtentFlat', 'streamOptimized'] }
4432 # @BlockdevVmdkAdapterType:
4434 # Adapter type info for VMDK images
4438 { 'enum': 'BlockdevVmdkAdapterType',
4439 'data': [ 'ide', 'buslogic', 'lsilogic', 'legacyESX'] }
4442 # @BlockdevCreateOptionsVmdk:
4444 # Driver specific image creation options for VMDK.
4446 # @file: Where to store the new image file. This refers to the image
4447 # file for monolithcSparse and streamOptimized format, or the
4448 # descriptor file for other formats.
4449 # @size: Size of the virtual disk in bytes
4450 # @extents: Where to store the data extents. Required for monolithcFlat,
4451 # twoGbMaxExtentSparse and twoGbMaxExtentFlat formats. For
4452 # monolithicFlat, only one entry is required; for
4453 # twoGbMaxExtent* formats, the number of entries required is
4454 # calculated as extent_number = virtual_size / 2GB. Providing
4455 # more extents than will be used is an error.
4456 # @subformat: The subformat of the VMDK image. Default: "monolithicSparse".
4457 # @backing-file: The path of backing file. Default: no backing file is used.
4458 # @adapter-type: The adapter type used to fill in the descriptor. Default: ide.
4459 # @hwversion: Hardware version. The meaningful options are "4" or "6".
4461 # @zeroed-grain: Whether to enable zeroed-grain feature for sparse subformats.
4466 { 'struct': 'BlockdevCreateOptionsVmdk',
4467 'data': { 'file': 'BlockdevRef',
4469 '*extents': ['BlockdevRef'],
4470 '*subformat': 'BlockdevVmdkSubformat',
4471 '*backing-file': 'str',
4472 '*adapter-type': 'BlockdevVmdkAdapterType',
4473 '*hwversion': 'str',
4474 '*zeroed-grain': 'bool' } }
4478 # @BlockdevCreateOptionsSsh:
4480 # Driver specific image creation options for SSH.
4482 # @location: Where to store the new image file
4483 # @size: Size of the virtual disk in bytes
4487 { 'struct': 'BlockdevCreateOptionsSsh',
4488 'data': { 'location': 'BlockdevOptionsSsh',
4492 # @BlockdevCreateOptionsVdi:
4494 # Driver specific image creation options for VDI.
4496 # @file: Node to create the image format on
4497 # @size: Size of the virtual disk in bytes
4498 # @preallocation: Preallocation mode for the new image (default: off;
4499 # allowed values: off, metadata)
4503 { 'struct': 'BlockdevCreateOptionsVdi',
4504 'data': { 'file': 'BlockdevRef',
4506 '*preallocation': 'PreallocMode' } }
4509 # @BlockdevVhdxSubformat:
4511 # @dynamic: Growing image file
4512 # @fixed: Preallocated fixed-size image file
4516 { 'enum': 'BlockdevVhdxSubformat',
4517 'data': [ 'dynamic', 'fixed' ] }
4520 # @BlockdevCreateOptionsVhdx:
4522 # Driver specific image creation options for vhdx.
4524 # @file: Node to create the image format on
4525 # @size: Size of the virtual disk in bytes
4526 # @log-size: Log size in bytes, must be a multiple of 1 MB
4528 # @block-size: Block size in bytes, must be a multiple of 1 MB and not
4529 # larger than 256 MB (default: automatically choose a block
4530 # size depending on the image size)
4531 # @subformat: vhdx subformat (default: dynamic)
4532 # @block-state-zero: Force use of payload blocks of type 'ZERO'. Non-standard,
4533 # but default. Do not set to 'off' when using 'qemu-img
4534 # convert' with subformat=dynamic.
4538 { 'struct': 'BlockdevCreateOptionsVhdx',
4539 'data': { 'file': 'BlockdevRef',
4541 '*log-size': 'size',
4542 '*block-size': 'size',
4543 '*subformat': 'BlockdevVhdxSubformat',
4544 '*block-state-zero': 'bool' } }
4547 # @BlockdevVpcSubformat:
4549 # @dynamic: Growing image file
4550 # @fixed: Preallocated fixed-size image file
4554 { 'enum': 'BlockdevVpcSubformat',
4555 'data': [ 'dynamic', 'fixed' ] }
4558 # @BlockdevCreateOptionsVpc:
4560 # Driver specific image creation options for vpc (VHD).
4562 # @file: Node to create the image format on
4563 # @size: Size of the virtual disk in bytes
4564 # @subformat: vhdx subformat (default: dynamic)
4565 # @force-size: Force use of the exact byte size instead of rounding to the
4566 # next size that can be represented in CHS geometry
4571 { 'struct': 'BlockdevCreateOptionsVpc',
4572 'data': { 'file': 'BlockdevRef',
4574 '*subformat': 'BlockdevVpcSubformat',
4575 '*force-size': 'bool' } }
4578 # @BlockdevCreateOptions:
4580 # Options for creating an image format on a given node.
4582 # @driver: block driver to create the image format
4586 { 'union': 'BlockdevCreateOptions',
4588 'driver': 'BlockdevDriver' },
4589 'discriminator': 'driver',
4591 'file': 'BlockdevCreateOptionsFile',
4592 'gluster': 'BlockdevCreateOptionsGluster',
4593 'luks': 'BlockdevCreateOptionsLUKS',
4594 'nfs': 'BlockdevCreateOptionsNfs',
4595 'parallels': 'BlockdevCreateOptionsParallels',
4596 'qcow': 'BlockdevCreateOptionsQcow',
4597 'qcow2': 'BlockdevCreateOptionsQcow2',
4598 'qed': 'BlockdevCreateOptionsQed',
4599 'rbd': 'BlockdevCreateOptionsRbd',
4600 'ssh': 'BlockdevCreateOptionsSsh',
4601 'vdi': 'BlockdevCreateOptionsVdi',
4602 'vhdx': 'BlockdevCreateOptionsVhdx',
4603 'vmdk': 'BlockdevCreateOptionsVmdk',
4604 'vpc': 'BlockdevCreateOptionsVpc'
4610 # Starts a job to create an image format on a given node. The job is
4611 # automatically finalized, but a manual job-dismiss is required.
4613 # @job-id: Identifier for the newly created job.
4615 # @options: Options for the image creation.
4619 { 'command': 'blockdev-create',
4620 'data': { 'job-id': 'str',
4621 'options': 'BlockdevCreateOptions' } }
4624 # @BlockdevAmendOptionsLUKS:
4626 # Driver specific image amend options for LUKS.
4630 { 'struct': 'BlockdevAmendOptionsLUKS',
4631 'base': 'QCryptoBlockAmendOptionsLUKS',
4636 # @BlockdevAmendOptionsQcow2:
4638 # Driver specific image amend options for qcow2.
4639 # For now, only encryption options can be amended
4641 # @encrypt Encryption options to be amended
4645 { 'struct': 'BlockdevAmendOptionsQcow2',
4646 'data': { '*encrypt': 'QCryptoBlockAmendOptions' } }
4649 # @BlockdevAmendOptions:
4651 # Options for amending an image format
4653 # @driver: Block driver of the node to amend.
4657 { 'union': 'BlockdevAmendOptions',
4659 'driver': 'BlockdevDriver' },
4660 'discriminator': 'driver',
4662 'luks': 'BlockdevAmendOptionsLUKS',
4663 'qcow2': 'BlockdevAmendOptionsQcow2' } }
4666 # @x-blockdev-amend:
4668 # Starts a job to amend format specific options of an existing open block device
4669 # The job is automatically finalized, but a manual job-dismiss is required.
4671 # @job-id: Identifier for the newly created job.
4673 # @node-name: Name of the block node to work on
4675 # @options: Options (driver specific)
4677 # @force: Allow unsafe operations, format specific
4678 # For luks that allows erase of the last active keyslot
4679 # (permanent loss of data),
4680 # and replacement of an active keyslot
4681 # (possible loss of data if IO error happens)
4685 { 'command': 'x-blockdev-amend',
4686 'data': { 'job-id': 'str',
4688 'options': 'BlockdevAmendOptions',
4689 '*force': 'bool' } }
4692 # @BlockErrorAction:
4694 # An enumeration of action that has been taken when a DISK I/O occurs
4696 # @ignore: error has been ignored
4698 # @report: error has been reported to the device
4700 # @stop: error caused VM to be stopped
4704 { 'enum': 'BlockErrorAction',
4705 'data': [ 'ignore', 'report', 'stop' ] }
4709 # @BLOCK_IMAGE_CORRUPTED:
4711 # Emitted when a disk image is being marked corrupt. The image can be
4712 # identified by its device or node name. The 'device' field is always
4713 # present for compatibility reasons, but it can be empty ("") if the
4714 # image does not have a device name associated.
4716 # @device: device name. This is always present for compatibility
4717 # reasons, but it can be empty ("") if the image does not
4718 # have a device name associated.
4720 # @node-name: node name (Since: 2.4)
4722 # @msg: informative message for human consumption, such as the kind of
4723 # corruption being detected. It should not be parsed by machine as it is
4724 # not guaranteed to be stable
4726 # @offset: if the corruption resulted from an image access, this is
4727 # the host's access offset into the image
4729 # @size: if the corruption resulted from an image access, this is
4732 # @fatal: if set, the image is marked corrupt and therefore unusable after this
4733 # event and must be repaired (Since 2.2; before, every
4734 # BLOCK_IMAGE_CORRUPTED event was fatal)
4736 # Note: If action is "stop", a STOP event will eventually follow the
4737 # BLOCK_IO_ERROR event.
4741 # <- { "event": "BLOCK_IMAGE_CORRUPTED",
4742 # "data": { "device": "ide0-hd0", "node-name": "node0",
4743 # "msg": "Prevented active L1 table overwrite", "offset": 196608,
4745 # "timestamp": { "seconds": 1378126126, "microseconds": 966463 } }
4749 { 'event': 'BLOCK_IMAGE_CORRUPTED',
4750 'data': { 'device' : 'str',
4751 '*node-name' : 'str',
4755 'fatal' : 'bool' } }
4760 # Emitted when a disk I/O error occurs
4762 # @device: device name. This is always present for compatibility
4763 # reasons, but it can be empty ("") if the image does not
4764 # have a device name associated.
4766 # @node-name: node name. Note that errors may be reported for the root node
4767 # that is directly attached to a guest device rather than for the
4768 # node where the error occurred. The node name is not present if
4769 # the drive is empty. (Since: 2.8)
4771 # @operation: I/O operation
4773 # @action: action that has been taken
4775 # @nospace: true if I/O error was caused due to a no-space
4776 # condition. This key is only present if query-block's
4777 # io-status is present, please see query-block documentation
4778 # for more information (since: 2.2)
4780 # @reason: human readable string describing the error cause.
4781 # (This field is a debugging aid for humans, it should not
4782 # be parsed by applications) (since: 2.2)
4784 # Note: If action is "stop", a STOP event will eventually follow the
4785 # BLOCK_IO_ERROR event
4791 # <- { "event": "BLOCK_IO_ERROR",
4792 # "data": { "device": "ide0-hd1",
4793 # "node-name": "#block212",
4794 # "operation": "write",
4795 # "action": "stop" },
4796 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4799 { 'event': 'BLOCK_IO_ERROR',
4800 'data': { 'device': 'str', '*node-name': 'str',
4801 'operation': 'IoOperationType',
4802 'action': 'BlockErrorAction', '*nospace': 'bool',
4806 # @BLOCK_JOB_COMPLETED:
4808 # Emitted when a block job has completed
4812 # @device: The job identifier. Originally the device name but other
4813 # values are allowed since QEMU 2.7
4815 # @len: maximum progress value
4817 # @offset: current progress value. On success this is equal to len.
4818 # On failure this is less than len
4820 # @speed: rate limit, bytes per second
4822 # @error: error message. Only present on failure. This field
4823 # contains a human-readable error message. There are no semantics
4824 # other than that streaming has failed and clients should not try to
4825 # interpret the error string
4831 # <- { "event": "BLOCK_JOB_COMPLETED",
4832 # "data": { "type": "stream", "device": "virtio-disk0",
4833 # "len": 10737418240, "offset": 10737418240,
4835 # "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
4838 { 'event': 'BLOCK_JOB_COMPLETED',
4839 'data': { 'type' : 'JobType',
4847 # @BLOCK_JOB_CANCELLED:
4849 # Emitted when a block job has been cancelled
4853 # @device: The job identifier. Originally the device name but other
4854 # values are allowed since QEMU 2.7
4856 # @len: maximum progress value
4858 # @offset: current progress value. On success this is equal to len.
4859 # On failure this is less than len
4861 # @speed: rate limit, bytes per second
4867 # <- { "event": "BLOCK_JOB_CANCELLED",
4868 # "data": { "type": "stream", "device": "virtio-disk0",
4869 # "len": 10737418240, "offset": 134217728,
4871 # "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
4874 { 'event': 'BLOCK_JOB_CANCELLED',
4875 'data': { 'type' : 'JobType',
4884 # Emitted when a block job encounters an error
4886 # @device: The job identifier. Originally the device name but other
4887 # values are allowed since QEMU 2.7
4889 # @operation: I/O operation
4891 # @action: action that has been taken
4897 # <- { "event": "BLOCK_JOB_ERROR",
4898 # "data": { "device": "ide0-hd1",
4899 # "operation": "write",
4900 # "action": "stop" },
4901 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4904 { 'event': 'BLOCK_JOB_ERROR',
4905 'data': { 'device' : 'str',
4906 'operation': 'IoOperationType',
4907 'action' : 'BlockErrorAction' } }
4912 # Emitted when a block job is ready to complete
4916 # @device: The job identifier. Originally the device name but other
4917 # values are allowed since QEMU 2.7
4919 # @len: maximum progress value
4921 # @offset: current progress value. On success this is equal to len.
4922 # On failure this is less than len
4924 # @speed: rate limit, bytes per second
4926 # Note: The "ready to complete" status is always reset by a @BLOCK_JOB_ERROR
4933 # <- { "event": "BLOCK_JOB_READY",
4934 # "data": { "device": "drive0", "type": "mirror", "speed": 0,
4935 # "len": 2097152, "offset": 2097152 }
4936 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4939 { 'event': 'BLOCK_JOB_READY',
4940 'data': { 'type' : 'JobType',
4947 # @BLOCK_JOB_PENDING:
4949 # Emitted when a block job is awaiting explicit authorization to finalize graph
4950 # changes via @block-job-finalize. If this job is part of a transaction, it will
4951 # not emit this event until the transaction has converged first.
4955 # @id: The job identifier.
4961 # <- { "event": "BLOCK_JOB_WAITING",
4962 # "data": { "device": "drive0", "type": "mirror" },
4963 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4966 { 'event': 'BLOCK_JOB_PENDING',
4967 'data': { 'type' : 'JobType',
4973 # Preallocation mode of QEMU image file
4975 # @off: no preallocation
4976 # @metadata: preallocate only for metadata
4977 # @falloc: like @full preallocation but allocate disk space by
4978 # posix_fallocate() rather than writing data.
4979 # @full: preallocate all data by writing it to the device to ensure
4980 # disk space is really available. This data may or may not be
4981 # zero, depending on the image format and storage.
4982 # @full preallocation also sets up metadata correctly.
4986 { 'enum': 'PreallocMode',
4987 'data': [ 'off', 'metadata', 'falloc', 'full' ] }
4990 # @BLOCK_WRITE_THRESHOLD:
4992 # Emitted when writes on block device reaches or exceeds the
4993 # configured write threshold. For thin-provisioned devices, this
4994 # means the device should be extended to avoid pausing for
4996 # The event is one shot. Once triggered, it needs to be
4997 # re-registered with another block-set-write-threshold command.
4999 # @node-name: graph node name on which the threshold was exceeded.
5001 # @amount-exceeded: amount of data which exceeded the threshold, in bytes.
5003 # @write-threshold: last configured threshold, in bytes.
5007 { 'event': 'BLOCK_WRITE_THRESHOLD',
5008 'data': { 'node-name': 'str',
5009 'amount-exceeded': 'uint64',
5010 'write-threshold': 'uint64' } }
5013 # @block-set-write-threshold:
5015 # Change the write threshold for a block drive. An event will be
5016 # delivered if a write to this block drive crosses the configured
5017 # threshold. The threshold is an offset, thus must be
5018 # non-negative. Default is no write threshold. Setting the threshold
5019 # to zero disables it.
5021 # This is useful to transparently resize thin-provisioned drives without
5022 # the guest OS noticing.
5024 # @node-name: graph node name on which the threshold must be set.
5026 # @write-threshold: configured threshold for the block device, bytes.
5027 # Use 0 to disable the threshold.
5033 # -> { "execute": "block-set-write-threshold",
5034 # "arguments": { "node-name": "mydev",
5035 # "write-threshold": 17179869184 } }
5036 # <- { "return": {} }
5039 { 'command': 'block-set-write-threshold',
5040 'data': { 'node-name': 'str', 'write-threshold': 'uint64' } }
5043 # @x-blockdev-change:
5045 # Dynamically reconfigure the block driver state graph. It can be used
5046 # to add, remove, insert or replace a graph node. Currently only the
5047 # Quorum driver implements this feature to add or remove its child. This
5048 # is useful to fix a broken quorum child.
5050 # If @node is specified, it will be inserted under @parent. @child
5051 # may not be specified in this case. If both @parent and @child are
5052 # specified but @node is not, @child will be detached from @parent.
5054 # @parent: the id or name of the parent node.
5056 # @child: the name of a child under the given parent node.
5058 # @node: the name of the node that will be added.
5060 # Note: this command is experimental, and its API is not stable. It
5061 # does not support all kinds of operations, all kinds of children, nor
5062 # all block drivers.
5064 # FIXME Removing children from a quorum node means introducing gaps in the
5065 # child indices. This cannot be represented in the 'children' list of
5066 # BlockdevOptionsQuorum, as returned by .bdrv_refresh_filename().
5068 # Warning: The data in a new quorum child MUST be consistent with that of
5069 # the rest of the array.
5075 # 1. Add a new node to a quorum
5076 # -> { "execute": "blockdev-add",
5079 # "node-name": "new_node",
5080 # "file": { "driver": "file",
5081 # "filename": "test.raw" } } }
5082 # <- { "return": {} }
5083 # -> { "execute": "x-blockdev-change",
5084 # "arguments": { "parent": "disk1",
5085 # "node": "new_node" } }
5086 # <- { "return": {} }
5088 # 2. Delete a quorum's node
5089 # -> { "execute": "x-blockdev-change",
5090 # "arguments": { "parent": "disk1",
5091 # "child": "children.1" } }
5092 # <- { "return": {} }
5095 { 'command': 'x-blockdev-change',
5096 'data' : { 'parent': 'str',
5101 # @x-blockdev-set-iothread:
5103 # Move @node and its children into the @iothread. If @iothread is null then
5104 # move @node and its children into the main loop.
5106 # The node must not be attached to a BlockBackend.
5108 # @node-name: the name of the block driver node
5110 # @iothread: the name of the IOThread object or null for the main loop
5112 # @force: true if the node and its children should be moved when a BlockBackend
5113 # is already attached
5115 # Note: this command is experimental and intended for test cases that need
5116 # control over IOThreads only.
5122 # 1. Move a node into an IOThread
5123 # -> { "execute": "x-blockdev-set-iothread",
5124 # "arguments": { "node-name": "disk1",
5125 # "iothread": "iothread0" } }
5126 # <- { "return": {} }
5128 # 2. Move a node into the main loop
5129 # -> { "execute": "x-blockdev-set-iothread",
5130 # "arguments": { "node-name": "disk1",
5131 # "iothread": null } }
5132 # <- { "return": {} }
5135 { 'command': 'x-blockdev-set-iothread',
5136 'data' : { 'node-name': 'str',
5137 'iothread': 'StrOrNull',
5138 '*force': 'bool' } }
5143 # An enumeration of the quorum operation types
5145 # @read: read operation
5147 # @write: write operation
5149 # @flush: flush operation
5153 { 'enum': 'QuorumOpType',
5154 'data': [ 'read', 'write', 'flush' ] }
5159 # Emitted by the Quorum block driver if it fails to establish a quorum
5161 # @reference: device name if defined else node name
5163 # @sector-num: number of the first sector of the failed read operation
5165 # @sectors-count: failed read operation sector count
5167 # Note: This event is rate-limited.
5173 # <- { "event": "QUORUM_FAILURE",
5174 # "data": { "reference": "usr1", "sector-num": 345435, "sectors-count": 5 },
5175 # "timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
5178 { 'event': 'QUORUM_FAILURE',
5179 'data': { 'reference': 'str', 'sector-num': 'int', 'sectors-count': 'int' } }
5182 # @QUORUM_REPORT_BAD:
5184 # Emitted to report a corruption of a Quorum file
5186 # @type: quorum operation type (Since 2.6)
5188 # @error: error message. Only present on failure. This field
5189 # contains a human-readable error message. There are no semantics other
5190 # than that the block layer reported an error and clients should not
5191 # try to interpret the error string.
5193 # @node-name: the graph node name of the block driver state
5195 # @sector-num: number of the first sector of the failed read operation
5197 # @sectors-count: failed read operation sector count
5199 # Note: This event is rate-limited.
5207 # { "event": "QUORUM_REPORT_BAD",
5208 # "data": { "node-name": "node0", "sector-num": 345435, "sectors-count": 5,
5210 # "timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
5212 # 2. Flush operation
5214 # { "event": "QUORUM_REPORT_BAD",
5215 # "data": { "node-name": "node0", "sector-num": 0, "sectors-count": 2097120,
5216 # "type": "flush", "error": "Broken pipe" },
5217 # "timestamp": { "seconds": 1456406829, "microseconds": 291763 } }
5220 { 'event': 'QUORUM_REPORT_BAD',
5221 'data': { 'type': 'QuorumOpType', '*error': 'str', 'node-name': 'str',
5222 'sector-num': 'int', 'sectors-count': 'int' } }
5225 # @BlockdevSnapshotInternal:
5227 # @device: the device name or node-name of a root node to generate the snapshot
5230 # @name: the name of the internal snapshot to be created
5232 # Notes: In transaction, if @name is empty, or any snapshot matching @name
5233 # exists, the operation will fail. Only some image formats support it,
5234 # for example, qcow2, and rbd.
5238 { 'struct': 'BlockdevSnapshotInternal',
5239 'data': { 'device': 'str', 'name': 'str' } }
5242 # @blockdev-snapshot-internal-sync:
5244 # Synchronously take an internal snapshot of a block device, when the
5245 # format of the image used supports it. If the name is an empty
5246 # string, or a snapshot with name already exists, the operation will
5249 # For the arguments, see the documentation of BlockdevSnapshotInternal.
5251 # Returns: - nothing on success
5252 # - If @device is not a valid block device, GenericError
5253 # - If any snapshot matching @name exists, or @name is empty,
5255 # - If the format of the image used does not support it,
5256 # BlockFormatFeatureNotSupported
5262 # -> { "execute": "blockdev-snapshot-internal-sync",
5263 # "arguments": { "device": "ide-hd0",
5264 # "name": "snapshot0" }
5266 # <- { "return": {} }
5269 { 'command': 'blockdev-snapshot-internal-sync',
5270 'data': 'BlockdevSnapshotInternal' }
5273 # @blockdev-snapshot-delete-internal-sync:
5275 # Synchronously delete an internal snapshot of a block device, when the format
5276 # of the image used support it. The snapshot is identified by name or id or
5277 # both. One of the name or id is required. Return SnapshotInfo for the
5278 # successfully deleted snapshot.
5280 # @device: the device name or node-name of a root node to delete the snapshot
5283 # @id: optional the snapshot's ID to be deleted
5285 # @name: optional the snapshot's name to be deleted
5287 # Returns: - SnapshotInfo on success
5288 # - If @device is not a valid block device, GenericError
5289 # - If snapshot not found, GenericError
5290 # - If the format of the image used does not support it,
5291 # BlockFormatFeatureNotSupported
5292 # - If @id and @name are both not specified, GenericError
5298 # -> { "execute": "blockdev-snapshot-delete-internal-sync",
5299 # "arguments": { "device": "ide-hd0",
5300 # "name": "snapshot0" }
5304 # "name": "snapshot0",
5305 # "vm-state-size": 0,
5306 # "date-sec": 1000012,
5308 # "vm-clock-sec": 100,
5309 # "vm-clock-nsec": 20,
5315 { 'command': 'blockdev-snapshot-delete-internal-sync',
5316 'data': { 'device': 'str', '*id': 'str', '*name': 'str'},
5317 'returns': 'SnapshotInfo' }