]> git.proxmox.com Git - mirror_qemu.git/blame - qapi/block-core.json
qcow2: Support BDRV_REQ_MAY_UNMAP
[mirror_qemu.git] / qapi / block-core.json
CommitLineData
5db15096
BC
1# -*- Mode: Python -*-
2#
3# QAPI block core definitions (vm unrelated)
4
5# QAPI common definitions
6{ 'include': 'common.json' }
1ad166b6
BC
7
8##
9# @SnapshotInfo
10#
11# @id: unique snapshot id
12#
13# @name: user chosen name
14#
15# @vm-state-size: size of the VM state
16#
17# @date-sec: UTC date of the snapshot in seconds
18#
19# @date-nsec: fractional part in nano seconds to be used with date-sec
20#
21# @vm-clock-sec: VM clock relative to boot in seconds
22#
23# @vm-clock-nsec: fractional part in nano seconds to be used with vm-clock-sec
24#
25# Since: 1.3
26#
27##
895a2a80 28{ 'struct': 'SnapshotInfo',
1ad166b6
BC
29 'data': { 'id': 'str', 'name': 'str', 'vm-state-size': 'int',
30 'date-sec': 'int', 'date-nsec': 'int',
31 'vm-clock-sec': 'int', 'vm-clock-nsec': 'int' } }
32
33##
34# @ImageInfoSpecificQCow2:
35#
36# @compat: compatibility level
37#
38# @lazy-refcounts: #optional on or off; only valid for compat >= 1.1
39#
9009b196
HR
40# @corrupt: #optional true if the image has been marked corrupt; only valid for
41# compat >= 1.1 (since 2.2)
42#
0709c5a1
HR
43# @refcount-bits: width of a refcount entry in bits (since 2.3)
44#
1ad166b6
BC
45# Since: 1.7
46##
895a2a80 47{ 'struct': 'ImageInfoSpecificQCow2',
1ad166b6
BC
48 'data': {
49 'compat': 'str',
9009b196 50 '*lazy-refcounts': 'bool',
0709c5a1
HR
51 '*corrupt': 'bool',
52 'refcount-bits': 'int'
1ad166b6
BC
53 } }
54
55##
56# @ImageInfoSpecificVmdk:
57#
58# @create-type: The create type of VMDK image
59#
60# @cid: Content id of image
61#
62# @parent-cid: Parent VMDK image's cid
63#
64# @extents: List of extent files
65#
66# Since: 1.7
67##
895a2a80 68{ 'struct': 'ImageInfoSpecificVmdk',
1ad166b6
BC
69 'data': {
70 'create-type': 'str',
71 'cid': 'int',
72 'parent-cid': 'int',
73 'extents': ['ImageInfo']
74 } }
75
76##
77# @ImageInfoSpecific:
78#
79# A discriminated record of image format specific information structures.
80#
81# Since: 1.7
82##
1ad166b6
BC
83{ 'union': 'ImageInfoSpecific',
84 'data': {
85 'qcow2': 'ImageInfoSpecificQCow2',
c7c4cf49
DB
86 'vmdk': 'ImageInfoSpecificVmdk',
87 # If we need to add block driver specific parameters for
88 # LUKS in future, then we'll subclass QCryptoBlockInfoLUKS
89 # to define a ImageInfoSpecificLUKS
90 'luks': 'QCryptoBlockInfoLUKS'
1ad166b6
BC
91 } }
92
93##
94# @ImageInfo:
95#
96# Information about a QEMU image file
97#
98# @filename: name of the image file
99#
100# @format: format of the image file
101#
102# @virtual-size: maximum capacity in bytes of the image
103#
104# @actual-size: #optional actual size on disk in bytes of the image
105#
106# @dirty-flag: #optional true if image is not cleanly closed
107#
108# @cluster-size: #optional size of a cluster in bytes
109#
110# @encrypted: #optional true if the image is encrypted
111#
112# @compressed: #optional true if the image is compressed (Since 1.7)
113#
114# @backing-filename: #optional name of the backing file
115#
116# @full-backing-filename: #optional full path of the backing file
117#
118# @backing-filename-format: #optional the format of the backing file
119#
120# @snapshots: #optional list of VM snapshots
121#
122# @backing-image: #optional info of the backing image (since 1.6)
123#
124# @format-specific: #optional structure supplying additional format-specific
125# information (since 1.7)
126#
127# Since: 1.3
128#
129##
895a2a80 130{ 'struct': 'ImageInfo',
1ad166b6
BC
131 'data': {'filename': 'str', 'format': 'str', '*dirty-flag': 'bool',
132 '*actual-size': 'int', 'virtual-size': 'int',
133 '*cluster-size': 'int', '*encrypted': 'bool', '*compressed': 'bool',
134 '*backing-filename': 'str', '*full-backing-filename': 'str',
135 '*backing-filename-format': 'str', '*snapshots': ['SnapshotInfo'],
136 '*backing-image': 'ImageInfo',
24bf10da 137 '*format-specific': 'ImageInfoSpecific' } }
1ad166b6
BC
138
139##
140# @ImageCheck:
141#
142# Information about a QEMU image file check
143#
144# @filename: name of the image file checked
145#
146# @format: format of the image file checked
147#
148# @check-errors: number of unexpected errors occurred during check
149#
150# @image-end-offset: #optional offset (in bytes) where the image ends, this
151# field is present if the driver for the image format
152# supports it
153#
154# @corruptions: #optional number of corruptions found during the check if any
155#
156# @leaks: #optional number of leaks found during the check if any
157#
158# @corruptions-fixed: #optional number of corruptions fixed during the check
159# if any
160#
161# @leaks-fixed: #optional number of leaks fixed during the check if any
162#
163# @total-clusters: #optional total number of clusters, this field is present
164# if the driver for the image format supports it
165#
166# @allocated-clusters: #optional total number of allocated clusters, this
167# field is present if the driver for the image format
168# supports it
169#
170# @fragmented-clusters: #optional total number of fragmented clusters, this
171# field is present if the driver for the image format
172# supports it
173#
174# @compressed-clusters: #optional total number of compressed clusters, this
175# field is present if the driver for the image format
176# supports it
177#
178# Since: 1.4
179#
180##
895a2a80 181{ 'struct': 'ImageCheck',
1ad166b6
BC
182 'data': {'filename': 'str', 'format': 'str', 'check-errors': 'int',
183 '*image-end-offset': 'int', '*corruptions': 'int', '*leaks': 'int',
184 '*corruptions-fixed': 'int', '*leaks-fixed': 'int',
185 '*total-clusters': 'int', '*allocated-clusters': 'int',
186 '*fragmented-clusters': 'int', '*compressed-clusters': 'int' } }
187
16b0d555
FZ
188##
189# @MapEntry:
190#
191# Mapping information from a virtual block range to a host file range
192#
193# @start: the start byte of the mapped virtual range
194#
195# @length: the number of bytes of the mapped virtual range
196#
197# @data: whether the mapped range has data
198#
199# @zero: whether the virtual blocks are zeroed
200#
201# @depth: the depth of the mapping
202#
203# @offset: #optional the offset in file that the virtual sectors are mapped to
204#
205# @filename: #optional filename that is referred to by @offset
206#
207# Since: 2.6
208#
209##
210{ 'struct': 'MapEntry',
211 'data': {'start': 'int', 'length': 'int', 'data': 'bool',
212 'zero': 'bool', 'depth': 'int', '*offset': 'int',
213 '*filename': 'str' } }
214
9e193c5a
KW
215##
216# @BlockdevCacheInfo
217#
218# Cache mode information for a block device
219#
220# @writeback: true if writeback mode is enabled
221# @direct: true if the host page cache is bypassed (O_DIRECT)
222# @no-flush: true if flush requests are ignored for the device
223#
224# Since: 2.3
225##
895a2a80 226{ 'struct': 'BlockdevCacheInfo',
9e193c5a
KW
227 'data': { 'writeback': 'bool',
228 'direct': 'bool',
229 'no-flush': 'bool' } }
230
1ad166b6
BC
231##
232# @BlockDeviceInfo:
233#
234# Information about the backing device for a block device.
235#
236# @file: the filename of the backing device
237#
238# @node-name: #optional the name of the block driver node (Since 2.0)
239#
240# @ro: true if the backing device was open read-only
241#
242# @drv: the name of the block format used to open the backing device. As of
243# 0.14.0 this can be: 'blkdebug', 'bochs', 'cloop', 'cow', 'dmg',
244# 'file', 'file', 'ftp', 'ftps', 'host_cdrom', 'host_device',
78368575 245# 'http', 'https', 'luks', 'nbd', 'parallels', 'qcow',
1ad166b6 246# 'qcow2', 'raw', 'tftp', 'vdi', 'vmdk', 'vpc', 'vvfat'
550830f9 247# 2.2: 'archipelago' added, 'cow' dropped
92a539d2 248# 2.3: 'host_floppy' deprecated
f709623b 249# 2.5: 'host_floppy' dropped
78368575 250# 2.6: 'luks' added
82ac5543 251# 2.8: 'replication' added
1ad166b6
BC
252#
253# @backing_file: #optional the name of the backing file (for copy-on-write)
254#
255# @backing_file_depth: number of files in the backing file chain (since: 1.2)
256#
257# @encrypted: true if the backing device is encrypted
258#
259# @encryption_key_missing: true if the backing device is encrypted but an
260# valid encryption key is missing
261#
262# @detect_zeroes: detect and optimize zero writes (Since 2.1)
263#
264# @bps: total throughput limit in bytes per second is specified
265#
266# @bps_rd: read throughput limit in bytes per second is specified
267#
268# @bps_wr: write throughput limit in bytes per second is specified
269#
270# @iops: total I/O operations per second is specified
271#
272# @iops_rd: read I/O operations per second is specified
273#
274# @iops_wr: write I/O operations per second is specified
275#
276# @image: the info of image used (since: 1.6)
277#
398befdf
AG
278# @bps_max: #optional total throughput limit during bursts,
279# in bytes (Since 1.7)
1ad166b6 280#
398befdf
AG
281# @bps_rd_max: #optional read throughput limit during bursts,
282# in bytes (Since 1.7)
1ad166b6 283#
398befdf
AG
284# @bps_wr_max: #optional write throughput limit during bursts,
285# in bytes (Since 1.7)
1ad166b6 286#
398befdf
AG
287# @iops_max: #optional total I/O operations per second during bursts,
288# in bytes (Since 1.7)
1ad166b6 289#
398befdf
AG
290# @iops_rd_max: #optional read I/O operations per second during bursts,
291# in bytes (Since 1.7)
1ad166b6 292#
398befdf
AG
293# @iops_wr_max: #optional write I/O operations per second during bursts,
294# in bytes (Since 1.7)
295#
296# @bps_max_length: #optional maximum length of the @bps_max burst
297# period, in seconds. (Since 2.6)
298#
299# @bps_rd_max_length: #optional maximum length of the @bps_rd_max
300# burst period, in seconds. (Since 2.6)
301#
302# @bps_wr_max_length: #optional maximum length of the @bps_wr_max
303# burst period, in seconds. (Since 2.6)
304#
305# @iops_max_length: #optional maximum length of the @iops burst
306# period, in seconds. (Since 2.6)
307#
308# @iops_rd_max_length: #optional maximum length of the @iops_rd_max
309# burst period, in seconds. (Since 2.6)
310#
311# @iops_wr_max_length: #optional maximum length of the @iops_wr_max
312# burst period, in seconds. (Since 2.6)
1ad166b6
BC
313#
314# @iops_size: #optional an I/O size in bytes (Since 1.7)
315#
b8fe1694
AG
316# @group: #optional throttle group name (Since 2.4)
317#
9e193c5a
KW
318# @cache: the cache mode used for the block device (since: 2.3)
319#
e2462113
FR
320# @write_threshold: configured write threshold for the device.
321# 0 if disabled. (Since 2.3)
322#
1ad166b6
BC
323# Since: 0.14.0
324#
325##
895a2a80 326{ 'struct': 'BlockDeviceInfo',
1ad166b6
BC
327 'data': { 'file': 'str', '*node-name': 'str', 'ro': 'bool', 'drv': 'str',
328 '*backing_file': 'str', 'backing_file_depth': 'int',
329 'encrypted': 'bool', 'encryption_key_missing': 'bool',
330 'detect_zeroes': 'BlockdevDetectZeroesOptions',
331 'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
332 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
333 'image': 'ImageInfo',
334 '*bps_max': 'int', '*bps_rd_max': 'int',
335 '*bps_wr_max': 'int', '*iops_max': 'int',
336 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
398befdf
AG
337 '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
338 '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
339 '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
b8fe1694 340 '*iops_size': 'int', '*group': 'str', 'cache': 'BlockdevCacheInfo',
e2462113 341 'write_threshold': 'int' } }
1ad166b6
BC
342
343##
344# @BlockDeviceIoStatus:
345#
346# An enumeration of block device I/O status.
347#
348# @ok: The last I/O operation has succeeded
349#
350# @failed: The last I/O operation has failed
351#
352# @nospace: The last I/O operation has failed due to a no-space condition
353#
354# Since: 1.0
355##
356{ 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
357
358##
359# @BlockDeviceMapEntry:
360#
361# Entry in the metadata map of the device (returned by "qemu-img map")
362#
363# @start: Offset in the image of the first byte described by this entry
364# (in bytes)
365#
366# @length: Length of the range described by this entry (in bytes)
367#
368# @depth: Number of layers (0 = top image, 1 = top image's backing file, etc.)
369# before reaching one for which the range is allocated. The value is
370# in the range 0 to the depth of the image chain - 1.
371#
372# @zero: the sectors in this range read as zeros
373#
374# @data: reading the image will actually read data from a file (in particular,
375# if @offset is present this means that the sectors are not simply
376# preallocated, but contain actual data in raw format)
377#
378# @offset: if present, the image file stores the data for this range in
379# raw format at the given offset.
380#
381# Since 1.7
382##
895a2a80 383{ 'struct': 'BlockDeviceMapEntry',
1ad166b6
BC
384 'data': { 'start': 'int', 'length': 'int', 'depth': 'int', 'zero': 'bool',
385 'data': 'bool', '*offset': 'int' } }
386
9abe3bdc
JS
387##
388# @DirtyBitmapStatus:
389#
390# An enumeration of possible states that a dirty bitmap can report to the user.
391#
392# @frozen: The bitmap is currently in-use by a backup operation or block job,
393# and is immutable.
394#
395# @disabled: The bitmap is currently in-use by an internal operation and is
396# read-only. It can still be deleted.
397#
398# @active: The bitmap is actively monitoring for new writes, and can be cleared,
399# deleted, or used for backup operations.
400#
401# Since: 2.4
402##
403{ 'enum': 'DirtyBitmapStatus',
404 'data': ['active', 'disabled', 'frozen'] }
405
1ad166b6
BC
406##
407# @BlockDirtyInfo:
408#
409# Block dirty bitmap information.
410#
0db6e54a
FZ
411# @name: #optional the name of the dirty bitmap (Since 2.4)
412#
1ad166b6
BC
413# @count: number of dirty bytes according to the dirty bitmap
414#
415# @granularity: granularity of the dirty bitmap in bytes (since 1.4)
416#
9abe3bdc 417# @status: current status of the dirty bitmap (since 2.4)
a113534f 418#
1ad166b6
BC
419# Since: 1.3
420##
895a2a80 421{ 'struct': 'BlockDirtyInfo',
a113534f 422 'data': {'*name': 'str', 'count': 'int', 'granularity': 'uint32',
9abe3bdc 423 'status': 'DirtyBitmapStatus'} }
1ad166b6
BC
424
425##
426# @BlockInfo:
427#
428# Block device information. This structure describes a virtual device and
429# the backing device associated with it.
430#
431# @device: The device name associated with the virtual device.
432#
433# @type: This field is returned only for compatibility reasons, it should
434# not be used (always returns 'unknown')
435#
436# @removable: True if the device supports removable media.
437#
438# @locked: True if the guest has locked this device from having its media
439# removed
440#
327032ce
HR
441# @tray_open: #optional True if the device's tray is open
442# (only present if it has a tray)
1ad166b6
BC
443#
444# @dirty-bitmaps: #optional dirty bitmaps information (only present if the
445# driver has one or more dirty bitmaps) (Since 2.0)
446#
447# @io-status: #optional @BlockDeviceIoStatus. Only present if the device
448# supports it and the VM is configured to stop on errors
c7c2ff0c 449# (supported device models: virtio-blk, ide, scsi-disk)
1ad166b6
BC
450#
451# @inserted: #optional @BlockDeviceInfo describing the device if media is
452# present
453#
454# Since: 0.14.0
455##
895a2a80 456{ 'struct': 'BlockInfo',
1ad166b6
BC
457 'data': {'device': 'str', 'type': 'str', 'removable': 'bool',
458 'locked': 'bool', '*inserted': 'BlockDeviceInfo',
459 '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus',
460 '*dirty-bitmaps': ['BlockDirtyInfo'] } }
461
462##
463# @query-block:
464#
465# Get a list of BlockInfo for all virtual block devices.
466#
467# Returns: a list of @BlockInfo describing each virtual block device
468#
469# Since: 0.14.0
470##
471{ 'command': 'query-block', 'returns': ['BlockInfo'] }
472
979e9b03
AG
473
474##
475# @BlockDeviceTimedStats:
476#
477# Statistics of a block device during a given interval of time.
478#
479# @interval_length: Interval used for calculating the statistics,
480# in seconds.
481#
482# @min_rd_latency_ns: Minimum latency of read operations in the
483# defined interval, in nanoseconds.
484#
485# @min_wr_latency_ns: Minimum latency of write operations in the
486# defined interval, in nanoseconds.
487#
488# @min_flush_latency_ns: Minimum latency of flush operations in the
489# defined interval, in nanoseconds.
490#
491# @max_rd_latency_ns: Maximum latency of read operations in the
492# defined interval, in nanoseconds.
493#
494# @max_wr_latency_ns: Maximum latency of write operations in the
495# defined interval, in nanoseconds.
496#
497# @max_flush_latency_ns: Maximum latency of flush operations in the
498# defined interval, in nanoseconds.
499#
500# @avg_rd_latency_ns: Average latency of read operations in the
501# defined interval, in nanoseconds.
502#
503# @avg_wr_latency_ns: Average latency of write operations in the
504# defined interval, in nanoseconds.
505#
506# @avg_flush_latency_ns: Average latency of flush operations in the
507# defined interval, in nanoseconds.
508#
96e4deda
AG
509# @avg_rd_queue_depth: Average number of pending read operations
510# in the defined interval.
511#
512# @avg_wr_queue_depth: Average number of pending write operations
513# in the defined interval.
514#
979e9b03
AG
515# Since: 2.5
516##
979e9b03
AG
517{ 'struct': 'BlockDeviceTimedStats',
518 'data': { 'interval_length': 'int', 'min_rd_latency_ns': 'int',
519 'max_rd_latency_ns': 'int', 'avg_rd_latency_ns': 'int',
520 'min_wr_latency_ns': 'int', 'max_wr_latency_ns': 'int',
521 'avg_wr_latency_ns': 'int', 'min_flush_latency_ns': 'int',
96e4deda
AG
522 'max_flush_latency_ns': 'int', 'avg_flush_latency_ns': 'int',
523 'avg_rd_queue_depth': 'number', 'avg_wr_queue_depth': 'number' } }
979e9b03 524
1ad166b6
BC
525##
526# @BlockDeviceStats:
527#
528# Statistics of a virtual block device or a block backing device.
529#
530# @rd_bytes: The number of bytes read by the device.
531#
532# @wr_bytes: The number of bytes written by the device.
533#
534# @rd_operations: The number of read operations performed by the device.
535#
536# @wr_operations: The number of write operations performed by the device.
537#
538# @flush_operations: The number of cache flush operations performed by the
539# device (since 0.15.0)
540#
541# @flush_total_time_ns: Total time spend on cache flushes in nano-seconds
542# (since 0.15.0).
543#
544# @wr_total_time_ns: Total time spend on writes in nano-seconds (since 0.15.0).
545#
546# @rd_total_time_ns: Total_time_spend on reads in nano-seconds (since 0.15.0).
547#
548# @wr_highest_offset: The offset after the greatest byte written to the
549# device. The intended use of this information is for
550# growable sparse files (like qcow2) that are used on top
551# of a physical device.
552#
f4564d53
PL
553# @rd_merged: Number of read requests that have been merged into another
554# request (Since 2.3).
555#
556# @wr_merged: Number of write requests that have been merged into another
557# request (Since 2.3).
558#
cb38fffb
AG
559# @idle_time_ns: #optional Time since the last I/O operation, in
560# nanoseconds. If the field is absent it means that
561# there haven't been any operations yet (Since 2.5).
562#
7ee12daf
AG
563# @failed_rd_operations: The number of failed read operations
564# performed by the device (Since 2.5)
565#
566# @failed_wr_operations: The number of failed write operations
567# performed by the device (Since 2.5)
568#
569# @failed_flush_operations: The number of failed flush operations
570# performed by the device (Since 2.5)
571#
572# @invalid_rd_operations: The number of invalid read operations
573# performed by the device (Since 2.5)
574#
575# @invalid_wr_operations: The number of invalid write operations
576# performed by the device (Since 2.5)
577#
578# @invalid_flush_operations: The number of invalid flush operations
579# performed by the device (Since 2.5)
580#
362e9299
AG
581# @account_invalid: Whether invalid operations are included in the
582# last access statistics (Since 2.5)
583#
584# @account_failed: Whether failed operations are included in the
585# latency and last access statistics (Since 2.5)
586#
979e9b03
AG
587# @timed_stats: Statistics specific to the set of previously defined
588# intervals of time (Since 2.5)
589#
1ad166b6
BC
590# Since: 0.14.0
591##
895a2a80 592{ 'struct': 'BlockDeviceStats',
1ad166b6
BC
593 'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'rd_operations': 'int',
594 'wr_operations': 'int', 'flush_operations': 'int',
595 'flush_total_time_ns': 'int', 'wr_total_time_ns': 'int',
f4564d53 596 'rd_total_time_ns': 'int', 'wr_highest_offset': 'int',
7ee12daf
AG
597 'rd_merged': 'int', 'wr_merged': 'int', '*idle_time_ns': 'int',
598 'failed_rd_operations': 'int', 'failed_wr_operations': 'int',
599 'failed_flush_operations': 'int', 'invalid_rd_operations': 'int',
362e9299 600 'invalid_wr_operations': 'int', 'invalid_flush_operations': 'int',
979e9b03
AG
601 'account_invalid': 'bool', 'account_failed': 'bool',
602 'timed_stats': ['BlockDeviceTimedStats'] } }
1ad166b6
BC
603
604##
605# @BlockStats:
606#
607# Statistics of a virtual block device or a block backing device.
608#
609# @device: #optional If the stats are for a virtual block device, the name
610# corresponding to the virtual block device.
611#
a06e4355 612# @node-name: #optional The node name of the device. (Since 2.3)
4875a779 613#
1ad166b6
BC
614# @stats: A @BlockDeviceStats for the device.
615#
616# @parent: #optional This describes the file block device if it has one.
617#
618# @backing: #optional This describes the backing block device if it has one.
619# (Since 2.0)
620#
621# Since: 0.14.0
622##
895a2a80 623{ 'struct': 'BlockStats',
4875a779
FZ
624 'data': {'*device': 'str', '*node-name': 'str',
625 'stats': 'BlockDeviceStats',
1ad166b6
BC
626 '*parent': 'BlockStats',
627 '*backing': 'BlockStats'} }
628
629##
630# @query-blockstats:
631#
632# Query the @BlockStats for all virtual block devices.
633#
f71eaa74
FZ
634# @query-nodes: #optional If true, the command will query all the block nodes
635# that have a node name, in a list which will include "parent"
636# information, but not "backing".
637# If false or omitted, the behavior is as before - query all the
638# device backends, recursively including their "parent" and
639# "backing". (Since 2.3)
640#
1ad166b6
BC
641# Returns: A list of @BlockStats for each virtual block devices.
642#
643# Since: 0.14.0
644##
f71eaa74
FZ
645{ 'command': 'query-blockstats',
646 'data': { '*query-nodes': 'bool' },
647 'returns': ['BlockStats'] }
1ad166b6
BC
648
649##
650# @BlockdevOnError:
651#
652# An enumeration of possible behaviors for errors on I/O operations.
653# The exact meaning depends on whether the I/O was initiated by a guest
654# or by a block job
655#
656# @report: for guest operations, report the error to the guest;
657# for jobs, cancel the job
658#
659# @ignore: ignore the error, only report a QMP event (BLOCK_IO_ERROR
660# or BLOCK_JOB_ERROR)
661#
662# @enospc: same as @stop on ENOSPC, same as @report otherwise.
663#
664# @stop: for guest operations, stop the virtual machine;
665# for jobs, pause the job
666#
8c398252
KW
667# @auto: inherit the error handling policy of the backend (since: 2.7)
668#
1ad166b6
BC
669# Since: 1.3
670##
671{ 'enum': 'BlockdevOnError',
8c398252 672 'data': ['report', 'ignore', 'enospc', 'stop', 'auto'] }
1ad166b6
BC
673
674##
675# @MirrorSyncMode:
676#
677# An enumeration of possible behaviors for the initial synchronization
678# phase of storage mirroring.
679#
680# @top: copies data in the topmost image to the destination
681#
682# @full: copies data from all images to the destination
683#
684# @none: only copy data written from now on
685#
4b80ab2b 686# @incremental: only copy data described by the dirty bitmap. Since: 2.4
d58d8453 687#
1ad166b6
BC
688# Since: 1.3
689##
690{ 'enum': 'MirrorSyncMode',
4b80ab2b 691 'data': ['top', 'full', 'none', 'incremental'] }
1ad166b6
BC
692
693##
694# @BlockJobType:
695#
696# Type of a block job.
697#
698# @commit: block commit job type, see "block-commit"
699#
700# @stream: block stream job type, see "block-stream"
701#
702# @mirror: drive mirror job type, see "drive-mirror"
703#
704# @backup: drive backup job type, see "drive-backup"
705#
706# Since: 1.7
707##
708{ 'enum': 'BlockJobType',
709 'data': ['commit', 'stream', 'mirror', 'backup'] }
710
711##
712# @BlockJobInfo:
713#
714# Information about a long-running block device operation.
715#
716# @type: the job type ('stream' for image streaming)
717#
6aae5be6
AG
718# @device: The job identifier. Originally the device name but other
719# values are allowed since QEMU 2.7
1ad166b6
BC
720#
721# @len: the maximum progress value
722#
723# @busy: false if the job is known to be in a quiescent state, with
724# no pending I/O. Since 1.3.
725#
726# @paused: whether the job is paused or, if @busy is true, will
727# pause itself as soon as possible. Since 1.3.
728#
729# @offset: the current progress value
730#
731# @speed: the rate limit, bytes per second
732#
733# @io-status: the status of the job (since 1.3)
734#
ef6dbf1e
HR
735# @ready: true if the job may be completed (since 2.2)
736#
1ad166b6
BC
737# Since: 1.1
738##
895a2a80 739{ 'struct': 'BlockJobInfo',
1ad166b6
BC
740 'data': {'type': 'str', 'device': 'str', 'len': 'int',
741 'offset': 'int', 'busy': 'bool', 'paused': 'bool', 'speed': 'int',
ef6dbf1e 742 'io-status': 'BlockDeviceIoStatus', 'ready': 'bool'} }
1ad166b6
BC
743
744##
745# @query-block-jobs:
746#
747# Return information about long-running block device operations.
748#
749# Returns: a list of @BlockJobInfo for each active block job
750#
751# Since: 1.1
752##
753{ 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }
754
755##
756# @block_passwd:
757#
758# This command sets the password of a block device that has not been open
759# with a password and requires one.
760#
761# The two cases where this can happen are a block device is created through
762# QEMU's initial command line or a block device is changed through the legacy
763# @change interface.
764#
765# In the event that the block device is created through the initial command
766# line, the VM will start in the stopped state regardless of whether '-S' is
767# used. The intention is for a management tool to query the block devices to
768# determine which ones are encrypted, set the passwords with this command, and
769# then start the guest with the @cont command.
770#
771# Either @device or @node-name must be set but not both.
772#
773# @device: #optional the name of the block backend device to set the password on
774#
775# @node-name: #optional graph node name to set the password on (Since 2.0)
776#
777# @password: the password to use for the device
778#
779# Returns: nothing on success
780# If @device is not a valid block device, DeviceNotFound
781# If @device is not encrypted, DeviceNotEncrypted
782#
783# Notes: Not all block formats support encryption and some that do are not
784# able to validate that a password is correct. Disk corruption may
785# occur if an invalid password is specified.
786#
787# Since: 0.14.0
788##
789{ 'command': 'block_passwd', 'data': {'*device': 'str',
790 '*node-name': 'str', 'password': 'str'} }
791
792##
793# @block_resize
794#
795# Resize a block image while a guest is running.
796#
797# Either @device or @node-name must be set but not both.
798#
799# @device: #optional the name of the device to get the image resized
800#
801# @node-name: #optional graph node name to get the image resized (Since 2.0)
802#
803# @size: new image size in bytes
804#
805# Returns: nothing on success
806# If @device is not a valid block device, DeviceNotFound
807#
808# Since: 0.14.0
809##
810{ 'command': 'block_resize', 'data': { '*device': 'str',
811 '*node-name': 'str',
812 'size': 'int' }}
813
814##
815# @NewImageMode
816#
817# An enumeration that tells QEMU how to set the backing file path in
818# a new image file.
819#
820# @existing: QEMU should look for an existing image file.
821#
822# @absolute-paths: QEMU should create a new image with absolute paths
823# for the backing file. If there is no backing file available, the new
824# image will not be backed either.
825#
826# Since: 1.1
827##
828{ 'enum': 'NewImageMode',
829 'data': [ 'existing', 'absolute-paths' ] }
830
831##
a911e6ae 832# @BlockdevSnapshotSync
1ad166b6
BC
833#
834# Either @device or @node-name must be set but not both.
835#
836# @device: #optional the name of the device to generate the snapshot from.
837#
838# @node-name: #optional graph node name to generate the snapshot from (Since 2.0)
839#
840# @snapshot-file: the target of the new image. A new file will be created.
841#
842# @snapshot-node-name: #optional the graph node name of the new image (Since 2.0)
843#
844# @format: #optional the format of the snapshot image, default is 'qcow2'.
845#
846# @mode: #optional whether and how QEMU should create a new image, default is
847# 'absolute-paths'.
848##
a911e6ae 849{ 'struct': 'BlockdevSnapshotSync',
1ad166b6
BC
850 'data': { '*device': 'str', '*node-name': 'str',
851 'snapshot-file': 'str', '*snapshot-node-name': 'str',
852 '*format': 'str', '*mode': 'NewImageMode' } }
853
43de7e2d
AG
854##
855# @BlockdevSnapshot
856#
857# @node: device or node name that will have a snapshot created.
858#
859# @overlay: reference to the existing block device that will become
860# the overlay of @node, as part of creating the snapshot.
861# It must not have a current backing file (this can be
862# achieved by passing "backing": "" to blockdev-add).
863#
864# Since 2.5
865##
866{ 'struct': 'BlockdevSnapshot',
867 'data': { 'node': 'str', 'overlay': 'str' } }
868
1ad166b6
BC
869##
870# @DriveBackup
871#
70559d49
AG
872# @job-id: #optional identifier for the newly-created block job. If
873# omitted, the device name will be used. (Since 2.7)
874#
b7e4fa22 875# @device: the device name or node-name of a root node which should be copied.
1ad166b6
BC
876#
877# @target: the target of the new image. If the file exists, or if it
878# is a device, the existing file/device will be used as the new
879# destination. If it does not exist, a new file will be created.
880#
881# @format: #optional the format of the new destination, default is to
882# probe if @mode is 'existing', else the format of the source
883#
884# @sync: what parts of the disk image should be copied to the destination
d58d8453
JS
885# (all the disk, only the sectors allocated in the topmost image, from a
886# dirty bitmap, or only new I/O).
1ad166b6
BC
887#
888# @mode: #optional whether and how QEMU should create a new image, default is
889# 'absolute-paths'.
890#
891# @speed: #optional the maximum speed, in bytes per second
892#
4b80ab2b
JS
893# @bitmap: #optional the name of dirty bitmap if sync is "incremental".
894# Must be present if sync is "incremental", must NOT be present
d58d8453
JS
895# otherwise. (Since 2.4)
896#
13b9414b 897# @compress: #optional true to compress data, if the target format supports it.
6bed0280 898# (default: false) (since 2.8)
13b9414b 899#
1ad166b6
BC
900# @on-source-error: #optional the action to take on an error on the source,
901# default 'report'. 'stop' and 'enospc' can only be used
902# if the block device supports io-status (see BlockInfo).
903#
904# @on-target-error: #optional the action to take on an error on the target,
905# default 'report' (no limitations, since this applies to
906# a different block device than @device).
907#
908# Note that @on-source-error and @on-target-error only affect background I/O.
909# If an error occurs during a guest write request, the device's rerror/werror
910# actions will be used.
911#
912# Since: 1.6
913##
895a2a80 914{ 'struct': 'DriveBackup',
70559d49
AG
915 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
916 '*format': 'str', 'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
13b9414b 917 '*speed': 'int', '*bitmap': 'str', '*compress': 'bool',
1ad166b6
BC
918 '*on-source-error': 'BlockdevOnError',
919 '*on-target-error': 'BlockdevOnError' } }
920
c29c1dd3
FZ
921##
922# @BlockdevBackup
923#
70559d49
AG
924# @job-id: #optional identifier for the newly-created block job. If
925# omitted, the device name will be used. (Since 2.7)
926#
cef34eeb 927# @device: the device name or node-name of a root node which should be copied.
c29c1dd3 928#
39d990ac 929# @target: the device name or node-name of the backup target node.
c29c1dd3
FZ
930#
931# @sync: what parts of the disk image should be copied to the destination
932# (all the disk, only the sectors allocated in the topmost image, or
933# only new I/O).
934#
935# @speed: #optional the maximum speed, in bytes per second. The default is 0,
936# for unlimited.
937#
3b7b1236 938# @compress: #optional true to compress data, if the target format supports it.
6bed0280 939# (default: false) (since 2.8)
3b7b1236 940#
c29c1dd3
FZ
941# @on-source-error: #optional the action to take on an error on the source,
942# default 'report'. 'stop' and 'enospc' can only be used
943# if the block device supports io-status (see BlockInfo).
944#
945# @on-target-error: #optional the action to take on an error on the target,
946# default 'report' (no limitations, since this applies to
947# a different block device than @device).
948#
949# Note that @on-source-error and @on-target-error only affect background I/O.
950# If an error occurs during a guest write request, the device's rerror/werror
951# actions will be used.
952#
953# Since: 2.3
954##
895a2a80 955{ 'struct': 'BlockdevBackup',
70559d49 956 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
c29c1dd3
FZ
957 'sync': 'MirrorSyncMode',
958 '*speed': 'int',
3b7b1236 959 '*compress': 'bool',
c29c1dd3
FZ
960 '*on-source-error': 'BlockdevOnError',
961 '*on-target-error': 'BlockdevOnError' } }
962
1ad166b6
BC
963##
964# @blockdev-snapshot-sync
965#
966# Generates a synchronous snapshot of a block device.
967#
a911e6ae 968# For the arguments, see the documentation of BlockdevSnapshotSync.
1ad166b6
BC
969#
970# Returns: nothing on success
971# If @device is not a valid block device, DeviceNotFound
972#
973# Since 0.14.0
974##
975{ 'command': 'blockdev-snapshot-sync',
a911e6ae 976 'data': 'BlockdevSnapshotSync' }
1ad166b6 977
43de7e2d
AG
978
979##
980# @blockdev-snapshot
981#
982# Generates a snapshot of a block device.
983#
984# For the arguments, see the documentation of BlockdevSnapshot.
985#
986# Since 2.5
987##
988{ 'command': 'blockdev-snapshot',
989 'data': 'BlockdevSnapshot' }
990
fa40e656
JC
991##
992# @change-backing-file
993#
994# Change the backing file in the image file metadata. This does not
995# cause QEMU to reopen the image file to reparse the backing filename
996# (it may, however, perform a reopen to change permissions from
997# r/o -> r/w -> r/o, if needed). The new backing file string is written
998# into the image file metadata, and the QEMU internal strings are
999# updated.
1000#
1001# @image-node-name: The name of the block driver state node of the
1002# image to modify.
1003#
7b5dca3f
KW
1004# @device: The device name or node-name of the root node that owns
1005# image-node-name.
fa40e656
JC
1006#
1007# @backing-file: The string to write as the backing file. This
1008# string is not validated, so care should be taken
1009# when specifying the string or the image chain may
1010# not be able to be reopened again.
1011#
1012# Since: 2.1
1013##
1014{ 'command': 'change-backing-file',
1015 'data': { 'device': 'str', 'image-node-name': 'str',
1016 'backing-file': 'str' } }
1017
1ad166b6
BC
1018##
1019# @block-commit
1020#
1021# Live commit of data from overlay image nodes into backing nodes - i.e.,
1022# writes data between 'top' and 'base' into 'base'.
1023#
fd62c609
AG
1024# @job-id: #optional identifier for the newly-created block job. If
1025# omitted, the device name will be used. (Since 2.7)
1026#
1d13b167 1027# @device: the device name or node-name of a root node
1ad166b6
BC
1028#
1029# @base: #optional The file name of the backing image to write data into.
1030# If not specified, this is the deepest backing image
1031#
7676e2c5
JC
1032# @top: #optional The file name of the backing image within the image chain,
1033# which contains the topmost data to be committed down. If
1034# not specified, this is the active layer.
1ad166b6 1035#
54e26900
JC
1036# @backing-file: #optional The backing file string to write into the overlay
1037# image of 'top'. If 'top' is the active layer,
1038# specifying a backing file string is an error. This
1039# filename is not validated.
1040#
1041# If a pathname string is such that it cannot be
1042# resolved by QEMU, that means that subsequent QMP or
1043# HMP commands must use node-names for the image in
1044# question, as filename lookup methods will fail.
1045#
1046# If not specified, QEMU will automatically determine
1047# the backing file string to use, or error out if
1048# there is no obvious choice. Care should be taken
1049# when specifying the string, to specify a valid
1050# filename or protocol.
1051# (Since 2.1)
1052#
1ad166b6
BC
1053# If top == base, that is an error.
1054# If top == active, the job will not be completed by itself,
1055# user needs to complete the job with the block-job-complete
1056# command after getting the ready event. (Since 2.0)
1057#
1058# If the base image is smaller than top, then the base image
1059# will be resized to be the same size as top. If top is
1060# smaller than the base image, the base will not be
1061# truncated. If you want the base image size to match the
1062# size of the smaller top, you can safely truncate it
1063# yourself once the commit operation successfully completes.
1064#
1ad166b6
BC
1065# @speed: #optional the maximum speed, in bytes per second
1066#
1067# Returns: Nothing on success
1068# If commit or stream is already active on this device, DeviceInUse
1069# If @device does not exist, DeviceNotFound
1070# If image commit is not supported by this device, NotSupported
1071# If @base or @top is invalid, a generic error is returned
1072# If @speed is invalid, InvalidParameter
1073#
1074# Since: 1.3
1075#
1076##
1077{ 'command': 'block-commit',
fd62c609 1078 'data': { '*job-id': 'str', 'device': 'str', '*base': 'str', '*top': 'str',
54e26900 1079 '*backing-file': 'str', '*speed': 'int' } }
1ad166b6
BC
1080
1081##
1082# @drive-backup
1083#
1084# Start a point-in-time copy of a block device to a new destination. The
1085# status of ongoing drive-backup operations can be checked with
1086# query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1087# The operation can be stopped before it has completed using the
1088# block-job-cancel command.
1089#
1090# For the arguments, see the documentation of DriveBackup.
1091#
1092# Returns: nothing on success
b7e4fa22 1093# If @device is not a valid block device, GenericError
1ad166b6
BC
1094#
1095# Since 1.6
1096##
81206a89
PB
1097{ 'command': 'drive-backup', 'boxed': true,
1098 'data': 'DriveBackup' }
1ad166b6 1099
c29c1dd3
FZ
1100##
1101# @blockdev-backup
1102#
1103# Start a point-in-time copy of a block device to a new destination. The
1104# status of ongoing blockdev-backup operations can be checked with
1105# query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1106# The operation can be stopped before it has completed using the
1107# block-job-cancel command.
1108#
1109# For the arguments, see the documentation of BlockdevBackup.
1110#
dc7a4a9e
PB
1111# Returns: nothing on success
1112# If @device is not a valid block device, DeviceNotFound
1113#
c29c1dd3
FZ
1114# Since 2.3
1115##
dc7a4a9e
PB
1116{ 'command': 'blockdev-backup', 'boxed': true,
1117 'data': 'BlockdevBackup' }
c29c1dd3
FZ
1118
1119
1ad166b6
BC
1120##
1121# @query-named-block-nodes
1122#
1123# Get the named block driver list
1124#
1125# Returns: the list of BlockDeviceInfo
1126#
1127# Since 2.0
1128##
1129{ 'command': 'query-named-block-nodes', 'returns': [ 'BlockDeviceInfo' ] }
1130
1131##
1132# @drive-mirror
1133#
1134# Start mirroring a block device's writes to a new destination.
1135#
faecd40a
EB
1136# See DriveMirror for parameter descriptions
1137#
1138# Returns: nothing on success
0524e93a 1139# If @device is not a valid block device, GenericError
faecd40a
EB
1140#
1141# Since 1.3
1142##
1143{ 'command': 'drive-mirror', 'boxed': true,
1144 'data': 'DriveMirror' }
1145
1146##
1147# DriveMirror
1148#
1149# A set of parameters describing drive mirror setup.
1150#
71aa9867
AG
1151# @job-id: #optional identifier for the newly-created block job. If
1152# omitted, the device name will be used. (Since 2.7)
1153#
0524e93a
KW
1154# @device: the device name or node-name of a root node whose writes should be
1155# mirrored.
1ad166b6
BC
1156#
1157# @target: the target of the new image. If the file exists, or if it
1158# is a device, the existing file/device will be used as the new
1159# destination. If it does not exist, a new file will be created.
1160#
1161# @format: #optional the format of the new destination, default is to
1162# probe if @mode is 'existing', else the format of the source
1163#
4c828dc6
BC
1164# @node-name: #optional the new block driver state node name in the graph
1165# (Since 2.1)
1166#
09158f00
BC
1167# @replaces: #optional with sync=full graph node name to be replaced by the new
1168# image when a whole image copy is done. This can be used to repair
1169# broken Quorum files. (Since 2.1)
1170#
1ad166b6
BC
1171# @mode: #optional whether and how QEMU should create a new image, default is
1172# 'absolute-paths'.
1173#
1174# @speed: #optional the maximum speed, in bytes per second
1175#
1176# @sync: what parts of the disk image should be copied to the destination
1177# (all the disk, only the sectors allocated in the topmost image, or
1178# only new I/O).
1179#
1180# @granularity: #optional granularity of the dirty bitmap, default is 64K
1181# if the image format doesn't have clusters, 4K if the clusters
1182# are smaller than that, else the cluster size. Must be a
1183# power of 2 between 512 and 64M (since 1.4).
1184#
1185# @buf-size: #optional maximum amount of data in flight from source to
1186# target (since 1.4).
1187#
1188# @on-source-error: #optional the action to take on an error on the source,
1189# default 'report'. 'stop' and 'enospc' can only be used
1190# if the block device supports io-status (see BlockInfo).
1191#
1192# @on-target-error: #optional the action to take on an error on the target,
1193# default 'report' (no limitations, since this applies to
1194# a different block device than @device).
0fc9f8ea
FZ
1195# @unmap: #optional Whether to try to unmap target sectors where source has
1196# only zero. If true, and target unallocated sectors will read as zero,
1197# target image sectors will be unmapped; otherwise, zeroes will be
1198# written. Both will result in identical contents.
1199# Default is true. (Since 2.4)
1ad166b6 1200#
1ad166b6
BC
1201# Since 1.3
1202##
faecd40a 1203{ 'struct': 'DriveMirror',
71aa9867
AG
1204 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1205 '*format': 'str', '*node-name': 'str', '*replaces': 'str',
1ad166b6
BC
1206 'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
1207 '*speed': 'int', '*granularity': 'uint32',
1208 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
0fc9f8ea
FZ
1209 '*on-target-error': 'BlockdevOnError',
1210 '*unmap': 'bool' } }
1ad166b6 1211
341ebc2f
JS
1212##
1213# @BlockDirtyBitmap
1214#
1215# @node: name of device/node which the bitmap is tracking
1216#
1217# @name: name of the dirty bitmap
1218#
1219# Since 2.4
1220##
895a2a80 1221{ 'struct': 'BlockDirtyBitmap',
341ebc2f
JS
1222 'data': { 'node': 'str', 'name': 'str' } }
1223
1224##
1225# @BlockDirtyBitmapAdd
1226#
1227# @node: name of device/node which the bitmap is tracking
1228#
1229# @name: name of the dirty bitmap
1230#
1231# @granularity: #optional the bitmap granularity, default is 64k for
1232# block-dirty-bitmap-add
1233#
1234# Since 2.4
1235##
895a2a80 1236{ 'struct': 'BlockDirtyBitmapAdd',
341ebc2f
JS
1237 'data': { 'node': 'str', 'name': 'str', '*granularity': 'uint32' } }
1238
1239##
1240# @block-dirty-bitmap-add
1241#
1242# Create a dirty bitmap with a name on the node
1243#
1244# Returns: nothing on success
1245# If @node is not a valid block device or node, DeviceNotFound
1246# If @name is already taken, GenericError with an explanation
1247#
1248# Since 2.4
1249##
1250{ 'command': 'block-dirty-bitmap-add',
1251 'data': 'BlockDirtyBitmapAdd' }
1252
1253##
1254# @block-dirty-bitmap-remove
1255#
1256# Remove a dirty bitmap on the node
1257#
1258# Returns: nothing on success
1259# If @node is not a valid block device or node, DeviceNotFound
1260# If @name is not found, GenericError with an explanation
9bd2b08f 1261# if @name is frozen by an operation, GenericError
341ebc2f
JS
1262#
1263# Since 2.4
1264##
1265{ 'command': 'block-dirty-bitmap-remove',
1266 'data': 'BlockDirtyBitmap' }
1267
e74e6b78
JS
1268##
1269# @block-dirty-bitmap-clear
1270#
1271# Clear (reset) a dirty bitmap on the device
1272#
1273# Returns: nothing on success
1274# If @node is not a valid block device, DeviceNotFound
1275# If @name is not found, GenericError with an explanation
1276#
1277# Since 2.4
1278##
1279{ 'command': 'block-dirty-bitmap-clear',
1280 'data': 'BlockDirtyBitmap' }
1281
df92562e
FZ
1282##
1283# @blockdev-mirror
1284#
1285# Start mirroring a block device's writes to a new destination.
1286#
71aa9867
AG
1287# @job-id: #optional identifier for the newly-created block job. If
1288# omitted, the device name will be used. (Since 2.7)
1289#
07eec652
KW
1290# @device: The device name or node-name of a root node whose writes should be
1291# mirrored.
df92562e
FZ
1292#
1293# @target: the id or node-name of the block device to mirror to. This mustn't be
1294# attached to guest.
1295#
1296# @replaces: #optional with sync=full graph node name to be replaced by the new
1297# image when a whole image copy is done. This can be used to repair
1298# broken Quorum files.
1299#
1300# @speed: #optional the maximum speed, in bytes per second
1301#
1302# @sync: what parts of the disk image should be copied to the destination
1303# (all the disk, only the sectors allocated in the topmost image, or
1304# only new I/O).
1305#
1306# @granularity: #optional granularity of the dirty bitmap, default is 64K
1307# if the image format doesn't have clusters, 4K if the clusters
1308# are smaller than that, else the cluster size. Must be a
1309# power of 2 between 512 and 64M
1310#
1311# @buf-size: #optional maximum amount of data in flight from source to
1312# target
1313#
1314# @on-source-error: #optional the action to take on an error on the source,
1315# default 'report'. 'stop' and 'enospc' can only be used
1316# if the block device supports io-status (see BlockInfo).
1317#
1318# @on-target-error: #optional the action to take on an error on the target,
1319# default 'report' (no limitations, since this applies to
1320# a different block device than @device).
1321#
1322# Returns: nothing on success.
1323#
1324# Since 2.6
1325##
1326{ 'command': 'blockdev-mirror',
71aa9867 1327 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
df92562e
FZ
1328 '*replaces': 'str',
1329 'sync': 'MirrorSyncMode',
1330 '*speed': 'int', '*granularity': 'uint32',
1331 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1332 '*on-target-error': 'BlockdevOnError' } }
1333
1ad166b6
BC
1334##
1335# @block_set_io_throttle:
1336#
1337# Change I/O throttle limits for a block drive.
1338#
76f4afb4
AG
1339# Since QEMU 2.4, each device with I/O limits is member of a throttle
1340# group.
1341#
1342# If two or more devices are members of the same group, the limits
1343# will apply to the combined I/O of the whole group in a round-robin
1344# fashion. Therefore, setting new I/O limits to a device will affect
1345# the whole group.
1346#
1347# The name of the group can be specified using the 'group' parameter.
1348# If the parameter is unset, it is assumed to be the current group of
1349# that device. If it's not in any group yet, the name of the device
1350# will be used as the name for its group.
1351#
1352# The 'group' parameter can also be used to move a device to a
1353# different group. In this case the limits specified in the parameters
1354# will be applied to the new group only.
1355#
1356# I/O limits can be disabled by setting all of them to 0. In this case
1357# the device will be removed from its group and the rest of its
6b932c0a 1358# members will not be affected. The 'group' parameter is ignored.
76f4afb4 1359#
4dc9397b
EB
1360# See BlockIOThrottle for parameter descriptions.
1361#
1362# Returns: Nothing on success
1363# If @device is not a valid block device, DeviceNotFound
1364#
1365# Since: 1.1
1366##
1367{ 'command': 'block_set_io_throttle', 'boxed': true,
1368 'data': 'BlockIOThrottle' }
1369
1370##
1371# BlockIOThrottle
1372#
1373# A set of parameters describing block throttling.
1374#
7a9877a0
KW
1375# @device: #optional Block device name (deprecated, use @id instead)
1376#
1377# @id: #optional The name or QOM path of the guest device (since: 2.8)
1ad166b6
BC
1378#
1379# @bps: total throughput limit in bytes per second
1380#
1381# @bps_rd: read throughput limit in bytes per second
1382#
1383# @bps_wr: write throughput limit in bytes per second
1384#
1385# @iops: total I/O operations per second
1386#
f5a845fd 1387# @iops_rd: read I/O operations per second
1ad166b6
BC
1388#
1389# @iops_wr: write I/O operations per second
1390#
dce13204
AG
1391# @bps_max: #optional total throughput limit during bursts,
1392# in bytes (Since 1.7)
1ad166b6 1393#
dce13204
AG
1394# @bps_rd_max: #optional read throughput limit during bursts,
1395# in bytes (Since 1.7)
1ad166b6 1396#
dce13204
AG
1397# @bps_wr_max: #optional write throughput limit during bursts,
1398# in bytes (Since 1.7)
1ad166b6 1399#
dce13204
AG
1400# @iops_max: #optional total I/O operations per second during bursts,
1401# in bytes (Since 1.7)
1ad166b6 1402#
dce13204
AG
1403# @iops_rd_max: #optional read I/O operations per second during bursts,
1404# in bytes (Since 1.7)
1ad166b6 1405#
dce13204
AG
1406# @iops_wr_max: #optional write I/O operations per second during bursts,
1407# in bytes (Since 1.7)
1408#
1409# @bps_max_length: #optional maximum length of the @bps_max burst
1410# period, in seconds. It must only
1411# be set if @bps_max is set as well.
1412# Defaults to 1. (Since 2.6)
1413#
1414# @bps_rd_max_length: #optional maximum length of the @bps_rd_max
1415# burst period, in seconds. It must only
1416# be set if @bps_rd_max is set as well.
1417# Defaults to 1. (Since 2.6)
1418#
1419# @bps_wr_max_length: #optional maximum length of the @bps_wr_max
1420# burst period, in seconds. It must only
1421# be set if @bps_wr_max is set as well.
1422# Defaults to 1. (Since 2.6)
1423#
1424# @iops_max_length: #optional maximum length of the @iops burst
1425# period, in seconds. It must only
1426# be set if @iops_max is set as well.
1427# Defaults to 1. (Since 2.6)
1428#
1429# @iops_rd_max_length: #optional maximum length of the @iops_rd_max
1430# burst period, in seconds. It must only
1431# be set if @iops_rd_max is set as well.
1432# Defaults to 1. (Since 2.6)
1433#
1434# @iops_wr_max_length: #optional maximum length of the @iops_wr_max
1435# burst period, in seconds. It must only
1436# be set if @iops_wr_max is set as well.
1437# Defaults to 1. (Since 2.6)
1ad166b6
BC
1438#
1439# @iops_size: #optional an I/O size in bytes (Since 1.7)
1440#
76f4afb4
AG
1441# @group: #optional throttle group name (Since 2.4)
1442#
1ad166b6
BC
1443# Since: 1.1
1444##
4dc9397b 1445{ 'struct': 'BlockIOThrottle',
7a9877a0
KW
1446 'data': { '*device': 'str', '*id': 'str', 'bps': 'int', 'bps_rd': 'int',
1447 'bps_wr': 'int', 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
1ad166b6
BC
1448 '*bps_max': 'int', '*bps_rd_max': 'int',
1449 '*bps_wr_max': 'int', '*iops_max': 'int',
1450 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
dce13204
AG
1451 '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
1452 '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
1453 '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
76f4afb4 1454 '*iops_size': 'int', '*group': 'str' } }
1ad166b6
BC
1455
1456##
1457# @block-stream:
1458#
1459# Copy data from a backing file into a block device.
1460#
1461# The block streaming operation is performed in the background until the entire
1462# backing file has been copied. This command returns immediately once streaming
1463# has started. The status of ongoing block streaming operations can be checked
1464# with query-block-jobs. The operation can be stopped before it has completed
1465# using the block-job-cancel command.
1466#
1467# If a base file is specified then sectors are not copied from that base file and
1468# its backing chain. When streaming completes the image file will have the base
1469# file as its backing file. This can be used to stream a subset of the backing
1470# file chain instead of flattening the entire image.
1471#
1472# On successful completion the image file is updated to drop the backing file
1473# and the BLOCK_JOB_COMPLETED event is emitted.
1474#
2323322e
AG
1475# @job-id: #optional identifier for the newly-created block job. If
1476# omitted, the device name will be used. (Since 2.7)
1477#
b6c1bae5 1478# @device: the device name or node-name of a root node
1ad166b6
BC
1479#
1480# @base: #optional the common backing file name
1481#
13d8cc51
JC
1482# @backing-file: #optional The backing file string to write into the active
1483# layer. This filename is not validated.
1484#
1485# If a pathname string is such that it cannot be
1486# resolved by QEMU, that means that subsequent QMP or
1487# HMP commands must use node-names for the image in
1488# question, as filename lookup methods will fail.
1489#
1490# If not specified, QEMU will automatically determine
1491# the backing file string to use, or error out if there
1492# is no obvious choice. Care should be taken when
1493# specifying the string, to specify a valid filename or
1494# protocol.
1495# (Since 2.1)
1496#
1ad166b6
BC
1497# @speed: #optional the maximum speed, in bytes per second
1498#
1499# @on-error: #optional the action to take on an error (default report).
1500# 'stop' and 'enospc' can only be used if the block device
1501# supports io-status (see BlockInfo). Since 1.3.
1502#
1ad166b6
BC
1503# Since: 1.1
1504##
1505{ 'command': 'block-stream',
2323322e
AG
1506 'data': { '*job-id': 'str', 'device': 'str', '*base': 'str',
1507 '*backing-file': 'str', '*speed': 'int',
1508 '*on-error': 'BlockdevOnError' } }
1ad166b6
BC
1509
1510##
1511# @block-job-set-speed:
1512#
1513# Set maximum speed for a background block operation.
1514#
1515# This command can only be issued when there is an active block job.
1516#
1517# Throttling can be disabled by setting the speed to 0.
1518#
6aae5be6
AG
1519# @device: The job identifier. This used to be a device name (hence
1520# the name of the parameter), but since QEMU 2.7 it can have
1521# other values.
1ad166b6
BC
1522#
1523# @speed: the maximum speed, in bytes per second, or 0 for unlimited.
1524# Defaults to 0.
1525#
1526# Returns: Nothing on success
1527# If no background operation is active on this device, DeviceNotActive
1528#
1529# Since: 1.1
1530##
1531{ 'command': 'block-job-set-speed',
1532 'data': { 'device': 'str', 'speed': 'int' } }
1533
1534##
1535# @block-job-cancel:
1536#
1537# Stop an active background block operation.
1538#
1539# This command returns immediately after marking the active background block
1540# operation for cancellation. It is an error to call this command if no
1541# operation is in progress.
1542#
1543# The operation will cancel as soon as possible and then emit the
1544# BLOCK_JOB_CANCELLED event. Before that happens the job is still visible when
1545# enumerated using query-block-jobs.
1546#
1547# For streaming, the image file retains its backing file unless the streaming
1548# operation happens to complete just as it is being cancelled. A new streaming
1549# operation can be started at a later time to finish copying all data from the
1550# backing file.
1551#
6aae5be6
AG
1552# @device: The job identifier. This used to be a device name (hence
1553# the name of the parameter), but since QEMU 2.7 it can have
1554# other values.
1ad166b6
BC
1555#
1556# @force: #optional whether to allow cancellation of a paused job (default
1557# false). Since 1.3.
1558#
1559# Returns: Nothing on success
1560# If no background operation is active on this device, DeviceNotActive
1561#
1562# Since: 1.1
1563##
1564{ 'command': 'block-job-cancel', 'data': { 'device': 'str', '*force': 'bool' } }
1565
1566##
1567# @block-job-pause:
1568#
1569# Pause an active background block operation.
1570#
1571# This command returns immediately after marking the active background block
1572# operation for pausing. It is an error to call this command if no
1573# operation is in progress. Pausing an already paused job has no cumulative
1574# effect; a single block-job-resume command will resume the job.
1575#
1576# The operation will pause as soon as possible. No event is emitted when
1577# the operation is actually paused. Cancelling a paused job automatically
1578# resumes it.
1579#
6aae5be6
AG
1580# @device: The job identifier. This used to be a device name (hence
1581# the name of the parameter), but since QEMU 2.7 it can have
1582# other values.
1ad166b6
BC
1583#
1584# Returns: Nothing on success
1585# If no background operation is active on this device, DeviceNotActive
1586#
1587# Since: 1.3
1588##
1589{ 'command': 'block-job-pause', 'data': { 'device': 'str' } }
1590
1591##
1592# @block-job-resume:
1593#
1594# Resume an active background block operation.
1595#
1596# This command returns immediately after resuming a paused background block
1597# operation. It is an error to call this command if no operation is in
1598# progress. Resuming an already running job is not an error.
1599#
1600# This command also clears the error status of the job.
1601#
6aae5be6
AG
1602# @device: The job identifier. This used to be a device name (hence
1603# the name of the parameter), but since QEMU 2.7 it can have
1604# other values.
1ad166b6
BC
1605#
1606# Returns: Nothing on success
1607# If no background operation is active on this device, DeviceNotActive
1608#
1609# Since: 1.3
1610##
1611{ 'command': 'block-job-resume', 'data': { 'device': 'str' } }
1612
1613##
1614# @block-job-complete:
1615#
1616# Manually trigger completion of an active background block operation. This
1617# is supported for drive mirroring, where it also switches the device to
1618# write to the target path only. The ability to complete is signaled with
1619# a BLOCK_JOB_READY event.
1620#
1621# This command completes an active background block operation synchronously.
1622# The ordering of this command's return with the BLOCK_JOB_COMPLETED event
1623# is not defined. Note that if an I/O error occurs during the processing of
1624# this command: 1) the command itself will fail; 2) the error will be processed
1625# according to the rerror/werror arguments that were specified when starting
1626# the operation.
1627#
1628# A cancelled or paused job cannot be completed.
1629#
6aae5be6
AG
1630# @device: The job identifier. This used to be a device name (hence
1631# the name of the parameter), but since QEMU 2.7 it can have
1632# other values.
1ad166b6
BC
1633#
1634# Returns: Nothing on success
1635# If no background operation is active on this device, DeviceNotActive
1636#
1637# Since: 1.3
1638##
1639{ 'command': 'block-job-complete', 'data': { 'device': 'str' } }
1640
1641##
1642# @BlockdevDiscardOptions
1643#
1644# Determines how to handle discard requests.
1645#
1646# @ignore: Ignore the request
1647# @unmap: Forward as an unmap request
1648#
1649# Since: 1.7
1650##
1651{ 'enum': 'BlockdevDiscardOptions',
1652 'data': [ 'ignore', 'unmap' ] }
1653
1654##
1655# @BlockdevDetectZeroesOptions
1656#
1657# Describes the operation mode for the automatic conversion of plain
1658# zero writes by the OS to driver specific optimized zero write commands.
1659#
1660# @off: Disabled (default)
1661# @on: Enabled
1662# @unmap: Enabled and even try to unmap blocks if possible. This requires
1663# also that @BlockdevDiscardOptions is set to unmap for this device.
1664#
1665# Since: 2.1
1666##
1667{ 'enum': 'BlockdevDetectZeroesOptions',
1668 'data': [ 'off', 'on', 'unmap' ] }
1669
1670##
1671# @BlockdevAioOptions
1672#
1673# Selects the AIO backend to handle I/O requests
1674#
1675# @threads: Use qemu's thread pool
1676# @native: Use native AIO backend (only Linux and Windows)
1677#
1678# Since: 1.7
1679##
1680{ 'enum': 'BlockdevAioOptions',
1681 'data': [ 'threads', 'native' ] }
1682
1683##
1684# @BlockdevCacheOptions
1685#
1686# Includes cache-related options for block devices
1687#
1ad166b6
BC
1688# @direct: #optional enables use of O_DIRECT (bypass the host page cache;
1689# default: false)
1690# @no-flush: #optional ignore any flush requests for the device (default:
1691# false)
1692#
1693# Since: 1.7
1694##
895a2a80 1695{ 'struct': 'BlockdevCacheOptions',
aaa436f9 1696 'data': { '*direct': 'bool',
1ad166b6
BC
1697 '*no-flush': 'bool' } }
1698
1699##
1700# @BlockdevDriver
1701#
1702# Drivers that are supported in block device operations.
1703#
f709623b 1704# @host_device, @host_cdrom: Since 2.1
0a189ffb 1705# @gluster: Since 2.7
1ad166b6
BC
1706#
1707# Since: 2.0
1708##
1709{ 'enum': 'BlockdevDriver',
550830f9 1710 'data': [ 'archipelago', 'blkdebug', 'blkverify', 'bochs', 'cloop',
7edac2dd
PKK
1711 'dmg', 'file', 'ftp', 'ftps', 'gluster', 'host_cdrom',
1712 'host_device', 'http', 'https', 'luks', 'null-aio', 'null-co',
82ac5543
WC
1713 'parallels', 'qcow', 'qcow2', 'qed', 'quorum', 'raw',
1714 'replication', 'tftp', 'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat' ] }
1ad166b6 1715
1ad166b6
BC
1716##
1717# @BlockdevOptionsFile
1718#
68555285 1719# Driver specific block device options for the file backend.
1ad166b6
BC
1720#
1721# @filename: path to the image file
0a4279d9 1722# @aio: #optional AIO backend (default: threads) (since: 2.8)
1ad166b6
BC
1723#
1724# Since: 1.7
1725##
895a2a80 1726{ 'struct': 'BlockdevOptionsFile',
0a4279d9
KW
1727 'data': { 'filename': 'str',
1728 '*aio': 'BlockdevAioOptions' } }
1ad166b6 1729
e819ab22
FZ
1730##
1731# @BlockdevOptionsNull
1732#
1733# Driver specific block device options for the null backend.
1734#
1735# @size: #optional size of the device in bytes.
e5e51dd3
FZ
1736# @latency-ns: #optional emulated latency (in nanoseconds) in processing
1737# requests. Default to zero which completes requests immediately.
1738# (Since 2.4)
e819ab22
FZ
1739#
1740# Since: 2.2
1741##
895a2a80 1742{ 'struct': 'BlockdevOptionsNull',
e5e51dd3 1743 'data': { '*size': 'int', '*latency-ns': 'uint64' } }
e819ab22 1744
1ad166b6
BC
1745##
1746# @BlockdevOptionsVVFAT
1747#
1748# Driver specific block device options for the vvfat protocol.
1749#
1750# @dir: directory to be exported as FAT image
1751# @fat-type: #optional FAT type: 12, 16 or 32
1752# @floppy: #optional whether to export a floppy image (true) or
1753# partitioned hard disk (false; default)
d5941dda
WB
1754# @label: #optional set the volume label, limited to 11 bytes. FAT16 and
1755# FAT32 traditionally have some restrictions on labels, which are
1756# ignored by most operating systems. Defaults to "QEMU VVFAT".
1757# (since 2.4)
1ad166b6
BC
1758# @rw: #optional whether to allow write operations (default: false)
1759#
1760# Since: 1.7
1761##
895a2a80 1762{ 'struct': 'BlockdevOptionsVVFAT',
1ad166b6 1763 'data': { 'dir': 'str', '*fat-type': 'int', '*floppy': 'bool',
d5941dda 1764 '*label': 'str', '*rw': 'bool' } }
1ad166b6
BC
1765
1766##
1767# @BlockdevOptionsGenericFormat
1768#
1769# Driver specific block device options for image format that have no option
1770# besides their data source.
1771#
1772# @file: reference to or definition of the data source block device
1773#
1774# Since: 1.7
1775##
895a2a80 1776{ 'struct': 'BlockdevOptionsGenericFormat',
1ad166b6
BC
1777 'data': { 'file': 'BlockdevRef' } }
1778
78368575
DB
1779##
1780# @BlockdevOptionsLUKS
1781#
1782# Driver specific block device options for LUKS.
1783#
1784# @key-secret: #optional the ID of a QCryptoSecret object providing
1785# the decryption key (since 2.6). Mandatory except when
1786# doing a metadata-only probe of the image.
1787#
1788# Since: 2.6
1789##
1790{ 'struct': 'BlockdevOptionsLUKS',
1791 'base': 'BlockdevOptionsGenericFormat',
1792 'data': { '*key-secret': 'str' } }
1793
1794
1ad166b6
BC
1795##
1796# @BlockdevOptionsGenericCOWFormat
1797#
1798# Driver specific block device options for image format that have no option
1799# besides their data source and an optional backing file.
1800#
1801# @backing: #optional reference to or definition of the backing file block
1802# device (if missing, taken from the image file content). It is
1803# allowed to pass an empty string here in order to disable the
1804# default backing file.
1805#
1806# Since: 1.7
1807##
895a2a80 1808{ 'struct': 'BlockdevOptionsGenericCOWFormat',
1ad166b6
BC
1809 'base': 'BlockdevOptionsGenericFormat',
1810 'data': { '*backing': 'BlockdevRef' } }
1811
f6585811
HR
1812##
1813# @Qcow2OverlapCheckMode
1814#
1815# General overlap check modes.
1816#
1817# @none: Do not perform any checks
1818#
1819# @constant: Perform only checks which can be done in constant time and
1820# without reading anything from disk
1821#
1822# @cached: Perform only checks which can be done without reading anything
1823# from disk
1824#
1825# @all: Perform all available overlap checks
1826#
1827# Since: 2.2
1828##
1829{ 'enum': 'Qcow2OverlapCheckMode',
1830 'data': [ 'none', 'constant', 'cached', 'all' ] }
1831
1832##
1833# @Qcow2OverlapCheckFlags
1834#
1835# Structure of flags for each metadata structure. Setting a field to 'true'
1836# makes qemu guard that structure against unintended overwriting. The default
1837# value is chosen according to the template given.
1838#
1839# @template: Specifies a template mode which can be adjusted using the other
1840# flags, defaults to 'cached'
1841#
1842# Since: 2.2
1843##
895a2a80 1844{ 'struct': 'Qcow2OverlapCheckFlags',
f6585811
HR
1845 'data': { '*template': 'Qcow2OverlapCheckMode',
1846 '*main-header': 'bool',
1847 '*active-l1': 'bool',
1848 '*active-l2': 'bool',
1849 '*refcount-table': 'bool',
1850 '*refcount-block': 'bool',
1851 '*snapshot-table': 'bool',
1852 '*inactive-l1': 'bool',
1853 '*inactive-l2': 'bool' } }
1854
1855##
1856# @Qcow2OverlapChecks
1857#
1858# Specifies which metadata structures should be guarded against unintended
1859# overwriting.
1860#
1861# @flags: set of flags for separate specification of each metadata structure
1862# type
1863#
1864# @mode: named mode which chooses a specific set of flags
1865#
1866# Since: 2.2
1867##
ab916fad 1868{ 'alternate': 'Qcow2OverlapChecks',
f6585811
HR
1869 'data': { 'flags': 'Qcow2OverlapCheckFlags',
1870 'mode': 'Qcow2OverlapCheckMode' } }
1871
1ad166b6
BC
1872##
1873# @BlockdevOptionsQcow2
1874#
1875# Driver specific block device options for qcow2.
1876#
1877# @lazy-refcounts: #optional whether to enable the lazy refcounts
1878# feature (default is taken from the image file)
1879#
1880# @pass-discard-request: #optional whether discard requests to the qcow2
1881# device should be forwarded to the data source
1882#
1883# @pass-discard-snapshot: #optional whether discard requests for the data source
1884# should be issued when a snapshot operation (e.g.
1885# deleting a snapshot) frees clusters in the qcow2 file
1886#
1887# @pass-discard-other: #optional whether discard requests for the data source
1888# should be issued on other occasions where a cluster
1889# gets freed
1890#
f6585811
HR
1891# @overlap-check: #optional which overlap checks to perform for writes
1892# to the image, defaults to 'cached' (since 2.2)
1893#
1894# @cache-size: #optional the maximum total size of the L2 table and
1895# refcount block caches in bytes (since 2.2)
1896#
1897# @l2-cache-size: #optional the maximum size of the L2 table cache in
1898# bytes (since 2.2)
1899#
1900# @refcount-cache-size: #optional the maximum size of the refcount block cache
1901# in bytes (since 2.2)
1902#
279621c0
AG
1903# @cache-clean-interval: #optional clean unused entries in the L2 and refcount
1904# caches. The interval is in seconds. The default value
1905# is 0 and it disables this feature (since 2.5)
1906#
1ad166b6
BC
1907# Since: 1.7
1908##
895a2a80 1909{ 'struct': 'BlockdevOptionsQcow2',
1ad166b6
BC
1910 'base': 'BlockdevOptionsGenericCOWFormat',
1911 'data': { '*lazy-refcounts': 'bool',
1912 '*pass-discard-request': 'bool',
1913 '*pass-discard-snapshot': 'bool',
f6585811
HR
1914 '*pass-discard-other': 'bool',
1915 '*overlap-check': 'Qcow2OverlapChecks',
1916 '*cache-size': 'int',
1917 '*l2-cache-size': 'int',
279621c0
AG
1918 '*refcount-cache-size': 'int',
1919 '*cache-clean-interval': 'int' } }
1ad166b6 1920
b1de5f43
CN
1921
1922##
1923# @BlockdevOptionsArchipelago
1924#
1925# Driver specific block device options for Archipelago.
1926#
1927# @volume: Name of the Archipelago volume image
1928#
1929# @mport: #optional The port number on which mapperd is
1930# listening. This is optional
1931# and if not specified, QEMU will make Archipelago
1932# use the default port (1001).
1933#
1934# @vport: #optional The port number on which vlmcd is
1935# listening. This is optional
1936# and if not specified, QEMU will make Archipelago
1937# use the default port (501).
1938#
1939# @segment: #optional The name of the shared memory segment
1940# Archipelago stack is using. This is optional
1941# and if not specified, QEMU will make Archipelago
1942# use the default value, 'archipelago'.
1943# Since: 2.2
1944##
895a2a80 1945{ 'struct': 'BlockdevOptionsArchipelago',
b1de5f43
CN
1946 'data': { 'volume': 'str',
1947 '*mport': 'int',
1948 '*vport': 'int',
1949 '*segment': 'str' } }
1950
1951
1ad166b6
BC
1952##
1953# @BlkdebugEvent
1954#
1955# Trigger events supported by blkdebug.
a31939e6
EB
1956#
1957# Since: 2.0
1ad166b6 1958##
a31939e6 1959{ 'enum': 'BlkdebugEvent', 'prefix': 'BLKDBG',
5be5b776
EB
1960 'data': [ 'l1_update', 'l1_grow_alloc_table', 'l1_grow_write_table',
1961 'l1_grow_activate_table', 'l2_load', 'l2_update',
1962 'l2_update_compressed', 'l2_alloc_cow_read', 'l2_alloc_write',
1ad166b6
BC
1963 'read_aio', 'read_backing_aio', 'read_compressed', 'write_aio',
1964 'write_compressed', 'vmstate_load', 'vmstate_save', 'cow_read',
1965 'cow_write', 'reftable_load', 'reftable_grow', 'reftable_update',
1966 'refblock_load', 'refblock_update', 'refblock_update_part',
5be5b776
EB
1967 'refblock_alloc', 'refblock_alloc_hookup', 'refblock_alloc_write',
1968 'refblock_alloc_write_blocks', 'refblock_alloc_write_table',
1969 'refblock_alloc_switch_table', 'cluster_alloc',
1ad166b6 1970 'cluster_alloc_bytes', 'cluster_free', 'flush_to_os',
5be5b776
EB
1971 'flush_to_disk', 'pwritev_rmw_head', 'pwritev_rmw_after_head',
1972 'pwritev_rmw_tail', 'pwritev_rmw_after_tail', 'pwritev',
d21de4d9 1973 'pwritev_zero', 'pwritev_done', 'empty_image_prepare' ] }
1ad166b6
BC
1974
1975##
1976# @BlkdebugInjectErrorOptions
1977#
1978# Describes a single error injection for blkdebug.
1979#
1980# @event: trigger event
1981#
1982# @state: #optional the state identifier blkdebug needs to be in to
1983# actually trigger the event; defaults to "any"
1984#
1985# @errno: #optional error identifier (errno) to be returned; defaults to
1986# EIO
1987#
1988# @sector: #optional specifies the sector index which has to be affected
1989# in order to actually trigger the event; defaults to "any
1990# sector"
1991#
1992# @once: #optional disables further events after this one has been
1993# triggered; defaults to false
1994#
1995# @immediately: #optional fail immediately; defaults to false
1996#
1997# Since: 2.0
1998##
895a2a80 1999{ 'struct': 'BlkdebugInjectErrorOptions',
1ad166b6
BC
2000 'data': { 'event': 'BlkdebugEvent',
2001 '*state': 'int',
2002 '*errno': 'int',
2003 '*sector': 'int',
2004 '*once': 'bool',
2005 '*immediately': 'bool' } }
2006
2007##
2008# @BlkdebugSetStateOptions
2009#
2010# Describes a single state-change event for blkdebug.
2011#
2012# @event: trigger event
2013#
2014# @state: #optional the current state identifier blkdebug needs to be in;
2015# defaults to "any"
2016#
2017# @new_state: the state identifier blkdebug is supposed to assume if
2018# this event is triggered
2019#
2020# Since: 2.0
2021##
895a2a80 2022{ 'struct': 'BlkdebugSetStateOptions',
1ad166b6
BC
2023 'data': { 'event': 'BlkdebugEvent',
2024 '*state': 'int',
2025 'new_state': 'int' } }
2026
2027##
2028# @BlockdevOptionsBlkdebug
2029#
2030# Driver specific block device options for blkdebug.
2031#
2032# @image: underlying raw block device (or image file)
2033#
2034# @config: #optional filename of the configuration file
2035#
835db3ee
EB
2036# @align: #optional required alignment for requests in bytes,
2037# must be power of 2, or 0 for default
1ad166b6
BC
2038#
2039# @inject-error: #optional array of error injection descriptions
2040#
2041# @set-state: #optional array of state-change descriptions
2042#
2043# Since: 2.0
2044##
895a2a80 2045{ 'struct': 'BlockdevOptionsBlkdebug',
1ad166b6
BC
2046 'data': { 'image': 'BlockdevRef',
2047 '*config': 'str',
2048 '*align': 'int',
2049 '*inject-error': ['BlkdebugInjectErrorOptions'],
2050 '*set-state': ['BlkdebugSetStateOptions'] } }
2051
2052##
2053# @BlockdevOptionsBlkverify
2054#
2055# Driver specific block device options for blkverify.
2056#
2057# @test: block device to be tested
2058#
2059# @raw: raw image used for verification
2060#
2061# Since: 2.0
2062##
895a2a80 2063{ 'struct': 'BlockdevOptionsBlkverify',
1ad166b6
BC
2064 'data': { 'test': 'BlockdevRef',
2065 'raw': 'BlockdevRef' } }
2066
62c6031f
LY
2067##
2068# @QuorumReadPattern
2069#
2070# An enumeration of quorum read patterns.
2071#
2072# @quorum: read all the children and do a quorum vote on reads
2073#
2074# @fifo: read only from the first child that has not failed
2075#
2076# Since: 2.2
2077##
2078{ 'enum': 'QuorumReadPattern', 'data': [ 'quorum', 'fifo' ] }
2079
1ad166b6
BC
2080##
2081# @BlockdevOptionsQuorum
2082#
2083# Driver specific block device options for Quorum
2084#
2085# @blkverify: #optional true if the driver must print content mismatch
2086# set to false by default
2087#
2088# @children: the children block devices to use
2089#
2090# @vote-threshold: the vote limit under which a read will fail
2091#
cf29a570
BC
2092# @rewrite-corrupted: #optional rewrite corrupted data when quorum is reached
2093# (Since 2.1)
2094#
62c6031f
LY
2095# @read-pattern: #optional choose read pattern and set to quorum by default
2096# (Since 2.2)
2097#
1ad166b6
BC
2098# Since: 2.0
2099##
895a2a80 2100{ 'struct': 'BlockdevOptionsQuorum',
1ad166b6
BC
2101 'data': { '*blkverify': 'bool',
2102 'children': [ 'BlockdevRef' ],
62c6031f
LY
2103 'vote-threshold': 'int',
2104 '*rewrite-corrupted': 'bool',
2105 '*read-pattern': 'QuorumReadPattern' } }
1ad166b6 2106
7edac2dd
PKK
2107##
2108# @GlusterTransport
2109#
2110# An enumeration of Gluster transport types
2111#
2112# @tcp: TCP - Transmission Control Protocol
2113#
2114# @unix: UNIX - Unix domain socket
2115#
2116# Since: 2.7
2117##
2118{ 'enum': 'GlusterTransport',
2119 'data': [ 'unix', 'tcp' ] }
2120
2121
2122##
2123# @GlusterServer
2124#
2125# Captures the address of a socket
2126#
2127# Details for connecting to a gluster server
2128#
2129# @type: Transport type used for gluster connection
2130#
2131# @unix: socket file
2132#
2133# @tcp: host address and port number
2134#
c76d7aab
PKK
2135# This is similar to SocketAddress, only distinction:
2136#
2137# 1. GlusterServer is a flat union, SocketAddress is a simple union.
2138# A flat union is nicer than simple because it avoids nesting
2139# (i.e. more {}) on the wire.
2140#
2141# 2. GlusterServer lacks case 'fd', since gluster doesn't let you
2142# pass in a file descriptor.
2143#
2144# GlusterServer is actually not Gluster-specific, its a
2145# compatibility evolved into an alternate for SocketAddress.
2146#
7edac2dd
PKK
2147# Since: 2.7
2148##
2149{ 'union': 'GlusterServer',
2150 'base': { 'type': 'GlusterTransport' },
2151 'discriminator': 'type',
2152 'data': { 'unix': 'UnixSocketAddress',
2153 'tcp': 'InetSocketAddress' } }
2154
2155##
2156# @BlockdevOptionsGluster
2157#
2158# Driver specific block device options for Gluster
2159#
2160# @volume: name of gluster volume where VM image resides
2161#
2162# @path: absolute path to image file in gluster volume
2163#
0a189ffb 2164# @server: gluster servers description
7edac2dd
PKK
2165#
2166# @debug-level: #optional libgfapi log level (default '4' which is Error)
2167#
e9db8ff3
PKK
2168# @logfile: #optional libgfapi log file (default /dev/stderr)
2169#
7edac2dd
PKK
2170# Since: 2.7
2171##
2172{ 'struct': 'BlockdevOptionsGluster',
2173 'data': { 'volume': 'str',
2174 'path': 'str',
6c7189bb 2175 'server': ['GlusterServer'],
e9db8ff3
PKK
2176 '*debug-level': 'int',
2177 '*logfile': 'str' } }
7edac2dd 2178
190b9a8b
CX
2179##
2180# @ReplicationMode
2181#
2182# An enumeration of replication modes.
2183#
2184# @primary: Primary mode, the vm's state will be sent to secondary QEMU.
2185#
2186# @secondary: Secondary mode, receive the vm's state from primary QEMU.
2187#
2188# Since: 2.8
2189##
2190{ 'enum' : 'ReplicationMode', 'data' : [ 'primary', 'secondary' ] }
2191
82ac5543
WC
2192##
2193# @BlockdevOptionsReplication
2194#
2195# Driver specific block device options for replication
2196#
2197# @mode: the replication mode
2198#
2199# @top-id: #optional In secondary mode, node name or device ID of the root
2200# node who owns the replication node chain. Ignored in primary mode.
2201#
2202# Since: 2.8
2203##
2204{ 'struct': 'BlockdevOptionsReplication',
2205 'base': 'BlockdevOptionsGenericFormat',
2206 'data': { 'mode': 'ReplicationMode',
2207 '*top-id': 'str' } }
2208
68555285
KW
2209##
2210# @BlockdevOptionsCurl
2211#
2212# Driver specific block device options for the curl backend.
2213#
2214# @filename: path to the image file
2215#
2216# Since: 1.7
2217##
2218{ 'struct': 'BlockdevOptionsCurl',
2219 'data': { 'filename': 'str' } }
2220
1ad166b6
BC
2221##
2222# @BlockdevOptions
2223#
3666a97f
EB
2224# Options for creating a block device. Many options are available for all
2225# block devices, independent of the block driver:
2226#
2227# @driver: block driver name
9ec8873e
KW
2228# @node-name: #optional the node name of the new node (Since 2.0).
2229# This option is required on the top level of blockdev-add.
3666a97f
EB
2230# @discard: #optional discard-related options (default: ignore)
2231# @cache: #optional cache-related options
3666a97f
EB
2232# @read-only: #optional whether the block device should be read-only
2233# (default: false)
3666a97f
EB
2234# @detect-zeroes: #optional detect and optimize zero writes (Since 2.1)
2235# (default: off)
2236#
2237# Remaining options are determined by the block driver.
1ad166b6
BC
2238#
2239# Since: 1.7
2240##
2241{ 'union': 'BlockdevOptions',
3666a97f 2242 'base': { 'driver': 'BlockdevDriver',
3666a97f
EB
2243 '*node-name': 'str',
2244 '*discard': 'BlockdevDiscardOptions',
2245 '*cache': 'BlockdevCacheOptions',
3666a97f 2246 '*read-only': 'bool',
3666a97f 2247 '*detect-zeroes': 'BlockdevDetectZeroesOptions' },
1ad166b6
BC
2248 'discriminator': 'driver',
2249 'data': {
b1de5f43 2250 'archipelago':'BlockdevOptionsArchipelago',
db866be9
FZ
2251 'blkdebug': 'BlockdevOptionsBlkdebug',
2252 'blkverify': 'BlockdevOptionsBlkverify',
2253 'bochs': 'BlockdevOptionsGenericFormat',
2254 'cloop': 'BlockdevOptionsGenericFormat',
db866be9 2255 'dmg': 'BlockdevOptionsGenericFormat',
1ad166b6 2256 'file': 'BlockdevOptionsFile',
68555285
KW
2257 'ftp': 'BlockdevOptionsCurl',
2258 'ftps': 'BlockdevOptionsCurl',
7edac2dd 2259 'gluster': 'BlockdevOptionsGluster',
1ad166b6 2260 'host_cdrom': 'BlockdevOptionsFile',
db866be9 2261 'host_device':'BlockdevOptionsFile',
68555285
KW
2262 'http': 'BlockdevOptionsCurl',
2263 'https': 'BlockdevOptionsCurl',
1ad166b6 2264# TODO iscsi: Wait for structured options
78368575 2265 'luks': 'BlockdevOptionsLUKS',
1ad166b6
BC
2266# TODO nbd: Should take InetSocketAddress for 'host'?
2267# TODO nfs: Wait for structured options
db866be9
FZ
2268 'null-aio': 'BlockdevOptionsNull',
2269 'null-co': 'BlockdevOptionsNull',
1ad166b6 2270 'parallels': 'BlockdevOptionsGenericFormat',
1ad166b6 2271 'qcow2': 'BlockdevOptionsQcow2',
db866be9 2272 'qcow': 'BlockdevOptionsGenericCOWFormat',
1ad166b6 2273 'qed': 'BlockdevOptionsGenericCOWFormat',
db866be9 2274 'quorum': 'BlockdevOptionsQuorum',
1ad166b6 2275 'raw': 'BlockdevOptionsGenericFormat',
db866be9 2276# TODO rbd: Wait for structured options
82ac5543 2277 'replication':'BlockdevOptionsReplication',
db866be9
FZ
2278# TODO sheepdog: Wait for structured options
2279# TODO ssh: Should take InetSocketAddress for 'host'?
68555285 2280 'tftp': 'BlockdevOptionsCurl',
1ad166b6
BC
2281 'vdi': 'BlockdevOptionsGenericFormat',
2282 'vhdx': 'BlockdevOptionsGenericFormat',
2283 'vmdk': 'BlockdevOptionsGenericCOWFormat',
2284 'vpc': 'BlockdevOptionsGenericFormat',
db866be9 2285 'vvfat': 'BlockdevOptionsVVFAT'
1ad166b6
BC
2286 } }
2287
2288##
2289# @BlockdevRef
2290#
2291# Reference to a block device.
2292#
2293# @definition: defines a new block device inline
2294# @reference: references the ID of an existing block device. An
2295# empty string means that no block device should be
2296# referenced.
2297#
2298# Since: 1.7
2299##
ab916fad 2300{ 'alternate': 'BlockdevRef',
1ad166b6
BC
2301 'data': { 'definition': 'BlockdevOptions',
2302 'reference': 'str' } }
2303
2304##
2305# @blockdev-add:
2306#
be4b67bc
HR
2307# Creates a new block device. If the @id option is given at the top level, a
2308# BlockBackend will be created; otherwise, @node-name is mandatory at the top
2309# level and no BlockBackend will be created.
1ad166b6 2310#
da2cf4e8 2311# This command is still a work in progress. It doesn't support all
81b936ae
AG
2312# block drivers among other things. Stay away from it unless you want
2313# to help with its development.
da2cf4e8 2314#
1ad166b6
BC
2315# @options: block device options for the new device
2316#
2317# Since: 1.7
2318##
2319{ 'command': 'blockdev-add', 'data': { 'options': 'BlockdevOptions' } }
2320
81b936ae
AG
2321##
2322# @x-blockdev-del:
2323#
2324# Deletes a block device that has been added using blockdev-add.
9ec8873e
KW
2325# The command will fail if the node is attached to a device or is
2326# otherwise being used.
81b936ae
AG
2327#
2328# This command is still a work in progress and is considered
2329# experimental. Stay away from it unless you want to help with its
2330# development.
2331#
9ec8873e 2332# @node-name: Name of the graph node to delete.
81b936ae
AG
2333#
2334# Since: 2.5
2335##
9ec8873e 2336{ 'command': 'x-blockdev-del', 'data': { 'node-name': 'str' } }
81b936ae 2337
7d8a9f71
HR
2338##
2339# @blockdev-open-tray:
2340#
2341# Opens a block device's tray. If there is a block driver state tree inserted as
2342# a medium, it will become inaccessible to the guest (but it will remain
2343# associated to the block device, so closing the tray will make it accessible
2344# again).
2345#
2346# If the tray was already open before, this will be a no-op.
2347#
2348# Once the tray opens, a DEVICE_TRAY_MOVED event is emitted. There are cases in
2349# which no such event will be generated, these include:
2350# - if the guest has locked the tray, @force is false and the guest does not
2351# respond to the eject request
2352# - if the BlockBackend denoted by @device does not have a guest device attached
2353# to it
12c7ec87 2354# - if the guest device does not have an actual tray
7d8a9f71 2355#
b33945cf
KW
2356# @device: #optional Block device name (deprecated, use @id instead)
2357#
2358# @id: #optional The name or QOM path of the guest device (since: 2.8)
7d8a9f71
HR
2359#
2360# @force: #optional if false (the default), an eject request will be sent to
2361# the guest if it has locked the tray (and the tray will not be opened
2362# immediately); if true, the tray will be opened regardless of whether
2363# it is locked
2364#
2365# Since: 2.5
2366##
2367{ 'command': 'blockdev-open-tray',
b33945cf
KW
2368 'data': { '*device': 'str',
2369 '*id': 'str',
7d8a9f71
HR
2370 '*force': 'bool' } }
2371
abaaf59d
HR
2372##
2373# @blockdev-close-tray:
2374#
2375# Closes a block device's tray. If there is a block driver state tree associated
2376# with the block device (which is currently ejected), that tree will be loaded
2377# as the medium.
2378#
2379# If the tray was already closed before, this will be a no-op.
2380#
b33945cf
KW
2381# @device: #optional Block device name (deprecated, use @id instead)
2382#
2383# @id: #optional The name or QOM path of the guest device (since: 2.8)
abaaf59d
HR
2384#
2385# Since: 2.5
2386##
2387{ 'command': 'blockdev-close-tray',
b33945cf
KW
2388 'data': { '*device': 'str',
2389 '*id': 'str' } }
abaaf59d 2390
2814f672 2391##
6e0abc25 2392# @x-blockdev-remove-medium:
2814f672
HR
2393#
2394# Removes a medium (a block driver state tree) from a block device. That block
2395# device's tray must currently be open (unless there is no attached guest
2396# device).
2397#
2398# If the tray is open and there is no medium inserted, this will be a no-op.
2399#
6e0abc25
HR
2400# This command is still a work in progress and is considered experimental.
2401# Stay away from it unless you want to help with its development.
2402#
00949bab
KW
2403# @device: #optional Block device name (deprecated, use @id instead)
2404#
2405# @id: #optional The name or QOM path of the guest device (since: 2.8)
2814f672
HR
2406#
2407# Since: 2.5
2408##
6e0abc25 2409{ 'command': 'x-blockdev-remove-medium',
00949bab
KW
2410 'data': { '*device': 'str',
2411 '*id': 'str' } }
2814f672 2412
d1299882 2413##
6e0abc25 2414# @x-blockdev-insert-medium:
d1299882
HR
2415#
2416# Inserts a medium (a block driver state tree) into a block device. That block
2417# device's tray must currently be open (unless there is no attached guest
2418# device) and there must be no medium inserted already.
2419#
6e0abc25
HR
2420# This command is still a work in progress and is considered experimental.
2421# Stay away from it unless you want to help with its development.
2422#
716df217
KW
2423# @device: #optional Block device name (deprecated, use @id instead)
2424#
2425# @id: #optional The name or QOM path of the guest device (since: 2.8)
d1299882
HR
2426#
2427# @node-name: name of a node in the block driver state graph
2428#
2429# Since: 2.5
2430##
6e0abc25 2431{ 'command': 'x-blockdev-insert-medium',
716df217
KW
2432 'data': { '*device': 'str',
2433 '*id': 'str',
d1299882
HR
2434 'node-name': 'str'} }
2435
a589569f 2436
39ff43d9
HR
2437##
2438# @BlockdevChangeReadOnlyMode:
2439#
2440# Specifies the new read-only mode of a block device subject to the
2441# @blockdev-change-medium command.
2442#
2443# @retain: Retains the current read-only mode
2444#
2445# @read-only: Makes the device read-only
2446#
2447# @read-write: Makes the device writable
2448#
2449# Since: 2.3
2450##
2451{ 'enum': 'BlockdevChangeReadOnlyMode',
2452 'data': ['retain', 'read-only', 'read-write'] }
2453
2454
24fb4133
HR
2455##
2456# @blockdev-change-medium:
2457#
2458# Changes the medium inserted into a block device by ejecting the current medium
2459# and loading a new image file which is inserted as the new medium (this command
6e0abc25
HR
2460# combines blockdev-open-tray, x-blockdev-remove-medium,
2461# x-blockdev-insert-medium and blockdev-close-tray).
24fb4133 2462#
70e2cb3b
KW
2463# @device: #optional Block device name (deprecated, use @id instead)
2464#
2465# @id: #optional The name or QOM path of the guest device
2466# (since: 2.8)
24fb4133
HR
2467#
2468# @filename: filename of the new image to be loaded
2469#
2470# @format: #optional, format to open the new image with (defaults to
2471# the probed format)
2472#
39ff43d9
HR
2473# @read-only-mode: #optional, change the read-only mode of the device; defaults
2474# to 'retain'
2475#
24fb4133
HR
2476# Since: 2.5
2477##
2478{ 'command': 'blockdev-change-medium',
70e2cb3b
KW
2479 'data': { '*device': 'str',
2480 '*id': 'str',
24fb4133 2481 'filename': 'str',
39ff43d9
HR
2482 '*format': 'str',
2483 '*read-only-mode': 'BlockdevChangeReadOnlyMode' } }
24fb4133
HR
2484
2485
a589569f
WX
2486##
2487# @BlockErrorAction
2488#
2489# An enumeration of action that has been taken when a DISK I/O occurs
2490#
2491# @ignore: error has been ignored
2492#
2493# @report: error has been reported to the device
2494#
2495# @stop: error caused VM to be stopped
2496#
2497# Since: 2.1
2498##
2499{ 'enum': 'BlockErrorAction',
2500 'data': [ 'ignore', 'report', 'stop' ] }
5a2d2cbd
WX
2501
2502
c120f0fa
WX
2503##
2504# @BLOCK_IMAGE_CORRUPTED
2505#
9bf040b9 2506# Emitted when a corruption has been detected in a disk image
c120f0fa 2507#
dc881b44
AG
2508# @device: device name. This is always present for compatibility
2509# reasons, but it can be empty ("") if the image does not
2510# have a device name associated.
2511#
2512# @node-name: #optional node name (Since: 2.4)
c120f0fa
WX
2513#
2514# @msg: informative message for human consumption, such as the kind of
2f44a08b
WX
2515# corruption being detected. It should not be parsed by machine as it is
2516# not guaranteed to be stable
c120f0fa
WX
2517#
2518# @offset: #optional, if the corruption resulted from an image access, this is
0caef8f6 2519# the host's access offset into the image
c120f0fa
WX
2520#
2521# @size: #optional, if the corruption resulted from an image access, this is
2522# the access size
2523#
9bf040b9
HR
2524# fatal: if set, the image is marked corrupt and therefore unusable after this
2525# event and must be repaired (Since 2.2; before, every
2526# BLOCK_IMAGE_CORRUPTED event was fatal)
2527#
c120f0fa
WX
2528# Since: 1.7
2529##
2530{ 'event': 'BLOCK_IMAGE_CORRUPTED',
dc881b44
AG
2531 'data': { 'device' : 'str',
2532 '*node-name' : 'str',
2533 'msg' : 'str',
2534 '*offset' : 'int',
2535 '*size' : 'int',
2536 'fatal' : 'bool' } }
c120f0fa 2537
5a2d2cbd
WX
2538##
2539# @BLOCK_IO_ERROR
2540#
2541# Emitted when a disk I/O error occurs
2542#
2bf7e10f
KW
2543# @device: device name. This is always present for compatibility
2544# reasons, but it can be empty ("") if the image does not
2545# have a device name associated.
2546#
2547# @node-name: node name. Note that errors may be reported for the root node
2548# that is directly attached to a guest device rather than for the
2549# node where the error occurred. (Since: 2.8)
5a2d2cbd
WX
2550#
2551# @operation: I/O operation
2552#
2553# @action: action that has been taken
2554#
c7c2ff0c
LC
2555# @nospace: #optional true if I/O error was caused due to a no-space
2556# condition. This key is only present if query-block's
2557# io-status is present, please see query-block documentation
2558# for more information (since: 2.2)
2559#
624ff573
LC
2560# @reason: human readable string describing the error cause.
2561# (This field is a debugging aid for humans, it should not
2562# be parsed by applications) (since: 2.2)
2563#
5a2d2cbd
WX
2564# Note: If action is "stop", a STOP event will eventually follow the
2565# BLOCK_IO_ERROR event
2566#
2567# Since: 0.13.0
2568##
2569{ 'event': 'BLOCK_IO_ERROR',
2bf7e10f 2570 'data': { 'device': 'str', 'node-name': 'str', 'operation': 'IoOperationType',
624ff573
LC
2571 'action': 'BlockErrorAction', '*nospace': 'bool',
2572 'reason': 'str' } }
5a2d2cbd 2573
bcada37b
WX
2574##
2575# @BLOCK_JOB_COMPLETED
2576#
2577# Emitted when a block job has completed
2578#
2579# @type: job type
2580#
6aae5be6
AG
2581# @device: The job identifier. Originally the device name but other
2582# values are allowed since QEMU 2.7
bcada37b
WX
2583#
2584# @len: maximum progress value
2585#
2586# @offset: current progress value. On success this is equal to len.
2587# On failure this is less than len
2588#
2589# @speed: rate limit, bytes per second
2590#
2591# @error: #optional, error message. Only present on failure. This field
2592# contains a human-readable error message. There are no semantics
2593# other than that streaming has failed and clients should not try to
2594# interpret the error string
2595#
2596# Since: 1.1
2597##
2598{ 'event': 'BLOCK_JOB_COMPLETED',
2599 'data': { 'type' : 'BlockJobType',
2600 'device': 'str',
2601 'len' : 'int',
2602 'offset': 'int',
2603 'speed' : 'int',
2604 '*error': 'str' } }
2605
2606##
2607# @BLOCK_JOB_CANCELLED
2608#
2609# Emitted when a block job has been cancelled
2610#
2611# @type: job type
2612#
6aae5be6
AG
2613# @device: The job identifier. Originally the device name but other
2614# values are allowed since QEMU 2.7
bcada37b
WX
2615#
2616# @len: maximum progress value
2617#
2618# @offset: current progress value. On success this is equal to len.
2619# On failure this is less than len
2620#
2621# @speed: rate limit, bytes per second
2622#
2623# Since: 1.1
2624##
2625{ 'event': 'BLOCK_JOB_CANCELLED',
2626 'data': { 'type' : 'BlockJobType',
2627 'device': 'str',
2628 'len' : 'int',
2629 'offset': 'int',
2630 'speed' : 'int' } }
2631
5a2d2cbd
WX
2632##
2633# @BLOCK_JOB_ERROR
2634#
2635# Emitted when a block job encounters an error
2636#
6aae5be6
AG
2637# @device: The job identifier. Originally the device name but other
2638# values are allowed since QEMU 2.7
5a2d2cbd
WX
2639#
2640# @operation: I/O operation
2641#
2642# @action: action that has been taken
2643#
2644# Since: 1.3
2645##
2646{ 'event': 'BLOCK_JOB_ERROR',
2647 'data': { 'device' : 'str',
2648 'operation': 'IoOperationType',
823c6863 2649 'action' : 'BlockErrorAction' } }
bcada37b
WX
2650
2651##
2652# @BLOCK_JOB_READY
2653#
2654# Emitted when a block job is ready to complete
2655#
518848a2
MA
2656# @type: job type
2657#
6aae5be6
AG
2658# @device: The job identifier. Originally the device name but other
2659# values are allowed since QEMU 2.7
bcada37b 2660#
518848a2
MA
2661# @len: maximum progress value
2662#
2663# @offset: current progress value. On success this is equal to len.
2664# On failure this is less than len
2665#
2666# @speed: rate limit, bytes per second
2667#
bcada37b
WX
2668# Note: The "ready to complete" status is always reset by a @BLOCK_JOB_ERROR
2669# event
2670#
2671# Since: 1.3
2672##
2673{ 'event': 'BLOCK_JOB_READY',
518848a2
MA
2674 'data': { 'type' : 'BlockJobType',
2675 'device': 'str',
2676 'len' : 'int',
2677 'offset': 'int',
2678 'speed' : 'int' } }
ffeaac9b
HT
2679
2680# @PreallocMode
2681#
2682# Preallocation mode of QEMU image file
2683#
2684# @off: no preallocation
2685# @metadata: preallocate only for metadata
2686# @falloc: like @full preallocation but allocate disk space by
2687# posix_fallocate() rather than writing zeros.
2688# @full: preallocate all data by writing zeros to device to ensure disk
2689# space is really available. @full preallocation also sets up
2690# metadata correctly.
2691#
2692# Since 2.2
2693##
2694{ 'enum': 'PreallocMode',
2695 'data': [ 'off', 'metadata', 'falloc', 'full' ] }
e2462113
FR
2696
2697##
2698# @BLOCK_WRITE_THRESHOLD
2699#
2700# Emitted when writes on block device reaches or exceeds the
2701# configured write threshold. For thin-provisioned devices, this
2702# means the device should be extended to avoid pausing for
2703# disk exhaustion.
2704# The event is one shot. Once triggered, it needs to be
2705# re-registered with another block-set-threshold command.
2706#
2707# @node-name: graph node name on which the threshold was exceeded.
2708#
2709# @amount-exceeded: amount of data which exceeded the threshold, in bytes.
2710#
2711# @write-threshold: last configured threshold, in bytes.
2712#
2713# Since: 2.3
2714##
2715{ 'event': 'BLOCK_WRITE_THRESHOLD',
2716 'data': { 'node-name': 'str',
2717 'amount-exceeded': 'uint64',
2718 'write-threshold': 'uint64' } }
2719
2720##
2721# @block-set-write-threshold
2722#
2723# Change the write threshold for a block drive. An event will be delivered
2724# if a write to this block drive crosses the configured threshold.
2725# This is useful to transparently resize thin-provisioned drives without
2726# the guest OS noticing.
2727#
2728# @node-name: graph node name on which the threshold must be set.
2729#
2730# @write-threshold: configured threshold for the block device, bytes.
2731# Use 0 to disable the threshold.
2732#
e2462113
FR
2733# Since: 2.3
2734##
2735{ 'command': 'block-set-write-threshold',
2736 'data': { 'node-name': 'str', 'write-threshold': 'uint64' } }
7f821597
WC
2737
2738##
2739# @x-blockdev-change
2740#
2741# Dynamically reconfigure the block driver state graph. It can be used
2742# to add, remove, insert or replace a graph node. Currently only the
2743# Quorum driver implements this feature to add or remove its child. This
2744# is useful to fix a broken quorum child.
2745#
2746# If @node is specified, it will be inserted under @parent. @child
2747# may not be specified in this case. If both @parent and @child are
2748# specified but @node is not, @child will be detached from @parent.
2749#
2750# @parent: the id or name of the parent node.
2751#
2752# @child: #optional the name of a child under the given parent node.
2753#
2754# @node: #optional the name of the node that will be added.
2755#
2756# Note: this command is experimental, and its API is not stable. It
2757# does not support all kinds of operations, all kinds of children, nor
2758# all block drivers.
2759#
2760# Warning: The data in a new quorum child MUST be consistent with that of
2761# the rest of the array.
2762#
2763# Since: 2.7
2764##
2765{ 'command': 'x-blockdev-change',
2766 'data' : { 'parent': 'str',
2767 '*child': 'str',
2768 '*node': 'str' } }