slirp: reformat m_inc routine
[qemu/ar7.git] / qapi / block-core.json
blob4b1de474a99947b6bf6a415d41ce0444385b21aa
1 # -*- Mode: Python -*-
3 ##
4 # == Block core (VM unrelated)
5 ##
7 { 'include': 'common.json' }
8 { 'include': 'crypto.json' }
9 { 'include': 'job.json' }
10 { 'include': 'sockets.json' }
13 # @SnapshotInfo:
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
29 # Since: 1.3
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
42 # Since: 2.10
44 { 'struct': 'ImageInfoSpecificQCow2EncryptionBase',
45   'data': { 'format': 'BlockdevQcow2EncryptionFormat'}}
48 # @ImageInfoSpecificQCow2Encryption:
50 # Since: 2.10
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)
73 # Since: 1.7
75 { 'struct': 'ImageInfoSpecificQCow2',
76   'data': {
77       'compat': 'str',
78       '*lazy-refcounts': 'bool',
79       '*corrupt': 'bool',
80       'refcount-bits': 'int',
81       '*encrypt': 'ImageInfoSpecificQCow2Encryption'
82   } }
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
95 # Since: 1.7
97 { 'struct': 'ImageInfoSpecificVmdk',
98   'data': {
99       'create-type': 'str',
100       'cid': 'int',
101       'parent-cid': 'int',
102       'extents': ['ImageInfo']
103   } }
106 # @ImageInfoSpecific:
108 # A discriminated record of image format specific information structures.
110 # Since: 1.7
112 { 'union': 'ImageInfoSpecific',
113   'data': {
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'
120   } }
123 # @ImageInfo:
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)
156 # Since: 1.3
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' } }
169 # @ImageCheck:
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
181 #                    supports it
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
188 #                     if any
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
197 #                      supports it
199 # @fragmented-clusters: total number of fragmented clusters, this
200 #                       field is present if the driver for the image format
201 #                       supports it
203 # @compressed-clusters: total number of compressed clusters, this
204 #                       field is present if the driver for the image format
205 #                       supports it
207 # Since: 1.4
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' } }
218 # @MapEntry:
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
236 # Since: 2.6
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
253 # Since: 2.3
255 { 'struct': 'BlockdevCacheInfo',
256   'data': { 'writeback': 'bool',
257             'direct': 'bool',
258             'no-flush': 'bool' } }
261 # @BlockDeviceInfo:
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
279 #       2.6: 'luks' added
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)
352 # Since: 0.14.0
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
383 # Since: 1.0
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
393 #         (in bytes)
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.
410 # Since: 1.7
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,
422 #          and is immutable.
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)
433 # Since: 2.4
435 { 'enum': 'DirtyBitmapStatus',
436   'data': ['active', 'disabled', 'frozen', 'locked'] }
439 # @BlockDirtyInfo:
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)
451 # Since: 1.3
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:
472 #        5|           *
473 #        4|           *
474 #        3| *         *
475 #        2| *         *    *
476 #        1| *    *    *    *
477 #         +------------------
478 #             10   50   100
480 # Since: 2.12
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
509 #                    histogram.
511 # @boundaries-flush: list of interval boundary values for flush latency
512 #                    histogram.
514 # Returns: error if device is not found or any boundary arrays are invalid.
516 # Since: 2.12
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'] } }
558 # @BlockInfo:
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
574 #          removed
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
585 #             scsi-generic)
587 # @inserted: @BlockDeviceInfo describing the device if media is
588 #            present
590 # Since:  0.14.0
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'] } }
599 # @BlockMeasureInfo:
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
616 #                   to all sectors.
618 # Since: 2.10
620 { 'struct': 'BlockMeasureInfo',
621   'data': {'required': 'int', 'fully-allocated': 'int'} }
624 # @query-block:
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.
631 # Since: 0.14.0
633 # Example:
635 # -> { "execute": "query-block" }
636 # <- {
637 #       "return":[
638 #          {
639 #             "io-status": "ok",
640 #             "device":"ide0-hd0",
641 #             "locked":false,
642 #             "removable":false,
643 #             "inserted":{
644 #                "ro":false,
645 #                "drv":"qcow2",
646 #                "encrypted":false,
647 #                "file":"disks/test.qcow2",
648 #                "backing_file_depth":1,
649 #                "bps":1000000,
650 #                "bps_rd":0,
651 #                "bps_wr":0,
652 #                "iops":1000000,
653 #                "iops_rd":0,
654 #                "iops_wr":0,
655 #                "bps_max": 8000000,
656 #                "bps_rd_max": 0,
657 #                "bps_wr_max": 0,
658 #                "iops_max": 0,
659 #                "iops_rd_max": 0,
660 #                "iops_wr_max": 0,
661 #                "iops_size": 0,
662 #                "detect_zeroes": "on",
663 #                "write_threshold": 0,
664 #                "image":{
665 #                   "filename":"disks/test.qcow2",
666 #                   "format":"qcow2",
667 #                   "virtual-size":2048000,
668 #                   "backing_file":"base.qcow2",
669 #                   "full-backing-filename":"disks/base.qcow2",
670 #                   "backing-filename-format":"qcow2",
671 #                   "snapshots":[
672 #                      {
673 #                         "id": "1",
674 #                         "name": "snapshot1",
675 #                         "vm-state-size": 0,
676 #                         "date-sec": 10000200,
677 #                         "date-nsec": 12,
678 #                         "vm-clock-sec": 206,
679 #                         "vm-clock-nsec": 30
680 #                      }
681 #                   ],
682 #                   "backing-image":{
683 #                       "filename":"disks/base.qcow2",
684 #                       "format":"qcow2",
685 #                       "virtual-size":2048000
686 #                   }
687 #                }
688 #             },
689 #             "qdev": "ide_disk",
690 #             "type":"unknown"
691 #          },
692 #          {
693 #             "io-status": "ok",
694 #             "device":"ide1-cd0",
695 #             "locked":false,
696 #             "removable":true,
697 #             "qdev": "/machine/unattached/device[23]",
698 #             "tray_open": false,
699 #             "type":"unknown"
700 #          },
701 #          {
702 #             "device":"floppy0",
703 #             "locked":false,
704 #             "removable":true,
705 #             "qdev": "/machine/unattached/device[20]",
706 #             "type":"unknown"
707 #          },
708 #          {
709 #             "device":"sd0",
710 #             "locked":false,
711 #             "removable":true,
712 #             "type":"unknown"
713 #          }
714 #       ]
715 #    }
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,
727 #                   in seconds.
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.
762 # Since: 2.5
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' } }
773 # @BlockDeviceStats:
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
789 #                       (since 0.15.0).
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)
843 # Since: 0.14.0
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' } }
861 # @BlockStats:
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.
878 #           (Since 2.0)
880 # Since: 0.14.0
882 { 'struct': 'BlockStats',
883   'data': {'*device': 'str', '*node-name': 'str',
884            'stats': 'BlockDeviceStats',
885            '*parent': 'BlockStats',
886            '*backing': 'BlockStats'} }
889 # @query-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.
903 # Since: 0.14.0
905 # Example:
907 # -> { "execute": "query-blockstats" }
908 # <- {
909 #       "return":[
910 #          {
911 #             "device":"ide0-hd0",
912 #             "parent":{
913 #                "stats":{
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,
923 #                   "rd_merged":0,
924 #                   "wr_merged":0,
925 #                   "idle_time_ns":2953431879,
926 #                   "account_invalid":true,
927 #                   "account_failed":false
928 #                }
929 #             },
930 #             "stats":{
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,
940 #                "rd_merged":0,
941 #                "wr_merged":0,
942 #                "idle_time_ns":2953431879,
943 #                "account_invalid":true,
944 #                "account_failed":false
945 #             }
946 #          },
947 #          {
948 #             "device":"ide1-cd0",
949 #             "stats":{
950 #                "wr_highest_offset":0,
951 #                "wr_bytes":0,
952 #                "wr_operations":0,
953 #                "rd_bytes":0,
954 #                "rd_operations":0
955 #                "flush_operations":0,
956 #                "wr_total_times_ns":0
957 #                "rd_total_times_ns":0
958 #                "flush_total_times_ns":0,
959 #                "rd_merged":0,
960 #                "wr_merged":0,
961 #                "account_invalid":false,
962 #                "account_failed":false
963 #             }
964 #          },
965 #          {
966 #             "device":"floppy0",
967 #             "stats":{
968 #                "wr_highest_offset":0,
969 #                "wr_bytes":0,
970 #                "wr_operations":0,
971 #                "rd_bytes":0,
972 #                "rd_operations":0
973 #                "flush_operations":0,
974 #                "wr_total_times_ns":0
975 #                "rd_total_times_ns":0
976 #                "flush_total_times_ns":0,
977 #                "rd_merged":0,
978 #                "wr_merged":0,
979 #                "account_invalid":false,
980 #                "account_failed":false
981 #             }
982 #          },
983 #          {
984 #             "device":"sd0",
985 #             "stats":{
986 #                "wr_highest_offset":0,
987 #                "wr_bytes":0,
988 #                "wr_operations":0,
989 #                "rd_bytes":0,
990 #                "rd_operations":0
991 #                "flush_operations":0,
992 #                "wr_total_times_ns":0
993 #                "rd_total_times_ns":0
994 #                "flush_total_times_ns":0,
995 #                "rd_merged":0,
996 #                "wr_merged":0,
997 #                "account_invalid":false,
998 #                "account_failed":false
999 #             }
1000 #          }
1001 #       ]
1002 #    }
1005 { 'command': 'query-blockstats',
1006   'data': { '*query-nodes': 'bool' },
1007   'returns': ['BlockStats'] }
1010 # @BlockdevOnError:
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
1014 # or by a block job
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)
1029 # Since: 1.3
1031 { 'enum': 'BlockdevOnError',
1032   'data': ['report', 'ignore', 'enospc', 'stop', 'auto'] }
1035 # @MirrorSyncMode:
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
1048 # Since: 1.3
1050 { 'enum': 'MirrorSyncMode',
1051   'data': ['top', 'full', 'none', 'incremental'] }
1054 # @BlockJobInfo:
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)
1093 # Since: 1.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',
1101            '*error': 'str' } }
1104 # @query-block-jobs:
1106 # Return information about long-running block device operations.
1108 # Returns: a list of @BlockJobInfo for each active block job
1110 # Since: 1.1
1112 { 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }
1115 # @block_passwd:
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'} }
1127 # @block_resize:
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
1142 # Since: 0.14.0
1144 # Example:
1146 # -> { "execute": "block_resize",
1147 #      "arguments": { "device": "scratch", "size": 1073741824 } }
1148 # <- { "return": {} }
1151 { 'command': 'block_resize', 'data': { '*device': 'str',
1152                                        '*node-name': 'str',
1153                                        'size': 'int' }}
1156 # @NewImageMode:
1158 # An enumeration that tells QEMU how to set the backing file path in
1159 # a new image file.
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.
1167 # Since: 1.1
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
1190 #        'absolute-paths'.
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).
1207 # Since: 2.5
1209 { 'struct': 'BlockdevSnapshot',
1210   'data': { 'node': 'str', 'overlay': 'str' } }
1213 # @DriveBackup:
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
1232 #        'absolute-paths'.
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
1254 #                 commit actions.
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.
1267 # Since: 1.6
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' } }
1279 # @BlockdevBackup:
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
1290 #        only new I/O).
1292 # @speed: the maximum speed, in bytes per second. The default is 0,
1293 #         for unlimited.
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
1309 #                 commit actions.
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.
1322 # Since: 2.3
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
1341 # Since: 0.14.0
1343 # Example:
1345 # -> { "execute": "blockdev-snapshot-sync",
1346 #      "arguments": { "device": "ide-hd0",
1347 #                     "snapshot-file":
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
1365 # image.
1367 # For the arguments, see the documentation of BlockdevSnapshot.
1369 # Since: 2.5
1371 # Example:
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
1399 # updated.
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
1407 #                   image-node-name.
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
1418 # Since: 2.1
1420 { 'command': 'change-backing-file',
1421   'data': { 'device': 'str', 'image-node-name': 'str',
1422             'backing-file': 'str' } }
1425 # @block-commit:
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.
1457 #                           (Since 2.1)
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
1485 # Since: 1.3
1487 # Example:
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' } }
1501 # @drive-backup:
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
1512 # Since: 1.6
1514 # Example:
1516 # -> { "execute": "drive-backup",
1517 #      "arguments": { "device": "drive0",
1518 #                     "sync": "full",
1519 #                     "target": "backup.img" } }
1520 # <- { "return": {} }
1523 { 'command': 'drive-backup', 'boxed': true,
1524   'data': 'DriveBackup' }
1527 # @blockdev-backup:
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
1538 # Since: 2.3
1540 # Example:
1541 # -> { "execute": "blockdev-backup",
1542 #      "arguments": { "device": "src-id",
1543 #                     "sync": "full",
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
1559 # Since: 2.0
1561 # Example:
1563 # -> { "execute": "query-named-block-nodes" }
1564 # <- { "return": [ { "ro":false,
1565 #                    "drv":"qcow2",
1566 #                    "encrypted":false,
1567 #                    "file":"disks/test.qcow2",
1568 #                    "node-name": "my-node",
1569 #                    "backing_file_depth":1,
1570 #                    "bps":1000000,
1571 #                    "bps_rd":0,
1572 #                    "bps_wr":0,
1573 #                    "iops":1000000,
1574 #                    "iops_rd":0,
1575 #                    "iops_wr":0,
1576 #                    "bps_max": 8000000,
1577 #                    "bps_rd_max": 0,
1578 #                    "bps_wr_max": 0,
1579 #                    "iops_max": 0,
1580 #                    "iops_rd_max": 0,
1581 #                    "iops_wr_max": 0,
1582 #                    "iops_size": 0,
1583 #                    "write_threshold": 0,
1584 #                    "image":{
1585 #                       "filename":"disks/test.qcow2",
1586 #                       "format":"qcow2",
1587 #                       "virtual-size":2048000,
1588 #                       "backing_file":"base.qcow2",
1589 #                       "full-backing-filename":"disks/base.qcow2",
1590 #                       "backing-filename-format":"qcow2",
1591 #                       "snapshots":[
1592 #                          {
1593 #                             "id": "1",
1594 #                             "name": "snapshot1",
1595 #                             "vm-state-size": 0,
1596 #                             "date-sec": 10000200,
1597 #                             "date-nsec": 12,
1598 #                             "vm-clock-sec": 206,
1599 #                             "vm-clock-nsec": 30
1600 #                          }
1601 #                       ],
1602 #                       "backing-image":{
1603 #                           "filename":"disks/base.qcow2",
1604 #                           "format":"qcow2",
1605 #                           "virtual-size":2048000
1606 #                       }
1607 #                    } } ] }
1610 { 'command': 'query-named-block-nodes', 'returns': [ 'BlockDeviceInfo' ] }
1613 # @drive-mirror:
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
1625 # Since: 1.3
1627 # Example:
1629 # -> { "execute": "drive-mirror",
1630 #      "arguments": { "device": "ide-hd0",
1631 #                     "target": "/some/place/my-image",
1632 #                     "sync": "full",
1633 #                     "format": "qcow2" } }
1634 # <- { "return": {} }
1637 { 'command': 'drive-mirror', 'boxed': true,
1638   'data': 'DriveMirror' }
1641 # @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
1649 #           mirrored.
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
1659 #             (Since 2.1)
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
1666 #        'absolute-paths'.
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
1672 #        only new I/O).
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)
1695 # Since: 1.3
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
1713 # Since: 2.4
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
1735 #            open.
1737 # Since: 2.4
1739 { 'struct': 'BlockDirtyBitmapAdd',
1740   'data': { 'node': 'str', 'name': 'str', '*granularity': 'uint32',
1741             '*persistent': 'bool', '*autoload': 'bool' } }
1744 # @block-dirty-bitmap-add:
1746 # Create a dirty bitmap with a name on the node, and start tracking the writes.
1748 # Returns: nothing on success
1749 #          If @node is not a valid block device or node, DeviceNotFound
1750 #          If @name is already taken, GenericError with an explanation
1752 # Since: 2.4
1754 # Example:
1756 # -> { "execute": "block-dirty-bitmap-add",
1757 #      "arguments": { "node": "drive0", "name": "bitmap0" } }
1758 # <- { "return": {} }
1761 { 'command': 'block-dirty-bitmap-add',
1762   'data': 'BlockDirtyBitmapAdd' }
1765 # @block-dirty-bitmap-remove:
1767 # Stop write tracking and remove the dirty bitmap that was created
1768 # with block-dirty-bitmap-add. If the bitmap is persistent, remove it from its
1769 # storage too.
1771 # Returns: nothing on success
1772 #          If @node is not a valid block device or node, DeviceNotFound
1773 #          If @name is not found, GenericError with an explanation
1774 #          if @name is frozen by an operation, GenericError
1776 # Since: 2.4
1778 # Example:
1780 # -> { "execute": "block-dirty-bitmap-remove",
1781 #      "arguments": { "node": "drive0", "name": "bitmap0" } }
1782 # <- { "return": {} }
1785 { 'command': 'block-dirty-bitmap-remove',
1786   'data': 'BlockDirtyBitmap' }
1789 # @block-dirty-bitmap-clear:
1791 # Clear (reset) a dirty bitmap on the device, so that an incremental
1792 # backup from this point in time forward will only backup clusters
1793 # modified after this clear operation.
1795 # Returns: nothing on success
1796 #          If @node is not a valid block device, DeviceNotFound
1797 #          If @name is not found, GenericError with an explanation
1799 # Since: 2.4
1801 # Example:
1803 # -> { "execute": "block-dirty-bitmap-clear",
1804 #      "arguments": { "node": "drive0", "name": "bitmap0" } }
1805 # <- { "return": {} }
1808 { 'command': 'block-dirty-bitmap-clear',
1809   'data': 'BlockDirtyBitmap' }
1812 # @BlockDirtyBitmapSha256:
1814 # SHA256 hash of dirty bitmap data
1816 # @sha256: ASCII representation of SHA256 bitmap hash
1818 # Since: 2.10
1820   { 'struct': 'BlockDirtyBitmapSha256',
1821     'data': {'sha256': 'str'} }
1824 # @x-debug-block-dirty-bitmap-sha256:
1826 # Get bitmap SHA256
1828 # Returns: BlockDirtyBitmapSha256 on success
1829 #          If @node is not a valid block device, DeviceNotFound
1830 #          If @name is not found or if hashing has failed, GenericError with an
1831 #          explanation
1833 # Since: 2.10
1835   { 'command': 'x-debug-block-dirty-bitmap-sha256',
1836     'data': 'BlockDirtyBitmap', 'returns': 'BlockDirtyBitmapSha256' }
1839 # @blockdev-mirror:
1841 # Start mirroring a block device's writes to a new destination.
1843 # @job-id: identifier for the newly-created block job. If
1844 #          omitted, the device name will be used. (Since 2.7)
1846 # @device: The device name or node-name of a root node whose writes should be
1847 #          mirrored.
1849 # @target: the id or node-name of the block device to mirror to. This mustn't be
1850 #          attached to guest.
1852 # @replaces: with sync=full graph node name to be replaced by the new
1853 #            image when a whole image copy is done. This can be used to repair
1854 #            broken Quorum files.
1856 # @speed:  the maximum speed, in bytes per second
1858 # @sync: what parts of the disk image should be copied to the destination
1859 #        (all the disk, only the sectors allocated in the topmost image, or
1860 #        only new I/O).
1862 # @granularity: granularity of the dirty bitmap, default is 64K
1863 #               if the image format doesn't have clusters, 4K if the clusters
1864 #               are smaller than that, else the cluster size.  Must be a
1865 #               power of 2 between 512 and 64M
1867 # @buf-size: maximum amount of data in flight from source to
1868 #            target
1870 # @on-source-error: the action to take on an error on the source,
1871 #                   default 'report'.  'stop' and 'enospc' can only be used
1872 #                   if the block device supports io-status (see BlockInfo).
1874 # @on-target-error: the action to take on an error on the target,
1875 #                   default 'report' (no limitations, since this applies to
1876 #                   a different block device than @device).
1878 # @filter-node-name: the node name that should be assigned to the
1879 #                    filter driver that the mirror job inserts into the graph
1880 #                    above @device. If this option is not given, a node name is
1881 #                    autogenerated. (Since: 2.9)
1883 # Returns: nothing on success.
1885 # Since: 2.6
1887 # Example:
1889 # -> { "execute": "blockdev-mirror",
1890 #      "arguments": { "device": "ide-hd0",
1891 #                     "target": "target0",
1892 #                     "sync": "full" } }
1893 # <- { "return": {} }
1896 { 'command': 'blockdev-mirror',
1897   'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1898             '*replaces': 'str',
1899             'sync': 'MirrorSyncMode',
1900             '*speed': 'int', '*granularity': 'uint32',
1901             '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1902             '*on-target-error': 'BlockdevOnError',
1903             '*filter-node-name': 'str' } }
1906 # @block_set_io_throttle:
1908 # Change I/O throttle limits for a block drive.
1910 # Since QEMU 2.4, each device with I/O limits is member of a throttle
1911 # group.
1913 # If two or more devices are members of the same group, the limits
1914 # will apply to the combined I/O of the whole group in a round-robin
1915 # fashion. Therefore, setting new I/O limits to a device will affect
1916 # the whole group.
1918 # The name of the group can be specified using the 'group' parameter.
1919 # If the parameter is unset, it is assumed to be the current group of
1920 # that device. If it's not in any group yet, the name of the device
1921 # will be used as the name for its group.
1923 # The 'group' parameter can also be used to move a device to a
1924 # different group. In this case the limits specified in the parameters
1925 # will be applied to the new group only.
1927 # I/O limits can be disabled by setting all of them to 0. In this case
1928 # the device will be removed from its group and the rest of its
1929 # members will not be affected. The 'group' parameter is ignored.
1931 # Returns: Nothing on success
1932 #          If @device is not a valid block device, DeviceNotFound
1934 # Since: 1.1
1936 # Example:
1938 # -> { "execute": "block_set_io_throttle",
1939 #      "arguments": { "id": "virtio-blk-pci0/virtio-backend",
1940 #                     "bps": 0,
1941 #                     "bps_rd": 0,
1942 #                     "bps_wr": 0,
1943 #                     "iops": 512,
1944 #                     "iops_rd": 0,
1945 #                     "iops_wr": 0,
1946 #                     "bps_max": 0,
1947 #                     "bps_rd_max": 0,
1948 #                     "bps_wr_max": 0,
1949 #                     "iops_max": 0,
1950 #                     "iops_rd_max": 0,
1951 #                     "iops_wr_max": 0,
1952 #                     "bps_max_length": 0,
1953 #                     "iops_size": 0 } }
1954 # <- { "return": {} }
1956 # -> { "execute": "block_set_io_throttle",
1957 #      "arguments": { "id": "ide0-1-0",
1958 #                     "bps": 1000000,
1959 #                     "bps_rd": 0,
1960 #                     "bps_wr": 0,
1961 #                     "iops": 0,
1962 #                     "iops_rd": 0,
1963 #                     "iops_wr": 0,
1964 #                     "bps_max": 8000000,
1965 #                     "bps_rd_max": 0,
1966 #                     "bps_wr_max": 0,
1967 #                     "iops_max": 0,
1968 #                     "iops_rd_max": 0,
1969 #                     "iops_wr_max": 0,
1970 #                     "bps_max_length": 60,
1971 #                     "iops_size": 0 } }
1972 # <- { "return": {} }
1974 { 'command': 'block_set_io_throttle', 'boxed': true,
1975   'data': 'BlockIOThrottle' }
1978 # @BlockIOThrottle:
1980 # A set of parameters describing block throttling.
1982 # @device: Block device name (deprecated, use @id instead)
1984 # @id: The name or QOM path of the guest device (since: 2.8)
1986 # @bps: total throughput limit in bytes per second
1988 # @bps_rd: read throughput limit in bytes per second
1990 # @bps_wr: write throughput limit in bytes per second
1992 # @iops: total I/O operations per second
1994 # @iops_rd: read I/O operations per second
1996 # @iops_wr: write I/O operations per second
1998 # @bps_max: total throughput limit during bursts,
1999 #                     in bytes (Since 1.7)
2001 # @bps_rd_max: read throughput limit during bursts,
2002 #                        in bytes (Since 1.7)
2004 # @bps_wr_max: write throughput limit during bursts,
2005 #                        in bytes (Since 1.7)
2007 # @iops_max: total I/O operations per second during bursts,
2008 #                      in bytes (Since 1.7)
2010 # @iops_rd_max: read I/O operations per second during bursts,
2011 #                         in bytes (Since 1.7)
2013 # @iops_wr_max: write I/O operations per second during bursts,
2014 #                         in bytes (Since 1.7)
2016 # @bps_max_length: maximum length of the @bps_max burst
2017 #                            period, in seconds. It must only
2018 #                            be set if @bps_max is set as well.
2019 #                            Defaults to 1. (Since 2.6)
2021 # @bps_rd_max_length: maximum length of the @bps_rd_max
2022 #                               burst period, in seconds. It must only
2023 #                               be set if @bps_rd_max is set as well.
2024 #                               Defaults to 1. (Since 2.6)
2026 # @bps_wr_max_length: maximum length of the @bps_wr_max
2027 #                               burst period, in seconds. It must only
2028 #                               be set if @bps_wr_max is set as well.
2029 #                               Defaults to 1. (Since 2.6)
2031 # @iops_max_length: maximum length of the @iops burst
2032 #                             period, in seconds. It must only
2033 #                             be set if @iops_max is set as well.
2034 #                             Defaults to 1. (Since 2.6)
2036 # @iops_rd_max_length: maximum length of the @iops_rd_max
2037 #                                burst period, in seconds. It must only
2038 #                                be set if @iops_rd_max is set as well.
2039 #                                Defaults to 1. (Since 2.6)
2041 # @iops_wr_max_length: maximum length of the @iops_wr_max
2042 #                                burst period, in seconds. It must only
2043 #                                be set if @iops_wr_max is set as well.
2044 #                                Defaults to 1. (Since 2.6)
2046 # @iops_size: an I/O size in bytes (Since 1.7)
2048 # @group: throttle group name (Since 2.4)
2050 # Since: 1.1
2052 { 'struct': 'BlockIOThrottle',
2053   'data': { '*device': 'str', '*id': 'str', 'bps': 'int', 'bps_rd': 'int',
2054             'bps_wr': 'int', 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
2055             '*bps_max': 'int', '*bps_rd_max': 'int',
2056             '*bps_wr_max': 'int', '*iops_max': 'int',
2057             '*iops_rd_max': 'int', '*iops_wr_max': 'int',
2058             '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
2059             '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
2060             '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
2061             '*iops_size': 'int', '*group': 'str' } }
2064 # @ThrottleLimits:
2066 # Limit parameters for throttling.
2067 # Since some limit combinations are illegal, limits should always be set in one
2068 # transaction. All fields are optional. When setting limits, if a field is
2069 # missing the current value is not changed.
2071 # @iops-total:             limit total I/O operations per second
2072 # @iops-total-max:         I/O operations burst
2073 # @iops-total-max-length:  length of the iops-total-max burst period, in seconds
2074 #                          It must only be set if @iops-total-max is set as well.
2075 # @iops-read:              limit read operations per second
2076 # @iops-read-max:          I/O operations read burst
2077 # @iops-read-max-length:   length of the iops-read-max burst period, in seconds
2078 #                          It must only be set if @iops-read-max is set as well.
2079 # @iops-write:             limit write operations per second
2080 # @iops-write-max:         I/O operations write burst
2081 # @iops-write-max-length:  length of the iops-write-max burst period, in seconds
2082 #                          It must only be set if @iops-write-max is set as well.
2083 # @bps-total:              limit total bytes per second
2084 # @bps-total-max:          total bytes burst
2085 # @bps-total-max-length:   length of the bps-total-max burst period, in seconds.
2086 #                          It must only be set if @bps-total-max is set as well.
2087 # @bps-read:               limit read bytes per second
2088 # @bps-read-max:           total bytes read burst
2089 # @bps-read-max-length:    length of the bps-read-max burst period, in seconds
2090 #                          It must only be set if @bps-read-max is set as well.
2091 # @bps-write:              limit write bytes per second
2092 # @bps-write-max:          total bytes write burst
2093 # @bps-write-max-length:   length of the bps-write-max burst period, in seconds
2094 #                          It must only be set if @bps-write-max is set as well.
2095 # @iops-size:              when limiting by iops max size of an I/O in bytes
2097 # Since: 2.11
2099 { 'struct': 'ThrottleLimits',
2100   'data': { '*iops-total' : 'int', '*iops-total-max' : 'int',
2101             '*iops-total-max-length' : 'int', '*iops-read' : 'int',
2102             '*iops-read-max' : 'int', '*iops-read-max-length' : 'int',
2103             '*iops-write' : 'int', '*iops-write-max' : 'int',
2104             '*iops-write-max-length' : 'int', '*bps-total' : 'int',
2105             '*bps-total-max' : 'int', '*bps-total-max-length' : 'int',
2106             '*bps-read' : 'int', '*bps-read-max' : 'int',
2107             '*bps-read-max-length' : 'int', '*bps-write' : 'int',
2108             '*bps-write-max' : 'int', '*bps-write-max-length' : 'int',
2109             '*iops-size' : 'int' } }
2112 # @block-stream:
2114 # Copy data from a backing file into a block device.
2116 # The block streaming operation is performed in the background until the entire
2117 # backing file has been copied.  This command returns immediately once streaming
2118 # has started.  The status of ongoing block streaming operations can be checked
2119 # with query-block-jobs.  The operation can be stopped before it has completed
2120 # using the block-job-cancel command.
2122 # The node that receives the data is called the top image, can be located in
2123 # any part of the chain (but always above the base image; see below) and can be
2124 # specified using its device or node name. Earlier qemu versions only allowed
2125 # 'device' to name the top level node; presence of the 'base-node' parameter
2126 # during introspection can be used as a witness of the enhanced semantics
2127 # of 'device'.
2129 # If a base file is specified then sectors are not copied from that base file and
2130 # its backing chain.  When streaming completes the image file will have the base
2131 # file as its backing file.  This can be used to stream a subset of the backing
2132 # file chain instead of flattening the entire image.
2134 # On successful completion the image file is updated to drop the backing file
2135 # and the BLOCK_JOB_COMPLETED event is emitted.
2137 # @job-id: identifier for the newly-created block job. If
2138 #          omitted, the device name will be used. (Since 2.7)
2140 # @device: the device or node name of the top image
2142 # @base:   the common backing file name.
2143 #                    It cannot be set if @base-node is also set.
2145 # @base-node: the node name of the backing file.
2146 #                       It cannot be set if @base is also set. (Since 2.8)
2148 # @backing-file: The backing file string to write into the top
2149 #                          image. This filename is not validated.
2151 #                          If a pathname string is such that it cannot be
2152 #                          resolved by QEMU, that means that subsequent QMP or
2153 #                          HMP commands must use node-names for the image in
2154 #                          question, as filename lookup methods will fail.
2156 #                          If not specified, QEMU will automatically determine
2157 #                          the backing file string to use, or error out if there
2158 #                          is no obvious choice.  Care should be taken when
2159 #                          specifying the string, to specify a valid filename or
2160 #                          protocol.
2161 #                          (Since 2.1)
2163 # @speed:  the maximum speed, in bytes per second
2165 # @on-error: the action to take on an error (default report).
2166 #            'stop' and 'enospc' can only be used if the block device
2167 #            supports io-status (see BlockInfo).  Since 1.3.
2169 # Returns: Nothing on success. If @device does not exist, DeviceNotFound.
2171 # Since: 1.1
2173 # Example:
2175 # -> { "execute": "block-stream",
2176 #      "arguments": { "device": "virtio0",
2177 #                     "base": "/tmp/master.qcow2" } }
2178 # <- { "return": {} }
2181 { 'command': 'block-stream',
2182   'data': { '*job-id': 'str', 'device': 'str', '*base': 'str',
2183             '*base-node': 'str', '*backing-file': 'str', '*speed': 'int',
2184             '*on-error': 'BlockdevOnError' } }
2187 # @block-job-set-speed:
2189 # Set maximum speed for a background block operation.
2191 # This command can only be issued when there is an active block job.
2193 # Throttling can be disabled by setting the speed to 0.
2195 # @device: The job identifier. This used to be a device name (hence
2196 #          the name of the parameter), but since QEMU 2.7 it can have
2197 #          other values.
2199 # @speed:  the maximum speed, in bytes per second, or 0 for unlimited.
2200 #          Defaults to 0.
2202 # Returns: Nothing on success
2203 #          If no background operation is active on this device, DeviceNotActive
2205 # Since: 1.1
2207 { 'command': 'block-job-set-speed',
2208   'data': { 'device': 'str', 'speed': 'int' } }
2211 # @block-job-cancel:
2213 # Stop an active background block operation.
2215 # This command returns immediately after marking the active background block
2216 # operation for cancellation.  It is an error to call this command if no
2217 # operation is in progress.
2219 # The operation will cancel as soon as possible and then emit the
2220 # BLOCK_JOB_CANCELLED event.  Before that happens the job is still visible when
2221 # enumerated using query-block-jobs.
2223 # Note that if you issue 'block-job-cancel' after 'drive-mirror' has indicated
2224 # (via the event BLOCK_JOB_READY) that the source and destination are
2225 # synchronized, then the event triggered by this command changes to
2226 # BLOCK_JOB_COMPLETED, to indicate that the mirroring has ended and the
2227 # destination now has a point-in-time copy tied to the time of the cancellation.
2229 # For streaming, the image file retains its backing file unless the streaming
2230 # operation happens to complete just as it is being cancelled.  A new streaming
2231 # operation can be started at a later time to finish copying all data from the
2232 # backing file.
2234 # @device: The job identifier. This used to be a device name (hence
2235 #          the name of the parameter), but since QEMU 2.7 it can have
2236 #          other values.
2238 # @force: If true, and the job has already emitted the event BLOCK_JOB_READY,
2239 #         abandon the job immediately (even if it is paused) instead of waiting
2240 #         for the destination to complete its final synchronization (since 1.3)
2242 # Returns: Nothing on success
2243 #          If no background operation is active on this device, DeviceNotActive
2245 # Since: 1.1
2247 { 'command': 'block-job-cancel', 'data': { 'device': 'str', '*force': 'bool' } }
2250 # @block-job-pause:
2252 # Pause an active background block operation.
2254 # This command returns immediately after marking the active background block
2255 # operation for pausing.  It is an error to call this command if no
2256 # operation is in progress or if the job is already paused.
2258 # The operation will pause as soon as possible.  No event is emitted when
2259 # the operation is actually paused.  Cancelling a paused job automatically
2260 # resumes it.
2262 # @device: The job identifier. This used to be a device name (hence
2263 #          the name of the parameter), but since QEMU 2.7 it can have
2264 #          other values.
2266 # Returns: Nothing on success
2267 #          If no background operation is active on this device, DeviceNotActive
2269 # Since: 1.3
2271 { 'command': 'block-job-pause', 'data': { 'device': 'str' } }
2274 # @block-job-resume:
2276 # Resume an active background block operation.
2278 # This command returns immediately after resuming a paused background block
2279 # operation.  It is an error to call this command if no operation is in
2280 # progress or if the job is not paused.
2282 # This command also clears the error status of the job.
2284 # @device: The job identifier. This used to be a device name (hence
2285 #          the name of the parameter), but since QEMU 2.7 it can have
2286 #          other values.
2288 # Returns: Nothing on success
2289 #          If no background operation is active on this device, DeviceNotActive
2291 # Since: 1.3
2293 { 'command': 'block-job-resume', 'data': { 'device': 'str' } }
2296 # @block-job-complete:
2298 # Manually trigger completion of an active background block operation.  This
2299 # is supported for drive mirroring, where it also switches the device to
2300 # write to the target path only.  The ability to complete is signaled with
2301 # a BLOCK_JOB_READY event.
2303 # This command completes an active background block operation synchronously.
2304 # The ordering of this command's return with the BLOCK_JOB_COMPLETED event
2305 # is not defined.  Note that if an I/O error occurs during the processing of
2306 # this command: 1) the command itself will fail; 2) the error will be processed
2307 # according to the rerror/werror arguments that were specified when starting
2308 # the operation.
2310 # A cancelled or paused job cannot be completed.
2312 # @device: The job identifier. This used to be a device name (hence
2313 #          the name of the parameter), but since QEMU 2.7 it can have
2314 #          other values.
2316 # Returns: Nothing on success
2317 #          If no background operation is active on this device, DeviceNotActive
2319 # Since: 1.3
2321 { 'command': 'block-job-complete', 'data': { 'device': 'str' } }
2324 # @block-job-dismiss:
2326 # For jobs that have already concluded, remove them from the block-job-query
2327 # list. This command only needs to be run for jobs which were started with
2328 # QEMU 2.12+ job lifetime management semantics.
2330 # This command will refuse to operate on any job that has not yet reached
2331 # its terminal state, JOB_STATUS_CONCLUDED. For jobs that make use of the
2332 # BLOCK_JOB_READY event, block-job-cancel or block-job-complete will still need
2333 # to be used as appropriate.
2335 # @id: The job identifier.
2337 # Returns: Nothing on success
2339 # Since: 2.12
2341 { 'command': 'block-job-dismiss', 'data': { 'id': 'str' } }
2344 # @block-job-finalize:
2346 # Once a job that has manual=true reaches the pending state, it can be
2347 # instructed to finalize any graph changes and do any necessary cleanup
2348 # via this command.
2349 # For jobs in a transaction, instructing one job to finalize will force
2350 # ALL jobs in the transaction to finalize, so it is only necessary to instruct
2351 # a single member job to finalize.
2353 # @id: The job identifier.
2355 # Returns: Nothing on success
2357 # Since: 2.12
2359 { 'command': 'block-job-finalize', 'data': { 'id': 'str' } }
2362 # @BlockdevDiscardOptions:
2364 # Determines how to handle discard requests.
2366 # @ignore:      Ignore the request
2367 # @unmap:       Forward as an unmap request
2369 # Since: 2.9
2371 { 'enum': 'BlockdevDiscardOptions',
2372   'data': [ 'ignore', 'unmap' ] }
2375 # @BlockdevDetectZeroesOptions:
2377 # Describes the operation mode for the automatic conversion of plain
2378 # zero writes by the OS to driver specific optimized zero write commands.
2380 # @off:      Disabled (default)
2381 # @on:       Enabled
2382 # @unmap:    Enabled and even try to unmap blocks if possible. This requires
2383 #            also that @BlockdevDiscardOptions is set to unmap for this device.
2385 # Since: 2.1
2387 { 'enum': 'BlockdevDetectZeroesOptions',
2388   'data': [ 'off', 'on', 'unmap' ] }
2391 # @BlockdevAioOptions:
2393 # Selects the AIO backend to handle I/O requests
2395 # @threads:     Use qemu's thread pool
2396 # @native:      Use native AIO backend (only Linux and Windows)
2398 # Since: 2.9
2400 { 'enum': 'BlockdevAioOptions',
2401   'data': [ 'threads', 'native' ] }
2404 # @BlockdevCacheOptions:
2406 # Includes cache-related options for block devices
2408 # @direct:      enables use of O_DIRECT (bypass the host page cache;
2409 #               default: false)
2410 # @no-flush:    ignore any flush requests for the device (default:
2411 #               false)
2413 # Since: 2.9
2415 { 'struct': 'BlockdevCacheOptions',
2416   'data': { '*direct': 'bool',
2417             '*no-flush': 'bool' } }
2420 # @BlockdevDriver:
2422 # Drivers that are supported in block device operations.
2424 # @vxhs: Since 2.10
2425 # @throttle: Since 2.11
2426 # @nvme: Since 2.12
2427 # @copy-on-read: Since 3.0
2429 # Since: 2.9
2431 { 'enum': 'BlockdevDriver',
2432   'data': [ 'blkdebug', 'blkverify', 'bochs', 'cloop', 'copy-on-read',
2433             'dmg', 'file', 'ftp', 'ftps', 'gluster', 'host_cdrom',
2434             'host_device', 'http', 'https', 'iscsi', 'luks', 'nbd', 'nfs',
2435             'null-aio', 'null-co', 'nvme', 'parallels', 'qcow', 'qcow2', 'qed',
2436             'quorum', 'raw', 'rbd', 'replication', 'sheepdog', 'ssh',
2437             'throttle', 'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat', 'vxhs' ] }
2440 # @BlockdevOptionsFile:
2442 # Driver specific block device options for the file backend.
2444 # @filename:    path to the image file
2445 # @pr-manager:  the id for the object that will handle persistent reservations
2446 #               for this device (default: none, forward the commands via SG_IO;
2447 #               since 2.11)
2448 # @aio:         AIO backend (default: threads) (since: 2.8)
2449 # @locking:     whether to enable file locking. If set to 'auto', only enable
2450 #               when Open File Descriptor (OFD) locking API is available
2451 #               (default: auto, since 2.10)
2452 # @x-check-cache-dropped: whether to check that page cache was dropped on live
2453 #                         migration.  May cause noticeable delays if the image
2454 #                         file is large, do not use in production.
2455 #                         (default: off) (since: 3.0)
2457 # Since: 2.9
2459 { 'struct': 'BlockdevOptionsFile',
2460   'data': { 'filename': 'str',
2461             '*pr-manager': 'str',
2462             '*locking': 'OnOffAuto',
2463             '*aio': 'BlockdevAioOptions',
2464             '*x-check-cache-dropped': 'bool' } }
2467 # @BlockdevOptionsNull:
2469 # Driver specific block device options for the null backend.
2471 # @size:    size of the device in bytes.
2472 # @latency-ns: emulated latency (in nanoseconds) in processing
2473 #              requests. Default to zero which completes requests immediately.
2474 #              (Since 2.4)
2476 # Since: 2.9
2478 { 'struct': 'BlockdevOptionsNull',
2479   'data': { '*size': 'int', '*latency-ns': 'uint64' } }
2482 # @BlockdevOptionsNVMe:
2484 # Driver specific block device options for the NVMe backend.
2486 # @device:    controller address of the NVMe device.
2487 # @namespace: namespace number of the device, starting from 1.
2489 # Since: 2.12
2491 { 'struct': 'BlockdevOptionsNVMe',
2492   'data': { 'device': 'str', 'namespace': 'int' } }
2495 # @BlockdevOptionsVVFAT:
2497 # Driver specific block device options for the vvfat protocol.
2499 # @dir:         directory to be exported as FAT image
2500 # @fat-type:    FAT type: 12, 16 or 32
2501 # @floppy:      whether to export a floppy image (true) or
2502 #               partitioned hard disk (false; default)
2503 # @label:       set the volume label, limited to 11 bytes. FAT16 and
2504 #               FAT32 traditionally have some restrictions on labels, which are
2505 #               ignored by most operating systems. Defaults to "QEMU VVFAT".
2506 #               (since 2.4)
2507 # @rw:          whether to allow write operations (default: false)
2509 # Since: 2.9
2511 { 'struct': 'BlockdevOptionsVVFAT',
2512   'data': { 'dir': 'str', '*fat-type': 'int', '*floppy': 'bool',
2513             '*label': 'str', '*rw': 'bool' } }
2516 # @BlockdevOptionsGenericFormat:
2518 # Driver specific block device options for image format that have no option
2519 # besides their data source.
2521 # @file:        reference to or definition of the data source block device
2523 # Since: 2.9
2525 { 'struct': 'BlockdevOptionsGenericFormat',
2526   'data': { 'file': 'BlockdevRef' } }
2529 # @BlockdevOptionsLUKS:
2531 # Driver specific block device options for LUKS.
2533 # @key-secret: the ID of a QCryptoSecret object providing
2534 #              the decryption key (since 2.6). Mandatory except when
2535 #              doing a metadata-only probe of the image.
2537 # Since: 2.9
2539 { 'struct': 'BlockdevOptionsLUKS',
2540   'base': 'BlockdevOptionsGenericFormat',
2541   'data': { '*key-secret': 'str' } }
2545 # @BlockdevOptionsGenericCOWFormat:
2547 # Driver specific block device options for image format that have no option
2548 # besides their data source and an optional backing file.
2550 # @backing:     reference to or definition of the backing file block
2551 #               device, null disables the backing file entirely.
2552 #               Defaults to the backing file stored the image file.
2554 # Since: 2.9
2556 { 'struct': 'BlockdevOptionsGenericCOWFormat',
2557   'base': 'BlockdevOptionsGenericFormat',
2558   'data': { '*backing': 'BlockdevRefOrNull' } }
2561 # @Qcow2OverlapCheckMode:
2563 # General overlap check modes.
2565 # @none:        Do not perform any checks
2567 # @constant:    Perform only checks which can be done in constant time and
2568 #               without reading anything from disk
2570 # @cached:      Perform only checks which can be done without reading anything
2571 #               from disk
2573 # @all:         Perform all available overlap checks
2575 # Since: 2.9
2577 { 'enum': 'Qcow2OverlapCheckMode',
2578   'data': [ 'none', 'constant', 'cached', 'all' ] }
2581 # @Qcow2OverlapCheckFlags:
2583 # Structure of flags for each metadata structure. Setting a field to 'true'
2584 # makes qemu guard that structure against unintended overwriting. The default
2585 # value is chosen according to the template given.
2587 # @template: Specifies a template mode which can be adjusted using the other
2588 #            flags, defaults to 'cached'
2590 # Since: 2.9
2592 { 'struct': 'Qcow2OverlapCheckFlags',
2593   'data': { '*template':       'Qcow2OverlapCheckMode',
2594             '*main-header':    'bool',
2595             '*active-l1':      'bool',
2596             '*active-l2':      'bool',
2597             '*refcount-table': 'bool',
2598             '*refcount-block': 'bool',
2599             '*snapshot-table': 'bool',
2600             '*inactive-l1':    'bool',
2601             '*inactive-l2':    'bool' } }
2604 # @Qcow2OverlapChecks:
2606 # Specifies which metadata structures should be guarded against unintended
2607 # overwriting.
2609 # @flags:   set of flags for separate specification of each metadata structure
2610 #           type
2612 # @mode:    named mode which chooses a specific set of flags
2614 # Since: 2.9
2616 { 'alternate': 'Qcow2OverlapChecks',
2617   'data': { 'flags': 'Qcow2OverlapCheckFlags',
2618             'mode':  'Qcow2OverlapCheckMode' } }
2621 # @BlockdevQcowEncryptionFormat:
2623 # @aes: AES-CBC with plain64 initialization vectors
2625 # Since: 2.10
2627 { 'enum': 'BlockdevQcowEncryptionFormat',
2628   'data': [ 'aes' ] }
2631 # @BlockdevQcowEncryption:
2633 # Since: 2.10
2635 { 'union': 'BlockdevQcowEncryption',
2636   'base': { 'format': 'BlockdevQcowEncryptionFormat' },
2637   'discriminator': 'format',
2638   'data': { 'aes': 'QCryptoBlockOptionsQCow' } }
2641 # @BlockdevOptionsQcow:
2643 # Driver specific block device options for qcow.
2645 # @encrypt:               Image decryption options. Mandatory for
2646 #                         encrypted images, except when doing a metadata-only
2647 #                         probe of the image.
2649 # Since: 2.10
2651 { 'struct': 'BlockdevOptionsQcow',
2652   'base': 'BlockdevOptionsGenericCOWFormat',
2653   'data': { '*encrypt': 'BlockdevQcowEncryption' } }
2658 # @BlockdevQcow2EncryptionFormat:
2659 # @aes: AES-CBC with plain64 initialization venctors
2661 # Since: 2.10
2663 { 'enum': 'BlockdevQcow2EncryptionFormat',
2664   'data': [ 'aes', 'luks' ] }
2667 # @BlockdevQcow2Encryption:
2669 # Since: 2.10
2671 { 'union': 'BlockdevQcow2Encryption',
2672   'base': { 'format': 'BlockdevQcow2EncryptionFormat' },
2673   'discriminator': 'format',
2674   'data': { 'aes': 'QCryptoBlockOptionsQCow',
2675             'luks': 'QCryptoBlockOptionsLUKS'} }
2678 # @BlockdevOptionsQcow2:
2680 # Driver specific block device options for qcow2.
2682 # @lazy-refcounts:        whether to enable the lazy refcounts
2683 #                         feature (default is taken from the image file)
2685 # @pass-discard-request:  whether discard requests to the qcow2
2686 #                         device should be forwarded to the data source
2688 # @pass-discard-snapshot: whether discard requests for the data source
2689 #                         should be issued when a snapshot operation (e.g.
2690 #                         deleting a snapshot) frees clusters in the qcow2 file
2692 # @pass-discard-other:    whether discard requests for the data source
2693 #                         should be issued on other occasions where a cluster
2694 #                         gets freed
2696 # @overlap-check:         which overlap checks to perform for writes
2697 #                         to the image, defaults to 'cached' (since 2.2)
2699 # @cache-size:            the maximum total size of the L2 table and
2700 #                         refcount block caches in bytes (since 2.2)
2702 # @l2-cache-size:         the maximum size of the L2 table cache in
2703 #                         bytes (since 2.2)
2705 # @l2-cache-entry-size:   the size of each entry in the L2 cache in
2706 #                         bytes. It must be a power of two between 512
2707 #                         and the cluster size. The default value is
2708 #                         the cluster size (since 2.12)
2710 # @refcount-cache-size:   the maximum size of the refcount block cache
2711 #                         in bytes (since 2.2)
2713 # @cache-clean-interval:  clean unused entries in the L2 and refcount
2714 #                         caches. The interval is in seconds. The default value
2715 #                         is 0 and it disables this feature (since 2.5)
2716 # @encrypt:               Image decryption options. Mandatory for
2717 #                         encrypted images, except when doing a metadata-only
2718 #                         probe of the image. (since 2.10)
2720 # Since: 2.9
2722 { 'struct': 'BlockdevOptionsQcow2',
2723   'base': 'BlockdevOptionsGenericCOWFormat',
2724   'data': { '*lazy-refcounts': 'bool',
2725             '*pass-discard-request': 'bool',
2726             '*pass-discard-snapshot': 'bool',
2727             '*pass-discard-other': 'bool',
2728             '*overlap-check': 'Qcow2OverlapChecks',
2729             '*cache-size': 'int',
2730             '*l2-cache-size': 'int',
2731             '*l2-cache-entry-size': 'int',
2732             '*refcount-cache-size': 'int',
2733             '*cache-clean-interval': 'int',
2734             '*encrypt': 'BlockdevQcow2Encryption' } }
2737 # @SshHostKeyCheckMode:
2739 # @none             Don't check the host key at all
2740 # @hash             Compare the host key with a given hash
2741 # @known_hosts      Check the host key against the known_hosts file
2743 # Since: 2.12
2745 { 'enum': 'SshHostKeyCheckMode',
2746   'data': [ 'none', 'hash', 'known_hosts' ] }
2749 # @SshHostKeyCheckHashType:
2751 # @md5              The given hash is an md5 hash
2752 # @sha1             The given hash is an sha1 hash
2754 # Since: 2.12
2756 { 'enum': 'SshHostKeyCheckHashType',
2757   'data': [ 'md5', 'sha1' ] }
2760 # @SshHostKeyHash:
2762 # @type             The hash algorithm used for the hash
2763 # @hash             The expected hash value
2765 # Since: 2.12
2767 { 'struct': 'SshHostKeyHash',
2768   'data': { 'type': 'SshHostKeyCheckHashType',
2769             'hash': 'str' }}
2772 # @SshHostKeyDummy:
2774 # For those union branches that don't need additional fields.
2776 # Since: 2.12
2778 { 'struct': 'SshHostKeyDummy',
2779   'data': {} }
2782 # @SshHostKeyCheck:
2784 # Since: 2.12
2786 { 'union': 'SshHostKeyCheck',
2787   'base': { 'mode': 'SshHostKeyCheckMode' },
2788   'discriminator': 'mode',
2789   'data': { 'none': 'SshHostKeyDummy',
2790             'hash': 'SshHostKeyHash',
2791             'known_hosts': 'SshHostKeyDummy' } }
2794 # @BlockdevOptionsSsh:
2796 # @server:              host address
2798 # @path:                path to the image on the host
2800 # @user:                user as which to connect, defaults to current
2801 #                       local user name
2803 # @host-key-check:      Defines how and what to check the host key against
2804 #                       (default: known_hosts)
2806 # Since: 2.9
2808 { 'struct': 'BlockdevOptionsSsh',
2809   'data': { 'server': 'InetSocketAddress',
2810             'path': 'str',
2811             '*user': 'str',
2812             '*host-key-check': 'SshHostKeyCheck' } }
2816 # @BlkdebugEvent:
2818 # Trigger events supported by blkdebug.
2820 # @l1_shrink_write_table:      write zeros to the l1 table to shrink image.
2821 #                              (since 2.11)
2823 # @l1_shrink_free_l2_clusters: discard the l2 tables. (since 2.11)
2825 # @cor_write: a write due to copy-on-read (since 2.11)
2827 # Since: 2.9
2829 { 'enum': 'BlkdebugEvent', 'prefix': 'BLKDBG',
2830   'data': [ 'l1_update', 'l1_grow_alloc_table', 'l1_grow_write_table',
2831             'l1_grow_activate_table', 'l2_load', 'l2_update',
2832             'l2_update_compressed', 'l2_alloc_cow_read', 'l2_alloc_write',
2833             'read_aio', 'read_backing_aio', 'read_compressed', 'write_aio',
2834             'write_compressed', 'vmstate_load', 'vmstate_save', 'cow_read',
2835             'cow_write', 'reftable_load', 'reftable_grow', 'reftable_update',
2836             'refblock_load', 'refblock_update', 'refblock_update_part',
2837             'refblock_alloc', 'refblock_alloc_hookup', 'refblock_alloc_write',
2838             'refblock_alloc_write_blocks', 'refblock_alloc_write_table',
2839             'refblock_alloc_switch_table', 'cluster_alloc',
2840             'cluster_alloc_bytes', 'cluster_free', 'flush_to_os',
2841             'flush_to_disk', 'pwritev_rmw_head', 'pwritev_rmw_after_head',
2842             'pwritev_rmw_tail', 'pwritev_rmw_after_tail', 'pwritev',
2843             'pwritev_zero', 'pwritev_done', 'empty_image_prepare',
2844             'l1_shrink_write_table', 'l1_shrink_free_l2_clusters',
2845             'cor_write'] }
2848 # @BlkdebugInjectErrorOptions:
2850 # Describes a single error injection for blkdebug.
2852 # @event:       trigger event
2854 # @state:       the state identifier blkdebug needs to be in to
2855 #               actually trigger the event; defaults to "any"
2857 # @errno:       error identifier (errno) to be returned; defaults to
2858 #               EIO
2860 # @sector:      specifies the sector index which has to be affected
2861 #               in order to actually trigger the event; defaults to "any
2862 #               sector"
2864 # @once:        disables further events after this one has been
2865 #               triggered; defaults to false
2867 # @immediately: fail immediately; defaults to false
2869 # Since: 2.9
2871 { 'struct': 'BlkdebugInjectErrorOptions',
2872   'data': { 'event': 'BlkdebugEvent',
2873             '*state': 'int',
2874             '*errno': 'int',
2875             '*sector': 'int',
2876             '*once': 'bool',
2877             '*immediately': 'bool' } }
2880 # @BlkdebugSetStateOptions:
2882 # Describes a single state-change event for blkdebug.
2884 # @event:       trigger event
2886 # @state:       the current state identifier blkdebug needs to be in;
2887 #               defaults to "any"
2889 # @new_state:   the state identifier blkdebug is supposed to assume if
2890 #               this event is triggered
2892 # Since: 2.9
2894 { 'struct': 'BlkdebugSetStateOptions',
2895   'data': { 'event': 'BlkdebugEvent',
2896             '*state': 'int',
2897             'new_state': 'int' } }
2900 # @BlockdevOptionsBlkdebug:
2902 # Driver specific block device options for blkdebug.
2904 # @image:           underlying raw block device (or image file)
2906 # @config:          filename of the configuration file
2908 # @align:           required alignment for requests in bytes, must be
2909 #                   positive power of 2, or 0 for default
2911 # @max-transfer:    maximum size for I/O transfers in bytes, must be
2912 #                   positive multiple of @align and of the underlying
2913 #                   file's request alignment (but need not be a power of
2914 #                   2), or 0 for default (since 2.10)
2916 # @opt-write-zero:  preferred alignment for write zero requests in bytes,
2917 #                   must be positive multiple of @align and of the
2918 #                   underlying file's request alignment (but need not be a
2919 #                   power of 2), or 0 for default (since 2.10)
2921 # @max-write-zero:  maximum size for write zero requests in bytes, must be
2922 #                   positive multiple of @align, of @opt-write-zero, and of
2923 #                   the underlying file's request alignment (but need not
2924 #                   be a power of 2), or 0 for default (since 2.10)
2926 # @opt-discard:     preferred alignment for discard requests in bytes, must
2927 #                   be positive multiple of @align and of the underlying
2928 #                   file's request alignment (but need not be a power of
2929 #                   2), or 0 for default (since 2.10)
2931 # @max-discard:     maximum size for discard requests in bytes, must be
2932 #                   positive multiple of @align, of @opt-discard, and of
2933 #                   the underlying file's request alignment (but need not
2934 #                   be a power of 2), or 0 for default (since 2.10)
2936 # @inject-error:    array of error injection descriptions
2938 # @set-state:       array of state-change descriptions
2940 # Since: 2.9
2942 { 'struct': 'BlockdevOptionsBlkdebug',
2943   'data': { 'image': 'BlockdevRef',
2944             '*config': 'str',
2945             '*align': 'int', '*max-transfer': 'int32',
2946             '*opt-write-zero': 'int32', '*max-write-zero': 'int32',
2947             '*opt-discard': 'int32', '*max-discard': 'int32',
2948             '*inject-error': ['BlkdebugInjectErrorOptions'],
2949             '*set-state': ['BlkdebugSetStateOptions'] } }
2952 # @BlockdevOptionsBlkverify:
2954 # Driver specific block device options for blkverify.
2956 # @test:    block device to be tested
2958 # @raw:     raw image used for verification
2960 # Since: 2.9
2962 { 'struct': 'BlockdevOptionsBlkverify',
2963   'data': { 'test': 'BlockdevRef',
2964             'raw': 'BlockdevRef' } }
2967 # @QuorumReadPattern:
2969 # An enumeration of quorum read patterns.
2971 # @quorum: read all the children and do a quorum vote on reads
2973 # @fifo: read only from the first child that has not failed
2975 # Since: 2.9
2977 { 'enum': 'QuorumReadPattern', 'data': [ 'quorum', 'fifo' ] }
2980 # @BlockdevOptionsQuorum:
2982 # Driver specific block device options for Quorum
2984 # @blkverify:      true if the driver must print content mismatch
2985 #                  set to false by default
2987 # @children:       the children block devices to use
2989 # @vote-threshold: the vote limit under which a read will fail
2991 # @rewrite-corrupted: rewrite corrupted data when quorum is reached
2992 #                     (Since 2.1)
2994 # @read-pattern: choose read pattern and set to quorum by default
2995 #                (Since 2.2)
2997 # Since: 2.9
2999 { 'struct': 'BlockdevOptionsQuorum',
3000   'data': { '*blkverify': 'bool',
3001             'children': [ 'BlockdevRef' ],
3002             'vote-threshold': 'int',
3003             '*rewrite-corrupted': 'bool',
3004             '*read-pattern': 'QuorumReadPattern' } }
3007 # @BlockdevOptionsGluster:
3009 # Driver specific block device options for Gluster
3011 # @volume:      name of gluster volume where VM image resides
3013 # @path:        absolute path to image file in gluster volume
3015 # @server:      gluster servers description
3017 # @debug:       libgfapi log level (default '4' which is Error)
3018 #               (Since 2.8)
3020 # @logfile:     libgfapi log file (default /dev/stderr) (Since 2.8)
3022 # Since: 2.9
3024 { 'struct': 'BlockdevOptionsGluster',
3025   'data': { 'volume': 'str',
3026             'path': 'str',
3027             'server': ['SocketAddress'],
3028             '*debug': 'int',
3029             '*logfile': 'str' } }
3032 # @IscsiTransport:
3034 # An enumeration of libiscsi transport types
3036 # Since: 2.9
3038 { 'enum': 'IscsiTransport',
3039   'data': [ 'tcp', 'iser' ] }
3042 # @IscsiHeaderDigest:
3044 # An enumeration of header digests supported by libiscsi
3046 # Since: 2.9
3048 { 'enum': 'IscsiHeaderDigest',
3049   'prefix': 'QAPI_ISCSI_HEADER_DIGEST',
3050   'data': [ 'crc32c', 'none', 'crc32c-none', 'none-crc32c' ] }
3053 # @BlockdevOptionsIscsi:
3055 # @transport:       The iscsi transport type
3057 # @portal:          The address of the iscsi portal
3059 # @target:          The target iqn name
3061 # @lun:             LUN to connect to. Defaults to 0.
3063 # @user:            User name to log in with. If omitted, no CHAP
3064 #                   authentication is performed.
3066 # @password-secret: The ID of a QCryptoSecret object providing
3067 #                   the password for the login. This option is required if
3068 #                   @user is specified.
3070 # @initiator-name:  The iqn name we want to identify to the target
3071 #                   as. If this option is not specified, an initiator name is
3072 #                   generated automatically.
3074 # @header-digest:   The desired header digest. Defaults to
3075 #                   none-crc32c.
3077 # @timeout:         Timeout in seconds after which a request will
3078 #                   timeout. 0 means no timeout and is the default.
3080 # Driver specific block device options for iscsi
3082 # Since: 2.9
3084 { 'struct': 'BlockdevOptionsIscsi',
3085   'data': { 'transport': 'IscsiTransport',
3086             'portal': 'str',
3087             'target': 'str',
3088             '*lun': 'int',
3089             '*user': 'str',
3090             '*password-secret': 'str',
3091             '*initiator-name': 'str',
3092             '*header-digest': 'IscsiHeaderDigest',
3093             '*timeout': 'int' } }
3097 # @BlockdevOptionsRbd:
3099 # @pool:               Ceph pool name.
3101 # @image:              Image name in the Ceph pool.
3103 # @conf:               path to Ceph configuration file.  Values
3104 #                      in the configuration file will be overridden by
3105 #                      options specified via QAPI.
3107 # @snapshot:           Ceph snapshot name.
3109 # @user:               Ceph id name.
3111 # @server:             Monitor host address and port.  This maps
3112 #                      to the "mon_host" Ceph option.
3114 # Since: 2.9
3116 { 'struct': 'BlockdevOptionsRbd',
3117   'data': { 'pool': 'str',
3118             'image': 'str',
3119             '*conf': 'str',
3120             '*snapshot': 'str',
3121             '*user': 'str',
3122             '*server': ['InetSocketAddressBase'] } }
3125 # @BlockdevOptionsSheepdog:
3127 # Driver specific block device options for sheepdog
3129 # @vdi:         Virtual disk image name
3130 # @server:      The Sheepdog server to connect to
3131 # @snap-id:     Snapshot ID
3132 # @tag:         Snapshot tag name
3134 # Only one of @snap-id and @tag may be present.
3136 # Since: 2.9
3138 { 'struct': 'BlockdevOptionsSheepdog',
3139   'data': { 'server': 'SocketAddress',
3140             'vdi': 'str',
3141             '*snap-id': 'uint32',
3142             '*tag': 'str' } }
3145 # @ReplicationMode:
3147 # An enumeration of replication modes.
3149 # @primary: Primary mode, the vm's state will be sent to secondary QEMU.
3151 # @secondary: Secondary mode, receive the vm's state from primary QEMU.
3153 # Since: 2.9
3155 { 'enum' : 'ReplicationMode', 'data' : [ 'primary', 'secondary' ] }
3158 # @BlockdevOptionsReplication:
3160 # Driver specific block device options for replication
3162 # @mode: the replication mode
3164 # @top-id: In secondary mode, node name or device ID of the root
3165 #          node who owns the replication node chain. Must not be given in
3166 #          primary mode.
3168 # Since: 2.9
3170 { 'struct': 'BlockdevOptionsReplication',
3171   'base': 'BlockdevOptionsGenericFormat',
3172   'data': { 'mode': 'ReplicationMode',
3173             '*top-id': 'str' } }
3176 # @NFSTransport:
3178 # An enumeration of NFS transport types
3180 # @inet:        TCP transport
3182 # Since: 2.9
3184 { 'enum': 'NFSTransport',
3185   'data': [ 'inet' ] }
3188 # @NFSServer:
3190 # Captures the address of the socket
3192 # @type:        transport type used for NFS (only TCP supported)
3194 # @host:        host address for NFS server
3196 # Since: 2.9
3198 { 'struct': 'NFSServer',
3199   'data': { 'type': 'NFSTransport',
3200             'host': 'str' } }
3203 # @BlockdevOptionsNfs:
3205 # Driver specific block device option for NFS
3207 # @server:                  host address
3209 # @path:                    path of the image on the host
3211 # @user:                    UID value to use when talking to the
3212 #                           server (defaults to 65534 on Windows and getuid()
3213 #                           on unix)
3215 # @group:                   GID value to use when talking to the
3216 #                           server (defaults to 65534 on Windows and getgid()
3217 #                           in unix)
3219 # @tcp-syn-count:           number of SYNs during the session
3220 #                           establishment (defaults to libnfs default)
3222 # @readahead-size:          set the readahead size in bytes (defaults
3223 #                           to libnfs default)
3225 # @page-cache-size:         set the pagecache size in bytes (defaults
3226 #                           to libnfs default)
3228 # @debug:                   set the NFS debug level (max 2) (defaults
3229 #                           to libnfs default)
3231 # Since: 2.9
3233 { 'struct': 'BlockdevOptionsNfs',
3234   'data': { 'server': 'NFSServer',
3235             'path': 'str',
3236             '*user': 'int',
3237             '*group': 'int',
3238             '*tcp-syn-count': 'int',
3239             '*readahead-size': 'int',
3240             '*page-cache-size': 'int',
3241             '*debug': 'int' } }
3244 # @BlockdevOptionsCurlBase:
3246 # Driver specific block device options shared by all protocols supported by the
3247 # curl backend.
3249 # @url:                     URL of the image file
3251 # @readahead:               Size of the read-ahead cache; must be a multiple of
3252 #                           512 (defaults to 256 kB)
3254 # @timeout:                 Timeout for connections, in seconds (defaults to 5)
3256 # @username:                Username for authentication (defaults to none)
3258 # @password-secret:         ID of a QCryptoSecret object providing a password
3259 #                           for authentication (defaults to no password)
3261 # @proxy-username:          Username for proxy authentication (defaults to none)
3263 # @proxy-password-secret:   ID of a QCryptoSecret object providing a password
3264 #                           for proxy authentication (defaults to no password)
3266 # Since: 2.9
3268 { 'struct': 'BlockdevOptionsCurlBase',
3269   'data': { 'url': 'str',
3270             '*readahead': 'int',
3271             '*timeout': 'int',
3272             '*username': 'str',
3273             '*password-secret': 'str',
3274             '*proxy-username': 'str',
3275             '*proxy-password-secret': 'str' } }
3278 # @BlockdevOptionsCurlHttp:
3280 # Driver specific block device options for HTTP connections over the curl
3281 # backend.  URLs must start with "http://".
3283 # @cookie:      List of cookies to set; format is
3284 #               "name1=content1; name2=content2;" as explained by
3285 #               CURLOPT_COOKIE(3). Defaults to no cookies.
3287 # @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
3288 #                 secure way. See @cookie for the format. (since 2.10)
3290 # Since: 2.9
3292 { 'struct': 'BlockdevOptionsCurlHttp',
3293   'base': 'BlockdevOptionsCurlBase',
3294   'data': { '*cookie': 'str',
3295             '*cookie-secret': 'str'} }
3298 # @BlockdevOptionsCurlHttps:
3300 # Driver specific block device options for HTTPS connections over the curl
3301 # backend.  URLs must start with "https://".
3303 # @cookie:      List of cookies to set; format is
3304 #               "name1=content1; name2=content2;" as explained by
3305 #               CURLOPT_COOKIE(3). Defaults to no cookies.
3307 # @sslverify:   Whether to verify the SSL certificate's validity (defaults to
3308 #               true)
3310 # @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
3311 #                 secure way. See @cookie for the format. (since 2.10)
3313 # Since: 2.9
3315 { 'struct': 'BlockdevOptionsCurlHttps',
3316   'base': 'BlockdevOptionsCurlBase',
3317   'data': { '*cookie': 'str',
3318             '*sslverify': 'bool',
3319             '*cookie-secret': 'str'} }
3322 # @BlockdevOptionsCurlFtp:
3324 # Driver specific block device options for FTP connections over the curl
3325 # backend.  URLs must start with "ftp://".
3327 # Since: 2.9
3329 { 'struct': 'BlockdevOptionsCurlFtp',
3330   'base': 'BlockdevOptionsCurlBase',
3331   'data': { } }
3334 # @BlockdevOptionsCurlFtps:
3336 # Driver specific block device options for FTPS connections over the curl
3337 # backend.  URLs must start with "ftps://".
3339 # @sslverify:   Whether to verify the SSL certificate's validity (defaults to
3340 #               true)
3342 # Since: 2.9
3344 { 'struct': 'BlockdevOptionsCurlFtps',
3345   'base': 'BlockdevOptionsCurlBase',
3346   'data': { '*sslverify': 'bool' } }
3349 # @BlockdevOptionsNbd:
3351 # Driver specific block device options for NBD.
3353 # @server:      NBD server address
3355 # @export:      export name
3357 # @tls-creds:   TLS credentials ID
3359 # Since: 2.9
3361 { 'struct': 'BlockdevOptionsNbd',
3362   'data': { 'server': 'SocketAddress',
3363             '*export': 'str',
3364             '*tls-creds': 'str' } }
3367 # @BlockdevOptionsRaw:
3369 # Driver specific block device options for the raw driver.
3371 # @offset:      position where the block device starts
3372 # @size:        the assumed size of the device
3374 # Since: 2.9
3376 { 'struct': 'BlockdevOptionsRaw',
3377   'base': 'BlockdevOptionsGenericFormat',
3378   'data': { '*offset': 'int', '*size': 'int' } }
3381 # @BlockdevOptionsVxHS:
3383 # Driver specific block device options for VxHS
3385 # @vdisk-id:    UUID of VxHS volume
3386 # @server:      vxhs server IP, port
3387 # @tls-creds:   TLS credentials ID
3389 # Since: 2.10
3391 { 'struct': 'BlockdevOptionsVxHS',
3392   'data': { 'vdisk-id': 'str',
3393             'server': 'InetSocketAddressBase',
3394             '*tls-creds': 'str' } }
3397 # @BlockdevOptionsThrottle:
3399 # Driver specific block device options for the throttle driver
3401 # @throttle-group:   the name of the throttle-group object to use. It
3402 #                    must already exist.
3403 # @file:             reference to or definition of the data source block device
3404 # Since: 2.11
3406 { 'struct': 'BlockdevOptionsThrottle',
3407   'data': { 'throttle-group': 'str',
3408             'file' : 'BlockdevRef'
3409              } }
3411 # @BlockdevOptions:
3413 # Options for creating a block device.  Many options are available for all
3414 # block devices, independent of the block driver:
3416 # @driver:        block driver name
3417 # @node-name:     the node name of the new node (Since 2.0).
3418 #                 This option is required on the top level of blockdev-add.
3419 # @discard:       discard-related options (default: ignore)
3420 # @cache:         cache-related options
3421 # @read-only:     whether the block device should be read-only (default: false).
3422 #                 Note that some block drivers support only read-only access,
3423 #                 either generally or in certain configurations. In this case,
3424 #                 the default value does not work and the option must be
3425 #                 specified explicitly.
3426 # @detect-zeroes: detect and optimize zero writes (Since 2.1)
3427 #                 (default: off)
3428 # @force-share:   force share all permission on added nodes.
3429 #                 Requires read-only=true. (Since 2.10)
3431 # Remaining options are determined by the block driver.
3433 # Since: 2.9
3435 { 'union': 'BlockdevOptions',
3436   'base': { 'driver': 'BlockdevDriver',
3437             '*node-name': 'str',
3438             '*discard': 'BlockdevDiscardOptions',
3439             '*cache': 'BlockdevCacheOptions',
3440             '*read-only': 'bool',
3441             '*force-share': 'bool',
3442             '*detect-zeroes': 'BlockdevDetectZeroesOptions' },
3443   'discriminator': 'driver',
3444   'data': {
3445       'blkdebug':   'BlockdevOptionsBlkdebug',
3446       'blkverify':  'BlockdevOptionsBlkverify',
3447       'bochs':      'BlockdevOptionsGenericFormat',
3448       'cloop':      'BlockdevOptionsGenericFormat',
3449       'copy-on-read':'BlockdevOptionsGenericFormat',
3450       'dmg':        'BlockdevOptionsGenericFormat',
3451       'file':       'BlockdevOptionsFile',
3452       'ftp':        'BlockdevOptionsCurlFtp',
3453       'ftps':       'BlockdevOptionsCurlFtps',
3454       'gluster':    'BlockdevOptionsGluster',
3455       'host_cdrom': 'BlockdevOptionsFile',
3456       'host_device':'BlockdevOptionsFile',
3457       'http':       'BlockdevOptionsCurlHttp',
3458       'https':      'BlockdevOptionsCurlHttps',
3459       'iscsi':      'BlockdevOptionsIscsi',
3460       'luks':       'BlockdevOptionsLUKS',
3461       'nbd':        'BlockdevOptionsNbd',
3462       'nfs':        'BlockdevOptionsNfs',
3463       'null-aio':   'BlockdevOptionsNull',
3464       'null-co':    'BlockdevOptionsNull',
3465       'nvme':       'BlockdevOptionsNVMe',
3466       'parallels':  'BlockdevOptionsGenericFormat',
3467       'qcow2':      'BlockdevOptionsQcow2',
3468       'qcow':       'BlockdevOptionsQcow',
3469       'qed':        'BlockdevOptionsGenericCOWFormat',
3470       'quorum':     'BlockdevOptionsQuorum',
3471       'raw':        'BlockdevOptionsRaw',
3472       'rbd':        'BlockdevOptionsRbd',
3473       'replication':'BlockdevOptionsReplication',
3474       'sheepdog':   'BlockdevOptionsSheepdog',
3475       'ssh':        'BlockdevOptionsSsh',
3476       'throttle':   'BlockdevOptionsThrottle',
3477       'vdi':        'BlockdevOptionsGenericFormat',
3478       'vhdx':       'BlockdevOptionsGenericFormat',
3479       'vmdk':       'BlockdevOptionsGenericCOWFormat',
3480       'vpc':        'BlockdevOptionsGenericFormat',
3481       'vvfat':      'BlockdevOptionsVVFAT',
3482       'vxhs':       'BlockdevOptionsVxHS'
3483   } }
3486 # @BlockdevRef:
3488 # Reference to a block device.
3490 # @definition:      defines a new block device inline
3491 # @reference:       references the ID of an existing block device
3493 # Since: 2.9
3495 { 'alternate': 'BlockdevRef',
3496   'data': { 'definition': 'BlockdevOptions',
3497             'reference': 'str' } }
3500 # @BlockdevRefOrNull:
3502 # Reference to a block device.
3504 # @definition:      defines a new block device inline
3505 # @reference:       references the ID of an existing block device.
3506 #                   An empty string means that no block device should
3507 #                   be referenced.  Deprecated; use null instead.
3508 # @null:            No block device should be referenced (since 2.10)
3510 # Since: 2.9
3512 { 'alternate': 'BlockdevRefOrNull',
3513   'data': { 'definition': 'BlockdevOptions',
3514             'reference': 'str',
3515             'null': 'null' } }
3518 # @blockdev-add:
3520 # Creates a new block device. If the @id option is given at the top level, a
3521 # BlockBackend will be created; otherwise, @node-name is mandatory at the top
3522 # level and no BlockBackend will be created.
3524 # Since: 2.9
3526 # Example:
3528 # 1.
3529 # -> { "execute": "blockdev-add",
3530 #      "arguments": {
3531 #           "driver": "qcow2",
3532 #           "node-name": "test1",
3533 #           "file": {
3534 #               "driver": "file",
3535 #               "filename": "test.qcow2"
3536 #            }
3537 #       }
3538 #     }
3539 # <- { "return": {} }
3541 # 2.
3542 # -> { "execute": "blockdev-add",
3543 #      "arguments": {
3544 #           "driver": "qcow2",
3545 #           "node-name": "node0",
3546 #           "discard": "unmap",
3547 #           "cache": {
3548 #              "direct": true
3549 #            },
3550 #            "file": {
3551 #              "driver": "file",
3552 #              "filename": "/tmp/test.qcow2"
3553 #            },
3554 #            "backing": {
3555 #               "driver": "raw",
3556 #               "file": {
3557 #                  "driver": "file",
3558 #                  "filename": "/dev/fdset/4"
3559 #                }
3560 #            }
3561 #        }
3562 #      }
3564 # <- { "return": {} }
3567 { 'command': 'blockdev-add', 'data': 'BlockdevOptions', 'boxed': true }
3570 # @blockdev-del:
3572 # Deletes a block device that has been added using blockdev-add.
3573 # The command will fail if the node is attached to a device or is
3574 # otherwise being used.
3576 # @node-name: Name of the graph node to delete.
3578 # Since: 2.9
3580 # Example:
3582 # -> { "execute": "blockdev-add",
3583 #      "arguments": {
3584 #           "driver": "qcow2",
3585 #           "node-name": "node0",
3586 #           "file": {
3587 #               "driver": "file",
3588 #               "filename": "test.qcow2"
3589 #           }
3590 #      }
3591 #    }
3592 # <- { "return": {} }
3594 # -> { "execute": "blockdev-del",
3595 #      "arguments": { "node-name": "node0" }
3596 #    }
3597 # <- { "return": {} }
3600 { 'command': 'blockdev-del', 'data': { 'node-name': 'str' } }
3603 # @BlockdevCreateOptionsFile:
3605 # Driver specific image creation options for file.
3607 # @filename         Filename for the new image file
3608 # @size             Size of the virtual disk in bytes
3609 # @preallocation    Preallocation mode for the new image (default: off)
3610 # @nocow            Turn off copy-on-write (valid only on btrfs; default: off)
3612 # Since: 2.12
3614 { 'struct': 'BlockdevCreateOptionsFile',
3615   'data': { 'filename':         'str',
3616             'size':             'size',
3617             '*preallocation':   'PreallocMode',
3618             '*nocow':           'bool' } }
3621 # @BlockdevCreateOptionsGluster:
3623 # Driver specific image creation options for gluster.
3625 # @location         Where to store the new image file
3626 # @size             Size of the virtual disk in bytes
3627 # @preallocation    Preallocation mode for the new image (default: off)
3629 # Since: 2.12
3631 { 'struct': 'BlockdevCreateOptionsGluster',
3632   'data': { 'location':         'BlockdevOptionsGluster',
3633             'size':             'size',
3634             '*preallocation':   'PreallocMode' } }
3637 # @BlockdevCreateOptionsLUKS:
3639 # Driver specific image creation options for LUKS.
3641 # @file             Node to create the image format on
3642 # @size             Size of the virtual disk in bytes
3644 # Since: 2.12
3646 { 'struct': 'BlockdevCreateOptionsLUKS',
3647   'base': 'QCryptoBlockCreateOptionsLUKS',
3648   'data': { 'file':             'BlockdevRef',
3649             'size':             'size' } }
3652 # @BlockdevCreateOptionsNfs:
3654 # Driver specific image creation options for NFS.
3656 # @location         Where to store the new image file
3657 # @size             Size of the virtual disk in bytes
3659 # Since: 2.12
3661 { 'struct': 'BlockdevCreateOptionsNfs',
3662   'data': { 'location':         'BlockdevOptionsNfs',
3663             'size':             'size' } }
3666 # @BlockdevCreateOptionsParallels:
3668 # Driver specific image creation options for parallels.
3670 # @file             Node to create the image format on
3671 # @size             Size of the virtual disk in bytes
3672 # @cluster-size     Cluster size in bytes (default: 1 MB)
3674 # Since: 2.12
3676 { 'struct': 'BlockdevCreateOptionsParallels',
3677   'data': { 'file':             'BlockdevRef',
3678             'size':             'size',
3679             '*cluster-size':    'size' } }
3682 # @BlockdevCreateOptionsQcow:
3684 # Driver specific image creation options for qcow.
3686 # @file             Node to create the image format on
3687 # @size             Size of the virtual disk in bytes
3688 # @backing-file     File name of the backing file if a backing file
3689 #                   should be used
3690 # @encrypt          Encryption options if the image should be encrypted
3692 # Since: 2.12
3694 { 'struct': 'BlockdevCreateOptionsQcow',
3695   'data': { 'file':             'BlockdevRef',
3696             'size':             'size',
3697             '*backing-file':    'str',
3698             '*encrypt':         'QCryptoBlockCreateOptions' } }
3701 # @BlockdevQcow2Version:
3703 # @v2:  The original QCOW2 format as introduced in qemu 0.10 (version 2)
3704 # @v3:  The extended QCOW2 format as introduced in qemu 1.1 (version 3)
3706 # Since: 2.12
3708 { 'enum': 'BlockdevQcow2Version',
3709   'data': [ 'v2', 'v3' ] }
3713 # @BlockdevCreateOptionsQcow2:
3715 # Driver specific image creation options for qcow2.
3717 # @file             Node to create the image format on
3718 # @size             Size of the virtual disk in bytes
3719 # @version          Compatibility level (default: v3)
3720 # @backing-file     File name of the backing file if a backing file
3721 #                   should be used
3722 # @backing-fmt      Name of the block driver to use for the backing file
3723 # @encrypt          Encryption options if the image should be encrypted
3724 # @cluster-size     qcow2 cluster size in bytes (default: 65536)
3725 # @preallocation    Preallocation mode for the new image (default: off)
3726 # @lazy-refcounts   True if refcounts may be updated lazily (default: off)
3727 # @refcount-bits    Width of reference counts in bits (default: 16)
3729 # Since: 2.12
3731 { 'struct': 'BlockdevCreateOptionsQcow2',
3732   'data': { 'file':             'BlockdevRef',
3733             'size':             'size',
3734             '*version':         'BlockdevQcow2Version',
3735             '*backing-file':    'str',
3736             '*backing-fmt':     'BlockdevDriver',
3737             '*encrypt':         'QCryptoBlockCreateOptions',
3738             '*cluster-size':    'size',
3739             '*preallocation':   'PreallocMode',
3740             '*lazy-refcounts':  'bool',
3741             '*refcount-bits':   'int' } }
3744 # @BlockdevCreateOptionsQed:
3746 # Driver specific image creation options for qed.
3748 # @file             Node to create the image format on
3749 # @size             Size of the virtual disk in bytes
3750 # @backing-file     File name of the backing file if a backing file
3751 #                   should be used
3752 # @backing-fmt      Name of the block driver to use for the backing file
3753 # @cluster-size     Cluster size in bytes (default: 65536)
3754 # @table-size       L1/L2 table size (in clusters)
3756 # Since: 2.12
3758 { 'struct': 'BlockdevCreateOptionsQed',
3759   'data': { 'file':             'BlockdevRef',
3760             'size':             'size',
3761             '*backing-file':    'str',
3762             '*backing-fmt':     'BlockdevDriver',
3763             '*cluster-size':    'size',
3764             '*table-size':      'int' } }
3767 # @BlockdevCreateOptionsRbd:
3769 # Driver specific image creation options for rbd/Ceph.
3771 # @location         Where to store the new image file. This location cannot
3772 #                   point to a snapshot.
3773 # @size             Size of the virtual disk in bytes
3774 # @cluster-size     RBD object size
3776 # Since: 2.12
3778 { 'struct': 'BlockdevCreateOptionsRbd',
3779   'data': { 'location':         'BlockdevOptionsRbd',
3780             'size':             'size',
3781             '*cluster-size' :   'size' } }
3784 # @SheepdogRedundancyType:
3786 # @full             Create a fully replicated vdi with x copies
3787 # @erasure-coded    Create an erasure coded vdi with x data strips and
3788 #                   y parity strips
3790 # Since: 2.12
3792 { 'enum': 'SheepdogRedundancyType',
3793   'data': [ 'full', 'erasure-coded' ] }
3796 # @SheepdogRedundancyFull:
3798 # @copies           Number of copies to use (between 1 and 31)
3800 # Since: 2.12
3802 { 'struct': 'SheepdogRedundancyFull',
3803   'data': { 'copies': 'int' }}
3806 # @SheepdogRedundancyErasureCoded:
3808 # @data-strips      Number of data strips to use (one of {2,4,8,16})
3809 # @parity-strips    Number of parity strips to use (between 1 and 15)
3811 # Since: 2.12
3813 { 'struct': 'SheepdogRedundancyErasureCoded',
3814   'data': { 'data-strips': 'int',
3815             'parity-strips': 'int' }}
3818 # @SheepdogRedundancy:
3820 # Since: 2.12
3822 { 'union': 'SheepdogRedundancy',
3823   'base': { 'type': 'SheepdogRedundancyType' },
3824   'discriminator': 'type',
3825   'data': { 'full': 'SheepdogRedundancyFull',
3826             'erasure-coded': 'SheepdogRedundancyErasureCoded' } }
3829 # @BlockdevCreateOptionsSheepdog:
3831 # Driver specific image creation options for Sheepdog.
3833 # @location         Where to store the new image file
3834 # @size             Size of the virtual disk in bytes
3835 # @backing-file     File name of a base image
3836 # @preallocation    Preallocation mode (allowed values: off, full)
3837 # @redundancy       Redundancy of the image
3838 # @object-size      Object size of the image
3840 # Since: 2.12
3842 { 'struct': 'BlockdevCreateOptionsSheepdog',
3843   'data': { 'location':         'BlockdevOptionsSheepdog',
3844             'size':             'size',
3845             '*backing-file':    'str',
3846             '*preallocation':   'PreallocMode',
3847             '*redundancy':      'SheepdogRedundancy',
3848             '*object-size':     'size' } }
3851 # @BlockdevCreateOptionsSsh:
3853 # Driver specific image creation options for SSH.
3855 # @location         Where to store the new image file
3856 # @size             Size of the virtual disk in bytes
3858 # Since: 2.12
3860 { 'struct': 'BlockdevCreateOptionsSsh',
3861   'data': { 'location':         'BlockdevOptionsSsh',
3862             'size':             'size' } }
3865 # @BlockdevCreateOptionsVdi:
3867 # Driver specific image creation options for VDI.
3869 # @file             Node to create the image format on
3870 # @size             Size of the virtual disk in bytes
3871 # @preallocation    Preallocation mode for the new image (allowed values: off,
3872 #                   metadata; default: off)
3874 # Since: 2.12
3876 { 'struct': 'BlockdevCreateOptionsVdi',
3877   'data': { 'file':             'BlockdevRef',
3878             'size':             'size',
3879             '*preallocation':   'PreallocMode' } }
3882 # @BlockdevVhdxSubformat:
3884 # @dynamic: Growing image file
3885 # @fixed:   Preallocated fixed-size image file
3887 # Since: 2.12
3889 { 'enum': 'BlockdevVhdxSubformat',
3890   'data': [ 'dynamic', 'fixed' ] }
3893 # @BlockdevCreateOptionsVhdx:
3895 # Driver specific image creation options for vhdx.
3897 # @file             Node to create the image format on
3898 # @size             Size of the virtual disk in bytes
3899 # @log-size         Log size in bytes, must be a multiple of 1 MB
3900 #                   (default: 1 MB)
3901 # @block-size       Block size in bytes, must be a multiple of 1 MB and not
3902 #                   larger than 256 MB (default: automatically choose a block
3903 #                   size depending on the image size)
3904 # @subformat        vhdx subformat (default: dynamic)
3905 # @block-state-zero Force use of payload blocks of type 'ZERO'. Non-standard,
3906 #                   but default.  Do not set to 'off' when using 'qemu-img
3907 #                   convert' with subformat=dynamic.
3909 # Since: 2.12
3911 { 'struct': 'BlockdevCreateOptionsVhdx',
3912   'data': { 'file':                 'BlockdevRef',
3913             'size':                 'size',
3914             '*log-size':            'size',
3915             '*block-size':          'size',
3916             '*subformat':           'BlockdevVhdxSubformat',
3917             '*block-state-zero':    'bool' } }
3920 # @BlockdevVpcSubformat:
3922 # @dynamic: Growing image file
3923 # @fixed:   Preallocated fixed-size image file
3925 # Since: 2.12
3927 { 'enum': 'BlockdevVpcSubformat',
3928   'data': [ 'dynamic', 'fixed' ] }
3931 # @BlockdevCreateOptionsVpc:
3933 # Driver specific image creation options for vpc (VHD).
3935 # @file             Node to create the image format on
3936 # @size             Size of the virtual disk in bytes
3937 # @subformat        vhdx subformat (default: dynamic)
3938 # @force-size       Force use of the exact byte size instead of rounding to the
3939 #                   next size that can be represented in CHS geometry
3940 #                   (default: false)
3942 # Since: 2.12
3944 { 'struct': 'BlockdevCreateOptionsVpc',
3945   'data': { 'file':                 'BlockdevRef',
3946             'size':                 'size',
3947             '*subformat':           'BlockdevVpcSubformat',
3948             '*force-size':          'bool' } }
3951 # @BlockdevCreateNotSupported:
3953 # This is used for all drivers that don't support creating images.
3955 # Since: 2.12
3957 { 'struct': 'BlockdevCreateNotSupported', 'data': {}}
3960 # @BlockdevCreateOptions:
3962 # Options for creating an image format on a given node.
3964 # @driver           block driver to create the image format
3966 # Since: 2.12
3968 { 'union': 'BlockdevCreateOptions',
3969   'base': {
3970       'driver':         'BlockdevDriver' },
3971   'discriminator': 'driver',
3972   'data': {
3973       'blkdebug':       'BlockdevCreateNotSupported',
3974       'blkverify':      'BlockdevCreateNotSupported',
3975       'bochs':          'BlockdevCreateNotSupported',
3976       'cloop':          'BlockdevCreateNotSupported',
3977       'copy-on-read':   'BlockdevCreateNotSupported',
3978       'dmg':            'BlockdevCreateNotSupported',
3979       'file':           'BlockdevCreateOptionsFile',
3980       'ftp':            'BlockdevCreateNotSupported',
3981       'ftps':           'BlockdevCreateNotSupported',
3982       'gluster':        'BlockdevCreateOptionsGluster',
3983       'host_cdrom':     'BlockdevCreateNotSupported',
3984       'host_device':    'BlockdevCreateNotSupported',
3985       'http':           'BlockdevCreateNotSupported',
3986       'https':          'BlockdevCreateNotSupported',
3987       'iscsi':          'BlockdevCreateNotSupported',
3988       'luks':           'BlockdevCreateOptionsLUKS',
3989       'nbd':            'BlockdevCreateNotSupported',
3990       'nfs':            'BlockdevCreateOptionsNfs',
3991       'null-aio':       'BlockdevCreateNotSupported',
3992       'null-co':        'BlockdevCreateNotSupported',
3993       'nvme':           'BlockdevCreateNotSupported',
3994       'parallels':      'BlockdevCreateOptionsParallels',
3995       'qcow':           'BlockdevCreateOptionsQcow',
3996       'qcow2':          'BlockdevCreateOptionsQcow2',
3997       'qed':            'BlockdevCreateOptionsQed',
3998       'quorum':         'BlockdevCreateNotSupported',
3999       'raw':            'BlockdevCreateNotSupported',
4000       'rbd':            'BlockdevCreateOptionsRbd',
4001       'replication':    'BlockdevCreateNotSupported',
4002       'sheepdog':       'BlockdevCreateOptionsSheepdog',
4003       'ssh':            'BlockdevCreateOptionsSsh',
4004       'throttle':       'BlockdevCreateNotSupported',
4005       'vdi':            'BlockdevCreateOptionsVdi',
4006       'vhdx':           'BlockdevCreateOptionsVhdx',
4007       'vmdk':           'BlockdevCreateNotSupported',
4008       'vpc':            'BlockdevCreateOptionsVpc',
4009       'vvfat':          'BlockdevCreateNotSupported',
4010       'vxhs':           'BlockdevCreateNotSupported'
4011   } }
4014 # @blockdev-create:
4016 # Starts a job to create an image format on a given node. The job is
4017 # automatically finalized, but a manual job-dismiss is required.
4019 # @job-id:          Identifier for the newly created job.
4021 # @options:         Options for the image creation.
4023 # Since: 3.0
4025 { 'command': 'blockdev-create',
4026   'data': { 'job-id': 'str',
4027             'options': 'BlockdevCreateOptions' } }
4030 # @blockdev-open-tray:
4032 # Opens a block device's tray. If there is a block driver state tree inserted as
4033 # a medium, it will become inaccessible to the guest (but it will remain
4034 # associated to the block device, so closing the tray will make it accessible
4035 # again).
4037 # If the tray was already open before, this will be a no-op.
4039 # Once the tray opens, a DEVICE_TRAY_MOVED event is emitted. There are cases in
4040 # which no such event will be generated, these include:
4041 # - if the guest has locked the tray, @force is false and the guest does not
4042 #   respond to the eject request
4043 # - if the BlockBackend denoted by @device does not have a guest device attached
4044 #   to it
4045 # - if the guest device does not have an actual tray
4047 # @device: Block device name (deprecated, use @id instead)
4049 # @id:     The name or QOM path of the guest device (since: 2.8)
4051 # @force:  if false (the default), an eject request will be sent to
4052 #          the guest if it has locked the tray (and the tray will not be opened
4053 #          immediately); if true, the tray will be opened regardless of whether
4054 #          it is locked
4056 # Since: 2.5
4058 # Example:
4060 # -> { "execute": "blockdev-open-tray",
4061 #      "arguments": { "id": "ide0-1-0" } }
4063 # <- { "timestamp": { "seconds": 1418751016,
4064 #                     "microseconds": 716996 },
4065 #      "event": "DEVICE_TRAY_MOVED",
4066 #      "data": { "device": "ide1-cd0",
4067 #                "id": "ide0-1-0",
4068 #                "tray-open": true } }
4070 # <- { "return": {} }
4073 { 'command': 'blockdev-open-tray',
4074   'data': { '*device': 'str',
4075             '*id': 'str',
4076             '*force': 'bool' } }
4079 # @blockdev-close-tray:
4081 # Closes a block device's tray. If there is a block driver state tree associated
4082 # with the block device (which is currently ejected), that tree will be loaded
4083 # as the medium.
4085 # If the tray was already closed before, this will be a no-op.
4087 # @device:  Block device name (deprecated, use @id instead)
4089 # @id:      The name or QOM path of the guest device (since: 2.8)
4091 # Since: 2.5
4093 # Example:
4095 # -> { "execute": "blockdev-close-tray",
4096 #      "arguments": { "id": "ide0-1-0" } }
4098 # <- { "timestamp": { "seconds": 1418751345,
4099 #                     "microseconds": 272147 },
4100 #      "event": "DEVICE_TRAY_MOVED",
4101 #      "data": { "device": "ide1-cd0",
4102 #                "id": "ide0-1-0",
4103 #                "tray-open": false } }
4105 # <- { "return": {} }
4108 { 'command': 'blockdev-close-tray',
4109   'data': { '*device': 'str',
4110             '*id': 'str' } }
4113 # @blockdev-remove-medium:
4115 # Removes a medium (a block driver state tree) from a block device. That block
4116 # device's tray must currently be open (unless there is no attached guest
4117 # device).
4119 # If the tray is open and there is no medium inserted, this will be a no-op.
4121 # @id:     The name or QOM path of the guest device
4123 # Since: 2.12
4125 # Example:
4127 # -> { "execute": "blockdev-remove-medium",
4128 #      "arguments": { "id": "ide0-1-0" } }
4130 # <- { "error": { "class": "GenericError",
4131 #                 "desc": "Tray of device 'ide0-1-0' is not open" } }
4133 # -> { "execute": "blockdev-open-tray",
4134 #      "arguments": { "id": "ide0-1-0" } }
4136 # <- { "timestamp": { "seconds": 1418751627,
4137 #                     "microseconds": 549958 },
4138 #      "event": "DEVICE_TRAY_MOVED",
4139 #      "data": { "device": "ide1-cd0",
4140 #                "id": "ide0-1-0",
4141 #                "tray-open": true } }
4143 # <- { "return": {} }
4145 # -> { "execute": "blockdev-remove-medium",
4146 #      "arguments": { "id": "ide0-1-0" } }
4148 # <- { "return": {} }
4151 { 'command': 'blockdev-remove-medium',
4152   'data': { 'id': 'str' } }
4155 # @blockdev-insert-medium:
4157 # Inserts a medium (a block driver state tree) into a block device. That block
4158 # device's tray must currently be open (unless there is no attached guest
4159 # device) and there must be no medium inserted already.
4161 # @id:        The name or QOM path of the guest device
4163 # @node-name: name of a node in the block driver state graph
4165 # Since: 2.12
4167 # Example:
4169 # -> { "execute": "blockdev-add",
4170 #      "arguments": {
4171 #          "node-name": "node0",
4172 #          "driver": "raw",
4173 #          "file": { "driver": "file",
4174 #                    "filename": "fedora.iso" } } }
4175 # <- { "return": {} }
4177 # -> { "execute": "blockdev-insert-medium",
4178 #      "arguments": { "id": "ide0-1-0",
4179 #                     "node-name": "node0" } }
4181 # <- { "return": {} }
4184 { 'command': 'blockdev-insert-medium',
4185   'data': { 'id': 'str',
4186             'node-name': 'str'} }
4190 # @BlockdevChangeReadOnlyMode:
4192 # Specifies the new read-only mode of a block device subject to the
4193 # @blockdev-change-medium command.
4195 # @retain:      Retains the current read-only mode
4197 # @read-only:   Makes the device read-only
4199 # @read-write:  Makes the device writable
4201 # Since: 2.3
4204 { 'enum': 'BlockdevChangeReadOnlyMode',
4205   'data': ['retain', 'read-only', 'read-write'] }
4209 # @blockdev-change-medium:
4211 # Changes the medium inserted into a block device by ejecting the current medium
4212 # and loading a new image file which is inserted as the new medium (this command
4213 # combines blockdev-open-tray, blockdev-remove-medium, blockdev-insert-medium
4214 # and blockdev-close-tray).
4216 # @device:          Block device name (deprecated, use @id instead)
4218 # @id:              The name or QOM path of the guest device
4219 #                   (since: 2.8)
4221 # @filename:        filename of the new image to be loaded
4223 # @format:          format to open the new image with (defaults to
4224 #                   the probed format)
4226 # @read-only-mode:  change the read-only mode of the device; defaults
4227 #                   to 'retain'
4229 # Since: 2.5
4231 # Examples:
4233 # 1. Change a removable medium
4235 # -> { "execute": "blockdev-change-medium",
4236 #      "arguments": { "id": "ide0-1-0",
4237 #                     "filename": "/srv/images/Fedora-12-x86_64-DVD.iso",
4238 #                     "format": "raw" } }
4239 # <- { "return": {} }
4241 # 2. Load a read-only medium into a writable drive
4243 # -> { "execute": "blockdev-change-medium",
4244 #      "arguments": { "id": "floppyA",
4245 #                     "filename": "/srv/images/ro.img",
4246 #                     "format": "raw",
4247 #                     "read-only-mode": "retain" } }
4249 # <- { "error":
4250 #      { "class": "GenericError",
4251 #        "desc": "Could not open '/srv/images/ro.img': Permission denied" } }
4253 # -> { "execute": "blockdev-change-medium",
4254 #      "arguments": { "id": "floppyA",
4255 #                     "filename": "/srv/images/ro.img",
4256 #                     "format": "raw",
4257 #                     "read-only-mode": "read-only" } }
4259 # <- { "return": {} }
4262 { 'command': 'blockdev-change-medium',
4263   'data': { '*device': 'str',
4264             '*id': 'str',
4265             'filename': 'str',
4266             '*format': 'str',
4267             '*read-only-mode': 'BlockdevChangeReadOnlyMode' } }
4271 # @BlockErrorAction:
4273 # An enumeration of action that has been taken when a DISK I/O occurs
4275 # @ignore: error has been ignored
4277 # @report: error has been reported to the device
4279 # @stop: error caused VM to be stopped
4281 # Since: 2.1
4283 { 'enum': 'BlockErrorAction',
4284   'data': [ 'ignore', 'report', 'stop' ] }
4288 # @BLOCK_IMAGE_CORRUPTED:
4290 # Emitted when a disk image is being marked corrupt. The image can be
4291 # identified by its device or node name. The 'device' field is always
4292 # present for compatibility reasons, but it can be empty ("") if the
4293 # image does not have a device name associated.
4295 # @device: device name. This is always present for compatibility
4296 #          reasons, but it can be empty ("") if the image does not
4297 #          have a device name associated.
4299 # @node-name: node name (Since: 2.4)
4301 # @msg: informative message for human consumption, such as the kind of
4302 #       corruption being detected. It should not be parsed by machine as it is
4303 #       not guaranteed to be stable
4305 # @offset: if the corruption resulted from an image access, this is
4306 #          the host's access offset into the image
4308 # @size: if the corruption resulted from an image access, this is
4309 #        the access size
4311 # @fatal: if set, the image is marked corrupt and therefore unusable after this
4312 #        event and must be repaired (Since 2.2; before, every
4313 #        BLOCK_IMAGE_CORRUPTED event was fatal)
4315 # Note: If action is "stop", a STOP event will eventually follow the
4316 #       BLOCK_IO_ERROR event.
4318 # Example:
4320 # <- { "event": "BLOCK_IMAGE_CORRUPTED",
4321 #      "data": { "device": "ide0-hd0", "node-name": "node0",
4322 #                "msg": "Prevented active L1 table overwrite", "offset": 196608,
4323 #                "size": 65536 },
4324 #      "timestamp": { "seconds": 1378126126, "microseconds": 966463 } }
4326 # Since: 1.7
4328 { 'event': 'BLOCK_IMAGE_CORRUPTED',
4329   'data': { 'device'     : 'str',
4330             '*node-name' : 'str',
4331             'msg'        : 'str',
4332             '*offset'    : 'int',
4333             '*size'      : 'int',
4334             'fatal'      : 'bool' } }
4337 # @BLOCK_IO_ERROR:
4339 # Emitted when a disk I/O error occurs
4341 # @device: device name. This is always present for compatibility
4342 #          reasons, but it can be empty ("") if the image does not
4343 #          have a device name associated.
4345 # @node-name: node name. Note that errors may be reported for the root node
4346 #             that is directly attached to a guest device rather than for the
4347 #             node where the error occurred. The node name is not present if
4348 #             the drive is empty. (Since: 2.8)
4350 # @operation: I/O operation
4352 # @action: action that has been taken
4354 # @nospace: true if I/O error was caused due to a no-space
4355 #           condition. This key is only present if query-block's
4356 #           io-status is present, please see query-block documentation
4357 #           for more information (since: 2.2)
4359 # @reason: human readable string describing the error cause.
4360 #          (This field is a debugging aid for humans, it should not
4361 #           be parsed by applications) (since: 2.2)
4363 # Note: If action is "stop", a STOP event will eventually follow the
4364 # BLOCK_IO_ERROR event
4366 # Since: 0.13.0
4368 # Example:
4370 # <- { "event": "BLOCK_IO_ERROR",
4371 #      "data": { "device": "ide0-hd1",
4372 #                "node-name": "#block212",
4373 #                "operation": "write",
4374 #                "action": "stop" },
4375 #      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4378 { 'event': 'BLOCK_IO_ERROR',
4379   'data': { 'device': 'str', '*node-name': 'str',
4380             'operation': 'IoOperationType',
4381             'action': 'BlockErrorAction', '*nospace': 'bool',
4382             'reason': 'str' } }
4385 # @BLOCK_JOB_COMPLETED:
4387 # Emitted when a block job has completed
4389 # @type: job type
4391 # @device: The job identifier. Originally the device name but other
4392 #          values are allowed since QEMU 2.7
4394 # @len: maximum progress value
4396 # @offset: current progress value. On success this is equal to len.
4397 #          On failure this is less than len
4399 # @speed: rate limit, bytes per second
4401 # @error: error message. Only present on failure. This field
4402 #         contains a human-readable error message. There are no semantics
4403 #         other than that streaming has failed and clients should not try to
4404 #         interpret the error string
4406 # Since: 1.1
4408 # Example:
4410 # <- { "event": "BLOCK_JOB_COMPLETED",
4411 #      "data": { "type": "stream", "device": "virtio-disk0",
4412 #                "len": 10737418240, "offset": 10737418240,
4413 #                "speed": 0 },
4414 #      "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
4417 { 'event': 'BLOCK_JOB_COMPLETED',
4418   'data': { 'type'  : 'JobType',
4419             'device': 'str',
4420             'len'   : 'int',
4421             'offset': 'int',
4422             'speed' : 'int',
4423             '*error': 'str' } }
4426 # @BLOCK_JOB_CANCELLED:
4428 # Emitted when a block job has been cancelled
4430 # @type: job type
4432 # @device: The job identifier. Originally the device name but other
4433 #          values are allowed since QEMU 2.7
4435 # @len: maximum progress value
4437 # @offset: current progress value. On success this is equal to len.
4438 #          On failure this is less than len
4440 # @speed: rate limit, bytes per second
4442 # Since: 1.1
4444 # Example:
4446 # <- { "event": "BLOCK_JOB_CANCELLED",
4447 #      "data": { "type": "stream", "device": "virtio-disk0",
4448 #                "len": 10737418240, "offset": 134217728,
4449 #                "speed": 0 },
4450 #      "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
4453 { 'event': 'BLOCK_JOB_CANCELLED',
4454   'data': { 'type'  : 'JobType',
4455             'device': 'str',
4456             'len'   : 'int',
4457             'offset': 'int',
4458             'speed' : 'int' } }
4461 # @BLOCK_JOB_ERROR:
4463 # Emitted when a block job encounters an error
4465 # @device: The job identifier. Originally the device name but other
4466 #          values are allowed since QEMU 2.7
4468 # @operation: I/O operation
4470 # @action: action that has been taken
4472 # Since: 1.3
4474 # Example:
4476 # <- { "event": "BLOCK_JOB_ERROR",
4477 #      "data": { "device": "ide0-hd1",
4478 #                "operation": "write",
4479 #                "action": "stop" },
4480 #      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4483 { 'event': 'BLOCK_JOB_ERROR',
4484   'data': { 'device'   : 'str',
4485             'operation': 'IoOperationType',
4486             'action'   : 'BlockErrorAction' } }
4489 # @BLOCK_JOB_READY:
4491 # Emitted when a block job is ready to complete
4493 # @type: job type
4495 # @device: The job identifier. Originally the device name but other
4496 #          values are allowed since QEMU 2.7
4498 # @len: maximum progress value
4500 # @offset: current progress value. On success this is equal to len.
4501 #          On failure this is less than len
4503 # @speed: rate limit, bytes per second
4505 # Note: The "ready to complete" status is always reset by a @BLOCK_JOB_ERROR
4506 # event
4508 # Since: 1.3
4510 # Example:
4512 # <- { "event": "BLOCK_JOB_READY",
4513 #      "data": { "device": "drive0", "type": "mirror", "speed": 0,
4514 #                "len": 2097152, "offset": 2097152 }
4515 #      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4518 { 'event': 'BLOCK_JOB_READY',
4519   'data': { 'type'  : 'JobType',
4520             'device': 'str',
4521             'len'   : 'int',
4522             'offset': 'int',
4523             'speed' : 'int' } }
4526 # @BLOCK_JOB_PENDING:
4528 # Emitted when a block job is awaiting explicit authorization to finalize graph
4529 # changes via @block-job-finalize. If this job is part of a transaction, it will
4530 # not emit this event until the transaction has converged first.
4532 # @type: job type
4534 # @id: The job identifier.
4536 # Since: 2.12
4538 # Example:
4540 # <- { "event": "BLOCK_JOB_WAITING",
4541 #      "data": { "device": "drive0", "type": "mirror" },
4542 #      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4545 { 'event': 'BLOCK_JOB_PENDING',
4546   'data': { 'type'  : 'JobType',
4547             'id'    : 'str' } }
4550 # @PreallocMode:
4552 # Preallocation mode of QEMU image file
4554 # @off: no preallocation
4555 # @metadata: preallocate only for metadata
4556 # @falloc: like @full preallocation but allocate disk space by
4557 #          posix_fallocate() rather than writing zeros.
4558 # @full: preallocate all data by writing zeros to device to ensure disk
4559 #        space is really available. @full preallocation also sets up
4560 #        metadata correctly.
4562 # Since: 2.2
4564 { 'enum': 'PreallocMode',
4565   'data': [ 'off', 'metadata', 'falloc', 'full' ] }
4568 # @BLOCK_WRITE_THRESHOLD:
4570 # Emitted when writes on block device reaches or exceeds the
4571 # configured write threshold. For thin-provisioned devices, this
4572 # means the device should be extended to avoid pausing for
4573 # disk exhaustion.
4574 # The event is one shot. Once triggered, it needs to be
4575 # re-registered with another block-set-write-threshold command.
4577 # @node-name: graph node name on which the threshold was exceeded.
4579 # @amount-exceeded: amount of data which exceeded the threshold, in bytes.
4581 # @write-threshold: last configured threshold, in bytes.
4583 # Since: 2.3
4585 { 'event': 'BLOCK_WRITE_THRESHOLD',
4586   'data': { 'node-name': 'str',
4587             'amount-exceeded': 'uint64',
4588             'write-threshold': 'uint64' } }
4591 # @block-set-write-threshold:
4593 # Change the write threshold for a block drive. An event will be
4594 # delivered if a write to this block drive crosses the configured
4595 # threshold.  The threshold is an offset, thus must be
4596 # non-negative. Default is no write threshold. Setting the threshold
4597 # to zero disables it.
4599 # This is useful to transparently resize thin-provisioned drives without
4600 # the guest OS noticing.
4602 # @node-name: graph node name on which the threshold must be set.
4604 # @write-threshold: configured threshold for the block device, bytes.
4605 #                   Use 0 to disable the threshold.
4607 # Since: 2.3
4609 # Example:
4611 # -> { "execute": "block-set-write-threshold",
4612 #      "arguments": { "node-name": "mydev",
4613 #                     "write-threshold": 17179869184 } }
4614 # <- { "return": {} }
4617 { 'command': 'block-set-write-threshold',
4618   'data': { 'node-name': 'str', 'write-threshold': 'uint64' } }
4621 # @x-blockdev-change:
4623 # Dynamically reconfigure the block driver state graph. It can be used
4624 # to add, remove, insert or replace a graph node. Currently only the
4625 # Quorum driver implements this feature to add or remove its child. This
4626 # is useful to fix a broken quorum child.
4628 # If @node is specified, it will be inserted under @parent. @child
4629 # may not be specified in this case. If both @parent and @child are
4630 # specified but @node is not, @child will be detached from @parent.
4632 # @parent: the id or name of the parent node.
4634 # @child: the name of a child under the given parent node.
4636 # @node: the name of the node that will be added.
4638 # Note: this command is experimental, and its API is not stable. It
4639 # does not support all kinds of operations, all kinds of children, nor
4640 # all block drivers.
4642 # FIXME Removing children from a quorum node means introducing gaps in the
4643 # child indices. This cannot be represented in the 'children' list of
4644 # BlockdevOptionsQuorum, as returned by .bdrv_refresh_filename().
4646 # Warning: The data in a new quorum child MUST be consistent with that of
4647 # the rest of the array.
4649 # Since: 2.7
4651 # Example:
4653 # 1. Add a new node to a quorum
4654 # -> { "execute": "blockdev-add",
4655 #      "arguments": {
4656 #          "driver": "raw",
4657 #          "node-name": "new_node",
4658 #          "file": { "driver": "file",
4659 #                    "filename": "test.raw" } } }
4660 # <- { "return": {} }
4661 # -> { "execute": "x-blockdev-change",
4662 #      "arguments": { "parent": "disk1",
4663 #                     "node": "new_node" } }
4664 # <- { "return": {} }
4666 # 2. Delete a quorum's node
4667 # -> { "execute": "x-blockdev-change",
4668 #      "arguments": { "parent": "disk1",
4669 #                     "child": "children.1" } }
4670 # <- { "return": {} }
4673 { 'command': 'x-blockdev-change',
4674   'data' : { 'parent': 'str',
4675              '*child': 'str',
4676              '*node': 'str' } }
4679 # @x-blockdev-set-iothread:
4681 # Move @node and its children into the @iothread.  If @iothread is null then
4682 # move @node and its children into the main loop.
4684 # The node must not be attached to a BlockBackend.
4686 # @node-name: the name of the block driver node
4688 # @iothread: the name of the IOThread object or null for the main loop
4690 # @force: true if the node and its children should be moved when a BlockBackend
4691 #         is already attached
4693 # Note: this command is experimental and intended for test cases that need
4694 # control over IOThreads only.
4696 # Since: 2.12
4698 # Example:
4700 # 1. Move a node into an IOThread
4701 # -> { "execute": "x-blockdev-set-iothread",
4702 #      "arguments": { "node-name": "disk1",
4703 #                     "iothread": "iothread0" } }
4704 # <- { "return": {} }
4706 # 2. Move a node into the main loop
4707 # -> { "execute": "x-blockdev-set-iothread",
4708 #      "arguments": { "node-name": "disk1",
4709 #                     "iothread": null } }
4710 # <- { "return": {} }
4713 { 'command': 'x-blockdev-set-iothread',
4714   'data' : { 'node-name': 'str',
4715              'iothread': 'StrOrNull',
4716              '*force': 'bool' } }