block: fix deadlock in bdrv_co_flush
[qemu/kevin.git] / qapi / block-core.json
blob5e2d7d78d2ed889971c1761916d20d14f3c70dcc
1 # -*- Mode: Python -*-
3 # QAPI block core definitions (vm unrelated)
5 # QAPI common definitions
6 { 'include': 'common.json' }
8 ##
9 # @SnapshotInfo
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
25 # Since: 1.3
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)
46 # Since: 1.7
48 { 'struct': 'ImageInfoSpecificQCow2',
49   'data': {
50       'compat': 'str',
51       '*lazy-refcounts': 'bool',
52       '*corrupt': 'bool',
53       'refcount-bits': 'int'
54   } }
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
67 # Since: 1.7
69 { 'struct': 'ImageInfoSpecificVmdk',
70   'data': {
71       'create-type': 'str',
72       'cid': 'int',
73       'parent-cid': 'int',
74       'extents': ['ImageInfo']
75   } }
78 # @ImageInfoSpecific:
80 # A discriminated record of image format specific information structures.
82 # Since: 1.7
85 { 'union': 'ImageInfoSpecific',
86   'data': {
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'
93   } }
96 # @ImageInfo:
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)
129 # Since: 1.3
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' } }
143 # @ImageCheck:
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
155 #                    supports it
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
162 #                     if any
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
171 #                      supports it
173 # @fragmented-clusters: #optional total number of fragmented clusters, this
174 #                       field is present if the driver for the image format
175 #                       supports it
177 # @compressed-clusters: #optional total number of compressed clusters, this
178 #                       field is present if the driver for the image format
179 #                       supports it
181 # Since: 1.4
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' } }
193 # @MapEntry:
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
211 # Since: 2.6
214 { 'struct': 'MapEntry',
215   'data': {'start': 'int', 'length': 'int', 'data': 'bool',
216            'zero': 'bool', 'depth': 'int', '*offset': 'int',
217            '*filename': 'str' } }
220 # @BlockdevCacheInfo
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
228 # Since: 2.3
230 { 'struct': 'BlockdevCacheInfo',
231   'data': { 'writeback': 'bool',
232             'direct': 'bool',
233             'no-flush': 'bool' } }
236 # @BlockDeviceInfo:
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
254 #       2.6: 'luks' added
256 # @backing_file: #optional the name of the backing file (for copy-on-write)
258 # @backing_file_depth: number of files in the backing file chain (since: 1.2)
260 # @encrypted: true if the backing device is encrypted
262 # @encryption_key_missing: true if the backing device is encrypted but an
263 #                          valid encryption key is missing
265 # @detect_zeroes: detect and optimize zero writes (Since 2.1)
267 # @bps: total throughput limit in bytes per second is specified
269 # @bps_rd: read throughput limit in bytes per second is specified
271 # @bps_wr: write throughput limit in bytes per second is specified
273 # @iops: total I/O operations per second is specified
275 # @iops_rd: read I/O operations per second is specified
277 # @iops_wr: write I/O operations per second is specified
279 # @image: the info of image used (since: 1.6)
281 # @bps_max: #optional total throughput limit during bursts,
282 #                     in bytes (Since 1.7)
284 # @bps_rd_max: #optional read throughput limit during bursts,
285 #                        in bytes (Since 1.7)
287 # @bps_wr_max: #optional write throughput limit during bursts,
288 #                        in bytes (Since 1.7)
290 # @iops_max: #optional total I/O operations per second during bursts,
291 #                      in bytes (Since 1.7)
293 # @iops_rd_max: #optional read I/O operations per second during bursts,
294 #                         in bytes (Since 1.7)
296 # @iops_wr_max: #optional write I/O operations per second during bursts,
297 #                         in bytes (Since 1.7)
299 # @bps_max_length: #optional maximum length of the @bps_max burst
300 #                            period, in seconds. (Since 2.6)
302 # @bps_rd_max_length: #optional maximum length of the @bps_rd_max
303 #                               burst period, in seconds. (Since 2.6)
305 # @bps_wr_max_length: #optional maximum length of the @bps_wr_max
306 #                               burst period, in seconds. (Since 2.6)
308 # @iops_max_length: #optional maximum length of the @iops burst
309 #                             period, in seconds. (Since 2.6)
311 # @iops_rd_max_length: #optional maximum length of the @iops_rd_max
312 #                                burst period, in seconds. (Since 2.6)
314 # @iops_wr_max_length: #optional maximum length of the @iops_wr_max
315 #                                burst period, in seconds. (Since 2.6)
317 # @iops_size: #optional an I/O size in bytes (Since 1.7)
319 # @group: #optional throttle group name (Since 2.4)
321 # @cache: the cache mode used for the block device (since: 2.3)
323 # @write_threshold: configured write threshold for the device.
324 #                   0 if disabled. (Since 2.3)
326 # Since: 0.14.0
329 { 'struct': 'BlockDeviceInfo',
330   'data': { 'file': 'str', '*node-name': 'str', 'ro': 'bool', 'drv': 'str',
331             '*backing_file': 'str', 'backing_file_depth': 'int',
332             'encrypted': 'bool', 'encryption_key_missing': 'bool',
333             'detect_zeroes': 'BlockdevDetectZeroesOptions',
334             'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
335             'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
336             'image': 'ImageInfo',
337             '*bps_max': 'int', '*bps_rd_max': 'int',
338             '*bps_wr_max': 'int', '*iops_max': 'int',
339             '*iops_rd_max': 'int', '*iops_wr_max': 'int',
340             '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
341             '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
342             '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
343             '*iops_size': 'int', '*group': 'str', 'cache': 'BlockdevCacheInfo',
344             'write_threshold': 'int' } }
347 # @BlockDeviceIoStatus:
349 # An enumeration of block device I/O status.
351 # @ok: The last I/O operation has succeeded
353 # @failed: The last I/O operation has failed
355 # @nospace: The last I/O operation has failed due to a no-space condition
357 # Since: 1.0
359 { 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
362 # @BlockDeviceMapEntry:
364 # Entry in the metadata map of the device (returned by "qemu-img map")
366 # @start: Offset in the image of the first byte described by this entry
367 #         (in bytes)
369 # @length: Length of the range described by this entry (in bytes)
371 # @depth: Number of layers (0 = top image, 1 = top image's backing file, etc.)
372 #         before reaching one for which the range is allocated.  The value is
373 #         in the range 0 to the depth of the image chain - 1.
375 # @zero: the sectors in this range read as zeros
377 # @data: reading the image will actually read data from a file (in particular,
378 #        if @offset is present this means that the sectors are not simply
379 #        preallocated, but contain actual data in raw format)
381 # @offset: if present, the image file stores the data for this range in
382 #          raw format at the given offset.
384 # Since 1.7
386 { 'struct': 'BlockDeviceMapEntry',
387   'data': { 'start': 'int', 'length': 'int', 'depth': 'int', 'zero': 'bool',
388             'data': 'bool', '*offset': 'int' } }
391 # @DirtyBitmapStatus:
393 # An enumeration of possible states that a dirty bitmap can report to the user.
395 # @frozen: The bitmap is currently in-use by a backup operation or block job,
396 #          and is immutable.
398 # @disabled: The bitmap is currently in-use by an internal operation and is
399 #            read-only. It can still be deleted.
401 # @active: The bitmap is actively monitoring for new writes, and can be cleared,
402 #          deleted, or used for backup operations.
404 # Since: 2.4
406 { 'enum': 'DirtyBitmapStatus',
407   'data': ['active', 'disabled', 'frozen'] }
410 # @BlockDirtyInfo:
412 # Block dirty bitmap information.
414 # @name: #optional the name of the dirty bitmap (Since 2.4)
416 # @count: number of dirty bytes according to the dirty bitmap
418 # @granularity: granularity of the dirty bitmap in bytes (since 1.4)
420 # @status: current status of the dirty bitmap (since 2.4)
422 # Since: 1.3
424 { 'struct': 'BlockDirtyInfo',
425   'data': {'*name': 'str', 'count': 'int', 'granularity': 'uint32',
426            'status': 'DirtyBitmapStatus'} }
429 # @BlockInfo:
431 # Block device information.  This structure describes a virtual device and
432 # the backing device associated with it.
434 # @device: The device name associated with the virtual device.
436 # @type: This field is returned only for compatibility reasons, it should
437 #        not be used (always returns 'unknown')
439 # @removable: True if the device supports removable media.
441 # @locked: True if the guest has locked this device from having its media
442 #          removed
444 # @tray_open: #optional True if the device's tray is open
445 #             (only present if it has a tray)
447 # @dirty-bitmaps: #optional dirty bitmaps information (only present if the
448 #                 driver has one or more dirty bitmaps) (Since 2.0)
450 # @io-status: #optional @BlockDeviceIoStatus. Only present if the device
451 #             supports it and the VM is configured to stop on errors
452 #             (supported device models: virtio-blk, ide, scsi-disk)
454 # @inserted: #optional @BlockDeviceInfo describing the device if media is
455 #            present
457 # Since:  0.14.0
459 { 'struct': 'BlockInfo',
460   'data': {'device': 'str', 'type': 'str', 'removable': 'bool',
461            'locked': 'bool', '*inserted': 'BlockDeviceInfo',
462            '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus',
463            '*dirty-bitmaps': ['BlockDirtyInfo'] } }
466 # @query-block:
468 # Get a list of BlockInfo for all virtual block devices.
470 # Returns: a list of @BlockInfo describing each virtual block device
472 # Since: 0.14.0
474 { 'command': 'query-block', 'returns': ['BlockInfo'] }
478 # @BlockDeviceTimedStats:
480 # Statistics of a block device during a given interval of time.
482 # @interval_length: Interval used for calculating the statistics,
483 #                   in seconds.
485 # @min_rd_latency_ns: Minimum latency of read operations in the
486 #                     defined interval, in nanoseconds.
488 # @min_wr_latency_ns: Minimum latency of write operations in the
489 #                     defined interval, in nanoseconds.
491 # @min_flush_latency_ns: Minimum latency of flush operations in the
492 #                        defined interval, in nanoseconds.
494 # @max_rd_latency_ns: Maximum latency of read operations in the
495 #                     defined interval, in nanoseconds.
497 # @max_wr_latency_ns: Maximum latency of write operations in the
498 #                     defined interval, in nanoseconds.
500 # @max_flush_latency_ns: Maximum latency of flush operations in the
501 #                        defined interval, in nanoseconds.
503 # @avg_rd_latency_ns: Average latency of read operations in the
504 #                     defined interval, in nanoseconds.
506 # @avg_wr_latency_ns: Average latency of write operations in the
507 #                     defined interval, in nanoseconds.
509 # @avg_flush_latency_ns: Average latency of flush operations in the
510 #                        defined interval, in nanoseconds.
512 # @avg_rd_queue_depth: Average number of pending read operations
513 #                      in the defined interval.
515 # @avg_wr_queue_depth: Average number of pending write operations
516 #                      in the defined interval.
518 # Since: 2.5
521 { 'struct': 'BlockDeviceTimedStats',
522   'data': { 'interval_length': 'int', 'min_rd_latency_ns': 'int',
523             'max_rd_latency_ns': 'int', 'avg_rd_latency_ns': 'int',
524             'min_wr_latency_ns': 'int', 'max_wr_latency_ns': 'int',
525             'avg_wr_latency_ns': 'int', 'min_flush_latency_ns': 'int',
526             'max_flush_latency_ns': 'int', 'avg_flush_latency_ns': 'int',
527             'avg_rd_queue_depth': 'number', 'avg_wr_queue_depth': 'number' } }
530 # @BlockDeviceStats:
532 # Statistics of a virtual block device or a block backing device.
534 # @rd_bytes:      The number of bytes read by the device.
536 # @wr_bytes:      The number of bytes written by the device.
538 # @rd_operations: The number of read operations performed by the device.
540 # @wr_operations: The number of write operations performed by the device.
542 # @flush_operations: The number of cache flush operations performed by the
543 #                    device (since 0.15.0)
545 # @flush_total_time_ns: Total time spend on cache flushes in nano-seconds
546 #                       (since 0.15.0).
548 # @wr_total_time_ns: Total time spend on writes in nano-seconds (since 0.15.0).
550 # @rd_total_time_ns: Total_time_spend on reads in nano-seconds (since 0.15.0).
552 # @wr_highest_offset: The offset after the greatest byte written to the
553 #                     device.  The intended use of this information is for
554 #                     growable sparse files (like qcow2) that are used on top
555 #                     of a physical device.
557 # @rd_merged: Number of read requests that have been merged into another
558 #             request (Since 2.3).
560 # @wr_merged: Number of write requests that have been merged into another
561 #             request (Since 2.3).
563 # @idle_time_ns: #optional Time since the last I/O operation, in
564 #                nanoseconds. If the field is absent it means that
565 #                there haven't been any operations yet (Since 2.5).
567 # @failed_rd_operations: The number of failed read operations
568 #                        performed by the device (Since 2.5)
570 # @failed_wr_operations: The number of failed write operations
571 #                        performed by the device (Since 2.5)
573 # @failed_flush_operations: The number of failed flush operations
574 #                           performed by the device (Since 2.5)
576 # @invalid_rd_operations: The number of invalid read operations
577 #                          performed by the device (Since 2.5)
579 # @invalid_wr_operations: The number of invalid write operations
580 #                         performed by the device (Since 2.5)
582 # @invalid_flush_operations: The number of invalid flush operations
583 #                            performed by the device (Since 2.5)
585 # @account_invalid: Whether invalid operations are included in the
586 #                   last access statistics (Since 2.5)
588 # @account_failed: Whether failed operations are included in the
589 #                  latency and last access statistics (Since 2.5)
591 # @timed_stats: Statistics specific to the set of previously defined
592 #               intervals of time (Since 2.5)
594 # Since: 0.14.0
596 { 'struct': 'BlockDeviceStats',
597   'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'rd_operations': 'int',
598            'wr_operations': 'int', 'flush_operations': 'int',
599            'flush_total_time_ns': 'int', 'wr_total_time_ns': 'int',
600            'rd_total_time_ns': 'int', 'wr_highest_offset': 'int',
601            'rd_merged': 'int', 'wr_merged': 'int', '*idle_time_ns': 'int',
602            'failed_rd_operations': 'int', 'failed_wr_operations': 'int',
603            'failed_flush_operations': 'int', 'invalid_rd_operations': 'int',
604            'invalid_wr_operations': 'int', 'invalid_flush_operations': 'int',
605            'account_invalid': 'bool', 'account_failed': 'bool',
606            'timed_stats': ['BlockDeviceTimedStats'] } }
609 # @BlockStats:
611 # Statistics of a virtual block device or a block backing device.
613 # @device: #optional If the stats are for a virtual block device, the name
614 #          corresponding to the virtual block device.
616 # @node-name: #optional The node name of the device. (Since 2.3)
618 # @stats:  A @BlockDeviceStats for the device.
620 # @parent: #optional This describes the file block device if it has one.
622 # @backing: #optional This describes the backing block device if it has one.
623 #           (Since 2.0)
625 # Since: 0.14.0
627 { 'struct': 'BlockStats',
628   'data': {'*device': 'str', '*node-name': 'str',
629            'stats': 'BlockDeviceStats',
630            '*parent': 'BlockStats',
631            '*backing': 'BlockStats'} }
634 # @query-blockstats:
636 # Query the @BlockStats for all virtual block devices.
638 # @query-nodes: #optional If true, the command will query all the block nodes
639 #               that have a node name, in a list which will include "parent"
640 #               information, but not "backing".
641 #               If false or omitted, the behavior is as before - query all the
642 #               device backends, recursively including their "parent" and
643 #               "backing". (Since 2.3)
645 # Returns: A list of @BlockStats for each virtual block devices.
647 # Since: 0.14.0
649 { 'command': 'query-blockstats',
650   'data': { '*query-nodes': 'bool' },
651   'returns': ['BlockStats'] }
654 # @BlockdevOnError:
656 # An enumeration of possible behaviors for errors on I/O operations.
657 # The exact meaning depends on whether the I/O was initiated by a guest
658 # or by a block job
660 # @report: for guest operations, report the error to the guest;
661 #          for jobs, cancel the job
663 # @ignore: ignore the error, only report a QMP event (BLOCK_IO_ERROR
664 #          or BLOCK_JOB_ERROR)
666 # @enospc: same as @stop on ENOSPC, same as @report otherwise.
668 # @stop: for guest operations, stop the virtual machine;
669 #        for jobs, pause the job
671 # @auto: inherit the error handling policy of the backend (since: 2.7)
673 # Since: 1.3
675 { 'enum': 'BlockdevOnError',
676   'data': ['report', 'ignore', 'enospc', 'stop', 'auto'] }
679 # @MirrorSyncMode:
681 # An enumeration of possible behaviors for the initial synchronization
682 # phase of storage mirroring.
684 # @top: copies data in the topmost image to the destination
686 # @full: copies data from all images to the destination
688 # @none: only copy data written from now on
690 # @incremental: only copy data described by the dirty bitmap. Since: 2.4
692 # Since: 1.3
694 { 'enum': 'MirrorSyncMode',
695   'data': ['top', 'full', 'none', 'incremental'] }
698 # @BlockJobType:
700 # Type of a block job.
702 # @commit: block commit job type, see "block-commit"
704 # @stream: block stream job type, see "block-stream"
706 # @mirror: drive mirror job type, see "drive-mirror"
708 # @backup: drive backup job type, see "drive-backup"
710 # Since: 1.7
712 { 'enum': 'BlockJobType',
713   'data': ['commit', 'stream', 'mirror', 'backup'] }
716 # @BlockJobInfo:
718 # Information about a long-running block device operation.
720 # @type: the job type ('stream' for image streaming)
722 # @device: The job identifier. Originally the device name but other
723 #          values are allowed since QEMU 2.7
725 # @len: the maximum progress value
727 # @busy: false if the job is known to be in a quiescent state, with
728 #        no pending I/O.  Since 1.3.
730 # @paused: whether the job is paused or, if @busy is true, will
731 #          pause itself as soon as possible.  Since 1.3.
733 # @offset: the current progress value
735 # @speed: the rate limit, bytes per second
737 # @io-status: the status of the job (since 1.3)
739 # @ready: true if the job may be completed (since 2.2)
741 # Since: 1.1
743 { 'struct': 'BlockJobInfo',
744   'data': {'type': 'str', 'device': 'str', 'len': 'int',
745            'offset': 'int', 'busy': 'bool', 'paused': 'bool', 'speed': 'int',
746            'io-status': 'BlockDeviceIoStatus', 'ready': 'bool'} }
749 # @query-block-jobs:
751 # Return information about long-running block device operations.
753 # Returns: a list of @BlockJobInfo for each active block job
755 # Since: 1.1
757 { 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }
760 # @block_passwd:
762 # This command sets the password of a block device that has not been open
763 # with a password and requires one.
765 # The two cases where this can happen are a block device is created through
766 # QEMU's initial command line or a block device is changed through the legacy
767 # @change interface.
769 # In the event that the block device is created through the initial command
770 # line, the VM will start in the stopped state regardless of whether '-S' is
771 # used.  The intention is for a management tool to query the block devices to
772 # determine which ones are encrypted, set the passwords with this command, and
773 # then start the guest with the @cont command.
775 # Either @device or @node-name must be set but not both.
777 # @device: #optional the name of the block backend device to set the password on
779 # @node-name: #optional graph node name to set the password on (Since 2.0)
781 # @password: the password to use for the device
783 # Returns: nothing on success
784 #          If @device is not a valid block device, DeviceNotFound
785 #          If @device is not encrypted, DeviceNotEncrypted
787 # Notes:  Not all block formats support encryption and some that do are not
788 #         able to validate that a password is correct.  Disk corruption may
789 #         occur if an invalid password is specified.
791 # Since: 0.14.0
793 { 'command': 'block_passwd', 'data': {'*device': 'str',
794                                       '*node-name': 'str', 'password': 'str'} }
797 # @block_resize
799 # Resize a block image while a guest is running.
801 # Either @device or @node-name must be set but not both.
803 # @device: #optional the name of the device to get the image resized
805 # @node-name: #optional graph node name to get the image resized (Since 2.0)
807 # @size:  new image size in bytes
809 # Returns: nothing on success
810 #          If @device is not a valid block device, DeviceNotFound
812 # Since: 0.14.0
814 { 'command': 'block_resize', 'data': { '*device': 'str',
815                                        '*node-name': 'str',
816                                        'size': 'int' }}
819 # @NewImageMode
821 # An enumeration that tells QEMU how to set the backing file path in
822 # a new image file.
824 # @existing: QEMU should look for an existing image file.
826 # @absolute-paths: QEMU should create a new image with absolute paths
827 # for the backing file. If there is no backing file available, the new
828 # image will not be backed either.
830 # Since: 1.1
832 { 'enum': 'NewImageMode',
833   'data': [ 'existing', 'absolute-paths' ] }
836 # @BlockdevSnapshotSync
838 # Either @device or @node-name must be set but not both.
840 # @device: #optional the name of the device to generate the snapshot from.
842 # @node-name: #optional graph node name to generate the snapshot from (Since 2.0)
844 # @snapshot-file: the target of the new image. A new file will be created.
846 # @snapshot-node-name: #optional the graph node name of the new image (Since 2.0)
848 # @format: #optional the format of the snapshot image, default is 'qcow2'.
850 # @mode: #optional whether and how QEMU should create a new image, default is
851 #        'absolute-paths'.
853 { 'struct': 'BlockdevSnapshotSync',
854   'data': { '*device': 'str', '*node-name': 'str',
855             'snapshot-file': 'str', '*snapshot-node-name': 'str',
856             '*format': 'str', '*mode': 'NewImageMode' } }
859 # @BlockdevSnapshot
861 # @node: device or node name that will have a snapshot created.
863 # @overlay: reference to the existing block device that will become
864 #           the overlay of @node, as part of creating the snapshot.
865 #           It must not have a current backing file (this can be
866 #           achieved by passing "backing": "" to blockdev-add).
868 # Since 2.5
870 { 'struct': 'BlockdevSnapshot',
871   'data': { 'node': 'str', 'overlay': 'str' } }
874 # @DriveBackup
876 # @job-id: #optional identifier for the newly-created block job. If
877 #          omitted, the device name will be used. (Since 2.7)
879 # @device: the name of the device which should be copied.
881 # @target: the target of the new image. If the file exists, or if it
882 #          is a device, the existing file/device will be used as the new
883 #          destination.  If it does not exist, a new file will be created.
885 # @format: #optional the format of the new destination, default is to
886 #          probe if @mode is 'existing', else the format of the source
888 # @sync: what parts of the disk image should be copied to the destination
889 #        (all the disk, only the sectors allocated in the topmost image, from a
890 #        dirty bitmap, or only new I/O).
892 # @mode: #optional whether and how QEMU should create a new image, default is
893 #        'absolute-paths'.
895 # @speed: #optional the maximum speed, in bytes per second
897 # @bitmap: #optional the name of dirty bitmap if sync is "incremental".
898 #          Must be present if sync is "incremental", must NOT be present
899 #          otherwise. (Since 2.4)
901 # @on-source-error: #optional the action to take on an error on the source,
902 #                   default 'report'.  'stop' and 'enospc' can only be used
903 #                   if the block device supports io-status (see BlockInfo).
905 # @on-target-error: #optional the action to take on an error on the target,
906 #                   default 'report' (no limitations, since this applies to
907 #                   a different block device than @device).
909 # Note that @on-source-error and @on-target-error only affect background I/O.
910 # If an error occurs during a guest write request, the device's rerror/werror
911 # actions will be used.
913 # Since: 1.6
915 { 'struct': 'DriveBackup',
916   'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
917             '*format': 'str', 'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
918             '*speed': 'int', '*bitmap': 'str',
919             '*on-source-error': 'BlockdevOnError',
920             '*on-target-error': 'BlockdevOnError' } }
923 # @BlockdevBackup
925 # @job-id: #optional identifier for the newly-created block job. If
926 #          omitted, the device name will be used. (Since 2.7)
928 # @device: the name of the device which should be copied.
930 # @target: the device name or node-name of the backup target node.
932 # @sync: what parts of the disk image should be copied to the destination
933 #        (all the disk, only the sectors allocated in the topmost image, or
934 #        only new I/O).
936 # @speed: #optional the maximum speed, in bytes per second. The default is 0,
937 #         for unlimited.
939 # @on-source-error: #optional the action to take on an error on the source,
940 #                   default 'report'.  'stop' and 'enospc' can only be used
941 #                   if the block device supports io-status (see BlockInfo).
943 # @on-target-error: #optional the action to take on an error on the target,
944 #                   default 'report' (no limitations, since this applies to
945 #                   a different block device than @device).
947 # Note that @on-source-error and @on-target-error only affect background I/O.
948 # If an error occurs during a guest write request, the device's rerror/werror
949 # actions will be used.
951 # Since: 2.3
953 { 'struct': 'BlockdevBackup',
954   'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
955             'sync': 'MirrorSyncMode',
956             '*speed': 'int',
957             '*on-source-error': 'BlockdevOnError',
958             '*on-target-error': 'BlockdevOnError' } }
961 # @blockdev-snapshot-sync
963 # Generates a synchronous snapshot of a block device.
965 # For the arguments, see the documentation of BlockdevSnapshotSync.
967 # Returns: nothing on success
968 #          If @device is not a valid block device, DeviceNotFound
970 # Since 0.14.0
972 { 'command': 'blockdev-snapshot-sync',
973   'data': 'BlockdevSnapshotSync' }
977 # @blockdev-snapshot
979 # Generates a snapshot of a block device.
981 # For the arguments, see the documentation of BlockdevSnapshot.
983 # Since 2.5
985 { 'command': 'blockdev-snapshot',
986   'data': 'BlockdevSnapshot' }
989 # @change-backing-file
991 # Change the backing file in the image file metadata.  This does not
992 # cause QEMU to reopen the image file to reparse the backing filename
993 # (it may, however, perform a reopen to change permissions from
994 # r/o -> r/w -> r/o, if needed). The new backing file string is written
995 # into the image file metadata, and the QEMU internal strings are
996 # updated.
998 # @image-node-name: The name of the block driver state node of the
999 #                   image to modify.
1001 # @device:          The name of the device that owns image-node-name.
1003 # @backing-file:    The string to write as the backing file.  This
1004 #                   string is not validated, so care should be taken
1005 #                   when specifying the string or the image chain may
1006 #                   not be able to be reopened again.
1008 # Since: 2.1
1010 { 'command': 'change-backing-file',
1011   'data': { 'device': 'str', 'image-node-name': 'str',
1012             'backing-file': 'str' } }
1015 # @block-commit
1017 # Live commit of data from overlay image nodes into backing nodes - i.e.,
1018 # writes data between 'top' and 'base' into 'base'.
1020 # @job-id: #optional identifier for the newly-created block job. If
1021 #          omitted, the device name will be used. (Since 2.7)
1023 # @device:  the name of the device
1025 # @base:   #optional The file name of the backing image to write data into.
1026 #                    If not specified, this is the deepest backing image
1028 # @top:    #optional The file name of the backing image within the image chain,
1029 #                    which contains the topmost data to be committed down. If
1030 #                    not specified, this is the active layer.
1032 # @backing-file:  #optional The backing file string to write into the overlay
1033 #                           image of 'top'.  If 'top' is the active layer,
1034 #                           specifying a backing file string is an error. This
1035 #                           filename is not validated.
1037 #                           If a pathname string is such that it cannot be
1038 #                           resolved by QEMU, that means that subsequent QMP or
1039 #                           HMP commands must use node-names for the image in
1040 #                           question, as filename lookup methods will fail.
1042 #                           If not specified, QEMU will automatically determine
1043 #                           the backing file string to use, or error out if
1044 #                           there is no obvious choice. Care should be taken
1045 #                           when specifying the string, to specify a valid
1046 #                           filename or protocol.
1047 #                           (Since 2.1)
1049 #                    If top == base, that is an error.
1050 #                    If top == active, the job will not be completed by itself,
1051 #                    user needs to complete the job with the block-job-complete
1052 #                    command after getting the ready event. (Since 2.0)
1054 #                    If the base image is smaller than top, then the base image
1055 #                    will be resized to be the same size as top.  If top is
1056 #                    smaller than the base image, the base will not be
1057 #                    truncated.  If you want the base image size to match the
1058 #                    size of the smaller top, you can safely truncate it
1059 #                    yourself once the commit operation successfully completes.
1061 # @speed:  #optional the maximum speed, in bytes per second
1063 # Returns: Nothing on success
1064 #          If commit or stream is already active on this device, DeviceInUse
1065 #          If @device does not exist, DeviceNotFound
1066 #          If image commit is not supported by this device, NotSupported
1067 #          If @base or @top is invalid, a generic error is returned
1068 #          If @speed is invalid, InvalidParameter
1070 # Since: 1.3
1073 { 'command': 'block-commit',
1074   'data': { '*job-id': 'str', 'device': 'str', '*base': 'str', '*top': 'str',
1075             '*backing-file': 'str', '*speed': 'int' } }
1078 # @drive-backup
1080 # Start a point-in-time copy of a block device to a new destination.  The
1081 # status of ongoing drive-backup operations can be checked with
1082 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1083 # The operation can be stopped before it has completed using the
1084 # block-job-cancel command.
1086 # For the arguments, see the documentation of DriveBackup.
1088 # Returns: nothing on success
1089 #          If @device is not a valid block device, DeviceNotFound
1091 # Since 1.6
1093 { 'command': 'drive-backup', 'data': 'DriveBackup' }
1096 # @blockdev-backup
1098 # Start a point-in-time copy of a block device to a new destination.  The
1099 # status of ongoing blockdev-backup operations can be checked with
1100 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1101 # The operation can be stopped before it has completed using the
1102 # block-job-cancel command.
1104 # For the arguments, see the documentation of BlockdevBackup.
1106 # Since 2.3
1108 { 'command': 'blockdev-backup', 'data': 'BlockdevBackup' }
1112 # @query-named-block-nodes
1114 # Get the named block driver list
1116 # Returns: the list of BlockDeviceInfo
1118 # Since 2.0
1120 { 'command': 'query-named-block-nodes', 'returns': [ 'BlockDeviceInfo' ] }
1123 # @drive-mirror
1125 # Start mirroring a block device's writes to a new destination.
1127 # See DriveMirror for parameter descriptions
1129 # Returns: nothing on success
1130 #          If @device is not a valid block device, DeviceNotFound
1132 # Since 1.3
1134 { 'command': 'drive-mirror', 'boxed': true,
1135   'data': 'DriveMirror' }
1138 # DriveMirror
1140 # A set of parameters describing drive mirror setup.
1142 # @job-id: #optional identifier for the newly-created block job. If
1143 #          omitted, the device name will be used. (Since 2.7)
1145 # @device:  the name of the device whose writes should be mirrored.
1147 # @target: the target of the new image. If the file exists, or if it
1148 #          is a device, the existing file/device will be used as the new
1149 #          destination.  If it does not exist, a new file will be created.
1151 # @format: #optional the format of the new destination, default is to
1152 #          probe if @mode is 'existing', else the format of the source
1154 # @node-name: #optional the new block driver state node name in the graph
1155 #             (Since 2.1)
1157 # @replaces: #optional with sync=full graph node name to be replaced by the new
1158 #            image when a whole image copy is done. This can be used to repair
1159 #            broken Quorum files. (Since 2.1)
1161 # @mode: #optional whether and how QEMU should create a new image, default is
1162 #        'absolute-paths'.
1164 # @speed:  #optional the maximum speed, in bytes per second
1166 # @sync: what parts of the disk image should be copied to the destination
1167 #        (all the disk, only the sectors allocated in the topmost image, or
1168 #        only new I/O).
1170 # @granularity: #optional granularity of the dirty bitmap, default is 64K
1171 #               if the image format doesn't have clusters, 4K if the clusters
1172 #               are smaller than that, else the cluster size.  Must be a
1173 #               power of 2 between 512 and 64M (since 1.4).
1175 # @buf-size: #optional maximum amount of data in flight from source to
1176 #            target (since 1.4).
1178 # @on-source-error: #optional the action to take on an error on the source,
1179 #                   default 'report'.  'stop' and 'enospc' can only be used
1180 #                   if the block device supports io-status (see BlockInfo).
1182 # @on-target-error: #optional the action to take on an error on the target,
1183 #                   default 'report' (no limitations, since this applies to
1184 #                   a different block device than @device).
1185 # @unmap: #optional Whether to try to unmap target sectors where source has
1186 #         only zero. If true, and target unallocated sectors will read as zero,
1187 #         target image sectors will be unmapped; otherwise, zeroes will be
1188 #         written. Both will result in identical contents.
1189 #         Default is true. (Since 2.4)
1191 # Since 1.3
1193 { 'struct': 'DriveMirror',
1194   'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1195             '*format': 'str', '*node-name': 'str', '*replaces': 'str',
1196             'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
1197             '*speed': 'int', '*granularity': 'uint32',
1198             '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1199             '*on-target-error': 'BlockdevOnError',
1200             '*unmap': 'bool' } }
1203 # @BlockDirtyBitmap
1205 # @node: name of device/node which the bitmap is tracking
1207 # @name: name of the dirty bitmap
1209 # Since 2.4
1211 { 'struct': 'BlockDirtyBitmap',
1212   'data': { 'node': 'str', 'name': 'str' } }
1215 # @BlockDirtyBitmapAdd
1217 # @node: name of device/node which the bitmap is tracking
1219 # @name: name of the dirty bitmap
1221 # @granularity: #optional the bitmap granularity, default is 64k for
1222 #               block-dirty-bitmap-add
1224 # Since 2.4
1226 { 'struct': 'BlockDirtyBitmapAdd',
1227   'data': { 'node': 'str', 'name': 'str', '*granularity': 'uint32' } }
1230 # @block-dirty-bitmap-add
1232 # Create a dirty bitmap with a name on the node
1234 # Returns: nothing on success
1235 #          If @node is not a valid block device or node, DeviceNotFound
1236 #          If @name is already taken, GenericError with an explanation
1238 # Since 2.4
1240 { 'command': 'block-dirty-bitmap-add',
1241   'data': 'BlockDirtyBitmapAdd' }
1244 # @block-dirty-bitmap-remove
1246 # Remove a dirty bitmap on the node
1248 # Returns: nothing on success
1249 #          If @node is not a valid block device or node, DeviceNotFound
1250 #          If @name is not found, GenericError with an explanation
1251 #          if @name is frozen by an operation, GenericError
1253 # Since 2.4
1255 { 'command': 'block-dirty-bitmap-remove',
1256   'data': 'BlockDirtyBitmap' }
1259 # @block-dirty-bitmap-clear
1261 # Clear (reset) a dirty bitmap on the device
1263 # Returns: nothing on success
1264 #          If @node is not a valid block device, DeviceNotFound
1265 #          If @name is not found, GenericError with an explanation
1267 # Since 2.4
1269 { 'command': 'block-dirty-bitmap-clear',
1270   'data': 'BlockDirtyBitmap' }
1273 # @blockdev-mirror
1275 # Start mirroring a block device's writes to a new destination.
1277 # @job-id: #optional identifier for the newly-created block job. If
1278 #          omitted, the device name will be used. (Since 2.7)
1280 # @device: the name of the device whose writes should be mirrored.
1282 # @target: the id or node-name of the block device to mirror to. This mustn't be
1283 #          attached to guest.
1285 # @replaces: #optional with sync=full graph node name to be replaced by the new
1286 #            image when a whole image copy is done. This can be used to repair
1287 #            broken Quorum files.
1289 # @speed:  #optional the maximum speed, in bytes per second
1291 # @sync: what parts of the disk image should be copied to the destination
1292 #        (all the disk, only the sectors allocated in the topmost image, or
1293 #        only new I/O).
1295 # @granularity: #optional granularity of the dirty bitmap, default is 64K
1296 #               if the image format doesn't have clusters, 4K if the clusters
1297 #               are smaller than that, else the cluster size.  Must be a
1298 #               power of 2 between 512 and 64M
1300 # @buf-size: #optional maximum amount of data in flight from source to
1301 #            target
1303 # @on-source-error: #optional the action to take on an error on the source,
1304 #                   default 'report'.  'stop' and 'enospc' can only be used
1305 #                   if the block device supports io-status (see BlockInfo).
1307 # @on-target-error: #optional the action to take on an error on the target,
1308 #                   default 'report' (no limitations, since this applies to
1309 #                   a different block device than @device).
1311 # Returns: nothing on success.
1313 # Since 2.6
1315 { 'command': 'blockdev-mirror',
1316   'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1317             '*replaces': 'str',
1318             'sync': 'MirrorSyncMode',
1319             '*speed': 'int', '*granularity': 'uint32',
1320             '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1321             '*on-target-error': 'BlockdevOnError' } }
1324 # @block_set_io_throttle:
1326 # Change I/O throttle limits for a block drive.
1328 # Since QEMU 2.4, each device with I/O limits is member of a throttle
1329 # group.
1331 # If two or more devices are members of the same group, the limits
1332 # will apply to the combined I/O of the whole group in a round-robin
1333 # fashion. Therefore, setting new I/O limits to a device will affect
1334 # the whole group.
1336 # The name of the group can be specified using the 'group' parameter.
1337 # If the parameter is unset, it is assumed to be the current group of
1338 # that device. If it's not in any group yet, the name of the device
1339 # will be used as the name for its group.
1341 # The 'group' parameter can also be used to move a device to a
1342 # different group. In this case the limits specified in the parameters
1343 # will be applied to the new group only.
1345 # I/O limits can be disabled by setting all of them to 0. In this case
1346 # the device will be removed from its group and the rest of its
1347 # members will not be affected. The 'group' parameter is ignored.
1349 # See BlockIOThrottle for parameter descriptions.
1351 # Returns: Nothing on success
1352 #          If @device is not a valid block device, DeviceNotFound
1354 # Since: 1.1
1356 { 'command': 'block_set_io_throttle', 'boxed': true,
1357   'data': 'BlockIOThrottle' }
1360 # BlockIOThrottle
1362 # A set of parameters describing block throttling.
1364 # @device: The name of the device
1366 # @bps: total throughput limit in bytes per second
1368 # @bps_rd: read throughput limit in bytes per second
1370 # @bps_wr: write throughput limit in bytes per second
1372 # @iops: total I/O operations per second
1374 # @iops_rd: read I/O operations per second
1376 # @iops_wr: write I/O operations per second
1378 # @bps_max: #optional total throughput limit during bursts,
1379 #                     in bytes (Since 1.7)
1381 # @bps_rd_max: #optional read throughput limit during bursts,
1382 #                        in bytes (Since 1.7)
1384 # @bps_wr_max: #optional write throughput limit during bursts,
1385 #                        in bytes (Since 1.7)
1387 # @iops_max: #optional total I/O operations per second during bursts,
1388 #                      in bytes (Since 1.7)
1390 # @iops_rd_max: #optional read I/O operations per second during bursts,
1391 #                         in bytes (Since 1.7)
1393 # @iops_wr_max: #optional write I/O operations per second during bursts,
1394 #                         in bytes (Since 1.7)
1396 # @bps_max_length: #optional maximum length of the @bps_max burst
1397 #                            period, in seconds. It must only
1398 #                            be set if @bps_max is set as well.
1399 #                            Defaults to 1. (Since 2.6)
1401 # @bps_rd_max_length: #optional maximum length of the @bps_rd_max
1402 #                               burst period, in seconds. It must only
1403 #                               be set if @bps_rd_max is set as well.
1404 #                               Defaults to 1. (Since 2.6)
1406 # @bps_wr_max_length: #optional maximum length of the @bps_wr_max
1407 #                               burst period, in seconds. It must only
1408 #                               be set if @bps_wr_max is set as well.
1409 #                               Defaults to 1. (Since 2.6)
1411 # @iops_max_length: #optional maximum length of the @iops burst
1412 #                             period, in seconds. It must only
1413 #                             be set if @iops_max is set as well.
1414 #                             Defaults to 1. (Since 2.6)
1416 # @iops_rd_max_length: #optional maximum length of the @iops_rd_max
1417 #                                burst period, in seconds. It must only
1418 #                                be set if @iops_rd_max is set as well.
1419 #                                Defaults to 1. (Since 2.6)
1421 # @iops_wr_max_length: #optional maximum length of the @iops_wr_max
1422 #                                burst period, in seconds. It must only
1423 #                                be set if @iops_wr_max is set as well.
1424 #                                Defaults to 1. (Since 2.6)
1426 # @iops_size: #optional an I/O size in bytes (Since 1.7)
1428 # @group: #optional throttle group name (Since 2.4)
1430 # Since: 1.1
1432 { 'struct': 'BlockIOThrottle',
1433   'data': { 'device': 'str', 'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
1434             'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
1435             '*bps_max': 'int', '*bps_rd_max': 'int',
1436             '*bps_wr_max': 'int', '*iops_max': 'int',
1437             '*iops_rd_max': 'int', '*iops_wr_max': 'int',
1438             '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
1439             '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
1440             '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
1441             '*iops_size': 'int', '*group': 'str' } }
1444 # @block-stream:
1446 # Copy data from a backing file into a block device.
1448 # The block streaming operation is performed in the background until the entire
1449 # backing file has been copied.  This command returns immediately once streaming
1450 # has started.  The status of ongoing block streaming operations can be checked
1451 # with query-block-jobs.  The operation can be stopped before it has completed
1452 # using the block-job-cancel command.
1454 # If a base file is specified then sectors are not copied from that base file and
1455 # its backing chain.  When streaming completes the image file will have the base
1456 # file as its backing file.  This can be used to stream a subset of the backing
1457 # file chain instead of flattening the entire image.
1459 # On successful completion the image file is updated to drop the backing file
1460 # and the BLOCK_JOB_COMPLETED event is emitted.
1462 # @job-id: #optional identifier for the newly-created block job. If
1463 #          omitted, the device name will be used. (Since 2.7)
1465 # @device: the device name
1467 # @base:   #optional the common backing file name
1469 # @backing-file: #optional The backing file string to write into the active
1470 #                          layer. This filename is not validated.
1472 #                          If a pathname string is such that it cannot be
1473 #                          resolved by QEMU, that means that subsequent QMP or
1474 #                          HMP commands must use node-names for the image in
1475 #                          question, as filename lookup methods will fail.
1477 #                          If not specified, QEMU will automatically determine
1478 #                          the backing file string to use, or error out if there
1479 #                          is no obvious choice.  Care should be taken when
1480 #                          specifying the string, to specify a valid filename or
1481 #                          protocol.
1482 #                          (Since 2.1)
1484 # @speed:  #optional the maximum speed, in bytes per second
1486 # @on-error: #optional the action to take on an error (default report).
1487 #            'stop' and 'enospc' can only be used if the block device
1488 #            supports io-status (see BlockInfo).  Since 1.3.
1490 # Returns: Nothing on success
1491 #          If @device does not exist, DeviceNotFound
1493 # Since: 1.1
1495 { 'command': 'block-stream',
1496   'data': { '*job-id': 'str', 'device': 'str', '*base': 'str',
1497             '*backing-file': 'str', '*speed': 'int',
1498             '*on-error': 'BlockdevOnError' } }
1501 # @block-job-set-speed:
1503 # Set maximum speed for a background block operation.
1505 # This command can only be issued when there is an active block job.
1507 # Throttling can be disabled by setting the speed to 0.
1509 # @device: The job identifier. This used to be a device name (hence
1510 #          the name of the parameter), but since QEMU 2.7 it can have
1511 #          other values.
1513 # @speed:  the maximum speed, in bytes per second, or 0 for unlimited.
1514 #          Defaults to 0.
1516 # Returns: Nothing on success
1517 #          If no background operation is active on this device, DeviceNotActive
1519 # Since: 1.1
1521 { 'command': 'block-job-set-speed',
1522   'data': { 'device': 'str', 'speed': 'int' } }
1525 # @block-job-cancel:
1527 # Stop an active background block operation.
1529 # This command returns immediately after marking the active background block
1530 # operation for cancellation.  It is an error to call this command if no
1531 # operation is in progress.
1533 # The operation will cancel as soon as possible and then emit the
1534 # BLOCK_JOB_CANCELLED event.  Before that happens the job is still visible when
1535 # enumerated using query-block-jobs.
1537 # For streaming, the image file retains its backing file unless the streaming
1538 # operation happens to complete just as it is being cancelled.  A new streaming
1539 # operation can be started at a later time to finish copying all data from the
1540 # backing file.
1542 # @device: The job identifier. This used to be a device name (hence
1543 #          the name of the parameter), but since QEMU 2.7 it can have
1544 #          other values.
1546 # @force: #optional whether to allow cancellation of a paused job (default
1547 #         false).  Since 1.3.
1549 # Returns: Nothing on success
1550 #          If no background operation is active on this device, DeviceNotActive
1552 # Since: 1.1
1554 { 'command': 'block-job-cancel', 'data': { 'device': 'str', '*force': 'bool' } }
1557 # @block-job-pause:
1559 # Pause an active background block operation.
1561 # This command returns immediately after marking the active background block
1562 # operation for pausing.  It is an error to call this command if no
1563 # operation is in progress.  Pausing an already paused job has no cumulative
1564 # effect; a single block-job-resume command will resume the job.
1566 # The operation will pause as soon as possible.  No event is emitted when
1567 # the operation is actually paused.  Cancelling a paused job automatically
1568 # resumes it.
1570 # @device: The job identifier. This used to be a device name (hence
1571 #          the name of the parameter), but since QEMU 2.7 it can have
1572 #          other values.
1574 # Returns: Nothing on success
1575 #          If no background operation is active on this device, DeviceNotActive
1577 # Since: 1.3
1579 { 'command': 'block-job-pause', 'data': { 'device': 'str' } }
1582 # @block-job-resume:
1584 # Resume an active background block operation.
1586 # This command returns immediately after resuming a paused background block
1587 # operation.  It is an error to call this command if no operation is in
1588 # progress.  Resuming an already running job is not an error.
1590 # This command also clears the error status of the job.
1592 # @device: The job identifier. This used to be a device name (hence
1593 #          the name of the parameter), but since QEMU 2.7 it can have
1594 #          other values.
1596 # Returns: Nothing on success
1597 #          If no background operation is active on this device, DeviceNotActive
1599 # Since: 1.3
1601 { 'command': 'block-job-resume', 'data': { 'device': 'str' } }
1604 # @block-job-complete:
1606 # Manually trigger completion of an active background block operation.  This
1607 # is supported for drive mirroring, where it also switches the device to
1608 # write to the target path only.  The ability to complete is signaled with
1609 # a BLOCK_JOB_READY event.
1611 # This command completes an active background block operation synchronously.
1612 # The ordering of this command's return with the BLOCK_JOB_COMPLETED event
1613 # is not defined.  Note that if an I/O error occurs during the processing of
1614 # this command: 1) the command itself will fail; 2) the error will be processed
1615 # according to the rerror/werror arguments that were specified when starting
1616 # the operation.
1618 # A cancelled or paused job cannot be completed.
1620 # @device: The job identifier. This used to be a device name (hence
1621 #          the name of the parameter), but since QEMU 2.7 it can have
1622 #          other values.
1624 # Returns: Nothing on success
1625 #          If no background operation is active on this device, DeviceNotActive
1627 # Since: 1.3
1629 { 'command': 'block-job-complete', 'data': { 'device': 'str' } }
1632 # @BlockdevDiscardOptions
1634 # Determines how to handle discard requests.
1636 # @ignore:      Ignore the request
1637 # @unmap:       Forward as an unmap request
1639 # Since: 1.7
1641 { 'enum': 'BlockdevDiscardOptions',
1642   'data': [ 'ignore', 'unmap' ] }
1645 # @BlockdevDetectZeroesOptions
1647 # Describes the operation mode for the automatic conversion of plain
1648 # zero writes by the OS to driver specific optimized zero write commands.
1650 # @off:      Disabled (default)
1651 # @on:       Enabled
1652 # @unmap:    Enabled and even try to unmap blocks if possible. This requires
1653 #            also that @BlockdevDiscardOptions is set to unmap for this device.
1655 # Since: 2.1
1657 { 'enum': 'BlockdevDetectZeroesOptions',
1658   'data': [ 'off', 'on', 'unmap' ] }
1661 # @BlockdevAioOptions
1663 # Selects the AIO backend to handle I/O requests
1665 # @threads:     Use qemu's thread pool
1666 # @native:      Use native AIO backend (only Linux and Windows)
1668 # Since: 1.7
1670 { 'enum': 'BlockdevAioOptions',
1671   'data': [ 'threads', 'native' ] }
1674 # @BlockdevCacheOptions
1676 # Includes cache-related options for block devices
1678 # @direct:      #optional enables use of O_DIRECT (bypass the host page cache;
1679 #               default: false)
1680 # @no-flush:    #optional ignore any flush requests for the device (default:
1681 #               false)
1683 # Since: 1.7
1685 { 'struct': 'BlockdevCacheOptions',
1686   'data': { '*direct': 'bool',
1687             '*no-flush': 'bool' } }
1690 # @BlockdevDriver
1692 # Drivers that are supported in block device operations.
1694 # @host_device, @host_cdrom: Since 2.1
1695 # @gluster: Since 2.7
1697 # Since: 2.0
1699 { 'enum': 'BlockdevDriver',
1700   'data': [ 'archipelago', 'blkdebug', 'blkverify', 'bochs', 'cloop',
1701             'dmg', 'file', 'ftp', 'ftps', 'gluster', 'host_cdrom',
1702             'host_device', 'http', 'https', 'luks', 'null-aio', 'null-co',
1703             'parallels', 'qcow', 'qcow2', 'qed', 'quorum', 'raw', 'tftp',
1704             'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat' ] }
1707 # @BlockdevOptionsFile
1709 # Driver specific block device options for the file backend and similar
1710 # protocols.
1712 # @filename:    path to the image file
1714 # Since: 1.7
1716 { 'struct': 'BlockdevOptionsFile',
1717   'data': { 'filename': 'str' } }
1720 # @BlockdevOptionsNull
1722 # Driver specific block device options for the null backend.
1724 # @size:    #optional size of the device in bytes.
1725 # @latency-ns: #optional emulated latency (in nanoseconds) in processing
1726 #              requests. Default to zero which completes requests immediately.
1727 #              (Since 2.4)
1729 # Since: 2.2
1731 { 'struct': 'BlockdevOptionsNull',
1732   'data': { '*size': 'int', '*latency-ns': 'uint64' } }
1735 # @BlockdevOptionsVVFAT
1737 # Driver specific block device options for the vvfat protocol.
1739 # @dir:         directory to be exported as FAT image
1740 # @fat-type:    #optional FAT type: 12, 16 or 32
1741 # @floppy:      #optional whether to export a floppy image (true) or
1742 #               partitioned hard disk (false; default)
1743 # @label:       #optional set the volume label, limited to 11 bytes. FAT16 and
1744 #               FAT32 traditionally have some restrictions on labels, which are
1745 #               ignored by most operating systems. Defaults to "QEMU VVFAT".
1746 #               (since 2.4)
1747 # @rw:          #optional whether to allow write operations (default: false)
1749 # Since: 1.7
1751 { 'struct': 'BlockdevOptionsVVFAT',
1752   'data': { 'dir': 'str', '*fat-type': 'int', '*floppy': 'bool',
1753             '*label': 'str', '*rw': 'bool' } }
1756 # @BlockdevOptionsGenericFormat
1758 # Driver specific block device options for image format that have no option
1759 # besides their data source.
1761 # @file:        reference to or definition of the data source block device
1763 # Since: 1.7
1765 { 'struct': 'BlockdevOptionsGenericFormat',
1766   'data': { 'file': 'BlockdevRef' } }
1769 # @BlockdevOptionsLUKS
1771 # Driver specific block device options for LUKS.
1773 # @key-secret: #optional the ID of a QCryptoSecret object providing
1774 #              the decryption key (since 2.6). Mandatory except when
1775 #              doing a metadata-only probe of the image.
1777 # Since: 2.6
1779 { 'struct': 'BlockdevOptionsLUKS',
1780   'base': 'BlockdevOptionsGenericFormat',
1781   'data': { '*key-secret': 'str' } }
1785 # @BlockdevOptionsGenericCOWFormat
1787 # Driver specific block device options for image format that have no option
1788 # besides their data source and an optional backing file.
1790 # @backing:     #optional reference to or definition of the backing file block
1791 #               device (if missing, taken from the image file content). It is
1792 #               allowed to pass an empty string here in order to disable the
1793 #               default backing file.
1795 # Since: 1.7
1797 { 'struct': 'BlockdevOptionsGenericCOWFormat',
1798   'base': 'BlockdevOptionsGenericFormat',
1799   'data': { '*backing': 'BlockdevRef' } }
1802 # @Qcow2OverlapCheckMode
1804 # General overlap check modes.
1806 # @none:        Do not perform any checks
1808 # @constant:    Perform only checks which can be done in constant time and
1809 #               without reading anything from disk
1811 # @cached:      Perform only checks which can be done without reading anything
1812 #               from disk
1814 # @all:         Perform all available overlap checks
1816 # Since: 2.2
1818 { 'enum': 'Qcow2OverlapCheckMode',
1819   'data': [ 'none', 'constant', 'cached', 'all' ] }
1822 # @Qcow2OverlapCheckFlags
1824 # Structure of flags for each metadata structure. Setting a field to 'true'
1825 # makes qemu guard that structure against unintended overwriting. The default
1826 # value is chosen according to the template given.
1828 # @template: Specifies a template mode which can be adjusted using the other
1829 #            flags, defaults to 'cached'
1831 # Since: 2.2
1833 { 'struct': 'Qcow2OverlapCheckFlags',
1834   'data': { '*template':       'Qcow2OverlapCheckMode',
1835             '*main-header':    'bool',
1836             '*active-l1':      'bool',
1837             '*active-l2':      'bool',
1838             '*refcount-table': 'bool',
1839             '*refcount-block': 'bool',
1840             '*snapshot-table': 'bool',
1841             '*inactive-l1':    'bool',
1842             '*inactive-l2':    'bool' } }
1845 # @Qcow2OverlapChecks
1847 # Specifies which metadata structures should be guarded against unintended
1848 # overwriting.
1850 # @flags:   set of flags for separate specification of each metadata structure
1851 #           type
1853 # @mode:    named mode which chooses a specific set of flags
1855 # Since: 2.2
1857 { 'alternate': 'Qcow2OverlapChecks',
1858   'data': { 'flags': 'Qcow2OverlapCheckFlags',
1859             'mode':  'Qcow2OverlapCheckMode' } }
1862 # @BlockdevOptionsQcow2
1864 # Driver specific block device options for qcow2.
1866 # @lazy-refcounts:        #optional whether to enable the lazy refcounts
1867 #                         feature (default is taken from the image file)
1869 # @pass-discard-request:  #optional whether discard requests to the qcow2
1870 #                         device should be forwarded to the data source
1872 # @pass-discard-snapshot: #optional whether discard requests for the data source
1873 #                         should be issued when a snapshot operation (e.g.
1874 #                         deleting a snapshot) frees clusters in the qcow2 file
1876 # @pass-discard-other:    #optional whether discard requests for the data source
1877 #                         should be issued on other occasions where a cluster
1878 #                         gets freed
1880 # @overlap-check:         #optional which overlap checks to perform for writes
1881 #                         to the image, defaults to 'cached' (since 2.2)
1883 # @cache-size:            #optional the maximum total size of the L2 table and
1884 #                         refcount block caches in bytes (since 2.2)
1886 # @l2-cache-size:         #optional the maximum size of the L2 table cache in
1887 #                         bytes (since 2.2)
1889 # @refcount-cache-size:   #optional the maximum size of the refcount block cache
1890 #                         in bytes (since 2.2)
1892 # @cache-clean-interval:  #optional clean unused entries in the L2 and refcount
1893 #                         caches. The interval is in seconds. The default value
1894 #                         is 0 and it disables this feature (since 2.5)
1896 # Since: 1.7
1898 { 'struct': 'BlockdevOptionsQcow2',
1899   'base': 'BlockdevOptionsGenericCOWFormat',
1900   'data': { '*lazy-refcounts': 'bool',
1901             '*pass-discard-request': 'bool',
1902             '*pass-discard-snapshot': 'bool',
1903             '*pass-discard-other': 'bool',
1904             '*overlap-check': 'Qcow2OverlapChecks',
1905             '*cache-size': 'int',
1906             '*l2-cache-size': 'int',
1907             '*refcount-cache-size': 'int',
1908             '*cache-clean-interval': 'int' } }
1912 # @BlockdevOptionsArchipelago
1914 # Driver specific block device options for Archipelago.
1916 # @volume:              Name of the Archipelago volume image
1918 # @mport:               #optional The port number on which mapperd is
1919 #                       listening. This is optional
1920 #                       and if not specified, QEMU will make Archipelago
1921 #                       use the default port (1001).
1923 # @vport:               #optional The port number on which vlmcd is
1924 #                       listening. This is optional
1925 #                       and if not specified, QEMU will make Archipelago
1926 #                       use the default port (501).
1928 # @segment:             #optional The name of the shared memory segment
1929 #                       Archipelago stack is using. This is optional
1930 #                       and if not specified, QEMU will make Archipelago
1931 #                       use the default value, 'archipelago'.
1932 # Since: 2.2
1934 { 'struct': 'BlockdevOptionsArchipelago',
1935   'data': { 'volume': 'str',
1936             '*mport': 'int',
1937             '*vport': 'int',
1938             '*segment': 'str' } }
1942 # @BlkdebugEvent
1944 # Trigger events supported by blkdebug.
1946 # Since: 2.0
1948 { 'enum': 'BlkdebugEvent', 'prefix': 'BLKDBG',
1949   'data': [ 'l1_update', 'l1_grow_alloc_table', 'l1_grow_write_table',
1950             'l1_grow_activate_table', 'l2_load', 'l2_update',
1951             'l2_update_compressed', 'l2_alloc_cow_read', 'l2_alloc_write',
1952             'read_aio', 'read_backing_aio', 'read_compressed', 'write_aio',
1953             'write_compressed', 'vmstate_load', 'vmstate_save', 'cow_read',
1954             'cow_write', 'reftable_load', 'reftable_grow', 'reftable_update',
1955             'refblock_load', 'refblock_update', 'refblock_update_part',
1956             'refblock_alloc', 'refblock_alloc_hookup', 'refblock_alloc_write',
1957             'refblock_alloc_write_blocks', 'refblock_alloc_write_table',
1958             'refblock_alloc_switch_table', 'cluster_alloc',
1959             'cluster_alloc_bytes', 'cluster_free', 'flush_to_os',
1960             'flush_to_disk', 'pwritev_rmw_head', 'pwritev_rmw_after_head',
1961             'pwritev_rmw_tail', 'pwritev_rmw_after_tail', 'pwritev',
1962             'pwritev_zero', 'pwritev_done', 'empty_image_prepare' ] }
1965 # @BlkdebugInjectErrorOptions
1967 # Describes a single error injection for blkdebug.
1969 # @event:       trigger event
1971 # @state:       #optional the state identifier blkdebug needs to be in to
1972 #               actually trigger the event; defaults to "any"
1974 # @errno:       #optional error identifier (errno) to be returned; defaults to
1975 #               EIO
1977 # @sector:      #optional specifies the sector index which has to be affected
1978 #               in order to actually trigger the event; defaults to "any
1979 #               sector"
1981 # @once:        #optional disables further events after this one has been
1982 #               triggered; defaults to false
1984 # @immediately: #optional fail immediately; defaults to false
1986 # Since: 2.0
1988 { 'struct': 'BlkdebugInjectErrorOptions',
1989   'data': { 'event': 'BlkdebugEvent',
1990             '*state': 'int',
1991             '*errno': 'int',
1992             '*sector': 'int',
1993             '*once': 'bool',
1994             '*immediately': 'bool' } }
1997 # @BlkdebugSetStateOptions
1999 # Describes a single state-change event for blkdebug.
2001 # @event:       trigger event
2003 # @state:       #optional the current state identifier blkdebug needs to be in;
2004 #               defaults to "any"
2006 # @new_state:   the state identifier blkdebug is supposed to assume if
2007 #               this event is triggered
2009 # Since: 2.0
2011 { 'struct': 'BlkdebugSetStateOptions',
2012   'data': { 'event': 'BlkdebugEvent',
2013             '*state': 'int',
2014             'new_state': 'int' } }
2017 # @BlockdevOptionsBlkdebug
2019 # Driver specific block device options for blkdebug.
2021 # @image:           underlying raw block device (or image file)
2023 # @config:          #optional filename of the configuration file
2025 # @align:           #optional required alignment for requests in bytes,
2026 #                   must be power of 2, or 0 for default
2028 # @inject-error:    #optional array of error injection descriptions
2030 # @set-state:       #optional array of state-change descriptions
2032 # Since: 2.0
2034 { 'struct': 'BlockdevOptionsBlkdebug',
2035   'data': { 'image': 'BlockdevRef',
2036             '*config': 'str',
2037             '*align': 'int',
2038             '*inject-error': ['BlkdebugInjectErrorOptions'],
2039             '*set-state': ['BlkdebugSetStateOptions'] } }
2042 # @BlockdevOptionsBlkverify
2044 # Driver specific block device options for blkverify.
2046 # @test:    block device to be tested
2048 # @raw:     raw image used for verification
2050 # Since: 2.0
2052 { 'struct': 'BlockdevOptionsBlkverify',
2053   'data': { 'test': 'BlockdevRef',
2054             'raw': 'BlockdevRef' } }
2057 # @QuorumReadPattern
2059 # An enumeration of quorum read patterns.
2061 # @quorum: read all the children and do a quorum vote on reads
2063 # @fifo: read only from the first child that has not failed
2065 # Since: 2.2
2067 { 'enum': 'QuorumReadPattern', 'data': [ 'quorum', 'fifo' ] }
2070 # @BlockdevOptionsQuorum
2072 # Driver specific block device options for Quorum
2074 # @blkverify:      #optional true if the driver must print content mismatch
2075 #                  set to false by default
2077 # @children:       the children block devices to use
2079 # @vote-threshold: the vote limit under which a read will fail
2081 # @rewrite-corrupted: #optional rewrite corrupted data when quorum is reached
2082 #                     (Since 2.1)
2084 # @read-pattern: #optional choose read pattern and set to quorum by default
2085 #                (Since 2.2)
2087 # Since: 2.0
2089 { 'struct': 'BlockdevOptionsQuorum',
2090   'data': { '*blkverify': 'bool',
2091             'children': [ 'BlockdevRef' ],
2092             'vote-threshold': 'int',
2093             '*rewrite-corrupted': 'bool',
2094             '*read-pattern': 'QuorumReadPattern' } }
2097 # @GlusterTransport
2099 # An enumeration of Gluster transport types
2101 # @tcp:   TCP   - Transmission Control Protocol
2103 # @unix:  UNIX  - Unix domain socket
2105 # Since: 2.7
2107 { 'enum': 'GlusterTransport',
2108   'data': [ 'unix', 'tcp' ] }
2112 # @GlusterServer
2114 # Captures the address of a socket
2116 # Details for connecting to a gluster server
2118 # @type:       Transport type used for gluster connection
2120 # @unix:       socket file
2122 # @tcp:        host address and port number
2124 # Since: 2.7
2126 { 'union': 'GlusterServer',
2127   'base': { 'type': 'GlusterTransport' },
2128   'discriminator': 'type',
2129   'data': { 'unix': 'UnixSocketAddress',
2130             'tcp': 'InetSocketAddress' } }
2133 # @BlockdevOptionsGluster
2135 # Driver specific block device options for Gluster
2137 # @volume:      name of gluster volume where VM image resides
2139 # @path:        absolute path to image file in gluster volume
2141 # @server:      gluster servers description
2143 # @debug-level: #optional libgfapi log level (default '4' which is Error)
2145 # Since: 2.7
2147 { 'struct': 'BlockdevOptionsGluster',
2148   'data': { 'volume': 'str',
2149             'path': 'str',
2150             'server': ['GlusterServer'],
2151             '*debug-level': 'int' } }
2154 # @BlockdevOptions
2156 # Options for creating a block device.  Many options are available for all
2157 # block devices, independent of the block driver:
2159 # @driver:        block driver name
2160 # @id:            #optional id by which the new block device can be referred to.
2161 #                 This option is only allowed on the top level of blockdev-add.
2162 #                 A BlockBackend will be created by blockdev-add if and only if
2163 #                 this option is given.
2164 # @node-name:     #optional the name of a block driver state node (Since 2.0).
2165 #                 This option is required on the top level of blockdev-add if
2166 #                 the @id option is not given there.
2167 # @discard:       #optional discard-related options (default: ignore)
2168 # @cache:         #optional cache-related options
2169 # @aio:           #optional AIO backend (default: threads)
2170 # @read-only:     #optional whether the block device should be read-only
2171 #                 (default: false)
2172 # @detect-zeroes: #optional detect and optimize zero writes (Since 2.1)
2173 #                 (default: off)
2175 # Remaining options are determined by the block driver.
2177 # Since: 1.7
2179 { 'union': 'BlockdevOptions',
2180   'base': { 'driver': 'BlockdevDriver',
2181 # TODO 'id' is a BB-level option, remove it
2182             '*id': 'str',
2183             '*node-name': 'str',
2184             '*discard': 'BlockdevDiscardOptions',
2185             '*cache': 'BlockdevCacheOptions',
2186             '*aio': 'BlockdevAioOptions',
2187             '*read-only': 'bool',
2188             '*detect-zeroes': 'BlockdevDetectZeroesOptions' },
2189   'discriminator': 'driver',
2190   'data': {
2191       'archipelago':'BlockdevOptionsArchipelago',
2192       'blkdebug':   'BlockdevOptionsBlkdebug',
2193       'blkverify':  'BlockdevOptionsBlkverify',
2194       'bochs':      'BlockdevOptionsGenericFormat',
2195       'cloop':      'BlockdevOptionsGenericFormat',
2196       'dmg':        'BlockdevOptionsGenericFormat',
2197       'file':       'BlockdevOptionsFile',
2198       'ftp':        'BlockdevOptionsFile',
2199       'ftps':       'BlockdevOptionsFile',
2200       'gluster':    'BlockdevOptionsGluster',
2201       'host_cdrom': 'BlockdevOptionsFile',
2202       'host_device':'BlockdevOptionsFile',
2203       'http':       'BlockdevOptionsFile',
2204       'https':      'BlockdevOptionsFile',
2205 # TODO iscsi: Wait for structured options
2206       'luks':       'BlockdevOptionsLUKS',
2207 # TODO nbd: Should take InetSocketAddress for 'host'?
2208 # TODO nfs: Wait for structured options
2209       'null-aio':   'BlockdevOptionsNull',
2210       'null-co':    'BlockdevOptionsNull',
2211       'parallels':  'BlockdevOptionsGenericFormat',
2212       'qcow2':      'BlockdevOptionsQcow2',
2213       'qcow':       'BlockdevOptionsGenericCOWFormat',
2214       'qed':        'BlockdevOptionsGenericCOWFormat',
2215       'quorum':     'BlockdevOptionsQuorum',
2216       'raw':        'BlockdevOptionsGenericFormat',
2217 # TODO rbd: Wait for structured options
2218 # TODO sheepdog: Wait for structured options
2219 # TODO ssh: Should take InetSocketAddress for 'host'?
2220       'tftp':       'BlockdevOptionsFile',
2221       'vdi':        'BlockdevOptionsGenericFormat',
2222       'vhdx':       'BlockdevOptionsGenericFormat',
2223       'vmdk':       'BlockdevOptionsGenericCOWFormat',
2224       'vpc':        'BlockdevOptionsGenericFormat',
2225       'vvfat':      'BlockdevOptionsVVFAT'
2226   } }
2229 # @BlockdevRef
2231 # Reference to a block device.
2233 # @definition:      defines a new block device inline
2234 # @reference:       references the ID of an existing block device. An
2235 #                   empty string means that no block device should be
2236 #                   referenced.
2238 # Since: 1.7
2240 { 'alternate': 'BlockdevRef',
2241   'data': { 'definition': 'BlockdevOptions',
2242             'reference': 'str' } }
2245 # @blockdev-add:
2247 # Creates a new block device. If the @id option is given at the top level, a
2248 # BlockBackend will be created; otherwise, @node-name is mandatory at the top
2249 # level and no BlockBackend will be created.
2251 # This command is still a work in progress.  It doesn't support all
2252 # block drivers among other things.  Stay away from it unless you want
2253 # to help with its development.
2255 # @options: block device options for the new device
2257 # Since: 1.7
2259 { 'command': 'blockdev-add', 'data': { 'options': 'BlockdevOptions' } }
2262 # @x-blockdev-del:
2264 # Deletes a block device that has been added using blockdev-add.
2265 # The selected device can be either a block backend or a graph node.
2267 # In the former case the backend will be destroyed, along with its
2268 # inserted medium if there's any. The command will fail if the backend
2269 # or its medium are in use.
2271 # In the latter case the node will be destroyed. The command will fail
2272 # if the node is attached to a block backend or is otherwise being
2273 # used.
2275 # One of @id or @node-name must be specified, but not both.
2277 # This command is still a work in progress and is considered
2278 # experimental. Stay away from it unless you want to help with its
2279 # development.
2281 # @id: #optional Name of the block backend device to delete.
2283 # @node-name: #optional Name of the graph node to delete.
2285 # Since: 2.5
2287 { 'command': 'x-blockdev-del', 'data': { '*id': 'str', '*node-name': 'str' } }
2290 # @blockdev-open-tray:
2292 # Opens a block device's tray. If there is a block driver state tree inserted as
2293 # a medium, it will become inaccessible to the guest (but it will remain
2294 # associated to the block device, so closing the tray will make it accessible
2295 # again).
2297 # If the tray was already open before, this will be a no-op.
2299 # Once the tray opens, a DEVICE_TRAY_MOVED event is emitted. There are cases in
2300 # which no such event will be generated, these include:
2301 # - if the guest has locked the tray, @force is false and the guest does not
2302 #   respond to the eject request
2303 # - if the BlockBackend denoted by @device does not have a guest device attached
2304 #   to it
2305 # - if the guest device does not have an actual tray
2307 # @device: block device name
2309 # @force:  #optional if false (the default), an eject request will be sent to
2310 #          the guest if it has locked the tray (and the tray will not be opened
2311 #          immediately); if true, the tray will be opened regardless of whether
2312 #          it is locked
2314 # Since: 2.5
2316 { 'command': 'blockdev-open-tray',
2317   'data': { 'device': 'str',
2318             '*force': 'bool' } }
2321 # @blockdev-close-tray:
2323 # Closes a block device's tray. If there is a block driver state tree associated
2324 # with the block device (which is currently ejected), that tree will be loaded
2325 # as the medium.
2327 # If the tray was already closed before, this will be a no-op.
2329 # @device: block device name
2331 # Since: 2.5
2333 { 'command': 'blockdev-close-tray',
2334   'data': { 'device': 'str' } }
2337 # @x-blockdev-remove-medium:
2339 # Removes a medium (a block driver state tree) from a block device. That block
2340 # device's tray must currently be open (unless there is no attached guest
2341 # device).
2343 # If the tray is open and there is no medium inserted, this will be a no-op.
2345 # This command is still a work in progress and is considered experimental.
2346 # Stay away from it unless you want to help with its development.
2348 # @device: block device name
2350 # Since: 2.5
2352 { 'command': 'x-blockdev-remove-medium',
2353   'data': { 'device': 'str' } }
2356 # @x-blockdev-insert-medium:
2358 # Inserts a medium (a block driver state tree) into a block device. That block
2359 # device's tray must currently be open (unless there is no attached guest
2360 # device) and there must be no medium inserted already.
2362 # This command is still a work in progress and is considered experimental.
2363 # Stay away from it unless you want to help with its development.
2365 # @device:    block device name
2367 # @node-name: name of a node in the block driver state graph
2369 # Since: 2.5
2371 { 'command': 'x-blockdev-insert-medium',
2372   'data': { 'device': 'str',
2373             'node-name': 'str'} }
2377 # @BlockdevChangeReadOnlyMode:
2379 # Specifies the new read-only mode of a block device subject to the
2380 # @blockdev-change-medium command.
2382 # @retain:      Retains the current read-only mode
2384 # @read-only:   Makes the device read-only
2386 # @read-write:  Makes the device writable
2388 # Since: 2.3
2390 { 'enum': 'BlockdevChangeReadOnlyMode',
2391   'data': ['retain', 'read-only', 'read-write'] }
2395 # @blockdev-change-medium:
2397 # Changes the medium inserted into a block device by ejecting the current medium
2398 # and loading a new image file which is inserted as the new medium (this command
2399 # combines blockdev-open-tray, x-blockdev-remove-medium,
2400 # x-blockdev-insert-medium and blockdev-close-tray).
2402 # @device:          block device name
2404 # @filename:        filename of the new image to be loaded
2406 # @format:          #optional, format to open the new image with (defaults to
2407 #                   the probed format)
2409 # @read-only-mode:  #optional, change the read-only mode of the device; defaults
2410 #                   to 'retain'
2412 # Since: 2.5
2414 { 'command': 'blockdev-change-medium',
2415   'data': { 'device': 'str',
2416             'filename': 'str',
2417             '*format': 'str',
2418             '*read-only-mode': 'BlockdevChangeReadOnlyMode' } }
2422 # @BlockErrorAction
2424 # An enumeration of action that has been taken when a DISK I/O occurs
2426 # @ignore: error has been ignored
2428 # @report: error has been reported to the device
2430 # @stop: error caused VM to be stopped
2432 # Since: 2.1
2434 { 'enum': 'BlockErrorAction',
2435   'data': [ 'ignore', 'report', 'stop' ] }
2439 # @BLOCK_IMAGE_CORRUPTED
2441 # Emitted when a corruption has been detected in a disk image
2443 # @device: device name. This is always present for compatibility
2444 #          reasons, but it can be empty ("") if the image does not
2445 #          have a device name associated.
2447 # @node-name: #optional node name (Since: 2.4)
2449 # @msg: informative message for human consumption, such as the kind of
2450 #       corruption being detected. It should not be parsed by machine as it is
2451 #       not guaranteed to be stable
2453 # @offset: #optional, if the corruption resulted from an image access, this is
2454 #          the host's access offset into the image
2456 # @size: #optional, if the corruption resulted from an image access, this is
2457 #        the access size
2459 # fatal: if set, the image is marked corrupt and therefore unusable after this
2460 #        event and must be repaired (Since 2.2; before, every
2461 #        BLOCK_IMAGE_CORRUPTED event was fatal)
2463 # Since: 1.7
2465 { 'event': 'BLOCK_IMAGE_CORRUPTED',
2466   'data': { 'device'     : 'str',
2467             '*node-name' : 'str',
2468             'msg'        : 'str',
2469             '*offset'    : 'int',
2470             '*size'      : 'int',
2471             'fatal'      : 'bool' } }
2474 # @BLOCK_IO_ERROR
2476 # Emitted when a disk I/O error occurs
2478 # @device: device name
2480 # @operation: I/O operation
2482 # @action: action that has been taken
2484 # @nospace: #optional true if I/O error was caused due to a no-space
2485 #           condition. This key is only present if query-block's
2486 #           io-status is present, please see query-block documentation
2487 #           for more information (since: 2.2)
2489 # @reason: human readable string describing the error cause.
2490 #          (This field is a debugging aid for humans, it should not
2491 #           be parsed by applications) (since: 2.2)
2493 # Note: If action is "stop", a STOP event will eventually follow the
2494 # BLOCK_IO_ERROR event
2496 # Since: 0.13.0
2498 { 'event': 'BLOCK_IO_ERROR',
2499   'data': { 'device': 'str', 'operation': 'IoOperationType',
2500             'action': 'BlockErrorAction', '*nospace': 'bool',
2501             'reason': 'str' } }
2504 # @BLOCK_JOB_COMPLETED
2506 # Emitted when a block job has completed
2508 # @type: job type
2510 # @device: The job identifier. Originally the device name but other
2511 #          values are allowed since QEMU 2.7
2513 # @len: maximum progress value
2515 # @offset: current progress value. On success this is equal to len.
2516 #          On failure this is less than len
2518 # @speed: rate limit, bytes per second
2520 # @error: #optional, error message. Only present on failure. This field
2521 #         contains a human-readable error message. There are no semantics
2522 #         other than that streaming has failed and clients should not try to
2523 #         interpret the error string
2525 # Since: 1.1
2527 { 'event': 'BLOCK_JOB_COMPLETED',
2528   'data': { 'type'  : 'BlockJobType',
2529             'device': 'str',
2530             'len'   : 'int',
2531             'offset': 'int',
2532             'speed' : 'int',
2533             '*error': 'str' } }
2536 # @BLOCK_JOB_CANCELLED
2538 # Emitted when a block job has been cancelled
2540 # @type: job type
2542 # @device: The job identifier. Originally the device name but other
2543 #          values are allowed since QEMU 2.7
2545 # @len: maximum progress value
2547 # @offset: current progress value. On success this is equal to len.
2548 #          On failure this is less than len
2550 # @speed: rate limit, bytes per second
2552 # Since: 1.1
2554 { 'event': 'BLOCK_JOB_CANCELLED',
2555   'data': { 'type'  : 'BlockJobType',
2556             'device': 'str',
2557             'len'   : 'int',
2558             'offset': 'int',
2559             'speed' : 'int' } }
2562 # @BLOCK_JOB_ERROR
2564 # Emitted when a block job encounters an error
2566 # @device: The job identifier. Originally the device name but other
2567 #          values are allowed since QEMU 2.7
2569 # @operation: I/O operation
2571 # @action: action that has been taken
2573 # Since: 1.3
2575 { 'event': 'BLOCK_JOB_ERROR',
2576   'data': { 'device'   : 'str',
2577             'operation': 'IoOperationType',
2578             'action'   : 'BlockErrorAction' } }
2581 # @BLOCK_JOB_READY
2583 # Emitted when a block job is ready to complete
2585 # @type: job type
2587 # @device: The job identifier. Originally the device name but other
2588 #          values are allowed since QEMU 2.7
2590 # @len: maximum progress value
2592 # @offset: current progress value. On success this is equal to len.
2593 #          On failure this is less than len
2595 # @speed: rate limit, bytes per second
2597 # Note: The "ready to complete" status is always reset by a @BLOCK_JOB_ERROR
2598 # event
2600 # Since: 1.3
2602 { 'event': 'BLOCK_JOB_READY',
2603   'data': { 'type'  : 'BlockJobType',
2604             'device': 'str',
2605             'len'   : 'int',
2606             'offset': 'int',
2607             'speed' : 'int' } }
2609 # @PreallocMode
2611 # Preallocation mode of QEMU image file
2613 # @off: no preallocation
2614 # @metadata: preallocate only for metadata
2615 # @falloc: like @full preallocation but allocate disk space by
2616 #          posix_fallocate() rather than writing zeros.
2617 # @full: preallocate all data by writing zeros to device to ensure disk
2618 #        space is really available. @full preallocation also sets up
2619 #        metadata correctly.
2621 # Since 2.2
2623 { 'enum': 'PreallocMode',
2624   'data': [ 'off', 'metadata', 'falloc', 'full' ] }
2627 # @BLOCK_WRITE_THRESHOLD
2629 # Emitted when writes on block device reaches or exceeds the
2630 # configured write threshold. For thin-provisioned devices, this
2631 # means the device should be extended to avoid pausing for
2632 # disk exhaustion.
2633 # The event is one shot. Once triggered, it needs to be
2634 # re-registered with another block-set-threshold command.
2636 # @node-name: graph node name on which the threshold was exceeded.
2638 # @amount-exceeded: amount of data which exceeded the threshold, in bytes.
2640 # @write-threshold: last configured threshold, in bytes.
2642 # Since: 2.3
2644 { 'event': 'BLOCK_WRITE_THRESHOLD',
2645   'data': { 'node-name': 'str',
2646             'amount-exceeded': 'uint64',
2647             'write-threshold': 'uint64' } }
2650 # @block-set-write-threshold
2652 # Change the write threshold for a block drive. An event will be delivered
2653 # if a write to this block drive crosses the configured threshold.
2654 # This is useful to transparently resize thin-provisioned drives without
2655 # the guest OS noticing.
2657 # @node-name: graph node name on which the threshold must be set.
2659 # @write-threshold: configured threshold for the block device, bytes.
2660 #                   Use 0 to disable the threshold.
2662 # Since: 2.3
2664 { 'command': 'block-set-write-threshold',
2665   'data': { 'node-name': 'str', 'write-threshold': 'uint64' } }
2668 # @x-blockdev-change
2670 # Dynamically reconfigure the block driver state graph. It can be used
2671 # to add, remove, insert or replace a graph node. Currently only the
2672 # Quorum driver implements this feature to add or remove its child. This
2673 # is useful to fix a broken quorum child.
2675 # If @node is specified, it will be inserted under @parent. @child
2676 # may not be specified in this case. If both @parent and @child are
2677 # specified but @node is not, @child will be detached from @parent.
2679 # @parent: the id or name of the parent node.
2681 # @child: #optional the name of a child under the given parent node.
2683 # @node: #optional the name of the node that will be added.
2685 # Note: this command is experimental, and its API is not stable. It
2686 # does not support all kinds of operations, all kinds of children, nor
2687 # all block drivers.
2689 # Warning: The data in a new quorum child MUST be consistent with that of
2690 # the rest of the array.
2692 # Since: 2.7
2694 { 'command': 'x-blockdev-change',
2695   'data' : { 'parent': 'str',
2696              '*child': 'str',
2697              '*node': 'str' } }