slirp: check len against dhcp options array end
[qemu/ar7.git] / qapi / block-core.json
blob833c602150f1c3fa15e512380b2f340365045a17
1 # -*- Mode: Python -*-
3 ##
4 # == QAPI block core definitions (vm unrelated)
5 ##
7 # QAPI common definitions
8 { 'include': 'common.json' }
11 # @SnapshotInfo:
13 # @id: unique snapshot id
15 # @name: user chosen name
17 # @vm-state-size: size of the VM state
19 # @date-sec: UTC date of the snapshot in seconds
21 # @date-nsec: fractional part in nano seconds to be used with date-sec
23 # @vm-clock-sec: VM clock relative to boot in seconds
25 # @vm-clock-nsec: fractional part in nano seconds to be used with vm-clock-sec
27 # Since: 1.3
30 { 'struct': 'SnapshotInfo',
31   'data': { 'id': 'str', 'name': 'str', 'vm-state-size': 'int',
32             'date-sec': 'int', 'date-nsec': 'int',
33             'vm-clock-sec': 'int', 'vm-clock-nsec': 'int' } }
36 # @ImageInfoSpecificQCow2EncryptionBase:
38 # @format: The encryption format
40 # Since: 2.10
42 { 'struct': 'ImageInfoSpecificQCow2EncryptionBase',
43   'data': { 'format': 'BlockdevQcow2EncryptionFormat'}}
46 # @ImageInfoSpecificQCow2Encryption:
48 # Since: 2.10
50 { 'union': 'ImageInfoSpecificQCow2Encryption',
51   'base': 'ImageInfoSpecificQCow2EncryptionBase',
52   'discriminator': 'format',
53   'data': { 'aes': 'QCryptoBlockInfoQCow',
54             'luks': 'QCryptoBlockInfoLUKS' } }
57 # @ImageInfoSpecificQCow2:
59 # @compat: compatibility level
61 # @lazy-refcounts: on or off; only valid for compat >= 1.1
63 # @corrupt: true if the image has been marked corrupt; only valid for
64 #           compat >= 1.1 (since 2.2)
66 # @refcount-bits: width of a refcount entry in bits (since 2.3)
68 # @encrypt: details about encryption parameters; only set if image
69 #           is encrypted (since 2.10)
71 # Since: 1.7
73 { 'struct': 'ImageInfoSpecificQCow2',
74   'data': {
75       'compat': 'str',
76       '*lazy-refcounts': 'bool',
77       '*corrupt': 'bool',
78       'refcount-bits': 'int',
79       '*encrypt': 'ImageInfoSpecificQCow2Encryption'
80   } }
83 # @ImageInfoSpecificVmdk:
85 # @create-type: The create type of VMDK image
87 # @cid: Content id of image
89 # @parent-cid: Parent VMDK image's cid
91 # @extents: List of extent files
93 # Since: 1.7
95 { 'struct': 'ImageInfoSpecificVmdk',
96   'data': {
97       'create-type': 'str',
98       'cid': 'int',
99       'parent-cid': 'int',
100       'extents': ['ImageInfo']
101   } }
104 # @ImageInfoSpecific:
106 # A discriminated record of image format specific information structures.
108 # Since: 1.7
110 { 'union': 'ImageInfoSpecific',
111   'data': {
112       'qcow2': 'ImageInfoSpecificQCow2',
113       'vmdk': 'ImageInfoSpecificVmdk',
114       # If we need to add block driver specific parameters for
115       # LUKS in future, then we'll subclass QCryptoBlockInfoLUKS
116       # to define a ImageInfoSpecificLUKS
117       'luks': 'QCryptoBlockInfoLUKS'
118   } }
121 # @ImageInfo:
123 # Information about a QEMU image file
125 # @filename: name of the image file
127 # @format: format of the image file
129 # @virtual-size: maximum capacity in bytes of the image
131 # @actual-size: actual size on disk in bytes of the image
133 # @dirty-flag: true if image is not cleanly closed
135 # @cluster-size: size of a cluster in bytes
137 # @encrypted: true if the image is encrypted
139 # @compressed: true if the image is compressed (Since 1.7)
141 # @backing-filename: name of the backing file
143 # @full-backing-filename: full path of the backing file
145 # @backing-filename-format: the format of the backing file
147 # @snapshots: list of VM snapshots
149 # @backing-image: info of the backing image (since 1.6)
151 # @format-specific: structure supplying additional format-specific
152 # information (since 1.7)
154 # Since: 1.3
157 { 'struct': 'ImageInfo',
158   'data': {'filename': 'str', 'format': 'str', '*dirty-flag': 'bool',
159            '*actual-size': 'int', 'virtual-size': 'int',
160            '*cluster-size': 'int', '*encrypted': 'bool', '*compressed': 'bool',
161            '*backing-filename': 'str', '*full-backing-filename': 'str',
162            '*backing-filename-format': 'str', '*snapshots': ['SnapshotInfo'],
163            '*backing-image': 'ImageInfo',
164            '*format-specific': 'ImageInfoSpecific' } }
167 # @ImageCheck:
169 # Information about a QEMU image file check
171 # @filename: name of the image file checked
173 # @format: format of the image file checked
175 # @check-errors: number of unexpected errors occurred during check
177 # @image-end-offset: offset (in bytes) where the image ends, this
178 #                    field is present if the driver for the image format
179 #                    supports it
181 # @corruptions: number of corruptions found during the check if any
183 # @leaks: number of leaks found during the check if any
185 # @corruptions-fixed: number of corruptions fixed during the check
186 #                     if any
188 # @leaks-fixed: number of leaks fixed during the check if any
190 # @total-clusters: total number of clusters, this field is present
191 #                  if the driver for the image format supports it
193 # @allocated-clusters: total number of allocated clusters, this
194 #                      field is present if the driver for the image format
195 #                      supports it
197 # @fragmented-clusters: total number of fragmented clusters, this
198 #                       field is present if the driver for the image format
199 #                       supports it
201 # @compressed-clusters: total number of compressed clusters, this
202 #                       field is present if the driver for the image format
203 #                       supports it
205 # Since: 1.4
208 { 'struct': 'ImageCheck',
209   'data': {'filename': 'str', 'format': 'str', 'check-errors': 'int',
210            '*image-end-offset': 'int', '*corruptions': 'int', '*leaks': 'int',
211            '*corruptions-fixed': 'int', '*leaks-fixed': 'int',
212            '*total-clusters': 'int', '*allocated-clusters': 'int',
213            '*fragmented-clusters': 'int', '*compressed-clusters': 'int' } }
216 # @MapEntry:
218 # Mapping information from a virtual block range to a host file range
220 # @start: the start byte of the mapped virtual range
222 # @length: the number of bytes of the mapped virtual range
224 # @data: whether the mapped range has data
226 # @zero: whether the virtual blocks are zeroed
228 # @depth: the depth of the mapping
230 # @offset: the offset in file that the virtual sectors are mapped to
232 # @filename: filename that is referred to by @offset
234 # Since: 2.6
237 { 'struct': 'MapEntry',
238   'data': {'start': 'int', 'length': 'int', 'data': 'bool',
239            'zero': 'bool', 'depth': 'int', '*offset': 'int',
240            '*filename': 'str' } }
243 # @BlockdevCacheInfo:
245 # Cache mode information for a block device
247 # @writeback:   true if writeback mode is enabled
248 # @direct:      true if the host page cache is bypassed (O_DIRECT)
249 # @no-flush:    true if flush requests are ignored for the device
251 # Since: 2.3
253 { 'struct': 'BlockdevCacheInfo',
254   'data': { 'writeback': 'bool',
255             'direct': 'bool',
256             'no-flush': 'bool' } }
259 # @BlockDeviceInfo:
261 # Information about the backing device for a block device.
263 # @file: the filename of the backing device
265 # @node-name: the name of the block driver node (Since 2.0)
267 # @ro: true if the backing device was open read-only
269 # @drv: the name of the block format used to open the backing device. As of
270 #       0.14.0 this can be: 'blkdebug', 'bochs', 'cloop', 'cow', 'dmg',
271 #       'file', 'file', 'ftp', 'ftps', 'host_cdrom', 'host_device',
272 #       'http', 'https', 'luks', 'nbd', 'parallels', 'qcow',
273 #       'qcow2', 'raw', 'vdi', 'vmdk', 'vpc', 'vvfat'
274 #       2.2: 'archipelago' added, 'cow' dropped
275 #       2.3: 'host_floppy' deprecated
276 #       2.5: 'host_floppy' dropped
277 #       2.6: 'luks' added
278 #       2.8: 'replication' added, 'tftp' dropped
279 #       2.9: 'archipelago' dropped
281 # @backing_file: the name of the backing file (for copy-on-write)
283 # @backing_file_depth: number of files in the backing file chain (since: 1.2)
285 # @encrypted: true if the backing device is encrypted
287 # @encryption_key_missing: Deprecated; always false
289 # @detect_zeroes: detect and optimize zero writes (Since 2.1)
291 # @bps: total throughput limit in bytes per second is specified
293 # @bps_rd: read throughput limit in bytes per second is specified
295 # @bps_wr: write throughput limit in bytes per second is specified
297 # @iops: total I/O operations per second is specified
299 # @iops_rd: read I/O operations per second is specified
301 # @iops_wr: write I/O operations per second is specified
303 # @image: the info of image used (since: 1.6)
305 # @bps_max: total throughput limit during bursts,
306 #                     in bytes (Since 1.7)
308 # @bps_rd_max: read throughput limit during bursts,
309 #                        in bytes (Since 1.7)
311 # @bps_wr_max: write throughput limit during bursts,
312 #                        in bytes (Since 1.7)
314 # @iops_max: total I/O operations per second during bursts,
315 #                      in bytes (Since 1.7)
317 # @iops_rd_max: read I/O operations per second during bursts,
318 #                         in bytes (Since 1.7)
320 # @iops_wr_max: write I/O operations per second during bursts,
321 #                         in bytes (Since 1.7)
323 # @bps_max_length: maximum length of the @bps_max burst
324 #                            period, in seconds. (Since 2.6)
326 # @bps_rd_max_length: maximum length of the @bps_rd_max
327 #                               burst period, in seconds. (Since 2.6)
329 # @bps_wr_max_length: maximum length of the @bps_wr_max
330 #                               burst period, in seconds. (Since 2.6)
332 # @iops_max_length: maximum length of the @iops burst
333 #                             period, in seconds. (Since 2.6)
335 # @iops_rd_max_length: maximum length of the @iops_rd_max
336 #                                burst period, in seconds. (Since 2.6)
338 # @iops_wr_max_length: maximum length of the @iops_wr_max
339 #                                burst period, in seconds. (Since 2.6)
341 # @iops_size: an I/O size in bytes (Since 1.7)
343 # @group: throttle group name (Since 2.4)
345 # @cache: the cache mode used for the block device (since: 2.3)
347 # @write_threshold: configured write threshold for the device.
348 #                   0 if disabled. (Since 2.3)
350 # Since: 0.14.0
353 { 'struct': 'BlockDeviceInfo',
354   'data': { 'file': 'str', '*node-name': 'str', 'ro': 'bool', 'drv': 'str',
355             '*backing_file': 'str', 'backing_file_depth': 'int',
356             'encrypted': 'bool', 'encryption_key_missing': 'bool',
357             'detect_zeroes': 'BlockdevDetectZeroesOptions',
358             'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
359             'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
360             'image': 'ImageInfo',
361             '*bps_max': 'int', '*bps_rd_max': 'int',
362             '*bps_wr_max': 'int', '*iops_max': 'int',
363             '*iops_rd_max': 'int', '*iops_wr_max': 'int',
364             '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
365             '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
366             '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
367             '*iops_size': 'int', '*group': 'str', 'cache': 'BlockdevCacheInfo',
368             'write_threshold': 'int' } }
371 # @BlockDeviceIoStatus:
373 # An enumeration of block device I/O status.
375 # @ok: The last I/O operation has succeeded
377 # @failed: The last I/O operation has failed
379 # @nospace: The last I/O operation has failed due to a no-space condition
381 # Since: 1.0
383 { 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
386 # @BlockDeviceMapEntry:
388 # Entry in the metadata map of the device (returned by "qemu-img map")
390 # @start: Offset in the image of the first byte described by this entry
391 #         (in bytes)
393 # @length: Length of the range described by this entry (in bytes)
395 # @depth: Number of layers (0 = top image, 1 = top image's backing file, etc.)
396 #         before reaching one for which the range is allocated.  The value is
397 #         in the range 0 to the depth of the image chain - 1.
399 # @zero: the sectors in this range read as zeros
401 # @data: reading the image will actually read data from a file (in particular,
402 #        if @offset is present this means that the sectors are not simply
403 #        preallocated, but contain actual data in raw format)
405 # @offset: if present, the image file stores the data for this range in
406 #          raw format at the given offset.
408 # Since: 1.7
410 { 'struct': 'BlockDeviceMapEntry',
411   'data': { 'start': 'int', 'length': 'int', 'depth': 'int', 'zero': 'bool',
412             'data': 'bool', '*offset': 'int' } }
415 # @DirtyBitmapStatus:
417 # An enumeration of possible states that a dirty bitmap can report to the user.
419 # @frozen: The bitmap is currently in-use by a backup operation or block job,
420 #          and is immutable.
422 # @disabled: The bitmap is currently in-use by an internal operation and is
423 #            read-only. It can still be deleted.
425 # @active: The bitmap is actively monitoring for new writes, and can be cleared,
426 #          deleted, or used for backup operations.
428 # Since: 2.4
430 { 'enum': 'DirtyBitmapStatus',
431   'data': ['active', 'disabled', 'frozen'] }
434 # @BlockDirtyInfo:
436 # Block dirty bitmap information.
438 # @name: the name of the dirty bitmap (Since 2.4)
440 # @count: number of dirty bytes according to the dirty bitmap
442 # @granularity: granularity of the dirty bitmap in bytes (since 1.4)
444 # @status: current status of the dirty bitmap (since 2.4)
446 # Since: 1.3
448 { 'struct': 'BlockDirtyInfo',
449   'data': {'*name': 'str', 'count': 'int', 'granularity': 'uint32',
450            'status': 'DirtyBitmapStatus'} }
453 # @BlockInfo:
455 # Block device information.  This structure describes a virtual device and
456 # the backing device associated with it.
458 # @device: The device name associated with the virtual device.
460 # @qdev: The qdev ID, or if no ID is assigned, the QOM path of the block
461 #        device. (since 2.10)
463 # @type: This field is returned only for compatibility reasons, it should
464 #        not be used (always returns 'unknown')
466 # @removable: True if the device supports removable media.
468 # @locked: True if the guest has locked this device from having its media
469 #          removed
471 # @tray_open: True if the device's tray is open
472 #             (only present if it has a tray)
474 # @dirty-bitmaps: dirty bitmaps information (only present if the
475 #                 driver has one or more dirty bitmaps) (Since 2.0)
477 # @io-status: @BlockDeviceIoStatus. Only present if the device
478 #             supports it and the VM is configured to stop on errors
479 #             (supported device models: virtio-blk, IDE, SCSI except
480 #             scsi-generic)
482 # @inserted: @BlockDeviceInfo describing the device if media is
483 #            present
485 # Since:  0.14.0
487 { 'struct': 'BlockInfo',
488   'data': {'device': 'str', '*qdev': 'str', 'type': 'str', 'removable': 'bool',
489            'locked': 'bool', '*inserted': 'BlockDeviceInfo',
490            '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus',
491            '*dirty-bitmaps': ['BlockDirtyInfo'] } }
494 # @BlockMeasureInfo:
496 # Image file size calculation information.  This structure describes the size
497 # requirements for creating a new image file.
499 # The size requirements depend on the new image file format.  File size always
500 # equals virtual disk size for the 'raw' format, even for sparse POSIX files.
501 # Compact formats such as 'qcow2' represent unallocated and zero regions
502 # efficiently so file size may be smaller than virtual disk size.
504 # The values are upper bounds that are guaranteed to fit the new image file.
505 # Subsequent modification, such as internal snapshot or bitmap creation, may
506 # require additional space and is not covered here.
508 # @required: Size required for a new image file, in bytes.
510 # @fully-allocated: Image file size, in bytes, once data has been written
511 #                   to all sectors.
513 # Since: 2.10
515 { 'struct': 'BlockMeasureInfo',
516   'data': {'required': 'int', 'fully-allocated': 'int'} }
519 # @query-block:
521 # Get a list of BlockInfo for all virtual block devices.
523 # Returns: a list of @BlockInfo describing each virtual block device. Filter
524 # nodes that were created implicitly are skipped over.
526 # Since: 0.14.0
528 # Example:
530 # -> { "execute": "query-block" }
531 # <- {
532 #       "return":[
533 #          {
534 #             "io-status": "ok",
535 #             "device":"ide0-hd0",
536 #             "locked":false,
537 #             "removable":false,
538 #             "inserted":{
539 #                "ro":false,
540 #                "drv":"qcow2",
541 #                "encrypted":false,
542 #                "file":"disks/test.qcow2",
543 #                "backing_file_depth":1,
544 #                "bps":1000000,
545 #                "bps_rd":0,
546 #                "bps_wr":0,
547 #                "iops":1000000,
548 #                "iops_rd":0,
549 #                "iops_wr":0,
550 #                "bps_max": 8000000,
551 #                "bps_rd_max": 0,
552 #                "bps_wr_max": 0,
553 #                "iops_max": 0,
554 #                "iops_rd_max": 0,
555 #                "iops_wr_max": 0,
556 #                "iops_size": 0,
557 #                "detect_zeroes": "on",
558 #                "write_threshold": 0,
559 #                "image":{
560 #                   "filename":"disks/test.qcow2",
561 #                   "format":"qcow2",
562 #                   "virtual-size":2048000,
563 #                   "backing_file":"base.qcow2",
564 #                   "full-backing-filename":"disks/base.qcow2",
565 #                   "backing-filename-format":"qcow2",
566 #                   "snapshots":[
567 #                      {
568 #                         "id": "1",
569 #                         "name": "snapshot1",
570 #                         "vm-state-size": 0,
571 #                         "date-sec": 10000200,
572 #                         "date-nsec": 12,
573 #                         "vm-clock-sec": 206,
574 #                         "vm-clock-nsec": 30
575 #                      }
576 #                   ],
577 #                   "backing-image":{
578 #                       "filename":"disks/base.qcow2",
579 #                       "format":"qcow2",
580 #                       "virtual-size":2048000
581 #                   }
582 #                }
583 #             },
584 #             "qdev": "ide_disk",
585 #             "type":"unknown"
586 #          },
587 #          {
588 #             "io-status": "ok",
589 #             "device":"ide1-cd0",
590 #             "locked":false,
591 #             "removable":true,
592 #             "qdev": "/machine/unattached/device[23]",
593 #             "tray_open": false,
594 #             "type":"unknown"
595 #          },
596 #          {
597 #             "device":"floppy0",
598 #             "locked":false,
599 #             "removable":true,
600 #             "qdev": "/machine/unattached/device[20]",
601 #             "type":"unknown"
602 #          },
603 #          {
604 #             "device":"sd0",
605 #             "locked":false,
606 #             "removable":true,
607 #             "type":"unknown"
608 #          }
609 #       ]
610 #    }
613 { 'command': 'query-block', 'returns': ['BlockInfo'] }
617 # @BlockDeviceTimedStats:
619 # Statistics of a block device during a given interval of time.
621 # @interval_length: Interval used for calculating the statistics,
622 #                   in seconds.
624 # @min_rd_latency_ns: Minimum latency of read operations in the
625 #                     defined interval, in nanoseconds.
627 # @min_wr_latency_ns: Minimum latency of write operations in the
628 #                     defined interval, in nanoseconds.
630 # @min_flush_latency_ns: Minimum latency of flush operations in the
631 #                        defined interval, in nanoseconds.
633 # @max_rd_latency_ns: Maximum latency of read operations in the
634 #                     defined interval, in nanoseconds.
636 # @max_wr_latency_ns: Maximum latency of write operations in the
637 #                     defined interval, in nanoseconds.
639 # @max_flush_latency_ns: Maximum latency of flush operations in the
640 #                        defined interval, in nanoseconds.
642 # @avg_rd_latency_ns: Average latency of read operations in the
643 #                     defined interval, in nanoseconds.
645 # @avg_wr_latency_ns: Average latency of write operations in the
646 #                     defined interval, in nanoseconds.
648 # @avg_flush_latency_ns: Average latency of flush operations in the
649 #                        defined interval, in nanoseconds.
651 # @avg_rd_queue_depth: Average number of pending read operations
652 #                      in the defined interval.
654 # @avg_wr_queue_depth: Average number of pending write operations
655 #                      in the defined interval.
657 # Since: 2.5
659 { 'struct': 'BlockDeviceTimedStats',
660   'data': { 'interval_length': 'int', 'min_rd_latency_ns': 'int',
661             'max_rd_latency_ns': 'int', 'avg_rd_latency_ns': 'int',
662             'min_wr_latency_ns': 'int', 'max_wr_latency_ns': 'int',
663             'avg_wr_latency_ns': 'int', 'min_flush_latency_ns': 'int',
664             'max_flush_latency_ns': 'int', 'avg_flush_latency_ns': 'int',
665             'avg_rd_queue_depth': 'number', 'avg_wr_queue_depth': 'number' } }
668 # @BlockDeviceStats:
670 # Statistics of a virtual block device or a block backing device.
672 # @rd_bytes:      The number of bytes read by the device.
674 # @wr_bytes:      The number of bytes written by the device.
676 # @rd_operations: The number of read operations performed by the device.
678 # @wr_operations: The number of write operations performed by the device.
680 # @flush_operations: The number of cache flush operations performed by the
681 #                    device (since 0.15.0)
683 # @flush_total_time_ns: Total time spend on cache flushes in nano-seconds
684 #                       (since 0.15.0).
686 # @wr_total_time_ns: Total time spend on writes in nano-seconds (since 0.15.0).
688 # @rd_total_time_ns: Total_time_spend on reads in nano-seconds (since 0.15.0).
690 # @wr_highest_offset: The offset after the greatest byte written to the
691 #                     device.  The intended use of this information is for
692 #                     growable sparse files (like qcow2) that are used on top
693 #                     of a physical device.
695 # @rd_merged: Number of read requests that have been merged into another
696 #             request (Since 2.3).
698 # @wr_merged: Number of write requests that have been merged into another
699 #             request (Since 2.3).
701 # @idle_time_ns: Time since the last I/O operation, in
702 #                nanoseconds. If the field is absent it means that
703 #                there haven't been any operations yet (Since 2.5).
705 # @failed_rd_operations: The number of failed read operations
706 #                        performed by the device (Since 2.5)
708 # @failed_wr_operations: The number of failed write operations
709 #                        performed by the device (Since 2.5)
711 # @failed_flush_operations: The number of failed flush operations
712 #                           performed by the device (Since 2.5)
714 # @invalid_rd_operations: The number of invalid read operations
715 #                          performed by the device (Since 2.5)
717 # @invalid_wr_operations: The number of invalid write operations
718 #                         performed by the device (Since 2.5)
720 # @invalid_flush_operations: The number of invalid flush operations
721 #                            performed by the device (Since 2.5)
723 # @account_invalid: Whether invalid operations are included in the
724 #                   last access statistics (Since 2.5)
726 # @account_failed: Whether failed operations are included in the
727 #                  latency and last access statistics (Since 2.5)
729 # @timed_stats: Statistics specific to the set of previously defined
730 #               intervals of time (Since 2.5)
732 # Since: 0.14.0
734 { 'struct': 'BlockDeviceStats',
735   'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'rd_operations': 'int',
736            'wr_operations': 'int', 'flush_operations': 'int',
737            'flush_total_time_ns': 'int', 'wr_total_time_ns': 'int',
738            'rd_total_time_ns': 'int', 'wr_highest_offset': 'int',
739            'rd_merged': 'int', 'wr_merged': 'int', '*idle_time_ns': 'int',
740            'failed_rd_operations': 'int', 'failed_wr_operations': 'int',
741            'failed_flush_operations': 'int', 'invalid_rd_operations': 'int',
742            'invalid_wr_operations': 'int', 'invalid_flush_operations': 'int',
743            'account_invalid': 'bool', 'account_failed': 'bool',
744            'timed_stats': ['BlockDeviceTimedStats'] } }
747 # @BlockStats:
749 # Statistics of a virtual block device or a block backing device.
751 # @device: If the stats are for a virtual block device, the name
752 #          corresponding to the virtual block device.
754 # @node-name: The node name of the device. (Since 2.3)
756 # @stats:  A @BlockDeviceStats for the device.
758 # @parent: This describes the file block device if it has one.
759 #          Contains recursively the statistics of the underlying
760 #          protocol (e.g. the host file for a qcow2 image). If there is
761 #          no underlying protocol, this field is omitted
763 # @backing: This describes the backing block device if it has one.
764 #           (Since 2.0)
766 # Since: 0.14.0
768 { 'struct': 'BlockStats',
769   'data': {'*device': 'str', '*node-name': 'str',
770            'stats': 'BlockDeviceStats',
771            '*parent': 'BlockStats',
772            '*backing': 'BlockStats'} }
775 # @query-blockstats:
777 # Query the @BlockStats for all virtual block devices.
779 # @query-nodes: If true, the command will query all the block nodes
780 #               that have a node name, in a list which will include "parent"
781 #               information, but not "backing".
782 #               If false or omitted, the behavior is as before - query all the
783 #               device backends, recursively including their "parent" and
784 #               "backing". Filter nodes that were created implicitly are
785 #               skipped over in this mode. (Since 2.3)
787 # Returns: A list of @BlockStats for each virtual block devices.
789 # Since: 0.14.0
791 # Example:
793 # -> { "execute": "query-blockstats" }
794 # <- {
795 #       "return":[
796 #          {
797 #             "device":"ide0-hd0",
798 #             "parent":{
799 #                "stats":{
800 #                   "wr_highest_offset":3686448128,
801 #                   "wr_bytes":9786368,
802 #                   "wr_operations":751,
803 #                   "rd_bytes":122567168,
804 #                   "rd_operations":36772
805 #                   "wr_total_times_ns":313253456
806 #                   "rd_total_times_ns":3465673657
807 #                   "flush_total_times_ns":49653
808 #                   "flush_operations":61,
809 #                   "rd_merged":0,
810 #                   "wr_merged":0,
811 #                   "idle_time_ns":2953431879,
812 #                   "account_invalid":true,
813 #                   "account_failed":false
814 #                }
815 #             },
816 #             "stats":{
817 #                "wr_highest_offset":2821110784,
818 #                "wr_bytes":9786368,
819 #                "wr_operations":692,
820 #                "rd_bytes":122739200,
821 #                "rd_operations":36604
822 #                "flush_operations":51,
823 #                "wr_total_times_ns":313253456
824 #                "rd_total_times_ns":3465673657
825 #                "flush_total_times_ns":49653,
826 #                "rd_merged":0,
827 #                "wr_merged":0,
828 #                "idle_time_ns":2953431879,
829 #                "account_invalid":true,
830 #                "account_failed":false
831 #             }
832 #          },
833 #          {
834 #             "device":"ide1-cd0",
835 #             "stats":{
836 #                "wr_highest_offset":0,
837 #                "wr_bytes":0,
838 #                "wr_operations":0,
839 #                "rd_bytes":0,
840 #                "rd_operations":0
841 #                "flush_operations":0,
842 #                "wr_total_times_ns":0
843 #                "rd_total_times_ns":0
844 #                "flush_total_times_ns":0,
845 #                "rd_merged":0,
846 #                "wr_merged":0,
847 #                "account_invalid":false,
848 #                "account_failed":false
849 #             }
850 #          },
851 #          {
852 #             "device":"floppy0",
853 #             "stats":{
854 #                "wr_highest_offset":0,
855 #                "wr_bytes":0,
856 #                "wr_operations":0,
857 #                "rd_bytes":0,
858 #                "rd_operations":0
859 #                "flush_operations":0,
860 #                "wr_total_times_ns":0
861 #                "rd_total_times_ns":0
862 #                "flush_total_times_ns":0,
863 #                "rd_merged":0,
864 #                "wr_merged":0,
865 #                "account_invalid":false,
866 #                "account_failed":false
867 #             }
868 #          },
869 #          {
870 #             "device":"sd0",
871 #             "stats":{
872 #                "wr_highest_offset":0,
873 #                "wr_bytes":0,
874 #                "wr_operations":0,
875 #                "rd_bytes":0,
876 #                "rd_operations":0
877 #                "flush_operations":0,
878 #                "wr_total_times_ns":0
879 #                "rd_total_times_ns":0
880 #                "flush_total_times_ns":0,
881 #                "rd_merged":0,
882 #                "wr_merged":0,
883 #                "account_invalid":false,
884 #                "account_failed":false
885 #             }
886 #          }
887 #       ]
888 #    }
891 { 'command': 'query-blockstats',
892   'data': { '*query-nodes': 'bool' },
893   'returns': ['BlockStats'] }
896 # @BlockdevOnError:
898 # An enumeration of possible behaviors for errors on I/O operations.
899 # The exact meaning depends on whether the I/O was initiated by a guest
900 # or by a block job
902 # @report: for guest operations, report the error to the guest;
903 #          for jobs, cancel the job
905 # @ignore: ignore the error, only report a QMP event (BLOCK_IO_ERROR
906 #          or BLOCK_JOB_ERROR)
908 # @enospc: same as @stop on ENOSPC, same as @report otherwise.
910 # @stop: for guest operations, stop the virtual machine;
911 #        for jobs, pause the job
913 # @auto: inherit the error handling policy of the backend (since: 2.7)
915 # Since: 1.3
917 { 'enum': 'BlockdevOnError',
918   'data': ['report', 'ignore', 'enospc', 'stop', 'auto'] }
921 # @MirrorSyncMode:
923 # An enumeration of possible behaviors for the initial synchronization
924 # phase of storage mirroring.
926 # @top: copies data in the topmost image to the destination
928 # @full: copies data from all images to the destination
930 # @none: only copy data written from now on
932 # @incremental: only copy data described by the dirty bitmap. Since: 2.4
934 # Since: 1.3
936 { 'enum': 'MirrorSyncMode',
937   'data': ['top', 'full', 'none', 'incremental'] }
940 # @BlockJobType:
942 # Type of a block job.
944 # @commit: block commit job type, see "block-commit"
946 # @stream: block stream job type, see "block-stream"
948 # @mirror: drive mirror job type, see "drive-mirror"
950 # @backup: drive backup job type, see "drive-backup"
952 # Since: 1.7
954 { 'enum': 'BlockJobType',
955   'data': ['commit', 'stream', 'mirror', 'backup'] }
958 # @BlockJobInfo:
960 # Information about a long-running block device operation.
962 # @type: the job type ('stream' for image streaming)
964 # @device: The job identifier. Originally the device name but other
965 #          values are allowed since QEMU 2.7
967 # @len: the maximum progress value
969 # @busy: false if the job is known to be in a quiescent state, with
970 #        no pending I/O.  Since 1.3.
972 # @paused: whether the job is paused or, if @busy is true, will
973 #          pause itself as soon as possible.  Since 1.3.
975 # @offset: the current progress value
977 # @speed: the rate limit, bytes per second
979 # @io-status: the status of the job (since 1.3)
981 # @ready: true if the job may be completed (since 2.2)
983 # Since: 1.1
985 { 'struct': 'BlockJobInfo',
986   'data': {'type': 'str', 'device': 'str', 'len': 'int',
987            'offset': 'int', 'busy': 'bool', 'paused': 'bool', 'speed': 'int',
988            'io-status': 'BlockDeviceIoStatus', 'ready': 'bool'} }
991 # @query-block-jobs:
993 # Return information about long-running block device operations.
995 # Returns: a list of @BlockJobInfo for each active block job
997 # Since: 1.1
999 { 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }
1002 # @block_passwd:
1004 # This command sets the password of a block device that has not been open
1005 # with a password and requires one.
1007 # This command is now obsolete and will always return an error since 2.10
1010 { 'command': 'block_passwd', 'data': {'*device': 'str',
1011                                       '*node-name': 'str', 'password': 'str'} }
1014 # @block_resize:
1016 # Resize a block image while a guest is running.
1018 # Either @device or @node-name must be set but not both.
1020 # @device: the name of the device to get the image resized
1022 # @node-name: graph node name to get the image resized (Since 2.0)
1024 # @size:  new image size in bytes
1026 # Returns: nothing on success
1027 #          If @device is not a valid block device, DeviceNotFound
1029 # Since: 0.14.0
1031 # Example:
1033 # -> { "execute": "block_resize",
1034 #      "arguments": { "device": "scratch", "size": 1073741824 } }
1035 # <- { "return": {} }
1038 { 'command': 'block_resize', 'data': { '*device': 'str',
1039                                        '*node-name': 'str',
1040                                        'size': 'int' }}
1043 # @NewImageMode:
1045 # An enumeration that tells QEMU how to set the backing file path in
1046 # a new image file.
1048 # @existing: QEMU should look for an existing image file.
1050 # @absolute-paths: QEMU should create a new image with absolute paths
1051 # for the backing file. If there is no backing file available, the new
1052 # image will not be backed either.
1054 # Since: 1.1
1056 { 'enum': 'NewImageMode',
1057   'data': [ 'existing', 'absolute-paths' ] }
1060 # @BlockdevSnapshotSync:
1062 # Either @device or @node-name must be set but not both.
1064 # @device: the name of the device to generate the snapshot from.
1066 # @node-name: graph node name to generate the snapshot from (Since 2.0)
1068 # @snapshot-file: the target of the new image. If the file exists, or
1069 # if it is a device, the snapshot will be created in the existing
1070 # file/device. Otherwise, a new file will be created.
1072 # @snapshot-node-name: the graph node name of the new image (Since 2.0)
1074 # @format: the format of the snapshot image, default is 'qcow2'.
1076 # @mode: whether and how QEMU should create a new image, default is
1077 #        'absolute-paths'.
1079 { 'struct': 'BlockdevSnapshotSync',
1080   'data': { '*device': 'str', '*node-name': 'str',
1081             'snapshot-file': 'str', '*snapshot-node-name': 'str',
1082             '*format': 'str', '*mode': 'NewImageMode' } }
1085 # @BlockdevSnapshot:
1087 # @node: device or node name that will have a snapshot created.
1089 # @overlay: reference to the existing block device that will become
1090 #           the overlay of @node, as part of creating the snapshot.
1091 #           It must not have a current backing file (this can be
1092 #           achieved by passing "backing": "" to blockdev-add).
1094 # Since: 2.5
1096 { 'struct': 'BlockdevSnapshot',
1097   'data': { 'node': 'str', 'overlay': 'str' } }
1100 # @DriveBackup:
1102 # @job-id: identifier for the newly-created block job. If
1103 #          omitted, the device name will be used. (Since 2.7)
1105 # @device: the device name or node-name of a root node which should be copied.
1107 # @target: the target of the new image. If the file exists, or if it
1108 #          is a device, the existing file/device will be used as the new
1109 #          destination.  If it does not exist, a new file will be created.
1111 # @format: the format of the new destination, default is to
1112 #          probe if @mode is 'existing', else the format of the source
1114 # @sync: what parts of the disk image should be copied to the destination
1115 #        (all the disk, only the sectors allocated in the topmost image, from a
1116 #        dirty bitmap, or only new I/O).
1118 # @mode: whether and how QEMU should create a new image, default is
1119 #        'absolute-paths'.
1121 # @speed: the maximum speed, in bytes per second
1123 # @bitmap: the name of dirty bitmap if sync is "incremental".
1124 #          Must be present if sync is "incremental", must NOT be present
1125 #          otherwise. (Since 2.4)
1127 # @compress: true to compress data, if the target format supports it.
1128 #            (default: false) (since 2.8)
1130 # @on-source-error: the action to take on an error on the source,
1131 #                   default 'report'.  'stop' and 'enospc' can only be used
1132 #                   if the block device supports io-status (see BlockInfo).
1134 # @on-target-error: the action to take on an error on the target,
1135 #                   default 'report' (no limitations, since this applies to
1136 #                   a different block device than @device).
1138 # Note: @on-source-error and @on-target-error only affect background
1139 # I/O.  If an error occurs during a guest write request, the device's
1140 # rerror/werror actions will be used.
1142 # Since: 1.6
1144 { 'struct': 'DriveBackup',
1145   'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1146             '*format': 'str', 'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
1147             '*speed': 'int', '*bitmap': 'str', '*compress': 'bool',
1148             '*on-source-error': 'BlockdevOnError',
1149             '*on-target-error': 'BlockdevOnError' } }
1152 # @BlockdevBackup:
1154 # @job-id: identifier for the newly-created block job. If
1155 #          omitted, the device name will be used. (Since 2.7)
1157 # @device: the device name or node-name of a root node which should be copied.
1159 # @target: the device name or node-name of the backup target node.
1161 # @sync: what parts of the disk image should be copied to the destination
1162 #        (all the disk, only the sectors allocated in the topmost image, or
1163 #        only new I/O).
1165 # @speed: the maximum speed, in bytes per second. The default is 0,
1166 #         for unlimited.
1168 # @compress: true to compress data, if the target format supports it.
1169 #            (default: false) (since 2.8)
1171 # @on-source-error: the action to take on an error on the source,
1172 #                   default 'report'.  'stop' and 'enospc' can only be used
1173 #                   if the block device supports io-status (see BlockInfo).
1175 # @on-target-error: the action to take on an error on the target,
1176 #                   default 'report' (no limitations, since this applies to
1177 #                   a different block device than @device).
1179 # Note: @on-source-error and @on-target-error only affect background
1180 # I/O.  If an error occurs during a guest write request, the device's
1181 # rerror/werror actions will be used.
1183 # Since: 2.3
1185 { 'struct': 'BlockdevBackup',
1186   'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1187             'sync': 'MirrorSyncMode',
1188             '*speed': 'int',
1189             '*compress': 'bool',
1190             '*on-source-error': 'BlockdevOnError',
1191             '*on-target-error': 'BlockdevOnError' } }
1194 # @blockdev-snapshot-sync:
1196 # Generates a synchronous snapshot of a block device.
1198 # For the arguments, see the documentation of BlockdevSnapshotSync.
1200 # Returns: nothing on success
1201 #          If @device is not a valid block device, DeviceNotFound
1203 # Since: 0.14.0
1205 # Example:
1207 # -> { "execute": "blockdev-snapshot-sync",
1208 #      "arguments": { "device": "ide-hd0",
1209 #                     "snapshot-file":
1210 #                     "/some/place/my-image",
1211 #                     "format": "qcow2" } }
1212 # <- { "return": {} }
1215 { 'command': 'blockdev-snapshot-sync',
1216   'data': 'BlockdevSnapshotSync' }
1220 # @blockdev-snapshot:
1222 # Generates a snapshot of a block device.
1224 # Create a snapshot, by installing 'node' as the backing image of
1225 # 'overlay'. Additionally, if 'node' is associated with a block
1226 # device, the block device changes to using 'overlay' as its new active
1227 # image.
1229 # For the arguments, see the documentation of BlockdevSnapshot.
1231 # Since: 2.5
1233 # Example:
1235 # -> { "execute": "blockdev-add",
1236 #      "arguments": { "driver": "qcow2",
1237 #                     "node-name": "node1534",
1238 #                     "file": { "driver": "file",
1239 #                               "filename": "hd1.qcow2" },
1240 #                     "backing": "" } }
1242 # <- { "return": {} }
1244 # -> { "execute": "blockdev-snapshot",
1245 #      "arguments": { "node": "ide-hd0",
1246 #                     "overlay": "node1534" } }
1247 # <- { "return": {} }
1250 { 'command': 'blockdev-snapshot',
1251   'data': 'BlockdevSnapshot' }
1254 # @change-backing-file:
1256 # Change the backing file in the image file metadata.  This does not
1257 # cause QEMU to reopen the image file to reparse the backing filename
1258 # (it may, however, perform a reopen to change permissions from
1259 # r/o -> r/w -> r/o, if needed). The new backing file string is written
1260 # into the image file metadata, and the QEMU internal strings are
1261 # updated.
1263 # @image-node-name: The name of the block driver state node of the
1264 #                   image to modify. The "device" argument is used
1265 #                   to verify "image-node-name" is in the chain
1266 #                   described by "device".
1268 # @device:          The device name or node-name of the root node that owns
1269 #                   image-node-name.
1271 # @backing-file:    The string to write as the backing file.  This
1272 #                   string is not validated, so care should be taken
1273 #                   when specifying the string or the image chain may
1274 #                   not be able to be reopened again.
1276 # Returns: Nothing on success
1278 #          If "device" does not exist or cannot be determined, DeviceNotFound
1280 # Since: 2.1
1282 { 'command': 'change-backing-file',
1283   'data': { 'device': 'str', 'image-node-name': 'str',
1284             'backing-file': 'str' } }
1287 # @block-commit:
1289 # Live commit of data from overlay image nodes into backing nodes - i.e.,
1290 # writes data between 'top' and 'base' into 'base'.
1292 # @job-id: identifier for the newly-created block job. If
1293 #          omitted, the device name will be used. (Since 2.7)
1295 # @device:  the device name or node-name of a root node
1297 # @base:   The file name of the backing image to write data into.
1298 #                    If not specified, this is the deepest backing image.
1300 # @top:    The file name of the backing image within the image chain,
1301 #                    which contains the topmost data to be committed down. If
1302 #                    not specified, this is the active layer.
1304 # @backing-file:  The backing file string to write into the overlay
1305 #                           image of 'top'.  If 'top' is the active layer,
1306 #                           specifying a backing file string is an error. This
1307 #                           filename is not validated.
1309 #                           If a pathname string is such that it cannot be
1310 #                           resolved by QEMU, that means that subsequent QMP or
1311 #                           HMP commands must use node-names for the image in
1312 #                           question, as filename lookup methods will fail.
1314 #                           If not specified, QEMU will automatically determine
1315 #                           the backing file string to use, or error out if
1316 #                           there is no obvious choice. Care should be taken
1317 #                           when specifying the string, to specify a valid
1318 #                           filename or protocol.
1319 #                           (Since 2.1)
1321 #                    If top == base, that is an error.
1322 #                    If top == active, the job will not be completed by itself,
1323 #                    user needs to complete the job with the block-job-complete
1324 #                    command after getting the ready event. (Since 2.0)
1326 #                    If the base image is smaller than top, then the base image
1327 #                    will be resized to be the same size as top.  If top is
1328 #                    smaller than the base image, the base will not be
1329 #                    truncated.  If you want the base image size to match the
1330 #                    size of the smaller top, you can safely truncate it
1331 #                    yourself once the commit operation successfully completes.
1333 # @speed:  the maximum speed, in bytes per second
1335 # @filter-node-name: the node name that should be assigned to the
1336 #                    filter driver that the commit job inserts into the graph
1337 #                    above @top. If this option is not given, a node name is
1338 #                    autogenerated. (Since: 2.9)
1340 # Returns: Nothing on success
1341 #          If commit or stream is already active on this device, DeviceInUse
1342 #          If @device does not exist, DeviceNotFound
1343 #          If image commit is not supported by this device, NotSupported
1344 #          If @base or @top is invalid, a generic error is returned
1345 #          If @speed is invalid, InvalidParameter
1347 # Since: 1.3
1349 # Example:
1351 # -> { "execute": "block-commit",
1352 #      "arguments": { "device": "virtio0",
1353 #                     "top": "/tmp/snap1.qcow2" } }
1354 # <- { "return": {} }
1357 { 'command': 'block-commit',
1358   'data': { '*job-id': 'str', 'device': 'str', '*base': 'str', '*top': 'str',
1359             '*backing-file': 'str', '*speed': 'int',
1360             '*filter-node-name': 'str' } }
1363 # @drive-backup:
1365 # Start a point-in-time copy of a block device to a new destination.  The
1366 # status of ongoing drive-backup operations can be checked with
1367 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1368 # The operation can be stopped before it has completed using the
1369 # block-job-cancel command.
1371 # Returns: nothing on success
1372 #          If @device is not a valid block device, GenericError
1374 # Since: 1.6
1376 # Example:
1378 # -> { "execute": "drive-backup",
1379 #      "arguments": { "device": "drive0",
1380 #                     "sync": "full",
1381 #                     "target": "backup.img" } }
1382 # <- { "return": {} }
1385 { 'command': 'drive-backup', 'boxed': true,
1386   'data': 'DriveBackup' }
1389 # @blockdev-backup:
1391 # Start a point-in-time copy of a block device to a new destination.  The
1392 # status of ongoing blockdev-backup operations can be checked with
1393 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1394 # The operation can be stopped before it has completed using the
1395 # block-job-cancel command.
1397 # Returns: nothing on success
1398 #          If @device is not a valid block device, DeviceNotFound
1400 # Since: 2.3
1402 # Example:
1403 # -> { "execute": "blockdev-backup",
1404 #      "arguments": { "device": "src-id",
1405 #                     "sync": "full",
1406 #                     "target": "tgt-id" } }
1407 # <- { "return": {} }
1410 { 'command': 'blockdev-backup', 'boxed': true,
1411   'data': 'BlockdevBackup' }
1415 # @query-named-block-nodes:
1417 # Get the named block driver list
1419 # Returns: the list of BlockDeviceInfo
1421 # Since: 2.0
1423 # Example:
1425 # -> { "execute": "query-named-block-nodes" }
1426 # <- { "return": [ { "ro":false,
1427 #                    "drv":"qcow2",
1428 #                    "encrypted":false,
1429 #                    "file":"disks/test.qcow2",
1430 #                    "node-name": "my-node",
1431 #                    "backing_file_depth":1,
1432 #                    "bps":1000000,
1433 #                    "bps_rd":0,
1434 #                    "bps_wr":0,
1435 #                    "iops":1000000,
1436 #                    "iops_rd":0,
1437 #                    "iops_wr":0,
1438 #                    "bps_max": 8000000,
1439 #                    "bps_rd_max": 0,
1440 #                    "bps_wr_max": 0,
1441 #                    "iops_max": 0,
1442 #                    "iops_rd_max": 0,
1443 #                    "iops_wr_max": 0,
1444 #                    "iops_size": 0,
1445 #                    "write_threshold": 0,
1446 #                    "image":{
1447 #                       "filename":"disks/test.qcow2",
1448 #                       "format":"qcow2",
1449 #                       "virtual-size":2048000,
1450 #                       "backing_file":"base.qcow2",
1451 #                       "full-backing-filename":"disks/base.qcow2",
1452 #                       "backing-filename-format":"qcow2",
1453 #                       "snapshots":[
1454 #                          {
1455 #                             "id": "1",
1456 #                             "name": "snapshot1",
1457 #                             "vm-state-size": 0,
1458 #                             "date-sec": 10000200,
1459 #                             "date-nsec": 12,
1460 #                             "vm-clock-sec": 206,
1461 #                             "vm-clock-nsec": 30
1462 #                          }
1463 #                       ],
1464 #                       "backing-image":{
1465 #                           "filename":"disks/base.qcow2",
1466 #                           "format":"qcow2",
1467 #                           "virtual-size":2048000
1468 #                       }
1469 #                    } } ] }
1472 { 'command': 'query-named-block-nodes', 'returns': [ 'BlockDeviceInfo' ] }
1475 # @drive-mirror:
1477 # Start mirroring a block device's writes to a new destination. target
1478 # specifies the target of the new image. If the file exists, or if it
1479 # is a device, it will be used as the new destination for writes. If
1480 # it does not exist, a new file will be created. format specifies the
1481 # format of the mirror image, default is to probe if mode='existing',
1482 # else the format of the source.
1484 # Returns: nothing on success
1485 #          If @device is not a valid block device, GenericError
1487 # Since: 1.3
1489 # Example:
1491 # -> { "execute": "drive-mirror",
1492 #      "arguments": { "device": "ide-hd0",
1493 #                     "target": "/some/place/my-image",
1494 #                     "sync": "full",
1495 #                     "format": "qcow2" } }
1496 # <- { "return": {} }
1499 { 'command': 'drive-mirror', 'boxed': true,
1500   'data': 'DriveMirror' }
1503 # @DriveMirror:
1505 # A set of parameters describing drive mirror setup.
1507 # @job-id: identifier for the newly-created block job. If
1508 #          omitted, the device name will be used. (Since 2.7)
1510 # @device:  the device name or node-name of a root node whose writes should be
1511 #           mirrored.
1513 # @target: the target of the new image. If the file exists, or if it
1514 #          is a device, the existing file/device will be used as the new
1515 #          destination.  If it does not exist, a new file will be created.
1517 # @format: the format of the new destination, default is to
1518 #          probe if @mode is 'existing', else the format of the source
1520 # @node-name: the new block driver state node name in the graph
1521 #             (Since 2.1)
1523 # @replaces: with sync=full graph node name to be replaced by the new
1524 #            image when a whole image copy is done. This can be used to repair
1525 #            broken Quorum files. (Since 2.1)
1527 # @mode: whether and how QEMU should create a new image, default is
1528 #        'absolute-paths'.
1530 # @speed:  the maximum speed, in bytes per second
1532 # @sync: what parts of the disk image should be copied to the destination
1533 #        (all the disk, only the sectors allocated in the topmost image, or
1534 #        only new I/O).
1536 # @granularity: granularity of the dirty bitmap, default is 64K
1537 #               if the image format doesn't have clusters, 4K if the clusters
1538 #               are smaller than that, else the cluster size.  Must be a
1539 #               power of 2 between 512 and 64M (since 1.4).
1541 # @buf-size: maximum amount of data in flight from source to
1542 #            target (since 1.4).
1544 # @on-source-error: the action to take on an error on the source,
1545 #                   default 'report'.  'stop' and 'enospc' can only be used
1546 #                   if the block device supports io-status (see BlockInfo).
1548 # @on-target-error: the action to take on an error on the target,
1549 #                   default 'report' (no limitations, since this applies to
1550 #                   a different block device than @device).
1551 # @unmap: Whether to try to unmap target sectors where source has
1552 #         only zero. If true, and target unallocated sectors will read as zero,
1553 #         target image sectors will be unmapped; otherwise, zeroes will be
1554 #         written. Both will result in identical contents.
1555 #         Default is true. (Since 2.4)
1557 # Since: 1.3
1559 { 'struct': 'DriveMirror',
1560   'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1561             '*format': 'str', '*node-name': 'str', '*replaces': 'str',
1562             'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
1563             '*speed': 'int', '*granularity': 'uint32',
1564             '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1565             '*on-target-error': 'BlockdevOnError',
1566             '*unmap': 'bool' } }
1569 # @BlockDirtyBitmap:
1571 # @node: name of device/node which the bitmap is tracking
1573 # @name: name of the dirty bitmap
1575 # Since: 2.4
1577 { 'struct': 'BlockDirtyBitmap',
1578   'data': { 'node': 'str', 'name': 'str' } }
1581 # @BlockDirtyBitmapAdd:
1583 # @node: name of device/node which the bitmap is tracking
1585 # @name: name of the dirty bitmap
1587 # @granularity: the bitmap granularity, default is 64k for
1588 #               block-dirty-bitmap-add
1590 # @persistent: the bitmap is persistent, i.e. it will be saved to the
1591 #              corresponding block device image file on its close. For now only
1592 #              Qcow2 disks support persistent bitmaps. Default is false for
1593 #              block-dirty-bitmap-add. (Since: 2.10)
1595 # @autoload: the bitmap will be automatically loaded when the image it is stored
1596 #            in is opened. This flag may only be specified for persistent
1597 #            bitmaps. Default is false for block-dirty-bitmap-add. (Since: 2.10)
1599 # Since: 2.4
1601 { 'struct': 'BlockDirtyBitmapAdd',
1602   'data': { 'node': 'str', 'name': 'str', '*granularity': 'uint32',
1603             '*persistent': 'bool', '*autoload': 'bool' } }
1606 # @block-dirty-bitmap-add:
1608 # Create a dirty bitmap with a name on the node, and start tracking the writes.
1610 # Returns: nothing on success
1611 #          If @node is not a valid block device or node, DeviceNotFound
1612 #          If @name is already taken, GenericError with an explanation
1614 # Since: 2.4
1616 # Example:
1618 # -> { "execute": "block-dirty-bitmap-add",
1619 #      "arguments": { "node": "drive0", "name": "bitmap0" } }
1620 # <- { "return": {} }
1623 { 'command': 'block-dirty-bitmap-add',
1624   'data': 'BlockDirtyBitmapAdd' }
1627 # @block-dirty-bitmap-remove:
1629 # Stop write tracking and remove the dirty bitmap that was created
1630 # with block-dirty-bitmap-add. If the bitmap is persistent, remove it from its
1631 # storage too.
1633 # Returns: nothing on success
1634 #          If @node is not a valid block device or node, DeviceNotFound
1635 #          If @name is not found, GenericError with an explanation
1636 #          if @name is frozen by an operation, GenericError
1638 # Since: 2.4
1640 # Example:
1642 # -> { "execute": "block-dirty-bitmap-remove",
1643 #      "arguments": { "node": "drive0", "name": "bitmap0" } }
1644 # <- { "return": {} }
1647 { 'command': 'block-dirty-bitmap-remove',
1648   'data': 'BlockDirtyBitmap' }
1651 # @block-dirty-bitmap-clear:
1653 # Clear (reset) a dirty bitmap on the device, so that an incremental
1654 # backup from this point in time forward will only backup clusters
1655 # modified after this clear operation.
1657 # Returns: nothing on success
1658 #          If @node is not a valid block device, DeviceNotFound
1659 #          If @name is not found, GenericError with an explanation
1661 # Since: 2.4
1663 # Example:
1665 # -> { "execute": "block-dirty-bitmap-clear",
1666 #      "arguments": { "node": "drive0", "name": "bitmap0" } }
1667 # <- { "return": {} }
1670 { 'command': 'block-dirty-bitmap-clear',
1671   'data': 'BlockDirtyBitmap' }
1674 # @BlockDirtyBitmapSha256:
1676 # SHA256 hash of dirty bitmap data
1678 # @sha256: ASCII representation of SHA256 bitmap hash
1680 # Since: 2.10
1682   { 'struct': 'BlockDirtyBitmapSha256',
1683     'data': {'sha256': 'str'} }
1686 # @x-debug-block-dirty-bitmap-sha256:
1688 # Get bitmap SHA256
1690 # Returns: BlockDirtyBitmapSha256 on success
1691 #          If @node is not a valid block device, DeviceNotFound
1692 #          If @name is not found or if hashing has failed, GenericError with an
1693 #          explanation
1695 # Since: 2.10
1697   { 'command': 'x-debug-block-dirty-bitmap-sha256',
1698     'data': 'BlockDirtyBitmap', 'returns': 'BlockDirtyBitmapSha256' }
1701 # @blockdev-mirror:
1703 # Start mirroring a block device's writes to a new destination.
1705 # @job-id: identifier for the newly-created block job. If
1706 #          omitted, the device name will be used. (Since 2.7)
1708 # @device: The device name or node-name of a root node whose writes should be
1709 #          mirrored.
1711 # @target: the id or node-name of the block device to mirror to. This mustn't be
1712 #          attached to guest.
1714 # @replaces: with sync=full graph node name to be replaced by the new
1715 #            image when a whole image copy is done. This can be used to repair
1716 #            broken Quorum files.
1718 # @speed:  the maximum speed, in bytes per second
1720 # @sync: what parts of the disk image should be copied to the destination
1721 #        (all the disk, only the sectors allocated in the topmost image, or
1722 #        only new I/O).
1724 # @granularity: granularity of the dirty bitmap, default is 64K
1725 #               if the image format doesn't have clusters, 4K if the clusters
1726 #               are smaller than that, else the cluster size.  Must be a
1727 #               power of 2 between 512 and 64M
1729 # @buf-size: maximum amount of data in flight from source to
1730 #            target
1732 # @on-source-error: the action to take on an error on the source,
1733 #                   default 'report'.  'stop' and 'enospc' can only be used
1734 #                   if the block device supports io-status (see BlockInfo).
1736 # @on-target-error: the action to take on an error on the target,
1737 #                   default 'report' (no limitations, since this applies to
1738 #                   a different block device than @device).
1740 # @filter-node-name: the node name that should be assigned to the
1741 #                    filter driver that the mirror job inserts into the graph
1742 #                    above @device. If this option is not given, a node name is
1743 #                    autogenerated. (Since: 2.9)
1745 # Returns: nothing on success.
1747 # Since: 2.6
1749 # Example:
1751 # -> { "execute": "blockdev-mirror",
1752 #      "arguments": { "device": "ide-hd0",
1753 #                     "target": "target0",
1754 #                     "sync": "full" } }
1755 # <- { "return": {} }
1758 { 'command': 'blockdev-mirror',
1759   'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1760             '*replaces': 'str',
1761             'sync': 'MirrorSyncMode',
1762             '*speed': 'int', '*granularity': 'uint32',
1763             '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1764             '*on-target-error': 'BlockdevOnError',
1765             '*filter-node-name': 'str' } }
1768 # @block_set_io_throttle:
1770 # Change I/O throttle limits for a block drive.
1772 # Since QEMU 2.4, each device with I/O limits is member of a throttle
1773 # group.
1775 # If two or more devices are members of the same group, the limits
1776 # will apply to the combined I/O of the whole group in a round-robin
1777 # fashion. Therefore, setting new I/O limits to a device will affect
1778 # the whole group.
1780 # The name of the group can be specified using the 'group' parameter.
1781 # If the parameter is unset, it is assumed to be the current group of
1782 # that device. If it's not in any group yet, the name of the device
1783 # will be used as the name for its group.
1785 # The 'group' parameter can also be used to move a device to a
1786 # different group. In this case the limits specified in the parameters
1787 # will be applied to the new group only.
1789 # I/O limits can be disabled by setting all of them to 0. In this case
1790 # the device will be removed from its group and the rest of its
1791 # members will not be affected. The 'group' parameter is ignored.
1793 # Returns: Nothing on success
1794 #          If @device is not a valid block device, DeviceNotFound
1796 # Since: 1.1
1798 # Example:
1800 # -> { "execute": "block_set_io_throttle",
1801 #      "arguments": { "id": "ide0-1-0",
1802 #                     "bps": 1000000,
1803 #                     "bps_rd": 0,
1804 #                     "bps_wr": 0,
1805 #                     "iops": 0,
1806 #                     "iops_rd": 0,
1807 #                     "iops_wr": 0,
1808 #                     "bps_max": 8000000,
1809 #                     "bps_rd_max": 0,
1810 #                     "bps_wr_max": 0,
1811 #                     "iops_max": 0,
1812 #                     "iops_rd_max": 0,
1813 #                     "iops_wr_max": 0,
1814 #                     "bps_max_length": 60,
1815 #                     "iops_size": 0 } }
1816 # <- { "return": {} }
1818 { 'command': 'block_set_io_throttle', 'boxed': true,
1819   'data': 'BlockIOThrottle' }
1822 # @BlockIOThrottle:
1824 # A set of parameters describing block throttling.
1826 # @device: Block device name (deprecated, use @id instead)
1828 # @id: The name or QOM path of the guest device (since: 2.8)
1830 # @bps: total throughput limit in bytes per second
1832 # @bps_rd: read throughput limit in bytes per second
1834 # @bps_wr: write throughput limit in bytes per second
1836 # @iops: total I/O operations per second
1838 # @iops_rd: read I/O operations per second
1840 # @iops_wr: write I/O operations per second
1842 # @bps_max: total throughput limit during bursts,
1843 #                     in bytes (Since 1.7)
1845 # @bps_rd_max: read throughput limit during bursts,
1846 #                        in bytes (Since 1.7)
1848 # @bps_wr_max: write throughput limit during bursts,
1849 #                        in bytes (Since 1.7)
1851 # @iops_max: total I/O operations per second during bursts,
1852 #                      in bytes (Since 1.7)
1854 # @iops_rd_max: read I/O operations per second during bursts,
1855 #                         in bytes (Since 1.7)
1857 # @iops_wr_max: write I/O operations per second during bursts,
1858 #                         in bytes (Since 1.7)
1860 # @bps_max_length: maximum length of the @bps_max burst
1861 #                            period, in seconds. It must only
1862 #                            be set if @bps_max is set as well.
1863 #                            Defaults to 1. (Since 2.6)
1865 # @bps_rd_max_length: maximum length of the @bps_rd_max
1866 #                               burst period, in seconds. It must only
1867 #                               be set if @bps_rd_max is set as well.
1868 #                               Defaults to 1. (Since 2.6)
1870 # @bps_wr_max_length: maximum length of the @bps_wr_max
1871 #                               burst period, in seconds. It must only
1872 #                               be set if @bps_wr_max is set as well.
1873 #                               Defaults to 1. (Since 2.6)
1875 # @iops_max_length: maximum length of the @iops burst
1876 #                             period, in seconds. It must only
1877 #                             be set if @iops_max is set as well.
1878 #                             Defaults to 1. (Since 2.6)
1880 # @iops_rd_max_length: maximum length of the @iops_rd_max
1881 #                                burst period, in seconds. It must only
1882 #                                be set if @iops_rd_max is set as well.
1883 #                                Defaults to 1. (Since 2.6)
1885 # @iops_wr_max_length: maximum length of the @iops_wr_max
1886 #                                burst period, in seconds. It must only
1887 #                                be set if @iops_wr_max is set as well.
1888 #                                Defaults to 1. (Since 2.6)
1890 # @iops_size: an I/O size in bytes (Since 1.7)
1892 # @group: throttle group name (Since 2.4)
1894 # Since: 1.1
1896 { 'struct': 'BlockIOThrottle',
1897   'data': { '*device': 'str', '*id': 'str', 'bps': 'int', 'bps_rd': 'int',
1898             'bps_wr': 'int', 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
1899             '*bps_max': 'int', '*bps_rd_max': 'int',
1900             '*bps_wr_max': 'int', '*iops_max': 'int',
1901             '*iops_rd_max': 'int', '*iops_wr_max': 'int',
1902             '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
1903             '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
1904             '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
1905             '*iops_size': 'int', '*group': 'str' } }
1908 # @block-stream:
1910 # Copy data from a backing file into a block device.
1912 # The block streaming operation is performed in the background until the entire
1913 # backing file has been copied.  This command returns immediately once streaming
1914 # has started.  The status of ongoing block streaming operations can be checked
1915 # with query-block-jobs.  The operation can be stopped before it has completed
1916 # using the block-job-cancel command.
1918 # The node that receives the data is called the top image, can be located in
1919 # any part of the chain (but always above the base image; see below) and can be
1920 # specified using its device or node name. Earlier qemu versions only allowed
1921 # 'device' to name the top level node; presence of the 'base-node' parameter
1922 # during introspection can be used as a witness of the enhanced semantics
1923 # of 'device'.
1925 # If a base file is specified then sectors are not copied from that base file and
1926 # its backing chain.  When streaming completes the image file will have the base
1927 # file as its backing file.  This can be used to stream a subset of the backing
1928 # file chain instead of flattening the entire image.
1930 # On successful completion the image file is updated to drop the backing file
1931 # and the BLOCK_JOB_COMPLETED event is emitted.
1933 # @job-id: identifier for the newly-created block job. If
1934 #          omitted, the device name will be used. (Since 2.7)
1936 # @device: the device or node name of the top image
1938 # @base:   the common backing file name.
1939 #                    It cannot be set if @base-node is also set.
1941 # @base-node: the node name of the backing file.
1942 #                       It cannot be set if @base is also set. (Since 2.8)
1944 # @backing-file: The backing file string to write into the top
1945 #                          image. This filename is not validated.
1947 #                          If a pathname string is such that it cannot be
1948 #                          resolved by QEMU, that means that subsequent QMP or
1949 #                          HMP commands must use node-names for the image in
1950 #                          question, as filename lookup methods will fail.
1952 #                          If not specified, QEMU will automatically determine
1953 #                          the backing file string to use, or error out if there
1954 #                          is no obvious choice.  Care should be taken when
1955 #                          specifying the string, to specify a valid filename or
1956 #                          protocol.
1957 #                          (Since 2.1)
1959 # @speed:  the maximum speed, in bytes per second
1961 # @on-error: the action to take on an error (default report).
1962 #            'stop' and 'enospc' can only be used if the block device
1963 #            supports io-status (see BlockInfo).  Since 1.3.
1965 # Returns: Nothing on success. If @device does not exist, DeviceNotFound.
1967 # Since: 1.1
1969 # Example:
1971 # -> { "execute": "block-stream",
1972 #      "arguments": { "device": "virtio0",
1973 #                     "base": "/tmp/master.qcow2" } }
1974 # <- { "return": {} }
1977 { 'command': 'block-stream',
1978   'data': { '*job-id': 'str', 'device': 'str', '*base': 'str',
1979             '*base-node': 'str', '*backing-file': 'str', '*speed': 'int',
1980             '*on-error': 'BlockdevOnError' } }
1983 # @block-job-set-speed:
1985 # Set maximum speed for a background block operation.
1987 # This command can only be issued when there is an active block job.
1989 # Throttling can be disabled by setting the speed to 0.
1991 # @device: The job identifier. This used to be a device name (hence
1992 #          the name of the parameter), but since QEMU 2.7 it can have
1993 #          other values.
1995 # @speed:  the maximum speed, in bytes per second, or 0 for unlimited.
1996 #          Defaults to 0.
1998 # Returns: Nothing on success
1999 #          If no background operation is active on this device, DeviceNotActive
2001 # Since: 1.1
2003 { 'command': 'block-job-set-speed',
2004   'data': { 'device': 'str', 'speed': 'int' } }
2007 # @block-job-cancel:
2009 # Stop an active background block operation.
2011 # This command returns immediately after marking the active background block
2012 # operation for cancellation.  It is an error to call this command if no
2013 # operation is in progress.
2015 # The operation will cancel as soon as possible and then emit the
2016 # BLOCK_JOB_CANCELLED event.  Before that happens the job is still visible when
2017 # enumerated using query-block-jobs.
2019 # For streaming, the image file retains its backing file unless the streaming
2020 # operation happens to complete just as it is being cancelled.  A new streaming
2021 # operation can be started at a later time to finish copying all data from the
2022 # backing file.
2024 # @device: The job identifier. This used to be a device name (hence
2025 #          the name of the parameter), but since QEMU 2.7 it can have
2026 #          other values.
2028 # @force: whether to allow cancellation of a paused job (default
2029 #         false).  Since 1.3.
2031 # Returns: Nothing on success
2032 #          If no background operation is active on this device, DeviceNotActive
2034 # Since: 1.1
2036 { 'command': 'block-job-cancel', 'data': { 'device': 'str', '*force': 'bool' } }
2039 # @block-job-pause:
2041 # Pause an active background block operation.
2043 # This command returns immediately after marking the active background block
2044 # operation for pausing.  It is an error to call this command if no
2045 # operation is in progress.  Pausing an already paused job has no cumulative
2046 # effect; a single block-job-resume command will resume the job.
2048 # The operation will pause as soon as possible.  No event is emitted when
2049 # the operation is actually paused.  Cancelling a paused job automatically
2050 # resumes it.
2052 # @device: The job identifier. This used to be a device name (hence
2053 #          the name of the parameter), but since QEMU 2.7 it can have
2054 #          other values.
2056 # Returns: Nothing on success
2057 #          If no background operation is active on this device, DeviceNotActive
2059 # Since: 1.3
2061 { 'command': 'block-job-pause', 'data': { 'device': 'str' } }
2064 # @block-job-resume:
2066 # Resume an active background block operation.
2068 # This command returns immediately after resuming a paused background block
2069 # operation.  It is an error to call this command if no operation is in
2070 # progress.  Resuming an already running job is not an error.
2072 # This command also clears the error status of the job.
2074 # @device: The job identifier. This used to be a device name (hence
2075 #          the name of the parameter), but since QEMU 2.7 it can have
2076 #          other values.
2078 # Returns: Nothing on success
2079 #          If no background operation is active on this device, DeviceNotActive
2081 # Since: 1.3
2083 { 'command': 'block-job-resume', 'data': { 'device': 'str' } }
2086 # @block-job-complete:
2088 # Manually trigger completion of an active background block operation.  This
2089 # is supported for drive mirroring, where it also switches the device to
2090 # write to the target path only.  The ability to complete is signaled with
2091 # a BLOCK_JOB_READY event.
2093 # This command completes an active background block operation synchronously.
2094 # The ordering of this command's return with the BLOCK_JOB_COMPLETED event
2095 # is not defined.  Note that if an I/O error occurs during the processing of
2096 # this command: 1) the command itself will fail; 2) the error will be processed
2097 # according to the rerror/werror arguments that were specified when starting
2098 # the operation.
2100 # A cancelled or paused job cannot be completed.
2102 # @device: The job identifier. This used to be a device name (hence
2103 #          the name of the parameter), but since QEMU 2.7 it can have
2104 #          other values.
2106 # Returns: Nothing on success
2107 #          If no background operation is active on this device, DeviceNotActive
2109 # Since: 1.3
2111 { 'command': 'block-job-complete', 'data': { 'device': 'str' } }
2114 # @BlockdevDiscardOptions:
2116 # Determines how to handle discard requests.
2118 # @ignore:      Ignore the request
2119 # @unmap:       Forward as an unmap request
2121 # Since: 2.9
2123 { 'enum': 'BlockdevDiscardOptions',
2124   'data': [ 'ignore', 'unmap' ] }
2127 # @BlockdevDetectZeroesOptions:
2129 # Describes the operation mode for the automatic conversion of plain
2130 # zero writes by the OS to driver specific optimized zero write commands.
2132 # @off:      Disabled (default)
2133 # @on:       Enabled
2134 # @unmap:    Enabled and even try to unmap blocks if possible. This requires
2135 #            also that @BlockdevDiscardOptions is set to unmap for this device.
2137 # Since: 2.1
2139 { 'enum': 'BlockdevDetectZeroesOptions',
2140   'data': [ 'off', 'on', 'unmap' ] }
2143 # @BlockdevAioOptions:
2145 # Selects the AIO backend to handle I/O requests
2147 # @threads:     Use qemu's thread pool
2148 # @native:      Use native AIO backend (only Linux and Windows)
2150 # Since: 2.9
2152 { 'enum': 'BlockdevAioOptions',
2153   'data': [ 'threads', 'native' ] }
2156 # @BlockdevCacheOptions:
2158 # Includes cache-related options for block devices
2160 # @direct:      enables use of O_DIRECT (bypass the host page cache;
2161 #               default: false)
2162 # @no-flush:    ignore any flush requests for the device (default:
2163 #               false)
2165 # Since: 2.9
2167 { 'struct': 'BlockdevCacheOptions',
2168   'data': { '*direct': 'bool',
2169             '*no-flush': 'bool' } }
2172 # @BlockdevDriver:
2174 # Drivers that are supported in block device operations.
2176 # @vxhs: Since 2.10
2178 # Since: 2.9
2180 { 'enum': 'BlockdevDriver',
2181   'data': [ 'blkdebug', 'blkverify', 'bochs', 'cloop',
2182             'dmg', 'file', 'ftp', 'ftps', 'gluster', 'host_cdrom',
2183             'host_device', 'http', 'https', 'iscsi', 'luks', 'nbd', 'nfs',
2184             'null-aio', 'null-co', 'parallels', 'qcow', 'qcow2', 'qed',
2185             'quorum', 'raw', 'rbd', 'replication', 'sheepdog', 'ssh',
2186             'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat', 'vxhs' ] }
2189 # @BlockdevOptionsFile:
2191 # Driver specific block device options for the file backend.
2193 # @filename:    path to the image file
2194 # @aio:         AIO backend (default: threads) (since: 2.8)
2195 # @locking:     whether to enable file locking. If set to 'auto', only enable
2196 #               when Open File Descriptor (OFD) locking API is available
2197 #               (default: auto, since 2.10)
2199 # Since: 2.9
2201 { 'struct': 'BlockdevOptionsFile',
2202   'data': { 'filename': 'str',
2203             '*locking': 'OnOffAuto',
2204             '*aio': 'BlockdevAioOptions' } }
2207 # @BlockdevOptionsNull:
2209 # Driver specific block device options for the null backend.
2211 # @size:    size of the device in bytes.
2212 # @latency-ns: emulated latency (in nanoseconds) in processing
2213 #              requests. Default to zero which completes requests immediately.
2214 #              (Since 2.4)
2216 # Since: 2.9
2218 { 'struct': 'BlockdevOptionsNull',
2219   'data': { '*size': 'int', '*latency-ns': 'uint64' } }
2222 # @BlockdevOptionsVVFAT:
2224 # Driver specific block device options for the vvfat protocol.
2226 # @dir:         directory to be exported as FAT image
2227 # @fat-type:    FAT type: 12, 16 or 32
2228 # @floppy:      whether to export a floppy image (true) or
2229 #               partitioned hard disk (false; default)
2230 # @label:       set the volume label, limited to 11 bytes. FAT16 and
2231 #               FAT32 traditionally have some restrictions on labels, which are
2232 #               ignored by most operating systems. Defaults to "QEMU VVFAT".
2233 #               (since 2.4)
2234 # @rw:          whether to allow write operations (default: false)
2236 # Since: 2.9
2238 { 'struct': 'BlockdevOptionsVVFAT',
2239   'data': { 'dir': 'str', '*fat-type': 'int', '*floppy': 'bool',
2240             '*label': 'str', '*rw': 'bool' } }
2243 # @BlockdevOptionsGenericFormat:
2245 # Driver specific block device options for image format that have no option
2246 # besides their data source.
2248 # @file:        reference to or definition of the data source block device
2250 # Since: 2.9
2252 { 'struct': 'BlockdevOptionsGenericFormat',
2253   'data': { 'file': 'BlockdevRef' } }
2256 # @BlockdevOptionsLUKS:
2258 # Driver specific block device options for LUKS.
2260 # @key-secret: the ID of a QCryptoSecret object providing
2261 #              the decryption key (since 2.6). Mandatory except when
2262 #              doing a metadata-only probe of the image.
2264 # Since: 2.9
2266 { 'struct': 'BlockdevOptionsLUKS',
2267   'base': 'BlockdevOptionsGenericFormat',
2268   'data': { '*key-secret': 'str' } }
2272 # @BlockdevOptionsGenericCOWFormat:
2274 # Driver specific block device options for image format that have no option
2275 # besides their data source and an optional backing file.
2277 # @backing:     reference to or definition of the backing file block
2278 #               device, null disables the backing file entirely.
2279 #               Defaults to the backing file stored the image file.
2281 # Since: 2.9
2283 { 'struct': 'BlockdevOptionsGenericCOWFormat',
2284   'base': 'BlockdevOptionsGenericFormat',
2285   'data': { '*backing': 'BlockdevRefOrNull' } }
2288 # @Qcow2OverlapCheckMode:
2290 # General overlap check modes.
2292 # @none:        Do not perform any checks
2294 # @constant:    Perform only checks which can be done in constant time and
2295 #               without reading anything from disk
2297 # @cached:      Perform only checks which can be done without reading anything
2298 #               from disk
2300 # @all:         Perform all available overlap checks
2302 # Since: 2.9
2304 { 'enum': 'Qcow2OverlapCheckMode',
2305   'data': [ 'none', 'constant', 'cached', 'all' ] }
2308 # @Qcow2OverlapCheckFlags:
2310 # Structure of flags for each metadata structure. Setting a field to 'true'
2311 # makes qemu guard that structure against unintended overwriting. The default
2312 # value is chosen according to the template given.
2314 # @template: Specifies a template mode which can be adjusted using the other
2315 #            flags, defaults to 'cached'
2317 # Since: 2.9
2319 { 'struct': 'Qcow2OverlapCheckFlags',
2320   'data': { '*template':       'Qcow2OverlapCheckMode',
2321             '*main-header':    'bool',
2322             '*active-l1':      'bool',
2323             '*active-l2':      'bool',
2324             '*refcount-table': 'bool',
2325             '*refcount-block': 'bool',
2326             '*snapshot-table': 'bool',
2327             '*inactive-l1':    'bool',
2328             '*inactive-l2':    'bool' } }
2331 # @Qcow2OverlapChecks:
2333 # Specifies which metadata structures should be guarded against unintended
2334 # overwriting.
2336 # @flags:   set of flags for separate specification of each metadata structure
2337 #           type
2339 # @mode:    named mode which chooses a specific set of flags
2341 # Since: 2.9
2343 { 'alternate': 'Qcow2OverlapChecks',
2344   'data': { 'flags': 'Qcow2OverlapCheckFlags',
2345             'mode':  'Qcow2OverlapCheckMode' } }
2348 # @BlockdevQcowEncryptionFormat:
2350 # @aes: AES-CBC with plain64 initialization vectors
2352 # Since: 2.10
2354 { 'enum': 'BlockdevQcowEncryptionFormat',
2355   'data': [ 'aes' ] }
2358 # @BlockdevQcowEncryption:
2360 # Since: 2.10
2362 { 'union': 'BlockdevQcowEncryption',
2363   'base': { 'format': 'BlockdevQcowEncryptionFormat' },
2364   'discriminator': 'format',
2365   'data': { 'aes': 'QCryptoBlockOptionsQCow' } }
2368 # @BlockdevOptionsQcow:
2370 # Driver specific block device options for qcow.
2372 # @encrypt:               Image decryption options. Mandatory for
2373 #                         encrypted images, except when doing a metadata-only
2374 #                         probe of the image.
2376 # Since: 2.10
2378 { 'struct': 'BlockdevOptionsQcow',
2379   'base': 'BlockdevOptionsGenericCOWFormat',
2380   'data': { '*encrypt': 'BlockdevQcowEncryption' } }
2385 # @BlockdevQcow2EncryptionFormat:
2386 # @aes: AES-CBC with plain64 initialization venctors
2388 # Since: 2.10
2390 { 'enum': 'BlockdevQcow2EncryptionFormat',
2391   'data': [ 'aes', 'luks' ] }
2394 # @BlockdevQcow2Encryption:
2396 # Since: 2.10
2398 { 'union': 'BlockdevQcow2Encryption',
2399   'base': { 'format': 'BlockdevQcow2EncryptionFormat' },
2400   'discriminator': 'format',
2401   'data': { 'aes': 'QCryptoBlockOptionsQCow',
2402             'luks': 'QCryptoBlockOptionsLUKS'} }
2405 # @BlockdevOptionsQcow2:
2407 # Driver specific block device options for qcow2.
2409 # @lazy-refcounts:        whether to enable the lazy refcounts
2410 #                         feature (default is taken from the image file)
2412 # @pass-discard-request:  whether discard requests to the qcow2
2413 #                         device should be forwarded to the data source
2415 # @pass-discard-snapshot: whether discard requests for the data source
2416 #                         should be issued when a snapshot operation (e.g.
2417 #                         deleting a snapshot) frees clusters in the qcow2 file
2419 # @pass-discard-other:    whether discard requests for the data source
2420 #                         should be issued on other occasions where a cluster
2421 #                         gets freed
2423 # @overlap-check:         which overlap checks to perform for writes
2424 #                         to the image, defaults to 'cached' (since 2.2)
2426 # @cache-size:            the maximum total size of the L2 table and
2427 #                         refcount block caches in bytes (since 2.2)
2429 # @l2-cache-size:         the maximum size of the L2 table cache in
2430 #                         bytes (since 2.2)
2432 # @refcount-cache-size:   the maximum size of the refcount block cache
2433 #                         in bytes (since 2.2)
2435 # @cache-clean-interval:  clean unused entries in the L2 and refcount
2436 #                         caches. The interval is in seconds. The default value
2437 #                         is 0 and it disables this feature (since 2.5)
2438 # @encrypt:               Image decryption options. Mandatory for
2439 #                         encrypted images, except when doing a metadata-only
2440 #                         probe of the image. (since 2.10)
2442 # Since: 2.9
2444 { 'struct': 'BlockdevOptionsQcow2',
2445   'base': 'BlockdevOptionsGenericCOWFormat',
2446   'data': { '*lazy-refcounts': 'bool',
2447             '*pass-discard-request': 'bool',
2448             '*pass-discard-snapshot': 'bool',
2449             '*pass-discard-other': 'bool',
2450             '*overlap-check': 'Qcow2OverlapChecks',
2451             '*cache-size': 'int',
2452             '*l2-cache-size': 'int',
2453             '*refcount-cache-size': 'int',
2454             '*cache-clean-interval': 'int',
2455             '*encrypt': 'BlockdevQcow2Encryption' } }
2458 # @BlockdevOptionsSsh:
2460 # @server:              host address
2462 # @path:                path to the image on the host
2464 # @user:                user as which to connect, defaults to current
2465 #                       local user name
2467 # TODO: Expose the host_key_check option in QMP
2469 # Since: 2.9
2471 { 'struct': 'BlockdevOptionsSsh',
2472   'data': { 'server': 'InetSocketAddress',
2473             'path': 'str',
2474             '*user': 'str' } }
2478 # @BlkdebugEvent:
2480 # Trigger events supported by blkdebug.
2482 # Since: 2.9
2484 { 'enum': 'BlkdebugEvent', 'prefix': 'BLKDBG',
2485   'data': [ 'l1_update', 'l1_grow_alloc_table', 'l1_grow_write_table',
2486             'l1_grow_activate_table', 'l2_load', 'l2_update',
2487             'l2_update_compressed', 'l2_alloc_cow_read', 'l2_alloc_write',
2488             'read_aio', 'read_backing_aio', 'read_compressed', 'write_aio',
2489             'write_compressed', 'vmstate_load', 'vmstate_save', 'cow_read',
2490             'cow_write', 'reftable_load', 'reftable_grow', 'reftable_update',
2491             'refblock_load', 'refblock_update', 'refblock_update_part',
2492             'refblock_alloc', 'refblock_alloc_hookup', 'refblock_alloc_write',
2493             'refblock_alloc_write_blocks', 'refblock_alloc_write_table',
2494             'refblock_alloc_switch_table', 'cluster_alloc',
2495             'cluster_alloc_bytes', 'cluster_free', 'flush_to_os',
2496             'flush_to_disk', 'pwritev_rmw_head', 'pwritev_rmw_after_head',
2497             'pwritev_rmw_tail', 'pwritev_rmw_after_tail', 'pwritev',
2498             'pwritev_zero', 'pwritev_done', 'empty_image_prepare' ] }
2501 # @BlkdebugInjectErrorOptions:
2503 # Describes a single error injection for blkdebug.
2505 # @event:       trigger event
2507 # @state:       the state identifier blkdebug needs to be in to
2508 #               actually trigger the event; defaults to "any"
2510 # @errno:       error identifier (errno) to be returned; defaults to
2511 #               EIO
2513 # @sector:      specifies the sector index which has to be affected
2514 #               in order to actually trigger the event; defaults to "any
2515 #               sector"
2517 # @once:        disables further events after this one has been
2518 #               triggered; defaults to false
2520 # @immediately: fail immediately; defaults to false
2522 # Since: 2.9
2524 { 'struct': 'BlkdebugInjectErrorOptions',
2525   'data': { 'event': 'BlkdebugEvent',
2526             '*state': 'int',
2527             '*errno': 'int',
2528             '*sector': 'int',
2529             '*once': 'bool',
2530             '*immediately': 'bool' } }
2533 # @BlkdebugSetStateOptions:
2535 # Describes a single state-change event for blkdebug.
2537 # @event:       trigger event
2539 # @state:       the current state identifier blkdebug needs to be in;
2540 #               defaults to "any"
2542 # @new_state:   the state identifier blkdebug is supposed to assume if
2543 #               this event is triggered
2545 # Since: 2.9
2547 { 'struct': 'BlkdebugSetStateOptions',
2548   'data': { 'event': 'BlkdebugEvent',
2549             '*state': 'int',
2550             'new_state': 'int' } }
2553 # @BlockdevOptionsBlkdebug:
2555 # Driver specific block device options for blkdebug.
2557 # @image:           underlying raw block device (or image file)
2559 # @config:          filename of the configuration file
2561 # @align:           required alignment for requests in bytes, must be
2562 #                   positive power of 2, or 0 for default
2564 # @max-transfer:    maximum size for I/O transfers in bytes, must be
2565 #                   positive multiple of @align and of the underlying
2566 #                   file's request alignment (but need not be a power of
2567 #                   2), or 0 for default (since 2.10)
2569 # @opt-write-zero:  preferred alignment for write zero requests in bytes,
2570 #                   must be positive multiple of @align and of the
2571 #                   underlying file's request alignment (but need not be a
2572 #                   power of 2), or 0 for default (since 2.10)
2574 # @max-write-zero:  maximum size for write zero requests in bytes, must be
2575 #                   positive multiple of @align, of @opt-write-zero, and of
2576 #                   the underlying file's request alignment (but need not
2577 #                   be a power of 2), or 0 for default (since 2.10)
2579 # @opt-discard:     preferred alignment for discard requests in bytes, must
2580 #                   be positive multiple of @align and of the underlying
2581 #                   file's request alignment (but need not be a power of
2582 #                   2), or 0 for default (since 2.10)
2584 # @max-discard:     maximum size for discard requests in bytes, must be
2585 #                   positive multiple of @align, of @opt-discard, and of
2586 #                   the underlying file's request alignment (but need not
2587 #                   be a power of 2), or 0 for default (since 2.10)
2589 # @inject-error:    array of error injection descriptions
2591 # @set-state:       array of state-change descriptions
2593 # Since: 2.9
2595 { 'struct': 'BlockdevOptionsBlkdebug',
2596   'data': { 'image': 'BlockdevRef',
2597             '*config': 'str',
2598             '*align': 'int', '*max-transfer': 'int32',
2599             '*opt-write-zero': 'int32', '*max-write-zero': 'int32',
2600             '*opt-discard': 'int32', '*max-discard': 'int32',
2601             '*inject-error': ['BlkdebugInjectErrorOptions'],
2602             '*set-state': ['BlkdebugSetStateOptions'] } }
2605 # @BlockdevOptionsBlkverify:
2607 # Driver specific block device options for blkverify.
2609 # @test:    block device to be tested
2611 # @raw:     raw image used for verification
2613 # Since: 2.9
2615 { 'struct': 'BlockdevOptionsBlkverify',
2616   'data': { 'test': 'BlockdevRef',
2617             'raw': 'BlockdevRef' } }
2620 # @QuorumReadPattern:
2622 # An enumeration of quorum read patterns.
2624 # @quorum: read all the children and do a quorum vote on reads
2626 # @fifo: read only from the first child that has not failed
2628 # Since: 2.9
2630 { 'enum': 'QuorumReadPattern', 'data': [ 'quorum', 'fifo' ] }
2633 # @BlockdevOptionsQuorum:
2635 # Driver specific block device options for Quorum
2637 # @blkverify:      true if the driver must print content mismatch
2638 #                  set to false by default
2640 # @children:       the children block devices to use
2642 # @vote-threshold: the vote limit under which a read will fail
2644 # @rewrite-corrupted: rewrite corrupted data when quorum is reached
2645 #                     (Since 2.1)
2647 # @read-pattern: choose read pattern and set to quorum by default
2648 #                (Since 2.2)
2650 # Since: 2.9
2652 { 'struct': 'BlockdevOptionsQuorum',
2653   'data': { '*blkverify': 'bool',
2654             'children': [ 'BlockdevRef' ],
2655             'vote-threshold': 'int',
2656             '*rewrite-corrupted': 'bool',
2657             '*read-pattern': 'QuorumReadPattern' } }
2660 # @BlockdevOptionsGluster:
2662 # Driver specific block device options for Gluster
2664 # @volume:      name of gluster volume where VM image resides
2666 # @path:        absolute path to image file in gluster volume
2668 # @server:      gluster servers description
2670 # @debug:       libgfapi log level (default '4' which is Error)
2671 #               (Since 2.8)
2673 # @logfile:     libgfapi log file (default /dev/stderr) (Since 2.8)
2675 # Since: 2.9
2677 { 'struct': 'BlockdevOptionsGluster',
2678   'data': { 'volume': 'str',
2679             'path': 'str',
2680             'server': ['SocketAddress'],
2681             '*debug': 'int',
2682             '*logfile': 'str' } }
2685 # @IscsiTransport:
2687 # An enumeration of libiscsi transport types
2689 # Since: 2.9
2691 { 'enum': 'IscsiTransport',
2692   'data': [ 'tcp', 'iser' ] }
2695 # @IscsiHeaderDigest:
2697 # An enumeration of header digests supported by libiscsi
2699 # Since: 2.9
2701 { 'enum': 'IscsiHeaderDigest',
2702   'prefix': 'QAPI_ISCSI_HEADER_DIGEST',
2703   'data': [ 'crc32c', 'none', 'crc32c-none', 'none-crc32c' ] }
2706 # @BlockdevOptionsIscsi:
2708 # @transport:       The iscsi transport type
2710 # @portal:          The address of the iscsi portal
2712 # @target:          The target iqn name
2714 # @lun:             LUN to connect to. Defaults to 0.
2716 # @user:            User name to log in with. If omitted, no CHAP
2717 #                   authentication is performed.
2719 # @password-secret: The ID of a QCryptoSecret object providing
2720 #                   the password for the login. This option is required if
2721 #                   @user is specified.
2723 # @initiator-name:  The iqn name we want to identify to the target
2724 #                   as. If this option is not specified, an initiator name is
2725 #                   generated automatically.
2727 # @header-digest:   The desired header digest. Defaults to
2728 #                   none-crc32c.
2730 # @timeout:         Timeout in seconds after which a request will
2731 #                   timeout. 0 means no timeout and is the default.
2733 # Driver specific block device options for iscsi
2735 # Since: 2.9
2737 { 'struct': 'BlockdevOptionsIscsi',
2738   'data': { 'transport': 'IscsiTransport',
2739             'portal': 'str',
2740             'target': 'str',
2741             '*lun': 'int',
2742             '*user': 'str',
2743             '*password-secret': 'str',
2744             '*initiator-name': 'str',
2745             '*header-digest': 'IscsiHeaderDigest',
2746             '*timeout': 'int' } }
2750 # @BlockdevOptionsRbd:
2752 # @pool:               Ceph pool name.
2754 # @image:              Image name in the Ceph pool.
2756 # @conf:               path to Ceph configuration file.  Values
2757 #                      in the configuration file will be overridden by
2758 #                      options specified via QAPI.
2760 # @snapshot:           Ceph snapshot name.
2762 # @user:               Ceph id name.
2764 # @server:             Monitor host address and port.  This maps
2765 #                      to the "mon_host" Ceph option.
2767 # Since: 2.9
2769 { 'struct': 'BlockdevOptionsRbd',
2770   'data': { 'pool': 'str',
2771             'image': 'str',
2772             '*conf': 'str',
2773             '*snapshot': 'str',
2774             '*user': 'str',
2775             '*server': ['InetSocketAddressBase'] } }
2778 # @BlockdevOptionsSheepdog:
2780 # Driver specific block device options for sheepdog
2782 # @vdi:         Virtual disk image name
2783 # @server:      The Sheepdog server to connect to
2784 # @snap-id:     Snapshot ID
2785 # @tag:         Snapshot tag name
2787 # Only one of @snap-id and @tag may be present.
2789 # Since: 2.9
2791 { 'struct': 'BlockdevOptionsSheepdog',
2792   'data': { 'server': 'SocketAddress',
2793             'vdi': 'str',
2794             '*snap-id': 'uint32',
2795             '*tag': 'str' } }
2798 # @ReplicationMode:
2800 # An enumeration of replication modes.
2802 # @primary: Primary mode, the vm's state will be sent to secondary QEMU.
2804 # @secondary: Secondary mode, receive the vm's state from primary QEMU.
2806 # Since: 2.9
2808 { 'enum' : 'ReplicationMode', 'data' : [ 'primary', 'secondary' ] }
2811 # @BlockdevOptionsReplication:
2813 # Driver specific block device options for replication
2815 # @mode: the replication mode
2817 # @top-id: In secondary mode, node name or device ID of the root
2818 #          node who owns the replication node chain. Must not be given in
2819 #          primary mode.
2821 # Since: 2.9
2823 { 'struct': 'BlockdevOptionsReplication',
2824   'base': 'BlockdevOptionsGenericFormat',
2825   'data': { 'mode': 'ReplicationMode',
2826             '*top-id': 'str' } }
2829 # @NFSTransport:
2831 # An enumeration of NFS transport types
2833 # @inet:        TCP transport
2835 # Since: 2.9
2837 { 'enum': 'NFSTransport',
2838   'data': [ 'inet' ] }
2841 # @NFSServer:
2843 # Captures the address of the socket
2845 # @type:        transport type used for NFS (only TCP supported)
2847 # @host:        host address for NFS server
2849 # Since: 2.9
2851 { 'struct': 'NFSServer',
2852   'data': { 'type': 'NFSTransport',
2853             'host': 'str' } }
2856 # @BlockdevOptionsNfs:
2858 # Driver specific block device option for NFS
2860 # @server:                  host address
2862 # @path:                    path of the image on the host
2864 # @user:                    UID value to use when talking to the
2865 #                           server (defaults to 65534 on Windows and getuid()
2866 #                           on unix)
2868 # @group:                   GID value to use when talking to the
2869 #                           server (defaults to 65534 on Windows and getgid()
2870 #                           in unix)
2872 # @tcp-syn-count:           number of SYNs during the session
2873 #                           establishment (defaults to libnfs default)
2875 # @readahead-size:          set the readahead size in bytes (defaults
2876 #                           to libnfs default)
2878 # @page-cache-size:         set the pagecache size in bytes (defaults
2879 #                           to libnfs default)
2881 # @debug:                   set the NFS debug level (max 2) (defaults
2882 #                           to libnfs default)
2884 # Since: 2.9
2886 { 'struct': 'BlockdevOptionsNfs',
2887   'data': { 'server': 'NFSServer',
2888             'path': 'str',
2889             '*user': 'int',
2890             '*group': 'int',
2891             '*tcp-syn-count': 'int',
2892             '*readahead-size': 'int',
2893             '*page-cache-size': 'int',
2894             '*debug': 'int' } }
2897 # @BlockdevOptionsCurlBase:
2899 # Driver specific block device options shared by all protocols supported by the
2900 # curl backend.
2902 # @url:                     URL of the image file
2904 # @readahead:               Size of the read-ahead cache; must be a multiple of
2905 #                           512 (defaults to 256 kB)
2907 # @timeout:                 Timeout for connections, in seconds (defaults to 5)
2909 # @username:                Username for authentication (defaults to none)
2911 # @password-secret:         ID of a QCryptoSecret object providing a password
2912 #                           for authentication (defaults to no password)
2914 # @proxy-username:          Username for proxy authentication (defaults to none)
2916 # @proxy-password-secret:   ID of a QCryptoSecret object providing a password
2917 #                           for proxy authentication (defaults to no password)
2919 # Since: 2.9
2921 { 'struct': 'BlockdevOptionsCurlBase',
2922   'data': { 'url': 'str',
2923             '*readahead': 'int',
2924             '*timeout': 'int',
2925             '*username': 'str',
2926             '*password-secret': 'str',
2927             '*proxy-username': 'str',
2928             '*proxy-password-secret': 'str' } }
2931 # @BlockdevOptionsCurlHttp:
2933 # Driver specific block device options for HTTP connections over the curl
2934 # backend.  URLs must start with "http://".
2936 # @cookie:      List of cookies to set; format is
2937 #               "name1=content1; name2=content2;" as explained by
2938 #               CURLOPT_COOKIE(3). Defaults to no cookies.
2940 # @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
2941 #                 secure way. See @cookie for the format. (since 2.10)
2943 # Since: 2.9
2945 { 'struct': 'BlockdevOptionsCurlHttp',
2946   'base': 'BlockdevOptionsCurlBase',
2947   'data': { '*cookie': 'str',
2948             '*cookie-secret': 'str'} }
2951 # @BlockdevOptionsCurlHttps:
2953 # Driver specific block device options for HTTPS connections over the curl
2954 # backend.  URLs must start with "https://".
2956 # @cookie:      List of cookies to set; format is
2957 #               "name1=content1; name2=content2;" as explained by
2958 #               CURLOPT_COOKIE(3). Defaults to no cookies.
2960 # @sslverify:   Whether to verify the SSL certificate's validity (defaults to
2961 #               true)
2963 # @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
2964 #                 secure way. See @cookie for the format. (since 2.10)
2966 # Since: 2.9
2968 { 'struct': 'BlockdevOptionsCurlHttps',
2969   'base': 'BlockdevOptionsCurlBase',
2970   'data': { '*cookie': 'str',
2971             '*sslverify': 'bool',
2972             '*cookie-secret': 'str'} }
2975 # @BlockdevOptionsCurlFtp:
2977 # Driver specific block device options for FTP connections over the curl
2978 # backend.  URLs must start with "ftp://".
2980 # Since: 2.9
2982 { 'struct': 'BlockdevOptionsCurlFtp',
2983   'base': 'BlockdevOptionsCurlBase',
2984   'data': { } }
2987 # @BlockdevOptionsCurlFtps:
2989 # Driver specific block device options for FTPS connections over the curl
2990 # backend.  URLs must start with "ftps://".
2992 # @sslverify:   Whether to verify the SSL certificate's validity (defaults to
2993 #               true)
2995 # Since: 2.9
2997 { 'struct': 'BlockdevOptionsCurlFtps',
2998   'base': 'BlockdevOptionsCurlBase',
2999   'data': { '*sslverify': 'bool' } }
3002 # @BlockdevOptionsNbd:
3004 # Driver specific block device options for NBD.
3006 # @server:      NBD server address
3008 # @export:      export name
3010 # @tls-creds:   TLS credentials ID
3012 # Since: 2.9
3014 { 'struct': 'BlockdevOptionsNbd',
3015   'data': { 'server': 'SocketAddress',
3016             '*export': 'str',
3017             '*tls-creds': 'str' } }
3020 # @BlockdevOptionsRaw:
3022 # Driver specific block device options for the raw driver.
3024 # @offset:      position where the block device starts
3025 # @size:        the assumed size of the device
3027 # Since: 2.9
3029 { 'struct': 'BlockdevOptionsRaw',
3030   'base': 'BlockdevOptionsGenericFormat',
3031   'data': { '*offset': 'int', '*size': 'int' } }
3034 # @BlockdevOptionsVxHS:
3036 # Driver specific block device options for VxHS
3038 # @vdisk-id:    UUID of VxHS volume
3039 # @server:      vxhs server IP, port
3040 # @tls-creds:   TLS credentials ID
3042 # Since: 2.10
3044 { 'struct': 'BlockdevOptionsVxHS',
3045   'data': { 'vdisk-id': 'str',
3046             'server': 'InetSocketAddressBase',
3047             '*tls-creds': 'str' } }
3050 # @BlockdevOptions:
3052 # Options for creating a block device.  Many options are available for all
3053 # block devices, independent of the block driver:
3055 # @driver:        block driver name
3056 # @node-name:     the node name of the new node (Since 2.0).
3057 #                 This option is required on the top level of blockdev-add.
3058 # @discard:       discard-related options (default: ignore)
3059 # @cache:         cache-related options
3060 # @read-only:     whether the block device should be read-only
3061 #                 (default: false)
3062 # @detect-zeroes: detect and optimize zero writes (Since 2.1)
3063 #                 (default: off)
3064 # @force-share:   force share all permission on added nodes.
3065 #                 Requires read-only=true. (Since 2.10)
3067 # Remaining options are determined by the block driver.
3069 # Since: 2.9
3071 { 'union': 'BlockdevOptions',
3072   'base': { 'driver': 'BlockdevDriver',
3073             '*node-name': 'str',
3074             '*discard': 'BlockdevDiscardOptions',
3075             '*cache': 'BlockdevCacheOptions',
3076             '*read-only': 'bool',
3077             '*force-share': 'bool',
3078             '*detect-zeroes': 'BlockdevDetectZeroesOptions' },
3079   'discriminator': 'driver',
3080   'data': {
3081       'blkdebug':   'BlockdevOptionsBlkdebug',
3082       'blkverify':  'BlockdevOptionsBlkverify',
3083       'bochs':      'BlockdevOptionsGenericFormat',
3084       'cloop':      'BlockdevOptionsGenericFormat',
3085       'dmg':        'BlockdevOptionsGenericFormat',
3086       'file':       'BlockdevOptionsFile',
3087       'ftp':        'BlockdevOptionsCurlFtp',
3088       'ftps':       'BlockdevOptionsCurlFtps',
3089       'gluster':    'BlockdevOptionsGluster',
3090       'host_cdrom': 'BlockdevOptionsFile',
3091       'host_device':'BlockdevOptionsFile',
3092       'http':       'BlockdevOptionsCurlHttp',
3093       'https':      'BlockdevOptionsCurlHttps',
3094       'iscsi':      'BlockdevOptionsIscsi',
3095       'luks':       'BlockdevOptionsLUKS',
3096       'nbd':        'BlockdevOptionsNbd',
3097       'nfs':        'BlockdevOptionsNfs',
3098       'null-aio':   'BlockdevOptionsNull',
3099       'null-co':    'BlockdevOptionsNull',
3100       'parallels':  'BlockdevOptionsGenericFormat',
3101       'qcow2':      'BlockdevOptionsQcow2',
3102       'qcow':       'BlockdevOptionsQcow',
3103       'qed':        'BlockdevOptionsGenericCOWFormat',
3104       'quorum':     'BlockdevOptionsQuorum',
3105       'raw':        'BlockdevOptionsRaw',
3106       'rbd':        'BlockdevOptionsRbd',
3107       'replication':'BlockdevOptionsReplication',
3108       'sheepdog':   'BlockdevOptionsSheepdog',
3109       'ssh':        'BlockdevOptionsSsh',
3110       'vdi':        'BlockdevOptionsGenericFormat',
3111       'vhdx':       'BlockdevOptionsGenericFormat',
3112       'vmdk':       'BlockdevOptionsGenericCOWFormat',
3113       'vpc':        'BlockdevOptionsGenericFormat',
3114       'vvfat':      'BlockdevOptionsVVFAT',
3115       'vxhs':       'BlockdevOptionsVxHS'
3116   } }
3119 # @BlockdevRef:
3121 # Reference to a block device.
3123 # @definition:      defines a new block device inline
3124 # @reference:       references the ID of an existing block device
3126 # Since: 2.9
3128 { 'alternate': 'BlockdevRef',
3129   'data': { 'definition': 'BlockdevOptions',
3130             'reference': 'str' } }
3133 # @BlockdevRefOrNull:
3135 # Reference to a block device.
3137 # @definition:      defines a new block device inline
3138 # @reference:       references the ID of an existing block device.
3139 #                   An empty string means that no block device should
3140 #                   be referenced.  Deprecated; use null instead.
3141 # @null:            No block device should be referenced (since 2.10)
3143 # Since: 2.9
3145 { 'alternate': 'BlockdevRefOrNull',
3146   'data': { 'definition': 'BlockdevOptions',
3147             'reference': 'str',
3148             'null': 'null' } }
3151 # @blockdev-add:
3153 # Creates a new block device. If the @id option is given at the top level, a
3154 # BlockBackend will be created; otherwise, @node-name is mandatory at the top
3155 # level and no BlockBackend will be created.
3157 # Since: 2.9
3159 # Example:
3161 # 1.
3162 # -> { "execute": "blockdev-add",
3163 #      "arguments": {
3164 #           "driver": "qcow2",
3165 #           "node-name": "test1",
3166 #           "file": {
3167 #               "driver": "file",
3168 #               "filename": "test.qcow2"
3169 #            }
3170 #       }
3171 #     }
3172 # <- { "return": {} }
3174 # 2.
3175 # -> { "execute": "blockdev-add",
3176 #      "arguments": {
3177 #           "driver": "qcow2",
3178 #           "node-name": "node0",
3179 #           "discard": "unmap",
3180 #           "cache": {
3181 #              "direct": true
3182 #            },
3183 #            "file": {
3184 #              "driver": "file",
3185 #              "filename": "/tmp/test.qcow2"
3186 #            },
3187 #            "backing": {
3188 #               "driver": "raw",
3189 #               "file": {
3190 #                  "driver": "file",
3191 #                  "filename": "/dev/fdset/4"
3192 #                }
3193 #            }
3194 #        }
3195 #      }
3197 # <- { "return": {} }
3200 { 'command': 'blockdev-add', 'data': 'BlockdevOptions', 'boxed': true }
3203 # @blockdev-del:
3205 # Deletes a block device that has been added using blockdev-add.
3206 # The command will fail if the node is attached to a device or is
3207 # otherwise being used.
3209 # @node-name: Name of the graph node to delete.
3211 # Since: 2.9
3213 # Example:
3215 # -> { "execute": "blockdev-add",
3216 #      "arguments": {
3217 #           "driver": "qcow2",
3218 #           "node-name": "node0",
3219 #           "file": {
3220 #               "driver": "file",
3221 #               "filename": "test.qcow2"
3222 #           }
3223 #      }
3224 #    }
3225 # <- { "return": {} }
3227 # -> { "execute": "blockdev-del",
3228 #      "arguments": { "node-name": "node0" }
3229 #    }
3230 # <- { "return": {} }
3233 { 'command': 'blockdev-del', 'data': { 'node-name': 'str' } }
3236 # @blockdev-open-tray:
3238 # Opens a block device's tray. If there is a block driver state tree inserted as
3239 # a medium, it will become inaccessible to the guest (but it will remain
3240 # associated to the block device, so closing the tray will make it accessible
3241 # again).
3243 # If the tray was already open before, this will be a no-op.
3245 # Once the tray opens, a DEVICE_TRAY_MOVED event is emitted. There are cases in
3246 # which no such event will be generated, these include:
3247 # - if the guest has locked the tray, @force is false and the guest does not
3248 #   respond to the eject request
3249 # - if the BlockBackend denoted by @device does not have a guest device attached
3250 #   to it
3251 # - if the guest device does not have an actual tray
3253 # @device: Block device name (deprecated, use @id instead)
3255 # @id:     The name or QOM path of the guest device (since: 2.8)
3257 # @force:  if false (the default), an eject request will be sent to
3258 #          the guest if it has locked the tray (and the tray will not be opened
3259 #          immediately); if true, the tray will be opened regardless of whether
3260 #          it is locked
3262 # Since: 2.5
3264 # Example:
3266 # -> { "execute": "blockdev-open-tray",
3267 #      "arguments": { "id": "ide0-1-0" } }
3269 # <- { "timestamp": { "seconds": 1418751016,
3270 #                     "microseconds": 716996 },
3271 #      "event": "DEVICE_TRAY_MOVED",
3272 #      "data": { "device": "ide1-cd0",
3273 #                "id": "ide0-1-0",
3274 #                "tray-open": true } }
3276 # <- { "return": {} }
3279 { 'command': 'blockdev-open-tray',
3280   'data': { '*device': 'str',
3281             '*id': 'str',
3282             '*force': 'bool' } }
3285 # @blockdev-close-tray:
3287 # Closes a block device's tray. If there is a block driver state tree associated
3288 # with the block device (which is currently ejected), that tree will be loaded
3289 # as the medium.
3291 # If the tray was already closed before, this will be a no-op.
3293 # @device:  Block device name (deprecated, use @id instead)
3295 # @id:      The name or QOM path of the guest device (since: 2.8)
3297 # Since: 2.5
3299 # Example:
3301 # -> { "execute": "blockdev-close-tray",
3302 #      "arguments": { "id": "ide0-1-0" } }
3304 # <- { "timestamp": { "seconds": 1418751345,
3305 #                     "microseconds": 272147 },
3306 #      "event": "DEVICE_TRAY_MOVED",
3307 #      "data": { "device": "ide1-cd0",
3308 #                "id": "ide0-1-0",
3309 #                "tray-open": false } }
3311 # <- { "return": {} }
3314 { 'command': 'blockdev-close-tray',
3315   'data': { '*device': 'str',
3316             '*id': 'str' } }
3319 # @x-blockdev-remove-medium:
3321 # Removes a medium (a block driver state tree) from a block device. That block
3322 # device's tray must currently be open (unless there is no attached guest
3323 # device).
3325 # If the tray is open and there is no medium inserted, this will be a no-op.
3327 # @device: Block device name (deprecated, use @id instead)
3329 # @id:     The name or QOM path of the guest device (since: 2.8)
3331 # Note: This command is still a work in progress and is considered experimental.
3332 # Stay away from it unless you want to help with its development.
3334 # Since: 2.5
3336 # Example:
3338 # -> { "execute": "x-blockdev-remove-medium",
3339 #      "arguments": { "id": "ide0-1-0" } }
3341 # <- { "error": { "class": "GenericError",
3342 #                 "desc": "Tray of device 'ide0-1-0' is not open" } }
3344 # -> { "execute": "blockdev-open-tray",
3345 #      "arguments": { "id": "ide0-1-0" } }
3347 # <- { "timestamp": { "seconds": 1418751627,
3348 #                     "microseconds": 549958 },
3349 #      "event": "DEVICE_TRAY_MOVED",
3350 #      "data": { "device": "ide1-cd0",
3351 #                "id": "ide0-1-0",
3352 #                "tray-open": true } }
3354 # <- { "return": {} }
3356 # -> { "execute": "x-blockdev-remove-medium",
3357 #      "arguments": { "id": "ide0-1-0" } }
3359 # <- { "return": {} }
3362 { 'command': 'x-blockdev-remove-medium',
3363   'data': { '*device': 'str',
3364             '*id': 'str' } }
3367 # @x-blockdev-insert-medium:
3369 # Inserts a medium (a block driver state tree) into a block device. That block
3370 # device's tray must currently be open (unless there is no attached guest
3371 # device) and there must be no medium inserted already.
3373 # @device:    Block device name (deprecated, use @id instead)
3375 # @id:        The name or QOM path of the guest device (since: 2.8)
3377 # @node-name: name of a node in the block driver state graph
3379 # Note: This command is still a work in progress and is considered experimental.
3380 # Stay away from it unless you want to help with its development.
3382 # Since: 2.5
3384 # Example:
3386 # -> { "execute": "blockdev-add",
3387 #      "arguments": {
3388 #          "node-name": "node0",
3389 #          "driver": "raw",
3390 #          "file": { "driver": "file",
3391 #                    "filename": "fedora.iso" } } }
3392 # <- { "return": {} }
3394 # -> { "execute": "x-blockdev-insert-medium",
3395 #      "arguments": { "id": "ide0-1-0",
3396 #                     "node-name": "node0" } }
3398 # <- { "return": {} }
3401 { 'command': 'x-blockdev-insert-medium',
3402   'data': { '*device': 'str',
3403             '*id': 'str',
3404             'node-name': 'str'} }
3408 # @BlockdevChangeReadOnlyMode:
3410 # Specifies the new read-only mode of a block device subject to the
3411 # @blockdev-change-medium command.
3413 # @retain:      Retains the current read-only mode
3415 # @read-only:   Makes the device read-only
3417 # @read-write:  Makes the device writable
3419 # Since: 2.3
3422 { 'enum': 'BlockdevChangeReadOnlyMode',
3423   'data': ['retain', 'read-only', 'read-write'] }
3427 # @blockdev-change-medium:
3429 # Changes the medium inserted into a block device by ejecting the current medium
3430 # and loading a new image file which is inserted as the new medium (this command
3431 # combines blockdev-open-tray, x-blockdev-remove-medium,
3432 # x-blockdev-insert-medium and blockdev-close-tray).
3434 # @device:          Block device name (deprecated, use @id instead)
3436 # @id:              The name or QOM path of the guest device
3437 #                   (since: 2.8)
3439 # @filename:        filename of the new image to be loaded
3441 # @format:          format to open the new image with (defaults to
3442 #                   the probed format)
3444 # @read-only-mode:  change the read-only mode of the device; defaults
3445 #                   to 'retain'
3447 # Since: 2.5
3449 # Examples:
3451 # 1. Change a removable medium
3453 # -> { "execute": "blockdev-change-medium",
3454 #      "arguments": { "id": "ide0-1-0",
3455 #                     "filename": "/srv/images/Fedora-12-x86_64-DVD.iso",
3456 #                     "format": "raw" } }
3457 # <- { "return": {} }
3459 # 2. Load a read-only medium into a writable drive
3461 # -> { "execute": "blockdev-change-medium",
3462 #      "arguments": { "id": "floppyA",
3463 #                     "filename": "/srv/images/ro.img",
3464 #                     "format": "raw",
3465 #                     "read-only-mode": "retain" } }
3467 # <- { "error":
3468 #      { "class": "GenericError",
3469 #        "desc": "Could not open '/srv/images/ro.img': Permission denied" } }
3471 # -> { "execute": "blockdev-change-medium",
3472 #      "arguments": { "id": "floppyA",
3473 #                     "filename": "/srv/images/ro.img",
3474 #                     "format": "raw",
3475 #                     "read-only-mode": "read-only" } }
3477 # <- { "return": {} }
3480 { 'command': 'blockdev-change-medium',
3481   'data': { '*device': 'str',
3482             '*id': 'str',
3483             'filename': 'str',
3484             '*format': 'str',
3485             '*read-only-mode': 'BlockdevChangeReadOnlyMode' } }
3489 # @BlockErrorAction:
3491 # An enumeration of action that has been taken when a DISK I/O occurs
3493 # @ignore: error has been ignored
3495 # @report: error has been reported to the device
3497 # @stop: error caused VM to be stopped
3499 # Since: 2.1
3501 { 'enum': 'BlockErrorAction',
3502   'data': [ 'ignore', 'report', 'stop' ] }
3506 # @BLOCK_IMAGE_CORRUPTED:
3508 # Emitted when a disk image is being marked corrupt. The image can be
3509 # identified by its device or node name. The 'device' field is always
3510 # present for compatibility reasons, but it can be empty ("") if the
3511 # image does not have a device name associated.
3513 # @device: device name. This is always present for compatibility
3514 #          reasons, but it can be empty ("") if the image does not
3515 #          have a device name associated.
3517 # @node-name: node name (Since: 2.4)
3519 # @msg: informative message for human consumption, such as the kind of
3520 #       corruption being detected. It should not be parsed by machine as it is
3521 #       not guaranteed to be stable
3523 # @offset: if the corruption resulted from an image access, this is
3524 #          the host's access offset into the image
3526 # @size: if the corruption resulted from an image access, this is
3527 #        the access size
3529 # @fatal: if set, the image is marked corrupt and therefore unusable after this
3530 #        event and must be repaired (Since 2.2; before, every
3531 #        BLOCK_IMAGE_CORRUPTED event was fatal)
3533 # Note: If action is "stop", a STOP event will eventually follow the
3534 #       BLOCK_IO_ERROR event.
3536 # Example:
3538 # <- { "event": "BLOCK_IMAGE_CORRUPTED",
3539 #      "data": { "device": "ide0-hd0", "node-name": "node0",
3540 #                "msg": "Prevented active L1 table overwrite", "offset": 196608,
3541 #                "size": 65536 },
3542 #      "timestamp": { "seconds": 1378126126, "microseconds": 966463 } }
3544 # Since: 1.7
3546 { 'event': 'BLOCK_IMAGE_CORRUPTED',
3547   'data': { 'device'     : 'str',
3548             '*node-name' : 'str',
3549             'msg'        : 'str',
3550             '*offset'    : 'int',
3551             '*size'      : 'int',
3552             'fatal'      : 'bool' } }
3555 # @BLOCK_IO_ERROR:
3557 # Emitted when a disk I/O error occurs
3559 # @device: device name. This is always present for compatibility
3560 #          reasons, but it can be empty ("") if the image does not
3561 #          have a device name associated.
3563 # @node-name: node name. Note that errors may be reported for the root node
3564 #             that is directly attached to a guest device rather than for the
3565 #             node where the error occurred. (Since: 2.8)
3567 # @operation: I/O operation
3569 # @action: action that has been taken
3571 # @nospace: true if I/O error was caused due to a no-space
3572 #           condition. This key is only present if query-block's
3573 #           io-status is present, please see query-block documentation
3574 #           for more information (since: 2.2)
3576 # @reason: human readable string describing the error cause.
3577 #          (This field is a debugging aid for humans, it should not
3578 #           be parsed by applications) (since: 2.2)
3580 # Note: If action is "stop", a STOP event will eventually follow the
3581 # BLOCK_IO_ERROR event
3583 # Since: 0.13.0
3585 # Example:
3587 # <- { "event": "BLOCK_IO_ERROR",
3588 #      "data": { "device": "ide0-hd1",
3589 #                "node-name": "#block212",
3590 #                "operation": "write",
3591 #                "action": "stop" },
3592 #      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
3595 { 'event': 'BLOCK_IO_ERROR',
3596   'data': { 'device': 'str', 'node-name': 'str', 'operation': 'IoOperationType',
3597             'action': 'BlockErrorAction', '*nospace': 'bool',
3598             'reason': 'str' } }
3601 # @BLOCK_JOB_COMPLETED:
3603 # Emitted when a block job has completed
3605 # @type: job type
3607 # @device: The job identifier. Originally the device name but other
3608 #          values are allowed since QEMU 2.7
3610 # @len: maximum progress value
3612 # @offset: current progress value. On success this is equal to len.
3613 #          On failure this is less than len
3615 # @speed: rate limit, bytes per second
3617 # @error: error message. Only present on failure. This field
3618 #         contains a human-readable error message. There are no semantics
3619 #         other than that streaming has failed and clients should not try to
3620 #         interpret the error string
3622 # Since: 1.1
3624 # Example:
3626 # <- { "event": "BLOCK_JOB_COMPLETED",
3627 #      "data": { "type": "stream", "device": "virtio-disk0",
3628 #                "len": 10737418240, "offset": 10737418240,
3629 #                "speed": 0 },
3630 #      "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
3633 { 'event': 'BLOCK_JOB_COMPLETED',
3634   'data': { 'type'  : 'BlockJobType',
3635             'device': 'str',
3636             'len'   : 'int',
3637             'offset': 'int',
3638             'speed' : 'int',
3639             '*error': 'str' } }
3642 # @BLOCK_JOB_CANCELLED:
3644 # Emitted when a block job has been cancelled
3646 # @type: job type
3648 # @device: The job identifier. Originally the device name but other
3649 #          values are allowed since QEMU 2.7
3651 # @len: maximum progress value
3653 # @offset: current progress value. On success this is equal to len.
3654 #          On failure this is less than len
3656 # @speed: rate limit, bytes per second
3658 # Since: 1.1
3660 # Example:
3662 # <- { "event": "BLOCK_JOB_CANCELLED",
3663 #      "data": { "type": "stream", "device": "virtio-disk0",
3664 #                "len": 10737418240, "offset": 134217728,
3665 #                "speed": 0 },
3666 #      "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
3669 { 'event': 'BLOCK_JOB_CANCELLED',
3670   'data': { 'type'  : 'BlockJobType',
3671             'device': 'str',
3672             'len'   : 'int',
3673             'offset': 'int',
3674             'speed' : 'int' } }
3677 # @BLOCK_JOB_ERROR:
3679 # Emitted when a block job encounters an error
3681 # @device: The job identifier. Originally the device name but other
3682 #          values are allowed since QEMU 2.7
3684 # @operation: I/O operation
3686 # @action: action that has been taken
3688 # Since: 1.3
3690 # Example:
3692 # <- { "event": "BLOCK_JOB_ERROR",
3693 #      "data": { "device": "ide0-hd1",
3694 #                "operation": "write",
3695 #                "action": "stop" },
3696 #      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
3699 { 'event': 'BLOCK_JOB_ERROR',
3700   'data': { 'device'   : 'str',
3701             'operation': 'IoOperationType',
3702             'action'   : 'BlockErrorAction' } }
3705 # @BLOCK_JOB_READY:
3707 # Emitted when a block job is ready to complete
3709 # @type: job type
3711 # @device: The job identifier. Originally the device name but other
3712 #          values are allowed since QEMU 2.7
3714 # @len: maximum progress value
3716 # @offset: current progress value. On success this is equal to len.
3717 #          On failure this is less than len
3719 # @speed: rate limit, bytes per second
3721 # Note: The "ready to complete" status is always reset by a @BLOCK_JOB_ERROR
3722 # event
3724 # Since: 1.3
3726 # Example:
3728 # <- { "event": "BLOCK_JOB_READY",
3729 #      "data": { "device": "drive0", "type": "mirror", "speed": 0,
3730 #                "len": 2097152, "offset": 2097152 }
3731 #      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
3734 { 'event': 'BLOCK_JOB_READY',
3735   'data': { 'type'  : 'BlockJobType',
3736             'device': 'str',
3737             'len'   : 'int',
3738             'offset': 'int',
3739             'speed' : 'int' } }
3742 # @PreallocMode:
3744 # Preallocation mode of QEMU image file
3746 # @off: no preallocation
3747 # @metadata: preallocate only for metadata
3748 # @falloc: like @full preallocation but allocate disk space by
3749 #          posix_fallocate() rather than writing zeros.
3750 # @full: preallocate all data by writing zeros to device to ensure disk
3751 #        space is really available. @full preallocation also sets up
3752 #        metadata correctly.
3754 # Since: 2.2
3756 { 'enum': 'PreallocMode',
3757   'data': [ 'off', 'metadata', 'falloc', 'full' ] }
3760 # @BLOCK_WRITE_THRESHOLD:
3762 # Emitted when writes on block device reaches or exceeds the
3763 # configured write threshold. For thin-provisioned devices, this
3764 # means the device should be extended to avoid pausing for
3765 # disk exhaustion.
3766 # The event is one shot. Once triggered, it needs to be
3767 # re-registered with another block-set-write-threshold command.
3769 # @node-name: graph node name on which the threshold was exceeded.
3771 # @amount-exceeded: amount of data which exceeded the threshold, in bytes.
3773 # @write-threshold: last configured threshold, in bytes.
3775 # Since: 2.3
3777 { 'event': 'BLOCK_WRITE_THRESHOLD',
3778   'data': { 'node-name': 'str',
3779             'amount-exceeded': 'uint64',
3780             'write-threshold': 'uint64' } }
3783 # @block-set-write-threshold:
3785 # Change the write threshold for a block drive. An event will be
3786 # delivered if a write to this block drive crosses the configured
3787 # threshold.  The threshold is an offset, thus must be
3788 # non-negative. Default is no write threshold. Setting the threshold
3789 # to zero disables it.
3791 # This is useful to transparently resize thin-provisioned drives without
3792 # the guest OS noticing.
3794 # @node-name: graph node name on which the threshold must be set.
3796 # @write-threshold: configured threshold for the block device, bytes.
3797 #                   Use 0 to disable the threshold.
3799 # Since: 2.3
3801 # Example:
3803 # -> { "execute": "block-set-write-threshold",
3804 #      "arguments": { "node-name": "mydev",
3805 #                     "write-threshold": 17179869184 } }
3806 # <- { "return": {} }
3809 { 'command': 'block-set-write-threshold',
3810   'data': { 'node-name': 'str', 'write-threshold': 'uint64' } }
3813 # @x-blockdev-change:
3815 # Dynamically reconfigure the block driver state graph. It can be used
3816 # to add, remove, insert or replace a graph node. Currently only the
3817 # Quorum driver implements this feature to add or remove its child. This
3818 # is useful to fix a broken quorum child.
3820 # If @node is specified, it will be inserted under @parent. @child
3821 # may not be specified in this case. If both @parent and @child are
3822 # specified but @node is not, @child will be detached from @parent.
3824 # @parent: the id or name of the parent node.
3826 # @child: the name of a child under the given parent node.
3828 # @node: the name of the node that will be added.
3830 # Note: this command is experimental, and its API is not stable. It
3831 # does not support all kinds of operations, all kinds of children, nor
3832 # all block drivers.
3834 # Warning: The data in a new quorum child MUST be consistent with that of
3835 # the rest of the array.
3837 # Since: 2.7
3839 # Example:
3841 # 1. Add a new node to a quorum
3842 # -> { "execute": "blockdev-add",
3843 #      "arguments": {
3844 #          "driver": "raw",
3845 #          "node-name": "new_node",
3846 #          "file": { "driver": "file",
3847 #                    "filename": "test.raw" } } }
3848 # <- { "return": {} }
3849 # -> { "execute": "x-blockdev-change",
3850 #      "arguments": { "parent": "disk1",
3851 #                     "node": "new_node" } }
3852 # <- { "return": {} }
3854 # 2. Delete a quorum's node
3855 # -> { "execute": "x-blockdev-change",
3856 #      "arguments": { "parent": "disk1",
3857 #                     "child": "children.1" } }
3858 # <- { "return": {} }
3861 { 'command': 'x-blockdev-change',
3862   'data' : { 'parent': 'str',
3863              '*child': 'str',
3864              '*node': 'str' } }