4 # == Block core (VM unrelated)
7 { 'include': 'common.json' }
8 { 'include': 'crypto.json' }
9 { 'include': 'job.json' }
10 { 'include': 'sockets.json' }
15 # @id: unique snapshot id
17 # @name: user chosen name
19 # @vm-state-size: size of the VM state
21 # @date-sec: UTC date of the snapshot in seconds
23 # @date-nsec: fractional part in nano seconds to be used with date-sec
25 # @vm-clock-sec: VM clock relative to boot in seconds
27 # @vm-clock-nsec: fractional part in nano seconds to be used with vm-clock-sec
32 { 'struct': 'SnapshotInfo',
33 'data': { 'id': 'str', 'name': 'str', 'vm-state-size': 'int',
34 'date-sec': 'int', 'date-nsec': 'int',
35 'vm-clock-sec': 'int', 'vm-clock-nsec': 'int' } }
38 # @ImageInfoSpecificQCow2EncryptionBase:
40 # @format: The encryption format
44 { 'struct': 'ImageInfoSpecificQCow2EncryptionBase',
45 'data': { 'format': 'BlockdevQcow2EncryptionFormat'}}
48 # @ImageInfoSpecificQCow2Encryption:
52 { 'union': 'ImageInfoSpecificQCow2Encryption',
53 'base': 'ImageInfoSpecificQCow2EncryptionBase',
54 'discriminator': 'format',
55 'data': { 'aes': 'QCryptoBlockInfoQCow',
56 'luks': 'QCryptoBlockInfoLUKS' } }
59 # @ImageInfoSpecificQCow2:
61 # @compat: compatibility level
63 # @lazy-refcounts: on or off; only valid for compat >= 1.1
65 # @corrupt: true if the image has been marked corrupt; only valid for
66 # compat >= 1.1 (since 2.2)
68 # @refcount-bits: width of a refcount entry in bits (since 2.3)
70 # @encrypt: details about encryption parameters; only set if image
71 # is encrypted (since 2.10)
75 { 'struct': 'ImageInfoSpecificQCow2',
78 '*lazy-refcounts': 'bool',
80 'refcount-bits': 'int',
81 '*encrypt': 'ImageInfoSpecificQCow2Encryption'
85 # @ImageInfoSpecificVmdk:
87 # @create-type: The create type of VMDK image
89 # @cid: Content id of image
91 # @parent-cid: Parent VMDK image's cid
93 # @extents: List of extent files
97 { 'struct': 'ImageInfoSpecificVmdk',
102 'extents': ['ImageInfo']
106 # @ImageInfoSpecific:
108 # A discriminated record of image format specific information structures.
112 { 'union': 'ImageInfoSpecific',
114 'qcow2': 'ImageInfoSpecificQCow2',
115 'vmdk': 'ImageInfoSpecificVmdk',
116 # If we need to add block driver specific parameters for
117 # LUKS in future, then we'll subclass QCryptoBlockInfoLUKS
118 # to define a ImageInfoSpecificLUKS
119 'luks': 'QCryptoBlockInfoLUKS'
125 # Information about a QEMU image file
127 # @filename: name of the image file
129 # @format: format of the image file
131 # @virtual-size: maximum capacity in bytes of the image
133 # @actual-size: actual size on disk in bytes of the image
135 # @dirty-flag: true if image is not cleanly closed
137 # @cluster-size: size of a cluster in bytes
139 # @encrypted: true if the image is encrypted
141 # @compressed: true if the image is compressed (Since 1.7)
143 # @backing-filename: name of the backing file
145 # @full-backing-filename: full path of the backing file
147 # @backing-filename-format: the format of the backing file
149 # @snapshots: list of VM snapshots
151 # @backing-image: info of the backing image (since 1.6)
153 # @format-specific: structure supplying additional format-specific
154 # information (since 1.7)
159 { 'struct': 'ImageInfo',
160 'data': {'filename': 'str', 'format': 'str', '*dirty-flag': 'bool',
161 '*actual-size': 'int', 'virtual-size': 'int',
162 '*cluster-size': 'int', '*encrypted': 'bool', '*compressed': 'bool',
163 '*backing-filename': 'str', '*full-backing-filename': 'str',
164 '*backing-filename-format': 'str', '*snapshots': ['SnapshotInfo'],
165 '*backing-image': 'ImageInfo',
166 '*format-specific': 'ImageInfoSpecific' } }
171 # Information about a QEMU image file check
173 # @filename: name of the image file checked
175 # @format: format of the image file checked
177 # @check-errors: number of unexpected errors occurred during check
179 # @image-end-offset: offset (in bytes) where the image ends, this
180 # field is present if the driver for the image format
183 # @corruptions: number of corruptions found during the check if any
185 # @leaks: number of leaks found during the check if any
187 # @corruptions-fixed: number of corruptions fixed during the check
190 # @leaks-fixed: number of leaks fixed during the check if any
192 # @total-clusters: total number of clusters, this field is present
193 # if the driver for the image format supports it
195 # @allocated-clusters: total number of allocated clusters, this
196 # field is present if the driver for the image format
199 # @fragmented-clusters: total number of fragmented clusters, this
200 # field is present if the driver for the image format
203 # @compressed-clusters: total number of compressed clusters, this
204 # field is present if the driver for the image format
210 { 'struct': 'ImageCheck',
211 'data': {'filename': 'str', 'format': 'str', 'check-errors': 'int',
212 '*image-end-offset': 'int', '*corruptions': 'int', '*leaks': 'int',
213 '*corruptions-fixed': 'int', '*leaks-fixed': 'int',
214 '*total-clusters': 'int', '*allocated-clusters': 'int',
215 '*fragmented-clusters': 'int', '*compressed-clusters': 'int' } }
220 # Mapping information from a virtual block range to a host file range
222 # @start: the start byte of the mapped virtual range
224 # @length: the number of bytes of the mapped virtual range
226 # @data: whether the mapped range has data
228 # @zero: whether the virtual blocks are zeroed
230 # @depth: the depth of the mapping
232 # @offset: the offset in file that the virtual sectors are mapped to
234 # @filename: filename that is referred to by @offset
239 { 'struct': 'MapEntry',
240 'data': {'start': 'int', 'length': 'int', 'data': 'bool',
241 'zero': 'bool', 'depth': 'int', '*offset': 'int',
242 '*filename': 'str' } }
245 # @BlockdevCacheInfo:
247 # Cache mode information for a block device
249 # @writeback: true if writeback mode is enabled
250 # @direct: true if the host page cache is bypassed (O_DIRECT)
251 # @no-flush: true if flush requests are ignored for the device
255 { 'struct': 'BlockdevCacheInfo',
256 'data': { 'writeback': 'bool',
258 'no-flush': 'bool' } }
263 # Information about the backing device for a block device.
265 # @file: the filename of the backing device
267 # @node-name: the name of the block driver node (Since 2.0)
269 # @ro: true if the backing device was open read-only
271 # @drv: the name of the block format used to open the backing device. As of
272 # 0.14.0 this can be: 'blkdebug', 'bochs', 'cloop', 'cow', 'dmg',
273 # 'file', 'file', 'ftp', 'ftps', 'host_cdrom', 'host_device',
274 # 'http', 'https', 'luks', 'nbd', 'parallels', 'qcow',
275 # 'qcow2', 'raw', 'vdi', 'vmdk', 'vpc', 'vvfat'
276 # 2.2: 'archipelago' added, 'cow' dropped
277 # 2.3: 'host_floppy' deprecated
278 # 2.5: 'host_floppy' dropped
280 # 2.8: 'replication' added, 'tftp' dropped
281 # 2.9: 'archipelago' dropped
283 # @backing_file: the name of the backing file (for copy-on-write)
285 # @backing_file_depth: number of files in the backing file chain (since: 1.2)
287 # @encrypted: true if the backing device is encrypted
289 # @encryption_key_missing: Deprecated; always false
291 # @detect_zeroes: detect and optimize zero writes (Since 2.1)
293 # @bps: total throughput limit in bytes per second is specified
295 # @bps_rd: read throughput limit in bytes per second is specified
297 # @bps_wr: write throughput limit in bytes per second is specified
299 # @iops: total I/O operations per second is specified
301 # @iops_rd: read I/O operations per second is specified
303 # @iops_wr: write I/O operations per second is specified
305 # @image: the info of image used (since: 1.6)
307 # @bps_max: total throughput limit during bursts,
308 # in bytes (Since 1.7)
310 # @bps_rd_max: read throughput limit during bursts,
311 # in bytes (Since 1.7)
313 # @bps_wr_max: write throughput limit during bursts,
314 # in bytes (Since 1.7)
316 # @iops_max: total I/O operations per second during bursts,
317 # in bytes (Since 1.7)
319 # @iops_rd_max: read I/O operations per second during bursts,
320 # in bytes (Since 1.7)
322 # @iops_wr_max: write I/O operations per second during bursts,
323 # in bytes (Since 1.7)
325 # @bps_max_length: maximum length of the @bps_max burst
326 # period, in seconds. (Since 2.6)
328 # @bps_rd_max_length: maximum length of the @bps_rd_max
329 # burst period, in seconds. (Since 2.6)
331 # @bps_wr_max_length: maximum length of the @bps_wr_max
332 # burst period, in seconds. (Since 2.6)
334 # @iops_max_length: maximum length of the @iops burst
335 # period, in seconds. (Since 2.6)
337 # @iops_rd_max_length: maximum length of the @iops_rd_max
338 # burst period, in seconds. (Since 2.6)
340 # @iops_wr_max_length: maximum length of the @iops_wr_max
341 # burst period, in seconds. (Since 2.6)
343 # @iops_size: an I/O size in bytes (Since 1.7)
345 # @group: throttle group name (Since 2.4)
347 # @cache: the cache mode used for the block device (since: 2.3)
349 # @write_threshold: configured write threshold for the device.
350 # 0 if disabled. (Since 2.3)
355 { 'struct': 'BlockDeviceInfo',
356 'data': { 'file': 'str', '*node-name': 'str', 'ro': 'bool', 'drv': 'str',
357 '*backing_file': 'str', 'backing_file_depth': 'int',
358 'encrypted': 'bool', 'encryption_key_missing': 'bool',
359 'detect_zeroes': 'BlockdevDetectZeroesOptions',
360 'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
361 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
362 'image': 'ImageInfo',
363 '*bps_max': 'int', '*bps_rd_max': 'int',
364 '*bps_wr_max': 'int', '*iops_max': 'int',
365 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
366 '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
367 '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
368 '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
369 '*iops_size': 'int', '*group': 'str', 'cache': 'BlockdevCacheInfo',
370 'write_threshold': 'int' } }
373 # @BlockDeviceIoStatus:
375 # An enumeration of block device I/O status.
377 # @ok: The last I/O operation has succeeded
379 # @failed: The last I/O operation has failed
381 # @nospace: The last I/O operation has failed due to a no-space condition
385 { 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
388 # @BlockDeviceMapEntry:
390 # Entry in the metadata map of the device (returned by "qemu-img map")
392 # @start: Offset in the image of the first byte described by this entry
395 # @length: Length of the range described by this entry (in bytes)
397 # @depth: Number of layers (0 = top image, 1 = top image's backing file, etc.)
398 # before reaching one for which the range is allocated. The value is
399 # in the range 0 to the depth of the image chain - 1.
401 # @zero: the sectors in this range read as zeros
403 # @data: reading the image will actually read data from a file (in particular,
404 # if @offset is present this means that the sectors are not simply
405 # preallocated, but contain actual data in raw format)
407 # @offset: if present, the image file stores the data for this range in
408 # raw format at the given offset.
412 { 'struct': 'BlockDeviceMapEntry',
413 'data': { 'start': 'int', 'length': 'int', 'depth': 'int', 'zero': 'bool',
414 'data': 'bool', '*offset': 'int' } }
417 # @DirtyBitmapStatus:
419 # An enumeration of possible states that a dirty bitmap can report to the user.
421 # @frozen: The bitmap is currently in-use by a backup operation or block job,
424 # @disabled: The bitmap is currently in-use by an internal operation and is
425 # read-only. It can still be deleted.
427 # @active: The bitmap is actively monitoring for new writes, and can be cleared,
428 # deleted, or used for backup operations.
430 # @locked: The bitmap is currently in-use by some operation and can not be
431 # cleared, deleted, or used for backup operations. (Since 2.12)
435 { 'enum': 'DirtyBitmapStatus',
436 'data': ['active', 'disabled', 'frozen', 'locked'] }
441 # Block dirty bitmap information.
443 # @name: the name of the dirty bitmap (Since 2.4)
445 # @count: number of dirty bytes according to the dirty bitmap
447 # @granularity: granularity of the dirty bitmap in bytes (since 1.4)
449 # @status: current status of the dirty bitmap (since 2.4)
453 { 'struct': 'BlockDirtyInfo',
454 'data': {'*name': 'str', 'count': 'int', 'granularity': 'uint32',
455 'status': 'DirtyBitmapStatus'} }
458 # @BlockLatencyHistogramInfo:
460 # Block latency histogram.
462 # @boundaries: list of interval boundary values in nanoseconds, all greater
463 # than zero and in ascending order.
464 # For example, the list [10, 50, 100] produces the following
465 # histogram intervals: [0, 10), [10, 50), [50, 100), [100, +inf).
467 # @bins: list of io request counts corresponding to histogram intervals.
468 # len(@bins) = len(@boundaries) + 1
469 # For the example above, @bins may be something like [3, 1, 5, 2],
470 # and corresponding histogram looks like:
477 # +------------------
482 { 'struct': 'BlockLatencyHistogramInfo',
483 'data': {'boundaries': ['uint64'], 'bins': ['uint64'] } }
486 # @x-block-latency-histogram-set:
488 # Manage read, write and flush latency histograms for the device.
490 # If only @device parameter is specified, remove all present latency histograms
491 # for the device. Otherwise, add/reset some of (or all) latency histograms.
493 # @device: device name to set latency histogram for.
495 # @boundaries: list of interval boundary values (see description in
496 # BlockLatencyHistogramInfo definition). If specified, all
497 # latency histograms are removed, and empty ones created for all
498 # io types with intervals corresponding to @boundaries (except for
499 # io types, for which specific boundaries are set through the
500 # following parameters).
502 # @boundaries-read: list of interval boundary values for read latency
503 # histogram. If specified, old read latency histogram is
504 # removed, and empty one created with intervals
505 # corresponding to @boundaries-read. The parameter has higher
506 # priority then @boundaries.
508 # @boundaries-write: list of interval boundary values for write latency
511 # @boundaries-flush: list of interval boundary values for flush latency
514 # Returns: error if device is not found or any boundary arrays are invalid.
518 # Example: set new histograms for all io types with intervals
519 # [0, 10), [10, 50), [50, 100), [100, +inf):
521 # -> { "execute": "block-latency-histogram-set",
522 # "arguments": { "device": "drive0",
523 # "boundaries": [10, 50, 100] } }
524 # <- { "return": {} }
526 # Example: set new histogram only for write, other histograms will remain
527 # not changed (or not created):
529 # -> { "execute": "block-latency-histogram-set",
530 # "arguments": { "device": "drive0",
531 # "boundaries-write": [10, 50, 100] } }
532 # <- { "return": {} }
534 # Example: set new histograms with the following intervals:
535 # read, flush: [0, 10), [10, 50), [50, 100), [100, +inf)
536 # write: [0, 1000), [1000, 5000), [5000, +inf)
538 # -> { "execute": "block-latency-histogram-set",
539 # "arguments": { "device": "drive0",
540 # "boundaries": [10, 50, 100],
541 # "boundaries-write": [1000, 5000] } }
542 # <- { "return": {} }
544 # Example: remove all latency histograms:
546 # -> { "execute": "block-latency-histogram-set",
547 # "arguments": { "device": "drive0" } }
548 # <- { "return": {} }
550 { 'command': 'x-block-latency-histogram-set',
551 'data': {'device': 'str',
552 '*boundaries': ['uint64'],
553 '*boundaries-read': ['uint64'],
554 '*boundaries-write': ['uint64'],
555 '*boundaries-flush': ['uint64'] } }
560 # Block device information. This structure describes a virtual device and
561 # the backing device associated with it.
563 # @device: The device name associated with the virtual device.
565 # @qdev: The qdev ID, or if no ID is assigned, the QOM path of the block
566 # device. (since 2.10)
568 # @type: This field is returned only for compatibility reasons, it should
569 # not be used (always returns 'unknown')
571 # @removable: True if the device supports removable media.
573 # @locked: True if the guest has locked this device from having its media
576 # @tray_open: True if the device's tray is open
577 # (only present if it has a tray)
579 # @dirty-bitmaps: dirty bitmaps information (only present if the
580 # driver has one or more dirty bitmaps) (Since 2.0)
582 # @io-status: @BlockDeviceIoStatus. Only present if the device
583 # supports it and the VM is configured to stop on errors
584 # (supported device models: virtio-blk, IDE, SCSI except
587 # @inserted: @BlockDeviceInfo describing the device if media is
592 { 'struct': 'BlockInfo',
593 'data': {'device': 'str', '*qdev': 'str', 'type': 'str', 'removable': 'bool',
594 'locked': 'bool', '*inserted': 'BlockDeviceInfo',
595 '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus',
596 '*dirty-bitmaps': ['BlockDirtyInfo'] } }
601 # Image file size calculation information. This structure describes the size
602 # requirements for creating a new image file.
604 # The size requirements depend on the new image file format. File size always
605 # equals virtual disk size for the 'raw' format, even for sparse POSIX files.
606 # Compact formats such as 'qcow2' represent unallocated and zero regions
607 # efficiently so file size may be smaller than virtual disk size.
609 # The values are upper bounds that are guaranteed to fit the new image file.
610 # Subsequent modification, such as internal snapshot or bitmap creation, may
611 # require additional space and is not covered here.
613 # @required: Size required for a new image file, in bytes.
615 # @fully-allocated: Image file size, in bytes, once data has been written
620 { 'struct': 'BlockMeasureInfo',
621 'data': {'required': 'int', 'fully-allocated': 'int'} }
626 # Get a list of BlockInfo for all virtual block devices.
628 # Returns: a list of @BlockInfo describing each virtual block device. Filter
629 # nodes that were created implicitly are skipped over.
635 # -> { "execute": "query-block" }
640 # "device":"ide0-hd0",
647 # "file":"disks/test.qcow2",
648 # "backing_file_depth":1,
655 # "bps_max": 8000000,
662 # "detect_zeroes": "on",
663 # "write_threshold": 0,
665 # "filename":"disks/test.qcow2",
667 # "virtual-size":2048000,
668 # "backing_file":"base.qcow2",
669 # "full-backing-filename":"disks/base.qcow2",
670 # "backing-filename-format":"qcow2",
674 # "name": "snapshot1",
675 # "vm-state-size": 0,
676 # "date-sec": 10000200,
678 # "vm-clock-sec": 206,
679 # "vm-clock-nsec": 30
683 # "filename":"disks/base.qcow2",
685 # "virtual-size":2048000
689 # "qdev": "ide_disk",
694 # "device":"ide1-cd0",
697 # "qdev": "/machine/unattached/device[23]",
698 # "tray_open": false,
702 # "device":"floppy0",
705 # "qdev": "/machine/unattached/device[20]",
718 { 'command': 'query-block', 'returns': ['BlockInfo'] }
722 # @BlockDeviceTimedStats:
724 # Statistics of a block device during a given interval of time.
726 # @interval_length: Interval used for calculating the statistics,
729 # @min_rd_latency_ns: Minimum latency of read operations in the
730 # defined interval, in nanoseconds.
732 # @min_wr_latency_ns: Minimum latency of write operations in the
733 # defined interval, in nanoseconds.
735 # @min_flush_latency_ns: Minimum latency of flush operations in the
736 # defined interval, in nanoseconds.
738 # @max_rd_latency_ns: Maximum latency of read operations in the
739 # defined interval, in nanoseconds.
741 # @max_wr_latency_ns: Maximum latency of write operations in the
742 # defined interval, in nanoseconds.
744 # @max_flush_latency_ns: Maximum latency of flush operations in the
745 # defined interval, in nanoseconds.
747 # @avg_rd_latency_ns: Average latency of read operations in the
748 # defined interval, in nanoseconds.
750 # @avg_wr_latency_ns: Average latency of write operations in the
751 # defined interval, in nanoseconds.
753 # @avg_flush_latency_ns: Average latency of flush operations in the
754 # defined interval, in nanoseconds.
756 # @avg_rd_queue_depth: Average number of pending read operations
757 # in the defined interval.
759 # @avg_wr_queue_depth: Average number of pending write operations
760 # in the defined interval.
764 { 'struct': 'BlockDeviceTimedStats',
765 'data': { 'interval_length': 'int', 'min_rd_latency_ns': 'int',
766 'max_rd_latency_ns': 'int', 'avg_rd_latency_ns': 'int',
767 'min_wr_latency_ns': 'int', 'max_wr_latency_ns': 'int',
768 'avg_wr_latency_ns': 'int', 'min_flush_latency_ns': 'int',
769 'max_flush_latency_ns': 'int', 'avg_flush_latency_ns': 'int',
770 'avg_rd_queue_depth': 'number', 'avg_wr_queue_depth': 'number' } }
775 # Statistics of a virtual block device or a block backing device.
777 # @rd_bytes: The number of bytes read by the device.
779 # @wr_bytes: The number of bytes written by the device.
781 # @rd_operations: The number of read operations performed by the device.
783 # @wr_operations: The number of write operations performed by the device.
785 # @flush_operations: The number of cache flush operations performed by the
786 # device (since 0.15.0)
788 # @flush_total_time_ns: Total time spend on cache flushes in nano-seconds
791 # @wr_total_time_ns: Total time spend on writes in nano-seconds (since 0.15.0).
793 # @rd_total_time_ns: Total_time_spend on reads in nano-seconds (since 0.15.0).
795 # @wr_highest_offset: The offset after the greatest byte written to the
796 # device. The intended use of this information is for
797 # growable sparse files (like qcow2) that are used on top
798 # of a physical device.
800 # @rd_merged: Number of read requests that have been merged into another
801 # request (Since 2.3).
803 # @wr_merged: Number of write requests that have been merged into another
804 # request (Since 2.3).
806 # @idle_time_ns: Time since the last I/O operation, in
807 # nanoseconds. If the field is absent it means that
808 # there haven't been any operations yet (Since 2.5).
810 # @failed_rd_operations: The number of failed read operations
811 # performed by the device (Since 2.5)
813 # @failed_wr_operations: The number of failed write operations
814 # performed by the device (Since 2.5)
816 # @failed_flush_operations: The number of failed flush operations
817 # performed by the device (Since 2.5)
819 # @invalid_rd_operations: The number of invalid read operations
820 # performed by the device (Since 2.5)
822 # @invalid_wr_operations: The number of invalid write operations
823 # performed by the device (Since 2.5)
825 # @invalid_flush_operations: The number of invalid flush operations
826 # performed by the device (Since 2.5)
828 # @account_invalid: Whether invalid operations are included in the
829 # last access statistics (Since 2.5)
831 # @account_failed: Whether failed operations are included in the
832 # latency and last access statistics (Since 2.5)
834 # @timed_stats: Statistics specific to the set of previously defined
835 # intervals of time (Since 2.5)
837 # @x_rd_latency_histogram: @BlockLatencyHistogramInfo. (Since 2.12)
839 # @x_wr_latency_histogram: @BlockLatencyHistogramInfo. (Since 2.12)
841 # @x_flush_latency_histogram: @BlockLatencyHistogramInfo. (Since 2.12)
845 { 'struct': 'BlockDeviceStats',
846 'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'rd_operations': 'int',
847 'wr_operations': 'int', 'flush_operations': 'int',
848 'flush_total_time_ns': 'int', 'wr_total_time_ns': 'int',
849 'rd_total_time_ns': 'int', 'wr_highest_offset': 'int',
850 'rd_merged': 'int', 'wr_merged': 'int', '*idle_time_ns': 'int',
851 'failed_rd_operations': 'int', 'failed_wr_operations': 'int',
852 'failed_flush_operations': 'int', 'invalid_rd_operations': 'int',
853 'invalid_wr_operations': 'int', 'invalid_flush_operations': 'int',
854 'account_invalid': 'bool', 'account_failed': 'bool',
855 'timed_stats': ['BlockDeviceTimedStats'],
856 '*x_rd_latency_histogram': 'BlockLatencyHistogramInfo',
857 '*x_wr_latency_histogram': 'BlockLatencyHistogramInfo',
858 '*x_flush_latency_histogram': 'BlockLatencyHistogramInfo' } }
863 # Statistics of a virtual block device or a block backing device.
865 # @device: If the stats are for a virtual block device, the name
866 # corresponding to the virtual block device.
868 # @node-name: The node name of the device. (Since 2.3)
870 # @stats: A @BlockDeviceStats for the device.
872 # @parent: This describes the file block device if it has one.
873 # Contains recursively the statistics of the underlying
874 # protocol (e.g. the host file for a qcow2 image). If there is
875 # no underlying protocol, this field is omitted
877 # @backing: This describes the backing block device if it has one.
882 { 'struct': 'BlockStats',
883 'data': {'*device': 'str', '*node-name': 'str',
884 'stats': 'BlockDeviceStats',
885 '*parent': 'BlockStats',
886 '*backing': 'BlockStats'} }
891 # Query the @BlockStats for all virtual block devices.
893 # @query-nodes: If true, the command will query all the block nodes
894 # that have a node name, in a list which will include "parent"
895 # information, but not "backing".
896 # If false or omitted, the behavior is as before - query all the
897 # device backends, recursively including their "parent" and
898 # "backing". Filter nodes that were created implicitly are
899 # skipped over in this mode. (Since 2.3)
901 # Returns: A list of @BlockStats for each virtual block devices.
907 # -> { "execute": "query-blockstats" }
911 # "device":"ide0-hd0",
914 # "wr_highest_offset":3686448128,
915 # "wr_bytes":9786368,
916 # "wr_operations":751,
917 # "rd_bytes":122567168,
918 # "rd_operations":36772
919 # "wr_total_times_ns":313253456
920 # "rd_total_times_ns":3465673657
921 # "flush_total_times_ns":49653
922 # "flush_operations":61,
925 # "idle_time_ns":2953431879,
926 # "account_invalid":true,
927 # "account_failed":false
931 # "wr_highest_offset":2821110784,
932 # "wr_bytes":9786368,
933 # "wr_operations":692,
934 # "rd_bytes":122739200,
935 # "rd_operations":36604
936 # "flush_operations":51,
937 # "wr_total_times_ns":313253456
938 # "rd_total_times_ns":3465673657
939 # "flush_total_times_ns":49653,
942 # "idle_time_ns":2953431879,
943 # "account_invalid":true,
944 # "account_failed":false
948 # "device":"ide1-cd0",
950 # "wr_highest_offset":0,
955 # "flush_operations":0,
956 # "wr_total_times_ns":0
957 # "rd_total_times_ns":0
958 # "flush_total_times_ns":0,
961 # "account_invalid":false,
962 # "account_failed":false
966 # "device":"floppy0",
968 # "wr_highest_offset":0,
973 # "flush_operations":0,
974 # "wr_total_times_ns":0
975 # "rd_total_times_ns":0
976 # "flush_total_times_ns":0,
979 # "account_invalid":false,
980 # "account_failed":false
986 # "wr_highest_offset":0,
991 # "flush_operations":0,
992 # "wr_total_times_ns":0
993 # "rd_total_times_ns":0
994 # "flush_total_times_ns":0,
997 # "account_invalid":false,
998 # "account_failed":false
1005 { 'command': 'query-blockstats',
1006 'data': { '*query-nodes': 'bool' },
1007 'returns': ['BlockStats'] }
1012 # An enumeration of possible behaviors for errors on I/O operations.
1013 # The exact meaning depends on whether the I/O was initiated by a guest
1016 # @report: for guest operations, report the error to the guest;
1017 # for jobs, cancel the job
1019 # @ignore: ignore the error, only report a QMP event (BLOCK_IO_ERROR
1020 # or BLOCK_JOB_ERROR)
1022 # @enospc: same as @stop on ENOSPC, same as @report otherwise.
1024 # @stop: for guest operations, stop the virtual machine;
1025 # for jobs, pause the job
1027 # @auto: inherit the error handling policy of the backend (since: 2.7)
1031 { 'enum': 'BlockdevOnError',
1032 'data': ['report', 'ignore', 'enospc', 'stop', 'auto'] }
1037 # An enumeration of possible behaviors for the initial synchronization
1038 # phase of storage mirroring.
1040 # @top: copies data in the topmost image to the destination
1042 # @full: copies data from all images to the destination
1044 # @none: only copy data written from now on
1046 # @incremental: only copy data described by the dirty bitmap. Since: 2.4
1050 { 'enum': 'MirrorSyncMode',
1051 'data': ['top', 'full', 'none', 'incremental'] }
1056 # Information about a long-running block device operation.
1058 # @type: the job type ('stream' for image streaming)
1060 # @device: The job identifier. Originally the device name but other
1061 # values are allowed since QEMU 2.7
1063 # @len: Estimated @offset value at the completion of the job. This value can
1064 # arbitrarily change while the job is running, in both directions.
1066 # @offset: Progress made until now. The unit is arbitrary and the value can
1067 # only meaningfully be used for the ratio of @offset to @len. The
1068 # value is monotonically increasing.
1070 # @busy: false if the job is known to be in a quiescent state, with
1071 # no pending I/O. Since 1.3.
1073 # @paused: whether the job is paused or, if @busy is true, will
1074 # pause itself as soon as possible. Since 1.3.
1076 # @speed: the rate limit, bytes per second
1078 # @io-status: the status of the job (since 1.3)
1080 # @ready: true if the job may be completed (since 2.2)
1082 # @status: Current job state/status (since 2.12)
1084 # @auto-finalize: Job will finalize itself when PENDING, moving to
1085 # the CONCLUDED state. (since 2.12)
1087 # @auto-dismiss: Job will dismiss itself when CONCLUDED, moving to the NULL
1088 # state and disappearing from the query list. (since 2.12)
1090 # @error: Error information if the job did not complete successfully.
1091 # Not set if the job completed successfully. (since 2.12.1)
1095 { 'struct': 'BlockJobInfo',
1096 'data': {'type': 'str', 'device': 'str', 'len': 'int',
1097 'offset': 'int', 'busy': 'bool', 'paused': 'bool', 'speed': 'int',
1098 'io-status': 'BlockDeviceIoStatus', 'ready': 'bool',
1099 'status': 'JobStatus',
1100 'auto-finalize': 'bool', 'auto-dismiss': 'bool',
1104 # @query-block-jobs:
1106 # Return information about long-running block device operations.
1108 # Returns: a list of @BlockJobInfo for each active block job
1112 { 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }
1117 # This command sets the password of a block device that has not been open
1118 # with a password and requires one.
1120 # This command is now obsolete and will always return an error since 2.10
1123 { 'command': 'block_passwd', 'data': {'*device': 'str',
1124 '*node-name': 'str', 'password': 'str'} }
1129 # Resize a block image while a guest is running.
1131 # Either @device or @node-name must be set but not both.
1133 # @device: the name of the device to get the image resized
1135 # @node-name: graph node name to get the image resized (Since 2.0)
1137 # @size: new image size in bytes
1139 # Returns: nothing on success
1140 # If @device is not a valid block device, DeviceNotFound
1146 # -> { "execute": "block_resize",
1147 # "arguments": { "device": "scratch", "size": 1073741824 } }
1148 # <- { "return": {} }
1151 { 'command': 'block_resize', 'data': { '*device': 'str',
1152 '*node-name': 'str',
1158 # An enumeration that tells QEMU how to set the backing file path in
1161 # @existing: QEMU should look for an existing image file.
1163 # @absolute-paths: QEMU should create a new image with absolute paths
1164 # for the backing file. If there is no backing file available, the new
1165 # image will not be backed either.
1169 { 'enum': 'NewImageMode',
1170 'data': [ 'existing', 'absolute-paths' ] }
1173 # @BlockdevSnapshotSync:
1175 # Either @device or @node-name must be set but not both.
1177 # @device: the name of the device to generate the snapshot from.
1179 # @node-name: graph node name to generate the snapshot from (Since 2.0)
1181 # @snapshot-file: the target of the new image. If the file exists, or
1182 # if it is a device, the snapshot will be created in the existing
1183 # file/device. Otherwise, a new file will be created.
1185 # @snapshot-node-name: the graph node name of the new image (Since 2.0)
1187 # @format: the format of the snapshot image, default is 'qcow2'.
1189 # @mode: whether and how QEMU should create a new image, default is
1192 { 'struct': 'BlockdevSnapshotSync',
1193 'data': { '*device': 'str', '*node-name': 'str',
1194 'snapshot-file': 'str', '*snapshot-node-name': 'str',
1195 '*format': 'str', '*mode': 'NewImageMode' } }
1198 # @BlockdevSnapshot:
1200 # @node: device or node name that will have a snapshot created.
1202 # @overlay: reference to the existing block device that will become
1203 # the overlay of @node, as part of creating the snapshot.
1204 # It must not have a current backing file (this can be
1205 # achieved by passing "backing": null to blockdev-add).
1209 { 'struct': 'BlockdevSnapshot',
1210 'data': { 'node': 'str', 'overlay': 'str' } }
1215 # @job-id: identifier for the newly-created block job. If
1216 # omitted, the device name will be used. (Since 2.7)
1218 # @device: the device name or node-name of a root node which should be copied.
1220 # @target: the target of the new image. If the file exists, or if it
1221 # is a device, the existing file/device will be used as the new
1222 # destination. If it does not exist, a new file will be created.
1224 # @format: the format of the new destination, default is to
1225 # probe if @mode is 'existing', else the format of the source
1227 # @sync: what parts of the disk image should be copied to the destination
1228 # (all the disk, only the sectors allocated in the topmost image, from a
1229 # dirty bitmap, or only new I/O).
1231 # @mode: whether and how QEMU should create a new image, default is
1234 # @speed: the maximum speed, in bytes per second
1236 # @bitmap: the name of dirty bitmap if sync is "incremental".
1237 # Must be present if sync is "incremental", must NOT be present
1238 # otherwise. (Since 2.4)
1240 # @compress: true to compress data, if the target format supports it.
1241 # (default: false) (since 2.8)
1243 # @on-source-error: the action to take on an error on the source,
1244 # default 'report'. 'stop' and 'enospc' can only be used
1245 # if the block device supports io-status (see BlockInfo).
1247 # @on-target-error: the action to take on an error on the target,
1248 # default 'report' (no limitations, since this applies to
1249 # a different block device than @device).
1251 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1252 # finished its work, waiting for @block-job-finalize.
1253 # When true, this job will automatically perform its abort or
1255 # Defaults to true. (Since 2.12)
1257 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1258 # has completed ceased all work, and wait for @block-job-dismiss.
1259 # When true, this job will automatically disappear from the query
1260 # list without user intervention.
1261 # Defaults to true. (Since 2.12)
1263 # Note: @on-source-error and @on-target-error only affect background
1264 # I/O. If an error occurs during a guest write request, the device's
1265 # rerror/werror actions will be used.
1269 { 'struct': 'DriveBackup',
1270 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1271 '*format': 'str', 'sync': 'MirrorSyncMode',
1272 '*mode': 'NewImageMode', '*speed': 'int',
1273 '*bitmap': 'str', '*compress': 'bool',
1274 '*on-source-error': 'BlockdevOnError',
1275 '*on-target-error': 'BlockdevOnError',
1276 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1281 # @job-id: identifier for the newly-created block job. If
1282 # omitted, the device name will be used. (Since 2.7)
1284 # @device: the device name or node-name of a root node which should be copied.
1286 # @target: the device name or node-name of the backup target node.
1288 # @sync: what parts of the disk image should be copied to the destination
1289 # (all the disk, only the sectors allocated in the topmost image, or
1292 # @speed: the maximum speed, in bytes per second. The default is 0,
1295 # @compress: true to compress data, if the target format supports it.
1296 # (default: false) (since 2.8)
1298 # @on-source-error: the action to take on an error on the source,
1299 # default 'report'. 'stop' and 'enospc' can only be used
1300 # if the block device supports io-status (see BlockInfo).
1302 # @on-target-error: the action to take on an error on the target,
1303 # default 'report' (no limitations, since this applies to
1304 # a different block device than @device).
1306 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1307 # finished its work, waiting for @block-job-finalize.
1308 # When true, this job will automatically perform its abort or
1310 # Defaults to true. (Since 2.12)
1312 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1313 # has completed ceased all work, and wait for @block-job-dismiss.
1314 # When true, this job will automatically disappear from the query
1315 # list without user intervention.
1316 # Defaults to true. (Since 2.12)
1318 # Note: @on-source-error and @on-target-error only affect background
1319 # I/O. If an error occurs during a guest write request, the device's
1320 # rerror/werror actions will be used.
1324 { 'struct': 'BlockdevBackup',
1325 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1326 'sync': 'MirrorSyncMode', '*speed': 'int', '*compress': 'bool',
1327 '*on-source-error': 'BlockdevOnError',
1328 '*on-target-error': 'BlockdevOnError',
1329 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1332 # @blockdev-snapshot-sync:
1334 # Generates a synchronous snapshot of a block device.
1336 # For the arguments, see the documentation of BlockdevSnapshotSync.
1338 # Returns: nothing on success
1339 # If @device is not a valid block device, DeviceNotFound
1345 # -> { "execute": "blockdev-snapshot-sync",
1346 # "arguments": { "device": "ide-hd0",
1348 # "/some/place/my-image",
1349 # "format": "qcow2" } }
1350 # <- { "return": {} }
1353 { 'command': 'blockdev-snapshot-sync',
1354 'data': 'BlockdevSnapshotSync' }
1358 # @blockdev-snapshot:
1360 # Generates a snapshot of a block device.
1362 # Create a snapshot, by installing 'node' as the backing image of
1363 # 'overlay'. Additionally, if 'node' is associated with a block
1364 # device, the block device changes to using 'overlay' as its new active
1367 # For the arguments, see the documentation of BlockdevSnapshot.
1373 # -> { "execute": "blockdev-add",
1374 # "arguments": { "driver": "qcow2",
1375 # "node-name": "node1534",
1376 # "file": { "driver": "file",
1377 # "filename": "hd1.qcow2" },
1378 # "backing": null } }
1380 # <- { "return": {} }
1382 # -> { "execute": "blockdev-snapshot",
1383 # "arguments": { "node": "ide-hd0",
1384 # "overlay": "node1534" } }
1385 # <- { "return": {} }
1388 { 'command': 'blockdev-snapshot',
1389 'data': 'BlockdevSnapshot' }
1392 # @change-backing-file:
1394 # Change the backing file in the image file metadata. This does not
1395 # cause QEMU to reopen the image file to reparse the backing filename
1396 # (it may, however, perform a reopen to change permissions from
1397 # r/o -> r/w -> r/o, if needed). The new backing file string is written
1398 # into the image file metadata, and the QEMU internal strings are
1401 # @image-node-name: The name of the block driver state node of the
1402 # image to modify. The "device" argument is used
1403 # to verify "image-node-name" is in the chain
1404 # described by "device".
1406 # @device: The device name or node-name of the root node that owns
1409 # @backing-file: The string to write as the backing file. This
1410 # string is not validated, so care should be taken
1411 # when specifying the string or the image chain may
1412 # not be able to be reopened again.
1414 # Returns: Nothing on success
1416 # If "device" does not exist or cannot be determined, DeviceNotFound
1420 { 'command': 'change-backing-file',
1421 'data': { 'device': 'str', 'image-node-name': 'str',
1422 'backing-file': 'str' } }
1427 # Live commit of data from overlay image nodes into backing nodes - i.e.,
1428 # writes data between 'top' and 'base' into 'base'.
1430 # @job-id: identifier for the newly-created block job. If
1431 # omitted, the device name will be used. (Since 2.7)
1433 # @device: the device name or node-name of a root node
1435 # @base: The file name of the backing image to write data into.
1436 # If not specified, this is the deepest backing image.
1438 # @top: The file name of the backing image within the image chain,
1439 # which contains the topmost data to be committed down. If
1440 # not specified, this is the active layer.
1442 # @backing-file: The backing file string to write into the overlay
1443 # image of 'top'. If 'top' is the active layer,
1444 # specifying a backing file string is an error. This
1445 # filename is not validated.
1447 # If a pathname string is such that it cannot be
1448 # resolved by QEMU, that means that subsequent QMP or
1449 # HMP commands must use node-names for the image in
1450 # question, as filename lookup methods will fail.
1452 # If not specified, QEMU will automatically determine
1453 # the backing file string to use, or error out if
1454 # there is no obvious choice. Care should be taken
1455 # when specifying the string, to specify a valid
1456 # filename or protocol.
1459 # If top == base, that is an error.
1460 # If top == active, the job will not be completed by itself,
1461 # user needs to complete the job with the block-job-complete
1462 # command after getting the ready event. (Since 2.0)
1464 # If the base image is smaller than top, then the base image
1465 # will be resized to be the same size as top. If top is
1466 # smaller than the base image, the base will not be
1467 # truncated. If you want the base image size to match the
1468 # size of the smaller top, you can safely truncate it
1469 # yourself once the commit operation successfully completes.
1471 # @speed: the maximum speed, in bytes per second
1473 # @filter-node-name: the node name that should be assigned to the
1474 # filter driver that the commit job inserts into the graph
1475 # above @top. If this option is not given, a node name is
1476 # autogenerated. (Since: 2.9)
1478 # Returns: Nothing on success
1479 # If commit or stream is already active on this device, DeviceInUse
1480 # If @device does not exist, DeviceNotFound
1481 # If image commit is not supported by this device, NotSupported
1482 # If @base or @top is invalid, a generic error is returned
1483 # If @speed is invalid, InvalidParameter
1489 # -> { "execute": "block-commit",
1490 # "arguments": { "device": "virtio0",
1491 # "top": "/tmp/snap1.qcow2" } }
1492 # <- { "return": {} }
1495 { 'command': 'block-commit',
1496 'data': { '*job-id': 'str', 'device': 'str', '*base': 'str', '*top': 'str',
1497 '*backing-file': 'str', '*speed': 'int',
1498 '*filter-node-name': 'str' } }
1503 # Start a point-in-time copy of a block device to a new destination. The
1504 # status of ongoing drive-backup operations can be checked with
1505 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1506 # The operation can be stopped before it has completed using the
1507 # block-job-cancel command.
1509 # Returns: nothing on success
1510 # If @device is not a valid block device, GenericError
1516 # -> { "execute": "drive-backup",
1517 # "arguments": { "device": "drive0",
1519 # "target": "backup.img" } }
1520 # <- { "return": {} }
1523 { 'command': 'drive-backup', 'boxed': true,
1524 'data': 'DriveBackup' }
1529 # Start a point-in-time copy of a block device to a new destination. The
1530 # status of ongoing blockdev-backup operations can be checked with
1531 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1532 # The operation can be stopped before it has completed using the
1533 # block-job-cancel command.
1535 # Returns: nothing on success
1536 # If @device is not a valid block device, DeviceNotFound
1541 # -> { "execute": "blockdev-backup",
1542 # "arguments": { "device": "src-id",
1544 # "target": "tgt-id" } }
1545 # <- { "return": {} }
1548 { 'command': 'blockdev-backup', 'boxed': true,
1549 'data': 'BlockdevBackup' }
1553 # @query-named-block-nodes:
1555 # Get the named block driver list
1557 # Returns: the list of BlockDeviceInfo
1563 # -> { "execute": "query-named-block-nodes" }
1564 # <- { "return": [ { "ro":false,
1566 # "encrypted":false,
1567 # "file":"disks/test.qcow2",
1568 # "node-name": "my-node",
1569 # "backing_file_depth":1,
1576 # "bps_max": 8000000,
1583 # "write_threshold": 0,
1585 # "filename":"disks/test.qcow2",
1587 # "virtual-size":2048000,
1588 # "backing_file":"base.qcow2",
1589 # "full-backing-filename":"disks/base.qcow2",
1590 # "backing-filename-format":"qcow2",
1594 # "name": "snapshot1",
1595 # "vm-state-size": 0,
1596 # "date-sec": 10000200,
1598 # "vm-clock-sec": 206,
1599 # "vm-clock-nsec": 30
1603 # "filename":"disks/base.qcow2",
1605 # "virtual-size":2048000
1610 { 'command': 'query-named-block-nodes', 'returns': [ 'BlockDeviceInfo' ] }
1615 # Start mirroring a block device's writes to a new destination. target
1616 # specifies the target of the new image. If the file exists, or if it
1617 # is a device, it will be used as the new destination for writes. If
1618 # it does not exist, a new file will be created. format specifies the
1619 # format of the mirror image, default is to probe if mode='existing',
1620 # else the format of the source.
1622 # Returns: nothing on success
1623 # If @device is not a valid block device, GenericError
1629 # -> { "execute": "drive-mirror",
1630 # "arguments": { "device": "ide-hd0",
1631 # "target": "/some/place/my-image",
1633 # "format": "qcow2" } }
1634 # <- { "return": {} }
1637 { 'command': 'drive-mirror', 'boxed': true,
1638 'data': 'DriveMirror' }
1643 # A set of parameters describing drive mirror setup.
1645 # @job-id: identifier for the newly-created block job. If
1646 # omitted, the device name will be used. (Since 2.7)
1648 # @device: the device name or node-name of a root node whose writes should be
1651 # @target: the target of the new image. If the file exists, or if it
1652 # is a device, the existing file/device will be used as the new
1653 # destination. If it does not exist, a new file will be created.
1655 # @format: the format of the new destination, default is to
1656 # probe if @mode is 'existing', else the format of the source
1658 # @node-name: the new block driver state node name in the graph
1661 # @replaces: with sync=full graph node name to be replaced by the new
1662 # image when a whole image copy is done. This can be used to repair
1663 # broken Quorum files. (Since 2.1)
1665 # @mode: whether and how QEMU should create a new image, default is
1668 # @speed: the maximum speed, in bytes per second
1670 # @sync: what parts of the disk image should be copied to the destination
1671 # (all the disk, only the sectors allocated in the topmost image, or
1674 # @granularity: granularity of the dirty bitmap, default is 64K
1675 # if the image format doesn't have clusters, 4K if the clusters
1676 # are smaller than that, else the cluster size. Must be a
1677 # power of 2 between 512 and 64M (since 1.4).
1679 # @buf-size: maximum amount of data in flight from source to
1680 # target (since 1.4).
1682 # @on-source-error: the action to take on an error on the source,
1683 # default 'report'. 'stop' and 'enospc' can only be used
1684 # if the block device supports io-status (see BlockInfo).
1686 # @on-target-error: the action to take on an error on the target,
1687 # default 'report' (no limitations, since this applies to
1688 # a different block device than @device).
1689 # @unmap: Whether to try to unmap target sectors where source has
1690 # only zero. If true, and target unallocated sectors will read as zero,
1691 # target image sectors will be unmapped; otherwise, zeroes will be
1692 # written. Both will result in identical contents.
1693 # Default is true. (Since 2.4)
1697 { 'struct': 'DriveMirror',
1698 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1699 '*format': 'str', '*node-name': 'str', '*replaces': 'str',
1700 'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
1701 '*speed': 'int', '*granularity': 'uint32',
1702 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1703 '*on-target-error': 'BlockdevOnError',
1704 '*unmap': 'bool' } }
1707 # @BlockDirtyBitmap:
1709 # @node: name of device/node which the bitmap is tracking
1711 # @name: name of the dirty bitmap
1715 { 'struct': 'BlockDirtyBitmap',
1716 'data': { 'node': 'str', 'name': 'str' } }
1719 # @BlockDirtyBitmapAdd:
1721 # @node: name of device/node which the bitmap is tracking
1723 # @name: name of the dirty bitmap
1725 # @granularity: the bitmap granularity, default is 64k for
1726 # block-dirty-bitmap-add
1728 # @persistent: the bitmap is persistent, i.e. it will be saved to the
1729 # corresponding block device image file on its close. For now only
1730 # Qcow2 disks support persistent bitmaps. Default is false for
1731 # block-dirty-bitmap-add. (Since: 2.10)
1733 # @autoload: ignored and deprecated since 2.12.
1734 # Currently, all dirty tracking bitmaps are loaded from Qcow2 on
1737 # @x-disabled: the bitmap is created in the disabled state, which means that
1738 # it will not track drive changes. The bitmap may be enabled with
1739 # x-block-dirty-bitmap-enable. Default is false. (Since: 3.0)
1743 { 'struct': 'BlockDirtyBitmapAdd',
1744 'data': { 'node': 'str', 'name': 'str', '*granularity': 'uint32',
1745 '*persistent': 'bool', '*autoload': 'bool', '*x-disabled': 'bool' } }
1748 # @BlockDirtyBitmapMerge:
1750 # @node: name of device/node which the bitmap is tracking
1752 # @dst_name: name of the destination dirty bitmap
1754 # @src_name: name of the source dirty bitmap
1758 { 'struct': 'BlockDirtyBitmapMerge',
1759 'data': { 'node': 'str', 'dst_name': 'str', 'src_name': 'str' } }
1762 # @block-dirty-bitmap-add:
1764 # Create a dirty bitmap with a name on the node, and start tracking the writes.
1766 # Returns: nothing on success
1767 # If @node is not a valid block device or node, DeviceNotFound
1768 # If @name is already taken, GenericError with an explanation
1774 # -> { "execute": "block-dirty-bitmap-add",
1775 # "arguments": { "node": "drive0", "name": "bitmap0" } }
1776 # <- { "return": {} }
1779 { 'command': 'block-dirty-bitmap-add',
1780 'data': 'BlockDirtyBitmapAdd' }
1783 # @block-dirty-bitmap-remove:
1785 # Stop write tracking and remove the dirty bitmap that was created
1786 # with block-dirty-bitmap-add. If the bitmap is persistent, remove it from its
1789 # Returns: nothing on success
1790 # If @node is not a valid block device or node, DeviceNotFound
1791 # If @name is not found, GenericError with an explanation
1792 # if @name is frozen by an operation, GenericError
1798 # -> { "execute": "block-dirty-bitmap-remove",
1799 # "arguments": { "node": "drive0", "name": "bitmap0" } }
1800 # <- { "return": {} }
1803 { 'command': 'block-dirty-bitmap-remove',
1804 'data': 'BlockDirtyBitmap' }
1807 # @block-dirty-bitmap-clear:
1809 # Clear (reset) a dirty bitmap on the device, so that an incremental
1810 # backup from this point in time forward will only backup clusters
1811 # modified after this clear operation.
1813 # Returns: nothing on success
1814 # If @node is not a valid block device, DeviceNotFound
1815 # If @name is not found, GenericError with an explanation
1821 # -> { "execute": "block-dirty-bitmap-clear",
1822 # "arguments": { "node": "drive0", "name": "bitmap0" } }
1823 # <- { "return": {} }
1826 { 'command': 'block-dirty-bitmap-clear',
1827 'data': 'BlockDirtyBitmap' }
1830 # @x-block-dirty-bitmap-enable:
1832 # Enables a dirty bitmap so that it will begin tracking disk changes.
1834 # Returns: nothing on success
1835 # If @node is not a valid block device, DeviceNotFound
1836 # If @name is not found, GenericError with an explanation
1842 # -> { "execute": "x-block-dirty-bitmap-enable",
1843 # "arguments": { "node": "drive0", "name": "bitmap0" } }
1844 # <- { "return": {} }
1847 { 'command': 'x-block-dirty-bitmap-enable',
1848 'data': 'BlockDirtyBitmap' }
1851 # @x-block-dirty-bitmap-disable:
1853 # Disables a dirty bitmap so that it will stop tracking disk changes.
1855 # Returns: nothing on success
1856 # If @node is not a valid block device, DeviceNotFound
1857 # If @name is not found, GenericError with an explanation
1863 # -> { "execute": "x-block-dirty-bitmap-disable",
1864 # "arguments": { "node": "drive0", "name": "bitmap0" } }
1865 # <- { "return": {} }
1868 { 'command': 'x-block-dirty-bitmap-disable',
1869 'data': 'BlockDirtyBitmap' }
1872 # @x-block-dirty-bitmap-merge:
1874 # Merge @src_name dirty bitmap to @dst_name dirty bitmap. @src_name dirty
1875 # bitmap is unchanged. On error, @dst_name is unchanged.
1877 # Returns: nothing on success
1878 # If @node is not a valid block device, DeviceNotFound
1879 # If @dst_name or @src_name is not found, GenericError
1880 # If bitmaps has different sizes or granularities, GenericError
1886 # -> { "execute": "x-block-dirty-bitmap-merge",
1887 # "arguments": { "node": "drive0", "dst_name": "bitmap0",
1888 # "src_name": "bitmap1" } }
1889 # <- { "return": {} }
1892 { 'command': 'x-block-dirty-bitmap-merge',
1893 'data': 'BlockDirtyBitmapMerge' }
1896 # @BlockDirtyBitmapSha256:
1898 # SHA256 hash of dirty bitmap data
1900 # @sha256: ASCII representation of SHA256 bitmap hash
1904 { 'struct': 'BlockDirtyBitmapSha256',
1905 'data': {'sha256': 'str'} }
1908 # @x-debug-block-dirty-bitmap-sha256:
1912 # Returns: BlockDirtyBitmapSha256 on success
1913 # If @node is not a valid block device, DeviceNotFound
1914 # If @name is not found or if hashing has failed, GenericError with an
1919 { 'command': 'x-debug-block-dirty-bitmap-sha256',
1920 'data': 'BlockDirtyBitmap', 'returns': 'BlockDirtyBitmapSha256' }
1925 # Start mirroring a block device's writes to a new destination.
1927 # @job-id: identifier for the newly-created block job. If
1928 # omitted, the device name will be used. (Since 2.7)
1930 # @device: The device name or node-name of a root node whose writes should be
1933 # @target: the id or node-name of the block device to mirror to. This mustn't be
1934 # attached to guest.
1936 # @replaces: with sync=full graph node name to be replaced by the new
1937 # image when a whole image copy is done. This can be used to repair
1938 # broken Quorum files.
1940 # @speed: the maximum speed, in bytes per second
1942 # @sync: what parts of the disk image should be copied to the destination
1943 # (all the disk, only the sectors allocated in the topmost image, or
1946 # @granularity: granularity of the dirty bitmap, default is 64K
1947 # if the image format doesn't have clusters, 4K if the clusters
1948 # are smaller than that, else the cluster size. Must be a
1949 # power of 2 between 512 and 64M
1951 # @buf-size: maximum amount of data in flight from source to
1954 # @on-source-error: the action to take on an error on the source,
1955 # default 'report'. 'stop' and 'enospc' can only be used
1956 # if the block device supports io-status (see BlockInfo).
1958 # @on-target-error: the action to take on an error on the target,
1959 # default 'report' (no limitations, since this applies to
1960 # a different block device than @device).
1962 # @filter-node-name: the node name that should be assigned to the
1963 # filter driver that the mirror job inserts into the graph
1964 # above @device. If this option is not given, a node name is
1965 # autogenerated. (Since: 2.9)
1967 # Returns: nothing on success.
1973 # -> { "execute": "blockdev-mirror",
1974 # "arguments": { "device": "ide-hd0",
1975 # "target": "target0",
1976 # "sync": "full" } }
1977 # <- { "return": {} }
1980 { 'command': 'blockdev-mirror',
1981 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1983 'sync': 'MirrorSyncMode',
1984 '*speed': 'int', '*granularity': 'uint32',
1985 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1986 '*on-target-error': 'BlockdevOnError',
1987 '*filter-node-name': 'str' } }
1990 # @block_set_io_throttle:
1992 # Change I/O throttle limits for a block drive.
1994 # Since QEMU 2.4, each device with I/O limits is member of a throttle
1997 # If two or more devices are members of the same group, the limits
1998 # will apply to the combined I/O of the whole group in a round-robin
1999 # fashion. Therefore, setting new I/O limits to a device will affect
2002 # The name of the group can be specified using the 'group' parameter.
2003 # If the parameter is unset, it is assumed to be the current group of
2004 # that device. If it's not in any group yet, the name of the device
2005 # will be used as the name for its group.
2007 # The 'group' parameter can also be used to move a device to a
2008 # different group. In this case the limits specified in the parameters
2009 # will be applied to the new group only.
2011 # I/O limits can be disabled by setting all of them to 0. In this case
2012 # the device will be removed from its group and the rest of its
2013 # members will not be affected. The 'group' parameter is ignored.
2015 # Returns: Nothing on success
2016 # If @device is not a valid block device, DeviceNotFound
2022 # -> { "execute": "block_set_io_throttle",
2023 # "arguments": { "id": "virtio-blk-pci0/virtio-backend",
2036 # "bps_max_length": 0,
2037 # "iops_size": 0 } }
2038 # <- { "return": {} }
2040 # -> { "execute": "block_set_io_throttle",
2041 # "arguments": { "id": "ide0-1-0",
2048 # "bps_max": 8000000,
2054 # "bps_max_length": 60,
2055 # "iops_size": 0 } }
2056 # <- { "return": {} }
2058 { 'command': 'block_set_io_throttle', 'boxed': true,
2059 'data': 'BlockIOThrottle' }
2064 # A set of parameters describing block throttling.
2066 # @device: Block device name (deprecated, use @id instead)
2068 # @id: The name or QOM path of the guest device (since: 2.8)
2070 # @bps: total throughput limit in bytes per second
2072 # @bps_rd: read throughput limit in bytes per second
2074 # @bps_wr: write throughput limit in bytes per second
2076 # @iops: total I/O operations per second
2078 # @iops_rd: read I/O operations per second
2080 # @iops_wr: write I/O operations per second
2082 # @bps_max: total throughput limit during bursts,
2083 # in bytes (Since 1.7)
2085 # @bps_rd_max: read throughput limit during bursts,
2086 # in bytes (Since 1.7)
2088 # @bps_wr_max: write throughput limit during bursts,
2089 # in bytes (Since 1.7)
2091 # @iops_max: total I/O operations per second during bursts,
2092 # in bytes (Since 1.7)
2094 # @iops_rd_max: read I/O operations per second during bursts,
2095 # in bytes (Since 1.7)
2097 # @iops_wr_max: write I/O operations per second during bursts,
2098 # in bytes (Since 1.7)
2100 # @bps_max_length: maximum length of the @bps_max burst
2101 # period, in seconds. It must only
2102 # be set if @bps_max is set as well.
2103 # Defaults to 1. (Since 2.6)
2105 # @bps_rd_max_length: maximum length of the @bps_rd_max
2106 # burst period, in seconds. It must only
2107 # be set if @bps_rd_max is set as well.
2108 # Defaults to 1. (Since 2.6)
2110 # @bps_wr_max_length: maximum length of the @bps_wr_max
2111 # burst period, in seconds. It must only
2112 # be set if @bps_wr_max is set as well.
2113 # Defaults to 1. (Since 2.6)
2115 # @iops_max_length: maximum length of the @iops burst
2116 # period, in seconds. It must only
2117 # be set if @iops_max is set as well.
2118 # Defaults to 1. (Since 2.6)
2120 # @iops_rd_max_length: maximum length of the @iops_rd_max
2121 # burst period, in seconds. It must only
2122 # be set if @iops_rd_max is set as well.
2123 # Defaults to 1. (Since 2.6)
2125 # @iops_wr_max_length: maximum length of the @iops_wr_max
2126 # burst period, in seconds. It must only
2127 # be set if @iops_wr_max is set as well.
2128 # Defaults to 1. (Since 2.6)
2130 # @iops_size: an I/O size in bytes (Since 1.7)
2132 # @group: throttle group name (Since 2.4)
2136 { 'struct': 'BlockIOThrottle',
2137 'data': { '*device': 'str', '*id': 'str', 'bps': 'int', 'bps_rd': 'int',
2138 'bps_wr': 'int', 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
2139 '*bps_max': 'int', '*bps_rd_max': 'int',
2140 '*bps_wr_max': 'int', '*iops_max': 'int',
2141 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
2142 '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
2143 '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
2144 '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
2145 '*iops_size': 'int', '*group': 'str' } }
2150 # Limit parameters for throttling.
2151 # Since some limit combinations are illegal, limits should always be set in one
2152 # transaction. All fields are optional. When setting limits, if a field is
2153 # missing the current value is not changed.
2155 # @iops-total: limit total I/O operations per second
2156 # @iops-total-max: I/O operations burst
2157 # @iops-total-max-length: length of the iops-total-max burst period, in seconds
2158 # It must only be set if @iops-total-max is set as well.
2159 # @iops-read: limit read operations per second
2160 # @iops-read-max: I/O operations read burst
2161 # @iops-read-max-length: length of the iops-read-max burst period, in seconds
2162 # It must only be set if @iops-read-max is set as well.
2163 # @iops-write: limit write operations per second
2164 # @iops-write-max: I/O operations write burst
2165 # @iops-write-max-length: length of the iops-write-max burst period, in seconds
2166 # It must only be set if @iops-write-max is set as well.
2167 # @bps-total: limit total bytes per second
2168 # @bps-total-max: total bytes burst
2169 # @bps-total-max-length: length of the bps-total-max burst period, in seconds.
2170 # It must only be set if @bps-total-max is set as well.
2171 # @bps-read: limit read bytes per second
2172 # @bps-read-max: total bytes read burst
2173 # @bps-read-max-length: length of the bps-read-max burst period, in seconds
2174 # It must only be set if @bps-read-max is set as well.
2175 # @bps-write: limit write bytes per second
2176 # @bps-write-max: total bytes write burst
2177 # @bps-write-max-length: length of the bps-write-max burst period, in seconds
2178 # It must only be set if @bps-write-max is set as well.
2179 # @iops-size: when limiting by iops max size of an I/O in bytes
2183 { 'struct': 'ThrottleLimits',
2184 'data': { '*iops-total' : 'int', '*iops-total-max' : 'int',
2185 '*iops-total-max-length' : 'int', '*iops-read' : 'int',
2186 '*iops-read-max' : 'int', '*iops-read-max-length' : 'int',
2187 '*iops-write' : 'int', '*iops-write-max' : 'int',
2188 '*iops-write-max-length' : 'int', '*bps-total' : 'int',
2189 '*bps-total-max' : 'int', '*bps-total-max-length' : 'int',
2190 '*bps-read' : 'int', '*bps-read-max' : 'int',
2191 '*bps-read-max-length' : 'int', '*bps-write' : 'int',
2192 '*bps-write-max' : 'int', '*bps-write-max-length' : 'int',
2193 '*iops-size' : 'int' } }
2198 # Copy data from a backing file into a block device.
2200 # The block streaming operation is performed in the background until the entire
2201 # backing file has been copied. This command returns immediately once streaming
2202 # has started. The status of ongoing block streaming operations can be checked
2203 # with query-block-jobs. The operation can be stopped before it has completed
2204 # using the block-job-cancel command.
2206 # The node that receives the data is called the top image, can be located in
2207 # any part of the chain (but always above the base image; see below) and can be
2208 # specified using its device or node name. Earlier qemu versions only allowed
2209 # 'device' to name the top level node; presence of the 'base-node' parameter
2210 # during introspection can be used as a witness of the enhanced semantics
2213 # If a base file is specified then sectors are not copied from that base file and
2214 # its backing chain. When streaming completes the image file will have the base
2215 # file as its backing file. This can be used to stream a subset of the backing
2216 # file chain instead of flattening the entire image.
2218 # On successful completion the image file is updated to drop the backing file
2219 # and the BLOCK_JOB_COMPLETED event is emitted.
2221 # @job-id: identifier for the newly-created block job. If
2222 # omitted, the device name will be used. (Since 2.7)
2224 # @device: the device or node name of the top image
2226 # @base: the common backing file name.
2227 # It cannot be set if @base-node is also set.
2229 # @base-node: the node name of the backing file.
2230 # It cannot be set if @base is also set. (Since 2.8)
2232 # @backing-file: The backing file string to write into the top
2233 # image. This filename is not validated.
2235 # If a pathname string is such that it cannot be
2236 # resolved by QEMU, that means that subsequent QMP or
2237 # HMP commands must use node-names for the image in
2238 # question, as filename lookup methods will fail.
2240 # If not specified, QEMU will automatically determine
2241 # the backing file string to use, or error out if there
2242 # is no obvious choice. Care should be taken when
2243 # specifying the string, to specify a valid filename or
2247 # @speed: the maximum speed, in bytes per second
2249 # @on-error: the action to take on an error (default report).
2250 # 'stop' and 'enospc' can only be used if the block device
2251 # supports io-status (see BlockInfo). Since 1.3.
2253 # Returns: Nothing on success. If @device does not exist, DeviceNotFound.
2259 # -> { "execute": "block-stream",
2260 # "arguments": { "device": "virtio0",
2261 # "base": "/tmp/master.qcow2" } }
2262 # <- { "return": {} }
2265 { 'command': 'block-stream',
2266 'data': { '*job-id': 'str', 'device': 'str', '*base': 'str',
2267 '*base-node': 'str', '*backing-file': 'str', '*speed': 'int',
2268 '*on-error': 'BlockdevOnError' } }
2271 # @block-job-set-speed:
2273 # Set maximum speed for a background block operation.
2275 # This command can only be issued when there is an active block job.
2277 # Throttling can be disabled by setting the speed to 0.
2279 # @device: The job identifier. This used to be a device name (hence
2280 # the name of the parameter), but since QEMU 2.7 it can have
2283 # @speed: the maximum speed, in bytes per second, or 0 for unlimited.
2286 # Returns: Nothing on success
2287 # If no background operation is active on this device, DeviceNotActive
2291 { 'command': 'block-job-set-speed',
2292 'data': { 'device': 'str', 'speed': 'int' } }
2295 # @block-job-cancel:
2297 # Stop an active background block operation.
2299 # This command returns immediately after marking the active background block
2300 # operation for cancellation. It is an error to call this command if no
2301 # operation is in progress.
2303 # The operation will cancel as soon as possible and then emit the
2304 # BLOCK_JOB_CANCELLED event. Before that happens the job is still visible when
2305 # enumerated using query-block-jobs.
2307 # Note that if you issue 'block-job-cancel' after 'drive-mirror' has indicated
2308 # (via the event BLOCK_JOB_READY) that the source and destination are
2309 # synchronized, then the event triggered by this command changes to
2310 # BLOCK_JOB_COMPLETED, to indicate that the mirroring has ended and the
2311 # destination now has a point-in-time copy tied to the time of the cancellation.
2313 # For streaming, the image file retains its backing file unless the streaming
2314 # operation happens to complete just as it is being cancelled. A new streaming
2315 # operation can be started at a later time to finish copying all data from the
2318 # @device: The job identifier. This used to be a device name (hence
2319 # the name of the parameter), but since QEMU 2.7 it can have
2322 # @force: If true, and the job has already emitted the event BLOCK_JOB_READY,
2323 # abandon the job immediately (even if it is paused) instead of waiting
2324 # for the destination to complete its final synchronization (since 1.3)
2326 # Returns: Nothing on success
2327 # If no background operation is active on this device, DeviceNotActive
2331 { 'command': 'block-job-cancel', 'data': { 'device': 'str', '*force': 'bool' } }
2336 # Pause an active background block operation.
2338 # This command returns immediately after marking the active background block
2339 # operation for pausing. It is an error to call this command if no
2340 # operation is in progress or if the job is already paused.
2342 # The operation will pause as soon as possible. No event is emitted when
2343 # the operation is actually paused. Cancelling a paused job automatically
2346 # @device: The job identifier. This used to be a device name (hence
2347 # the name of the parameter), but since QEMU 2.7 it can have
2350 # Returns: Nothing on success
2351 # If no background operation is active on this device, DeviceNotActive
2355 { 'command': 'block-job-pause', 'data': { 'device': 'str' } }
2358 # @block-job-resume:
2360 # Resume an active background block operation.
2362 # This command returns immediately after resuming a paused background block
2363 # operation. It is an error to call this command if no operation is in
2364 # progress or if the job is not paused.
2366 # This command also clears the error status of the job.
2368 # @device: The job identifier. This used to be a device name (hence
2369 # the name of the parameter), but since QEMU 2.7 it can have
2372 # Returns: Nothing on success
2373 # If no background operation is active on this device, DeviceNotActive
2377 { 'command': 'block-job-resume', 'data': { 'device': 'str' } }
2380 # @block-job-complete:
2382 # Manually trigger completion of an active background block operation. This
2383 # is supported for drive mirroring, where it also switches the device to
2384 # write to the target path only. The ability to complete is signaled with
2385 # a BLOCK_JOB_READY event.
2387 # This command completes an active background block operation synchronously.
2388 # The ordering of this command's return with the BLOCK_JOB_COMPLETED event
2389 # is not defined. Note that if an I/O error occurs during the processing of
2390 # this command: 1) the command itself will fail; 2) the error will be processed
2391 # according to the rerror/werror arguments that were specified when starting
2394 # A cancelled or paused job cannot be completed.
2396 # @device: The job identifier. This used to be a device name (hence
2397 # the name of the parameter), but since QEMU 2.7 it can have
2400 # Returns: Nothing on success
2401 # If no background operation is active on this device, DeviceNotActive
2405 { 'command': 'block-job-complete', 'data': { 'device': 'str' } }
2408 # @block-job-dismiss:
2410 # For jobs that have already concluded, remove them from the block-job-query
2411 # list. This command only needs to be run for jobs which were started with
2412 # QEMU 2.12+ job lifetime management semantics.
2414 # This command will refuse to operate on any job that has not yet reached
2415 # its terminal state, JOB_STATUS_CONCLUDED. For jobs that make use of the
2416 # BLOCK_JOB_READY event, block-job-cancel or block-job-complete will still need
2417 # to be used as appropriate.
2419 # @id: The job identifier.
2421 # Returns: Nothing on success
2425 { 'command': 'block-job-dismiss', 'data': { 'id': 'str' } }
2428 # @block-job-finalize:
2430 # Once a job that has manual=true reaches the pending state, it can be
2431 # instructed to finalize any graph changes and do any necessary cleanup
2433 # For jobs in a transaction, instructing one job to finalize will force
2434 # ALL jobs in the transaction to finalize, so it is only necessary to instruct
2435 # a single member job to finalize.
2437 # @id: The job identifier.
2439 # Returns: Nothing on success
2443 { 'command': 'block-job-finalize', 'data': { 'id': 'str' } }
2446 # @BlockdevDiscardOptions:
2448 # Determines how to handle discard requests.
2450 # @ignore: Ignore the request
2451 # @unmap: Forward as an unmap request
2455 { 'enum': 'BlockdevDiscardOptions',
2456 'data': [ 'ignore', 'unmap' ] }
2459 # @BlockdevDetectZeroesOptions:
2461 # Describes the operation mode for the automatic conversion of plain
2462 # zero writes by the OS to driver specific optimized zero write commands.
2464 # @off: Disabled (default)
2466 # @unmap: Enabled and even try to unmap blocks if possible. This requires
2467 # also that @BlockdevDiscardOptions is set to unmap for this device.
2471 { 'enum': 'BlockdevDetectZeroesOptions',
2472 'data': [ 'off', 'on', 'unmap' ] }
2475 # @BlockdevAioOptions:
2477 # Selects the AIO backend to handle I/O requests
2479 # @threads: Use qemu's thread pool
2480 # @native: Use native AIO backend (only Linux and Windows)
2484 { 'enum': 'BlockdevAioOptions',
2485 'data': [ 'threads', 'native' ] }
2488 # @BlockdevCacheOptions:
2490 # Includes cache-related options for block devices
2492 # @direct: enables use of O_DIRECT (bypass the host page cache;
2494 # @no-flush: ignore any flush requests for the device (default:
2499 { 'struct': 'BlockdevCacheOptions',
2500 'data': { '*direct': 'bool',
2501 '*no-flush': 'bool' } }
2506 # Drivers that are supported in block device operations.
2509 # @throttle: Since 2.11
2511 # @copy-on-read: Since 3.0
2515 { 'enum': 'BlockdevDriver',
2516 'data': [ 'blkdebug', 'blkverify', 'bochs', 'cloop', 'copy-on-read',
2517 'dmg', 'file', 'ftp', 'ftps', 'gluster', 'host_cdrom',
2518 'host_device', 'http', 'https', 'iscsi', 'luks', 'nbd', 'nfs',
2519 'null-aio', 'null-co', 'nvme', 'parallels', 'qcow', 'qcow2', 'qed',
2520 'quorum', 'raw', 'rbd', 'replication', 'sheepdog', 'ssh',
2521 'throttle', 'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat', 'vxhs' ] }
2524 # @BlockdevOptionsFile:
2526 # Driver specific block device options for the file backend.
2528 # @filename: path to the image file
2529 # @pr-manager: the id for the object that will handle persistent reservations
2530 # for this device (default: none, forward the commands via SG_IO;
2532 # @aio: AIO backend (default: threads) (since: 2.8)
2533 # @locking: whether to enable file locking. If set to 'auto', only enable
2534 # when Open File Descriptor (OFD) locking API is available
2535 # (default: auto, since 2.10)
2536 # @x-check-cache-dropped: whether to check that page cache was dropped on live
2537 # migration. May cause noticeable delays if the image
2538 # file is large, do not use in production.
2539 # (default: off) (since: 3.0)
2543 { 'struct': 'BlockdevOptionsFile',
2544 'data': { 'filename': 'str',
2545 '*pr-manager': 'str',
2546 '*locking': 'OnOffAuto',
2547 '*aio': 'BlockdevAioOptions',
2548 '*x-check-cache-dropped': 'bool' } }
2551 # @BlockdevOptionsNull:
2553 # Driver specific block device options for the null backend.
2555 # @size: size of the device in bytes.
2556 # @latency-ns: emulated latency (in nanoseconds) in processing
2557 # requests. Default to zero which completes requests immediately.
2562 { 'struct': 'BlockdevOptionsNull',
2563 'data': { '*size': 'int', '*latency-ns': 'uint64' } }
2566 # @BlockdevOptionsNVMe:
2568 # Driver specific block device options for the NVMe backend.
2570 # @device: controller address of the NVMe device.
2571 # @namespace: namespace number of the device, starting from 1.
2575 { 'struct': 'BlockdevOptionsNVMe',
2576 'data': { 'device': 'str', 'namespace': 'int' } }
2579 # @BlockdevOptionsVVFAT:
2581 # Driver specific block device options for the vvfat protocol.
2583 # @dir: directory to be exported as FAT image
2584 # @fat-type: FAT type: 12, 16 or 32
2585 # @floppy: whether to export a floppy image (true) or
2586 # partitioned hard disk (false; default)
2587 # @label: set the volume label, limited to 11 bytes. FAT16 and
2588 # FAT32 traditionally have some restrictions on labels, which are
2589 # ignored by most operating systems. Defaults to "QEMU VVFAT".
2591 # @rw: whether to allow write operations (default: false)
2595 { 'struct': 'BlockdevOptionsVVFAT',
2596 'data': { 'dir': 'str', '*fat-type': 'int', '*floppy': 'bool',
2597 '*label': 'str', '*rw': 'bool' } }
2600 # @BlockdevOptionsGenericFormat:
2602 # Driver specific block device options for image format that have no option
2603 # besides their data source.
2605 # @file: reference to or definition of the data source block device
2609 { 'struct': 'BlockdevOptionsGenericFormat',
2610 'data': { 'file': 'BlockdevRef' } }
2613 # @BlockdevOptionsLUKS:
2615 # Driver specific block device options for LUKS.
2617 # @key-secret: the ID of a QCryptoSecret object providing
2618 # the decryption key (since 2.6). Mandatory except when
2619 # doing a metadata-only probe of the image.
2623 { 'struct': 'BlockdevOptionsLUKS',
2624 'base': 'BlockdevOptionsGenericFormat',
2625 'data': { '*key-secret': 'str' } }
2629 # @BlockdevOptionsGenericCOWFormat:
2631 # Driver specific block device options for image format that have no option
2632 # besides their data source and an optional backing file.
2634 # @backing: reference to or definition of the backing file block
2635 # device, null disables the backing file entirely.
2636 # Defaults to the backing file stored the image file.
2640 { 'struct': 'BlockdevOptionsGenericCOWFormat',
2641 'base': 'BlockdevOptionsGenericFormat',
2642 'data': { '*backing': 'BlockdevRefOrNull' } }
2645 # @Qcow2OverlapCheckMode:
2647 # General overlap check modes.
2649 # @none: Do not perform any checks
2651 # @constant: Perform only checks which can be done in constant time and
2652 # without reading anything from disk
2654 # @cached: Perform only checks which can be done without reading anything
2657 # @all: Perform all available overlap checks
2661 { 'enum': 'Qcow2OverlapCheckMode',
2662 'data': [ 'none', 'constant', 'cached', 'all' ] }
2665 # @Qcow2OverlapCheckFlags:
2667 # Structure of flags for each metadata structure. Setting a field to 'true'
2668 # makes qemu guard that structure against unintended overwriting. The default
2669 # value is chosen according to the template given.
2671 # @template: Specifies a template mode which can be adjusted using the other
2672 # flags, defaults to 'cached'
2676 { 'struct': 'Qcow2OverlapCheckFlags',
2677 'data': { '*template': 'Qcow2OverlapCheckMode',
2678 '*main-header': 'bool',
2679 '*active-l1': 'bool',
2680 '*active-l2': 'bool',
2681 '*refcount-table': 'bool',
2682 '*refcount-block': 'bool',
2683 '*snapshot-table': 'bool',
2684 '*inactive-l1': 'bool',
2685 '*inactive-l2': 'bool' } }
2688 # @Qcow2OverlapChecks:
2690 # Specifies which metadata structures should be guarded against unintended
2693 # @flags: set of flags for separate specification of each metadata structure
2696 # @mode: named mode which chooses a specific set of flags
2700 { 'alternate': 'Qcow2OverlapChecks',
2701 'data': { 'flags': 'Qcow2OverlapCheckFlags',
2702 'mode': 'Qcow2OverlapCheckMode' } }
2705 # @BlockdevQcowEncryptionFormat:
2707 # @aes: AES-CBC with plain64 initialization vectors
2711 { 'enum': 'BlockdevQcowEncryptionFormat',
2715 # @BlockdevQcowEncryption:
2719 { 'union': 'BlockdevQcowEncryption',
2720 'base': { 'format': 'BlockdevQcowEncryptionFormat' },
2721 'discriminator': 'format',
2722 'data': { 'aes': 'QCryptoBlockOptionsQCow' } }
2725 # @BlockdevOptionsQcow:
2727 # Driver specific block device options for qcow.
2729 # @encrypt: Image decryption options. Mandatory for
2730 # encrypted images, except when doing a metadata-only
2731 # probe of the image.
2735 { 'struct': 'BlockdevOptionsQcow',
2736 'base': 'BlockdevOptionsGenericCOWFormat',
2737 'data': { '*encrypt': 'BlockdevQcowEncryption' } }
2742 # @BlockdevQcow2EncryptionFormat:
2743 # @aes: AES-CBC with plain64 initialization venctors
2747 { 'enum': 'BlockdevQcow2EncryptionFormat',
2748 'data': [ 'aes', 'luks' ] }
2751 # @BlockdevQcow2Encryption:
2755 { 'union': 'BlockdevQcow2Encryption',
2756 'base': { 'format': 'BlockdevQcow2EncryptionFormat' },
2757 'discriminator': 'format',
2758 'data': { 'aes': 'QCryptoBlockOptionsQCow',
2759 'luks': 'QCryptoBlockOptionsLUKS'} }
2762 # @BlockdevOptionsQcow2:
2764 # Driver specific block device options for qcow2.
2766 # @lazy-refcounts: whether to enable the lazy refcounts
2767 # feature (default is taken from the image file)
2769 # @pass-discard-request: whether discard requests to the qcow2
2770 # device should be forwarded to the data source
2772 # @pass-discard-snapshot: whether discard requests for the data source
2773 # should be issued when a snapshot operation (e.g.
2774 # deleting a snapshot) frees clusters in the qcow2 file
2776 # @pass-discard-other: whether discard requests for the data source
2777 # should be issued on other occasions where a cluster
2780 # @overlap-check: which overlap checks to perform for writes
2781 # to the image, defaults to 'cached' (since 2.2)
2783 # @cache-size: the maximum total size of the L2 table and
2784 # refcount block caches in bytes (since 2.2)
2786 # @l2-cache-size: the maximum size of the L2 table cache in
2789 # @l2-cache-entry-size: the size of each entry in the L2 cache in
2790 # bytes. It must be a power of two between 512
2791 # and the cluster size. The default value is
2792 # the cluster size (since 2.12)
2794 # @refcount-cache-size: the maximum size of the refcount block cache
2795 # in bytes (since 2.2)
2797 # @cache-clean-interval: clean unused entries in the L2 and refcount
2798 # caches. The interval is in seconds. The default value
2799 # is 0 and it disables this feature (since 2.5)
2800 # @encrypt: Image decryption options. Mandatory for
2801 # encrypted images, except when doing a metadata-only
2802 # probe of the image. (since 2.10)
2806 { 'struct': 'BlockdevOptionsQcow2',
2807 'base': 'BlockdevOptionsGenericCOWFormat',
2808 'data': { '*lazy-refcounts': 'bool',
2809 '*pass-discard-request': 'bool',
2810 '*pass-discard-snapshot': 'bool',
2811 '*pass-discard-other': 'bool',
2812 '*overlap-check': 'Qcow2OverlapChecks',
2813 '*cache-size': 'int',
2814 '*l2-cache-size': 'int',
2815 '*l2-cache-entry-size': 'int',
2816 '*refcount-cache-size': 'int',
2817 '*cache-clean-interval': 'int',
2818 '*encrypt': 'BlockdevQcow2Encryption' } }
2821 # @SshHostKeyCheckMode:
2823 # @none Don't check the host key at all
2824 # @hash Compare the host key with a given hash
2825 # @known_hosts Check the host key against the known_hosts file
2829 { 'enum': 'SshHostKeyCheckMode',
2830 'data': [ 'none', 'hash', 'known_hosts' ] }
2833 # @SshHostKeyCheckHashType:
2835 # @md5 The given hash is an md5 hash
2836 # @sha1 The given hash is an sha1 hash
2840 { 'enum': 'SshHostKeyCheckHashType',
2841 'data': [ 'md5', 'sha1' ] }
2846 # @type The hash algorithm used for the hash
2847 # @hash The expected hash value
2851 { 'struct': 'SshHostKeyHash',
2852 'data': { 'type': 'SshHostKeyCheckHashType',
2858 # For those union branches that don't need additional fields.
2862 { 'struct': 'SshHostKeyDummy',
2870 { 'union': 'SshHostKeyCheck',
2871 'base': { 'mode': 'SshHostKeyCheckMode' },
2872 'discriminator': 'mode',
2873 'data': { 'none': 'SshHostKeyDummy',
2874 'hash': 'SshHostKeyHash',
2875 'known_hosts': 'SshHostKeyDummy' } }
2878 # @BlockdevOptionsSsh:
2880 # @server: host address
2882 # @path: path to the image on the host
2884 # @user: user as which to connect, defaults to current
2887 # @host-key-check: Defines how and what to check the host key against
2888 # (default: known_hosts)
2892 { 'struct': 'BlockdevOptionsSsh',
2893 'data': { 'server': 'InetSocketAddress',
2896 '*host-key-check': 'SshHostKeyCheck' } }
2902 # Trigger events supported by blkdebug.
2904 # @l1_shrink_write_table: write zeros to the l1 table to shrink image.
2907 # @l1_shrink_free_l2_clusters: discard the l2 tables. (since 2.11)
2909 # @cor_write: a write due to copy-on-read (since 2.11)
2913 { 'enum': 'BlkdebugEvent', 'prefix': 'BLKDBG',
2914 'data': [ 'l1_update', 'l1_grow_alloc_table', 'l1_grow_write_table',
2915 'l1_grow_activate_table', 'l2_load', 'l2_update',
2916 'l2_update_compressed', 'l2_alloc_cow_read', 'l2_alloc_write',
2917 'read_aio', 'read_backing_aio', 'read_compressed', 'write_aio',
2918 'write_compressed', 'vmstate_load', 'vmstate_save', 'cow_read',
2919 'cow_write', 'reftable_load', 'reftable_grow', 'reftable_update',
2920 'refblock_load', 'refblock_update', 'refblock_update_part',
2921 'refblock_alloc', 'refblock_alloc_hookup', 'refblock_alloc_write',
2922 'refblock_alloc_write_blocks', 'refblock_alloc_write_table',
2923 'refblock_alloc_switch_table', 'cluster_alloc',
2924 'cluster_alloc_bytes', 'cluster_free', 'flush_to_os',
2925 'flush_to_disk', 'pwritev_rmw_head', 'pwritev_rmw_after_head',
2926 'pwritev_rmw_tail', 'pwritev_rmw_after_tail', 'pwritev',
2927 'pwritev_zero', 'pwritev_done', 'empty_image_prepare',
2928 'l1_shrink_write_table', 'l1_shrink_free_l2_clusters',
2932 # @BlkdebugInjectErrorOptions:
2934 # Describes a single error injection for blkdebug.
2936 # @event: trigger event
2938 # @state: the state identifier blkdebug needs to be in to
2939 # actually trigger the event; defaults to "any"
2941 # @errno: error identifier (errno) to be returned; defaults to
2944 # @sector: specifies the sector index which has to be affected
2945 # in order to actually trigger the event; defaults to "any
2948 # @once: disables further events after this one has been
2949 # triggered; defaults to false
2951 # @immediately: fail immediately; defaults to false
2955 { 'struct': 'BlkdebugInjectErrorOptions',
2956 'data': { 'event': 'BlkdebugEvent',
2961 '*immediately': 'bool' } }
2964 # @BlkdebugSetStateOptions:
2966 # Describes a single state-change event for blkdebug.
2968 # @event: trigger event
2970 # @state: the current state identifier blkdebug needs to be in;
2973 # @new_state: the state identifier blkdebug is supposed to assume if
2974 # this event is triggered
2978 { 'struct': 'BlkdebugSetStateOptions',
2979 'data': { 'event': 'BlkdebugEvent',
2981 'new_state': 'int' } }
2984 # @BlockdevOptionsBlkdebug:
2986 # Driver specific block device options for blkdebug.
2988 # @image: underlying raw block device (or image file)
2990 # @config: filename of the configuration file
2992 # @align: required alignment for requests in bytes, must be
2993 # positive power of 2, or 0 for default
2995 # @max-transfer: maximum size for I/O transfers in bytes, must be
2996 # positive multiple of @align and of the underlying
2997 # file's request alignment (but need not be a power of
2998 # 2), or 0 for default (since 2.10)
3000 # @opt-write-zero: preferred alignment for write zero requests in bytes,
3001 # must be positive multiple of @align and of the
3002 # underlying file's request alignment (but need not be a
3003 # power of 2), or 0 for default (since 2.10)
3005 # @max-write-zero: maximum size for write zero requests in bytes, must be
3006 # positive multiple of @align, of @opt-write-zero, and of
3007 # the underlying file's request alignment (but need not
3008 # be a power of 2), or 0 for default (since 2.10)
3010 # @opt-discard: preferred alignment for discard requests in bytes, must
3011 # be positive multiple of @align and of the underlying
3012 # file's request alignment (but need not be a power of
3013 # 2), or 0 for default (since 2.10)
3015 # @max-discard: maximum size for discard requests in bytes, must be
3016 # positive multiple of @align, of @opt-discard, and of
3017 # the underlying file's request alignment (but need not
3018 # be a power of 2), or 0 for default (since 2.10)
3020 # @inject-error: array of error injection descriptions
3022 # @set-state: array of state-change descriptions
3026 { 'struct': 'BlockdevOptionsBlkdebug',
3027 'data': { 'image': 'BlockdevRef',
3029 '*align': 'int', '*max-transfer': 'int32',
3030 '*opt-write-zero': 'int32', '*max-write-zero': 'int32',
3031 '*opt-discard': 'int32', '*max-discard': 'int32',
3032 '*inject-error': ['BlkdebugInjectErrorOptions'],
3033 '*set-state': ['BlkdebugSetStateOptions'] } }
3036 # @BlockdevOptionsBlkverify:
3038 # Driver specific block device options for blkverify.
3040 # @test: block device to be tested
3042 # @raw: raw image used for verification
3046 { 'struct': 'BlockdevOptionsBlkverify',
3047 'data': { 'test': 'BlockdevRef',
3048 'raw': 'BlockdevRef' } }
3051 # @QuorumReadPattern:
3053 # An enumeration of quorum read patterns.
3055 # @quorum: read all the children and do a quorum vote on reads
3057 # @fifo: read only from the first child that has not failed
3061 { 'enum': 'QuorumReadPattern', 'data': [ 'quorum', 'fifo' ] }
3064 # @BlockdevOptionsQuorum:
3066 # Driver specific block device options for Quorum
3068 # @blkverify: true if the driver must print content mismatch
3069 # set to false by default
3071 # @children: the children block devices to use
3073 # @vote-threshold: the vote limit under which a read will fail
3075 # @rewrite-corrupted: rewrite corrupted data when quorum is reached
3078 # @read-pattern: choose read pattern and set to quorum by default
3083 { 'struct': 'BlockdevOptionsQuorum',
3084 'data': { '*blkverify': 'bool',
3085 'children': [ 'BlockdevRef' ],
3086 'vote-threshold': 'int',
3087 '*rewrite-corrupted': 'bool',
3088 '*read-pattern': 'QuorumReadPattern' } }
3091 # @BlockdevOptionsGluster:
3093 # Driver specific block device options for Gluster
3095 # @volume: name of gluster volume where VM image resides
3097 # @path: absolute path to image file in gluster volume
3099 # @server: gluster servers description
3101 # @debug: libgfapi log level (default '4' which is Error)
3104 # @logfile: libgfapi log file (default /dev/stderr) (Since 2.8)
3108 { 'struct': 'BlockdevOptionsGluster',
3109 'data': { 'volume': 'str',
3111 'server': ['SocketAddress'],
3113 '*logfile': 'str' } }
3118 # An enumeration of libiscsi transport types
3122 { 'enum': 'IscsiTransport',
3123 'data': [ 'tcp', 'iser' ] }
3126 # @IscsiHeaderDigest:
3128 # An enumeration of header digests supported by libiscsi
3132 { 'enum': 'IscsiHeaderDigest',
3133 'prefix': 'QAPI_ISCSI_HEADER_DIGEST',
3134 'data': [ 'crc32c', 'none', 'crc32c-none', 'none-crc32c' ] }
3137 # @BlockdevOptionsIscsi:
3139 # @transport: The iscsi transport type
3141 # @portal: The address of the iscsi portal
3143 # @target: The target iqn name
3145 # @lun: LUN to connect to. Defaults to 0.
3147 # @user: User name to log in with. If omitted, no CHAP
3148 # authentication is performed.
3150 # @password-secret: The ID of a QCryptoSecret object providing
3151 # the password for the login. This option is required if
3152 # @user is specified.
3154 # @initiator-name: The iqn name we want to identify to the target
3155 # as. If this option is not specified, an initiator name is
3156 # generated automatically.
3158 # @header-digest: The desired header digest. Defaults to
3161 # @timeout: Timeout in seconds after which a request will
3162 # timeout. 0 means no timeout and is the default.
3164 # Driver specific block device options for iscsi
3168 { 'struct': 'BlockdevOptionsIscsi',
3169 'data': { 'transport': 'IscsiTransport',
3174 '*password-secret': 'str',
3175 '*initiator-name': 'str',
3176 '*header-digest': 'IscsiHeaderDigest',
3177 '*timeout': 'int' } }
3185 { 'enum': 'RbdAuthMode',
3186 'data': [ 'cephx', 'none' ] }
3189 # @BlockdevOptionsRbd:
3191 # @pool: Ceph pool name.
3193 # @image: Image name in the Ceph pool.
3195 # @conf: path to Ceph configuration file. Values
3196 # in the configuration file will be overridden by
3197 # options specified via QAPI.
3199 # @snapshot: Ceph snapshot name.
3201 # @user: Ceph id name.
3203 # @auth-client-required: Acceptable authentication modes.
3204 # This maps to Ceph configuration option
3205 # "auth_client_required". (Since 3.0)
3207 # @key-secret: ID of a QCryptoSecret object providing a key
3208 # for cephx authentication.
3209 # This maps to Ceph configuration option
3210 # "key". (Since 3.0)
3212 # @server: Monitor host address and port. This maps
3213 # to the "mon_host" Ceph option.
3217 { 'struct': 'BlockdevOptionsRbd',
3218 'data': { 'pool': 'str',
3223 '*auth-client-required': ['RbdAuthMode'],
3224 '*key-secret': 'str',
3225 '*server': ['InetSocketAddressBase'] } }
3228 # @BlockdevOptionsSheepdog:
3230 # Driver specific block device options for sheepdog
3232 # @vdi: Virtual disk image name
3233 # @server: The Sheepdog server to connect to
3234 # @snap-id: Snapshot ID
3235 # @tag: Snapshot tag name
3237 # Only one of @snap-id and @tag may be present.
3241 { 'struct': 'BlockdevOptionsSheepdog',
3242 'data': { 'server': 'SocketAddress',
3244 '*snap-id': 'uint32',
3250 # An enumeration of replication modes.
3252 # @primary: Primary mode, the vm's state will be sent to secondary QEMU.
3254 # @secondary: Secondary mode, receive the vm's state from primary QEMU.
3258 { 'enum' : 'ReplicationMode', 'data' : [ 'primary', 'secondary' ] }
3261 # @BlockdevOptionsReplication:
3263 # Driver specific block device options for replication
3265 # @mode: the replication mode
3267 # @top-id: In secondary mode, node name or device ID of the root
3268 # node who owns the replication node chain. Must not be given in
3273 { 'struct': 'BlockdevOptionsReplication',
3274 'base': 'BlockdevOptionsGenericFormat',
3275 'data': { 'mode': 'ReplicationMode',
3276 '*top-id': 'str' } }
3281 # An enumeration of NFS transport types
3283 # @inet: TCP transport
3287 { 'enum': 'NFSTransport',
3288 'data': [ 'inet' ] }
3293 # Captures the address of the socket
3295 # @type: transport type used for NFS (only TCP supported)
3297 # @host: host address for NFS server
3301 { 'struct': 'NFSServer',
3302 'data': { 'type': 'NFSTransport',
3306 # @BlockdevOptionsNfs:
3308 # Driver specific block device option for NFS
3310 # @server: host address
3312 # @path: path of the image on the host
3314 # @user: UID value to use when talking to the
3315 # server (defaults to 65534 on Windows and getuid()
3318 # @group: GID value to use when talking to the
3319 # server (defaults to 65534 on Windows and getgid()
3322 # @tcp-syn-count: number of SYNs during the session
3323 # establishment (defaults to libnfs default)
3325 # @readahead-size: set the readahead size in bytes (defaults
3326 # to libnfs default)
3328 # @page-cache-size: set the pagecache size in bytes (defaults
3329 # to libnfs default)
3331 # @debug: set the NFS debug level (max 2) (defaults
3332 # to libnfs default)
3336 { 'struct': 'BlockdevOptionsNfs',
3337 'data': { 'server': 'NFSServer',
3341 '*tcp-syn-count': 'int',
3342 '*readahead-size': 'int',
3343 '*page-cache-size': 'int',
3347 # @BlockdevOptionsCurlBase:
3349 # Driver specific block device options shared by all protocols supported by the
3352 # @url: URL of the image file
3354 # @readahead: Size of the read-ahead cache; must be a multiple of
3355 # 512 (defaults to 256 kB)
3357 # @timeout: Timeout for connections, in seconds (defaults to 5)
3359 # @username: Username for authentication (defaults to none)
3361 # @password-secret: ID of a QCryptoSecret object providing a password
3362 # for authentication (defaults to no password)
3364 # @proxy-username: Username for proxy authentication (defaults to none)
3366 # @proxy-password-secret: ID of a QCryptoSecret object providing a password
3367 # for proxy authentication (defaults to no password)
3371 { 'struct': 'BlockdevOptionsCurlBase',
3372 'data': { 'url': 'str',
3373 '*readahead': 'int',
3376 '*password-secret': 'str',
3377 '*proxy-username': 'str',
3378 '*proxy-password-secret': 'str' } }
3381 # @BlockdevOptionsCurlHttp:
3383 # Driver specific block device options for HTTP connections over the curl
3384 # backend. URLs must start with "http://".
3386 # @cookie: List of cookies to set; format is
3387 # "name1=content1; name2=content2;" as explained by
3388 # CURLOPT_COOKIE(3). Defaults to no cookies.
3390 # @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
3391 # secure way. See @cookie for the format. (since 2.10)
3395 { 'struct': 'BlockdevOptionsCurlHttp',
3396 'base': 'BlockdevOptionsCurlBase',
3397 'data': { '*cookie': 'str',
3398 '*cookie-secret': 'str'} }
3401 # @BlockdevOptionsCurlHttps:
3403 # Driver specific block device options for HTTPS connections over the curl
3404 # backend. URLs must start with "https://".
3406 # @cookie: List of cookies to set; format is
3407 # "name1=content1; name2=content2;" as explained by
3408 # CURLOPT_COOKIE(3). Defaults to no cookies.
3410 # @sslverify: Whether to verify the SSL certificate's validity (defaults to
3413 # @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
3414 # secure way. See @cookie for the format. (since 2.10)
3418 { 'struct': 'BlockdevOptionsCurlHttps',
3419 'base': 'BlockdevOptionsCurlBase',
3420 'data': { '*cookie': 'str',
3421 '*sslverify': 'bool',
3422 '*cookie-secret': 'str'} }
3425 # @BlockdevOptionsCurlFtp:
3427 # Driver specific block device options for FTP connections over the curl
3428 # backend. URLs must start with "ftp://".
3432 { 'struct': 'BlockdevOptionsCurlFtp',
3433 'base': 'BlockdevOptionsCurlBase',
3437 # @BlockdevOptionsCurlFtps:
3439 # Driver specific block device options for FTPS connections over the curl
3440 # backend. URLs must start with "ftps://".
3442 # @sslverify: Whether to verify the SSL certificate's validity (defaults to
3447 { 'struct': 'BlockdevOptionsCurlFtps',
3448 'base': 'BlockdevOptionsCurlBase',
3449 'data': { '*sslverify': 'bool' } }
3452 # @BlockdevOptionsNbd:
3454 # Driver specific block device options for NBD.
3456 # @server: NBD server address
3458 # @export: export name
3460 # @tls-creds: TLS credentials ID
3464 { 'struct': 'BlockdevOptionsNbd',
3465 'data': { 'server': 'SocketAddress',
3467 '*tls-creds': 'str' } }
3470 # @BlockdevOptionsRaw:
3472 # Driver specific block device options for the raw driver.
3474 # @offset: position where the block device starts
3475 # @size: the assumed size of the device
3479 { 'struct': 'BlockdevOptionsRaw',
3480 'base': 'BlockdevOptionsGenericFormat',
3481 'data': { '*offset': 'int', '*size': 'int' } }
3484 # @BlockdevOptionsVxHS:
3486 # Driver specific block device options for VxHS
3488 # @vdisk-id: UUID of VxHS volume
3489 # @server: vxhs server IP, port
3490 # @tls-creds: TLS credentials ID
3494 { 'struct': 'BlockdevOptionsVxHS',
3495 'data': { 'vdisk-id': 'str',
3496 'server': 'InetSocketAddressBase',
3497 '*tls-creds': 'str' } }
3500 # @BlockdevOptionsThrottle:
3502 # Driver specific block device options for the throttle driver
3504 # @throttle-group: the name of the throttle-group object to use. It
3505 # must already exist.
3506 # @file: reference to or definition of the data source block device
3509 { 'struct': 'BlockdevOptionsThrottle',
3510 'data': { 'throttle-group': 'str',
3511 'file' : 'BlockdevRef'
3516 # Options for creating a block device. Many options are available for all
3517 # block devices, independent of the block driver:
3519 # @driver: block driver name
3520 # @node-name: the node name of the new node (Since 2.0).
3521 # This option is required on the top level of blockdev-add.
3522 # @discard: discard-related options (default: ignore)
3523 # @cache: cache-related options
3524 # @read-only: whether the block device should be read-only (default: false).
3525 # Note that some block drivers support only read-only access,
3526 # either generally or in certain configurations. In this case,
3527 # the default value does not work and the option must be
3528 # specified explicitly.
3529 # @detect-zeroes: detect and optimize zero writes (Since 2.1)
3531 # @force-share: force share all permission on added nodes.
3532 # Requires read-only=true. (Since 2.10)
3534 # Remaining options are determined by the block driver.
3538 { 'union': 'BlockdevOptions',
3539 'base': { 'driver': 'BlockdevDriver',
3540 '*node-name': 'str',
3541 '*discard': 'BlockdevDiscardOptions',
3542 '*cache': 'BlockdevCacheOptions',
3543 '*read-only': 'bool',
3544 '*force-share': 'bool',
3545 '*detect-zeroes': 'BlockdevDetectZeroesOptions' },
3546 'discriminator': 'driver',
3548 'blkdebug': 'BlockdevOptionsBlkdebug',
3549 'blkverify': 'BlockdevOptionsBlkverify',
3550 'bochs': 'BlockdevOptionsGenericFormat',
3551 'cloop': 'BlockdevOptionsGenericFormat',
3552 'copy-on-read':'BlockdevOptionsGenericFormat',
3553 'dmg': 'BlockdevOptionsGenericFormat',
3554 'file': 'BlockdevOptionsFile',
3555 'ftp': 'BlockdevOptionsCurlFtp',
3556 'ftps': 'BlockdevOptionsCurlFtps',
3557 'gluster': 'BlockdevOptionsGluster',
3558 'host_cdrom': 'BlockdevOptionsFile',
3559 'host_device':'BlockdevOptionsFile',
3560 'http': 'BlockdevOptionsCurlHttp',
3561 'https': 'BlockdevOptionsCurlHttps',
3562 'iscsi': 'BlockdevOptionsIscsi',
3563 'luks': 'BlockdevOptionsLUKS',
3564 'nbd': 'BlockdevOptionsNbd',
3565 'nfs': 'BlockdevOptionsNfs',
3566 'null-aio': 'BlockdevOptionsNull',
3567 'null-co': 'BlockdevOptionsNull',
3568 'nvme': 'BlockdevOptionsNVMe',
3569 'parallels': 'BlockdevOptionsGenericFormat',
3570 'qcow2': 'BlockdevOptionsQcow2',
3571 'qcow': 'BlockdevOptionsQcow',
3572 'qed': 'BlockdevOptionsGenericCOWFormat',
3573 'quorum': 'BlockdevOptionsQuorum',
3574 'raw': 'BlockdevOptionsRaw',
3575 'rbd': 'BlockdevOptionsRbd',
3576 'replication':'BlockdevOptionsReplication',
3577 'sheepdog': 'BlockdevOptionsSheepdog',
3578 'ssh': 'BlockdevOptionsSsh',
3579 'throttle': 'BlockdevOptionsThrottle',
3580 'vdi': 'BlockdevOptionsGenericFormat',
3581 'vhdx': 'BlockdevOptionsGenericFormat',
3582 'vmdk': 'BlockdevOptionsGenericCOWFormat',
3583 'vpc': 'BlockdevOptionsGenericFormat',
3584 'vvfat': 'BlockdevOptionsVVFAT',
3585 'vxhs': 'BlockdevOptionsVxHS'
3591 # Reference to a block device.
3593 # @definition: defines a new block device inline
3594 # @reference: references the ID of an existing block device
3598 { 'alternate': 'BlockdevRef',
3599 'data': { 'definition': 'BlockdevOptions',
3600 'reference': 'str' } }
3603 # @BlockdevRefOrNull:
3605 # Reference to a block device.
3607 # @definition: defines a new block device inline
3608 # @reference: references the ID of an existing block device.
3609 # An empty string means that no block device should
3610 # be referenced. Deprecated; use null instead.
3611 # @null: No block device should be referenced (since 2.10)
3615 { 'alternate': 'BlockdevRefOrNull',
3616 'data': { 'definition': 'BlockdevOptions',
3623 # Creates a new block device. If the @id option is given at the top level, a
3624 # BlockBackend will be created; otherwise, @node-name is mandatory at the top
3625 # level and no BlockBackend will be created.
3632 # -> { "execute": "blockdev-add",
3634 # "driver": "qcow2",
3635 # "node-name": "test1",
3638 # "filename": "test.qcow2"
3642 # <- { "return": {} }
3645 # -> { "execute": "blockdev-add",
3647 # "driver": "qcow2",
3648 # "node-name": "node0",
3649 # "discard": "unmap",
3655 # "filename": "/tmp/test.qcow2"
3661 # "filename": "/dev/fdset/4"
3667 # <- { "return": {} }
3670 { 'command': 'blockdev-add', 'data': 'BlockdevOptions', 'boxed': true }
3675 # Deletes a block device that has been added using blockdev-add.
3676 # The command will fail if the node is attached to a device or is
3677 # otherwise being used.
3679 # @node-name: Name of the graph node to delete.
3685 # -> { "execute": "blockdev-add",
3687 # "driver": "qcow2",
3688 # "node-name": "node0",
3691 # "filename": "test.qcow2"
3695 # <- { "return": {} }
3697 # -> { "execute": "blockdev-del",
3698 # "arguments": { "node-name": "node0" }
3700 # <- { "return": {} }
3703 { 'command': 'blockdev-del', 'data': { 'node-name': 'str' } }
3706 # @BlockdevCreateOptionsFile:
3708 # Driver specific image creation options for file.
3710 # @filename Filename for the new image file
3711 # @size Size of the virtual disk in bytes
3712 # @preallocation Preallocation mode for the new image (default: off)
3713 # @nocow Turn off copy-on-write (valid only on btrfs; default: off)
3717 { 'struct': 'BlockdevCreateOptionsFile',
3718 'data': { 'filename': 'str',
3720 '*preallocation': 'PreallocMode',
3721 '*nocow': 'bool' } }
3724 # @BlockdevCreateOptionsGluster:
3726 # Driver specific image creation options for gluster.
3728 # @location Where to store the new image file
3729 # @size Size of the virtual disk in bytes
3730 # @preallocation Preallocation mode for the new image (default: off)
3734 { 'struct': 'BlockdevCreateOptionsGluster',
3735 'data': { 'location': 'BlockdevOptionsGluster',
3737 '*preallocation': 'PreallocMode' } }
3740 # @BlockdevCreateOptionsLUKS:
3742 # Driver specific image creation options for LUKS.
3744 # @file Node to create the image format on
3745 # @size Size of the virtual disk in bytes
3749 { 'struct': 'BlockdevCreateOptionsLUKS',
3750 'base': 'QCryptoBlockCreateOptionsLUKS',
3751 'data': { 'file': 'BlockdevRef',
3755 # @BlockdevCreateOptionsNfs:
3757 # Driver specific image creation options for NFS.
3759 # @location Where to store the new image file
3760 # @size Size of the virtual disk in bytes
3764 { 'struct': 'BlockdevCreateOptionsNfs',
3765 'data': { 'location': 'BlockdevOptionsNfs',
3769 # @BlockdevCreateOptionsParallels:
3771 # Driver specific image creation options for parallels.
3773 # @file Node to create the image format on
3774 # @size Size of the virtual disk in bytes
3775 # @cluster-size Cluster size in bytes (default: 1 MB)
3779 { 'struct': 'BlockdevCreateOptionsParallels',
3780 'data': { 'file': 'BlockdevRef',
3782 '*cluster-size': 'size' } }
3785 # @BlockdevCreateOptionsQcow:
3787 # Driver specific image creation options for qcow.
3789 # @file Node to create the image format on
3790 # @size Size of the virtual disk in bytes
3791 # @backing-file File name of the backing file if a backing file
3793 # @encrypt Encryption options if the image should be encrypted
3797 { 'struct': 'BlockdevCreateOptionsQcow',
3798 'data': { 'file': 'BlockdevRef',
3800 '*backing-file': 'str',
3801 '*encrypt': 'QCryptoBlockCreateOptions' } }
3804 # @BlockdevQcow2Version:
3806 # @v2: The original QCOW2 format as introduced in qemu 0.10 (version 2)
3807 # @v3: The extended QCOW2 format as introduced in qemu 1.1 (version 3)
3811 { 'enum': 'BlockdevQcow2Version',
3812 'data': [ 'v2', 'v3' ] }
3816 # @BlockdevCreateOptionsQcow2:
3818 # Driver specific image creation options for qcow2.
3820 # @file Node to create the image format on
3821 # @size Size of the virtual disk in bytes
3822 # @version Compatibility level (default: v3)
3823 # @backing-file File name of the backing file if a backing file
3825 # @backing-fmt Name of the block driver to use for the backing file
3826 # @encrypt Encryption options if the image should be encrypted
3827 # @cluster-size qcow2 cluster size in bytes (default: 65536)
3828 # @preallocation Preallocation mode for the new image (default: off)
3829 # @lazy-refcounts True if refcounts may be updated lazily (default: off)
3830 # @refcount-bits Width of reference counts in bits (default: 16)
3834 { 'struct': 'BlockdevCreateOptionsQcow2',
3835 'data': { 'file': 'BlockdevRef',
3837 '*version': 'BlockdevQcow2Version',
3838 '*backing-file': 'str',
3839 '*backing-fmt': 'BlockdevDriver',
3840 '*encrypt': 'QCryptoBlockCreateOptions',
3841 '*cluster-size': 'size',
3842 '*preallocation': 'PreallocMode',
3843 '*lazy-refcounts': 'bool',
3844 '*refcount-bits': 'int' } }
3847 # @BlockdevCreateOptionsQed:
3849 # Driver specific image creation options for qed.
3851 # @file Node to create the image format on
3852 # @size Size of the virtual disk in bytes
3853 # @backing-file File name of the backing file if a backing file
3855 # @backing-fmt Name of the block driver to use for the backing file
3856 # @cluster-size Cluster size in bytes (default: 65536)
3857 # @table-size L1/L2 table size (in clusters)
3861 { 'struct': 'BlockdevCreateOptionsQed',
3862 'data': { 'file': 'BlockdevRef',
3864 '*backing-file': 'str',
3865 '*backing-fmt': 'BlockdevDriver',
3866 '*cluster-size': 'size',
3867 '*table-size': 'int' } }
3870 # @BlockdevCreateOptionsRbd:
3872 # Driver specific image creation options for rbd/Ceph.
3874 # @location Where to store the new image file. This location cannot
3875 # point to a snapshot.
3876 # @size Size of the virtual disk in bytes
3877 # @cluster-size RBD object size
3881 { 'struct': 'BlockdevCreateOptionsRbd',
3882 'data': { 'location': 'BlockdevOptionsRbd',
3884 '*cluster-size' : 'size' } }
3887 # @SheepdogRedundancyType:
3889 # @full Create a fully replicated vdi with x copies
3890 # @erasure-coded Create an erasure coded vdi with x data strips and
3895 { 'enum': 'SheepdogRedundancyType',
3896 'data': [ 'full', 'erasure-coded' ] }
3899 # @SheepdogRedundancyFull:
3901 # @copies Number of copies to use (between 1 and 31)
3905 { 'struct': 'SheepdogRedundancyFull',
3906 'data': { 'copies': 'int' }}
3909 # @SheepdogRedundancyErasureCoded:
3911 # @data-strips Number of data strips to use (one of {2,4,8,16})
3912 # @parity-strips Number of parity strips to use (between 1 and 15)
3916 { 'struct': 'SheepdogRedundancyErasureCoded',
3917 'data': { 'data-strips': 'int',
3918 'parity-strips': 'int' }}
3921 # @SheepdogRedundancy:
3925 { 'union': 'SheepdogRedundancy',
3926 'base': { 'type': 'SheepdogRedundancyType' },
3927 'discriminator': 'type',
3928 'data': { 'full': 'SheepdogRedundancyFull',
3929 'erasure-coded': 'SheepdogRedundancyErasureCoded' } }
3932 # @BlockdevCreateOptionsSheepdog:
3934 # Driver specific image creation options for Sheepdog.
3936 # @location Where to store the new image file
3937 # @size Size of the virtual disk in bytes
3938 # @backing-file File name of a base image
3939 # @preallocation Preallocation mode (allowed values: off, full)
3940 # @redundancy Redundancy of the image
3941 # @object-size Object size of the image
3945 { 'struct': 'BlockdevCreateOptionsSheepdog',
3946 'data': { 'location': 'BlockdevOptionsSheepdog',
3948 '*backing-file': 'str',
3949 '*preallocation': 'PreallocMode',
3950 '*redundancy': 'SheepdogRedundancy',
3951 '*object-size': 'size' } }
3954 # @BlockdevCreateOptionsSsh:
3956 # Driver specific image creation options for SSH.
3958 # @location Where to store the new image file
3959 # @size Size of the virtual disk in bytes
3963 { 'struct': 'BlockdevCreateOptionsSsh',
3964 'data': { 'location': 'BlockdevOptionsSsh',
3968 # @BlockdevCreateOptionsVdi:
3970 # Driver specific image creation options for VDI.
3972 # @file Node to create the image format on
3973 # @size Size of the virtual disk in bytes
3974 # @preallocation Preallocation mode for the new image (allowed values: off,
3975 # metadata; default: off)
3979 { 'struct': 'BlockdevCreateOptionsVdi',
3980 'data': { 'file': 'BlockdevRef',
3982 '*preallocation': 'PreallocMode' } }
3985 # @BlockdevVhdxSubformat:
3987 # @dynamic: Growing image file
3988 # @fixed: Preallocated fixed-size image file
3992 { 'enum': 'BlockdevVhdxSubformat',
3993 'data': [ 'dynamic', 'fixed' ] }
3996 # @BlockdevCreateOptionsVhdx:
3998 # Driver specific image creation options for vhdx.
4000 # @file Node to create the image format on
4001 # @size Size of the virtual disk in bytes
4002 # @log-size Log size in bytes, must be a multiple of 1 MB
4004 # @block-size Block size in bytes, must be a multiple of 1 MB and not
4005 # larger than 256 MB (default: automatically choose a block
4006 # size depending on the image size)
4007 # @subformat vhdx subformat (default: dynamic)
4008 # @block-state-zero Force use of payload blocks of type 'ZERO'. Non-standard,
4009 # but default. Do not set to 'off' when using 'qemu-img
4010 # convert' with subformat=dynamic.
4014 { 'struct': 'BlockdevCreateOptionsVhdx',
4015 'data': { 'file': 'BlockdevRef',
4017 '*log-size': 'size',
4018 '*block-size': 'size',
4019 '*subformat': 'BlockdevVhdxSubformat',
4020 '*block-state-zero': 'bool' } }
4023 # @BlockdevVpcSubformat:
4025 # @dynamic: Growing image file
4026 # @fixed: Preallocated fixed-size image file
4030 { 'enum': 'BlockdevVpcSubformat',
4031 'data': [ 'dynamic', 'fixed' ] }
4034 # @BlockdevCreateOptionsVpc:
4036 # Driver specific image creation options for vpc (VHD).
4038 # @file Node to create the image format on
4039 # @size Size of the virtual disk in bytes
4040 # @subformat vhdx subformat (default: dynamic)
4041 # @force-size Force use of the exact byte size instead of rounding to the
4042 # next size that can be represented in CHS geometry
4047 { 'struct': 'BlockdevCreateOptionsVpc',
4048 'data': { 'file': 'BlockdevRef',
4050 '*subformat': 'BlockdevVpcSubformat',
4051 '*force-size': 'bool' } }
4054 # @BlockdevCreateNotSupported:
4056 # This is used for all drivers that don't support creating images.
4060 { 'struct': 'BlockdevCreateNotSupported', 'data': {}}
4063 # @BlockdevCreateOptions:
4065 # Options for creating an image format on a given node.
4067 # @driver block driver to create the image format
4071 { 'union': 'BlockdevCreateOptions',
4073 'driver': 'BlockdevDriver' },
4074 'discriminator': 'driver',
4076 'blkdebug': 'BlockdevCreateNotSupported',
4077 'blkverify': 'BlockdevCreateNotSupported',
4078 'bochs': 'BlockdevCreateNotSupported',
4079 'cloop': 'BlockdevCreateNotSupported',
4080 'copy-on-read': 'BlockdevCreateNotSupported',
4081 'dmg': 'BlockdevCreateNotSupported',
4082 'file': 'BlockdevCreateOptionsFile',
4083 'ftp': 'BlockdevCreateNotSupported',
4084 'ftps': 'BlockdevCreateNotSupported',
4085 'gluster': 'BlockdevCreateOptionsGluster',
4086 'host_cdrom': 'BlockdevCreateNotSupported',
4087 'host_device': 'BlockdevCreateNotSupported',
4088 'http': 'BlockdevCreateNotSupported',
4089 'https': 'BlockdevCreateNotSupported',
4090 'iscsi': 'BlockdevCreateNotSupported',
4091 'luks': 'BlockdevCreateOptionsLUKS',
4092 'nbd': 'BlockdevCreateNotSupported',
4093 'nfs': 'BlockdevCreateOptionsNfs',
4094 'null-aio': 'BlockdevCreateNotSupported',
4095 'null-co': 'BlockdevCreateNotSupported',
4096 'nvme': 'BlockdevCreateNotSupported',
4097 'parallels': 'BlockdevCreateOptionsParallels',
4098 'qcow': 'BlockdevCreateOptionsQcow',
4099 'qcow2': 'BlockdevCreateOptionsQcow2',
4100 'qed': 'BlockdevCreateOptionsQed',
4101 'quorum': 'BlockdevCreateNotSupported',
4102 'raw': 'BlockdevCreateNotSupported',
4103 'rbd': 'BlockdevCreateOptionsRbd',
4104 'replication': 'BlockdevCreateNotSupported',
4105 'sheepdog': 'BlockdevCreateOptionsSheepdog',
4106 'ssh': 'BlockdevCreateOptionsSsh',
4107 'throttle': 'BlockdevCreateNotSupported',
4108 'vdi': 'BlockdevCreateOptionsVdi',
4109 'vhdx': 'BlockdevCreateOptionsVhdx',
4110 'vmdk': 'BlockdevCreateNotSupported',
4111 'vpc': 'BlockdevCreateOptionsVpc',
4112 'vvfat': 'BlockdevCreateNotSupported',
4113 'vxhs': 'BlockdevCreateNotSupported'
4119 # Starts a job to create an image format on a given node. The job is
4120 # automatically finalized, but a manual job-dismiss is required.
4122 # @job-id: Identifier for the newly created job.
4124 # @options: Options for the image creation.
4128 { 'command': 'blockdev-create',
4129 'data': { 'job-id': 'str',
4130 'options': 'BlockdevCreateOptions' } }
4133 # @blockdev-open-tray:
4135 # Opens a block device's tray. If there is a block driver state tree inserted as
4136 # a medium, it will become inaccessible to the guest (but it will remain
4137 # associated to the block device, so closing the tray will make it accessible
4140 # If the tray was already open before, this will be a no-op.
4142 # Once the tray opens, a DEVICE_TRAY_MOVED event is emitted. There are cases in
4143 # which no such event will be generated, these include:
4144 # - if the guest has locked the tray, @force is false and the guest does not
4145 # respond to the eject request
4146 # - if the BlockBackend denoted by @device does not have a guest device attached
4148 # - if the guest device does not have an actual tray
4150 # @device: Block device name (deprecated, use @id instead)
4152 # @id: The name or QOM path of the guest device (since: 2.8)
4154 # @force: if false (the default), an eject request will be sent to
4155 # the guest if it has locked the tray (and the tray will not be opened
4156 # immediately); if true, the tray will be opened regardless of whether
4163 # -> { "execute": "blockdev-open-tray",
4164 # "arguments": { "id": "ide0-1-0" } }
4166 # <- { "timestamp": { "seconds": 1418751016,
4167 # "microseconds": 716996 },
4168 # "event": "DEVICE_TRAY_MOVED",
4169 # "data": { "device": "ide1-cd0",
4171 # "tray-open": true } }
4173 # <- { "return": {} }
4176 { 'command': 'blockdev-open-tray',
4177 'data': { '*device': 'str',
4179 '*force': 'bool' } }
4182 # @blockdev-close-tray:
4184 # Closes a block device's tray. If there is a block driver state tree associated
4185 # with the block device (which is currently ejected), that tree will be loaded
4188 # If the tray was already closed before, this will be a no-op.
4190 # @device: Block device name (deprecated, use @id instead)
4192 # @id: The name or QOM path of the guest device (since: 2.8)
4198 # -> { "execute": "blockdev-close-tray",
4199 # "arguments": { "id": "ide0-1-0" } }
4201 # <- { "timestamp": { "seconds": 1418751345,
4202 # "microseconds": 272147 },
4203 # "event": "DEVICE_TRAY_MOVED",
4204 # "data": { "device": "ide1-cd0",
4206 # "tray-open": false } }
4208 # <- { "return": {} }
4211 { 'command': 'blockdev-close-tray',
4212 'data': { '*device': 'str',
4216 # @blockdev-remove-medium:
4218 # Removes a medium (a block driver state tree) from a block device. That block
4219 # device's tray must currently be open (unless there is no attached guest
4222 # If the tray is open and there is no medium inserted, this will be a no-op.
4224 # @id: The name or QOM path of the guest device
4230 # -> { "execute": "blockdev-remove-medium",
4231 # "arguments": { "id": "ide0-1-0" } }
4233 # <- { "error": { "class": "GenericError",
4234 # "desc": "Tray of device 'ide0-1-0' is not open" } }
4236 # -> { "execute": "blockdev-open-tray",
4237 # "arguments": { "id": "ide0-1-0" } }
4239 # <- { "timestamp": { "seconds": 1418751627,
4240 # "microseconds": 549958 },
4241 # "event": "DEVICE_TRAY_MOVED",
4242 # "data": { "device": "ide1-cd0",
4244 # "tray-open": true } }
4246 # <- { "return": {} }
4248 # -> { "execute": "blockdev-remove-medium",
4249 # "arguments": { "id": "ide0-1-0" } }
4251 # <- { "return": {} }
4254 { 'command': 'blockdev-remove-medium',
4255 'data': { 'id': 'str' } }
4258 # @blockdev-insert-medium:
4260 # Inserts a medium (a block driver state tree) into a block device. That block
4261 # device's tray must currently be open (unless there is no attached guest
4262 # device) and there must be no medium inserted already.
4264 # @id: The name or QOM path of the guest device
4266 # @node-name: name of a node in the block driver state graph
4272 # -> { "execute": "blockdev-add",
4274 # "node-name": "node0",
4276 # "file": { "driver": "file",
4277 # "filename": "fedora.iso" } } }
4278 # <- { "return": {} }
4280 # -> { "execute": "blockdev-insert-medium",
4281 # "arguments": { "id": "ide0-1-0",
4282 # "node-name": "node0" } }
4284 # <- { "return": {} }
4287 { 'command': 'blockdev-insert-medium',
4288 'data': { 'id': 'str',
4289 'node-name': 'str'} }
4293 # @BlockdevChangeReadOnlyMode:
4295 # Specifies the new read-only mode of a block device subject to the
4296 # @blockdev-change-medium command.
4298 # @retain: Retains the current read-only mode
4300 # @read-only: Makes the device read-only
4302 # @read-write: Makes the device writable
4307 { 'enum': 'BlockdevChangeReadOnlyMode',
4308 'data': ['retain', 'read-only', 'read-write'] }
4312 # @blockdev-change-medium:
4314 # Changes the medium inserted into a block device by ejecting the current medium
4315 # and loading a new image file which is inserted as the new medium (this command
4316 # combines blockdev-open-tray, blockdev-remove-medium, blockdev-insert-medium
4317 # and blockdev-close-tray).
4319 # @device: Block device name (deprecated, use @id instead)
4321 # @id: The name or QOM path of the guest device
4324 # @filename: filename of the new image to be loaded
4326 # @format: format to open the new image with (defaults to
4327 # the probed format)
4329 # @read-only-mode: change the read-only mode of the device; defaults
4336 # 1. Change a removable medium
4338 # -> { "execute": "blockdev-change-medium",
4339 # "arguments": { "id": "ide0-1-0",
4340 # "filename": "/srv/images/Fedora-12-x86_64-DVD.iso",
4341 # "format": "raw" } }
4342 # <- { "return": {} }
4344 # 2. Load a read-only medium into a writable drive
4346 # -> { "execute": "blockdev-change-medium",
4347 # "arguments": { "id": "floppyA",
4348 # "filename": "/srv/images/ro.img",
4350 # "read-only-mode": "retain" } }
4353 # { "class": "GenericError",
4354 # "desc": "Could not open '/srv/images/ro.img': Permission denied" } }
4356 # -> { "execute": "blockdev-change-medium",
4357 # "arguments": { "id": "floppyA",
4358 # "filename": "/srv/images/ro.img",
4360 # "read-only-mode": "read-only" } }
4362 # <- { "return": {} }
4365 { 'command': 'blockdev-change-medium',
4366 'data': { '*device': 'str',
4370 '*read-only-mode': 'BlockdevChangeReadOnlyMode' } }
4374 # @BlockErrorAction:
4376 # An enumeration of action that has been taken when a DISK I/O occurs
4378 # @ignore: error has been ignored
4380 # @report: error has been reported to the device
4382 # @stop: error caused VM to be stopped
4386 { 'enum': 'BlockErrorAction',
4387 'data': [ 'ignore', 'report', 'stop' ] }
4391 # @BLOCK_IMAGE_CORRUPTED:
4393 # Emitted when a disk image is being marked corrupt. The image can be
4394 # identified by its device or node name. The 'device' field is always
4395 # present for compatibility reasons, but it can be empty ("") if the
4396 # image does not have a device name associated.
4398 # @device: device name. This is always present for compatibility
4399 # reasons, but it can be empty ("") if the image does not
4400 # have a device name associated.
4402 # @node-name: node name (Since: 2.4)
4404 # @msg: informative message for human consumption, such as the kind of
4405 # corruption being detected. It should not be parsed by machine as it is
4406 # not guaranteed to be stable
4408 # @offset: if the corruption resulted from an image access, this is
4409 # the host's access offset into the image
4411 # @size: if the corruption resulted from an image access, this is
4414 # @fatal: if set, the image is marked corrupt and therefore unusable after this
4415 # event and must be repaired (Since 2.2; before, every
4416 # BLOCK_IMAGE_CORRUPTED event was fatal)
4418 # Note: If action is "stop", a STOP event will eventually follow the
4419 # BLOCK_IO_ERROR event.
4423 # <- { "event": "BLOCK_IMAGE_CORRUPTED",
4424 # "data": { "device": "ide0-hd0", "node-name": "node0",
4425 # "msg": "Prevented active L1 table overwrite", "offset": 196608,
4427 # "timestamp": { "seconds": 1378126126, "microseconds": 966463 } }
4431 { 'event': 'BLOCK_IMAGE_CORRUPTED',
4432 'data': { 'device' : 'str',
4433 '*node-name' : 'str',
4437 'fatal' : 'bool' } }
4442 # Emitted when a disk I/O error occurs
4444 # @device: device name. This is always present for compatibility
4445 # reasons, but it can be empty ("") if the image does not
4446 # have a device name associated.
4448 # @node-name: node name. Note that errors may be reported for the root node
4449 # that is directly attached to a guest device rather than for the
4450 # node where the error occurred. The node name is not present if
4451 # the drive is empty. (Since: 2.8)
4453 # @operation: I/O operation
4455 # @action: action that has been taken
4457 # @nospace: true if I/O error was caused due to a no-space
4458 # condition. This key is only present if query-block's
4459 # io-status is present, please see query-block documentation
4460 # for more information (since: 2.2)
4462 # @reason: human readable string describing the error cause.
4463 # (This field is a debugging aid for humans, it should not
4464 # be parsed by applications) (since: 2.2)
4466 # Note: If action is "stop", a STOP event will eventually follow the
4467 # BLOCK_IO_ERROR event
4473 # <- { "event": "BLOCK_IO_ERROR",
4474 # "data": { "device": "ide0-hd1",
4475 # "node-name": "#block212",
4476 # "operation": "write",
4477 # "action": "stop" },
4478 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4481 { 'event': 'BLOCK_IO_ERROR',
4482 'data': { 'device': 'str', '*node-name': 'str',
4483 'operation': 'IoOperationType',
4484 'action': 'BlockErrorAction', '*nospace': 'bool',
4488 # @BLOCK_JOB_COMPLETED:
4490 # Emitted when a block job has completed
4494 # @device: The job identifier. Originally the device name but other
4495 # values are allowed since QEMU 2.7
4497 # @len: maximum progress value
4499 # @offset: current progress value. On success this is equal to len.
4500 # On failure this is less than len
4502 # @speed: rate limit, bytes per second
4504 # @error: error message. Only present on failure. This field
4505 # contains a human-readable error message. There are no semantics
4506 # other than that streaming has failed and clients should not try to
4507 # interpret the error string
4513 # <- { "event": "BLOCK_JOB_COMPLETED",
4514 # "data": { "type": "stream", "device": "virtio-disk0",
4515 # "len": 10737418240, "offset": 10737418240,
4517 # "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
4520 { 'event': 'BLOCK_JOB_COMPLETED',
4521 'data': { 'type' : 'JobType',
4529 # @BLOCK_JOB_CANCELLED:
4531 # Emitted when a block job has been cancelled
4535 # @device: The job identifier. Originally the device name but other
4536 # values are allowed since QEMU 2.7
4538 # @len: maximum progress value
4540 # @offset: current progress value. On success this is equal to len.
4541 # On failure this is less than len
4543 # @speed: rate limit, bytes per second
4549 # <- { "event": "BLOCK_JOB_CANCELLED",
4550 # "data": { "type": "stream", "device": "virtio-disk0",
4551 # "len": 10737418240, "offset": 134217728,
4553 # "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
4556 { 'event': 'BLOCK_JOB_CANCELLED',
4557 'data': { 'type' : 'JobType',
4566 # Emitted when a block job encounters an error
4568 # @device: The job identifier. Originally the device name but other
4569 # values are allowed since QEMU 2.7
4571 # @operation: I/O operation
4573 # @action: action that has been taken
4579 # <- { "event": "BLOCK_JOB_ERROR",
4580 # "data": { "device": "ide0-hd1",
4581 # "operation": "write",
4582 # "action": "stop" },
4583 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4586 { 'event': 'BLOCK_JOB_ERROR',
4587 'data': { 'device' : 'str',
4588 'operation': 'IoOperationType',
4589 'action' : 'BlockErrorAction' } }
4594 # Emitted when a block job is ready to complete
4598 # @device: The job identifier. Originally the device name but other
4599 # values are allowed since QEMU 2.7
4601 # @len: maximum progress value
4603 # @offset: current progress value. On success this is equal to len.
4604 # On failure this is less than len
4606 # @speed: rate limit, bytes per second
4608 # Note: The "ready to complete" status is always reset by a @BLOCK_JOB_ERROR
4615 # <- { "event": "BLOCK_JOB_READY",
4616 # "data": { "device": "drive0", "type": "mirror", "speed": 0,
4617 # "len": 2097152, "offset": 2097152 }
4618 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4621 { 'event': 'BLOCK_JOB_READY',
4622 'data': { 'type' : 'JobType',
4629 # @BLOCK_JOB_PENDING:
4631 # Emitted when a block job is awaiting explicit authorization to finalize graph
4632 # changes via @block-job-finalize. If this job is part of a transaction, it will
4633 # not emit this event until the transaction has converged first.
4637 # @id: The job identifier.
4643 # <- { "event": "BLOCK_JOB_WAITING",
4644 # "data": { "device": "drive0", "type": "mirror" },
4645 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4648 { 'event': 'BLOCK_JOB_PENDING',
4649 'data': { 'type' : 'JobType',
4655 # Preallocation mode of QEMU image file
4657 # @off: no preallocation
4658 # @metadata: preallocate only for metadata
4659 # @falloc: like @full preallocation but allocate disk space by
4660 # posix_fallocate() rather than writing zeros.
4661 # @full: preallocate all data by writing zeros to device to ensure disk
4662 # space is really available. @full preallocation also sets up
4663 # metadata correctly.
4667 { 'enum': 'PreallocMode',
4668 'data': [ 'off', 'metadata', 'falloc', 'full' ] }
4671 # @BLOCK_WRITE_THRESHOLD:
4673 # Emitted when writes on block device reaches or exceeds the
4674 # configured write threshold. For thin-provisioned devices, this
4675 # means the device should be extended to avoid pausing for
4677 # The event is one shot. Once triggered, it needs to be
4678 # re-registered with another block-set-write-threshold command.
4680 # @node-name: graph node name on which the threshold was exceeded.
4682 # @amount-exceeded: amount of data which exceeded the threshold, in bytes.
4684 # @write-threshold: last configured threshold, in bytes.
4688 { 'event': 'BLOCK_WRITE_THRESHOLD',
4689 'data': { 'node-name': 'str',
4690 'amount-exceeded': 'uint64',
4691 'write-threshold': 'uint64' } }
4694 # @block-set-write-threshold:
4696 # Change the write threshold for a block drive. An event will be
4697 # delivered if a write to this block drive crosses the configured
4698 # threshold. The threshold is an offset, thus must be
4699 # non-negative. Default is no write threshold. Setting the threshold
4700 # to zero disables it.
4702 # This is useful to transparently resize thin-provisioned drives without
4703 # the guest OS noticing.
4705 # @node-name: graph node name on which the threshold must be set.
4707 # @write-threshold: configured threshold for the block device, bytes.
4708 # Use 0 to disable the threshold.
4714 # -> { "execute": "block-set-write-threshold",
4715 # "arguments": { "node-name": "mydev",
4716 # "write-threshold": 17179869184 } }
4717 # <- { "return": {} }
4720 { 'command': 'block-set-write-threshold',
4721 'data': { 'node-name': 'str', 'write-threshold': 'uint64' } }
4724 # @x-blockdev-change:
4726 # Dynamically reconfigure the block driver state graph. It can be used
4727 # to add, remove, insert or replace a graph node. Currently only the
4728 # Quorum driver implements this feature to add or remove its child. This
4729 # is useful to fix a broken quorum child.
4731 # If @node is specified, it will be inserted under @parent. @child
4732 # may not be specified in this case. If both @parent and @child are
4733 # specified but @node is not, @child will be detached from @parent.
4735 # @parent: the id or name of the parent node.
4737 # @child: the name of a child under the given parent node.
4739 # @node: the name of the node that will be added.
4741 # Note: this command is experimental, and its API is not stable. It
4742 # does not support all kinds of operations, all kinds of children, nor
4743 # all block drivers.
4745 # FIXME Removing children from a quorum node means introducing gaps in the
4746 # child indices. This cannot be represented in the 'children' list of
4747 # BlockdevOptionsQuorum, as returned by .bdrv_refresh_filename().
4749 # Warning: The data in a new quorum child MUST be consistent with that of
4750 # the rest of the array.
4756 # 1. Add a new node to a quorum
4757 # -> { "execute": "blockdev-add",
4760 # "node-name": "new_node",
4761 # "file": { "driver": "file",
4762 # "filename": "test.raw" } } }
4763 # <- { "return": {} }
4764 # -> { "execute": "x-blockdev-change",
4765 # "arguments": { "parent": "disk1",
4766 # "node": "new_node" } }
4767 # <- { "return": {} }
4769 # 2. Delete a quorum's node
4770 # -> { "execute": "x-blockdev-change",
4771 # "arguments": { "parent": "disk1",
4772 # "child": "children.1" } }
4773 # <- { "return": {} }
4776 { 'command': 'x-blockdev-change',
4777 'data' : { 'parent': 'str',
4782 # @x-blockdev-set-iothread:
4784 # Move @node and its children into the @iothread. If @iothread is null then
4785 # move @node and its children into the main loop.
4787 # The node must not be attached to a BlockBackend.
4789 # @node-name: the name of the block driver node
4791 # @iothread: the name of the IOThread object or null for the main loop
4793 # @force: true if the node and its children should be moved when a BlockBackend
4794 # is already attached
4796 # Note: this command is experimental and intended for test cases that need
4797 # control over IOThreads only.
4803 # 1. Move a node into an IOThread
4804 # -> { "execute": "x-blockdev-set-iothread",
4805 # "arguments": { "node-name": "disk1",
4806 # "iothread": "iothread0" } }
4807 # <- { "return": {} }
4809 # 2. Move a node into the main loop
4810 # -> { "execute": "x-blockdev-set-iothread",
4811 # "arguments": { "node-name": "disk1",
4812 # "iothread": null } }
4813 # <- { "return": {} }
4816 { 'command': 'x-blockdev-set-iothread',
4817 'data' : { 'node-name': 'str',
4818 'iothread': 'StrOrNull',
4819 '*force': 'bool' } }