]> git.proxmox.com Git - mirror_qemu.git/blob - qapi/block-core.json
Merge remote-tracking branch 'remotes/mdroth/tags/qga-pull-2015-11-11-tag' into staging
[mirror_qemu.git] / qapi / block-core.json
1 # -*- Mode: Python -*-
2 #
3 # QAPI block core definitions (vm unrelated)
4
5 # QAPI common definitions
6 { 'include': 'common.json' }
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 ##
28
29 { 'struct': 'SnapshotInfo',
30 'data': { 'id': 'str', 'name': 'str', 'vm-state-size': 'int',
31 'date-sec': 'int', 'date-nsec': 'int',
32 'vm-clock-sec': 'int', 'vm-clock-nsec': 'int' } }
33
34 ##
35 # @ImageInfoSpecificQCow2:
36 #
37 # @compat: compatibility level
38 #
39 # @lazy-refcounts: #optional on or off; only valid for compat >= 1.1
40 #
41 # @corrupt: #optional true if the image has been marked corrupt; only valid for
42 # compat >= 1.1 (since 2.2)
43 #
44 # @refcount-bits: width of a refcount entry in bits (since 2.3)
45 #
46 # Since: 1.7
47 ##
48 { 'struct': 'ImageInfoSpecificQCow2',
49 'data': {
50 'compat': 'str',
51 '*lazy-refcounts': 'bool',
52 '*corrupt': 'bool',
53 'refcount-bits': 'int'
54 } }
55
56 ##
57 # @ImageInfoSpecificVmdk:
58 #
59 # @create-type: The create type of VMDK image
60 #
61 # @cid: Content id of image
62 #
63 # @parent-cid: Parent VMDK image's cid
64 #
65 # @extents: List of extent files
66 #
67 # Since: 1.7
68 ##
69 { 'struct': 'ImageInfoSpecificVmdk',
70 'data': {
71 'create-type': 'str',
72 'cid': 'int',
73 'parent-cid': 'int',
74 'extents': ['ImageInfo']
75 } }
76
77 ##
78 # @ImageInfoSpecific:
79 #
80 # A discriminated record of image format specific information structures.
81 #
82 # Since: 1.7
83 ##
84
85 { 'union': 'ImageInfoSpecific',
86 'data': {
87 'qcow2': 'ImageInfoSpecificQCow2',
88 'vmdk': 'ImageInfoSpecificVmdk'
89 } }
90
91 ##
92 # @ImageInfo:
93 #
94 # Information about a QEMU image file
95 #
96 # @filename: name of the image file
97 #
98 # @format: format of the image file
99 #
100 # @virtual-size: maximum capacity in bytes of the image
101 #
102 # @actual-size: #optional actual size on disk in bytes of the image
103 #
104 # @dirty-flag: #optional true if image is not cleanly closed
105 #
106 # @cluster-size: #optional size of a cluster in bytes
107 #
108 # @encrypted: #optional true if the image is encrypted
109 #
110 # @compressed: #optional true if the image is compressed (Since 1.7)
111 #
112 # @backing-filename: #optional name of the backing file
113 #
114 # @full-backing-filename: #optional full path of the backing file
115 #
116 # @backing-filename-format: #optional the format of the backing file
117 #
118 # @snapshots: #optional list of VM snapshots
119 #
120 # @backing-image: #optional info of the backing image (since 1.6)
121 #
122 # @format-specific: #optional structure supplying additional format-specific
123 # information (since 1.7)
124 #
125 # Since: 1.3
126 #
127 ##
128
129 { 'struct': 'ImageInfo',
130 'data': {'filename': 'str', 'format': 'str', '*dirty-flag': 'bool',
131 '*actual-size': 'int', 'virtual-size': 'int',
132 '*cluster-size': 'int', '*encrypted': 'bool', '*compressed': 'bool',
133 '*backing-filename': 'str', '*full-backing-filename': 'str',
134 '*backing-filename-format': 'str', '*snapshots': ['SnapshotInfo'],
135 '*backing-image': 'ImageInfo',
136 '*format-specific': 'ImageInfoSpecific' } }
137
138 ##
139 # @ImageCheck:
140 #
141 # Information about a QEMU image file check
142 #
143 # @filename: name of the image file checked
144 #
145 # @format: format of the image file checked
146 #
147 # @check-errors: number of unexpected errors occurred during check
148 #
149 # @image-end-offset: #optional offset (in bytes) where the image ends, this
150 # field is present if the driver for the image format
151 # supports it
152 #
153 # @corruptions: #optional number of corruptions found during the check if any
154 #
155 # @leaks: #optional number of leaks found during the check if any
156 #
157 # @corruptions-fixed: #optional number of corruptions fixed during the check
158 # if any
159 #
160 # @leaks-fixed: #optional number of leaks fixed during the check if any
161 #
162 # @total-clusters: #optional total number of clusters, this field is present
163 # if the driver for the image format supports it
164 #
165 # @allocated-clusters: #optional total number of allocated clusters, this
166 # field is present if the driver for the image format
167 # supports it
168 #
169 # @fragmented-clusters: #optional total number of fragmented clusters, this
170 # field is present if the driver for the image format
171 # supports it
172 #
173 # @compressed-clusters: #optional total number of compressed clusters, this
174 # field is present if the driver for the image format
175 # supports it
176 #
177 # Since: 1.4
178 #
179 ##
180
181 { 'struct': 'ImageCheck',
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
188 ##
189 # @BlockdevCacheInfo
190 #
191 # Cache mode information for a block device
192 #
193 # @writeback: true if writeback mode is enabled
194 # @direct: true if the host page cache is bypassed (O_DIRECT)
195 # @no-flush: true if flush requests are ignored for the device
196 #
197 # Since: 2.3
198 ##
199 { 'struct': 'BlockdevCacheInfo',
200 'data': { 'writeback': 'bool',
201 'direct': 'bool',
202 'no-flush': 'bool' } }
203
204 ##
205 # @BlockDeviceInfo:
206 #
207 # Information about the backing device for a block device.
208 #
209 # @file: the filename of the backing device
210 #
211 # @node-name: #optional the name of the block driver node (Since 2.0)
212 #
213 # @ro: true if the backing device was open read-only
214 #
215 # @drv: the name of the block format used to open the backing device. As of
216 # 0.14.0 this can be: 'blkdebug', 'bochs', 'cloop', 'cow', 'dmg',
217 # 'file', 'file', 'ftp', 'ftps', 'host_cdrom', 'host_device',
218 # 'http', 'https', 'nbd', 'parallels', 'qcow',
219 # 'qcow2', 'raw', 'tftp', 'vdi', 'vmdk', 'vpc', 'vvfat'
220 # 2.2: 'archipelago' added, 'cow' dropped
221 # 2.3: 'host_floppy' deprecated
222 # 2.5: 'host_floppy' dropped
223 #
224 # @backing_file: #optional the name of the backing file (for copy-on-write)
225 #
226 # @backing_file_depth: number of files in the backing file chain (since: 1.2)
227 #
228 # @encrypted: true if the backing device is encrypted
229 #
230 # @encryption_key_missing: true if the backing device is encrypted but an
231 # valid encryption key is missing
232 #
233 # @detect_zeroes: detect and optimize zero writes (Since 2.1)
234 #
235 # @bps: total throughput limit in bytes per second is specified
236 #
237 # @bps_rd: read throughput limit in bytes per second is specified
238 #
239 # @bps_wr: write throughput limit in bytes per second is specified
240 #
241 # @iops: total I/O operations per second is specified
242 #
243 # @iops_rd: read I/O operations per second is specified
244 #
245 # @iops_wr: write I/O operations per second is specified
246 #
247 # @image: the info of image used (since: 1.6)
248 #
249 # @bps_max: #optional total max in bytes (Since 1.7)
250 #
251 # @bps_rd_max: #optional read max in bytes (Since 1.7)
252 #
253 # @bps_wr_max: #optional write max in bytes (Since 1.7)
254 #
255 # @iops_max: #optional total I/O operations max (Since 1.7)
256 #
257 # @iops_rd_max: #optional read I/O operations max (Since 1.7)
258 #
259 # @iops_wr_max: #optional write I/O operations max (Since 1.7)
260 #
261 # @iops_size: #optional an I/O size in bytes (Since 1.7)
262 #
263 # @group: #optional throttle group name (Since 2.4)
264 #
265 # @cache: the cache mode used for the block device (since: 2.3)
266 #
267 # @write_threshold: configured write threshold for the device.
268 # 0 if disabled. (Since 2.3)
269 #
270 # Since: 0.14.0
271 #
272 ##
273 { 'struct': 'BlockDeviceInfo',
274 'data': { 'file': 'str', '*node-name': 'str', 'ro': 'bool', 'drv': 'str',
275 '*backing_file': 'str', 'backing_file_depth': 'int',
276 'encrypted': 'bool', 'encryption_key_missing': 'bool',
277 'detect_zeroes': 'BlockdevDetectZeroesOptions',
278 'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
279 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
280 'image': 'ImageInfo',
281 '*bps_max': 'int', '*bps_rd_max': 'int',
282 '*bps_wr_max': 'int', '*iops_max': 'int',
283 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
284 '*iops_size': 'int', '*group': 'str', 'cache': 'BlockdevCacheInfo',
285 'write_threshold': 'int' } }
286
287 ##
288 # @BlockDeviceIoStatus:
289 #
290 # An enumeration of block device I/O status.
291 #
292 # @ok: The last I/O operation has succeeded
293 #
294 # @failed: The last I/O operation has failed
295 #
296 # @nospace: The last I/O operation has failed due to a no-space condition
297 #
298 # Since: 1.0
299 ##
300 { 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
301
302 ##
303 # @BlockDeviceMapEntry:
304 #
305 # Entry in the metadata map of the device (returned by "qemu-img map")
306 #
307 # @start: Offset in the image of the first byte described by this entry
308 # (in bytes)
309 #
310 # @length: Length of the range described by this entry (in bytes)
311 #
312 # @depth: Number of layers (0 = top image, 1 = top image's backing file, etc.)
313 # before reaching one for which the range is allocated. The value is
314 # in the range 0 to the depth of the image chain - 1.
315 #
316 # @zero: the sectors in this range read as zeros
317 #
318 # @data: reading the image will actually read data from a file (in particular,
319 # if @offset is present this means that the sectors are not simply
320 # preallocated, but contain actual data in raw format)
321 #
322 # @offset: if present, the image file stores the data for this range in
323 # raw format at the given offset.
324 #
325 # Since 1.7
326 ##
327 { 'struct': 'BlockDeviceMapEntry',
328 'data': { 'start': 'int', 'length': 'int', 'depth': 'int', 'zero': 'bool',
329 'data': 'bool', '*offset': 'int' } }
330
331 ##
332 # @DirtyBitmapStatus:
333 #
334 # An enumeration of possible states that a dirty bitmap can report to the user.
335 #
336 # @frozen: The bitmap is currently in-use by a backup operation or block job,
337 # and is immutable.
338 #
339 # @disabled: The bitmap is currently in-use by an internal operation and is
340 # read-only. It can still be deleted.
341 #
342 # @active: The bitmap is actively monitoring for new writes, and can be cleared,
343 # deleted, or used for backup operations.
344 #
345 # Since: 2.4
346 ##
347 { 'enum': 'DirtyBitmapStatus',
348 'data': ['active', 'disabled', 'frozen'] }
349
350 ##
351 # @BlockDirtyInfo:
352 #
353 # Block dirty bitmap information.
354 #
355 # @name: #optional the name of the dirty bitmap (Since 2.4)
356 #
357 # @count: number of dirty bytes according to the dirty bitmap
358 #
359 # @granularity: granularity of the dirty bitmap in bytes (since 1.4)
360 #
361 # @status: current status of the dirty bitmap (since 2.4)
362 #
363 # Since: 1.3
364 ##
365 { 'struct': 'BlockDirtyInfo',
366 'data': {'*name': 'str', 'count': 'int', 'granularity': 'uint32',
367 'status': 'DirtyBitmapStatus'} }
368
369 ##
370 # @BlockInfo:
371 #
372 # Block device information. This structure describes a virtual device and
373 # the backing device associated with it.
374 #
375 # @device: The device name associated with the virtual device.
376 #
377 # @type: This field is returned only for compatibility reasons, it should
378 # not be used (always returns 'unknown')
379 #
380 # @removable: True if the device supports removable media.
381 #
382 # @locked: True if the guest has locked this device from having its media
383 # removed
384 #
385 # @tray_open: #optional True if the device has a tray and it is open
386 # (only present if removable is true)
387 #
388 # @dirty-bitmaps: #optional dirty bitmaps information (only present if the
389 # driver has one or more dirty bitmaps) (Since 2.0)
390 #
391 # @io-status: #optional @BlockDeviceIoStatus. Only present if the device
392 # supports it and the VM is configured to stop on errors
393 # (supported device models: virtio-blk, ide, scsi-disk)
394 #
395 # @inserted: #optional @BlockDeviceInfo describing the device if media is
396 # present
397 #
398 # Since: 0.14.0
399 ##
400 { 'struct': 'BlockInfo',
401 'data': {'device': 'str', 'type': 'str', 'removable': 'bool',
402 'locked': 'bool', '*inserted': 'BlockDeviceInfo',
403 '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus',
404 '*dirty-bitmaps': ['BlockDirtyInfo'] } }
405
406 ##
407 # @query-block:
408 #
409 # Get a list of BlockInfo for all virtual block devices.
410 #
411 # Returns: a list of @BlockInfo describing each virtual block device
412 #
413 # Since: 0.14.0
414 ##
415 { 'command': 'query-block', 'returns': ['BlockInfo'] }
416
417 ##
418 # @BlockDeviceStats:
419 #
420 # Statistics of a virtual block device or a block backing device.
421 #
422 # @rd_bytes: The number of bytes read by the device.
423 #
424 # @wr_bytes: The number of bytes written by the device.
425 #
426 # @rd_operations: The number of read operations performed by the device.
427 #
428 # @wr_operations: The number of write operations performed by the device.
429 #
430 # @flush_operations: The number of cache flush operations performed by the
431 # device (since 0.15.0)
432 #
433 # @flush_total_time_ns: Total time spend on cache flushes in nano-seconds
434 # (since 0.15.0).
435 #
436 # @wr_total_time_ns: Total time spend on writes in nano-seconds (since 0.15.0).
437 #
438 # @rd_total_time_ns: Total_time_spend on reads in nano-seconds (since 0.15.0).
439 #
440 # @wr_highest_offset: The offset after the greatest byte written to the
441 # device. The intended use of this information is for
442 # growable sparse files (like qcow2) that are used on top
443 # of a physical device.
444 #
445 # @rd_merged: Number of read requests that have been merged into another
446 # request (Since 2.3).
447 #
448 # @wr_merged: Number of write requests that have been merged into another
449 # request (Since 2.3).
450 #
451 # Since: 0.14.0
452 ##
453 { 'struct': 'BlockDeviceStats',
454 'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'rd_operations': 'int',
455 'wr_operations': 'int', 'flush_operations': 'int',
456 'flush_total_time_ns': 'int', 'wr_total_time_ns': 'int',
457 'rd_total_time_ns': 'int', 'wr_highest_offset': 'int',
458 'rd_merged': 'int', 'wr_merged': 'int' } }
459
460 ##
461 # @BlockStats:
462 #
463 # Statistics of a virtual block device or a block backing device.
464 #
465 # @device: #optional If the stats are for a virtual block device, the name
466 # corresponding to the virtual block device.
467 #
468 # @node-name: #optional The node name of the device. (Since 2.3)
469 #
470 # @stats: A @BlockDeviceStats for the device.
471 #
472 # @parent: #optional This describes the file block device if it has one.
473 #
474 # @backing: #optional This describes the backing block device if it has one.
475 # (Since 2.0)
476 #
477 # Since: 0.14.0
478 ##
479 { 'struct': 'BlockStats',
480 'data': {'*device': 'str', '*node-name': 'str',
481 'stats': 'BlockDeviceStats',
482 '*parent': 'BlockStats',
483 '*backing': 'BlockStats'} }
484
485 ##
486 # @query-blockstats:
487 #
488 # Query the @BlockStats for all virtual block devices.
489 #
490 # @query-nodes: #optional If true, the command will query all the block nodes
491 # that have a node name, in a list which will include "parent"
492 # information, but not "backing".
493 # If false or omitted, the behavior is as before - query all the
494 # device backends, recursively including their "parent" and
495 # "backing". (Since 2.3)
496 #
497 # Returns: A list of @BlockStats for each virtual block devices.
498 #
499 # Since: 0.14.0
500 ##
501 { 'command': 'query-blockstats',
502 'data': { '*query-nodes': 'bool' },
503 'returns': ['BlockStats'] }
504
505 ##
506 # @BlockdevOnError:
507 #
508 # An enumeration of possible behaviors for errors on I/O operations.
509 # The exact meaning depends on whether the I/O was initiated by a guest
510 # or by a block job
511 #
512 # @report: for guest operations, report the error to the guest;
513 # for jobs, cancel the job
514 #
515 # @ignore: ignore the error, only report a QMP event (BLOCK_IO_ERROR
516 # or BLOCK_JOB_ERROR)
517 #
518 # @enospc: same as @stop on ENOSPC, same as @report otherwise.
519 #
520 # @stop: for guest operations, stop the virtual machine;
521 # for jobs, pause the job
522 #
523 # Since: 1.3
524 ##
525 { 'enum': 'BlockdevOnError',
526 'data': ['report', 'ignore', 'enospc', 'stop'] }
527
528 ##
529 # @MirrorSyncMode:
530 #
531 # An enumeration of possible behaviors for the initial synchronization
532 # phase of storage mirroring.
533 #
534 # @top: copies data in the topmost image to the destination
535 #
536 # @full: copies data from all images to the destination
537 #
538 # @none: only copy data written from now on
539 #
540 # @incremental: only copy data described by the dirty bitmap. Since: 2.4
541 #
542 # Since: 1.3
543 ##
544 { 'enum': 'MirrorSyncMode',
545 'data': ['top', 'full', 'none', 'incremental'] }
546
547 ##
548 # @BlockJobType:
549 #
550 # Type of a block job.
551 #
552 # @commit: block commit job type, see "block-commit"
553 #
554 # @stream: block stream job type, see "block-stream"
555 #
556 # @mirror: drive mirror job type, see "drive-mirror"
557 #
558 # @backup: drive backup job type, see "drive-backup"
559 #
560 # Since: 1.7
561 ##
562 { 'enum': 'BlockJobType',
563 'data': ['commit', 'stream', 'mirror', 'backup'] }
564
565 ##
566 # @BlockJobInfo:
567 #
568 # Information about a long-running block device operation.
569 #
570 # @type: the job type ('stream' for image streaming)
571 #
572 # @device: the block device name
573 #
574 # @len: the maximum progress value
575 #
576 # @busy: false if the job is known to be in a quiescent state, with
577 # no pending I/O. Since 1.3.
578 #
579 # @paused: whether the job is paused or, if @busy is true, will
580 # pause itself as soon as possible. Since 1.3.
581 #
582 # @offset: the current progress value
583 #
584 # @speed: the rate limit, bytes per second
585 #
586 # @io-status: the status of the job (since 1.3)
587 #
588 # @ready: true if the job may be completed (since 2.2)
589 #
590 # Since: 1.1
591 ##
592 { 'struct': 'BlockJobInfo',
593 'data': {'type': 'str', 'device': 'str', 'len': 'int',
594 'offset': 'int', 'busy': 'bool', 'paused': 'bool', 'speed': 'int',
595 'io-status': 'BlockDeviceIoStatus', 'ready': 'bool'} }
596
597 ##
598 # @query-block-jobs:
599 #
600 # Return information about long-running block device operations.
601 #
602 # Returns: a list of @BlockJobInfo for each active block job
603 #
604 # Since: 1.1
605 ##
606 { 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }
607
608 ##
609 # @block_passwd:
610 #
611 # This command sets the password of a block device that has not been open
612 # with a password and requires one.
613 #
614 # The two cases where this can happen are a block device is created through
615 # QEMU's initial command line or a block device is changed through the legacy
616 # @change interface.
617 #
618 # In the event that the block device is created through the initial command
619 # line, the VM will start in the stopped state regardless of whether '-S' is
620 # used. The intention is for a management tool to query the block devices to
621 # determine which ones are encrypted, set the passwords with this command, and
622 # then start the guest with the @cont command.
623 #
624 # Either @device or @node-name must be set but not both.
625 #
626 # @device: #optional the name of the block backend device to set the password on
627 #
628 # @node-name: #optional graph node name to set the password on (Since 2.0)
629 #
630 # @password: the password to use for the device
631 #
632 # Returns: nothing on success
633 # If @device is not a valid block device, DeviceNotFound
634 # If @device is not encrypted, DeviceNotEncrypted
635 #
636 # Notes: Not all block formats support encryption and some that do are not
637 # able to validate that a password is correct. Disk corruption may
638 # occur if an invalid password is specified.
639 #
640 # Since: 0.14.0
641 ##
642 { 'command': 'block_passwd', 'data': {'*device': 'str',
643 '*node-name': 'str', 'password': 'str'} }
644
645 ##
646 # @block_resize
647 #
648 # Resize a block image while a guest is running.
649 #
650 # Either @device or @node-name must be set but not both.
651 #
652 # @device: #optional the name of the device to get the image resized
653 #
654 # @node-name: #optional graph node name to get the image resized (Since 2.0)
655 #
656 # @size: new image size in bytes
657 #
658 # Returns: nothing on success
659 # If @device is not a valid block device, DeviceNotFound
660 #
661 # Since: 0.14.0
662 ##
663 { 'command': 'block_resize', 'data': { '*device': 'str',
664 '*node-name': 'str',
665 'size': 'int' }}
666
667 ##
668 # @NewImageMode
669 #
670 # An enumeration that tells QEMU how to set the backing file path in
671 # a new image file.
672 #
673 # @existing: QEMU should look for an existing image file.
674 #
675 # @absolute-paths: QEMU should create a new image with absolute paths
676 # for the backing file. If there is no backing file available, the new
677 # image will not be backed either.
678 #
679 # Since: 1.1
680 ##
681 { 'enum': 'NewImageMode',
682 'data': [ 'existing', 'absolute-paths' ] }
683
684 ##
685 # @BlockdevSnapshotSync
686 #
687 # Either @device or @node-name must be set but not both.
688 #
689 # @device: #optional the name of the device to generate the snapshot from.
690 #
691 # @node-name: #optional graph node name to generate the snapshot from (Since 2.0)
692 #
693 # @snapshot-file: the target of the new image. A new file will be created.
694 #
695 # @snapshot-node-name: #optional the graph node name of the new image (Since 2.0)
696 #
697 # @format: #optional the format of the snapshot image, default is 'qcow2'.
698 #
699 # @mode: #optional whether and how QEMU should create a new image, default is
700 # 'absolute-paths'.
701 ##
702 { 'struct': 'BlockdevSnapshotSync',
703 'data': { '*device': 'str', '*node-name': 'str',
704 'snapshot-file': 'str', '*snapshot-node-name': 'str',
705 '*format': 'str', '*mode': 'NewImageMode' } }
706
707 ##
708 # @BlockdevSnapshot
709 #
710 # @node: device or node name that will have a snapshot created.
711 #
712 # @overlay: reference to the existing block device that will become
713 # the overlay of @node, as part of creating the snapshot.
714 # It must not have a current backing file (this can be
715 # achieved by passing "backing": "" to blockdev-add).
716 #
717 # Since 2.5
718 ##
719 { 'struct': 'BlockdevSnapshot',
720 'data': { 'node': 'str', 'overlay': 'str' } }
721
722 ##
723 # @DriveBackup
724 #
725 # @device: the name of the device which should be copied.
726 #
727 # @target: the target of the new image. If the file exists, or if it
728 # is a device, the existing file/device will be used as the new
729 # destination. If it does not exist, a new file will be created.
730 #
731 # @format: #optional the format of the new destination, default is to
732 # probe if @mode is 'existing', else the format of the source
733 #
734 # @sync: what parts of the disk image should be copied to the destination
735 # (all the disk, only the sectors allocated in the topmost image, from a
736 # dirty bitmap, or only new I/O).
737 #
738 # @mode: #optional whether and how QEMU should create a new image, default is
739 # 'absolute-paths'.
740 #
741 # @speed: #optional the maximum speed, in bytes per second
742 #
743 # @bitmap: #optional the name of dirty bitmap if sync is "incremental".
744 # Must be present if sync is "incremental", must NOT be present
745 # otherwise. (Since 2.4)
746 #
747 # @on-source-error: #optional the action to take on an error on the source,
748 # default 'report'. 'stop' and 'enospc' can only be used
749 # if the block device supports io-status (see BlockInfo).
750 #
751 # @on-target-error: #optional the action to take on an error on the target,
752 # default 'report' (no limitations, since this applies to
753 # a different block device than @device).
754 #
755 # Note that @on-source-error and @on-target-error only affect background I/O.
756 # If an error occurs during a guest write request, the device's rerror/werror
757 # actions will be used.
758 #
759 # Since: 1.6
760 ##
761 { 'struct': 'DriveBackup',
762 'data': { 'device': 'str', 'target': 'str', '*format': 'str',
763 'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
764 '*speed': 'int', '*bitmap': 'str',
765 '*on-source-error': 'BlockdevOnError',
766 '*on-target-error': 'BlockdevOnError' } }
767
768 ##
769 # @BlockdevBackup
770 #
771 # @device: the name of the device which should be copied.
772 #
773 # @target: the name of the backup target device.
774 #
775 # @sync: what parts of the disk image should be copied to the destination
776 # (all the disk, only the sectors allocated in the topmost image, or
777 # only new I/O).
778 #
779 # @speed: #optional the maximum speed, in bytes per second. The default is 0,
780 # for unlimited.
781 #
782 # @on-source-error: #optional the action to take on an error on the source,
783 # default 'report'. 'stop' and 'enospc' can only be used
784 # if the block device supports io-status (see BlockInfo).
785 #
786 # @on-target-error: #optional the action to take on an error on the target,
787 # default 'report' (no limitations, since this applies to
788 # a different block device than @device).
789 #
790 # Note that @on-source-error and @on-target-error only affect background I/O.
791 # If an error occurs during a guest write request, the device's rerror/werror
792 # actions will be used.
793 #
794 # Since: 2.3
795 ##
796 { 'struct': 'BlockdevBackup',
797 'data': { 'device': 'str', 'target': 'str',
798 'sync': 'MirrorSyncMode',
799 '*speed': 'int',
800 '*on-source-error': 'BlockdevOnError',
801 '*on-target-error': 'BlockdevOnError' } }
802
803 ##
804 # @blockdev-snapshot-sync
805 #
806 # Generates a synchronous snapshot of a block device.
807 #
808 # For the arguments, see the documentation of BlockdevSnapshotSync.
809 #
810 # Returns: nothing on success
811 # If @device is not a valid block device, DeviceNotFound
812 #
813 # Since 0.14.0
814 ##
815 { 'command': 'blockdev-snapshot-sync',
816 'data': 'BlockdevSnapshotSync' }
817
818
819 ##
820 # @blockdev-snapshot
821 #
822 # Generates a snapshot of a block device.
823 #
824 # For the arguments, see the documentation of BlockdevSnapshot.
825 #
826 # Since 2.5
827 ##
828 { 'command': 'blockdev-snapshot',
829 'data': 'BlockdevSnapshot' }
830
831 ##
832 # @change-backing-file
833 #
834 # Change the backing file in the image file metadata. This does not
835 # cause QEMU to reopen the image file to reparse the backing filename
836 # (it may, however, perform a reopen to change permissions from
837 # r/o -> r/w -> r/o, if needed). The new backing file string is written
838 # into the image file metadata, and the QEMU internal strings are
839 # updated.
840 #
841 # @image-node-name: The name of the block driver state node of the
842 # image to modify.
843 #
844 # @device: The name of the device that owns image-node-name.
845 #
846 # @backing-file: The string to write as the backing file. This
847 # string is not validated, so care should be taken
848 # when specifying the string or the image chain may
849 # not be able to be reopened again.
850 #
851 # Since: 2.1
852 ##
853 { 'command': 'change-backing-file',
854 'data': { 'device': 'str', 'image-node-name': 'str',
855 'backing-file': 'str' } }
856
857 ##
858 # @block-commit
859 #
860 # Live commit of data from overlay image nodes into backing nodes - i.e.,
861 # writes data between 'top' and 'base' into 'base'.
862 #
863 # @device: the name of the device
864 #
865 # @base: #optional The file name of the backing image to write data into.
866 # If not specified, this is the deepest backing image
867 #
868 # @top: #optional The file name of the backing image within the image chain,
869 # which contains the topmost data to be committed down. If
870 # not specified, this is the active layer.
871 #
872 # @backing-file: #optional The backing file string to write into the overlay
873 # image of 'top'. If 'top' is the active layer,
874 # specifying a backing file string is an error. This
875 # filename is not validated.
876 #
877 # If a pathname string is such that it cannot be
878 # resolved by QEMU, that means that subsequent QMP or
879 # HMP commands must use node-names for the image in
880 # question, as filename lookup methods will fail.
881 #
882 # If not specified, QEMU will automatically determine
883 # the backing file string to use, or error out if
884 # there is no obvious choice. Care should be taken
885 # when specifying the string, to specify a valid
886 # filename or protocol.
887 # (Since 2.1)
888 #
889 # If top == base, that is an error.
890 # If top == active, the job will not be completed by itself,
891 # user needs to complete the job with the block-job-complete
892 # command after getting the ready event. (Since 2.0)
893 #
894 # If the base image is smaller than top, then the base image
895 # will be resized to be the same size as top. If top is
896 # smaller than the base image, the base will not be
897 # truncated. If you want the base image size to match the
898 # size of the smaller top, you can safely truncate it
899 # yourself once the commit operation successfully completes.
900 #
901 # @speed: #optional the maximum speed, in bytes per second
902 #
903 # Returns: Nothing on success
904 # If commit or stream is already active on this device, DeviceInUse
905 # If @device does not exist, DeviceNotFound
906 # If image commit is not supported by this device, NotSupported
907 # If @base or @top is invalid, a generic error is returned
908 # If @speed is invalid, InvalidParameter
909 #
910 # Since: 1.3
911 #
912 ##
913 { 'command': 'block-commit',
914 'data': { 'device': 'str', '*base': 'str', '*top': 'str',
915 '*backing-file': 'str', '*speed': 'int' } }
916
917 ##
918 # @drive-backup
919 #
920 # Start a point-in-time copy of a block device to a new destination. The
921 # status of ongoing drive-backup operations can be checked with
922 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
923 # The operation can be stopped before it has completed using the
924 # block-job-cancel command.
925 #
926 # For the arguments, see the documentation of DriveBackup.
927 #
928 # Returns: nothing on success
929 # If @device is not a valid block device, DeviceNotFound
930 #
931 # Since 1.6
932 ##
933 { 'command': 'drive-backup', 'data': 'DriveBackup' }
934
935 ##
936 # @blockdev-backup
937 #
938 # Start a point-in-time copy of a block device to a new destination. The
939 # status of ongoing blockdev-backup operations can be checked with
940 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
941 # The operation can be stopped before it has completed using the
942 # block-job-cancel command.
943 #
944 # For the arguments, see the documentation of BlockdevBackup.
945 #
946 # Since 2.3
947 ##
948 { 'command': 'blockdev-backup', 'data': 'BlockdevBackup' }
949
950
951 ##
952 # @query-named-block-nodes
953 #
954 # Get the named block driver list
955 #
956 # Returns: the list of BlockDeviceInfo
957 #
958 # Since 2.0
959 ##
960 { 'command': 'query-named-block-nodes', 'returns': [ 'BlockDeviceInfo' ] }
961
962 ##
963 # @drive-mirror
964 #
965 # Start mirroring a block device's writes to a new destination.
966 #
967 # @device: the name of the device whose writes should be mirrored.
968 #
969 # @target: the target of the new image. If the file exists, or if it
970 # is a device, the existing file/device will be used as the new
971 # destination. If it does not exist, a new file will be created.
972 #
973 # @format: #optional the format of the new destination, default is to
974 # probe if @mode is 'existing', else the format of the source
975 #
976 # @node-name: #optional the new block driver state node name in the graph
977 # (Since 2.1)
978 #
979 # @replaces: #optional with sync=full graph node name to be replaced by the new
980 # image when a whole image copy is done. This can be used to repair
981 # broken Quorum files. (Since 2.1)
982 #
983 # @mode: #optional whether and how QEMU should create a new image, default is
984 # 'absolute-paths'.
985 #
986 # @speed: #optional the maximum speed, in bytes per second
987 #
988 # @sync: what parts of the disk image should be copied to the destination
989 # (all the disk, only the sectors allocated in the topmost image, or
990 # only new I/O).
991 #
992 # @granularity: #optional granularity of the dirty bitmap, default is 64K
993 # if the image format doesn't have clusters, 4K if the clusters
994 # are smaller than that, else the cluster size. Must be a
995 # power of 2 between 512 and 64M (since 1.4).
996 #
997 # @buf-size: #optional maximum amount of data in flight from source to
998 # target (since 1.4).
999 #
1000 # @on-source-error: #optional the action to take on an error on the source,
1001 # default 'report'. 'stop' and 'enospc' can only be used
1002 # if the block device supports io-status (see BlockInfo).
1003 #
1004 # @on-target-error: #optional the action to take on an error on the target,
1005 # default 'report' (no limitations, since this applies to
1006 # a different block device than @device).
1007 # @unmap: #optional Whether to try to unmap target sectors where source has
1008 # only zero. If true, and target unallocated sectors will read as zero,
1009 # target image sectors will be unmapped; otherwise, zeroes will be
1010 # written. Both will result in identical contents.
1011 # Default is true. (Since 2.4)
1012 #
1013 # Returns: nothing on success
1014 # If @device is not a valid block device, DeviceNotFound
1015 #
1016 # Since 1.3
1017 ##
1018 { 'command': 'drive-mirror',
1019 'data': { 'device': 'str', 'target': 'str', '*format': 'str',
1020 '*node-name': 'str', '*replaces': 'str',
1021 'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
1022 '*speed': 'int', '*granularity': 'uint32',
1023 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1024 '*on-target-error': 'BlockdevOnError',
1025 '*unmap': 'bool' } }
1026
1027 ##
1028 # @BlockDirtyBitmap
1029 #
1030 # @node: name of device/node which the bitmap is tracking
1031 #
1032 # @name: name of the dirty bitmap
1033 #
1034 # Since 2.4
1035 ##
1036 { 'struct': 'BlockDirtyBitmap',
1037 'data': { 'node': 'str', 'name': 'str' } }
1038
1039 ##
1040 # @BlockDirtyBitmapAdd
1041 #
1042 # @node: name of device/node which the bitmap is tracking
1043 #
1044 # @name: name of the dirty bitmap
1045 #
1046 # @granularity: #optional the bitmap granularity, default is 64k for
1047 # block-dirty-bitmap-add
1048 #
1049 # Since 2.4
1050 ##
1051 { 'struct': 'BlockDirtyBitmapAdd',
1052 'data': { 'node': 'str', 'name': 'str', '*granularity': 'uint32' } }
1053
1054 ##
1055 # @block-dirty-bitmap-add
1056 #
1057 # Create a dirty bitmap with a name on the node
1058 #
1059 # Returns: nothing on success
1060 # If @node is not a valid block device or node, DeviceNotFound
1061 # If @name is already taken, GenericError with an explanation
1062 #
1063 # Since 2.4
1064 ##
1065 { 'command': 'block-dirty-bitmap-add',
1066 'data': 'BlockDirtyBitmapAdd' }
1067
1068 ##
1069 # @block-dirty-bitmap-remove
1070 #
1071 # Remove a dirty bitmap on the node
1072 #
1073 # Returns: nothing on success
1074 # If @node is not a valid block device or node, DeviceNotFound
1075 # If @name is not found, GenericError with an explanation
1076 # if @name is frozen by an operation, GenericError
1077 #
1078 # Since 2.4
1079 ##
1080 { 'command': 'block-dirty-bitmap-remove',
1081 'data': 'BlockDirtyBitmap' }
1082
1083 ##
1084 # @block-dirty-bitmap-clear
1085 #
1086 # Clear (reset) a dirty bitmap on the device
1087 #
1088 # Returns: nothing on success
1089 # If @node is not a valid block device, DeviceNotFound
1090 # If @name is not found, GenericError with an explanation
1091 #
1092 # Since 2.4
1093 ##
1094 { 'command': 'block-dirty-bitmap-clear',
1095 'data': 'BlockDirtyBitmap' }
1096
1097 ##
1098 # @block_set_io_throttle:
1099 #
1100 # Change I/O throttle limits for a block drive.
1101 #
1102 # Since QEMU 2.4, each device with I/O limits is member of a throttle
1103 # group.
1104 #
1105 # If two or more devices are members of the same group, the limits
1106 # will apply to the combined I/O of the whole group in a round-robin
1107 # fashion. Therefore, setting new I/O limits to a device will affect
1108 # the whole group.
1109 #
1110 # The name of the group can be specified using the 'group' parameter.
1111 # If the parameter is unset, it is assumed to be the current group of
1112 # that device. If it's not in any group yet, the name of the device
1113 # will be used as the name for its group.
1114 #
1115 # The 'group' parameter can also be used to move a device to a
1116 # different group. In this case the limits specified in the parameters
1117 # will be applied to the new group only.
1118 #
1119 # I/O limits can be disabled by setting all of them to 0. In this case
1120 # the device will be removed from its group and the rest of its
1121 # members will not be affected. The 'group' parameter is ignored.
1122 #
1123 # @device: The name of the device
1124 #
1125 # @bps: total throughput limit in bytes per second
1126 #
1127 # @bps_rd: read throughput limit in bytes per second
1128 #
1129 # @bps_wr: write throughput limit in bytes per second
1130 #
1131 # @iops: total I/O operations per second
1132 #
1133 # @ops_rd: read I/O operations per second
1134 #
1135 # @iops_wr: write I/O operations per second
1136 #
1137 # @bps_max: #optional total max in bytes (Since 1.7)
1138 #
1139 # @bps_rd_max: #optional read max in bytes (Since 1.7)
1140 #
1141 # @bps_wr_max: #optional write max in bytes (Since 1.7)
1142 #
1143 # @iops_max: #optional total I/O operations max (Since 1.7)
1144 #
1145 # @iops_rd_max: #optional read I/O operations max (Since 1.7)
1146 #
1147 # @iops_wr_max: #optional write I/O operations max (Since 1.7)
1148 #
1149 # @iops_size: #optional an I/O size in bytes (Since 1.7)
1150 #
1151 # @group: #optional throttle group name (Since 2.4)
1152 #
1153 # Returns: Nothing on success
1154 # If @device is not a valid block device, DeviceNotFound
1155 #
1156 # Since: 1.1
1157 ##
1158 { 'command': 'block_set_io_throttle',
1159 'data': { 'device': 'str', 'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
1160 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
1161 '*bps_max': 'int', '*bps_rd_max': 'int',
1162 '*bps_wr_max': 'int', '*iops_max': 'int',
1163 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
1164 '*iops_size': 'int', '*group': 'str' } }
1165
1166 ##
1167 # @block-stream:
1168 #
1169 # Copy data from a backing file into a block device.
1170 #
1171 # The block streaming operation is performed in the background until the entire
1172 # backing file has been copied. This command returns immediately once streaming
1173 # has started. The status of ongoing block streaming operations can be checked
1174 # with query-block-jobs. The operation can be stopped before it has completed
1175 # using the block-job-cancel command.
1176 #
1177 # If a base file is specified then sectors are not copied from that base file and
1178 # its backing chain. When streaming completes the image file will have the base
1179 # file as its backing file. This can be used to stream a subset of the backing
1180 # file chain instead of flattening the entire image.
1181 #
1182 # On successful completion the image file is updated to drop the backing file
1183 # and the BLOCK_JOB_COMPLETED event is emitted.
1184 #
1185 # @device: the device name
1186 #
1187 # @base: #optional the common backing file name
1188 #
1189 # @backing-file: #optional The backing file string to write into the active
1190 # layer. This filename is not validated.
1191 #
1192 # If a pathname string is such that it cannot be
1193 # resolved by QEMU, that means that subsequent QMP or
1194 # HMP commands must use node-names for the image in
1195 # question, as filename lookup methods will fail.
1196 #
1197 # If not specified, QEMU will automatically determine
1198 # the backing file string to use, or error out if there
1199 # is no obvious choice. Care should be taken when
1200 # specifying the string, to specify a valid filename or
1201 # protocol.
1202 # (Since 2.1)
1203 #
1204 # @speed: #optional the maximum speed, in bytes per second
1205 #
1206 # @on-error: #optional the action to take on an error (default report).
1207 # 'stop' and 'enospc' can only be used if the block device
1208 # supports io-status (see BlockInfo). Since 1.3.
1209 #
1210 # Returns: Nothing on success
1211 # If @device does not exist, DeviceNotFound
1212 #
1213 # Since: 1.1
1214 ##
1215 { 'command': 'block-stream',
1216 'data': { 'device': 'str', '*base': 'str', '*backing-file': 'str',
1217 '*speed': 'int', '*on-error': 'BlockdevOnError' } }
1218
1219 ##
1220 # @block-job-set-speed:
1221 #
1222 # Set maximum speed for a background block operation.
1223 #
1224 # This command can only be issued when there is an active block job.
1225 #
1226 # Throttling can be disabled by setting the speed to 0.
1227 #
1228 # @device: the device name
1229 #
1230 # @speed: the maximum speed, in bytes per second, or 0 for unlimited.
1231 # Defaults to 0.
1232 #
1233 # Returns: Nothing on success
1234 # If no background operation is active on this device, DeviceNotActive
1235 #
1236 # Since: 1.1
1237 ##
1238 { 'command': 'block-job-set-speed',
1239 'data': { 'device': 'str', 'speed': 'int' } }
1240
1241 ##
1242 # @block-job-cancel:
1243 #
1244 # Stop an active background block operation.
1245 #
1246 # This command returns immediately after marking the active background block
1247 # operation for cancellation. It is an error to call this command if no
1248 # operation is in progress.
1249 #
1250 # The operation will cancel as soon as possible and then emit the
1251 # BLOCK_JOB_CANCELLED event. Before that happens the job is still visible when
1252 # enumerated using query-block-jobs.
1253 #
1254 # For streaming, the image file retains its backing file unless the streaming
1255 # operation happens to complete just as it is being cancelled. A new streaming
1256 # operation can be started at a later time to finish copying all data from the
1257 # backing file.
1258 #
1259 # @device: the device name
1260 #
1261 # @force: #optional whether to allow cancellation of a paused job (default
1262 # false). Since 1.3.
1263 #
1264 # Returns: Nothing on success
1265 # If no background operation is active on this device, DeviceNotActive
1266 #
1267 # Since: 1.1
1268 ##
1269 { 'command': 'block-job-cancel', 'data': { 'device': 'str', '*force': 'bool' } }
1270
1271 ##
1272 # @block-job-pause:
1273 #
1274 # Pause an active background block operation.
1275 #
1276 # This command returns immediately after marking the active background block
1277 # operation for pausing. It is an error to call this command if no
1278 # operation is in progress. Pausing an already paused job has no cumulative
1279 # effect; a single block-job-resume command will resume the job.
1280 #
1281 # The operation will pause as soon as possible. No event is emitted when
1282 # the operation is actually paused. Cancelling a paused job automatically
1283 # resumes it.
1284 #
1285 # @device: the device name
1286 #
1287 # Returns: Nothing on success
1288 # If no background operation is active on this device, DeviceNotActive
1289 #
1290 # Since: 1.3
1291 ##
1292 { 'command': 'block-job-pause', 'data': { 'device': 'str' } }
1293
1294 ##
1295 # @block-job-resume:
1296 #
1297 # Resume an active background block operation.
1298 #
1299 # This command returns immediately after resuming a paused background block
1300 # operation. It is an error to call this command if no operation is in
1301 # progress. Resuming an already running job is not an error.
1302 #
1303 # This command also clears the error status of the job.
1304 #
1305 # @device: the device name
1306 #
1307 # Returns: Nothing on success
1308 # If no background operation is active on this device, DeviceNotActive
1309 #
1310 # Since: 1.3
1311 ##
1312 { 'command': 'block-job-resume', 'data': { 'device': 'str' } }
1313
1314 ##
1315 # @block-job-complete:
1316 #
1317 # Manually trigger completion of an active background block operation. This
1318 # is supported for drive mirroring, where it also switches the device to
1319 # write to the target path only. The ability to complete is signaled with
1320 # a BLOCK_JOB_READY event.
1321 #
1322 # This command completes an active background block operation synchronously.
1323 # The ordering of this command's return with the BLOCK_JOB_COMPLETED event
1324 # is not defined. Note that if an I/O error occurs during the processing of
1325 # this command: 1) the command itself will fail; 2) the error will be processed
1326 # according to the rerror/werror arguments that were specified when starting
1327 # the operation.
1328 #
1329 # A cancelled or paused job cannot be completed.
1330 #
1331 # @device: the device name
1332 #
1333 # Returns: Nothing on success
1334 # If no background operation is active on this device, DeviceNotActive
1335 #
1336 # Since: 1.3
1337 ##
1338 { 'command': 'block-job-complete', 'data': { 'device': 'str' } }
1339
1340 ##
1341 # @BlockdevDiscardOptions
1342 #
1343 # Determines how to handle discard requests.
1344 #
1345 # @ignore: Ignore the request
1346 # @unmap: Forward as an unmap request
1347 #
1348 # Since: 1.7
1349 ##
1350 { 'enum': 'BlockdevDiscardOptions',
1351 'data': [ 'ignore', 'unmap' ] }
1352
1353 ##
1354 # @BlockdevDetectZeroesOptions
1355 #
1356 # Describes the operation mode for the automatic conversion of plain
1357 # zero writes by the OS to driver specific optimized zero write commands.
1358 #
1359 # @off: Disabled (default)
1360 # @on: Enabled
1361 # @unmap: Enabled and even try to unmap blocks if possible. This requires
1362 # also that @BlockdevDiscardOptions is set to unmap for this device.
1363 #
1364 # Since: 2.1
1365 ##
1366 { 'enum': 'BlockdevDetectZeroesOptions',
1367 'data': [ 'off', 'on', 'unmap' ] }
1368
1369 ##
1370 # @BlockdevAioOptions
1371 #
1372 # Selects the AIO backend to handle I/O requests
1373 #
1374 # @threads: Use qemu's thread pool
1375 # @native: Use native AIO backend (only Linux and Windows)
1376 #
1377 # Since: 1.7
1378 ##
1379 { 'enum': 'BlockdevAioOptions',
1380 'data': [ 'threads', 'native' ] }
1381
1382 ##
1383 # @BlockdevCacheOptions
1384 #
1385 # Includes cache-related options for block devices
1386 #
1387 # @writeback: #optional enables writeback mode for any caches (default: true)
1388 # @direct: #optional enables use of O_DIRECT (bypass the host page cache;
1389 # default: false)
1390 # @no-flush: #optional ignore any flush requests for the device (default:
1391 # false)
1392 #
1393 # Since: 1.7
1394 ##
1395 { 'struct': 'BlockdevCacheOptions',
1396 'data': { '*writeback': 'bool',
1397 '*direct': 'bool',
1398 '*no-flush': 'bool' } }
1399
1400 ##
1401 # @BlockdevDriver
1402 #
1403 # Drivers that are supported in block device operations.
1404 #
1405 # @host_device, @host_cdrom: Since 2.1
1406 #
1407 # Since: 2.0
1408 ##
1409 { 'enum': 'BlockdevDriver',
1410 'data': [ 'archipelago', 'blkdebug', 'blkverify', 'bochs', 'cloop',
1411 'dmg', 'file', 'ftp', 'ftps', 'host_cdrom', 'host_device',
1412 'http', 'https', 'null-aio', 'null-co', 'parallels',
1413 'qcow', 'qcow2', 'qed', 'quorum', 'raw', 'tftp', 'vdi', 'vhdx',
1414 'vmdk', 'vpc', 'vvfat' ] }
1415
1416 ##
1417 # @BlockdevOptionsBase
1418 #
1419 # Options that are available for all block devices, independent of the block
1420 # driver.
1421 #
1422 # @driver: block driver name
1423 # @id: #optional id by which the new block device can be referred to.
1424 # This option is only allowed on the top level of blockdev-add.
1425 # A BlockBackend will be created by blockdev-add if and only if
1426 # this option is given.
1427 # @node-name: #optional the name of a block driver state node (Since 2.0).
1428 # This option is required on the top level of blockdev-add if
1429 # the @id option is not given there.
1430 # @discard: #optional discard-related options (default: ignore)
1431 # @cache: #optional cache-related options
1432 # @aio: #optional AIO backend (default: threads)
1433 # @rerror: #optional how to handle read errors on the device
1434 # (default: report)
1435 # @werror: #optional how to handle write errors on the device
1436 # (default: enospc)
1437 # @read-only: #optional whether the block device should be read-only
1438 # (default: false)
1439 # @detect-zeroes: #optional detect and optimize zero writes (Since 2.1)
1440 # (default: off)
1441 #
1442 # Since: 1.7
1443 ##
1444 { 'struct': 'BlockdevOptionsBase',
1445 'data': { 'driver': 'BlockdevDriver',
1446 '*id': 'str',
1447 '*node-name': 'str',
1448 '*discard': 'BlockdevDiscardOptions',
1449 '*cache': 'BlockdevCacheOptions',
1450 '*aio': 'BlockdevAioOptions',
1451 '*rerror': 'BlockdevOnError',
1452 '*werror': 'BlockdevOnError',
1453 '*read-only': 'bool',
1454 '*detect-zeroes': 'BlockdevDetectZeroesOptions' } }
1455
1456 ##
1457 # @BlockdevOptionsFile
1458 #
1459 # Driver specific block device options for the file backend and similar
1460 # protocols.
1461 #
1462 # @filename: path to the image file
1463 #
1464 # Since: 1.7
1465 ##
1466 { 'struct': 'BlockdevOptionsFile',
1467 'data': { 'filename': 'str' } }
1468
1469 ##
1470 # @BlockdevOptionsNull
1471 #
1472 # Driver specific block device options for the null backend.
1473 #
1474 # @size: #optional size of the device in bytes.
1475 # @latency-ns: #optional emulated latency (in nanoseconds) in processing
1476 # requests. Default to zero which completes requests immediately.
1477 # (Since 2.4)
1478 #
1479 # Since: 2.2
1480 ##
1481 { 'struct': 'BlockdevOptionsNull',
1482 'data': { '*size': 'int', '*latency-ns': 'uint64' } }
1483
1484 ##
1485 # @BlockdevOptionsVVFAT
1486 #
1487 # Driver specific block device options for the vvfat protocol.
1488 #
1489 # @dir: directory to be exported as FAT image
1490 # @fat-type: #optional FAT type: 12, 16 or 32
1491 # @floppy: #optional whether to export a floppy image (true) or
1492 # partitioned hard disk (false; default)
1493 # @label: #optional set the volume label, limited to 11 bytes. FAT16 and
1494 # FAT32 traditionally have some restrictions on labels, which are
1495 # ignored by most operating systems. Defaults to "QEMU VVFAT".
1496 # (since 2.4)
1497 # @rw: #optional whether to allow write operations (default: false)
1498 #
1499 # Since: 1.7
1500 ##
1501 { 'struct': 'BlockdevOptionsVVFAT',
1502 'data': { 'dir': 'str', '*fat-type': 'int', '*floppy': 'bool',
1503 '*label': 'str', '*rw': 'bool' } }
1504
1505 ##
1506 # @BlockdevOptionsGenericFormat
1507 #
1508 # Driver specific block device options for image format that have no option
1509 # besides their data source.
1510 #
1511 # @file: reference to or definition of the data source block device
1512 #
1513 # Since: 1.7
1514 ##
1515 { 'struct': 'BlockdevOptionsGenericFormat',
1516 'data': { 'file': 'BlockdevRef' } }
1517
1518 ##
1519 # @BlockdevOptionsGenericCOWFormat
1520 #
1521 # Driver specific block device options for image format that have no option
1522 # besides their data source and an optional backing file.
1523 #
1524 # @backing: #optional reference to or definition of the backing file block
1525 # device (if missing, taken from the image file content). It is
1526 # allowed to pass an empty string here in order to disable the
1527 # default backing file.
1528 #
1529 # Since: 1.7
1530 ##
1531 { 'struct': 'BlockdevOptionsGenericCOWFormat',
1532 'base': 'BlockdevOptionsGenericFormat',
1533 'data': { '*backing': 'BlockdevRef' } }
1534
1535 ##
1536 # @Qcow2OverlapCheckMode
1537 #
1538 # General overlap check modes.
1539 #
1540 # @none: Do not perform any checks
1541 #
1542 # @constant: Perform only checks which can be done in constant time and
1543 # without reading anything from disk
1544 #
1545 # @cached: Perform only checks which can be done without reading anything
1546 # from disk
1547 #
1548 # @all: Perform all available overlap checks
1549 #
1550 # Since: 2.2
1551 ##
1552 { 'enum': 'Qcow2OverlapCheckMode',
1553 'data': [ 'none', 'constant', 'cached', 'all' ] }
1554
1555 ##
1556 # @Qcow2OverlapCheckFlags
1557 #
1558 # Structure of flags for each metadata structure. Setting a field to 'true'
1559 # makes qemu guard that structure against unintended overwriting. The default
1560 # value is chosen according to the template given.
1561 #
1562 # @template: Specifies a template mode which can be adjusted using the other
1563 # flags, defaults to 'cached'
1564 #
1565 # Since: 2.2
1566 ##
1567 { 'struct': 'Qcow2OverlapCheckFlags',
1568 'data': { '*template': 'Qcow2OverlapCheckMode',
1569 '*main-header': 'bool',
1570 '*active-l1': 'bool',
1571 '*active-l2': 'bool',
1572 '*refcount-table': 'bool',
1573 '*refcount-block': 'bool',
1574 '*snapshot-table': 'bool',
1575 '*inactive-l1': 'bool',
1576 '*inactive-l2': 'bool' } }
1577
1578 ##
1579 # @Qcow2OverlapChecks
1580 #
1581 # Specifies which metadata structures should be guarded against unintended
1582 # overwriting.
1583 #
1584 # @flags: set of flags for separate specification of each metadata structure
1585 # type
1586 #
1587 # @mode: named mode which chooses a specific set of flags
1588 #
1589 # Since: 2.2
1590 ##
1591 { 'alternate': 'Qcow2OverlapChecks',
1592 'data': { 'flags': 'Qcow2OverlapCheckFlags',
1593 'mode': 'Qcow2OverlapCheckMode' } }
1594
1595 ##
1596 # @BlockdevOptionsQcow2
1597 #
1598 # Driver specific block device options for qcow2.
1599 #
1600 # @lazy-refcounts: #optional whether to enable the lazy refcounts
1601 # feature (default is taken from the image file)
1602 #
1603 # @pass-discard-request: #optional whether discard requests to the qcow2
1604 # device should be forwarded to the data source
1605 #
1606 # @pass-discard-snapshot: #optional whether discard requests for the data source
1607 # should be issued when a snapshot operation (e.g.
1608 # deleting a snapshot) frees clusters in the qcow2 file
1609 #
1610 # @pass-discard-other: #optional whether discard requests for the data source
1611 # should be issued on other occasions where a cluster
1612 # gets freed
1613 #
1614 # @overlap-check: #optional which overlap checks to perform for writes
1615 # to the image, defaults to 'cached' (since 2.2)
1616 #
1617 # @cache-size: #optional the maximum total size of the L2 table and
1618 # refcount block caches in bytes (since 2.2)
1619 #
1620 # @l2-cache-size: #optional the maximum size of the L2 table cache in
1621 # bytes (since 2.2)
1622 #
1623 # @refcount-cache-size: #optional the maximum size of the refcount block cache
1624 # in bytes (since 2.2)
1625 #
1626 # @cache-clean-interval: #optional clean unused entries in the L2 and refcount
1627 # caches. The interval is in seconds. The default value
1628 # is 0 and it disables this feature (since 2.5)
1629 #
1630 # Since: 1.7
1631 ##
1632 { 'struct': 'BlockdevOptionsQcow2',
1633 'base': 'BlockdevOptionsGenericCOWFormat',
1634 'data': { '*lazy-refcounts': 'bool',
1635 '*pass-discard-request': 'bool',
1636 '*pass-discard-snapshot': 'bool',
1637 '*pass-discard-other': 'bool',
1638 '*overlap-check': 'Qcow2OverlapChecks',
1639 '*cache-size': 'int',
1640 '*l2-cache-size': 'int',
1641 '*refcount-cache-size': 'int',
1642 '*cache-clean-interval': 'int' } }
1643
1644
1645 ##
1646 # @BlockdevOptionsArchipelago
1647 #
1648 # Driver specific block device options for Archipelago.
1649 #
1650 # @volume: Name of the Archipelago volume image
1651 #
1652 # @mport: #optional The port number on which mapperd is
1653 # listening. This is optional
1654 # and if not specified, QEMU will make Archipelago
1655 # use the default port (1001).
1656 #
1657 # @vport: #optional The port number on which vlmcd is
1658 # listening. This is optional
1659 # and if not specified, QEMU will make Archipelago
1660 # use the default port (501).
1661 #
1662 # @segment: #optional The name of the shared memory segment
1663 # Archipelago stack is using. This is optional
1664 # and if not specified, QEMU will make Archipelago
1665 # use the default value, 'archipelago'.
1666 # Since: 2.2
1667 ##
1668 { 'struct': 'BlockdevOptionsArchipelago',
1669 'data': { 'volume': 'str',
1670 '*mport': 'int',
1671 '*vport': 'int',
1672 '*segment': 'str' } }
1673
1674
1675 ##
1676 # @BlkdebugEvent
1677 #
1678 # Trigger events supported by blkdebug.
1679 ##
1680 { 'enum': 'BlkdebugEvent',
1681 'data': [ 'l1_update', 'l1_grow.alloc_table', 'l1_grow.write_table',
1682 'l1_grow.activate_table', 'l2_load', 'l2_update',
1683 'l2_update_compressed', 'l2_alloc.cow_read', 'l2_alloc.write',
1684 'read_aio', 'read_backing_aio', 'read_compressed', 'write_aio',
1685 'write_compressed', 'vmstate_load', 'vmstate_save', 'cow_read',
1686 'cow_write', 'reftable_load', 'reftable_grow', 'reftable_update',
1687 'refblock_load', 'refblock_update', 'refblock_update_part',
1688 'refblock_alloc', 'refblock_alloc.hookup', 'refblock_alloc.write',
1689 'refblock_alloc.write_blocks', 'refblock_alloc.write_table',
1690 'refblock_alloc.switch_table', 'cluster_alloc',
1691 'cluster_alloc_bytes', 'cluster_free', 'flush_to_os',
1692 'flush_to_disk', 'pwritev_rmw.head', 'pwritev_rmw.after_head',
1693 'pwritev_rmw.tail', 'pwritev_rmw.after_tail', 'pwritev',
1694 'pwritev_zero', 'pwritev_done', 'empty_image_prepare' ] }
1695
1696 ##
1697 # @BlkdebugInjectErrorOptions
1698 #
1699 # Describes a single error injection for blkdebug.
1700 #
1701 # @event: trigger event
1702 #
1703 # @state: #optional the state identifier blkdebug needs to be in to
1704 # actually trigger the event; defaults to "any"
1705 #
1706 # @errno: #optional error identifier (errno) to be returned; defaults to
1707 # EIO
1708 #
1709 # @sector: #optional specifies the sector index which has to be affected
1710 # in order to actually trigger the event; defaults to "any
1711 # sector"
1712 #
1713 # @once: #optional disables further events after this one has been
1714 # triggered; defaults to false
1715 #
1716 # @immediately: #optional fail immediately; defaults to false
1717 #
1718 # Since: 2.0
1719 ##
1720 { 'struct': 'BlkdebugInjectErrorOptions',
1721 'data': { 'event': 'BlkdebugEvent',
1722 '*state': 'int',
1723 '*errno': 'int',
1724 '*sector': 'int',
1725 '*once': 'bool',
1726 '*immediately': 'bool' } }
1727
1728 ##
1729 # @BlkdebugSetStateOptions
1730 #
1731 # Describes a single state-change event for blkdebug.
1732 #
1733 # @event: trigger event
1734 #
1735 # @state: #optional the current state identifier blkdebug needs to be in;
1736 # defaults to "any"
1737 #
1738 # @new_state: the state identifier blkdebug is supposed to assume if
1739 # this event is triggered
1740 #
1741 # Since: 2.0
1742 ##
1743 { 'struct': 'BlkdebugSetStateOptions',
1744 'data': { 'event': 'BlkdebugEvent',
1745 '*state': 'int',
1746 'new_state': 'int' } }
1747
1748 ##
1749 # @BlockdevOptionsBlkdebug
1750 #
1751 # Driver specific block device options for blkdebug.
1752 #
1753 # @image: underlying raw block device (or image file)
1754 #
1755 # @config: #optional filename of the configuration file
1756 #
1757 # @align: #optional required alignment for requests in bytes
1758 #
1759 # @inject-error: #optional array of error injection descriptions
1760 #
1761 # @set-state: #optional array of state-change descriptions
1762 #
1763 # Since: 2.0
1764 ##
1765 { 'struct': 'BlockdevOptionsBlkdebug',
1766 'data': { 'image': 'BlockdevRef',
1767 '*config': 'str',
1768 '*align': 'int',
1769 '*inject-error': ['BlkdebugInjectErrorOptions'],
1770 '*set-state': ['BlkdebugSetStateOptions'] } }
1771
1772 ##
1773 # @BlockdevOptionsBlkverify
1774 #
1775 # Driver specific block device options for blkverify.
1776 #
1777 # @test: block device to be tested
1778 #
1779 # @raw: raw image used for verification
1780 #
1781 # Since: 2.0
1782 ##
1783 { 'struct': 'BlockdevOptionsBlkverify',
1784 'data': { 'test': 'BlockdevRef',
1785 'raw': 'BlockdevRef' } }
1786
1787 ##
1788 # @QuorumReadPattern
1789 #
1790 # An enumeration of quorum read patterns.
1791 #
1792 # @quorum: read all the children and do a quorum vote on reads
1793 #
1794 # @fifo: read only from the first child that has not failed
1795 #
1796 # Since: 2.2
1797 ##
1798 { 'enum': 'QuorumReadPattern', 'data': [ 'quorum', 'fifo' ] }
1799
1800 ##
1801 # @BlockdevOptionsQuorum
1802 #
1803 # Driver specific block device options for Quorum
1804 #
1805 # @blkverify: #optional true if the driver must print content mismatch
1806 # set to false by default
1807 #
1808 # @children: the children block devices to use
1809 #
1810 # @vote-threshold: the vote limit under which a read will fail
1811 #
1812 # @rewrite-corrupted: #optional rewrite corrupted data when quorum is reached
1813 # (Since 2.1)
1814 #
1815 # @read-pattern: #optional choose read pattern and set to quorum by default
1816 # (Since 2.2)
1817 #
1818 # Since: 2.0
1819 ##
1820 { 'struct': 'BlockdevOptionsQuorum',
1821 'data': { '*blkverify': 'bool',
1822 'children': [ 'BlockdevRef' ],
1823 'vote-threshold': 'int',
1824 '*rewrite-corrupted': 'bool',
1825 '*read-pattern': 'QuorumReadPattern' } }
1826
1827 ##
1828 # @BlockdevOptions
1829 #
1830 # Options for creating a block device.
1831 #
1832 # Since: 1.7
1833 ##
1834 { 'union': 'BlockdevOptions',
1835 'base': 'BlockdevOptionsBase',
1836 'discriminator': 'driver',
1837 'data': {
1838 'archipelago':'BlockdevOptionsArchipelago',
1839 'blkdebug': 'BlockdevOptionsBlkdebug',
1840 'blkverify': 'BlockdevOptionsBlkverify',
1841 'bochs': 'BlockdevOptionsGenericFormat',
1842 'cloop': 'BlockdevOptionsGenericFormat',
1843 'dmg': 'BlockdevOptionsGenericFormat',
1844 'file': 'BlockdevOptionsFile',
1845 'ftp': 'BlockdevOptionsFile',
1846 'ftps': 'BlockdevOptionsFile',
1847 # TODO gluster: Wait for structured options
1848 'host_cdrom': 'BlockdevOptionsFile',
1849 'host_device':'BlockdevOptionsFile',
1850 'http': 'BlockdevOptionsFile',
1851 'https': 'BlockdevOptionsFile',
1852 # TODO iscsi: Wait for structured options
1853 # TODO nbd: Should take InetSocketAddress for 'host'?
1854 # TODO nfs: Wait for structured options
1855 'null-aio': 'BlockdevOptionsNull',
1856 'null-co': 'BlockdevOptionsNull',
1857 'parallels': 'BlockdevOptionsGenericFormat',
1858 'qcow2': 'BlockdevOptionsQcow2',
1859 'qcow': 'BlockdevOptionsGenericCOWFormat',
1860 'qed': 'BlockdevOptionsGenericCOWFormat',
1861 'quorum': 'BlockdevOptionsQuorum',
1862 'raw': 'BlockdevOptionsGenericFormat',
1863 # TODO rbd: Wait for structured options
1864 # TODO sheepdog: Wait for structured options
1865 # TODO ssh: Should take InetSocketAddress for 'host'?
1866 'tftp': 'BlockdevOptionsFile',
1867 'vdi': 'BlockdevOptionsGenericFormat',
1868 'vhdx': 'BlockdevOptionsGenericFormat',
1869 'vmdk': 'BlockdevOptionsGenericCOWFormat',
1870 'vpc': 'BlockdevOptionsGenericFormat',
1871 'vvfat': 'BlockdevOptionsVVFAT'
1872 } }
1873
1874 ##
1875 # @BlockdevRef
1876 #
1877 # Reference to a block device.
1878 #
1879 # @definition: defines a new block device inline
1880 # @reference: references the ID of an existing block device. An
1881 # empty string means that no block device should be
1882 # referenced.
1883 #
1884 # Since: 1.7
1885 ##
1886 { 'alternate': 'BlockdevRef',
1887 'data': { 'definition': 'BlockdevOptions',
1888 'reference': 'str' } }
1889
1890 ##
1891 # @blockdev-add:
1892 #
1893 # Creates a new block device. If the @id option is given at the top level, a
1894 # BlockBackend will be created; otherwise, @node-name is mandatory at the top
1895 # level and no BlockBackend will be created.
1896 #
1897 # This command is still a work in progress. It doesn't support all
1898 # block drivers among other things. Stay away from it unless you want
1899 # to help with its development.
1900 #
1901 # @options: block device options for the new device
1902 #
1903 # Since: 1.7
1904 ##
1905 { 'command': 'blockdev-add', 'data': { 'options': 'BlockdevOptions' } }
1906
1907 ##
1908 # @x-blockdev-del:
1909 #
1910 # Deletes a block device that has been added using blockdev-add.
1911 # The selected device can be either a block backend or a graph node.
1912 #
1913 # In the former case the backend will be destroyed, along with its
1914 # inserted medium if there's any. The command will fail if the backend
1915 # or its medium are in use.
1916 #
1917 # In the latter case the node will be destroyed. The command will fail
1918 # if the node is attached to a block backend or is otherwise being
1919 # used.
1920 #
1921 # One of @id or @node-name must be specified, but not both.
1922 #
1923 # This command is still a work in progress and is considered
1924 # experimental. Stay away from it unless you want to help with its
1925 # development.
1926 #
1927 # @id: #optional Name of the block backend device to delete.
1928 #
1929 # @node-name: #optional Name of the graph node to delete.
1930 #
1931 # Since: 2.5
1932 ##
1933 { 'command': 'x-blockdev-del', 'data': { '*id': 'str', '*node-name': 'str' } }
1934
1935 ##
1936 # @blockdev-open-tray:
1937 #
1938 # Opens a block device's tray. If there is a block driver state tree inserted as
1939 # a medium, it will become inaccessible to the guest (but it will remain
1940 # associated to the block device, so closing the tray will make it accessible
1941 # again).
1942 #
1943 # If the tray was already open before, this will be a no-op.
1944 #
1945 # Once the tray opens, a DEVICE_TRAY_MOVED event is emitted. There are cases in
1946 # which no such event will be generated, these include:
1947 # - if the guest has locked the tray, @force is false and the guest does not
1948 # respond to the eject request
1949 # - if the BlockBackend denoted by @device does not have a guest device attached
1950 # to it
1951 # - if the guest device does not have an actual tray and is empty, for instance
1952 # for floppy disk drives
1953 #
1954 # @device: block device name
1955 #
1956 # @force: #optional if false (the default), an eject request will be sent to
1957 # the guest if it has locked the tray (and the tray will not be opened
1958 # immediately); if true, the tray will be opened regardless of whether
1959 # it is locked
1960 #
1961 # Since: 2.5
1962 ##
1963 { 'command': 'blockdev-open-tray',
1964 'data': { 'device': 'str',
1965 '*force': 'bool' } }
1966
1967 ##
1968 # @blockdev-close-tray:
1969 #
1970 # Closes a block device's tray. If there is a block driver state tree associated
1971 # with the block device (which is currently ejected), that tree will be loaded
1972 # as the medium.
1973 #
1974 # If the tray was already closed before, this will be a no-op.
1975 #
1976 # @device: block device name
1977 #
1978 # Since: 2.5
1979 ##
1980 { 'command': 'blockdev-close-tray',
1981 'data': { 'device': 'str' } }
1982
1983 ##
1984 # @blockdev-remove-medium:
1985 #
1986 # Removes a medium (a block driver state tree) from a block device. That block
1987 # device's tray must currently be open (unless there is no attached guest
1988 # device).
1989 #
1990 # If the tray is open and there is no medium inserted, this will be a no-op.
1991 #
1992 # @device: block device name
1993 #
1994 # Since: 2.5
1995 ##
1996 { 'command': 'blockdev-remove-medium',
1997 'data': { 'device': 'str' } }
1998
1999 ##
2000 # @blockdev-insert-medium:
2001 #
2002 # Inserts a medium (a block driver state tree) into a block device. That block
2003 # device's tray must currently be open (unless there is no attached guest
2004 # device) and there must be no medium inserted already.
2005 #
2006 # @device: block device name
2007 #
2008 # @node-name: name of a node in the block driver state graph
2009 #
2010 # Since: 2.5
2011 ##
2012 { 'command': 'blockdev-insert-medium',
2013 'data': { 'device': 'str',
2014 'node-name': 'str'} }
2015
2016
2017 ##
2018 # @BlockdevChangeReadOnlyMode:
2019 #
2020 # Specifies the new read-only mode of a block device subject to the
2021 # @blockdev-change-medium command.
2022 #
2023 # @retain: Retains the current read-only mode
2024 #
2025 # @read-only: Makes the device read-only
2026 #
2027 # @read-write: Makes the device writable
2028 #
2029 # Since: 2.3
2030 ##
2031 { 'enum': 'BlockdevChangeReadOnlyMode',
2032 'data': ['retain', 'read-only', 'read-write'] }
2033
2034
2035 ##
2036 # @blockdev-change-medium:
2037 #
2038 # Changes the medium inserted into a block device by ejecting the current medium
2039 # and loading a new image file which is inserted as the new medium (this command
2040 # combines blockdev-open-tray, blockdev-remove-medium, blockdev-insert-medium
2041 # and blockdev-close-tray).
2042 #
2043 # @device: block device name
2044 #
2045 # @filename: filename of the new image to be loaded
2046 #
2047 # @format: #optional, format to open the new image with (defaults to
2048 # the probed format)
2049 #
2050 # @read-only-mode: #optional, change the read-only mode of the device; defaults
2051 # to 'retain'
2052 #
2053 # Since: 2.5
2054 ##
2055 { 'command': 'blockdev-change-medium',
2056 'data': { 'device': 'str',
2057 'filename': 'str',
2058 '*format': 'str',
2059 '*read-only-mode': 'BlockdevChangeReadOnlyMode' } }
2060
2061
2062 ##
2063 # @BlockErrorAction
2064 #
2065 # An enumeration of action that has been taken when a DISK I/O occurs
2066 #
2067 # @ignore: error has been ignored
2068 #
2069 # @report: error has been reported to the device
2070 #
2071 # @stop: error caused VM to be stopped
2072 #
2073 # Since: 2.1
2074 ##
2075 { 'enum': 'BlockErrorAction',
2076 'data': [ 'ignore', 'report', 'stop' ] }
2077
2078
2079 ##
2080 # @BLOCK_IMAGE_CORRUPTED
2081 #
2082 # Emitted when a corruption has been detected in a disk image
2083 #
2084 # @device: device name. This is always present for compatibility
2085 # reasons, but it can be empty ("") if the image does not
2086 # have a device name associated.
2087 #
2088 # @node-name: #optional node name (Since: 2.4)
2089 #
2090 # @msg: informative message for human consumption, such as the kind of
2091 # corruption being detected. It should not be parsed by machine as it is
2092 # not guaranteed to be stable
2093 #
2094 # @offset: #optional, if the corruption resulted from an image access, this is
2095 # the host's access offset into the image
2096 #
2097 # @size: #optional, if the corruption resulted from an image access, this is
2098 # the access size
2099 #
2100 # fatal: if set, the image is marked corrupt and therefore unusable after this
2101 # event and must be repaired (Since 2.2; before, every
2102 # BLOCK_IMAGE_CORRUPTED event was fatal)
2103 #
2104 # Since: 1.7
2105 ##
2106 { 'event': 'BLOCK_IMAGE_CORRUPTED',
2107 'data': { 'device' : 'str',
2108 '*node-name' : 'str',
2109 'msg' : 'str',
2110 '*offset' : 'int',
2111 '*size' : 'int',
2112 'fatal' : 'bool' } }
2113
2114 ##
2115 # @BLOCK_IO_ERROR
2116 #
2117 # Emitted when a disk I/O error occurs
2118 #
2119 # @device: device name
2120 #
2121 # @operation: I/O operation
2122 #
2123 # @action: action that has been taken
2124 #
2125 # @nospace: #optional true if I/O error was caused due to a no-space
2126 # condition. This key is only present if query-block's
2127 # io-status is present, please see query-block documentation
2128 # for more information (since: 2.2)
2129 #
2130 # @reason: human readable string describing the error cause.
2131 # (This field is a debugging aid for humans, it should not
2132 # be parsed by applications) (since: 2.2)
2133 #
2134 # Note: If action is "stop", a STOP event will eventually follow the
2135 # BLOCK_IO_ERROR event
2136 #
2137 # Since: 0.13.0
2138 ##
2139 { 'event': 'BLOCK_IO_ERROR',
2140 'data': { 'device': 'str', 'operation': 'IoOperationType',
2141 'action': 'BlockErrorAction', '*nospace': 'bool',
2142 'reason': 'str' } }
2143
2144 ##
2145 # @BLOCK_JOB_COMPLETED
2146 #
2147 # Emitted when a block job has completed
2148 #
2149 # @type: job type
2150 #
2151 # @device: device name
2152 #
2153 # @len: maximum progress value
2154 #
2155 # @offset: current progress value. On success this is equal to len.
2156 # On failure this is less than len
2157 #
2158 # @speed: rate limit, bytes per second
2159 #
2160 # @error: #optional, error message. Only present on failure. This field
2161 # contains a human-readable error message. There are no semantics
2162 # other than that streaming has failed and clients should not try to
2163 # interpret the error string
2164 #
2165 # Since: 1.1
2166 ##
2167 { 'event': 'BLOCK_JOB_COMPLETED',
2168 'data': { 'type' : 'BlockJobType',
2169 'device': 'str',
2170 'len' : 'int',
2171 'offset': 'int',
2172 'speed' : 'int',
2173 '*error': 'str' } }
2174
2175 ##
2176 # @BLOCK_JOB_CANCELLED
2177 #
2178 # Emitted when a block job has been cancelled
2179 #
2180 # @type: job type
2181 #
2182 # @device: device name
2183 #
2184 # @len: maximum progress value
2185 #
2186 # @offset: current progress value. On success this is equal to len.
2187 # On failure this is less than len
2188 #
2189 # @speed: rate limit, bytes per second
2190 #
2191 # Since: 1.1
2192 ##
2193 { 'event': 'BLOCK_JOB_CANCELLED',
2194 'data': { 'type' : 'BlockJobType',
2195 'device': 'str',
2196 'len' : 'int',
2197 'offset': 'int',
2198 'speed' : 'int' } }
2199
2200 ##
2201 # @BLOCK_JOB_ERROR
2202 #
2203 # Emitted when a block job encounters an error
2204 #
2205 # @device: device name
2206 #
2207 # @operation: I/O operation
2208 #
2209 # @action: action that has been taken
2210 #
2211 # Since: 1.3
2212 ##
2213 { 'event': 'BLOCK_JOB_ERROR',
2214 'data': { 'device' : 'str',
2215 'operation': 'IoOperationType',
2216 'action' : 'BlockErrorAction' } }
2217
2218 ##
2219 # @BLOCK_JOB_READY
2220 #
2221 # Emitted when a block job is ready to complete
2222 #
2223 # @type: job type
2224 #
2225 # @device: device name
2226 #
2227 # @len: maximum progress value
2228 #
2229 # @offset: current progress value. On success this is equal to len.
2230 # On failure this is less than len
2231 #
2232 # @speed: rate limit, bytes per second
2233 #
2234 # Note: The "ready to complete" status is always reset by a @BLOCK_JOB_ERROR
2235 # event
2236 #
2237 # Since: 1.3
2238 ##
2239 { 'event': 'BLOCK_JOB_READY',
2240 'data': { 'type' : 'BlockJobType',
2241 'device': 'str',
2242 'len' : 'int',
2243 'offset': 'int',
2244 'speed' : 'int' } }
2245
2246 # @PreallocMode
2247 #
2248 # Preallocation mode of QEMU image file
2249 #
2250 # @off: no preallocation
2251 # @metadata: preallocate only for metadata
2252 # @falloc: like @full preallocation but allocate disk space by
2253 # posix_fallocate() rather than writing zeros.
2254 # @full: preallocate all data by writing zeros to device to ensure disk
2255 # space is really available. @full preallocation also sets up
2256 # metadata correctly.
2257 #
2258 # Since 2.2
2259 ##
2260 { 'enum': 'PreallocMode',
2261 'data': [ 'off', 'metadata', 'falloc', 'full' ] }
2262
2263 ##
2264 # @BLOCK_WRITE_THRESHOLD
2265 #
2266 # Emitted when writes on block device reaches or exceeds the
2267 # configured write threshold. For thin-provisioned devices, this
2268 # means the device should be extended to avoid pausing for
2269 # disk exhaustion.
2270 # The event is one shot. Once triggered, it needs to be
2271 # re-registered with another block-set-threshold command.
2272 #
2273 # @node-name: graph node name on which the threshold was exceeded.
2274 #
2275 # @amount-exceeded: amount of data which exceeded the threshold, in bytes.
2276 #
2277 # @write-threshold: last configured threshold, in bytes.
2278 #
2279 # Since: 2.3
2280 ##
2281 { 'event': 'BLOCK_WRITE_THRESHOLD',
2282 'data': { 'node-name': 'str',
2283 'amount-exceeded': 'uint64',
2284 'write-threshold': 'uint64' } }
2285
2286 ##
2287 # @block-set-write-threshold
2288 #
2289 # Change the write threshold for a block drive. An event will be delivered
2290 # if a write to this block drive crosses the configured threshold.
2291 # This is useful to transparently resize thin-provisioned drives without
2292 # the guest OS noticing.
2293 #
2294 # @node-name: graph node name on which the threshold must be set.
2295 #
2296 # @write-threshold: configured threshold for the block device, bytes.
2297 # Use 0 to disable the threshold.
2298 #
2299 # Since: 2.3
2300 ##
2301 { 'command': 'block-set-write-threshold',
2302 'data': { 'node-name': 'str', 'write-threshold': 'uint64' } }