3 # QAPI block core definitions (vm unrelated)
5 # QAPI common definitions
6 { 'include': 'common.json' }
11 # @id: unique snapshot id
13 # @name: user chosen name
15 # @vm-state-size: size of the VM state
17 # @date-sec: UTC date of the snapshot in seconds
19 # @date-nsec: fractional part in nano seconds to be used with date-sec
21 # @vm-clock-sec: VM clock relative to boot in seconds
23 # @vm-clock-nsec: fractional part in nano seconds to be used with vm-clock-sec
29 { 'struct': 'SnapshotInfo',
30 'data': { 'id': 'str', 'name': 'str', 'vm-state-size': 'int',
31 'date-sec': 'int', 'date-nsec': 'int',
32 'vm-clock-sec': 'int', 'vm-clock-nsec': 'int' } }
35 # @ImageInfoSpecificQCow2:
37 # @compat: compatibility level
39 # @lazy-refcounts: #optional on or off; only valid for compat >= 1.1
41 # @corrupt: #optional true if the image has been marked corrupt; only valid for
42 # compat >= 1.1 (since 2.2)
44 # @refcount-bits: width of a refcount entry in bits (since 2.3)
48 { 'struct': 'ImageInfoSpecificQCow2',
51 '*lazy-refcounts': 'bool',
53 'refcount-bits': 'int'
57 # @ImageInfoSpecificVmdk:
59 # @create-type: The create type of VMDK image
61 # @cid: Content id of image
63 # @parent-cid: Parent VMDK image's cid
65 # @extents: List of extent files
69 { 'struct': 'ImageInfoSpecificVmdk',
74 'extents': ['ImageInfo']
80 # A discriminated record of image format specific information structures.
85 { 'union': 'ImageInfoSpecific',
87 'qcow2': 'ImageInfoSpecificQCow2',
88 'vmdk': 'ImageInfoSpecificVmdk',
89 # If we need to add block driver specific parameters for
90 # LUKS in future, then we'll subclass QCryptoBlockInfoLUKS
91 # to define a ImageInfoSpecificLUKS
92 'luks': 'QCryptoBlockInfoLUKS'
98 # Information about a QEMU image file
100 # @filename: name of the image file
102 # @format: format of the image file
104 # @virtual-size: maximum capacity in bytes of the image
106 # @actual-size: #optional actual size on disk in bytes of the image
108 # @dirty-flag: #optional true if image is not cleanly closed
110 # @cluster-size: #optional size of a cluster in bytes
112 # @encrypted: #optional true if the image is encrypted
114 # @compressed: #optional true if the image is compressed (Since 1.7)
116 # @backing-filename: #optional name of the backing file
118 # @full-backing-filename: #optional full path of the backing file
120 # @backing-filename-format: #optional the format of the backing file
122 # @snapshots: #optional list of VM snapshots
124 # @backing-image: #optional info of the backing image (since 1.6)
126 # @format-specific: #optional structure supplying additional format-specific
127 # information (since 1.7)
133 { 'struct': 'ImageInfo',
134 'data': {'filename': 'str', 'format': 'str', '*dirty-flag': 'bool',
135 '*actual-size': 'int', 'virtual-size': 'int',
136 '*cluster-size': 'int', '*encrypted': 'bool', '*compressed': 'bool',
137 '*backing-filename': 'str', '*full-backing-filename': 'str',
138 '*backing-filename-format': 'str', '*snapshots': ['SnapshotInfo'],
139 '*backing-image': 'ImageInfo',
140 '*format-specific': 'ImageInfoSpecific' } }
145 # Information about a QEMU image file check
147 # @filename: name of the image file checked
149 # @format: format of the image file checked
151 # @check-errors: number of unexpected errors occurred during check
153 # @image-end-offset: #optional offset (in bytes) where the image ends, this
154 # field is present if the driver for the image format
157 # @corruptions: #optional number of corruptions found during the check if any
159 # @leaks: #optional number of leaks found during the check if any
161 # @corruptions-fixed: #optional number of corruptions fixed during the check
164 # @leaks-fixed: #optional number of leaks fixed during the check if any
166 # @total-clusters: #optional total number of clusters, this field is present
167 # if the driver for the image format supports it
169 # @allocated-clusters: #optional total number of allocated clusters, this
170 # field is present if the driver for the image format
173 # @fragmented-clusters: #optional total number of fragmented clusters, this
174 # field is present if the driver for the image format
177 # @compressed-clusters: #optional total number of compressed clusters, this
178 # field is present if the driver for the image format
185 { 'struct': 'ImageCheck',
186 'data': {'filename': 'str', 'format': 'str', 'check-errors': 'int',
187 '*image-end-offset': 'int', '*corruptions': 'int', '*leaks': 'int',
188 '*corruptions-fixed': 'int', '*leaks-fixed': 'int',
189 '*total-clusters': 'int', '*allocated-clusters': 'int',
190 '*fragmented-clusters': 'int', '*compressed-clusters': 'int' } }
195 # Mapping information from a virtual block range to a host file range
197 # @start: the start byte of the mapped virtual range
199 # @length: the number of bytes of the mapped virtual range
201 # @data: whether the mapped range has data
203 # @zero: whether the virtual blocks are zeroed
205 # @depth: the depth of the mapping
207 # @offset: #optional the offset in file that the virtual sectors are mapped to
209 # @filename: #optional filename that is referred to by @offset
214 { 'struct': 'MapEntry',
215 'data': {'start': 'int', 'length': 'int', 'data': 'bool',
216 'zero': 'bool', 'depth': 'int', '*offset': 'int',
217 '*filename': 'str' } }
222 # Cache mode information for a block device
224 # @writeback: true if writeback mode is enabled
225 # @direct: true if the host page cache is bypassed (O_DIRECT)
226 # @no-flush: true if flush requests are ignored for the device
230 { 'struct': 'BlockdevCacheInfo',
231 'data': { 'writeback': 'bool',
233 'no-flush': 'bool' } }
238 # Information about the backing device for a block device.
240 # @file: the filename of the backing device
242 # @node-name: #optional the name of the block driver node (Since 2.0)
244 # @ro: true if the backing device was open read-only
246 # @drv: the name of the block format used to open the backing device. As of
247 # 0.14.0 this can be: 'blkdebug', 'bochs', 'cloop', 'cow', 'dmg',
248 # 'file', 'file', 'ftp', 'ftps', 'host_cdrom', 'host_device',
249 # 'http', 'https', 'luks', 'nbd', 'parallels', 'qcow',
250 # 'qcow2', 'raw', 'tftp', 'vdi', 'vmdk', 'vpc', 'vvfat'
251 # 2.2: 'archipelago' added, 'cow' dropped
252 # 2.3: 'host_floppy' deprecated
253 # 2.5: 'host_floppy' dropped
255 # 2.8: 'replication' added
257 # @backing_file: #optional the name of the backing file (for copy-on-write)
259 # @backing_file_depth: number of files in the backing file chain (since: 1.2)
261 # @encrypted: true if the backing device is encrypted
263 # @encryption_key_missing: true if the backing device is encrypted but an
264 # valid encryption key is missing
266 # @detect_zeroes: detect and optimize zero writes (Since 2.1)
268 # @bps: total throughput limit in bytes per second is specified
270 # @bps_rd: read throughput limit in bytes per second is specified
272 # @bps_wr: write throughput limit in bytes per second is specified
274 # @iops: total I/O operations per second is specified
276 # @iops_rd: read I/O operations per second is specified
278 # @iops_wr: write I/O operations per second is specified
280 # @image: the info of image used (since: 1.6)
282 # @bps_max: #optional total throughput limit during bursts,
283 # in bytes (Since 1.7)
285 # @bps_rd_max: #optional read throughput limit during bursts,
286 # in bytes (Since 1.7)
288 # @bps_wr_max: #optional write throughput limit during bursts,
289 # in bytes (Since 1.7)
291 # @iops_max: #optional total I/O operations per second during bursts,
292 # in bytes (Since 1.7)
294 # @iops_rd_max: #optional read I/O operations per second during bursts,
295 # in bytes (Since 1.7)
297 # @iops_wr_max: #optional write I/O operations per second during bursts,
298 # in bytes (Since 1.7)
300 # @bps_max_length: #optional maximum length of the @bps_max burst
301 # period, in seconds. (Since 2.6)
303 # @bps_rd_max_length: #optional maximum length of the @bps_rd_max
304 # burst period, in seconds. (Since 2.6)
306 # @bps_wr_max_length: #optional maximum length of the @bps_wr_max
307 # burst period, in seconds. (Since 2.6)
309 # @iops_max_length: #optional maximum length of the @iops burst
310 # period, in seconds. (Since 2.6)
312 # @iops_rd_max_length: #optional maximum length of the @iops_rd_max
313 # burst period, in seconds. (Since 2.6)
315 # @iops_wr_max_length: #optional maximum length of the @iops_wr_max
316 # burst period, in seconds. (Since 2.6)
318 # @iops_size: #optional an I/O size in bytes (Since 1.7)
320 # @group: #optional throttle group name (Since 2.4)
322 # @cache: the cache mode used for the block device (since: 2.3)
324 # @write_threshold: configured write threshold for the device.
325 # 0 if disabled. (Since 2.3)
330 { 'struct': 'BlockDeviceInfo',
331 'data': { 'file': 'str', '*node-name': 'str', 'ro': 'bool', 'drv': 'str',
332 '*backing_file': 'str', 'backing_file_depth': 'int',
333 'encrypted': 'bool', 'encryption_key_missing': 'bool',
334 'detect_zeroes': 'BlockdevDetectZeroesOptions',
335 'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
336 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
337 'image': 'ImageInfo',
338 '*bps_max': 'int', '*bps_rd_max': 'int',
339 '*bps_wr_max': 'int', '*iops_max': 'int',
340 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
341 '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
342 '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
343 '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
344 '*iops_size': 'int', '*group': 'str', 'cache': 'BlockdevCacheInfo',
345 'write_threshold': 'int' } }
348 # @BlockDeviceIoStatus:
350 # An enumeration of block device I/O status.
352 # @ok: The last I/O operation has succeeded
354 # @failed: The last I/O operation has failed
356 # @nospace: The last I/O operation has failed due to a no-space condition
360 { 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
363 # @BlockDeviceMapEntry:
365 # Entry in the metadata map of the device (returned by "qemu-img map")
367 # @start: Offset in the image of the first byte described by this entry
370 # @length: Length of the range described by this entry (in bytes)
372 # @depth: Number of layers (0 = top image, 1 = top image's backing file, etc.)
373 # before reaching one for which the range is allocated. The value is
374 # in the range 0 to the depth of the image chain - 1.
376 # @zero: the sectors in this range read as zeros
378 # @data: reading the image will actually read data from a file (in particular,
379 # if @offset is present this means that the sectors are not simply
380 # preallocated, but contain actual data in raw format)
382 # @offset: if present, the image file stores the data for this range in
383 # raw format at the given offset.
387 { 'struct': 'BlockDeviceMapEntry',
388 'data': { 'start': 'int', 'length': 'int', 'depth': 'int', 'zero': 'bool',
389 'data': 'bool', '*offset': 'int' } }
392 # @DirtyBitmapStatus:
394 # An enumeration of possible states that a dirty bitmap can report to the user.
396 # @frozen: The bitmap is currently in-use by a backup operation or block job,
399 # @disabled: The bitmap is currently in-use by an internal operation and is
400 # read-only. It can still be deleted.
402 # @active: The bitmap is actively monitoring for new writes, and can be cleared,
403 # deleted, or used for backup operations.
407 { 'enum': 'DirtyBitmapStatus',
408 'data': ['active', 'disabled', 'frozen'] }
413 # Block dirty bitmap information.
415 # @name: #optional the name of the dirty bitmap (Since 2.4)
417 # @count: number of dirty bytes according to the dirty bitmap
419 # @granularity: granularity of the dirty bitmap in bytes (since 1.4)
421 # @status: current status of the dirty bitmap (since 2.4)
425 { 'struct': 'BlockDirtyInfo',
426 'data': {'*name': 'str', 'count': 'int', 'granularity': 'uint32',
427 'status': 'DirtyBitmapStatus'} }
432 # Block device information. This structure describes a virtual device and
433 # the backing device associated with it.
435 # @device: The device name associated with the virtual device.
437 # @type: This field is returned only for compatibility reasons, it should
438 # not be used (always returns 'unknown')
440 # @removable: True if the device supports removable media.
442 # @locked: True if the guest has locked this device from having its media
445 # @tray_open: #optional True if the device's tray is open
446 # (only present if it has a tray)
448 # @dirty-bitmaps: #optional dirty bitmaps information (only present if the
449 # driver has one or more dirty bitmaps) (Since 2.0)
451 # @io-status: #optional @BlockDeviceIoStatus. Only present if the device
452 # supports it and the VM is configured to stop on errors
453 # (supported device models: virtio-blk, ide, scsi-disk)
455 # @inserted: #optional @BlockDeviceInfo describing the device if media is
460 { 'struct': 'BlockInfo',
461 'data': {'device': 'str', 'type': 'str', 'removable': 'bool',
462 'locked': 'bool', '*inserted': 'BlockDeviceInfo',
463 '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus',
464 '*dirty-bitmaps': ['BlockDirtyInfo'] } }
469 # Get a list of BlockInfo for all virtual block devices.
471 # Returns: a list of @BlockInfo describing each virtual block device
475 { 'command': 'query-block', 'returns': ['BlockInfo'] }
479 # @BlockDeviceTimedStats:
481 # Statistics of a block device during a given interval of time.
483 # @interval_length: Interval used for calculating the statistics,
486 # @min_rd_latency_ns: Minimum latency of read operations in the
487 # defined interval, in nanoseconds.
489 # @min_wr_latency_ns: Minimum latency of write operations in the
490 # defined interval, in nanoseconds.
492 # @min_flush_latency_ns: Minimum latency of flush operations in the
493 # defined interval, in nanoseconds.
495 # @max_rd_latency_ns: Maximum latency of read operations in the
496 # defined interval, in nanoseconds.
498 # @max_wr_latency_ns: Maximum latency of write operations in the
499 # defined interval, in nanoseconds.
501 # @max_flush_latency_ns: Maximum latency of flush operations in the
502 # defined interval, in nanoseconds.
504 # @avg_rd_latency_ns: Average latency of read operations in the
505 # defined interval, in nanoseconds.
507 # @avg_wr_latency_ns: Average latency of write operations in the
508 # defined interval, in nanoseconds.
510 # @avg_flush_latency_ns: Average latency of flush operations in the
511 # defined interval, in nanoseconds.
513 # @avg_rd_queue_depth: Average number of pending read operations
514 # in the defined interval.
516 # @avg_wr_queue_depth: Average number of pending write operations
517 # in the defined interval.
522 { 'struct': 'BlockDeviceTimedStats',
523 'data': { 'interval_length': 'int', 'min_rd_latency_ns': 'int',
524 'max_rd_latency_ns': 'int', 'avg_rd_latency_ns': 'int',
525 'min_wr_latency_ns': 'int', 'max_wr_latency_ns': 'int',
526 'avg_wr_latency_ns': 'int', 'min_flush_latency_ns': 'int',
527 'max_flush_latency_ns': 'int', 'avg_flush_latency_ns': 'int',
528 'avg_rd_queue_depth': 'number', 'avg_wr_queue_depth': 'number' } }
533 # Statistics of a virtual block device or a block backing device.
535 # @rd_bytes: The number of bytes read by the device.
537 # @wr_bytes: The number of bytes written by the device.
539 # @rd_operations: The number of read operations performed by the device.
541 # @wr_operations: The number of write operations performed by the device.
543 # @flush_operations: The number of cache flush operations performed by the
544 # device (since 0.15.0)
546 # @flush_total_time_ns: Total time spend on cache flushes in nano-seconds
549 # @wr_total_time_ns: Total time spend on writes in nano-seconds (since 0.15.0).
551 # @rd_total_time_ns: Total_time_spend on reads in nano-seconds (since 0.15.0).
553 # @wr_highest_offset: The offset after the greatest byte written to the
554 # device. The intended use of this information is for
555 # growable sparse files (like qcow2) that are used on top
556 # of a physical device.
558 # @rd_merged: Number of read requests that have been merged into another
559 # request (Since 2.3).
561 # @wr_merged: Number of write requests that have been merged into another
562 # request (Since 2.3).
564 # @idle_time_ns: #optional Time since the last I/O operation, in
565 # nanoseconds. If the field is absent it means that
566 # there haven't been any operations yet (Since 2.5).
568 # @failed_rd_operations: The number of failed read operations
569 # performed by the device (Since 2.5)
571 # @failed_wr_operations: The number of failed write operations
572 # performed by the device (Since 2.5)
574 # @failed_flush_operations: The number of failed flush operations
575 # performed by the device (Since 2.5)
577 # @invalid_rd_operations: The number of invalid read operations
578 # performed by the device (Since 2.5)
580 # @invalid_wr_operations: The number of invalid write operations
581 # performed by the device (Since 2.5)
583 # @invalid_flush_operations: The number of invalid flush operations
584 # performed by the device (Since 2.5)
586 # @account_invalid: Whether invalid operations are included in the
587 # last access statistics (Since 2.5)
589 # @account_failed: Whether failed operations are included in the
590 # latency and last access statistics (Since 2.5)
592 # @timed_stats: Statistics specific to the set of previously defined
593 # intervals of time (Since 2.5)
597 { 'struct': 'BlockDeviceStats',
598 'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'rd_operations': 'int',
599 'wr_operations': 'int', 'flush_operations': 'int',
600 'flush_total_time_ns': 'int', 'wr_total_time_ns': 'int',
601 'rd_total_time_ns': 'int', 'wr_highest_offset': 'int',
602 'rd_merged': 'int', 'wr_merged': 'int', '*idle_time_ns': 'int',
603 'failed_rd_operations': 'int', 'failed_wr_operations': 'int',
604 'failed_flush_operations': 'int', 'invalid_rd_operations': 'int',
605 'invalid_wr_operations': 'int', 'invalid_flush_operations': 'int',
606 'account_invalid': 'bool', 'account_failed': 'bool',
607 'timed_stats': ['BlockDeviceTimedStats'] } }
612 # Statistics of a virtual block device or a block backing device.
614 # @device: #optional If the stats are for a virtual block device, the name
615 # corresponding to the virtual block device.
617 # @node-name: #optional The node name of the device. (Since 2.3)
619 # @stats: A @BlockDeviceStats for the device.
621 # @parent: #optional This describes the file block device if it has one.
623 # @backing: #optional This describes the backing block device if it has one.
628 { 'struct': 'BlockStats',
629 'data': {'*device': 'str', '*node-name': 'str',
630 'stats': 'BlockDeviceStats',
631 '*parent': 'BlockStats',
632 '*backing': 'BlockStats'} }
637 # Query the @BlockStats for all virtual block devices.
639 # @query-nodes: #optional If true, the command will query all the block nodes
640 # that have a node name, in a list which will include "parent"
641 # information, but not "backing".
642 # If false or omitted, the behavior is as before - query all the
643 # device backends, recursively including their "parent" and
644 # "backing". (Since 2.3)
646 # Returns: A list of @BlockStats for each virtual block devices.
650 { 'command': 'query-blockstats',
651 'data': { '*query-nodes': 'bool' },
652 'returns': ['BlockStats'] }
657 # An enumeration of possible behaviors for errors on I/O operations.
658 # The exact meaning depends on whether the I/O was initiated by a guest
661 # @report: for guest operations, report the error to the guest;
662 # for jobs, cancel the job
664 # @ignore: ignore the error, only report a QMP event (BLOCK_IO_ERROR
665 # or BLOCK_JOB_ERROR)
667 # @enospc: same as @stop on ENOSPC, same as @report otherwise.
669 # @stop: for guest operations, stop the virtual machine;
670 # for jobs, pause the job
672 # @auto: inherit the error handling policy of the backend (since: 2.7)
676 { 'enum': 'BlockdevOnError',
677 'data': ['report', 'ignore', 'enospc', 'stop', 'auto'] }
682 # An enumeration of possible behaviors for the initial synchronization
683 # phase of storage mirroring.
685 # @top: copies data in the topmost image to the destination
687 # @full: copies data from all images to the destination
689 # @none: only copy data written from now on
691 # @incremental: only copy data described by the dirty bitmap. Since: 2.4
695 { 'enum': 'MirrorSyncMode',
696 'data': ['top', 'full', 'none', 'incremental'] }
701 # Type of a block job.
703 # @commit: block commit job type, see "block-commit"
705 # @stream: block stream job type, see "block-stream"
707 # @mirror: drive mirror job type, see "drive-mirror"
709 # @backup: drive backup job type, see "drive-backup"
713 { 'enum': 'BlockJobType',
714 'data': ['commit', 'stream', 'mirror', 'backup'] }
719 # Information about a long-running block device operation.
721 # @type: the job type ('stream' for image streaming)
723 # @device: The job identifier. Originally the device name but other
724 # values are allowed since QEMU 2.7
726 # @len: the maximum progress value
728 # @busy: false if the job is known to be in a quiescent state, with
729 # no pending I/O. Since 1.3.
731 # @paused: whether the job is paused or, if @busy is true, will
732 # pause itself as soon as possible. Since 1.3.
734 # @offset: the current progress value
736 # @speed: the rate limit, bytes per second
738 # @io-status: the status of the job (since 1.3)
740 # @ready: true if the job may be completed (since 2.2)
744 { 'struct': 'BlockJobInfo',
745 'data': {'type': 'str', 'device': 'str', 'len': 'int',
746 'offset': 'int', 'busy': 'bool', 'paused': 'bool', 'speed': 'int',
747 'io-status': 'BlockDeviceIoStatus', 'ready': 'bool'} }
752 # Return information about long-running block device operations.
754 # Returns: a list of @BlockJobInfo for each active block job
758 { 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }
763 # This command sets the password of a block device that has not been open
764 # with a password and requires one.
766 # The two cases where this can happen are a block device is created through
767 # QEMU's initial command line or a block device is changed through the legacy
770 # In the event that the block device is created through the initial command
771 # line, the VM will start in the stopped state regardless of whether '-S' is
772 # used. The intention is for a management tool to query the block devices to
773 # determine which ones are encrypted, set the passwords with this command, and
774 # then start the guest with the @cont command.
776 # Either @device or @node-name must be set but not both.
778 # @device: #optional the name of the block backend device to set the password on
780 # @node-name: #optional graph node name to set the password on (Since 2.0)
782 # @password: the password to use for the device
784 # Returns: nothing on success
785 # If @device is not a valid block device, DeviceNotFound
786 # If @device is not encrypted, DeviceNotEncrypted
788 # Notes: Not all block formats support encryption and some that do are not
789 # able to validate that a password is correct. Disk corruption may
790 # occur if an invalid password is specified.
794 { 'command': 'block_passwd', 'data': {'*device': 'str',
795 '*node-name': 'str', 'password': 'str'} }
800 # Resize a block image while a guest is running.
802 # Either @device or @node-name must be set but not both.
804 # @device: #optional the name of the device to get the image resized
806 # @node-name: #optional graph node name to get the image resized (Since 2.0)
808 # @size: new image size in bytes
810 # Returns: nothing on success
811 # If @device is not a valid block device, DeviceNotFound
815 { 'command': 'block_resize', 'data': { '*device': 'str',
822 # An enumeration that tells QEMU how to set the backing file path in
825 # @existing: QEMU should look for an existing image file.
827 # @absolute-paths: QEMU should create a new image with absolute paths
828 # for the backing file. If there is no backing file available, the new
829 # image will not be backed either.
833 { 'enum': 'NewImageMode',
834 'data': [ 'existing', 'absolute-paths' ] }
837 # @BlockdevSnapshotSync
839 # Either @device or @node-name must be set but not both.
841 # @device: #optional the name of the device to generate the snapshot from.
843 # @node-name: #optional graph node name to generate the snapshot from (Since 2.0)
845 # @snapshot-file: the target of the new image. A new file will be created.
847 # @snapshot-node-name: #optional the graph node name of the new image (Since 2.0)
849 # @format: #optional the format of the snapshot image, default is 'qcow2'.
851 # @mode: #optional whether and how QEMU should create a new image, default is
854 { 'struct': 'BlockdevSnapshotSync',
855 'data': { '*device': 'str', '*node-name': 'str',
856 'snapshot-file': 'str', '*snapshot-node-name': 'str',
857 '*format': 'str', '*mode': 'NewImageMode' } }
862 # @node: device or node name that will have a snapshot created.
864 # @overlay: reference to the existing block device that will become
865 # the overlay of @node, as part of creating the snapshot.
866 # It must not have a current backing file (this can be
867 # achieved by passing "backing": "" to blockdev-add).
871 { 'struct': 'BlockdevSnapshot',
872 'data': { 'node': 'str', 'overlay': 'str' } }
877 # @job-id: #optional identifier for the newly-created block job. If
878 # omitted, the device name will be used. (Since 2.7)
880 # @device: the device name or node-name of a root node which should be copied.
882 # @target: the target of the new image. If the file exists, or if it
883 # is a device, the existing file/device will be used as the new
884 # destination. If it does not exist, a new file will be created.
886 # @format: #optional the format of the new destination, default is to
887 # probe if @mode is 'existing', else the format of the source
889 # @sync: what parts of the disk image should be copied to the destination
890 # (all the disk, only the sectors allocated in the topmost image, from a
891 # dirty bitmap, or only new I/O).
893 # @mode: #optional whether and how QEMU should create a new image, default is
896 # @speed: #optional the maximum speed, in bytes per second
898 # @bitmap: #optional the name of dirty bitmap if sync is "incremental".
899 # Must be present if sync is "incremental", must NOT be present
900 # otherwise. (Since 2.4)
902 # @compress: #optional true to compress data, if the target format supports it.
903 # (default: false) (since 2.8)
905 # @on-source-error: #optional the action to take on an error on the source,
906 # default 'report'. 'stop' and 'enospc' can only be used
907 # if the block device supports io-status (see BlockInfo).
909 # @on-target-error: #optional the action to take on an error on the target,
910 # default 'report' (no limitations, since this applies to
911 # a different block device than @device).
913 # Note that @on-source-error and @on-target-error only affect background I/O.
914 # If an error occurs during a guest write request, the device's rerror/werror
915 # actions will be used.
919 { 'struct': 'DriveBackup',
920 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
921 '*format': 'str', 'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
922 '*speed': 'int', '*bitmap': 'str', '*compress': 'bool',
923 '*on-source-error': 'BlockdevOnError',
924 '*on-target-error': 'BlockdevOnError' } }
929 # @job-id: #optional identifier for the newly-created block job. If
930 # omitted, the device name will be used. (Since 2.7)
932 # @device: the device name or node-name of a root node which should be copied.
934 # @target: the device name or node-name of the backup target node.
936 # @sync: what parts of the disk image should be copied to the destination
937 # (all the disk, only the sectors allocated in the topmost image, or
940 # @speed: #optional the maximum speed, in bytes per second. The default is 0,
943 # @compress: #optional true to compress data, if the target format supports it.
944 # (default: false) (since 2.8)
946 # @on-source-error: #optional the action to take on an error on the source,
947 # default 'report'. 'stop' and 'enospc' can only be used
948 # if the block device supports io-status (see BlockInfo).
950 # @on-target-error: #optional the action to take on an error on the target,
951 # default 'report' (no limitations, since this applies to
952 # a different block device than @device).
954 # Note that @on-source-error and @on-target-error only affect background I/O.
955 # If an error occurs during a guest write request, the device's rerror/werror
956 # actions will be used.
960 { 'struct': 'BlockdevBackup',
961 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
962 'sync': 'MirrorSyncMode',
965 '*on-source-error': 'BlockdevOnError',
966 '*on-target-error': 'BlockdevOnError' } }
969 # @blockdev-snapshot-sync
971 # Generates a synchronous snapshot of a block device.
973 # For the arguments, see the documentation of BlockdevSnapshotSync.
975 # Returns: nothing on success
976 # If @device is not a valid block device, DeviceNotFound
980 { 'command': 'blockdev-snapshot-sync',
981 'data': 'BlockdevSnapshotSync' }
987 # Generates a snapshot of a block device.
989 # For the arguments, see the documentation of BlockdevSnapshot.
993 { 'command': 'blockdev-snapshot',
994 'data': 'BlockdevSnapshot' }
997 # @change-backing-file
999 # Change the backing file in the image file metadata. This does not
1000 # cause QEMU to reopen the image file to reparse the backing filename
1001 # (it may, however, perform a reopen to change permissions from
1002 # r/o -> r/w -> r/o, if needed). The new backing file string is written
1003 # into the image file metadata, and the QEMU internal strings are
1006 # @image-node-name: The name of the block driver state node of the
1009 # @device: The device name or node-name of the root node that owns
1012 # @backing-file: The string to write as the backing file. This
1013 # string is not validated, so care should be taken
1014 # when specifying the string or the image chain may
1015 # not be able to be reopened again.
1019 { 'command': 'change-backing-file',
1020 'data': { 'device': 'str', 'image-node-name': 'str',
1021 'backing-file': 'str' } }
1026 # Live commit of data from overlay image nodes into backing nodes - i.e.,
1027 # writes data between 'top' and 'base' into 'base'.
1029 # @job-id: #optional identifier for the newly-created block job. If
1030 # omitted, the device name will be used. (Since 2.7)
1032 # @device: the device name or node-name of a root node
1034 # @base: #optional The file name of the backing image to write data into.
1035 # If not specified, this is the deepest backing image
1037 # @top: #optional The file name of the backing image within the image chain,
1038 # which contains the topmost data to be committed down. If
1039 # not specified, this is the active layer.
1041 # @backing-file: #optional The backing file string to write into the overlay
1042 # image of 'top'. If 'top' is the active layer,
1043 # specifying a backing file string is an error. This
1044 # filename is not validated.
1046 # If a pathname string is such that it cannot be
1047 # resolved by QEMU, that means that subsequent QMP or
1048 # HMP commands must use node-names for the image in
1049 # question, as filename lookup methods will fail.
1051 # If not specified, QEMU will automatically determine
1052 # the backing file string to use, or error out if
1053 # there is no obvious choice. Care should be taken
1054 # when specifying the string, to specify a valid
1055 # filename or protocol.
1058 # If top == base, that is an error.
1059 # If top == active, the job will not be completed by itself,
1060 # user needs to complete the job with the block-job-complete
1061 # command after getting the ready event. (Since 2.0)
1063 # If the base image is smaller than top, then the base image
1064 # will be resized to be the same size as top. If top is
1065 # smaller than the base image, the base will not be
1066 # truncated. If you want the base image size to match the
1067 # size of the smaller top, you can safely truncate it
1068 # yourself once the commit operation successfully completes.
1070 # @speed: #optional the maximum speed, in bytes per second
1072 # Returns: Nothing on success
1073 # If commit or stream is already active on this device, DeviceInUse
1074 # If @device does not exist, DeviceNotFound
1075 # If image commit is not supported by this device, NotSupported
1076 # If @base or @top is invalid, a generic error is returned
1077 # If @speed is invalid, InvalidParameter
1082 { 'command': 'block-commit',
1083 'data': { '*job-id': 'str', 'device': 'str', '*base': 'str', '*top': 'str',
1084 '*backing-file': 'str', '*speed': 'int' } }
1089 # Start a point-in-time copy of a block device to a new destination. The
1090 # status of ongoing drive-backup operations can be checked with
1091 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1092 # The operation can be stopped before it has completed using the
1093 # block-job-cancel command.
1095 # For the arguments, see the documentation of DriveBackup.
1097 # Returns: nothing on success
1098 # If @device is not a valid block device, GenericError
1102 { 'command': 'drive-backup', 'boxed': true,
1103 'data': 'DriveBackup' }
1108 # Start a point-in-time copy of a block device to a new destination. The
1109 # status of ongoing blockdev-backup operations can be checked with
1110 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1111 # The operation can be stopped before it has completed using the
1112 # block-job-cancel command.
1114 # For the arguments, see the documentation of BlockdevBackup.
1116 # Returns: nothing on success
1117 # If @device is not a valid block device, DeviceNotFound
1121 { 'command': 'blockdev-backup', 'boxed': true,
1122 'data': 'BlockdevBackup' }
1126 # @query-named-block-nodes
1128 # Get the named block driver list
1130 # Returns: the list of BlockDeviceInfo
1134 { 'command': 'query-named-block-nodes', 'returns': [ 'BlockDeviceInfo' ] }
1139 # Start mirroring a block device's writes to a new destination.
1141 # See DriveMirror for parameter descriptions
1143 # Returns: nothing on success
1144 # If @device is not a valid block device, GenericError
1148 { 'command': 'drive-mirror', 'boxed': true,
1149 'data': 'DriveMirror' }
1154 # A set of parameters describing drive mirror setup.
1156 # @job-id: #optional identifier for the newly-created block job. If
1157 # omitted, the device name will be used. (Since 2.7)
1159 # @device: the device name or node-name of a root node whose writes should be
1162 # @target: the target of the new image. If the file exists, or if it
1163 # is a device, the existing file/device will be used as the new
1164 # destination. If it does not exist, a new file will be created.
1166 # @format: #optional the format of the new destination, default is to
1167 # probe if @mode is 'existing', else the format of the source
1169 # @node-name: #optional the new block driver state node name in the graph
1172 # @replaces: #optional with sync=full graph node name to be replaced by the new
1173 # image when a whole image copy is done. This can be used to repair
1174 # broken Quorum files. (Since 2.1)
1176 # @mode: #optional whether and how QEMU should create a new image, default is
1179 # @speed: #optional the maximum speed, in bytes per second
1181 # @sync: what parts of the disk image should be copied to the destination
1182 # (all the disk, only the sectors allocated in the topmost image, or
1185 # @granularity: #optional granularity of the dirty bitmap, default is 64K
1186 # if the image format doesn't have clusters, 4K if the clusters
1187 # are smaller than that, else the cluster size. Must be a
1188 # power of 2 between 512 and 64M (since 1.4).
1190 # @buf-size: #optional maximum amount of data in flight from source to
1191 # target (since 1.4).
1193 # @on-source-error: #optional the action to take on an error on the source,
1194 # default 'report'. 'stop' and 'enospc' can only be used
1195 # if the block device supports io-status (see BlockInfo).
1197 # @on-target-error: #optional the action to take on an error on the target,
1198 # default 'report' (no limitations, since this applies to
1199 # a different block device than @device).
1200 # @unmap: #optional Whether to try to unmap target sectors where source has
1201 # only zero. If true, and target unallocated sectors will read as zero,
1202 # target image sectors will be unmapped; otherwise, zeroes will be
1203 # written. Both will result in identical contents.
1204 # Default is true. (Since 2.4)
1208 { 'struct': 'DriveMirror',
1209 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1210 '*format': 'str', '*node-name': 'str', '*replaces': 'str',
1211 'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
1212 '*speed': 'int', '*granularity': 'uint32',
1213 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1214 '*on-target-error': 'BlockdevOnError',
1215 '*unmap': 'bool' } }
1220 # @node: name of device/node which the bitmap is tracking
1222 # @name: name of the dirty bitmap
1226 { 'struct': 'BlockDirtyBitmap',
1227 'data': { 'node': 'str', 'name': 'str' } }
1230 # @BlockDirtyBitmapAdd
1232 # @node: name of device/node which the bitmap is tracking
1234 # @name: name of the dirty bitmap
1236 # @granularity: #optional the bitmap granularity, default is 64k for
1237 # block-dirty-bitmap-add
1241 { 'struct': 'BlockDirtyBitmapAdd',
1242 'data': { 'node': 'str', 'name': 'str', '*granularity': 'uint32' } }
1245 # @block-dirty-bitmap-add
1247 # Create a dirty bitmap with a name on the node
1249 # Returns: nothing on success
1250 # If @node is not a valid block device or node, DeviceNotFound
1251 # If @name is already taken, GenericError with an explanation
1255 { 'command': 'block-dirty-bitmap-add',
1256 'data': 'BlockDirtyBitmapAdd' }
1259 # @block-dirty-bitmap-remove
1261 # Remove a dirty bitmap on the node
1263 # Returns: nothing on success
1264 # If @node is not a valid block device or node, DeviceNotFound
1265 # If @name is not found, GenericError with an explanation
1266 # if @name is frozen by an operation, GenericError
1270 { 'command': 'block-dirty-bitmap-remove',
1271 'data': 'BlockDirtyBitmap' }
1274 # @block-dirty-bitmap-clear
1276 # Clear (reset) a dirty bitmap on the device
1278 # Returns: nothing on success
1279 # If @node is not a valid block device, DeviceNotFound
1280 # If @name is not found, GenericError with an explanation
1284 { 'command': 'block-dirty-bitmap-clear',
1285 'data': 'BlockDirtyBitmap' }
1290 # Start mirroring a block device's writes to a new destination.
1292 # @job-id: #optional identifier for the newly-created block job. If
1293 # omitted, the device name will be used. (Since 2.7)
1295 # @device: The device name or node-name of a root node whose writes should be
1298 # @target: the id or node-name of the block device to mirror to. This mustn't be
1299 # attached to guest.
1301 # @replaces: #optional with sync=full graph node name to be replaced by the new
1302 # image when a whole image copy is done. This can be used to repair
1303 # broken Quorum files.
1305 # @speed: #optional the maximum speed, in bytes per second
1307 # @sync: what parts of the disk image should be copied to the destination
1308 # (all the disk, only the sectors allocated in the topmost image, or
1311 # @granularity: #optional granularity of the dirty bitmap, default is 64K
1312 # if the image format doesn't have clusters, 4K if the clusters
1313 # are smaller than that, else the cluster size. Must be a
1314 # power of 2 between 512 and 64M
1316 # @buf-size: #optional maximum amount of data in flight from source to
1319 # @on-source-error: #optional the action to take on an error on the source,
1320 # default 'report'. 'stop' and 'enospc' can only be used
1321 # if the block device supports io-status (see BlockInfo).
1323 # @on-target-error: #optional the action to take on an error on the target,
1324 # default 'report' (no limitations, since this applies to
1325 # a different block device than @device).
1327 # Returns: nothing on success.
1331 { 'command': 'blockdev-mirror',
1332 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1334 'sync': 'MirrorSyncMode',
1335 '*speed': 'int', '*granularity': 'uint32',
1336 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1337 '*on-target-error': 'BlockdevOnError' } }
1340 # @block_set_io_throttle:
1342 # Change I/O throttle limits for a block drive.
1344 # Since QEMU 2.4, each device with I/O limits is member of a throttle
1347 # If two or more devices are members of the same group, the limits
1348 # will apply to the combined I/O of the whole group in a round-robin
1349 # fashion. Therefore, setting new I/O limits to a device will affect
1352 # The name of the group can be specified using the 'group' parameter.
1353 # If the parameter is unset, it is assumed to be the current group of
1354 # that device. If it's not in any group yet, the name of the device
1355 # will be used as the name for its group.
1357 # The 'group' parameter can also be used to move a device to a
1358 # different group. In this case the limits specified in the parameters
1359 # will be applied to the new group only.
1361 # I/O limits can be disabled by setting all of them to 0. In this case
1362 # the device will be removed from its group and the rest of its
1363 # members will not be affected. The 'group' parameter is ignored.
1365 # See BlockIOThrottle for parameter descriptions.
1367 # Returns: Nothing on success
1368 # If @device is not a valid block device, DeviceNotFound
1372 { 'command': 'block_set_io_throttle', 'boxed': true,
1373 'data': 'BlockIOThrottle' }
1378 # A set of parameters describing block throttling.
1380 # @device: #optional Block device name (deprecated, use @id instead)
1382 # @id: #optional The name or QOM path of the guest device (since: 2.8)
1384 # @bps: total throughput limit in bytes per second
1386 # @bps_rd: read throughput limit in bytes per second
1388 # @bps_wr: write throughput limit in bytes per second
1390 # @iops: total I/O operations per second
1392 # @iops_rd: read I/O operations per second
1394 # @iops_wr: write I/O operations per second
1396 # @bps_max: #optional total throughput limit during bursts,
1397 # in bytes (Since 1.7)
1399 # @bps_rd_max: #optional read throughput limit during bursts,
1400 # in bytes (Since 1.7)
1402 # @bps_wr_max: #optional write throughput limit during bursts,
1403 # in bytes (Since 1.7)
1405 # @iops_max: #optional total I/O operations per second during bursts,
1406 # in bytes (Since 1.7)
1408 # @iops_rd_max: #optional read I/O operations per second during bursts,
1409 # in bytes (Since 1.7)
1411 # @iops_wr_max: #optional write I/O operations per second during bursts,
1412 # in bytes (Since 1.7)
1414 # @bps_max_length: #optional maximum length of the @bps_max burst
1415 # period, in seconds. It must only
1416 # be set if @bps_max is set as well.
1417 # Defaults to 1. (Since 2.6)
1419 # @bps_rd_max_length: #optional maximum length of the @bps_rd_max
1420 # burst period, in seconds. It must only
1421 # be set if @bps_rd_max is set as well.
1422 # Defaults to 1. (Since 2.6)
1424 # @bps_wr_max_length: #optional maximum length of the @bps_wr_max
1425 # burst period, in seconds. It must only
1426 # be set if @bps_wr_max is set as well.
1427 # Defaults to 1. (Since 2.6)
1429 # @iops_max_length: #optional maximum length of the @iops burst
1430 # period, in seconds. It must only
1431 # be set if @iops_max is set as well.
1432 # Defaults to 1. (Since 2.6)
1434 # @iops_rd_max_length: #optional maximum length of the @iops_rd_max
1435 # burst period, in seconds. It must only
1436 # be set if @iops_rd_max is set as well.
1437 # Defaults to 1. (Since 2.6)
1439 # @iops_wr_max_length: #optional maximum length of the @iops_wr_max
1440 # burst period, in seconds. It must only
1441 # be set if @iops_wr_max is set as well.
1442 # Defaults to 1. (Since 2.6)
1444 # @iops_size: #optional an I/O size in bytes (Since 1.7)
1446 # @group: #optional throttle group name (Since 2.4)
1450 { 'struct': 'BlockIOThrottle',
1451 'data': { '*device': 'str', '*id': 'str', 'bps': 'int', 'bps_rd': 'int',
1452 'bps_wr': 'int', 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
1453 '*bps_max': 'int', '*bps_rd_max': 'int',
1454 '*bps_wr_max': 'int', '*iops_max': 'int',
1455 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
1456 '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
1457 '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
1458 '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
1459 '*iops_size': 'int', '*group': 'str' } }
1464 # Copy data from a backing file into a block device.
1466 # The block streaming operation is performed in the background until the entire
1467 # backing file has been copied. This command returns immediately once streaming
1468 # has started. The status of ongoing block streaming operations can be checked
1469 # with query-block-jobs. The operation can be stopped before it has completed
1470 # using the block-job-cancel command.
1472 # If a base file is specified then sectors are not copied from that base file and
1473 # its backing chain. When streaming completes the image file will have the base
1474 # file as its backing file. This can be used to stream a subset of the backing
1475 # file chain instead of flattening the entire image.
1477 # On successful completion the image file is updated to drop the backing file
1478 # and the BLOCK_JOB_COMPLETED event is emitted.
1480 # @job-id: #optional identifier for the newly-created block job. If
1481 # omitted, the device name will be used. (Since 2.7)
1483 # @device: the device name or node-name of a root node
1485 # @base: #optional the common backing file name
1487 # @backing-file: #optional The backing file string to write into the active
1488 # layer. This filename is not validated.
1490 # If a pathname string is such that it cannot be
1491 # resolved by QEMU, that means that subsequent QMP or
1492 # HMP commands must use node-names for the image in
1493 # question, as filename lookup methods will fail.
1495 # If not specified, QEMU will automatically determine
1496 # the backing file string to use, or error out if there
1497 # is no obvious choice. Care should be taken when
1498 # specifying the string, to specify a valid filename or
1502 # @speed: #optional the maximum speed, in bytes per second
1504 # @on-error: #optional the action to take on an error (default report).
1505 # 'stop' and 'enospc' can only be used if the block device
1506 # supports io-status (see BlockInfo). Since 1.3.
1510 { 'command': 'block-stream',
1511 'data': { '*job-id': 'str', 'device': 'str', '*base': 'str',
1512 '*backing-file': 'str', '*speed': 'int',
1513 '*on-error': 'BlockdevOnError' } }
1516 # @block-job-set-speed:
1518 # Set maximum speed for a background block operation.
1520 # This command can only be issued when there is an active block job.
1522 # Throttling can be disabled by setting the speed to 0.
1524 # @device: The job identifier. This used to be a device name (hence
1525 # the name of the parameter), but since QEMU 2.7 it can have
1528 # @speed: the maximum speed, in bytes per second, or 0 for unlimited.
1531 # Returns: Nothing on success
1532 # If no background operation is active on this device, DeviceNotActive
1536 { 'command': 'block-job-set-speed',
1537 'data': { 'device': 'str', 'speed': 'int' } }
1540 # @block-job-cancel:
1542 # Stop an active background block operation.
1544 # This command returns immediately after marking the active background block
1545 # operation for cancellation. It is an error to call this command if no
1546 # operation is in progress.
1548 # The operation will cancel as soon as possible and then emit the
1549 # BLOCK_JOB_CANCELLED event. Before that happens the job is still visible when
1550 # enumerated using query-block-jobs.
1552 # For streaming, the image file retains its backing file unless the streaming
1553 # operation happens to complete just as it is being cancelled. A new streaming
1554 # operation can be started at a later time to finish copying all data from the
1557 # @device: The job identifier. This used to be a device name (hence
1558 # the name of the parameter), but since QEMU 2.7 it can have
1561 # @force: #optional whether to allow cancellation of a paused job (default
1562 # false). Since 1.3.
1564 # Returns: Nothing on success
1565 # If no background operation is active on this device, DeviceNotActive
1569 { 'command': 'block-job-cancel', 'data': { 'device': 'str', '*force': 'bool' } }
1574 # Pause an active background block operation.
1576 # This command returns immediately after marking the active background block
1577 # operation for pausing. It is an error to call this command if no
1578 # operation is in progress. Pausing an already paused job has no cumulative
1579 # effect; a single block-job-resume command will resume the job.
1581 # The operation will pause as soon as possible. No event is emitted when
1582 # the operation is actually paused. Cancelling a paused job automatically
1585 # @device: The job identifier. This used to be a device name (hence
1586 # the name of the parameter), but since QEMU 2.7 it can have
1589 # Returns: Nothing on success
1590 # If no background operation is active on this device, DeviceNotActive
1594 { 'command': 'block-job-pause', 'data': { 'device': 'str' } }
1597 # @block-job-resume:
1599 # Resume an active background block operation.
1601 # This command returns immediately after resuming a paused background block
1602 # operation. It is an error to call this command if no operation is in
1603 # progress. Resuming an already running job is not an error.
1605 # This command also clears the error status of the job.
1607 # @device: The job identifier. This used to be a device name (hence
1608 # the name of the parameter), but since QEMU 2.7 it can have
1611 # Returns: Nothing on success
1612 # If no background operation is active on this device, DeviceNotActive
1616 { 'command': 'block-job-resume', 'data': { 'device': 'str' } }
1619 # @block-job-complete:
1621 # Manually trigger completion of an active background block operation. This
1622 # is supported for drive mirroring, where it also switches the device to
1623 # write to the target path only. The ability to complete is signaled with
1624 # a BLOCK_JOB_READY event.
1626 # This command completes an active background block operation synchronously.
1627 # The ordering of this command's return with the BLOCK_JOB_COMPLETED event
1628 # is not defined. Note that if an I/O error occurs during the processing of
1629 # this command: 1) the command itself will fail; 2) the error will be processed
1630 # according to the rerror/werror arguments that were specified when starting
1633 # A cancelled or paused job cannot be completed.
1635 # @device: The job identifier. This used to be a device name (hence
1636 # the name of the parameter), but since QEMU 2.7 it can have
1639 # Returns: Nothing on success
1640 # If no background operation is active on this device, DeviceNotActive
1644 { 'command': 'block-job-complete', 'data': { 'device': 'str' } }
1647 # @BlockdevDiscardOptions
1649 # Determines how to handle discard requests.
1651 # @ignore: Ignore the request
1652 # @unmap: Forward as an unmap request
1656 { 'enum': 'BlockdevDiscardOptions',
1657 'data': [ 'ignore', 'unmap' ] }
1660 # @BlockdevDetectZeroesOptions
1662 # Describes the operation mode for the automatic conversion of plain
1663 # zero writes by the OS to driver specific optimized zero write commands.
1665 # @off: Disabled (default)
1667 # @unmap: Enabled and even try to unmap blocks if possible. This requires
1668 # also that @BlockdevDiscardOptions is set to unmap for this device.
1672 { 'enum': 'BlockdevDetectZeroesOptions',
1673 'data': [ 'off', 'on', 'unmap' ] }
1676 # @BlockdevAioOptions
1678 # Selects the AIO backend to handle I/O requests
1680 # @threads: Use qemu's thread pool
1681 # @native: Use native AIO backend (only Linux and Windows)
1685 { 'enum': 'BlockdevAioOptions',
1686 'data': [ 'threads', 'native' ] }
1689 # @BlockdevCacheOptions
1691 # Includes cache-related options for block devices
1693 # @direct: #optional enables use of O_DIRECT (bypass the host page cache;
1695 # @no-flush: #optional ignore any flush requests for the device (default:
1700 { 'struct': 'BlockdevCacheOptions',
1701 'data': { '*direct': 'bool',
1702 '*no-flush': 'bool' } }
1707 # Drivers that are supported in block device operations.
1709 # @host_device, @host_cdrom: Since 2.1
1710 # @gluster: Since 2.7
1714 { 'enum': 'BlockdevDriver',
1715 'data': [ 'archipelago', 'blkdebug', 'blkverify', 'bochs', 'cloop',
1716 'dmg', 'file', 'ftp', 'ftps', 'gluster', 'host_cdrom',
1717 'host_device', 'http', 'https', 'luks', 'null-aio', 'null-co',
1718 'parallels', 'qcow', 'qcow2', 'qed', 'quorum', 'raw',
1719 'replication', 'tftp', 'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat' ] }
1722 # @BlockdevOptionsFile
1724 # Driver specific block device options for the file backend and similar
1727 # @filename: path to the image file
1731 { 'struct': 'BlockdevOptionsFile',
1732 'data': { 'filename': 'str' } }
1735 # @BlockdevOptionsNull
1737 # Driver specific block device options for the null backend.
1739 # @size: #optional size of the device in bytes.
1740 # @latency-ns: #optional emulated latency (in nanoseconds) in processing
1741 # requests. Default to zero which completes requests immediately.
1746 { 'struct': 'BlockdevOptionsNull',
1747 'data': { '*size': 'int', '*latency-ns': 'uint64' } }
1750 # @BlockdevOptionsVVFAT
1752 # Driver specific block device options for the vvfat protocol.
1754 # @dir: directory to be exported as FAT image
1755 # @fat-type: #optional FAT type: 12, 16 or 32
1756 # @floppy: #optional whether to export a floppy image (true) or
1757 # partitioned hard disk (false; default)
1758 # @label: #optional set the volume label, limited to 11 bytes. FAT16 and
1759 # FAT32 traditionally have some restrictions on labels, which are
1760 # ignored by most operating systems. Defaults to "QEMU VVFAT".
1762 # @rw: #optional whether to allow write operations (default: false)
1766 { 'struct': 'BlockdevOptionsVVFAT',
1767 'data': { 'dir': 'str', '*fat-type': 'int', '*floppy': 'bool',
1768 '*label': 'str', '*rw': 'bool' } }
1771 # @BlockdevOptionsGenericFormat
1773 # Driver specific block device options for image format that have no option
1774 # besides their data source.
1776 # @file: reference to or definition of the data source block device
1780 { 'struct': 'BlockdevOptionsGenericFormat',
1781 'data': { 'file': 'BlockdevRef' } }
1784 # @BlockdevOptionsLUKS
1786 # Driver specific block device options for LUKS.
1788 # @key-secret: #optional the ID of a QCryptoSecret object providing
1789 # the decryption key (since 2.6). Mandatory except when
1790 # doing a metadata-only probe of the image.
1794 { 'struct': 'BlockdevOptionsLUKS',
1795 'base': 'BlockdevOptionsGenericFormat',
1796 'data': { '*key-secret': 'str' } }
1800 # @BlockdevOptionsGenericCOWFormat
1802 # Driver specific block device options for image format that have no option
1803 # besides their data source and an optional backing file.
1805 # @backing: #optional reference to or definition of the backing file block
1806 # device (if missing, taken from the image file content). It is
1807 # allowed to pass an empty string here in order to disable the
1808 # default backing file.
1812 { 'struct': 'BlockdevOptionsGenericCOWFormat',
1813 'base': 'BlockdevOptionsGenericFormat',
1814 'data': { '*backing': 'BlockdevRef' } }
1817 # @Qcow2OverlapCheckMode
1819 # General overlap check modes.
1821 # @none: Do not perform any checks
1823 # @constant: Perform only checks which can be done in constant time and
1824 # without reading anything from disk
1826 # @cached: Perform only checks which can be done without reading anything
1829 # @all: Perform all available overlap checks
1833 { 'enum': 'Qcow2OverlapCheckMode',
1834 'data': [ 'none', 'constant', 'cached', 'all' ] }
1837 # @Qcow2OverlapCheckFlags
1839 # Structure of flags for each metadata structure. Setting a field to 'true'
1840 # makes qemu guard that structure against unintended overwriting. The default
1841 # value is chosen according to the template given.
1843 # @template: Specifies a template mode which can be adjusted using the other
1844 # flags, defaults to 'cached'
1848 { 'struct': 'Qcow2OverlapCheckFlags',
1849 'data': { '*template': 'Qcow2OverlapCheckMode',
1850 '*main-header': 'bool',
1851 '*active-l1': 'bool',
1852 '*active-l2': 'bool',
1853 '*refcount-table': 'bool',
1854 '*refcount-block': 'bool',
1855 '*snapshot-table': 'bool',
1856 '*inactive-l1': 'bool',
1857 '*inactive-l2': 'bool' } }
1860 # @Qcow2OverlapChecks
1862 # Specifies which metadata structures should be guarded against unintended
1865 # @flags: set of flags for separate specification of each metadata structure
1868 # @mode: named mode which chooses a specific set of flags
1872 { 'alternate': 'Qcow2OverlapChecks',
1873 'data': { 'flags': 'Qcow2OverlapCheckFlags',
1874 'mode': 'Qcow2OverlapCheckMode' } }
1877 # @BlockdevOptionsQcow2
1879 # Driver specific block device options for qcow2.
1881 # @lazy-refcounts: #optional whether to enable the lazy refcounts
1882 # feature (default is taken from the image file)
1884 # @pass-discard-request: #optional whether discard requests to the qcow2
1885 # device should be forwarded to the data source
1887 # @pass-discard-snapshot: #optional whether discard requests for the data source
1888 # should be issued when a snapshot operation (e.g.
1889 # deleting a snapshot) frees clusters in the qcow2 file
1891 # @pass-discard-other: #optional whether discard requests for the data source
1892 # should be issued on other occasions where a cluster
1895 # @overlap-check: #optional which overlap checks to perform for writes
1896 # to the image, defaults to 'cached' (since 2.2)
1898 # @cache-size: #optional the maximum total size of the L2 table and
1899 # refcount block caches in bytes (since 2.2)
1901 # @l2-cache-size: #optional the maximum size of the L2 table cache in
1904 # @refcount-cache-size: #optional the maximum size of the refcount block cache
1905 # in bytes (since 2.2)
1907 # @cache-clean-interval: #optional clean unused entries in the L2 and refcount
1908 # caches. The interval is in seconds. The default value
1909 # is 0 and it disables this feature (since 2.5)
1913 { 'struct': 'BlockdevOptionsQcow2',
1914 'base': 'BlockdevOptionsGenericCOWFormat',
1915 'data': { '*lazy-refcounts': 'bool',
1916 '*pass-discard-request': 'bool',
1917 '*pass-discard-snapshot': 'bool',
1918 '*pass-discard-other': 'bool',
1919 '*overlap-check': 'Qcow2OverlapChecks',
1920 '*cache-size': 'int',
1921 '*l2-cache-size': 'int',
1922 '*refcount-cache-size': 'int',
1923 '*cache-clean-interval': 'int' } }
1927 # @BlockdevOptionsArchipelago
1929 # Driver specific block device options for Archipelago.
1931 # @volume: Name of the Archipelago volume image
1933 # @mport: #optional The port number on which mapperd is
1934 # listening. This is optional
1935 # and if not specified, QEMU will make Archipelago
1936 # use the default port (1001).
1938 # @vport: #optional The port number on which vlmcd is
1939 # listening. This is optional
1940 # and if not specified, QEMU will make Archipelago
1941 # use the default port (501).
1943 # @segment: #optional The name of the shared memory segment
1944 # Archipelago stack is using. This is optional
1945 # and if not specified, QEMU will make Archipelago
1946 # use the default value, 'archipelago'.
1949 { 'struct': 'BlockdevOptionsArchipelago',
1950 'data': { 'volume': 'str',
1953 '*segment': 'str' } }
1959 # Trigger events supported by blkdebug.
1963 { 'enum': 'BlkdebugEvent', 'prefix': 'BLKDBG',
1964 'data': [ 'l1_update', 'l1_grow_alloc_table', 'l1_grow_write_table',
1965 'l1_grow_activate_table', 'l2_load', 'l2_update',
1966 'l2_update_compressed', 'l2_alloc_cow_read', 'l2_alloc_write',
1967 'read_aio', 'read_backing_aio', 'read_compressed', 'write_aio',
1968 'write_compressed', 'vmstate_load', 'vmstate_save', 'cow_read',
1969 'cow_write', 'reftable_load', 'reftable_grow', 'reftable_update',
1970 'refblock_load', 'refblock_update', 'refblock_update_part',
1971 'refblock_alloc', 'refblock_alloc_hookup', 'refblock_alloc_write',
1972 'refblock_alloc_write_blocks', 'refblock_alloc_write_table',
1973 'refblock_alloc_switch_table', 'cluster_alloc',
1974 'cluster_alloc_bytes', 'cluster_free', 'flush_to_os',
1975 'flush_to_disk', 'pwritev_rmw_head', 'pwritev_rmw_after_head',
1976 'pwritev_rmw_tail', 'pwritev_rmw_after_tail', 'pwritev',
1977 'pwritev_zero', 'pwritev_done', 'empty_image_prepare' ] }
1980 # @BlkdebugInjectErrorOptions
1982 # Describes a single error injection for blkdebug.
1984 # @event: trigger event
1986 # @state: #optional the state identifier blkdebug needs to be in to
1987 # actually trigger the event; defaults to "any"
1989 # @errno: #optional error identifier (errno) to be returned; defaults to
1992 # @sector: #optional specifies the sector index which has to be affected
1993 # in order to actually trigger the event; defaults to "any
1996 # @once: #optional disables further events after this one has been
1997 # triggered; defaults to false
1999 # @immediately: #optional fail immediately; defaults to false
2003 { 'struct': 'BlkdebugInjectErrorOptions',
2004 'data': { 'event': 'BlkdebugEvent',
2009 '*immediately': 'bool' } }
2012 # @BlkdebugSetStateOptions
2014 # Describes a single state-change event for blkdebug.
2016 # @event: trigger event
2018 # @state: #optional the current state identifier blkdebug needs to be in;
2021 # @new_state: the state identifier blkdebug is supposed to assume if
2022 # this event is triggered
2026 { 'struct': 'BlkdebugSetStateOptions',
2027 'data': { 'event': 'BlkdebugEvent',
2029 'new_state': 'int' } }
2032 # @BlockdevOptionsBlkdebug
2034 # Driver specific block device options for blkdebug.
2036 # @image: underlying raw block device (or image file)
2038 # @config: #optional filename of the configuration file
2040 # @align: #optional required alignment for requests in bytes,
2041 # must be power of 2, or 0 for default
2043 # @inject-error: #optional array of error injection descriptions
2045 # @set-state: #optional array of state-change descriptions
2049 { 'struct': 'BlockdevOptionsBlkdebug',
2050 'data': { 'image': 'BlockdevRef',
2053 '*inject-error': ['BlkdebugInjectErrorOptions'],
2054 '*set-state': ['BlkdebugSetStateOptions'] } }
2057 # @BlockdevOptionsBlkverify
2059 # Driver specific block device options for blkverify.
2061 # @test: block device to be tested
2063 # @raw: raw image used for verification
2067 { 'struct': 'BlockdevOptionsBlkverify',
2068 'data': { 'test': 'BlockdevRef',
2069 'raw': 'BlockdevRef' } }
2072 # @QuorumReadPattern
2074 # An enumeration of quorum read patterns.
2076 # @quorum: read all the children and do a quorum vote on reads
2078 # @fifo: read only from the first child that has not failed
2082 { 'enum': 'QuorumReadPattern', 'data': [ 'quorum', 'fifo' ] }
2085 # @BlockdevOptionsQuorum
2087 # Driver specific block device options for Quorum
2089 # @blkverify: #optional true if the driver must print content mismatch
2090 # set to false by default
2092 # @children: the children block devices to use
2094 # @vote-threshold: the vote limit under which a read will fail
2096 # @rewrite-corrupted: #optional rewrite corrupted data when quorum is reached
2099 # @read-pattern: #optional choose read pattern and set to quorum by default
2104 { 'struct': 'BlockdevOptionsQuorum',
2105 'data': { '*blkverify': 'bool',
2106 'children': [ 'BlockdevRef' ],
2107 'vote-threshold': 'int',
2108 '*rewrite-corrupted': 'bool',
2109 '*read-pattern': 'QuorumReadPattern' } }
2114 # An enumeration of Gluster transport types
2116 # @tcp: TCP - Transmission Control Protocol
2118 # @unix: UNIX - Unix domain socket
2122 { 'enum': 'GlusterTransport',
2123 'data': [ 'unix', 'tcp' ] }
2129 # Captures the address of a socket
2131 # Details for connecting to a gluster server
2133 # @type: Transport type used for gluster connection
2135 # @unix: socket file
2137 # @tcp: host address and port number
2139 # This is similar to SocketAddress, only distinction:
2141 # 1. GlusterServer is a flat union, SocketAddress is a simple union.
2142 # A flat union is nicer than simple because it avoids nesting
2143 # (i.e. more {}) on the wire.
2145 # 2. GlusterServer lacks case 'fd', since gluster doesn't let you
2146 # pass in a file descriptor.
2148 # GlusterServer is actually not Gluster-specific, its a
2149 # compatibility evolved into an alternate for SocketAddress.
2153 { 'union': 'GlusterServer',
2154 'base': { 'type': 'GlusterTransport' },
2155 'discriminator': 'type',
2156 'data': { 'unix': 'UnixSocketAddress',
2157 'tcp': 'InetSocketAddress' } }
2160 # @BlockdevOptionsGluster
2162 # Driver specific block device options for Gluster
2164 # @volume: name of gluster volume where VM image resides
2166 # @path: absolute path to image file in gluster volume
2168 # @server: gluster servers description
2170 # @debug-level: #optional libgfapi log level (default '4' which is Error)
2172 # @logfile: #optional libgfapi log file (default /dev/stderr)
2176 { 'struct': 'BlockdevOptionsGluster',
2177 'data': { 'volume': 'str',
2179 'server': ['GlusterServer'],
2180 '*debug-level': 'int',
2181 '*logfile': 'str' } }
2186 # An enumeration of replication modes.
2188 # @primary: Primary mode, the vm's state will be sent to secondary QEMU.
2190 # @secondary: Secondary mode, receive the vm's state from primary QEMU.
2194 { 'enum' : 'ReplicationMode', 'data' : [ 'primary', 'secondary' ] }
2197 # @BlockdevOptionsReplication
2199 # Driver specific block device options for replication
2201 # @mode: the replication mode
2203 # @top-id: #optional In secondary mode, node name or device ID of the root
2204 # node who owns the replication node chain. Ignored in primary mode.
2208 { 'struct': 'BlockdevOptionsReplication',
2209 'base': 'BlockdevOptionsGenericFormat',
2210 'data': { 'mode': 'ReplicationMode',
2211 '*top-id': 'str' } }
2216 # Options for creating a block device. Many options are available for all
2217 # block devices, independent of the block driver:
2219 # @driver: block driver name
2220 # @node-name: #optional the node name of the new node (Since 2.0).
2221 # This option is required on the top level of blockdev-add.
2222 # @discard: #optional discard-related options (default: ignore)
2223 # @cache: #optional cache-related options
2224 # @aio: #optional AIO backend (default: threads)
2225 # @read-only: #optional whether the block device should be read-only
2227 # @detect-zeroes: #optional detect and optimize zero writes (Since 2.1)
2230 # Remaining options are determined by the block driver.
2234 { 'union': 'BlockdevOptions',
2235 'base': { 'driver': 'BlockdevDriver',
2236 '*node-name': 'str',
2237 '*discard': 'BlockdevDiscardOptions',
2238 '*cache': 'BlockdevCacheOptions',
2239 '*aio': 'BlockdevAioOptions',
2240 '*read-only': 'bool',
2241 '*detect-zeroes': 'BlockdevDetectZeroesOptions' },
2242 'discriminator': 'driver',
2244 'archipelago':'BlockdevOptionsArchipelago',
2245 'blkdebug': 'BlockdevOptionsBlkdebug',
2246 'blkverify': 'BlockdevOptionsBlkverify',
2247 'bochs': 'BlockdevOptionsGenericFormat',
2248 'cloop': 'BlockdevOptionsGenericFormat',
2249 'dmg': 'BlockdevOptionsGenericFormat',
2250 'file': 'BlockdevOptionsFile',
2251 'ftp': 'BlockdevOptionsFile',
2252 'ftps': 'BlockdevOptionsFile',
2253 'gluster': 'BlockdevOptionsGluster',
2254 'host_cdrom': 'BlockdevOptionsFile',
2255 'host_device':'BlockdevOptionsFile',
2256 'http': 'BlockdevOptionsFile',
2257 'https': 'BlockdevOptionsFile',
2258 # TODO iscsi: Wait for structured options
2259 'luks': 'BlockdevOptionsLUKS',
2260 # TODO nbd: Should take InetSocketAddress for 'host'?
2261 # TODO nfs: Wait for structured options
2262 'null-aio': 'BlockdevOptionsNull',
2263 'null-co': 'BlockdevOptionsNull',
2264 'parallels': 'BlockdevOptionsGenericFormat',
2265 'qcow2': 'BlockdevOptionsQcow2',
2266 'qcow': 'BlockdevOptionsGenericCOWFormat',
2267 'qed': 'BlockdevOptionsGenericCOWFormat',
2268 'quorum': 'BlockdevOptionsQuorum',
2269 'raw': 'BlockdevOptionsGenericFormat',
2270 # TODO rbd: Wait for structured options
2271 'replication':'BlockdevOptionsReplication',
2272 # TODO sheepdog: Wait for structured options
2273 # TODO ssh: Should take InetSocketAddress for 'host'?
2274 'tftp': 'BlockdevOptionsFile',
2275 'vdi': 'BlockdevOptionsGenericFormat',
2276 'vhdx': 'BlockdevOptionsGenericFormat',
2277 'vmdk': 'BlockdevOptionsGenericCOWFormat',
2278 'vpc': 'BlockdevOptionsGenericFormat',
2279 'vvfat': 'BlockdevOptionsVVFAT'
2285 # Reference to a block device.
2287 # @definition: defines a new block device inline
2288 # @reference: references the ID of an existing block device. An
2289 # empty string means that no block device should be
2294 { 'alternate': 'BlockdevRef',
2295 'data': { 'definition': 'BlockdevOptions',
2296 'reference': 'str' } }
2301 # Creates a new block device. If the @id option is given at the top level, a
2302 # BlockBackend will be created; otherwise, @node-name is mandatory at the top
2303 # level and no BlockBackend will be created.
2305 # This command is still a work in progress. It doesn't support all
2306 # block drivers among other things. Stay away from it unless you want
2307 # to help with its development.
2309 # @options: block device options for the new device
2313 { 'command': 'blockdev-add', 'data': { 'options': 'BlockdevOptions' } }
2318 # Deletes a block device that has been added using blockdev-add.
2319 # The command will fail if the node is attached to a device or is
2320 # otherwise being used.
2322 # This command is still a work in progress and is considered
2323 # experimental. Stay away from it unless you want to help with its
2326 # @node-name: Name of the graph node to delete.
2330 { 'command': 'x-blockdev-del', 'data': { 'node-name': 'str' } }
2333 # @blockdev-open-tray:
2335 # Opens a block device's tray. If there is a block driver state tree inserted as
2336 # a medium, it will become inaccessible to the guest (but it will remain
2337 # associated to the block device, so closing the tray will make it accessible
2340 # If the tray was already open before, this will be a no-op.
2342 # Once the tray opens, a DEVICE_TRAY_MOVED event is emitted. There are cases in
2343 # which no such event will be generated, these include:
2344 # - if the guest has locked the tray, @force is false and the guest does not
2345 # respond to the eject request
2346 # - if the BlockBackend denoted by @device does not have a guest device attached
2348 # - if the guest device does not have an actual tray
2350 # @device: #optional Block device name (deprecated, use @id instead)
2352 # @id: #optional The name or QOM path of the guest device (since: 2.8)
2354 # @force: #optional if false (the default), an eject request will be sent to
2355 # the guest if it has locked the tray (and the tray will not be opened
2356 # immediately); if true, the tray will be opened regardless of whether
2361 { 'command': 'blockdev-open-tray',
2362 'data': { '*device': 'str',
2364 '*force': 'bool' } }
2367 # @blockdev-close-tray:
2369 # Closes a block device's tray. If there is a block driver state tree associated
2370 # with the block device (which is currently ejected), that tree will be loaded
2373 # If the tray was already closed before, this will be a no-op.
2375 # @device: #optional Block device name (deprecated, use @id instead)
2377 # @id: #optional The name or QOM path of the guest device (since: 2.8)
2381 { 'command': 'blockdev-close-tray',
2382 'data': { '*device': 'str',
2386 # @x-blockdev-remove-medium:
2388 # Removes a medium (a block driver state tree) from a block device. That block
2389 # device's tray must currently be open (unless there is no attached guest
2392 # If the tray is open and there is no medium inserted, this will be a no-op.
2394 # This command is still a work in progress and is considered experimental.
2395 # Stay away from it unless you want to help with its development.
2397 # @device: #optional Block device name (deprecated, use @id instead)
2399 # @id: #optional The name or QOM path of the guest device (since: 2.8)
2403 { 'command': 'x-blockdev-remove-medium',
2404 'data': { '*device': 'str',
2408 # @x-blockdev-insert-medium:
2410 # Inserts a medium (a block driver state tree) into a block device. That block
2411 # device's tray must currently be open (unless there is no attached guest
2412 # device) and there must be no medium inserted already.
2414 # This command is still a work in progress and is considered experimental.
2415 # Stay away from it unless you want to help with its development.
2417 # @device: #optional Block device name (deprecated, use @id instead)
2419 # @id: #optional The name or QOM path of the guest device (since: 2.8)
2421 # @node-name: name of a node in the block driver state graph
2425 { 'command': 'x-blockdev-insert-medium',
2426 'data': { '*device': 'str',
2428 'node-name': 'str'} }
2432 # @BlockdevChangeReadOnlyMode:
2434 # Specifies the new read-only mode of a block device subject to the
2435 # @blockdev-change-medium command.
2437 # @retain: Retains the current read-only mode
2439 # @read-only: Makes the device read-only
2441 # @read-write: Makes the device writable
2445 { 'enum': 'BlockdevChangeReadOnlyMode',
2446 'data': ['retain', 'read-only', 'read-write'] }
2450 # @blockdev-change-medium:
2452 # Changes the medium inserted into a block device by ejecting the current medium
2453 # and loading a new image file which is inserted as the new medium (this command
2454 # combines blockdev-open-tray, x-blockdev-remove-medium,
2455 # x-blockdev-insert-medium and blockdev-close-tray).
2457 # @device: #optional Block device name (deprecated, use @id instead)
2459 # @id: #optional The name or QOM path of the guest device
2462 # @filename: filename of the new image to be loaded
2464 # @format: #optional, format to open the new image with (defaults to
2465 # the probed format)
2467 # @read-only-mode: #optional, change the read-only mode of the device; defaults
2472 { 'command': 'blockdev-change-medium',
2473 'data': { '*device': 'str',
2477 '*read-only-mode': 'BlockdevChangeReadOnlyMode' } }
2483 # An enumeration of action that has been taken when a DISK I/O occurs
2485 # @ignore: error has been ignored
2487 # @report: error has been reported to the device
2489 # @stop: error caused VM to be stopped
2493 { 'enum': 'BlockErrorAction',
2494 'data': [ 'ignore', 'report', 'stop' ] }
2498 # @BLOCK_IMAGE_CORRUPTED
2500 # Emitted when a corruption has been detected in a disk image
2502 # @device: device name. This is always present for compatibility
2503 # reasons, but it can be empty ("") if the image does not
2504 # have a device name associated.
2506 # @node-name: #optional node name (Since: 2.4)
2508 # @msg: informative message for human consumption, such as the kind of
2509 # corruption being detected. It should not be parsed by machine as it is
2510 # not guaranteed to be stable
2512 # @offset: #optional, if the corruption resulted from an image access, this is
2513 # the host's access offset into the image
2515 # @size: #optional, if the corruption resulted from an image access, this is
2518 # fatal: if set, the image is marked corrupt and therefore unusable after this
2519 # event and must be repaired (Since 2.2; before, every
2520 # BLOCK_IMAGE_CORRUPTED event was fatal)
2524 { 'event': 'BLOCK_IMAGE_CORRUPTED',
2525 'data': { 'device' : 'str',
2526 '*node-name' : 'str',
2530 'fatal' : 'bool' } }
2535 # Emitted when a disk I/O error occurs
2537 # @device: device name
2539 # @operation: I/O operation
2541 # @action: action that has been taken
2543 # @nospace: #optional true if I/O error was caused due to a no-space
2544 # condition. This key is only present if query-block's
2545 # io-status is present, please see query-block documentation
2546 # for more information (since: 2.2)
2548 # @reason: human readable string describing the error cause.
2549 # (This field is a debugging aid for humans, it should not
2550 # be parsed by applications) (since: 2.2)
2552 # Note: If action is "stop", a STOP event will eventually follow the
2553 # BLOCK_IO_ERROR event
2557 { 'event': 'BLOCK_IO_ERROR',
2558 'data': { 'device': 'str', 'operation': 'IoOperationType',
2559 'action': 'BlockErrorAction', '*nospace': 'bool',
2563 # @BLOCK_JOB_COMPLETED
2565 # Emitted when a block job has completed
2569 # @device: The job identifier. Originally the device name but other
2570 # values are allowed since QEMU 2.7
2572 # @len: maximum progress value
2574 # @offset: current progress value. On success this is equal to len.
2575 # On failure this is less than len
2577 # @speed: rate limit, bytes per second
2579 # @error: #optional, error message. Only present on failure. This field
2580 # contains a human-readable error message. There are no semantics
2581 # other than that streaming has failed and clients should not try to
2582 # interpret the error string
2586 { 'event': 'BLOCK_JOB_COMPLETED',
2587 'data': { 'type' : 'BlockJobType',
2595 # @BLOCK_JOB_CANCELLED
2597 # Emitted when a block job has been cancelled
2601 # @device: The job identifier. Originally the device name but other
2602 # values are allowed since QEMU 2.7
2604 # @len: maximum progress value
2606 # @offset: current progress value. On success this is equal to len.
2607 # On failure this is less than len
2609 # @speed: rate limit, bytes per second
2613 { 'event': 'BLOCK_JOB_CANCELLED',
2614 'data': { 'type' : 'BlockJobType',
2623 # Emitted when a block job encounters an error
2625 # @device: The job identifier. Originally the device name but other
2626 # values are allowed since QEMU 2.7
2628 # @operation: I/O operation
2630 # @action: action that has been taken
2634 { 'event': 'BLOCK_JOB_ERROR',
2635 'data': { 'device' : 'str',
2636 'operation': 'IoOperationType',
2637 'action' : 'BlockErrorAction' } }
2642 # Emitted when a block job is ready to complete
2646 # @device: The job identifier. Originally the device name but other
2647 # values are allowed since QEMU 2.7
2649 # @len: maximum progress value
2651 # @offset: current progress value. On success this is equal to len.
2652 # On failure this is less than len
2654 # @speed: rate limit, bytes per second
2656 # Note: The "ready to complete" status is always reset by a @BLOCK_JOB_ERROR
2661 { 'event': 'BLOCK_JOB_READY',
2662 'data': { 'type' : 'BlockJobType',
2670 # Preallocation mode of QEMU image file
2672 # @off: no preallocation
2673 # @metadata: preallocate only for metadata
2674 # @falloc: like @full preallocation but allocate disk space by
2675 # posix_fallocate() rather than writing zeros.
2676 # @full: preallocate all data by writing zeros to device to ensure disk
2677 # space is really available. @full preallocation also sets up
2678 # metadata correctly.
2682 { 'enum': 'PreallocMode',
2683 'data': [ 'off', 'metadata', 'falloc', 'full' ] }
2686 # @BLOCK_WRITE_THRESHOLD
2688 # Emitted when writes on block device reaches or exceeds the
2689 # configured write threshold. For thin-provisioned devices, this
2690 # means the device should be extended to avoid pausing for
2692 # The event is one shot. Once triggered, it needs to be
2693 # re-registered with another block-set-threshold command.
2695 # @node-name: graph node name on which the threshold was exceeded.
2697 # @amount-exceeded: amount of data which exceeded the threshold, in bytes.
2699 # @write-threshold: last configured threshold, in bytes.
2703 { 'event': 'BLOCK_WRITE_THRESHOLD',
2704 'data': { 'node-name': 'str',
2705 'amount-exceeded': 'uint64',
2706 'write-threshold': 'uint64' } }
2709 # @block-set-write-threshold
2711 # Change the write threshold for a block drive. An event will be delivered
2712 # if a write to this block drive crosses the configured threshold.
2713 # This is useful to transparently resize thin-provisioned drives without
2714 # the guest OS noticing.
2716 # @node-name: graph node name on which the threshold must be set.
2718 # @write-threshold: configured threshold for the block device, bytes.
2719 # Use 0 to disable the threshold.
2723 { 'command': 'block-set-write-threshold',
2724 'data': { 'node-name': 'str', 'write-threshold': 'uint64' } }
2727 # @x-blockdev-change
2729 # Dynamically reconfigure the block driver state graph. It can be used
2730 # to add, remove, insert or replace a graph node. Currently only the
2731 # Quorum driver implements this feature to add or remove its child. This
2732 # is useful to fix a broken quorum child.
2734 # If @node is specified, it will be inserted under @parent. @child
2735 # may not be specified in this case. If both @parent and @child are
2736 # specified but @node is not, @child will be detached from @parent.
2738 # @parent: the id or name of the parent node.
2740 # @child: #optional the name of a child under the given parent node.
2742 # @node: #optional the name of the node that will be added.
2744 # Note: this command is experimental, and its API is not stable. It
2745 # does not support all kinds of operations, all kinds of children, nor
2746 # all block drivers.
2748 # Warning: The data in a new quorum child MUST be consistent with that of
2749 # the rest of the array.
2753 { 'command': 'x-blockdev-change',
2754 'data' : { 'parent': 'str',