]> git.proxmox.com Git - mirror_qemu.git/blob - qapi/block-core.json
qcow2: Add basic data-file infrastructure
[mirror_qemu.git] / qapi / block-core.json
1 # -*- Mode: Python -*-
2
3 ##
4 # == Block core (VM unrelated)
5 ##
6
7 { 'include': 'common.json' }
8 { 'include': 'crypto.json' }
9 { 'include': 'job.json' }
10 { 'include': 'sockets.json' }
11
12 ##
13 # @SnapshotInfo:
14 #
15 # @id: unique snapshot id
16 #
17 # @name: user chosen name
18 #
19 # @vm-state-size: size of the VM state
20 #
21 # @date-sec: UTC date of the snapshot in seconds
22 #
23 # @date-nsec: fractional part in nano seconds to be used with date-sec
24 #
25 # @vm-clock-sec: VM clock relative to boot in seconds
26 #
27 # @vm-clock-nsec: fractional part in nano seconds to be used with vm-clock-sec
28 #
29 # Since: 1.3
30 #
31 ##
32 { 'struct': 'SnapshotInfo',
33 'data': { 'id': 'str', 'name': 'str', 'vm-state-size': 'int',
34 'date-sec': 'int', 'date-nsec': 'int',
35 'vm-clock-sec': 'int', 'vm-clock-nsec': 'int' } }
36
37 ##
38 # @ImageInfoSpecificQCow2EncryptionBase:
39 #
40 # @format: The encryption format
41 #
42 # Since: 2.10
43 ##
44 { 'struct': 'ImageInfoSpecificQCow2EncryptionBase',
45 'data': { 'format': 'BlockdevQcow2EncryptionFormat'}}
46
47 ##
48 # @ImageInfoSpecificQCow2Encryption:
49 #
50 # Since: 2.10
51 ##
52 { 'union': 'ImageInfoSpecificQCow2Encryption',
53 'base': 'ImageInfoSpecificQCow2EncryptionBase',
54 'discriminator': 'format',
55 'data': { 'luks': 'QCryptoBlockInfoLUKS' } }
56
57 ##
58 # @ImageInfoSpecificQCow2:
59 #
60 # @compat: compatibility level
61 #
62 # @lazy-refcounts: on or off; only valid for compat >= 1.1
63 #
64 # @corrupt: true if the image has been marked corrupt; only valid for
65 # compat >= 1.1 (since 2.2)
66 #
67 # @refcount-bits: width of a refcount entry in bits (since 2.3)
68 #
69 # @encrypt: details about encryption parameters; only set if image
70 # is encrypted (since 2.10)
71 #
72 # @bitmaps: A list of qcow2 bitmap details (since 4.0)
73 #
74 # Since: 1.7
75 ##
76 { 'struct': 'ImageInfoSpecificQCow2',
77 'data': {
78 'compat': 'str',
79 '*lazy-refcounts': 'bool',
80 '*corrupt': 'bool',
81 'refcount-bits': 'int',
82 '*encrypt': 'ImageInfoSpecificQCow2Encryption',
83 '*bitmaps': ['Qcow2BitmapInfo']
84 } }
85
86 ##
87 # @ImageInfoSpecificVmdk:
88 #
89 # @create-type: The create type of VMDK image
90 #
91 # @cid: Content id of image
92 #
93 # @parent-cid: Parent VMDK image's cid
94 #
95 # @extents: List of extent files
96 #
97 # Since: 1.7
98 ##
99 { 'struct': 'ImageInfoSpecificVmdk',
100 'data': {
101 'create-type': 'str',
102 'cid': 'int',
103 'parent-cid': 'int',
104 'extents': ['ImageInfo']
105 } }
106
107 ##
108 # @ImageInfoSpecific:
109 #
110 # A discriminated record of image format specific information structures.
111 #
112 # Since: 1.7
113 ##
114 { 'union': 'ImageInfoSpecific',
115 'data': {
116 'qcow2': 'ImageInfoSpecificQCow2',
117 'vmdk': 'ImageInfoSpecificVmdk',
118 # If we need to add block driver specific parameters for
119 # LUKS in future, then we'll subclass QCryptoBlockInfoLUKS
120 # to define a ImageInfoSpecificLUKS
121 'luks': 'QCryptoBlockInfoLUKS'
122 } }
123
124 ##
125 # @ImageInfo:
126 #
127 # Information about a QEMU image file
128 #
129 # @filename: name of the image file
130 #
131 # @format: format of the image file
132 #
133 # @virtual-size: maximum capacity in bytes of the image
134 #
135 # @actual-size: actual size on disk in bytes of the image
136 #
137 # @dirty-flag: true if image is not cleanly closed
138 #
139 # @cluster-size: size of a cluster in bytes
140 #
141 # @encrypted: true if the image is encrypted
142 #
143 # @compressed: true if the image is compressed (Since 1.7)
144 #
145 # @backing-filename: name of the backing file
146 #
147 # @full-backing-filename: full path of the backing file
148 #
149 # @backing-filename-format: the format of the backing file
150 #
151 # @snapshots: list of VM snapshots
152 #
153 # @backing-image: info of the backing image (since 1.6)
154 #
155 # @format-specific: structure supplying additional format-specific
156 # information (since 1.7)
157 #
158 # Since: 1.3
159 #
160 ##
161 { 'struct': 'ImageInfo',
162 'data': {'filename': 'str', 'format': 'str', '*dirty-flag': 'bool',
163 '*actual-size': 'int', 'virtual-size': 'int',
164 '*cluster-size': 'int', '*encrypted': 'bool', '*compressed': 'bool',
165 '*backing-filename': 'str', '*full-backing-filename': 'str',
166 '*backing-filename-format': 'str', '*snapshots': ['SnapshotInfo'],
167 '*backing-image': 'ImageInfo',
168 '*format-specific': 'ImageInfoSpecific' } }
169
170 ##
171 # @ImageCheck:
172 #
173 # Information about a QEMU image file check
174 #
175 # @filename: name of the image file checked
176 #
177 # @format: format of the image file checked
178 #
179 # @check-errors: number of unexpected errors occurred during check
180 #
181 # @image-end-offset: offset (in bytes) where the image ends, this
182 # field is present if the driver for the image format
183 # supports it
184 #
185 # @corruptions: number of corruptions found during the check if any
186 #
187 # @leaks: number of leaks found during the check if any
188 #
189 # @corruptions-fixed: number of corruptions fixed during the check
190 # if any
191 #
192 # @leaks-fixed: number of leaks fixed during the check if any
193 #
194 # @total-clusters: total number of clusters, this field is present
195 # if the driver for the image format supports it
196 #
197 # @allocated-clusters: total number of allocated clusters, this
198 # field is present if the driver for the image format
199 # supports it
200 #
201 # @fragmented-clusters: total number of fragmented clusters, this
202 # field is present if the driver for the image format
203 # supports it
204 #
205 # @compressed-clusters: total number of compressed clusters, this
206 # field is present if the driver for the image format
207 # supports it
208 #
209 # Since: 1.4
210 #
211 ##
212 { 'struct': 'ImageCheck',
213 'data': {'filename': 'str', 'format': 'str', 'check-errors': 'int',
214 '*image-end-offset': 'int', '*corruptions': 'int', '*leaks': 'int',
215 '*corruptions-fixed': 'int', '*leaks-fixed': 'int',
216 '*total-clusters': 'int', '*allocated-clusters': 'int',
217 '*fragmented-clusters': 'int', '*compressed-clusters': 'int' } }
218
219 ##
220 # @MapEntry:
221 #
222 # Mapping information from a virtual block range to a host file range
223 #
224 # @start: the start byte of the mapped virtual range
225 #
226 # @length: the number of bytes of the mapped virtual range
227 #
228 # @data: whether the mapped range has data
229 #
230 # @zero: whether the virtual blocks are zeroed
231 #
232 # @depth: the depth of the mapping
233 #
234 # @offset: the offset in file that the virtual sectors are mapped to
235 #
236 # @filename: filename that is referred to by @offset
237 #
238 # Since: 2.6
239 #
240 ##
241 { 'struct': 'MapEntry',
242 'data': {'start': 'int', 'length': 'int', 'data': 'bool',
243 'zero': 'bool', 'depth': 'int', '*offset': 'int',
244 '*filename': 'str' } }
245
246 ##
247 # @BlockdevCacheInfo:
248 #
249 # Cache mode information for a block device
250 #
251 # @writeback: true if writeback mode is enabled
252 # @direct: true if the host page cache is bypassed (O_DIRECT)
253 # @no-flush: true if flush requests are ignored for the device
254 #
255 # Since: 2.3
256 ##
257 { 'struct': 'BlockdevCacheInfo',
258 'data': { 'writeback': 'bool',
259 'direct': 'bool',
260 'no-flush': 'bool' } }
261
262 ##
263 # @BlockDeviceInfo:
264 #
265 # Information about the backing device for a block device.
266 #
267 # @file: the filename of the backing device
268 #
269 # @node-name: the name of the block driver node (Since 2.0)
270 #
271 # @ro: true if the backing device was open read-only
272 #
273 # @drv: the name of the block format used to open the backing device. As of
274 # 0.14.0 this can be: 'blkdebug', 'bochs', 'cloop', 'cow', 'dmg',
275 # 'file', 'file', 'ftp', 'ftps', 'host_cdrom', 'host_device',
276 # 'http', 'https', 'luks', 'nbd', 'parallels', 'qcow',
277 # 'qcow2', 'raw', 'vdi', 'vmdk', 'vpc', 'vvfat'
278 # 2.2: 'archipelago' added, 'cow' dropped
279 # 2.3: 'host_floppy' deprecated
280 # 2.5: 'host_floppy' dropped
281 # 2.6: 'luks' added
282 # 2.8: 'replication' added, 'tftp' dropped
283 # 2.9: 'archipelago' dropped
284 #
285 # @backing_file: the name of the backing file (for copy-on-write)
286 #
287 # @backing_file_depth: number of files in the backing file chain (since: 1.2)
288 #
289 # @encrypted: true if the backing device is encrypted
290 #
291 # @encryption_key_missing: Deprecated; always false
292 #
293 # @detect_zeroes: detect and optimize zero writes (Since 2.1)
294 #
295 # @bps: total throughput limit in bytes per second is specified
296 #
297 # @bps_rd: read throughput limit in bytes per second is specified
298 #
299 # @bps_wr: write throughput limit in bytes per second is specified
300 #
301 # @iops: total I/O operations per second is specified
302 #
303 # @iops_rd: read I/O operations per second is specified
304 #
305 # @iops_wr: write I/O operations per second is specified
306 #
307 # @image: the info of image used (since: 1.6)
308 #
309 # @bps_max: total throughput limit during bursts,
310 # in bytes (Since 1.7)
311 #
312 # @bps_rd_max: read throughput limit during bursts,
313 # in bytes (Since 1.7)
314 #
315 # @bps_wr_max: write throughput limit during bursts,
316 # in bytes (Since 1.7)
317 #
318 # @iops_max: total I/O operations per second during bursts,
319 # in bytes (Since 1.7)
320 #
321 # @iops_rd_max: read I/O operations per second during bursts,
322 # in bytes (Since 1.7)
323 #
324 # @iops_wr_max: write I/O operations per second during bursts,
325 # in bytes (Since 1.7)
326 #
327 # @bps_max_length: maximum length of the @bps_max burst
328 # period, in seconds. (Since 2.6)
329 #
330 # @bps_rd_max_length: maximum length of the @bps_rd_max
331 # burst period, in seconds. (Since 2.6)
332 #
333 # @bps_wr_max_length: maximum length of the @bps_wr_max
334 # burst period, in seconds. (Since 2.6)
335 #
336 # @iops_max_length: maximum length of the @iops burst
337 # period, in seconds. (Since 2.6)
338 #
339 # @iops_rd_max_length: maximum length of the @iops_rd_max
340 # burst period, in seconds. (Since 2.6)
341 #
342 # @iops_wr_max_length: maximum length of the @iops_wr_max
343 # burst period, in seconds. (Since 2.6)
344 #
345 # @iops_size: an I/O size in bytes (Since 1.7)
346 #
347 # @group: throttle group name (Since 2.4)
348 #
349 # @cache: the cache mode used for the block device (since: 2.3)
350 #
351 # @write_threshold: configured write threshold for the device.
352 # 0 if disabled. (Since 2.3)
353 #
354 # Since: 0.14.0
355 #
356 ##
357 { 'struct': 'BlockDeviceInfo',
358 'data': { 'file': 'str', '*node-name': 'str', 'ro': 'bool', 'drv': 'str',
359 '*backing_file': 'str', 'backing_file_depth': 'int',
360 'encrypted': 'bool', 'encryption_key_missing': 'bool',
361 'detect_zeroes': 'BlockdevDetectZeroesOptions',
362 'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
363 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
364 'image': 'ImageInfo',
365 '*bps_max': 'int', '*bps_rd_max': 'int',
366 '*bps_wr_max': 'int', '*iops_max': 'int',
367 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
368 '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
369 '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
370 '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
371 '*iops_size': 'int', '*group': 'str', 'cache': 'BlockdevCacheInfo',
372 'write_threshold': 'int' } }
373
374 ##
375 # @BlockDeviceIoStatus:
376 #
377 # An enumeration of block device I/O status.
378 #
379 # @ok: The last I/O operation has succeeded
380 #
381 # @failed: The last I/O operation has failed
382 #
383 # @nospace: The last I/O operation has failed due to a no-space condition
384 #
385 # Since: 1.0
386 ##
387 { 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
388
389 ##
390 # @BlockDeviceMapEntry:
391 #
392 # Entry in the metadata map of the device (returned by "qemu-img map")
393 #
394 # @start: Offset in the image of the first byte described by this entry
395 # (in bytes)
396 #
397 # @length: Length of the range described by this entry (in bytes)
398 #
399 # @depth: Number of layers (0 = top image, 1 = top image's backing file, etc.)
400 # before reaching one for which the range is allocated. The value is
401 # in the range 0 to the depth of the image chain - 1.
402 #
403 # @zero: the sectors in this range read as zeros
404 #
405 # @data: reading the image will actually read data from a file (in particular,
406 # if @offset is present this means that the sectors are not simply
407 # preallocated, but contain actual data in raw format)
408 #
409 # @offset: if present, the image file stores the data for this range in
410 # raw format at the given offset.
411 #
412 # Since: 1.7
413 ##
414 { 'struct': 'BlockDeviceMapEntry',
415 'data': { 'start': 'int', 'length': 'int', 'depth': 'int', 'zero': 'bool',
416 'data': 'bool', '*offset': 'int' } }
417
418 ##
419 # @DirtyBitmapStatus:
420 #
421 # An enumeration of possible states that a dirty bitmap can report to the user.
422 #
423 # @frozen: The bitmap is currently in-use by some operation and is immutable.
424 # If the bitmap was @active prior to the operation, new writes by the
425 # guest are being recorded in a temporary buffer, and will not be lost.
426 # Generally, bitmaps are cleared on successful use in an operation and
427 # the temporary buffer is committed into the bitmap. On failure, the
428 # temporary buffer is merged back into the bitmap without first
429 # clearing it.
430 # Please refer to the documentation for each bitmap-using operation,
431 # See also @blockdev-backup, @drive-backup.
432 #
433 # @disabled: The bitmap is not currently recording new writes by the guest.
434 # This is requested explicitly via @block-dirty-bitmap-disable.
435 # It can still be cleared, deleted, or used for backup operations.
436 #
437 # @active: The bitmap is actively monitoring for new writes, and can be cleared,
438 # deleted, or used for backup operations.
439 #
440 # @locked: The bitmap is currently in-use by some operation and is immutable.
441 # If the bitmap was @active prior to the operation, it is still
442 # recording new writes. If the bitmap was @disabled, it is not
443 # recording new writes. (Since 2.12)
444 #
445 # Since: 2.4
446 ##
447 { 'enum': 'DirtyBitmapStatus',
448 'data': ['active', 'disabled', 'frozen', 'locked'] }
449
450 ##
451 # @BlockDirtyInfo:
452 #
453 # Block dirty bitmap information.
454 #
455 # @name: the name of the dirty bitmap (Since 2.4)
456 #
457 # @count: number of dirty bytes according to the dirty bitmap
458 #
459 # @granularity: granularity of the dirty bitmap in bytes (since 1.4)
460 #
461 # @status: current status of the dirty bitmap (since 2.4)
462 #
463 # @persistent: true if the bitmap will eventually be flushed to persistent
464 # storage (since 4.0)
465 #
466 # Since: 1.3
467 ##
468 { 'struct': 'BlockDirtyInfo',
469 'data': {'*name': 'str', 'count': 'int', 'granularity': 'uint32',
470 'status': 'DirtyBitmapStatus', 'persistent': 'bool' } }
471
472 ##
473 # @Qcow2BitmapInfoFlags:
474 #
475 # An enumeration of flags that a bitmap can report to the user.
476 #
477 # @in-use: This flag is set by any process actively modifying the qcow2 file,
478 # and cleared when the updated bitmap is flushed to the qcow2 image.
479 # The presence of this flag in an offline image means that the bitmap
480 # was not saved correctly after its last usage, and may contain
481 # inconsistent data.
482 #
483 # @auto: The bitmap must reflect all changes of the virtual disk by any
484 # application that would write to this qcow2 file.
485 #
486 # Since: 4.0
487 ##
488 { 'enum': 'Qcow2BitmapInfoFlags',
489 'data': ['in-use', 'auto'] }
490
491 ##
492 # @Qcow2BitmapInfo:
493 #
494 # Qcow2 bitmap information.
495 #
496 # @name: the name of the bitmap
497 #
498 # @granularity: granularity of the bitmap in bytes
499 #
500 # @flags: flags of the bitmap
501 #
502 # Since: 4.0
503 ##
504 { 'struct': 'Qcow2BitmapInfo',
505 'data': {'name': 'str', 'granularity': 'uint32',
506 'flags': ['Qcow2BitmapInfoFlags'] } }
507
508 ##
509 # @BlockLatencyHistogramInfo:
510 #
511 # Block latency histogram.
512 #
513 # @boundaries: list of interval boundary values in nanoseconds, all greater
514 # than zero and in ascending order.
515 # For example, the list [10, 50, 100] produces the following
516 # histogram intervals: [0, 10), [10, 50), [50, 100), [100, +inf).
517 #
518 # @bins: list of io request counts corresponding to histogram intervals.
519 # len(@bins) = len(@boundaries) + 1
520 # For the example above, @bins may be something like [3, 1, 5, 2],
521 # and corresponding histogram looks like:
522 #
523 # 5| *
524 # 4| *
525 # 3| * *
526 # 2| * * *
527 # 1| * * * *
528 # +------------------
529 # 10 50 100
530 #
531 # Since: 2.12
532 ##
533 { 'struct': 'BlockLatencyHistogramInfo',
534 'data': {'boundaries': ['uint64'], 'bins': ['uint64'] } }
535
536 ##
537 # @x-block-latency-histogram-set:
538 #
539 # Manage read, write and flush latency histograms for the device.
540 #
541 # If only @device parameter is specified, remove all present latency histograms
542 # for the device. Otherwise, add/reset some of (or all) latency histograms.
543 #
544 # @device: device name to set latency histogram for.
545 #
546 # @boundaries: list of interval boundary values (see description in
547 # BlockLatencyHistogramInfo definition). If specified, all
548 # latency histograms are removed, and empty ones created for all
549 # io types with intervals corresponding to @boundaries (except for
550 # io types, for which specific boundaries are set through the
551 # following parameters).
552 #
553 # @boundaries-read: list of interval boundary values for read latency
554 # histogram. If specified, old read latency histogram is
555 # removed, and empty one created with intervals
556 # corresponding to @boundaries-read. The parameter has higher
557 # priority then @boundaries.
558 #
559 # @boundaries-write: list of interval boundary values for write latency
560 # histogram.
561 #
562 # @boundaries-flush: list of interval boundary values for flush latency
563 # histogram.
564 #
565 # Returns: error if device is not found or any boundary arrays are invalid.
566 #
567 # Since: 2.12
568 #
569 # Example: set new histograms for all io types with intervals
570 # [0, 10), [10, 50), [50, 100), [100, +inf):
571 #
572 # -> { "execute": "block-latency-histogram-set",
573 # "arguments": { "device": "drive0",
574 # "boundaries": [10, 50, 100] } }
575 # <- { "return": {} }
576 #
577 # Example: set new histogram only for write, other histograms will remain
578 # not changed (or not created):
579 #
580 # -> { "execute": "block-latency-histogram-set",
581 # "arguments": { "device": "drive0",
582 # "boundaries-write": [10, 50, 100] } }
583 # <- { "return": {} }
584 #
585 # Example: set new histograms with the following intervals:
586 # read, flush: [0, 10), [10, 50), [50, 100), [100, +inf)
587 # write: [0, 1000), [1000, 5000), [5000, +inf)
588 #
589 # -> { "execute": "block-latency-histogram-set",
590 # "arguments": { "device": "drive0",
591 # "boundaries": [10, 50, 100],
592 # "boundaries-write": [1000, 5000] } }
593 # <- { "return": {} }
594 #
595 # Example: remove all latency histograms:
596 #
597 # -> { "execute": "block-latency-histogram-set",
598 # "arguments": { "device": "drive0" } }
599 # <- { "return": {} }
600 ##
601 { 'command': 'x-block-latency-histogram-set',
602 'data': {'device': 'str',
603 '*boundaries': ['uint64'],
604 '*boundaries-read': ['uint64'],
605 '*boundaries-write': ['uint64'],
606 '*boundaries-flush': ['uint64'] } }
607
608 ##
609 # @BlockInfo:
610 #
611 # Block device information. This structure describes a virtual device and
612 # the backing device associated with it.
613 #
614 # @device: The device name associated with the virtual device.
615 #
616 # @qdev: The qdev ID, or if no ID is assigned, the QOM path of the block
617 # device. (since 2.10)
618 #
619 # @type: This field is returned only for compatibility reasons, it should
620 # not be used (always returns 'unknown')
621 #
622 # @removable: True if the device supports removable media.
623 #
624 # @locked: True if the guest has locked this device from having its media
625 # removed
626 #
627 # @tray_open: True if the device's tray is open
628 # (only present if it has a tray)
629 #
630 # @dirty-bitmaps: dirty bitmaps information (only present if the
631 # driver has one or more dirty bitmaps) (Since 2.0)
632 #
633 # @io-status: @BlockDeviceIoStatus. Only present if the device
634 # supports it and the VM is configured to stop on errors
635 # (supported device models: virtio-blk, IDE, SCSI except
636 # scsi-generic)
637 #
638 # @inserted: @BlockDeviceInfo describing the device if media is
639 # present
640 #
641 # Since: 0.14.0
642 ##
643 { 'struct': 'BlockInfo',
644 'data': {'device': 'str', '*qdev': 'str', 'type': 'str', 'removable': 'bool',
645 'locked': 'bool', '*inserted': 'BlockDeviceInfo',
646 '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus',
647 '*dirty-bitmaps': ['BlockDirtyInfo'] } }
648
649 ##
650 # @BlockMeasureInfo:
651 #
652 # Image file size calculation information. This structure describes the size
653 # requirements for creating a new image file.
654 #
655 # The size requirements depend on the new image file format. File size always
656 # equals virtual disk size for the 'raw' format, even for sparse POSIX files.
657 # Compact formats such as 'qcow2' represent unallocated and zero regions
658 # efficiently so file size may be smaller than virtual disk size.
659 #
660 # The values are upper bounds that are guaranteed to fit the new image file.
661 # Subsequent modification, such as internal snapshot or bitmap creation, may
662 # require additional space and is not covered here.
663 #
664 # @required: Size required for a new image file, in bytes.
665 #
666 # @fully-allocated: Image file size, in bytes, once data has been written
667 # to all sectors.
668 #
669 # Since: 2.10
670 ##
671 { 'struct': 'BlockMeasureInfo',
672 'data': {'required': 'int', 'fully-allocated': 'int'} }
673
674 ##
675 # @query-block:
676 #
677 # Get a list of BlockInfo for all virtual block devices.
678 #
679 # Returns: a list of @BlockInfo describing each virtual block device. Filter
680 # nodes that were created implicitly are skipped over.
681 #
682 # Since: 0.14.0
683 #
684 # Example:
685 #
686 # -> { "execute": "query-block" }
687 # <- {
688 # "return":[
689 # {
690 # "io-status": "ok",
691 # "device":"ide0-hd0",
692 # "locked":false,
693 # "removable":false,
694 # "inserted":{
695 # "ro":false,
696 # "drv":"qcow2",
697 # "encrypted":false,
698 # "file":"disks/test.qcow2",
699 # "backing_file_depth":1,
700 # "bps":1000000,
701 # "bps_rd":0,
702 # "bps_wr":0,
703 # "iops":1000000,
704 # "iops_rd":0,
705 # "iops_wr":0,
706 # "bps_max": 8000000,
707 # "bps_rd_max": 0,
708 # "bps_wr_max": 0,
709 # "iops_max": 0,
710 # "iops_rd_max": 0,
711 # "iops_wr_max": 0,
712 # "iops_size": 0,
713 # "detect_zeroes": "on",
714 # "write_threshold": 0,
715 # "image":{
716 # "filename":"disks/test.qcow2",
717 # "format":"qcow2",
718 # "virtual-size":2048000,
719 # "backing_file":"base.qcow2",
720 # "full-backing-filename":"disks/base.qcow2",
721 # "backing-filename-format":"qcow2",
722 # "snapshots":[
723 # {
724 # "id": "1",
725 # "name": "snapshot1",
726 # "vm-state-size": 0,
727 # "date-sec": 10000200,
728 # "date-nsec": 12,
729 # "vm-clock-sec": 206,
730 # "vm-clock-nsec": 30
731 # }
732 # ],
733 # "backing-image":{
734 # "filename":"disks/base.qcow2",
735 # "format":"qcow2",
736 # "virtual-size":2048000
737 # }
738 # }
739 # },
740 # "qdev": "ide_disk",
741 # "type":"unknown"
742 # },
743 # {
744 # "io-status": "ok",
745 # "device":"ide1-cd0",
746 # "locked":false,
747 # "removable":true,
748 # "qdev": "/machine/unattached/device[23]",
749 # "tray_open": false,
750 # "type":"unknown"
751 # },
752 # {
753 # "device":"floppy0",
754 # "locked":false,
755 # "removable":true,
756 # "qdev": "/machine/unattached/device[20]",
757 # "type":"unknown"
758 # },
759 # {
760 # "device":"sd0",
761 # "locked":false,
762 # "removable":true,
763 # "type":"unknown"
764 # }
765 # ]
766 # }
767 #
768 ##
769 { 'command': 'query-block', 'returns': ['BlockInfo'] }
770
771
772 ##
773 # @BlockDeviceTimedStats:
774 #
775 # Statistics of a block device during a given interval of time.
776 #
777 # @interval_length: Interval used for calculating the statistics,
778 # in seconds.
779 #
780 # @min_rd_latency_ns: Minimum latency of read operations in the
781 # defined interval, in nanoseconds.
782 #
783 # @min_wr_latency_ns: Minimum latency of write operations in the
784 # defined interval, in nanoseconds.
785 #
786 # @min_flush_latency_ns: Minimum latency of flush operations in the
787 # defined interval, in nanoseconds.
788 #
789 # @max_rd_latency_ns: Maximum latency of read operations in the
790 # defined interval, in nanoseconds.
791 #
792 # @max_wr_latency_ns: Maximum latency of write operations in the
793 # defined interval, in nanoseconds.
794 #
795 # @max_flush_latency_ns: Maximum latency of flush operations in the
796 # defined interval, in nanoseconds.
797 #
798 # @avg_rd_latency_ns: Average latency of read operations in the
799 # defined interval, in nanoseconds.
800 #
801 # @avg_wr_latency_ns: Average latency of write operations in the
802 # defined interval, in nanoseconds.
803 #
804 # @avg_flush_latency_ns: Average latency of flush operations in the
805 # defined interval, in nanoseconds.
806 #
807 # @avg_rd_queue_depth: Average number of pending read operations
808 # in the defined interval.
809 #
810 # @avg_wr_queue_depth: Average number of pending write operations
811 # in the defined interval.
812 #
813 # Since: 2.5
814 ##
815 { 'struct': 'BlockDeviceTimedStats',
816 'data': { 'interval_length': 'int', 'min_rd_latency_ns': 'int',
817 'max_rd_latency_ns': 'int', 'avg_rd_latency_ns': 'int',
818 'min_wr_latency_ns': 'int', 'max_wr_latency_ns': 'int',
819 'avg_wr_latency_ns': 'int', 'min_flush_latency_ns': 'int',
820 'max_flush_latency_ns': 'int', 'avg_flush_latency_ns': 'int',
821 'avg_rd_queue_depth': 'number', 'avg_wr_queue_depth': 'number' } }
822
823 ##
824 # @BlockDeviceStats:
825 #
826 # Statistics of a virtual block device or a block backing device.
827 #
828 # @rd_bytes: The number of bytes read by the device.
829 #
830 # @wr_bytes: The number of bytes written by the device.
831 #
832 # @rd_operations: The number of read operations performed by the device.
833 #
834 # @wr_operations: The number of write operations performed by the device.
835 #
836 # @flush_operations: The number of cache flush operations performed by the
837 # device (since 0.15.0)
838 #
839 # @flush_total_time_ns: Total time spend on cache flushes in nano-seconds
840 # (since 0.15.0).
841 #
842 # @wr_total_time_ns: Total time spend on writes in nano-seconds (since 0.15.0).
843 #
844 # @rd_total_time_ns: Total_time_spend on reads in nano-seconds (since 0.15.0).
845 #
846 # @wr_highest_offset: The offset after the greatest byte written to the
847 # device. The intended use of this information is for
848 # growable sparse files (like qcow2) that are used on top
849 # of a physical device.
850 #
851 # @rd_merged: Number of read requests that have been merged into another
852 # request (Since 2.3).
853 #
854 # @wr_merged: Number of write requests that have been merged into another
855 # request (Since 2.3).
856 #
857 # @idle_time_ns: Time since the last I/O operation, in
858 # nanoseconds. If the field is absent it means that
859 # there haven't been any operations yet (Since 2.5).
860 #
861 # @failed_rd_operations: The number of failed read operations
862 # performed by the device (Since 2.5)
863 #
864 # @failed_wr_operations: The number of failed write operations
865 # performed by the device (Since 2.5)
866 #
867 # @failed_flush_operations: The number of failed flush operations
868 # performed by the device (Since 2.5)
869 #
870 # @invalid_rd_operations: The number of invalid read operations
871 # performed by the device (Since 2.5)
872 #
873 # @invalid_wr_operations: The number of invalid write operations
874 # performed by the device (Since 2.5)
875 #
876 # @invalid_flush_operations: The number of invalid flush operations
877 # performed by the device (Since 2.5)
878 #
879 # @account_invalid: Whether invalid operations are included in the
880 # last access statistics (Since 2.5)
881 #
882 # @account_failed: Whether failed operations are included in the
883 # latency and last access statistics (Since 2.5)
884 #
885 # @timed_stats: Statistics specific to the set of previously defined
886 # intervals of time (Since 2.5)
887 #
888 # @x_rd_latency_histogram: @BlockLatencyHistogramInfo. (Since 2.12)
889 #
890 # @x_wr_latency_histogram: @BlockLatencyHistogramInfo. (Since 2.12)
891 #
892 # @x_flush_latency_histogram: @BlockLatencyHistogramInfo. (Since 2.12)
893 #
894 # Since: 0.14.0
895 ##
896 { 'struct': 'BlockDeviceStats',
897 'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'rd_operations': 'int',
898 'wr_operations': 'int', 'flush_operations': 'int',
899 'flush_total_time_ns': 'int', 'wr_total_time_ns': 'int',
900 'rd_total_time_ns': 'int', 'wr_highest_offset': 'int',
901 'rd_merged': 'int', 'wr_merged': 'int', '*idle_time_ns': 'int',
902 'failed_rd_operations': 'int', 'failed_wr_operations': 'int',
903 'failed_flush_operations': 'int', 'invalid_rd_operations': 'int',
904 'invalid_wr_operations': 'int', 'invalid_flush_operations': 'int',
905 'account_invalid': 'bool', 'account_failed': 'bool',
906 'timed_stats': ['BlockDeviceTimedStats'],
907 '*x_rd_latency_histogram': 'BlockLatencyHistogramInfo',
908 '*x_wr_latency_histogram': 'BlockLatencyHistogramInfo',
909 '*x_flush_latency_histogram': 'BlockLatencyHistogramInfo' } }
910
911 ##
912 # @BlockStats:
913 #
914 # Statistics of a virtual block device or a block backing device.
915 #
916 # @device: If the stats are for a virtual block device, the name
917 # corresponding to the virtual block device.
918 #
919 # @node-name: The node name of the device. (Since 2.3)
920 #
921 # @qdev: The qdev ID, or if no ID is assigned, the QOM path of the block
922 # device. (since 3.0)
923 #
924 # @stats: A @BlockDeviceStats for the device.
925 #
926 # @parent: This describes the file block device if it has one.
927 # Contains recursively the statistics of the underlying
928 # protocol (e.g. the host file for a qcow2 image). If there is
929 # no underlying protocol, this field is omitted
930 #
931 # @backing: This describes the backing block device if it has one.
932 # (Since 2.0)
933 #
934 # Since: 0.14.0
935 ##
936 { 'struct': 'BlockStats',
937 'data': {'*device': 'str', '*qdev': 'str', '*node-name': 'str',
938 'stats': 'BlockDeviceStats',
939 '*parent': 'BlockStats',
940 '*backing': 'BlockStats'} }
941
942 ##
943 # @query-blockstats:
944 #
945 # Query the @BlockStats for all virtual block devices.
946 #
947 # @query-nodes: If true, the command will query all the block nodes
948 # that have a node name, in a list which will include "parent"
949 # information, but not "backing".
950 # If false or omitted, the behavior is as before - query all the
951 # device backends, recursively including their "parent" and
952 # "backing". Filter nodes that were created implicitly are
953 # skipped over in this mode. (Since 2.3)
954 #
955 # Returns: A list of @BlockStats for each virtual block devices.
956 #
957 # Since: 0.14.0
958 #
959 # Example:
960 #
961 # -> { "execute": "query-blockstats" }
962 # <- {
963 # "return":[
964 # {
965 # "device":"ide0-hd0",
966 # "parent":{
967 # "stats":{
968 # "wr_highest_offset":3686448128,
969 # "wr_bytes":9786368,
970 # "wr_operations":751,
971 # "rd_bytes":122567168,
972 # "rd_operations":36772
973 # "wr_total_times_ns":313253456
974 # "rd_total_times_ns":3465673657
975 # "flush_total_times_ns":49653
976 # "flush_operations":61,
977 # "rd_merged":0,
978 # "wr_merged":0,
979 # "idle_time_ns":2953431879,
980 # "account_invalid":true,
981 # "account_failed":false
982 # }
983 # },
984 # "stats":{
985 # "wr_highest_offset":2821110784,
986 # "wr_bytes":9786368,
987 # "wr_operations":692,
988 # "rd_bytes":122739200,
989 # "rd_operations":36604
990 # "flush_operations":51,
991 # "wr_total_times_ns":313253456
992 # "rd_total_times_ns":3465673657
993 # "flush_total_times_ns":49653,
994 # "rd_merged":0,
995 # "wr_merged":0,
996 # "idle_time_ns":2953431879,
997 # "account_invalid":true,
998 # "account_failed":false
999 # },
1000 # "qdev": "/machine/unattached/device[23]"
1001 # },
1002 # {
1003 # "device":"ide1-cd0",
1004 # "stats":{
1005 # "wr_highest_offset":0,
1006 # "wr_bytes":0,
1007 # "wr_operations":0,
1008 # "rd_bytes":0,
1009 # "rd_operations":0
1010 # "flush_operations":0,
1011 # "wr_total_times_ns":0
1012 # "rd_total_times_ns":0
1013 # "flush_total_times_ns":0,
1014 # "rd_merged":0,
1015 # "wr_merged":0,
1016 # "account_invalid":false,
1017 # "account_failed":false
1018 # },
1019 # "qdev": "/machine/unattached/device[24]"
1020 # },
1021 # {
1022 # "device":"floppy0",
1023 # "stats":{
1024 # "wr_highest_offset":0,
1025 # "wr_bytes":0,
1026 # "wr_operations":0,
1027 # "rd_bytes":0,
1028 # "rd_operations":0
1029 # "flush_operations":0,
1030 # "wr_total_times_ns":0
1031 # "rd_total_times_ns":0
1032 # "flush_total_times_ns":0,
1033 # "rd_merged":0,
1034 # "wr_merged":0,
1035 # "account_invalid":false,
1036 # "account_failed":false
1037 # },
1038 # "qdev": "/machine/unattached/device[16]"
1039 # },
1040 # {
1041 # "device":"sd0",
1042 # "stats":{
1043 # "wr_highest_offset":0,
1044 # "wr_bytes":0,
1045 # "wr_operations":0,
1046 # "rd_bytes":0,
1047 # "rd_operations":0
1048 # "flush_operations":0,
1049 # "wr_total_times_ns":0
1050 # "rd_total_times_ns":0
1051 # "flush_total_times_ns":0,
1052 # "rd_merged":0,
1053 # "wr_merged":0,
1054 # "account_invalid":false,
1055 # "account_failed":false
1056 # }
1057 # }
1058 # ]
1059 # }
1060 #
1061 ##
1062 { 'command': 'query-blockstats',
1063 'data': { '*query-nodes': 'bool' },
1064 'returns': ['BlockStats'] }
1065
1066 ##
1067 # @BlockdevOnError:
1068 #
1069 # An enumeration of possible behaviors for errors on I/O operations.
1070 # The exact meaning depends on whether the I/O was initiated by a guest
1071 # or by a block job
1072 #
1073 # @report: for guest operations, report the error to the guest;
1074 # for jobs, cancel the job
1075 #
1076 # @ignore: ignore the error, only report a QMP event (BLOCK_IO_ERROR
1077 # or BLOCK_JOB_ERROR)
1078 #
1079 # @enospc: same as @stop on ENOSPC, same as @report otherwise.
1080 #
1081 # @stop: for guest operations, stop the virtual machine;
1082 # for jobs, pause the job
1083 #
1084 # @auto: inherit the error handling policy of the backend (since: 2.7)
1085 #
1086 # Since: 1.3
1087 ##
1088 { 'enum': 'BlockdevOnError',
1089 'data': ['report', 'ignore', 'enospc', 'stop', 'auto'] }
1090
1091 ##
1092 # @MirrorSyncMode:
1093 #
1094 # An enumeration of possible behaviors for the initial synchronization
1095 # phase of storage mirroring.
1096 #
1097 # @top: copies data in the topmost image to the destination
1098 #
1099 # @full: copies data from all images to the destination
1100 #
1101 # @none: only copy data written from now on
1102 #
1103 # @incremental: only copy data described by the dirty bitmap. Since: 2.4
1104 #
1105 # Since: 1.3
1106 ##
1107 { 'enum': 'MirrorSyncMode',
1108 'data': ['top', 'full', 'none', 'incremental'] }
1109
1110 ##
1111 # @MirrorCopyMode:
1112 #
1113 # An enumeration whose values tell the mirror block job when to
1114 # trigger writes to the target.
1115 #
1116 # @background: copy data in background only.
1117 #
1118 # @write-blocking: when data is written to the source, write it
1119 # (synchronously) to the target as well. In
1120 # addition, data is copied in background just like in
1121 # @background mode.
1122 #
1123 # Since: 3.0
1124 ##
1125 { 'enum': 'MirrorCopyMode',
1126 'data': ['background', 'write-blocking'] }
1127
1128 ##
1129 # @BlockJobInfo:
1130 #
1131 # Information about a long-running block device operation.
1132 #
1133 # @type: the job type ('stream' for image streaming)
1134 #
1135 # @device: The job identifier. Originally the device name but other
1136 # values are allowed since QEMU 2.7
1137 #
1138 # @len: Estimated @offset value at the completion of the job. This value can
1139 # arbitrarily change while the job is running, in both directions.
1140 #
1141 # @offset: Progress made until now. The unit is arbitrary and the value can
1142 # only meaningfully be used for the ratio of @offset to @len. The
1143 # value is monotonically increasing.
1144 #
1145 # @busy: false if the job is known to be in a quiescent state, with
1146 # no pending I/O. Since 1.3.
1147 #
1148 # @paused: whether the job is paused or, if @busy is true, will
1149 # pause itself as soon as possible. Since 1.3.
1150 #
1151 # @speed: the rate limit, bytes per second
1152 #
1153 # @io-status: the status of the job (since 1.3)
1154 #
1155 # @ready: true if the job may be completed (since 2.2)
1156 #
1157 # @status: Current job state/status (since 2.12)
1158 #
1159 # @auto-finalize: Job will finalize itself when PENDING, moving to
1160 # the CONCLUDED state. (since 2.12)
1161 #
1162 # @auto-dismiss: Job will dismiss itself when CONCLUDED, moving to the NULL
1163 # state and disappearing from the query list. (since 2.12)
1164 #
1165 # @error: Error information if the job did not complete successfully.
1166 # Not set if the job completed successfully. (since 2.12.1)
1167 #
1168 # Since: 1.1
1169 ##
1170 { 'struct': 'BlockJobInfo',
1171 'data': {'type': 'str', 'device': 'str', 'len': 'int',
1172 'offset': 'int', 'busy': 'bool', 'paused': 'bool', 'speed': 'int',
1173 'io-status': 'BlockDeviceIoStatus', 'ready': 'bool',
1174 'status': 'JobStatus',
1175 'auto-finalize': 'bool', 'auto-dismiss': 'bool',
1176 '*error': 'str' } }
1177
1178 ##
1179 # @query-block-jobs:
1180 #
1181 # Return information about long-running block device operations.
1182 #
1183 # Returns: a list of @BlockJobInfo for each active block job
1184 #
1185 # Since: 1.1
1186 ##
1187 { 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }
1188
1189 ##
1190 # @block_passwd:
1191 #
1192 # This command sets the password of a block device that has not been open
1193 # with a password and requires one.
1194 #
1195 # This command is now obsolete and will always return an error since 2.10
1196 #
1197 ##
1198 { 'command': 'block_passwd',
1199 'data': { '*device': 'str',
1200 '*node-name': 'str',
1201 'password': 'str' } }
1202
1203 ##
1204 # @block_resize:
1205 #
1206 # Resize a block image while a guest is running.
1207 #
1208 # Either @device or @node-name must be set but not both.
1209 #
1210 # @device: the name of the device to get the image resized
1211 #
1212 # @node-name: graph node name to get the image resized (Since 2.0)
1213 #
1214 # @size: new image size in bytes
1215 #
1216 # Returns: nothing on success
1217 # If @device is not a valid block device, DeviceNotFound
1218 #
1219 # Since: 0.14.0
1220 #
1221 # Example:
1222 #
1223 # -> { "execute": "block_resize",
1224 # "arguments": { "device": "scratch", "size": 1073741824 } }
1225 # <- { "return": {} }
1226 #
1227 ##
1228 { 'command': 'block_resize',
1229 'data': { '*device': 'str',
1230 '*node-name': 'str',
1231 'size': 'int' } }
1232
1233 ##
1234 # @NewImageMode:
1235 #
1236 # An enumeration that tells QEMU how to set the backing file path in
1237 # a new image file.
1238 #
1239 # @existing: QEMU should look for an existing image file.
1240 #
1241 # @absolute-paths: QEMU should create a new image with absolute paths
1242 # for the backing file. If there is no backing file available, the new
1243 # image will not be backed either.
1244 #
1245 # Since: 1.1
1246 ##
1247 { 'enum': 'NewImageMode',
1248 'data': [ 'existing', 'absolute-paths' ] }
1249
1250 ##
1251 # @BlockdevSnapshotSync:
1252 #
1253 # Either @device or @node-name must be set but not both.
1254 #
1255 # @device: the name of the device to generate the snapshot from.
1256 #
1257 # @node-name: graph node name to generate the snapshot from (Since 2.0)
1258 #
1259 # @snapshot-file: the target of the new image. If the file exists, or
1260 # if it is a device, the snapshot will be created in the existing
1261 # file/device. Otherwise, a new file will be created.
1262 #
1263 # @snapshot-node-name: the graph node name of the new image (Since 2.0)
1264 #
1265 # @format: the format of the snapshot image, default is 'qcow2'.
1266 #
1267 # @mode: whether and how QEMU should create a new image, default is
1268 # 'absolute-paths'.
1269 ##
1270 { 'struct': 'BlockdevSnapshotSync',
1271 'data': { '*device': 'str', '*node-name': 'str',
1272 'snapshot-file': 'str', '*snapshot-node-name': 'str',
1273 '*format': 'str', '*mode': 'NewImageMode' } }
1274
1275 ##
1276 # @BlockdevSnapshot:
1277 #
1278 # @node: device or node name that will have a snapshot created.
1279 #
1280 # @overlay: reference to the existing block device that will become
1281 # the overlay of @node, as part of creating the snapshot.
1282 # It must not have a current backing file (this can be
1283 # achieved by passing "backing": null to blockdev-add).
1284 #
1285 # Since: 2.5
1286 ##
1287 { 'struct': 'BlockdevSnapshot',
1288 'data': { 'node': 'str', 'overlay': 'str' } }
1289
1290 ##
1291 # @DriveBackup:
1292 #
1293 # @job-id: identifier for the newly-created block job. If
1294 # omitted, the device name will be used. (Since 2.7)
1295 #
1296 # @device: the device name or node-name of a root node which should be copied.
1297 #
1298 # @target: the target of the new image. If the file exists, or if it
1299 # is a device, the existing file/device will be used as the new
1300 # destination. If it does not exist, a new file will be created.
1301 #
1302 # @format: the format of the new destination, default is to
1303 # probe if @mode is 'existing', else the format of the source
1304 #
1305 # @sync: what parts of the disk image should be copied to the destination
1306 # (all the disk, only the sectors allocated in the topmost image, from a
1307 # dirty bitmap, or only new I/O).
1308 #
1309 # @mode: whether and how QEMU should create a new image, default is
1310 # 'absolute-paths'.
1311 #
1312 # @speed: the maximum speed, in bytes per second
1313 #
1314 # @bitmap: the name of dirty bitmap if sync is "incremental".
1315 # Must be present if sync is "incremental", must NOT be present
1316 # otherwise. (Since 2.4)
1317 #
1318 # @compress: true to compress data, if the target format supports it.
1319 # (default: false) (since 2.8)
1320 #
1321 # @on-source-error: the action to take on an error on the source,
1322 # default 'report'. 'stop' and 'enospc' can only be used
1323 # if the block device supports io-status (see BlockInfo).
1324 #
1325 # @on-target-error: the action to take on an error on the target,
1326 # default 'report' (no limitations, since this applies to
1327 # a different block device than @device).
1328 #
1329 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1330 # finished its work, waiting for @block-job-finalize before
1331 # making any block graph changes.
1332 # When true, this job will automatically
1333 # perform its abort or commit actions.
1334 # Defaults to true. (Since 2.12)
1335 #
1336 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1337 # has completely ceased all work, and awaits @block-job-dismiss.
1338 # When true, this job will automatically disappear from the query
1339 # list without user intervention.
1340 # Defaults to true. (Since 2.12)
1341 #
1342 # Note: @on-source-error and @on-target-error only affect background
1343 # I/O. If an error occurs during a guest write request, the device's
1344 # rerror/werror actions will be used.
1345 #
1346 # Since: 1.6
1347 ##
1348 { 'struct': 'DriveBackup',
1349 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1350 '*format': 'str', 'sync': 'MirrorSyncMode',
1351 '*mode': 'NewImageMode', '*speed': 'int',
1352 '*bitmap': 'str', '*compress': 'bool',
1353 '*on-source-error': 'BlockdevOnError',
1354 '*on-target-error': 'BlockdevOnError',
1355 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1356
1357 ##
1358 # @BlockdevBackup:
1359 #
1360 # @job-id: identifier for the newly-created block job. If
1361 # omitted, the device name will be used. (Since 2.7)
1362 #
1363 # @device: the device name or node-name of a root node which should be copied.
1364 #
1365 # @target: the device name or node-name of the backup target node.
1366 #
1367 # @sync: what parts of the disk image should be copied to the destination
1368 # (all the disk, only the sectors allocated in the topmost image, or
1369 # only new I/O).
1370 #
1371 # @speed: the maximum speed, in bytes per second. The default is 0,
1372 # for unlimited.
1373 #
1374 # @bitmap: the name of dirty bitmap if sync is "incremental".
1375 # Must be present if sync is "incremental", must NOT be present
1376 # otherwise. (Since 3.1)
1377 #
1378 # @compress: true to compress data, if the target format supports it.
1379 # (default: false) (since 2.8)
1380 #
1381 # @on-source-error: the action to take on an error on the source,
1382 # default 'report'. 'stop' and 'enospc' can only be used
1383 # if the block device supports io-status (see BlockInfo).
1384 #
1385 # @on-target-error: the action to take on an error on the target,
1386 # default 'report' (no limitations, since this applies to
1387 # a different block device than @device).
1388 #
1389 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1390 # finished its work, waiting for @block-job-finalize before
1391 # making any block graph changes.
1392 # When true, this job will automatically
1393 # perform its abort or commit actions.
1394 # Defaults to true. (Since 2.12)
1395 #
1396 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1397 # has completely ceased all work, and awaits @block-job-dismiss.
1398 # When true, this job will automatically disappear from the query
1399 # list without user intervention.
1400 # Defaults to true. (Since 2.12)
1401 #
1402 # Note: @on-source-error and @on-target-error only affect background
1403 # I/O. If an error occurs during a guest write request, the device's
1404 # rerror/werror actions will be used.
1405 #
1406 # Since: 2.3
1407 ##
1408 { 'struct': 'BlockdevBackup',
1409 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1410 'sync': 'MirrorSyncMode', '*speed': 'int',
1411 '*bitmap': 'str', '*compress': 'bool',
1412 '*on-source-error': 'BlockdevOnError',
1413 '*on-target-error': 'BlockdevOnError',
1414 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1415
1416 ##
1417 # @blockdev-snapshot-sync:
1418 #
1419 # Generates a synchronous snapshot of a block device.
1420 #
1421 # For the arguments, see the documentation of BlockdevSnapshotSync.
1422 #
1423 # Returns: nothing on success
1424 # If @device is not a valid block device, DeviceNotFound
1425 #
1426 # Since: 0.14.0
1427 #
1428 # Example:
1429 #
1430 # -> { "execute": "blockdev-snapshot-sync",
1431 # "arguments": { "device": "ide-hd0",
1432 # "snapshot-file":
1433 # "/some/place/my-image",
1434 # "format": "qcow2" } }
1435 # <- { "return": {} }
1436 #
1437 ##
1438 { 'command': 'blockdev-snapshot-sync',
1439 'data': 'BlockdevSnapshotSync' }
1440
1441
1442 ##
1443 # @blockdev-snapshot:
1444 #
1445 # Generates a snapshot of a block device.
1446 #
1447 # Create a snapshot, by installing 'node' as the backing image of
1448 # 'overlay'. Additionally, if 'node' is associated with a block
1449 # device, the block device changes to using 'overlay' as its new active
1450 # image.
1451 #
1452 # For the arguments, see the documentation of BlockdevSnapshot.
1453 #
1454 # Since: 2.5
1455 #
1456 # Example:
1457 #
1458 # -> { "execute": "blockdev-add",
1459 # "arguments": { "driver": "qcow2",
1460 # "node-name": "node1534",
1461 # "file": { "driver": "file",
1462 # "filename": "hd1.qcow2" },
1463 # "backing": null } }
1464 #
1465 # <- { "return": {} }
1466 #
1467 # -> { "execute": "blockdev-snapshot",
1468 # "arguments": { "node": "ide-hd0",
1469 # "overlay": "node1534" } }
1470 # <- { "return": {} }
1471 #
1472 ##
1473 { 'command': 'blockdev-snapshot',
1474 'data': 'BlockdevSnapshot' }
1475
1476 ##
1477 # @change-backing-file:
1478 #
1479 # Change the backing file in the image file metadata. This does not
1480 # cause QEMU to reopen the image file to reparse the backing filename
1481 # (it may, however, perform a reopen to change permissions from
1482 # r/o -> r/w -> r/o, if needed). The new backing file string is written
1483 # into the image file metadata, and the QEMU internal strings are
1484 # updated.
1485 #
1486 # @image-node-name: The name of the block driver state node of the
1487 # image to modify. The "device" argument is used
1488 # to verify "image-node-name" is in the chain
1489 # described by "device".
1490 #
1491 # @device: The device name or node-name of the root node that owns
1492 # image-node-name.
1493 #
1494 # @backing-file: The string to write as the backing file. This
1495 # string is not validated, so care should be taken
1496 # when specifying the string or the image chain may
1497 # not be able to be reopened again.
1498 #
1499 # Returns: Nothing on success
1500 #
1501 # If "device" does not exist or cannot be determined, DeviceNotFound
1502 #
1503 # Since: 2.1
1504 ##
1505 { 'command': 'change-backing-file',
1506 'data': { 'device': 'str', 'image-node-name': 'str',
1507 'backing-file': 'str' } }
1508
1509 ##
1510 # @block-commit:
1511 #
1512 # Live commit of data from overlay image nodes into backing nodes - i.e.,
1513 # writes data between 'top' and 'base' into 'base'.
1514 #
1515 # @job-id: identifier for the newly-created block job. If
1516 # omitted, the device name will be used. (Since 2.7)
1517 #
1518 # @device: the device name or node-name of a root node
1519 #
1520 # @base-node: The node name of the backing image to write data into.
1521 # If not specified, this is the deepest backing image.
1522 # (since: 3.1)
1523 #
1524 # @base: Same as @base-node, except that it is a file name rather than a node
1525 # name. This must be the exact filename string that was used to open the
1526 # node; other strings, even if addressing the same file, are not
1527 # accepted (deprecated, use @base-node instead)
1528 #
1529 # @top-node: The node name of the backing image within the image chain
1530 # which contains the topmost data to be committed down. If
1531 # not specified, this is the active layer. (since: 3.1)
1532 #
1533 # @top: Same as @top-node, except that it is a file name rather than a node
1534 # name. This must be the exact filename string that was used to open the
1535 # node; other strings, even if addressing the same file, are not
1536 # accepted (deprecated, use @base-node instead)
1537 #
1538 # @backing-file: The backing file string to write into the overlay
1539 # image of 'top'. If 'top' is the active layer,
1540 # specifying a backing file string is an error. This
1541 # filename is not validated.
1542 #
1543 # If a pathname string is such that it cannot be
1544 # resolved by QEMU, that means that subsequent QMP or
1545 # HMP commands must use node-names for the image in
1546 # question, as filename lookup methods will fail.
1547 #
1548 # If not specified, QEMU will automatically determine
1549 # the backing file string to use, or error out if
1550 # there is no obvious choice. Care should be taken
1551 # when specifying the string, to specify a valid
1552 # filename or protocol.
1553 # (Since 2.1)
1554 #
1555 # If top == base, that is an error.
1556 # If top == active, the job will not be completed by itself,
1557 # user needs to complete the job with the block-job-complete
1558 # command after getting the ready event. (Since 2.0)
1559 #
1560 # If the base image is smaller than top, then the base image
1561 # will be resized to be the same size as top. If top is
1562 # smaller than the base image, the base will not be
1563 # truncated. If you want the base image size to match the
1564 # size of the smaller top, you can safely truncate it
1565 # yourself once the commit operation successfully completes.
1566 #
1567 # @speed: the maximum speed, in bytes per second
1568 #
1569 # @filter-node-name: the node name that should be assigned to the
1570 # filter driver that the commit job inserts into the graph
1571 # above @top. If this option is not given, a node name is
1572 # autogenerated. (Since: 2.9)
1573 #
1574 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1575 # finished its work, waiting for @block-job-finalize before
1576 # making any block graph changes.
1577 # When true, this job will automatically
1578 # perform its abort or commit actions.
1579 # Defaults to true. (Since 3.1)
1580 #
1581 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1582 # has completely ceased all work, and awaits @block-job-dismiss.
1583 # When true, this job will automatically disappear from the query
1584 # list without user intervention.
1585 # Defaults to true. (Since 3.1)
1586 #
1587 # Returns: Nothing on success
1588 # If @device does not exist, DeviceNotFound
1589 # Any other error returns a GenericError.
1590 #
1591 # Since: 1.3
1592 #
1593 # Example:
1594 #
1595 # -> { "execute": "block-commit",
1596 # "arguments": { "device": "virtio0",
1597 # "top": "/tmp/snap1.qcow2" } }
1598 # <- { "return": {} }
1599 #
1600 ##
1601 { 'command': 'block-commit',
1602 'data': { '*job-id': 'str', 'device': 'str', '*base-node': 'str',
1603 '*base': 'str', '*top-node': 'str', '*top': 'str',
1604 '*backing-file': 'str', '*speed': 'int',
1605 '*filter-node-name': 'str',
1606 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1607
1608 ##
1609 # @drive-backup:
1610 #
1611 # Start a point-in-time copy of a block device to a new destination. The
1612 # status of ongoing drive-backup operations can be checked with
1613 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1614 # The operation can be stopped before it has completed using the
1615 # block-job-cancel command.
1616 #
1617 # Returns: nothing on success
1618 # If @device is not a valid block device, GenericError
1619 #
1620 # Since: 1.6
1621 #
1622 # Example:
1623 #
1624 # -> { "execute": "drive-backup",
1625 # "arguments": { "device": "drive0",
1626 # "sync": "full",
1627 # "target": "backup.img" } }
1628 # <- { "return": {} }
1629 #
1630 ##
1631 { 'command': 'drive-backup', 'boxed': true,
1632 'data': 'DriveBackup' }
1633
1634 ##
1635 # @blockdev-backup:
1636 #
1637 # Start a point-in-time copy of a block device to a new destination. The
1638 # status of ongoing blockdev-backup operations can be checked with
1639 # query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1640 # The operation can be stopped before it has completed using the
1641 # block-job-cancel command.
1642 #
1643 # Returns: nothing on success
1644 # If @device is not a valid block device, DeviceNotFound
1645 #
1646 # Since: 2.3
1647 #
1648 # Example:
1649 # -> { "execute": "blockdev-backup",
1650 # "arguments": { "device": "src-id",
1651 # "sync": "full",
1652 # "target": "tgt-id" } }
1653 # <- { "return": {} }
1654 #
1655 ##
1656 { 'command': 'blockdev-backup', 'boxed': true,
1657 'data': 'BlockdevBackup' }
1658
1659
1660 ##
1661 # @query-named-block-nodes:
1662 #
1663 # Get the named block driver list
1664 #
1665 # Returns: the list of BlockDeviceInfo
1666 #
1667 # Since: 2.0
1668 #
1669 # Example:
1670 #
1671 # -> { "execute": "query-named-block-nodes" }
1672 # <- { "return": [ { "ro":false,
1673 # "drv":"qcow2",
1674 # "encrypted":false,
1675 # "file":"disks/test.qcow2",
1676 # "node-name": "my-node",
1677 # "backing_file_depth":1,
1678 # "bps":1000000,
1679 # "bps_rd":0,
1680 # "bps_wr":0,
1681 # "iops":1000000,
1682 # "iops_rd":0,
1683 # "iops_wr":0,
1684 # "bps_max": 8000000,
1685 # "bps_rd_max": 0,
1686 # "bps_wr_max": 0,
1687 # "iops_max": 0,
1688 # "iops_rd_max": 0,
1689 # "iops_wr_max": 0,
1690 # "iops_size": 0,
1691 # "write_threshold": 0,
1692 # "image":{
1693 # "filename":"disks/test.qcow2",
1694 # "format":"qcow2",
1695 # "virtual-size":2048000,
1696 # "backing_file":"base.qcow2",
1697 # "full-backing-filename":"disks/base.qcow2",
1698 # "backing-filename-format":"qcow2",
1699 # "snapshots":[
1700 # {
1701 # "id": "1",
1702 # "name": "snapshot1",
1703 # "vm-state-size": 0,
1704 # "date-sec": 10000200,
1705 # "date-nsec": 12,
1706 # "vm-clock-sec": 206,
1707 # "vm-clock-nsec": 30
1708 # }
1709 # ],
1710 # "backing-image":{
1711 # "filename":"disks/base.qcow2",
1712 # "format":"qcow2",
1713 # "virtual-size":2048000
1714 # }
1715 # } } ] }
1716 #
1717 ##
1718 { 'command': 'query-named-block-nodes', 'returns': [ 'BlockDeviceInfo' ] }
1719
1720 ##
1721 # @XDbgBlockGraphNodeType:
1722 #
1723 # @block-backend: corresponds to BlockBackend
1724 #
1725 # @block-job: corresonds to BlockJob
1726 #
1727 # @block-driver: corresponds to BlockDriverState
1728 #
1729 # Since: 4.0
1730 ##
1731 { 'enum': 'XDbgBlockGraphNodeType',
1732 'data': [ 'block-backend', 'block-job', 'block-driver' ] }
1733
1734 ##
1735 # @XDbgBlockGraphNode:
1736 #
1737 # @id: Block graph node identifier. This @id is generated only for
1738 # x-debug-query-block-graph and does not relate to any other identifiers in
1739 # Qemu.
1740 #
1741 # @type: Type of graph node. Can be one of block-backend, block-job or
1742 # block-driver-state.
1743 #
1744 # @name: Human readable name of the node. Corresponds to node-name for
1745 # block-driver-state nodes; is not guaranteed to be unique in the whole
1746 # graph (with block-jobs and block-backends).
1747 #
1748 # Since: 4.0
1749 ##
1750 { 'struct': 'XDbgBlockGraphNode',
1751 'data': { 'id': 'uint64', 'type': 'XDbgBlockGraphNodeType', 'name': 'str' } }
1752
1753 ##
1754 # @BlockPermission:
1755 #
1756 # Enum of base block permissions.
1757 #
1758 # @consistent-read: A user that has the "permission" of consistent reads is
1759 # guaranteed that their view of the contents of the block
1760 # device is complete and self-consistent, representing the
1761 # contents of a disk at a specific point.
1762 # For most block devices (including their backing files) this
1763 # is true, but the property cannot be maintained in a few
1764 # situations like for intermediate nodes of a commit block
1765 # job.
1766 #
1767 # @write: This permission is required to change the visible disk contents.
1768 #
1769 # @write-unchanged: This permission (which is weaker than BLK_PERM_WRITE) is
1770 # both enough and required for writes to the block node when
1771 # the caller promises that the visible disk content doesn't
1772 # change.
1773 # As the BLK_PERM_WRITE permission is strictly stronger,
1774 # either is sufficient to perform an unchanging write.
1775 #
1776 # @resize: This permission is required to change the size of a block node.
1777 #
1778 # @graph-mod: This permission is required to change the node that this
1779 # BdrvChild points to.
1780 #
1781 # Since: 4.0
1782 ##
1783 { 'enum': 'BlockPermission',
1784 'data': [ 'consistent-read', 'write', 'write-unchanged', 'resize',
1785 'graph-mod' ] }
1786 ##
1787 # @XDbgBlockGraphEdge:
1788 #
1789 # Block Graph edge description for x-debug-query-block-graph.
1790 #
1791 # @parent: parent id
1792 #
1793 # @child: child id
1794 #
1795 # @name: name of the relation (examples are 'file' and 'backing')
1796 #
1797 # @perm: granted permissions for the parent operating on the child
1798 #
1799 # @shared-perm: permissions that can still be granted to other users of the
1800 # child while it is still attached to this parent
1801 #
1802 # Since: 4.0
1803 ##
1804 { 'struct': 'XDbgBlockGraphEdge',
1805 'data': { 'parent': 'uint64', 'child': 'uint64',
1806 'name': 'str', 'perm': [ 'BlockPermission' ],
1807 'shared-perm': [ 'BlockPermission' ] } }
1808
1809 ##
1810 # @XDbgBlockGraph:
1811 #
1812 # Block Graph - list of nodes and list of edges.
1813 #
1814 # Since: 4.0
1815 ##
1816 { 'struct': 'XDbgBlockGraph',
1817 'data': { 'nodes': ['XDbgBlockGraphNode'], 'edges': ['XDbgBlockGraphEdge'] } }
1818
1819 ##
1820 # @x-debug-query-block-graph:
1821 #
1822 # Get the block graph.
1823 #
1824 # Since: 4.0
1825 ##
1826 { 'command': 'x-debug-query-block-graph', 'returns': 'XDbgBlockGraph' }
1827
1828 ##
1829 # @drive-mirror:
1830 #
1831 # Start mirroring a block device's writes to a new destination. target
1832 # specifies the target of the new image. If the file exists, or if it
1833 # is a device, it will be used as the new destination for writes. If
1834 # it does not exist, a new file will be created. format specifies the
1835 # format of the mirror image, default is to probe if mode='existing',
1836 # else the format of the source.
1837 #
1838 # Returns: nothing on success
1839 # If @device is not a valid block device, GenericError
1840 #
1841 # Since: 1.3
1842 #
1843 # Example:
1844 #
1845 # -> { "execute": "drive-mirror",
1846 # "arguments": { "device": "ide-hd0",
1847 # "target": "/some/place/my-image",
1848 # "sync": "full",
1849 # "format": "qcow2" } }
1850 # <- { "return": {} }
1851 #
1852 ##
1853 { 'command': 'drive-mirror', 'boxed': true,
1854 'data': 'DriveMirror' }
1855
1856 ##
1857 # @DriveMirror:
1858 #
1859 # A set of parameters describing drive mirror setup.
1860 #
1861 # @job-id: identifier for the newly-created block job. If
1862 # omitted, the device name will be used. (Since 2.7)
1863 #
1864 # @device: the device name or node-name of a root node whose writes should be
1865 # mirrored.
1866 #
1867 # @target: the target of the new image. If the file exists, or if it
1868 # is a device, the existing file/device will be used as the new
1869 # destination. If it does not exist, a new file will be created.
1870 #
1871 # @format: the format of the new destination, default is to
1872 # probe if @mode is 'existing', else the format of the source
1873 #
1874 # @node-name: the new block driver state node name in the graph
1875 # (Since 2.1)
1876 #
1877 # @replaces: with sync=full graph node name to be replaced by the new
1878 # image when a whole image copy is done. This can be used to repair
1879 # broken Quorum files. (Since 2.1)
1880 #
1881 # @mode: whether and how QEMU should create a new image, default is
1882 # 'absolute-paths'.
1883 #
1884 # @speed: the maximum speed, in bytes per second
1885 #
1886 # @sync: what parts of the disk image should be copied to the destination
1887 # (all the disk, only the sectors allocated in the topmost image, or
1888 # only new I/O).
1889 #
1890 # @granularity: granularity of the dirty bitmap, default is 64K
1891 # if the image format doesn't have clusters, 4K if the clusters
1892 # are smaller than that, else the cluster size. Must be a
1893 # power of 2 between 512 and 64M (since 1.4).
1894 #
1895 # @buf-size: maximum amount of data in flight from source to
1896 # target (since 1.4).
1897 #
1898 # @on-source-error: the action to take on an error on the source,
1899 # default 'report'. 'stop' and 'enospc' can only be used
1900 # if the block device supports io-status (see BlockInfo).
1901 #
1902 # @on-target-error: the action to take on an error on the target,
1903 # default 'report' (no limitations, since this applies to
1904 # a different block device than @device).
1905 # @unmap: Whether to try to unmap target sectors where source has
1906 # only zero. If true, and target unallocated sectors will read as zero,
1907 # target image sectors will be unmapped; otherwise, zeroes will be
1908 # written. Both will result in identical contents.
1909 # Default is true. (Since 2.4)
1910 #
1911 # @copy-mode: when to copy data to the destination; defaults to 'background'
1912 # (Since: 3.0)
1913 #
1914 # @auto-finalize: When false, this job will wait in a PENDING state after it has
1915 # finished its work, waiting for @block-job-finalize before
1916 # making any block graph changes.
1917 # When true, this job will automatically
1918 # perform its abort or commit actions.
1919 # Defaults to true. (Since 3.1)
1920 #
1921 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1922 # has completely ceased all work, and awaits @block-job-dismiss.
1923 # When true, this job will automatically disappear from the query
1924 # list without user intervention.
1925 # Defaults to true. (Since 3.1)
1926 # Since: 1.3
1927 ##
1928 { 'struct': 'DriveMirror',
1929 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
1930 '*format': 'str', '*node-name': 'str', '*replaces': 'str',
1931 'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
1932 '*speed': 'int', '*granularity': 'uint32',
1933 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1934 '*on-target-error': 'BlockdevOnError',
1935 '*unmap': 'bool', '*copy-mode': 'MirrorCopyMode',
1936 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1937
1938 ##
1939 # @BlockDirtyBitmap:
1940 #
1941 # @node: name of device/node which the bitmap is tracking
1942 #
1943 # @name: name of the dirty bitmap
1944 #
1945 # Since: 2.4
1946 ##
1947 { 'struct': 'BlockDirtyBitmap',
1948 'data': { 'node': 'str', 'name': 'str' } }
1949
1950 ##
1951 # @BlockDirtyBitmapAdd:
1952 #
1953 # @node: name of device/node which the bitmap is tracking
1954 #
1955 # @name: name of the dirty bitmap
1956 #
1957 # @granularity: the bitmap granularity, default is 64k for
1958 # block-dirty-bitmap-add
1959 #
1960 # @persistent: the bitmap is persistent, i.e. it will be saved to the
1961 # corresponding block device image file on its close. For now only
1962 # Qcow2 disks support persistent bitmaps. Default is false for
1963 # block-dirty-bitmap-add. (Since: 2.10)
1964 #
1965 # @autoload: ignored and deprecated since 2.12.
1966 # Currently, all dirty tracking bitmaps are loaded from Qcow2 on
1967 # open.
1968 #
1969 # @disabled: the bitmap is created in the disabled state, which means that
1970 # it will not track drive changes. The bitmap may be enabled with
1971 # block-dirty-bitmap-enable. Default is false. (Since: 4.0)
1972 #
1973 # Since: 2.4
1974 ##
1975 { 'struct': 'BlockDirtyBitmapAdd',
1976 'data': { 'node': 'str', 'name': 'str', '*granularity': 'uint32',
1977 '*persistent': 'bool', '*autoload': 'bool', '*disabled': 'bool' } }
1978
1979 ##
1980 # @BlockDirtyBitmapMerge:
1981 #
1982 # @node: name of device/node which the bitmap is tracking
1983 #
1984 # @target: name of the destination dirty bitmap
1985 #
1986 # @bitmaps: name(s) of the source dirty bitmap(s)
1987 #
1988 # Since: 4.0
1989 ##
1990 { 'struct': 'BlockDirtyBitmapMerge',
1991 'data': { 'node': 'str', 'target': 'str', 'bitmaps': ['str'] } }
1992
1993 ##
1994 # @block-dirty-bitmap-add:
1995 #
1996 # Create a dirty bitmap with a name on the node, and start tracking the writes.
1997 #
1998 # Returns: nothing on success
1999 # If @node is not a valid block device or node, DeviceNotFound
2000 # If @name is already taken, GenericError with an explanation
2001 #
2002 # Since: 2.4
2003 #
2004 # Example:
2005 #
2006 # -> { "execute": "block-dirty-bitmap-add",
2007 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2008 # <- { "return": {} }
2009 #
2010 ##
2011 { 'command': 'block-dirty-bitmap-add',
2012 'data': 'BlockDirtyBitmapAdd' }
2013
2014 ##
2015 # @block-dirty-bitmap-remove:
2016 #
2017 # Stop write tracking and remove the dirty bitmap that was created
2018 # with block-dirty-bitmap-add. If the bitmap is persistent, remove it from its
2019 # storage too.
2020 #
2021 # Returns: nothing on success
2022 # If @node is not a valid block device or node, DeviceNotFound
2023 # If @name is not found, GenericError with an explanation
2024 # if @name is frozen by an operation, GenericError
2025 #
2026 # Since: 2.4
2027 #
2028 # Example:
2029 #
2030 # -> { "execute": "block-dirty-bitmap-remove",
2031 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2032 # <- { "return": {} }
2033 #
2034 ##
2035 { 'command': 'block-dirty-bitmap-remove',
2036 'data': 'BlockDirtyBitmap' }
2037
2038 ##
2039 # @block-dirty-bitmap-clear:
2040 #
2041 # Clear (reset) a dirty bitmap on the device, so that an incremental
2042 # backup from this point in time forward will only backup clusters
2043 # modified after this clear operation.
2044 #
2045 # Returns: nothing on success
2046 # If @node is not a valid block device, DeviceNotFound
2047 # If @name is not found, GenericError with an explanation
2048 #
2049 # Since: 2.4
2050 #
2051 # Example:
2052 #
2053 # -> { "execute": "block-dirty-bitmap-clear",
2054 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2055 # <- { "return": {} }
2056 #
2057 ##
2058 { 'command': 'block-dirty-bitmap-clear',
2059 'data': 'BlockDirtyBitmap' }
2060
2061 ##
2062 # @block-dirty-bitmap-enable:
2063 #
2064 # Enables a dirty bitmap so that it will begin tracking disk changes.
2065 #
2066 # Returns: nothing on success
2067 # If @node is not a valid block device, DeviceNotFound
2068 # If @name is not found, GenericError with an explanation
2069 #
2070 # Since: 4.0
2071 #
2072 # Example:
2073 #
2074 # -> { "execute": "block-dirty-bitmap-enable",
2075 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2076 # <- { "return": {} }
2077 #
2078 ##
2079 { 'command': 'block-dirty-bitmap-enable',
2080 'data': 'BlockDirtyBitmap' }
2081
2082 ##
2083 # @block-dirty-bitmap-disable:
2084 #
2085 # Disables a dirty bitmap so that it will stop tracking disk changes.
2086 #
2087 # Returns: nothing on success
2088 # If @node is not a valid block device, DeviceNotFound
2089 # If @name is not found, GenericError with an explanation
2090 #
2091 # Since: 4.0
2092 #
2093 # Example:
2094 #
2095 # -> { "execute": "block-dirty-bitmap-disable",
2096 # "arguments": { "node": "drive0", "name": "bitmap0" } }
2097 # <- { "return": {} }
2098 #
2099 ##
2100 { 'command': 'block-dirty-bitmap-disable',
2101 'data': 'BlockDirtyBitmap' }
2102
2103 ##
2104 # @block-dirty-bitmap-merge:
2105 #
2106 # Merge dirty bitmaps listed in @bitmaps to the @target dirty bitmap.
2107 # Dirty bitmaps in @bitmaps will be unchanged, except if it also appears
2108 # as the @target bitmap. Any bits already set in @target will still be
2109 # set after the merge, i.e., this operation does not clear the target.
2110 # On error, @target is unchanged.
2111 #
2112 # The resulting bitmap will count as dirty any clusters that were dirty in any
2113 # of the source bitmaps. This can be used to achieve backup checkpoints, or in
2114 # simpler usages, to copy bitmaps.
2115 #
2116 # Returns: nothing on success
2117 # If @node is not a valid block device, DeviceNotFound
2118 # If any bitmap in @bitmaps or @target is not found, GenericError
2119 # If any of the bitmaps have different sizes or granularities,
2120 # GenericError
2121 #
2122 # Since: 4.0
2123 #
2124 # Example:
2125 #
2126 # -> { "execute": "block-dirty-bitmap-merge",
2127 # "arguments": { "node": "drive0", "target": "bitmap0",
2128 # "bitmaps": ["bitmap1"] } }
2129 # <- { "return": {} }
2130 #
2131 ##
2132 { 'command': 'block-dirty-bitmap-merge',
2133 'data': 'BlockDirtyBitmapMerge' }
2134
2135 ##
2136 # @BlockDirtyBitmapSha256:
2137 #
2138 # SHA256 hash of dirty bitmap data
2139 #
2140 # @sha256: ASCII representation of SHA256 bitmap hash
2141 #
2142 # Since: 2.10
2143 ##
2144 { 'struct': 'BlockDirtyBitmapSha256',
2145 'data': {'sha256': 'str'} }
2146
2147 ##
2148 # @x-debug-block-dirty-bitmap-sha256:
2149 #
2150 # Get bitmap SHA256.
2151 #
2152 # Returns: BlockDirtyBitmapSha256 on success
2153 # If @node is not a valid block device, DeviceNotFound
2154 # If @name is not found or if hashing has failed, GenericError with an
2155 # explanation
2156 #
2157 # Since: 2.10
2158 ##
2159 { 'command': 'x-debug-block-dirty-bitmap-sha256',
2160 'data': 'BlockDirtyBitmap', 'returns': 'BlockDirtyBitmapSha256' }
2161
2162 ##
2163 # @blockdev-mirror:
2164 #
2165 # Start mirroring a block device's writes to a new destination.
2166 #
2167 # @job-id: identifier for the newly-created block job. If
2168 # omitted, the device name will be used. (Since 2.7)
2169 #
2170 # @device: The device name or node-name of a root node whose writes should be
2171 # mirrored.
2172 #
2173 # @target: the id or node-name of the block device to mirror to. This mustn't be
2174 # attached to guest.
2175 #
2176 # @replaces: with sync=full graph node name to be replaced by the new
2177 # image when a whole image copy is done. This can be used to repair
2178 # broken Quorum files.
2179 #
2180 # @speed: the maximum speed, in bytes per second
2181 #
2182 # @sync: what parts of the disk image should be copied to the destination
2183 # (all the disk, only the sectors allocated in the topmost image, or
2184 # only new I/O).
2185 #
2186 # @granularity: granularity of the dirty bitmap, default is 64K
2187 # if the image format doesn't have clusters, 4K if the clusters
2188 # are smaller than that, else the cluster size. Must be a
2189 # power of 2 between 512 and 64M
2190 #
2191 # @buf-size: maximum amount of data in flight from source to
2192 # target
2193 #
2194 # @on-source-error: the action to take on an error on the source,
2195 # default 'report'. 'stop' and 'enospc' can only be used
2196 # if the block device supports io-status (see BlockInfo).
2197 #
2198 # @on-target-error: the action to take on an error on the target,
2199 # default 'report' (no limitations, since this applies to
2200 # a different block device than @device).
2201 #
2202 # @filter-node-name: the node name that should be assigned to the
2203 # filter driver that the mirror job inserts into the graph
2204 # above @device. If this option is not given, a node name is
2205 # autogenerated. (Since: 2.9)
2206 #
2207 # @copy-mode: when to copy data to the destination; defaults to 'background'
2208 # (Since: 3.0)
2209 #
2210 # @auto-finalize: When false, this job will wait in a PENDING state after it has
2211 # finished its work, waiting for @block-job-finalize before
2212 # making any block graph changes.
2213 # When true, this job will automatically
2214 # perform its abort or commit actions.
2215 # Defaults to true. (Since 3.1)
2216 #
2217 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
2218 # has completely ceased all work, and awaits @block-job-dismiss.
2219 # When true, this job will automatically disappear from the query
2220 # list without user intervention.
2221 # Defaults to true. (Since 3.1)
2222 # Returns: nothing on success.
2223 #
2224 # Since: 2.6
2225 #
2226 # Example:
2227 #
2228 # -> { "execute": "blockdev-mirror",
2229 # "arguments": { "device": "ide-hd0",
2230 # "target": "target0",
2231 # "sync": "full" } }
2232 # <- { "return": {} }
2233 #
2234 ##
2235 { 'command': 'blockdev-mirror',
2236 'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
2237 '*replaces': 'str',
2238 'sync': 'MirrorSyncMode',
2239 '*speed': 'int', '*granularity': 'uint32',
2240 '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
2241 '*on-target-error': 'BlockdevOnError',
2242 '*filter-node-name': 'str',
2243 '*copy-mode': 'MirrorCopyMode',
2244 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
2245
2246 ##
2247 # @block_set_io_throttle:
2248 #
2249 # Change I/O throttle limits for a block drive.
2250 #
2251 # Since QEMU 2.4, each device with I/O limits is member of a throttle
2252 # group.
2253 #
2254 # If two or more devices are members of the same group, the limits
2255 # will apply to the combined I/O of the whole group in a round-robin
2256 # fashion. Therefore, setting new I/O limits to a device will affect
2257 # the whole group.
2258 #
2259 # The name of the group can be specified using the 'group' parameter.
2260 # If the parameter is unset, it is assumed to be the current group of
2261 # that device. If it's not in any group yet, the name of the device
2262 # will be used as the name for its group.
2263 #
2264 # The 'group' parameter can also be used to move a device to a
2265 # different group. In this case the limits specified in the parameters
2266 # will be applied to the new group only.
2267 #
2268 # I/O limits can be disabled by setting all of them to 0. In this case
2269 # the device will be removed from its group and the rest of its
2270 # members will not be affected. The 'group' parameter is ignored.
2271 #
2272 # Returns: Nothing on success
2273 # If @device is not a valid block device, DeviceNotFound
2274 #
2275 # Since: 1.1
2276 #
2277 # Example:
2278 #
2279 # -> { "execute": "block_set_io_throttle",
2280 # "arguments": { "id": "virtio-blk-pci0/virtio-backend",
2281 # "bps": 0,
2282 # "bps_rd": 0,
2283 # "bps_wr": 0,
2284 # "iops": 512,
2285 # "iops_rd": 0,
2286 # "iops_wr": 0,
2287 # "bps_max": 0,
2288 # "bps_rd_max": 0,
2289 # "bps_wr_max": 0,
2290 # "iops_max": 0,
2291 # "iops_rd_max": 0,
2292 # "iops_wr_max": 0,
2293 # "bps_max_length": 0,
2294 # "iops_size": 0 } }
2295 # <- { "return": {} }
2296 #
2297 # -> { "execute": "block_set_io_throttle",
2298 # "arguments": { "id": "ide0-1-0",
2299 # "bps": 1000000,
2300 # "bps_rd": 0,
2301 # "bps_wr": 0,
2302 # "iops": 0,
2303 # "iops_rd": 0,
2304 # "iops_wr": 0,
2305 # "bps_max": 8000000,
2306 # "bps_rd_max": 0,
2307 # "bps_wr_max": 0,
2308 # "iops_max": 0,
2309 # "iops_rd_max": 0,
2310 # "iops_wr_max": 0,
2311 # "bps_max_length": 60,
2312 # "iops_size": 0 } }
2313 # <- { "return": {} }
2314 ##
2315 { 'command': 'block_set_io_throttle', 'boxed': true,
2316 'data': 'BlockIOThrottle' }
2317
2318 ##
2319 # @BlockIOThrottle:
2320 #
2321 # A set of parameters describing block throttling.
2322 #
2323 # @device: Block device name (deprecated, use @id instead)
2324 #
2325 # @id: The name or QOM path of the guest device (since: 2.8)
2326 #
2327 # @bps: total throughput limit in bytes per second
2328 #
2329 # @bps_rd: read throughput limit in bytes per second
2330 #
2331 # @bps_wr: write throughput limit in bytes per second
2332 #
2333 # @iops: total I/O operations per second
2334 #
2335 # @iops_rd: read I/O operations per second
2336 #
2337 # @iops_wr: write I/O operations per second
2338 #
2339 # @bps_max: total throughput limit during bursts,
2340 # in bytes (Since 1.7)
2341 #
2342 # @bps_rd_max: read throughput limit during bursts,
2343 # in bytes (Since 1.7)
2344 #
2345 # @bps_wr_max: write throughput limit during bursts,
2346 # in bytes (Since 1.7)
2347 #
2348 # @iops_max: total I/O operations per second during bursts,
2349 # in bytes (Since 1.7)
2350 #
2351 # @iops_rd_max: read I/O operations per second during bursts,
2352 # in bytes (Since 1.7)
2353 #
2354 # @iops_wr_max: write I/O operations per second during bursts,
2355 # in bytes (Since 1.7)
2356 #
2357 # @bps_max_length: maximum length of the @bps_max burst
2358 # period, in seconds. It must only
2359 # be set if @bps_max is set as well.
2360 # Defaults to 1. (Since 2.6)
2361 #
2362 # @bps_rd_max_length: maximum length of the @bps_rd_max
2363 # burst period, in seconds. It must only
2364 # be set if @bps_rd_max is set as well.
2365 # Defaults to 1. (Since 2.6)
2366 #
2367 # @bps_wr_max_length: maximum length of the @bps_wr_max
2368 # burst period, in seconds. It must only
2369 # be set if @bps_wr_max is set as well.
2370 # Defaults to 1. (Since 2.6)
2371 #
2372 # @iops_max_length: maximum length of the @iops burst
2373 # period, in seconds. It must only
2374 # be set if @iops_max is set as well.
2375 # Defaults to 1. (Since 2.6)
2376 #
2377 # @iops_rd_max_length: maximum length of the @iops_rd_max
2378 # burst period, in seconds. It must only
2379 # be set if @iops_rd_max is set as well.
2380 # Defaults to 1. (Since 2.6)
2381 #
2382 # @iops_wr_max_length: maximum length of the @iops_wr_max
2383 # burst period, in seconds. It must only
2384 # be set if @iops_wr_max is set as well.
2385 # Defaults to 1. (Since 2.6)
2386 #
2387 # @iops_size: an I/O size in bytes (Since 1.7)
2388 #
2389 # @group: throttle group name (Since 2.4)
2390 #
2391 # Since: 1.1
2392 ##
2393 { 'struct': 'BlockIOThrottle',
2394 'data': { '*device': 'str', '*id': 'str', 'bps': 'int', 'bps_rd': 'int',
2395 'bps_wr': 'int', 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
2396 '*bps_max': 'int', '*bps_rd_max': 'int',
2397 '*bps_wr_max': 'int', '*iops_max': 'int',
2398 '*iops_rd_max': 'int', '*iops_wr_max': 'int',
2399 '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
2400 '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
2401 '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
2402 '*iops_size': 'int', '*group': 'str' } }
2403
2404 ##
2405 # @ThrottleLimits:
2406 #
2407 # Limit parameters for throttling.
2408 # Since some limit combinations are illegal, limits should always be set in one
2409 # transaction. All fields are optional. When setting limits, if a field is
2410 # missing the current value is not changed.
2411 #
2412 # @iops-total: limit total I/O operations per second
2413 # @iops-total-max: I/O operations burst
2414 # @iops-total-max-length: length of the iops-total-max burst period, in seconds
2415 # It must only be set if @iops-total-max is set as well.
2416 # @iops-read: limit read operations per second
2417 # @iops-read-max: I/O operations read burst
2418 # @iops-read-max-length: length of the iops-read-max burst period, in seconds
2419 # It must only be set if @iops-read-max is set as well.
2420 # @iops-write: limit write operations per second
2421 # @iops-write-max: I/O operations write burst
2422 # @iops-write-max-length: length of the iops-write-max burst period, in seconds
2423 # It must only be set if @iops-write-max is set as well.
2424 # @bps-total: limit total bytes per second
2425 # @bps-total-max: total bytes burst
2426 # @bps-total-max-length: length of the bps-total-max burst period, in seconds.
2427 # It must only be set if @bps-total-max is set as well.
2428 # @bps-read: limit read bytes per second
2429 # @bps-read-max: total bytes read burst
2430 # @bps-read-max-length: length of the bps-read-max burst period, in seconds
2431 # It must only be set if @bps-read-max is set as well.
2432 # @bps-write: limit write bytes per second
2433 # @bps-write-max: total bytes write burst
2434 # @bps-write-max-length: length of the bps-write-max burst period, in seconds
2435 # It must only be set if @bps-write-max is set as well.
2436 # @iops-size: when limiting by iops max size of an I/O in bytes
2437 #
2438 # Since: 2.11
2439 ##
2440 { 'struct': 'ThrottleLimits',
2441 'data': { '*iops-total' : 'int', '*iops-total-max' : 'int',
2442 '*iops-total-max-length' : 'int', '*iops-read' : 'int',
2443 '*iops-read-max' : 'int', '*iops-read-max-length' : 'int',
2444 '*iops-write' : 'int', '*iops-write-max' : 'int',
2445 '*iops-write-max-length' : 'int', '*bps-total' : 'int',
2446 '*bps-total-max' : 'int', '*bps-total-max-length' : 'int',
2447 '*bps-read' : 'int', '*bps-read-max' : 'int',
2448 '*bps-read-max-length' : 'int', '*bps-write' : 'int',
2449 '*bps-write-max' : 'int', '*bps-write-max-length' : 'int',
2450 '*iops-size' : 'int' } }
2451
2452 ##
2453 # @block-stream:
2454 #
2455 # Copy data from a backing file into a block device.
2456 #
2457 # The block streaming operation is performed in the background until the entire
2458 # backing file has been copied. This command returns immediately once streaming
2459 # has started. The status of ongoing block streaming operations can be checked
2460 # with query-block-jobs. The operation can be stopped before it has completed
2461 # using the block-job-cancel command.
2462 #
2463 # The node that receives the data is called the top image, can be located in
2464 # any part of the chain (but always above the base image; see below) and can be
2465 # specified using its device or node name. Earlier qemu versions only allowed
2466 # 'device' to name the top level node; presence of the 'base-node' parameter
2467 # during introspection can be used as a witness of the enhanced semantics
2468 # of 'device'.
2469 #
2470 # If a base file is specified then sectors are not copied from that base file and
2471 # its backing chain. When streaming completes the image file will have the base
2472 # file as its backing file. This can be used to stream a subset of the backing
2473 # file chain instead of flattening the entire image.
2474 #
2475 # On successful completion the image file is updated to drop the backing file
2476 # and the BLOCK_JOB_COMPLETED event is emitted.
2477 #
2478 # @job-id: identifier for the newly-created block job. If
2479 # omitted, the device name will be used. (Since 2.7)
2480 #
2481 # @device: the device or node name of the top image
2482 #
2483 # @base: the common backing file name.
2484 # It cannot be set if @base-node is also set.
2485 #
2486 # @base-node: the node name of the backing file.
2487 # It cannot be set if @base is also set. (Since 2.8)
2488 #
2489 # @backing-file: The backing file string to write into the top
2490 # image. This filename is not validated.
2491 #
2492 # If a pathname string is such that it cannot be
2493 # resolved by QEMU, that means that subsequent QMP or
2494 # HMP commands must use node-names for the image in
2495 # question, as filename lookup methods will fail.
2496 #
2497 # If not specified, QEMU will automatically determine
2498 # the backing file string to use, or error out if there
2499 # is no obvious choice. Care should be taken when
2500 # specifying the string, to specify a valid filename or
2501 # protocol.
2502 # (Since 2.1)
2503 #
2504 # @speed: the maximum speed, in bytes per second
2505 #
2506 # @on-error: the action to take on an error (default report).
2507 # 'stop' and 'enospc' can only be used if the block device
2508 # supports io-status (see BlockInfo). Since 1.3.
2509 #
2510 # @auto-finalize: When false, this job will wait in a PENDING state after it has
2511 # finished its work, waiting for @block-job-finalize before
2512 # making any block graph changes.
2513 # When true, this job will automatically
2514 # perform its abort or commit actions.
2515 # Defaults to true. (Since 3.1)
2516 #
2517 # @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
2518 # has completely ceased all work, and awaits @block-job-dismiss.
2519 # When true, this job will automatically disappear from the query
2520 # list without user intervention.
2521 # Defaults to true. (Since 3.1)
2522 #
2523 # Returns: Nothing on success. If @device does not exist, DeviceNotFound.
2524 #
2525 # Since: 1.1
2526 #
2527 # Example:
2528 #
2529 # -> { "execute": "block-stream",
2530 # "arguments": { "device": "virtio0",
2531 # "base": "/tmp/master.qcow2" } }
2532 # <- { "return": {} }
2533 #
2534 ##
2535 { 'command': 'block-stream',
2536 'data': { '*job-id': 'str', 'device': 'str', '*base': 'str',
2537 '*base-node': 'str', '*backing-file': 'str', '*speed': 'int',
2538 '*on-error': 'BlockdevOnError',
2539 '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
2540
2541 ##
2542 # @block-job-set-speed:
2543 #
2544 # Set maximum speed for a background block operation.
2545 #
2546 # This command can only be issued when there is an active block job.
2547 #
2548 # Throttling can be disabled by setting the speed to 0.
2549 #
2550 # @device: The job identifier. This used to be a device name (hence
2551 # the name of the parameter), but since QEMU 2.7 it can have
2552 # other values.
2553 #
2554 # @speed: the maximum speed, in bytes per second, or 0 for unlimited.
2555 # Defaults to 0.
2556 #
2557 # Returns: Nothing on success
2558 # If no background operation is active on this device, DeviceNotActive
2559 #
2560 # Since: 1.1
2561 ##
2562 { 'command': 'block-job-set-speed',
2563 'data': { 'device': 'str', 'speed': 'int' } }
2564
2565 ##
2566 # @block-job-cancel:
2567 #
2568 # Stop an active background block operation.
2569 #
2570 # This command returns immediately after marking the active background block
2571 # operation for cancellation. It is an error to call this command if no
2572 # operation is in progress.
2573 #
2574 # The operation will cancel as soon as possible and then emit the
2575 # BLOCK_JOB_CANCELLED event. Before that happens the job is still visible when
2576 # enumerated using query-block-jobs.
2577 #
2578 # Note that if you issue 'block-job-cancel' after 'drive-mirror' has indicated
2579 # (via the event BLOCK_JOB_READY) that the source and destination are
2580 # synchronized, then the event triggered by this command changes to
2581 # BLOCK_JOB_COMPLETED, to indicate that the mirroring has ended and the
2582 # destination now has a point-in-time copy tied to the time of the cancellation.
2583 #
2584 # For streaming, the image file retains its backing file unless the streaming
2585 # operation happens to complete just as it is being cancelled. A new streaming
2586 # operation can be started at a later time to finish copying all data from the
2587 # backing file.
2588 #
2589 # @device: The job identifier. This used to be a device name (hence
2590 # the name of the parameter), but since QEMU 2.7 it can have
2591 # other values.
2592 #
2593 # @force: If true, and the job has already emitted the event BLOCK_JOB_READY,
2594 # abandon the job immediately (even if it is paused) instead of waiting
2595 # for the destination to complete its final synchronization (since 1.3)
2596 #
2597 # Returns: Nothing on success
2598 # If no background operation is active on this device, DeviceNotActive
2599 #
2600 # Since: 1.1
2601 ##
2602 { 'command': 'block-job-cancel', 'data': { 'device': 'str', '*force': 'bool' } }
2603
2604 ##
2605 # @block-job-pause:
2606 #
2607 # Pause an active background block operation.
2608 #
2609 # This command returns immediately after marking the active background block
2610 # operation for pausing. It is an error to call this command if no
2611 # operation is in progress or if the job is already paused.
2612 #
2613 # The operation will pause as soon as possible. No event is emitted when
2614 # the operation is actually paused. Cancelling a paused job automatically
2615 # resumes it.
2616 #
2617 # @device: The job identifier. This used to be a device name (hence
2618 # the name of the parameter), but since QEMU 2.7 it can have
2619 # other values.
2620 #
2621 # Returns: Nothing on success
2622 # If no background operation is active on this device, DeviceNotActive
2623 #
2624 # Since: 1.3
2625 ##
2626 { 'command': 'block-job-pause', 'data': { 'device': 'str' } }
2627
2628 ##
2629 # @block-job-resume:
2630 #
2631 # Resume an active background block operation.
2632 #
2633 # This command returns immediately after resuming a paused background block
2634 # operation. It is an error to call this command if no operation is in
2635 # progress or if the job is not paused.
2636 #
2637 # This command also clears the error status of the job.
2638 #
2639 # @device: The job identifier. This used to be a device name (hence
2640 # the name of the parameter), but since QEMU 2.7 it can have
2641 # other values.
2642 #
2643 # Returns: Nothing on success
2644 # If no background operation is active on this device, DeviceNotActive
2645 #
2646 # Since: 1.3
2647 ##
2648 { 'command': 'block-job-resume', 'data': { 'device': 'str' } }
2649
2650 ##
2651 # @block-job-complete:
2652 #
2653 # Manually trigger completion of an active background block operation. This
2654 # is supported for drive mirroring, where it also switches the device to
2655 # write to the target path only. The ability to complete is signaled with
2656 # a BLOCK_JOB_READY event.
2657 #
2658 # This command completes an active background block operation synchronously.
2659 # The ordering of this command's return with the BLOCK_JOB_COMPLETED event
2660 # is not defined. Note that if an I/O error occurs during the processing of
2661 # this command: 1) the command itself will fail; 2) the error will be processed
2662 # according to the rerror/werror arguments that were specified when starting
2663 # the operation.
2664 #
2665 # A cancelled or paused job cannot be completed.
2666 #
2667 # @device: The job identifier. This used to be a device name (hence
2668 # the name of the parameter), but since QEMU 2.7 it can have
2669 # other values.
2670 #
2671 # Returns: Nothing on success
2672 # If no background operation is active on this device, DeviceNotActive
2673 #
2674 # Since: 1.3
2675 ##
2676 { 'command': 'block-job-complete', 'data': { 'device': 'str' } }
2677
2678 ##
2679 # @block-job-dismiss:
2680 #
2681 # For jobs that have already concluded, remove them from the block-job-query
2682 # list. This command only needs to be run for jobs which were started with
2683 # QEMU 2.12+ job lifetime management semantics.
2684 #
2685 # This command will refuse to operate on any job that has not yet reached
2686 # its terminal state, JOB_STATUS_CONCLUDED. For jobs that make use of the
2687 # BLOCK_JOB_READY event, block-job-cancel or block-job-complete will still need
2688 # to be used as appropriate.
2689 #
2690 # @id: The job identifier.
2691 #
2692 # Returns: Nothing on success
2693 #
2694 # Since: 2.12
2695 ##
2696 { 'command': 'block-job-dismiss', 'data': { 'id': 'str' } }
2697
2698 ##
2699 # @block-job-finalize:
2700 #
2701 # Once a job that has manual=true reaches the pending state, it can be
2702 # instructed to finalize any graph changes and do any necessary cleanup
2703 # via this command.
2704 # For jobs in a transaction, instructing one job to finalize will force
2705 # ALL jobs in the transaction to finalize, so it is only necessary to instruct
2706 # a single member job to finalize.
2707 #
2708 # @id: The job identifier.
2709 #
2710 # Returns: Nothing on success
2711 #
2712 # Since: 2.12
2713 ##
2714 { 'command': 'block-job-finalize', 'data': { 'id': 'str' } }
2715
2716 ##
2717 # @BlockdevDiscardOptions:
2718 #
2719 # Determines how to handle discard requests.
2720 #
2721 # @ignore: Ignore the request
2722 # @unmap: Forward as an unmap request
2723 #
2724 # Since: 2.9
2725 ##
2726 { 'enum': 'BlockdevDiscardOptions',
2727 'data': [ 'ignore', 'unmap' ] }
2728
2729 ##
2730 # @BlockdevDetectZeroesOptions:
2731 #
2732 # Describes the operation mode for the automatic conversion of plain
2733 # zero writes by the OS to driver specific optimized zero write commands.
2734 #
2735 # @off: Disabled (default)
2736 # @on: Enabled
2737 # @unmap: Enabled and even try to unmap blocks if possible. This requires
2738 # also that @BlockdevDiscardOptions is set to unmap for this device.
2739 #
2740 # Since: 2.1
2741 ##
2742 { 'enum': 'BlockdevDetectZeroesOptions',
2743 'data': [ 'off', 'on', 'unmap' ] }
2744
2745 ##
2746 # @BlockdevAioOptions:
2747 #
2748 # Selects the AIO backend to handle I/O requests
2749 #
2750 # @threads: Use qemu's thread pool
2751 # @native: Use native AIO backend (only Linux and Windows)
2752 #
2753 # Since: 2.9
2754 ##
2755 { 'enum': 'BlockdevAioOptions',
2756 'data': [ 'threads', 'native' ] }
2757
2758 ##
2759 # @BlockdevCacheOptions:
2760 #
2761 # Includes cache-related options for block devices
2762 #
2763 # @direct: enables use of O_DIRECT (bypass the host page cache;
2764 # default: false)
2765 # @no-flush: ignore any flush requests for the device (default:
2766 # false)
2767 #
2768 # Since: 2.9
2769 ##
2770 { 'struct': 'BlockdevCacheOptions',
2771 'data': { '*direct': 'bool',
2772 '*no-flush': 'bool' } }
2773
2774 ##
2775 # @BlockdevDriver:
2776 #
2777 # Drivers that are supported in block device operations.
2778 #
2779 # @vxhs: Since 2.10
2780 # @throttle: Since 2.11
2781 # @nvme: Since 2.12
2782 # @copy-on-read: Since 3.0
2783 # @blklogwrites: Since 3.0
2784 #
2785 # Since: 2.9
2786 ##
2787 { 'enum': 'BlockdevDriver',
2788 'data': [ 'blkdebug', 'blklogwrites', 'blkverify', 'bochs', 'cloop',
2789 'copy-on-read', 'dmg', 'file', 'ftp', 'ftps', 'gluster',
2790 'host_cdrom', 'host_device', 'http', 'https', 'iscsi', 'luks',
2791 'nbd', 'nfs', 'null-aio', 'null-co', 'nvme', 'parallels', 'qcow',
2792 'qcow2', 'qed', 'quorum', 'raw', 'rbd',
2793 { 'name': 'replication', 'if': 'defined(CONFIG_REPLICATION)' },
2794 'sheepdog',
2795 'ssh', 'throttle', 'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat', 'vxhs' ] }
2796
2797 ##
2798 # @BlockdevOptionsFile:
2799 #
2800 # Driver specific block device options for the file backend.
2801 #
2802 # @filename: path to the image file
2803 # @pr-manager: the id for the object that will handle persistent reservations
2804 # for this device (default: none, forward the commands via SG_IO;
2805 # since 2.11)
2806 # @aio: AIO backend (default: threads) (since: 2.8)
2807 # @locking: whether to enable file locking. If set to 'auto', only enable
2808 # when Open File Descriptor (OFD) locking API is available
2809 # (default: auto, since 2.10)
2810 # @x-check-cache-dropped: whether to check that page cache was dropped on live
2811 # migration. May cause noticeable delays if the image
2812 # file is large, do not use in production.
2813 # (default: off) (since: 3.0)
2814 #
2815 # Since: 2.9
2816 ##
2817 { 'struct': 'BlockdevOptionsFile',
2818 'data': { 'filename': 'str',
2819 '*pr-manager': 'str',
2820 '*locking': 'OnOffAuto',
2821 '*aio': 'BlockdevAioOptions',
2822 '*x-check-cache-dropped': 'bool' } }
2823
2824 ##
2825 # @BlockdevOptionsNull:
2826 #
2827 # Driver specific block device options for the null backend.
2828 #
2829 # @size: size of the device in bytes.
2830 # @latency-ns: emulated latency (in nanoseconds) in processing
2831 # requests. Default to zero which completes requests immediately.
2832 # (Since 2.4)
2833 #
2834 # Since: 2.9
2835 ##
2836 { 'struct': 'BlockdevOptionsNull',
2837 'data': { '*size': 'int', '*latency-ns': 'uint64' } }
2838
2839 ##
2840 # @BlockdevOptionsNVMe:
2841 #
2842 # Driver specific block device options for the NVMe backend.
2843 #
2844 # @device: controller address of the NVMe device.
2845 # @namespace: namespace number of the device, starting from 1.
2846 #
2847 # Since: 2.12
2848 ##
2849 { 'struct': 'BlockdevOptionsNVMe',
2850 'data': { 'device': 'str', 'namespace': 'int' } }
2851
2852 ##
2853 # @BlockdevOptionsVVFAT:
2854 #
2855 # Driver specific block device options for the vvfat protocol.
2856 #
2857 # @dir: directory to be exported as FAT image
2858 # @fat-type: FAT type: 12, 16 or 32
2859 # @floppy: whether to export a floppy image (true) or
2860 # partitioned hard disk (false; default)
2861 # @label: set the volume label, limited to 11 bytes. FAT16 and
2862 # FAT32 traditionally have some restrictions on labels, which are
2863 # ignored by most operating systems. Defaults to "QEMU VVFAT".
2864 # (since 2.4)
2865 # @rw: whether to allow write operations (default: false)
2866 #
2867 # Since: 2.9
2868 ##
2869 { 'struct': 'BlockdevOptionsVVFAT',
2870 'data': { 'dir': 'str', '*fat-type': 'int', '*floppy': 'bool',
2871 '*label': 'str', '*rw': 'bool' } }
2872
2873 ##
2874 # @BlockdevOptionsGenericFormat:
2875 #
2876 # Driver specific block device options for image format that have no option
2877 # besides their data source.
2878 #
2879 # @file: reference to or definition of the data source block device
2880 #
2881 # Since: 2.9
2882 ##
2883 { 'struct': 'BlockdevOptionsGenericFormat',
2884 'data': { 'file': 'BlockdevRef' } }
2885
2886 ##
2887 # @BlockdevOptionsLUKS:
2888 #
2889 # Driver specific block device options for LUKS.
2890 #
2891 # @key-secret: the ID of a QCryptoSecret object providing
2892 # the decryption key (since 2.6). Mandatory except when
2893 # doing a metadata-only probe of the image.
2894 #
2895 # Since: 2.9
2896 ##
2897 { 'struct': 'BlockdevOptionsLUKS',
2898 'base': 'BlockdevOptionsGenericFormat',
2899 'data': { '*key-secret': 'str' } }
2900
2901
2902 ##
2903 # @BlockdevOptionsGenericCOWFormat:
2904 #
2905 # Driver specific block device options for image format that have no option
2906 # besides their data source and an optional backing file.
2907 #
2908 # @backing: reference to or definition of the backing file block
2909 # device, null disables the backing file entirely.
2910 # Defaults to the backing file stored the image file.
2911 #
2912 # Since: 2.9
2913 ##
2914 { 'struct': 'BlockdevOptionsGenericCOWFormat',
2915 'base': 'BlockdevOptionsGenericFormat',
2916 'data': { '*backing': 'BlockdevRefOrNull' } }
2917
2918 ##
2919 # @Qcow2OverlapCheckMode:
2920 #
2921 # General overlap check modes.
2922 #
2923 # @none: Do not perform any checks
2924 #
2925 # @constant: Perform only checks which can be done in constant time and
2926 # without reading anything from disk
2927 #
2928 # @cached: Perform only checks which can be done without reading anything
2929 # from disk
2930 #
2931 # @all: Perform all available overlap checks
2932 #
2933 # Since: 2.9
2934 ##
2935 { 'enum': 'Qcow2OverlapCheckMode',
2936 'data': [ 'none', 'constant', 'cached', 'all' ] }
2937
2938 ##
2939 # @Qcow2OverlapCheckFlags:
2940 #
2941 # Structure of flags for each metadata structure. Setting a field to 'true'
2942 # makes qemu guard that structure against unintended overwriting. The default
2943 # value is chosen according to the template given.
2944 #
2945 # @template: Specifies a template mode which can be adjusted using the other
2946 # flags, defaults to 'cached'
2947 #
2948 # @bitmap-directory: since 3.0
2949 #
2950 # Since: 2.9
2951 ##
2952 { 'struct': 'Qcow2OverlapCheckFlags',
2953 'data': { '*template': 'Qcow2OverlapCheckMode',
2954 '*main-header': 'bool',
2955 '*active-l1': 'bool',
2956 '*active-l2': 'bool',
2957 '*refcount-table': 'bool',
2958 '*refcount-block': 'bool',
2959 '*snapshot-table': 'bool',
2960 '*inactive-l1': 'bool',
2961 '*inactive-l2': 'bool',
2962 '*bitmap-directory': 'bool' } }
2963
2964 ##
2965 # @Qcow2OverlapChecks:
2966 #
2967 # Specifies which metadata structures should be guarded against unintended
2968 # overwriting.
2969 #
2970 # @flags: set of flags for separate specification of each metadata structure
2971 # type
2972 #
2973 # @mode: named mode which chooses a specific set of flags
2974 #
2975 # Since: 2.9
2976 ##
2977 { 'alternate': 'Qcow2OverlapChecks',
2978 'data': { 'flags': 'Qcow2OverlapCheckFlags',
2979 'mode': 'Qcow2OverlapCheckMode' } }
2980
2981 ##
2982 # @BlockdevQcowEncryptionFormat:
2983 #
2984 # @aes: AES-CBC with plain64 initialization vectors
2985 #
2986 # Since: 2.10
2987 ##
2988 { 'enum': 'BlockdevQcowEncryptionFormat',
2989 'data': [ 'aes' ] }
2990
2991 ##
2992 # @BlockdevQcowEncryption:
2993 #
2994 # Since: 2.10
2995 ##
2996 { 'union': 'BlockdevQcowEncryption',
2997 'base': { 'format': 'BlockdevQcowEncryptionFormat' },
2998 'discriminator': 'format',
2999 'data': { 'aes': 'QCryptoBlockOptionsQCow' } }
3000
3001 ##
3002 # @BlockdevOptionsQcow:
3003 #
3004 # Driver specific block device options for qcow.
3005 #
3006 # @encrypt: Image decryption options. Mandatory for
3007 # encrypted images, except when doing a metadata-only
3008 # probe of the image.
3009 #
3010 # Since: 2.10
3011 ##
3012 { 'struct': 'BlockdevOptionsQcow',
3013 'base': 'BlockdevOptionsGenericCOWFormat',
3014 'data': { '*encrypt': 'BlockdevQcowEncryption' } }
3015
3016
3017
3018 ##
3019 # @BlockdevQcow2EncryptionFormat:
3020 # @aes: AES-CBC with plain64 initialization vectors
3021 #
3022 # Since: 2.10
3023 ##
3024 { 'enum': 'BlockdevQcow2EncryptionFormat',
3025 'data': [ 'aes', 'luks' ] }
3026
3027 ##
3028 # @BlockdevQcow2Encryption:
3029 #
3030 # Since: 2.10
3031 ##
3032 { 'union': 'BlockdevQcow2Encryption',
3033 'base': { 'format': 'BlockdevQcow2EncryptionFormat' },
3034 'discriminator': 'format',
3035 'data': { 'aes': 'QCryptoBlockOptionsQCow',
3036 'luks': 'QCryptoBlockOptionsLUKS'} }
3037
3038 ##
3039 # @BlockdevOptionsQcow2:
3040 #
3041 # Driver specific block device options for qcow2.
3042 #
3043 # @lazy-refcounts: whether to enable the lazy refcounts
3044 # feature (default is taken from the image file)
3045 #
3046 # @pass-discard-request: whether discard requests to the qcow2
3047 # device should be forwarded to the data source
3048 #
3049 # @pass-discard-snapshot: whether discard requests for the data source
3050 # should be issued when a snapshot operation (e.g.
3051 # deleting a snapshot) frees clusters in the qcow2 file
3052 #
3053 # @pass-discard-other: whether discard requests for the data source
3054 # should be issued on other occasions where a cluster
3055 # gets freed
3056 #
3057 # @overlap-check: which overlap checks to perform for writes
3058 # to the image, defaults to 'cached' (since 2.2)
3059 #
3060 # @cache-size: the maximum total size of the L2 table and
3061 # refcount block caches in bytes (since 2.2)
3062 #
3063 # @l2-cache-size: the maximum size of the L2 table cache in
3064 # bytes (since 2.2)
3065 #
3066 # @l2-cache-entry-size: the size of each entry in the L2 cache in
3067 # bytes. It must be a power of two between 512
3068 # and the cluster size. The default value is
3069 # the cluster size (since 2.12)
3070 #
3071 # @refcount-cache-size: the maximum size of the refcount block cache
3072 # in bytes (since 2.2)
3073 #
3074 # @cache-clean-interval: clean unused entries in the L2 and refcount
3075 # caches. The interval is in seconds. The default value
3076 # is 600 on supporting platforms, and 0 on other
3077 # platforms. 0 disables this feature. (since 2.5)
3078 #
3079 # @encrypt: Image decryption options. Mandatory for
3080 # encrypted images, except when doing a metadata-only
3081 # probe of the image. (since 2.10)
3082 #
3083 # @data-file: reference to or definition of the external data file.
3084 # This may only be specified for images that require an
3085 # external data file. (since 4.0)
3086 #
3087 # Since: 2.9
3088 ##
3089 { 'struct': 'BlockdevOptionsQcow2',
3090 'base': 'BlockdevOptionsGenericCOWFormat',
3091 'data': { '*lazy-refcounts': 'bool',
3092 '*pass-discard-request': 'bool',
3093 '*pass-discard-snapshot': 'bool',
3094 '*pass-discard-other': 'bool',
3095 '*overlap-check': 'Qcow2OverlapChecks',
3096 '*cache-size': 'int',
3097 '*l2-cache-size': 'int',
3098 '*l2-cache-entry-size': 'int',
3099 '*refcount-cache-size': 'int',
3100 '*cache-clean-interval': 'int',
3101 '*encrypt': 'BlockdevQcow2Encryption',
3102 '*data-file': 'BlockdevRef' } }
3103
3104 ##
3105 # @SshHostKeyCheckMode:
3106 #
3107 # @none Don't check the host key at all
3108 # @hash Compare the host key with a given hash
3109 # @known_hosts Check the host key against the known_hosts file
3110 #
3111 # Since: 2.12
3112 ##
3113 { 'enum': 'SshHostKeyCheckMode',
3114 'data': [ 'none', 'hash', 'known_hosts' ] }
3115
3116 ##
3117 # @SshHostKeyCheckHashType:
3118 #
3119 # @md5 The given hash is an md5 hash
3120 # @sha1 The given hash is an sha1 hash
3121 #
3122 # Since: 2.12
3123 ##
3124 { 'enum': 'SshHostKeyCheckHashType',
3125 'data': [ 'md5', 'sha1' ] }
3126
3127 ##
3128 # @SshHostKeyHash:
3129 #
3130 # @type The hash algorithm used for the hash
3131 # @hash The expected hash value
3132 #
3133 # Since: 2.12
3134 ##
3135 { 'struct': 'SshHostKeyHash',
3136 'data': { 'type': 'SshHostKeyCheckHashType',
3137 'hash': 'str' }}
3138
3139 ##
3140 # @SshHostKeyCheck:
3141 #
3142 # Since: 2.12
3143 ##
3144 { 'union': 'SshHostKeyCheck',
3145 'base': { 'mode': 'SshHostKeyCheckMode' },
3146 'discriminator': 'mode',
3147 'data': { 'hash': 'SshHostKeyHash' } }
3148
3149 ##
3150 # @BlockdevOptionsSsh:
3151 #
3152 # @server: host address
3153 #
3154 # @path: path to the image on the host
3155 #
3156 # @user: user as which to connect, defaults to current
3157 # local user name
3158 #
3159 # @host-key-check: Defines how and what to check the host key against
3160 # (default: known_hosts)
3161 #
3162 # Since: 2.9
3163 ##
3164 { 'struct': 'BlockdevOptionsSsh',
3165 'data': { 'server': 'InetSocketAddress',
3166 'path': 'str',
3167 '*user': 'str',
3168 '*host-key-check': 'SshHostKeyCheck' } }
3169
3170
3171 ##
3172 # @BlkdebugEvent:
3173 #
3174 # Trigger events supported by blkdebug.
3175 #
3176 # @l1_shrink_write_table: write zeros to the l1 table to shrink image.
3177 # (since 2.11)
3178 #
3179 # @l1_shrink_free_l2_clusters: discard the l2 tables. (since 2.11)
3180 #
3181 # @cor_write: a write due to copy-on-read (since 2.11)
3182 #
3183 # Since: 2.9
3184 ##
3185 { 'enum': 'BlkdebugEvent', 'prefix': 'BLKDBG',
3186 'data': [ 'l1_update', 'l1_grow_alloc_table', 'l1_grow_write_table',
3187 'l1_grow_activate_table', 'l2_load', 'l2_update',
3188 'l2_update_compressed', 'l2_alloc_cow_read', 'l2_alloc_write',
3189 'read_aio', 'read_backing_aio', 'read_compressed', 'write_aio',
3190 'write_compressed', 'vmstate_load', 'vmstate_save', 'cow_read',
3191 'cow_write', 'reftable_load', 'reftable_grow', 'reftable_update',
3192 'refblock_load', 'refblock_update', 'refblock_update_part',
3193 'refblock_alloc', 'refblock_alloc_hookup', 'refblock_alloc_write',
3194 'refblock_alloc_write_blocks', 'refblock_alloc_write_table',
3195 'refblock_alloc_switch_table', 'cluster_alloc',
3196 'cluster_alloc_bytes', 'cluster_free', 'flush_to_os',
3197 'flush_to_disk', 'pwritev_rmw_head', 'pwritev_rmw_after_head',
3198 'pwritev_rmw_tail', 'pwritev_rmw_after_tail', 'pwritev',
3199 'pwritev_zero', 'pwritev_done', 'empty_image_prepare',
3200 'l1_shrink_write_table', 'l1_shrink_free_l2_clusters',
3201 'cor_write'] }
3202
3203 ##
3204 # @BlkdebugInjectErrorOptions:
3205 #
3206 # Describes a single error injection for blkdebug.
3207 #
3208 # @event: trigger event
3209 #
3210 # @state: the state identifier blkdebug needs to be in to
3211 # actually trigger the event; defaults to "any"
3212 #
3213 # @errno: error identifier (errno) to be returned; defaults to
3214 # EIO
3215 #
3216 # @sector: specifies the sector index which has to be affected
3217 # in order to actually trigger the event; defaults to "any
3218 # sector"
3219 #
3220 # @once: disables further events after this one has been
3221 # triggered; defaults to false
3222 #
3223 # @immediately: fail immediately; defaults to false
3224 #
3225 # Since: 2.9
3226 ##
3227 { 'struct': 'BlkdebugInjectErrorOptions',
3228 'data': { 'event': 'BlkdebugEvent',
3229 '*state': 'int',
3230 '*errno': 'int',
3231 '*sector': 'int',
3232 '*once': 'bool',
3233 '*immediately': 'bool' } }
3234
3235 ##
3236 # @BlkdebugSetStateOptions:
3237 #
3238 # Describes a single state-change event for blkdebug.
3239 #
3240 # @event: trigger event
3241 #
3242 # @state: the current state identifier blkdebug needs to be in;
3243 # defaults to "any"
3244 #
3245 # @new_state: the state identifier blkdebug is supposed to assume if
3246 # this event is triggered
3247 #
3248 # Since: 2.9
3249 ##
3250 { 'struct': 'BlkdebugSetStateOptions',
3251 'data': { 'event': 'BlkdebugEvent',
3252 '*state': 'int',
3253 'new_state': 'int' } }
3254
3255 ##
3256 # @BlockdevOptionsBlkdebug:
3257 #
3258 # Driver specific block device options for blkdebug.
3259 #
3260 # @image: underlying raw block device (or image file)
3261 #
3262 # @config: filename of the configuration file
3263 #
3264 # @align: required alignment for requests in bytes, must be
3265 # positive power of 2, or 0 for default
3266 #
3267 # @max-transfer: maximum size for I/O transfers in bytes, must be
3268 # positive multiple of @align and of the underlying
3269 # file's request alignment (but need not be a power of
3270 # 2), or 0 for default (since 2.10)
3271 #
3272 # @opt-write-zero: preferred alignment for write zero requests in bytes,
3273 # must be positive multiple of @align and of the
3274 # underlying file's request alignment (but need not be a
3275 # power of 2), or 0 for default (since 2.10)
3276 #
3277 # @max-write-zero: maximum size for write zero requests in bytes, must be
3278 # positive multiple of @align, of @opt-write-zero, and of
3279 # the underlying file's request alignment (but need not
3280 # be a power of 2), or 0 for default (since 2.10)
3281 #
3282 # @opt-discard: preferred alignment for discard requests in bytes, must
3283 # be positive multiple of @align and of the underlying
3284 # file's request alignment (but need not be a power of
3285 # 2), or 0 for default (since 2.10)
3286 #
3287 # @max-discard: maximum size for discard requests in bytes, must be
3288 # positive multiple of @align, of @opt-discard, and of
3289 # the underlying file's request alignment (but need not
3290 # be a power of 2), or 0 for default (since 2.10)
3291 #
3292 # @inject-error: array of error injection descriptions
3293 #
3294 # @set-state: array of state-change descriptions
3295 #
3296 # Since: 2.9
3297 ##
3298 { 'struct': 'BlockdevOptionsBlkdebug',
3299 'data': { 'image': 'BlockdevRef',
3300 '*config': 'str',
3301 '*align': 'int', '*max-transfer': 'int32',
3302 '*opt-write-zero': 'int32', '*max-write-zero': 'int32',
3303 '*opt-discard': 'int32', '*max-discard': 'int32',
3304 '*inject-error': ['BlkdebugInjectErrorOptions'],
3305 '*set-state': ['BlkdebugSetStateOptions'] } }
3306
3307 ##
3308 # @BlockdevOptionsBlklogwrites:
3309 #
3310 # Driver specific block device options for blklogwrites.
3311 #
3312 # @file: block device
3313 #
3314 # @log: block device used to log writes to @file
3315 #
3316 # @log-sector-size: sector size used in logging writes to @file, determines
3317 # granularity of offsets and sizes of writes (default: 512)
3318 #
3319 # @log-append: append to an existing log (default: false)
3320 #
3321 # @log-super-update-interval: interval of write requests after which the log
3322 # super block is updated to disk (default: 4096)
3323 #
3324 # Since: 3.0
3325 ##
3326 { 'struct': 'BlockdevOptionsBlklogwrites',
3327 'data': { 'file': 'BlockdevRef',
3328 'log': 'BlockdevRef',
3329 '*log-sector-size': 'uint32',
3330 '*log-append': 'bool',
3331 '*log-super-update-interval': 'uint64' } }
3332
3333 ##
3334 # @BlockdevOptionsBlkverify:
3335 #
3336 # Driver specific block device options for blkverify.
3337 #
3338 # @test: block device to be tested
3339 #
3340 # @raw: raw image used for verification
3341 #
3342 # Since: 2.9
3343 ##
3344 { 'struct': 'BlockdevOptionsBlkverify',
3345 'data': { 'test': 'BlockdevRef',
3346 'raw': 'BlockdevRef' } }
3347
3348 ##
3349 # @QuorumReadPattern:
3350 #
3351 # An enumeration of quorum read patterns.
3352 #
3353 # @quorum: read all the children and do a quorum vote on reads
3354 #
3355 # @fifo: read only from the first child that has not failed
3356 #
3357 # Since: 2.9
3358 ##
3359 { 'enum': 'QuorumReadPattern', 'data': [ 'quorum', 'fifo' ] }
3360
3361 ##
3362 # @BlockdevOptionsQuorum:
3363 #
3364 # Driver specific block device options for Quorum
3365 #
3366 # @blkverify: true if the driver must print content mismatch
3367 # set to false by default
3368 #
3369 # @children: the children block devices to use
3370 #
3371 # @vote-threshold: the vote limit under which a read will fail
3372 #
3373 # @rewrite-corrupted: rewrite corrupted data when quorum is reached
3374 # (Since 2.1)
3375 #
3376 # @read-pattern: choose read pattern and set to quorum by default
3377 # (Since 2.2)
3378 #
3379 # Since: 2.9
3380 ##
3381 { 'struct': 'BlockdevOptionsQuorum',
3382 'data': { '*blkverify': 'bool',
3383 'children': [ 'BlockdevRef' ],
3384 'vote-threshold': 'int',
3385 '*rewrite-corrupted': 'bool',
3386 '*read-pattern': 'QuorumReadPattern' } }
3387
3388 ##
3389 # @BlockdevOptionsGluster:
3390 #
3391 # Driver specific block device options for Gluster
3392 #
3393 # @volume: name of gluster volume where VM image resides
3394 #
3395 # @path: absolute path to image file in gluster volume
3396 #
3397 # @server: gluster servers description
3398 #
3399 # @debug: libgfapi log level (default '4' which is Error)
3400 # (Since 2.8)
3401 #
3402 # @logfile: libgfapi log file (default /dev/stderr) (Since 2.8)
3403 #
3404 # Since: 2.9
3405 ##
3406 { 'struct': 'BlockdevOptionsGluster',
3407 'data': { 'volume': 'str',
3408 'path': 'str',
3409 'server': ['SocketAddress'],
3410 '*debug': 'int',
3411 '*logfile': 'str' } }
3412
3413 ##
3414 # @IscsiTransport:
3415 #
3416 # An enumeration of libiscsi transport types
3417 #
3418 # Since: 2.9
3419 ##
3420 { 'enum': 'IscsiTransport',
3421 'data': [ 'tcp', 'iser' ] }
3422
3423 ##
3424 # @IscsiHeaderDigest:
3425 #
3426 # An enumeration of header digests supported by libiscsi
3427 #
3428 # Since: 2.9
3429 ##
3430 { 'enum': 'IscsiHeaderDigest',
3431 'prefix': 'QAPI_ISCSI_HEADER_DIGEST',
3432 'data': [ 'crc32c', 'none', 'crc32c-none', 'none-crc32c' ] }
3433
3434 ##
3435 # @BlockdevOptionsIscsi:
3436 #
3437 # @transport: The iscsi transport type
3438 #
3439 # @portal: The address of the iscsi portal
3440 #
3441 # @target: The target iqn name
3442 #
3443 # @lun: LUN to connect to. Defaults to 0.
3444 #
3445 # @user: User name to log in with. If omitted, no CHAP
3446 # authentication is performed.
3447 #
3448 # @password-secret: The ID of a QCryptoSecret object providing
3449 # the password for the login. This option is required if
3450 # @user is specified.
3451 #
3452 # @initiator-name: The iqn name we want to identify to the target
3453 # as. If this option is not specified, an initiator name is
3454 # generated automatically.
3455 #
3456 # @header-digest: The desired header digest. Defaults to
3457 # none-crc32c.
3458 #
3459 # @timeout: Timeout in seconds after which a request will
3460 # timeout. 0 means no timeout and is the default.
3461 #
3462 # Driver specific block device options for iscsi
3463 #
3464 # Since: 2.9
3465 ##
3466 { 'struct': 'BlockdevOptionsIscsi',
3467 'data': { 'transport': 'IscsiTransport',
3468 'portal': 'str',
3469 'target': 'str',
3470 '*lun': 'int',
3471 '*user': 'str',
3472 '*password-secret': 'str',
3473 '*initiator-name': 'str',
3474 '*header-digest': 'IscsiHeaderDigest',
3475 '*timeout': 'int' } }
3476
3477
3478 ##
3479 # @RbdAuthMode:
3480 #
3481 # Since: 3.0
3482 ##
3483 { 'enum': 'RbdAuthMode',
3484 'data': [ 'cephx', 'none' ] }
3485
3486 ##
3487 # @BlockdevOptionsRbd:
3488 #
3489 # @pool: Ceph pool name.
3490 #
3491 # @image: Image name in the Ceph pool.
3492 #
3493 # @conf: path to Ceph configuration file. Values
3494 # in the configuration file will be overridden by
3495 # options specified via QAPI.
3496 #
3497 # @snapshot: Ceph snapshot name.
3498 #
3499 # @user: Ceph id name.
3500 #
3501 # @auth-client-required: Acceptable authentication modes.
3502 # This maps to Ceph configuration option
3503 # "auth_client_required". (Since 3.0)
3504 #
3505 # @key-secret: ID of a QCryptoSecret object providing a key
3506 # for cephx authentication.
3507 # This maps to Ceph configuration option
3508 # "key". (Since 3.0)
3509 #
3510 # @server: Monitor host address and port. This maps
3511 # to the "mon_host" Ceph option.
3512 #
3513 # Since: 2.9
3514 ##
3515 { 'struct': 'BlockdevOptionsRbd',
3516 'data': { 'pool': 'str',
3517 'image': 'str',
3518 '*conf': 'str',
3519 '*snapshot': 'str',
3520 '*user': 'str',
3521 '*auth-client-required': ['RbdAuthMode'],
3522 '*key-secret': 'str',
3523 '*server': ['InetSocketAddressBase'] } }
3524
3525 ##
3526 # @BlockdevOptionsSheepdog:
3527 #
3528 # Driver specific block device options for sheepdog
3529 #
3530 # @vdi: Virtual disk image name
3531 # @server: The Sheepdog server to connect to
3532 # @snap-id: Snapshot ID
3533 # @tag: Snapshot tag name
3534 #
3535 # Only one of @snap-id and @tag may be present.
3536 #
3537 # Since: 2.9
3538 ##
3539 { 'struct': 'BlockdevOptionsSheepdog',
3540 'data': { 'server': 'SocketAddress',
3541 'vdi': 'str',
3542 '*snap-id': 'uint32',
3543 '*tag': 'str' } }
3544
3545 ##
3546 # @ReplicationMode:
3547 #
3548 # An enumeration of replication modes.
3549 #
3550 # @primary: Primary mode, the vm's state will be sent to secondary QEMU.
3551 #
3552 # @secondary: Secondary mode, receive the vm's state from primary QEMU.
3553 #
3554 # Since: 2.9
3555 ##
3556 { 'enum' : 'ReplicationMode', 'data' : [ 'primary', 'secondary' ],
3557 'if': 'defined(CONFIG_REPLICATION)' }
3558
3559 ##
3560 # @BlockdevOptionsReplication:
3561 #
3562 # Driver specific block device options for replication
3563 #
3564 # @mode: the replication mode
3565 #
3566 # @top-id: In secondary mode, node name or device ID of the root
3567 # node who owns the replication node chain. Must not be given in
3568 # primary mode.
3569 #
3570 # Since: 2.9
3571 ##
3572 { 'struct': 'BlockdevOptionsReplication',
3573 'base': 'BlockdevOptionsGenericFormat',
3574 'data': { 'mode': 'ReplicationMode',
3575 '*top-id': 'str' },
3576 'if': 'defined(CONFIG_REPLICATION)' }
3577
3578 ##
3579 # @NFSTransport:
3580 #
3581 # An enumeration of NFS transport types
3582 #
3583 # @inet: TCP transport
3584 #
3585 # Since: 2.9
3586 ##
3587 { 'enum': 'NFSTransport',
3588 'data': [ 'inet' ] }
3589
3590 ##
3591 # @NFSServer:
3592 #
3593 # Captures the address of the socket
3594 #
3595 # @type: transport type used for NFS (only TCP supported)
3596 #
3597 # @host: host address for NFS server
3598 #
3599 # Since: 2.9
3600 ##
3601 { 'struct': 'NFSServer',
3602 'data': { 'type': 'NFSTransport',
3603 'host': 'str' } }
3604
3605 ##
3606 # @BlockdevOptionsNfs:
3607 #
3608 # Driver specific block device option for NFS
3609 #
3610 # @server: host address
3611 #
3612 # @path: path of the image on the host
3613 #
3614 # @user: UID value to use when talking to the
3615 # server (defaults to 65534 on Windows and getuid()
3616 # on unix)
3617 #
3618 # @group: GID value to use when talking to the
3619 # server (defaults to 65534 on Windows and getgid()
3620 # in unix)
3621 #
3622 # @tcp-syn-count: number of SYNs during the session
3623 # establishment (defaults to libnfs default)
3624 #
3625 # @readahead-size: set the readahead size in bytes (defaults
3626 # to libnfs default)
3627 #
3628 # @page-cache-size: set the pagecache size in bytes (defaults
3629 # to libnfs default)
3630 #
3631 # @debug: set the NFS debug level (max 2) (defaults
3632 # to libnfs default)
3633 #
3634 # Since: 2.9
3635 ##
3636 { 'struct': 'BlockdevOptionsNfs',
3637 'data': { 'server': 'NFSServer',
3638 'path': 'str',
3639 '*user': 'int',
3640 '*group': 'int',
3641 '*tcp-syn-count': 'int',
3642 '*readahead-size': 'int',
3643 '*page-cache-size': 'int',
3644 '*debug': 'int' } }
3645
3646 ##
3647 # @BlockdevOptionsCurlBase:
3648 #
3649 # Driver specific block device options shared by all protocols supported by the
3650 # curl backend.
3651 #
3652 # @url: URL of the image file
3653 #
3654 # @readahead: Size of the read-ahead cache; must be a multiple of
3655 # 512 (defaults to 256 kB)
3656 #
3657 # @timeout: Timeout for connections, in seconds (defaults to 5)
3658 #
3659 # @username: Username for authentication (defaults to none)
3660 #
3661 # @password-secret: ID of a QCryptoSecret object providing a password
3662 # for authentication (defaults to no password)
3663 #
3664 # @proxy-username: Username for proxy authentication (defaults to none)
3665 #
3666 # @proxy-password-secret: ID of a QCryptoSecret object providing a password
3667 # for proxy authentication (defaults to no password)
3668 #
3669 # Since: 2.9
3670 ##
3671 { 'struct': 'BlockdevOptionsCurlBase',
3672 'data': { 'url': 'str',
3673 '*readahead': 'int',
3674 '*timeout': 'int',
3675 '*username': 'str',
3676 '*password-secret': 'str',
3677 '*proxy-username': 'str',
3678 '*proxy-password-secret': 'str' } }
3679
3680 ##
3681 # @BlockdevOptionsCurlHttp:
3682 #
3683 # Driver specific block device options for HTTP connections over the curl
3684 # backend. URLs must start with "http://".
3685 #
3686 # @cookie: List of cookies to set; format is
3687 # "name1=content1; name2=content2;" as explained by
3688 # CURLOPT_COOKIE(3). Defaults to no cookies.
3689 #
3690 # @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
3691 # secure way. See @cookie for the format. (since 2.10)
3692 #
3693 # Since: 2.9
3694 ##
3695 { 'struct': 'BlockdevOptionsCurlHttp',
3696 'base': 'BlockdevOptionsCurlBase',
3697 'data': { '*cookie': 'str',
3698 '*cookie-secret': 'str'} }
3699
3700 ##
3701 # @BlockdevOptionsCurlHttps:
3702 #
3703 # Driver specific block device options for HTTPS connections over the curl
3704 # backend. URLs must start with "https://".
3705 #
3706 # @cookie: List of cookies to set; format is
3707 # "name1=content1; name2=content2;" as explained by
3708 # CURLOPT_COOKIE(3). Defaults to no cookies.
3709 #
3710 # @sslverify: Whether to verify the SSL certificate's validity (defaults to
3711 # true)
3712 #
3713 # @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
3714 # secure way. See @cookie for the format. (since 2.10)
3715 #
3716 # Since: 2.9
3717 ##
3718 { 'struct': 'BlockdevOptionsCurlHttps',
3719 'base': 'BlockdevOptionsCurlBase',
3720 'data': { '*cookie': 'str',
3721 '*sslverify': 'bool',
3722 '*cookie-secret': 'str'} }
3723
3724 ##
3725 # @BlockdevOptionsCurlFtp:
3726 #
3727 # Driver specific block device options for FTP connections over the curl
3728 # backend. URLs must start with "ftp://".
3729 #
3730 # Since: 2.9
3731 ##
3732 { 'struct': 'BlockdevOptionsCurlFtp',
3733 'base': 'BlockdevOptionsCurlBase',
3734 'data': { } }
3735
3736 ##
3737 # @BlockdevOptionsCurlFtps:
3738 #
3739 # Driver specific block device options for FTPS connections over the curl
3740 # backend. URLs must start with "ftps://".
3741 #
3742 # @sslverify: Whether to verify the SSL certificate's validity (defaults to
3743 # true)
3744 #
3745 # Since: 2.9
3746 ##
3747 { 'struct': 'BlockdevOptionsCurlFtps',
3748 'base': 'BlockdevOptionsCurlBase',
3749 'data': { '*sslverify': 'bool' } }
3750
3751 ##
3752 # @BlockdevOptionsNbd:
3753 #
3754 # Driver specific block device options for NBD.
3755 #
3756 # @server: NBD server address
3757 #
3758 # @export: export name
3759 #
3760 # @tls-creds: TLS credentials ID
3761 #
3762 # @x-dirty-bitmap: A "qemu:dirty-bitmap:NAME" string to query in place of
3763 # traditional "base:allocation" block status (see
3764 # NBD_OPT_LIST_META_CONTEXT in the NBD protocol) (since 3.0)
3765 #
3766 # Since: 2.9
3767 ##
3768 { 'struct': 'BlockdevOptionsNbd',
3769 'data': { 'server': 'SocketAddress',
3770 '*export': 'str',
3771 '*tls-creds': 'str',
3772 '*x-dirty-bitmap': 'str' } }
3773
3774 ##
3775 # @BlockdevOptionsRaw:
3776 #
3777 # Driver specific block device options for the raw driver.
3778 #
3779 # @offset: position where the block device starts
3780 # @size: the assumed size of the device
3781 #
3782 # Since: 2.9
3783 ##
3784 { 'struct': 'BlockdevOptionsRaw',
3785 'base': 'BlockdevOptionsGenericFormat',
3786 'data': { '*offset': 'int', '*size': 'int' } }
3787
3788 ##
3789 # @BlockdevOptionsVxHS:
3790 #
3791 # Driver specific block device options for VxHS
3792 #
3793 # @vdisk-id: UUID of VxHS volume
3794 # @server: vxhs server IP, port
3795 # @tls-creds: TLS credentials ID
3796 #
3797 # Since: 2.10
3798 ##
3799 { 'struct': 'BlockdevOptionsVxHS',
3800 'data': { 'vdisk-id': 'str',
3801 'server': 'InetSocketAddressBase',
3802 '*tls-creds': 'str' } }
3803
3804 ##
3805 # @BlockdevOptionsThrottle:
3806 #
3807 # Driver specific block device options for the throttle driver
3808 #
3809 # @throttle-group: the name of the throttle-group object to use. It
3810 # must already exist.
3811 # @file: reference to or definition of the data source block device
3812 # Since: 2.11
3813 ##
3814 { 'struct': 'BlockdevOptionsThrottle',
3815 'data': { 'throttle-group': 'str',
3816 'file' : 'BlockdevRef'
3817 } }
3818 ##
3819 # @BlockdevOptions:
3820 #
3821 # Options for creating a block device. Many options are available for all
3822 # block devices, independent of the block driver:
3823 #
3824 # @driver: block driver name
3825 # @node-name: the node name of the new node (Since 2.0).
3826 # This option is required on the top level of blockdev-add.
3827 # Valid node names start with an alphabetic character and may
3828 # contain only alphanumeric characters, '-', '.' and '_'. Their
3829 # maximum length is 31 characters.
3830 # @discard: discard-related options (default: ignore)
3831 # @cache: cache-related options
3832 # @read-only: whether the block device should be read-only (default: false).
3833 # Note that some block drivers support only read-only access,
3834 # either generally or in certain configurations. In this case,
3835 # the default value does not work and the option must be
3836 # specified explicitly.
3837 # @auto-read-only: if true and @read-only is false, QEMU may automatically
3838 # decide not to open the image read-write as requested, but
3839 # fall back to read-only instead (and switch between the modes
3840 # later), e.g. depending on whether the image file is writable
3841 # or whether a writing user is attached to the node
3842 # (default: false, since 3.1)
3843 # @detect-zeroes: detect and optimize zero writes (Since 2.1)
3844 # (default: off)
3845 # @force-share: force share all permission on added nodes.
3846 # Requires read-only=true. (Since 2.10)
3847 #
3848 # Remaining options are determined by the block driver.
3849 #
3850 # Since: 2.9
3851 ##
3852 { 'union': 'BlockdevOptions',
3853 'base': { 'driver': 'BlockdevDriver',
3854 '*node-name': 'str',
3855 '*discard': 'BlockdevDiscardOptions',
3856 '*cache': 'BlockdevCacheOptions',
3857 '*read-only': 'bool',
3858 '*auto-read-only': 'bool',
3859 '*force-share': 'bool',
3860 '*detect-zeroes': 'BlockdevDetectZeroesOptions' },
3861 'discriminator': 'driver',
3862 'data': {
3863 'blkdebug': 'BlockdevOptionsBlkdebug',
3864 'blklogwrites':'BlockdevOptionsBlklogwrites',
3865 'blkverify': 'BlockdevOptionsBlkverify',
3866 'bochs': 'BlockdevOptionsGenericFormat',
3867 'cloop': 'BlockdevOptionsGenericFormat',
3868 'copy-on-read':'BlockdevOptionsGenericFormat',
3869 'dmg': 'BlockdevOptionsGenericFormat',
3870 'file': 'BlockdevOptionsFile',
3871 'ftp': 'BlockdevOptionsCurlFtp',
3872 'ftps': 'BlockdevOptionsCurlFtps',
3873 'gluster': 'BlockdevOptionsGluster',
3874 'host_cdrom': 'BlockdevOptionsFile',
3875 'host_device':'BlockdevOptionsFile',
3876 'http': 'BlockdevOptionsCurlHttp',
3877 'https': 'BlockdevOptionsCurlHttps',
3878 'iscsi': 'BlockdevOptionsIscsi',
3879 'luks': 'BlockdevOptionsLUKS',
3880 'nbd': 'BlockdevOptionsNbd',
3881 'nfs': 'BlockdevOptionsNfs',
3882 'null-aio': 'BlockdevOptionsNull',
3883 'null-co': 'BlockdevOptionsNull',
3884 'nvme': 'BlockdevOptionsNVMe',
3885 'parallels': 'BlockdevOptionsGenericFormat',
3886 'qcow2': 'BlockdevOptionsQcow2',
3887 'qcow': 'BlockdevOptionsQcow',
3888 'qed': 'BlockdevOptionsGenericCOWFormat',
3889 'quorum': 'BlockdevOptionsQuorum',
3890 'raw': 'BlockdevOptionsRaw',
3891 'rbd': 'BlockdevOptionsRbd',
3892 'replication': { 'type': 'BlockdevOptionsReplication',
3893 'if': 'defined(CONFIG_REPLICATION)' },
3894 'sheepdog': 'BlockdevOptionsSheepdog',
3895 'ssh': 'BlockdevOptionsSsh',
3896 'throttle': 'BlockdevOptionsThrottle',
3897 'vdi': 'BlockdevOptionsGenericFormat',
3898 'vhdx': 'BlockdevOptionsGenericFormat',
3899 'vmdk': 'BlockdevOptionsGenericCOWFormat',
3900 'vpc': 'BlockdevOptionsGenericFormat',
3901 'vvfat': 'BlockdevOptionsVVFAT',
3902 'vxhs': 'BlockdevOptionsVxHS'
3903 } }
3904
3905 ##
3906 # @BlockdevRef:
3907 #
3908 # Reference to a block device.
3909 #
3910 # @definition: defines a new block device inline
3911 # @reference: references the ID of an existing block device
3912 #
3913 # Since: 2.9
3914 ##
3915 { 'alternate': 'BlockdevRef',
3916 'data': { 'definition': 'BlockdevOptions',
3917 'reference': 'str' } }
3918
3919 ##
3920 # @BlockdevRefOrNull:
3921 #
3922 # Reference to a block device.
3923 #
3924 # @definition: defines a new block device inline
3925 # @reference: references the ID of an existing block device.
3926 # An empty string means that no block device should
3927 # be referenced. Deprecated; use null instead.
3928 # @null: No block device should be referenced (since 2.10)
3929 #
3930 # Since: 2.9
3931 ##
3932 { 'alternate': 'BlockdevRefOrNull',
3933 'data': { 'definition': 'BlockdevOptions',
3934 'reference': 'str',
3935 'null': 'null' } }
3936
3937 ##
3938 # @blockdev-add:
3939 #
3940 # Creates a new block device. If the @id option is given at the top level, a
3941 # BlockBackend will be created; otherwise, @node-name is mandatory at the top
3942 # level and no BlockBackend will be created.
3943 #
3944 # Since: 2.9
3945 #
3946 # Example:
3947 #
3948 # 1.
3949 # -> { "execute": "blockdev-add",
3950 # "arguments": {
3951 # "driver": "qcow2",
3952 # "node-name": "test1",
3953 # "file": {
3954 # "driver": "file",
3955 # "filename": "test.qcow2"
3956 # }
3957 # }
3958 # }
3959 # <- { "return": {} }
3960 #
3961 # 2.
3962 # -> { "execute": "blockdev-add",
3963 # "arguments": {
3964 # "driver": "qcow2",
3965 # "node-name": "node0",
3966 # "discard": "unmap",
3967 # "cache": {
3968 # "direct": true
3969 # },
3970 # "file": {
3971 # "driver": "file",
3972 # "filename": "/tmp/test.qcow2"
3973 # },
3974 # "backing": {
3975 # "driver": "raw",
3976 # "file": {
3977 # "driver": "file",
3978 # "filename": "/dev/fdset/4"
3979 # }
3980 # }
3981 # }
3982 # }
3983 #
3984 # <- { "return": {} }
3985 #
3986 ##
3987 { 'command': 'blockdev-add', 'data': 'BlockdevOptions', 'boxed': true }
3988
3989 ##
3990 # @blockdev-del:
3991 #
3992 # Deletes a block device that has been added using blockdev-add.
3993 # The command will fail if the node is attached to a device or is
3994 # otherwise being used.
3995 #
3996 # @node-name: Name of the graph node to delete.
3997 #
3998 # Since: 2.9
3999 #
4000 # Example:
4001 #
4002 # -> { "execute": "blockdev-add",
4003 # "arguments": {
4004 # "driver": "qcow2",
4005 # "node-name": "node0",
4006 # "file": {
4007 # "driver": "file",
4008 # "filename": "test.qcow2"
4009 # }
4010 # }
4011 # }
4012 # <- { "return": {} }
4013 #
4014 # -> { "execute": "blockdev-del",
4015 # "arguments": { "node-name": "node0" }
4016 # }
4017 # <- { "return": {} }
4018 #
4019 ##
4020 { 'command': 'blockdev-del', 'data': { 'node-name': 'str' } }
4021
4022 ##
4023 # @BlockdevCreateOptionsFile:
4024 #
4025 # Driver specific image creation options for file.
4026 #
4027 # @filename Filename for the new image file
4028 # @size Size of the virtual disk in bytes
4029 # @preallocation Preallocation mode for the new image (default: off)
4030 # @nocow Turn off copy-on-write (valid only on btrfs; default: off)
4031 #
4032 # Since: 2.12
4033 ##
4034 { 'struct': 'BlockdevCreateOptionsFile',
4035 'data': { 'filename': 'str',
4036 'size': 'size',
4037 '*preallocation': 'PreallocMode',
4038 '*nocow': 'bool' } }
4039
4040 ##
4041 # @BlockdevCreateOptionsGluster:
4042 #
4043 # Driver specific image creation options for gluster.
4044 #
4045 # @location Where to store the new image file
4046 # @size Size of the virtual disk in bytes
4047 # @preallocation Preallocation mode for the new image (default: off)
4048 #
4049 # Since: 2.12
4050 ##
4051 { 'struct': 'BlockdevCreateOptionsGluster',
4052 'data': { 'location': 'BlockdevOptionsGluster',
4053 'size': 'size',
4054 '*preallocation': 'PreallocMode' } }
4055
4056 ##
4057 # @BlockdevCreateOptionsLUKS:
4058 #
4059 # Driver specific image creation options for LUKS.
4060 #
4061 # @file Node to create the image format on
4062 # @size Size of the virtual disk in bytes
4063 #
4064 # Since: 2.12
4065 ##
4066 { 'struct': 'BlockdevCreateOptionsLUKS',
4067 'base': 'QCryptoBlockCreateOptionsLUKS',
4068 'data': { 'file': 'BlockdevRef',
4069 'size': 'size' } }
4070
4071 ##
4072 # @BlockdevCreateOptionsNfs:
4073 #
4074 # Driver specific image creation options for NFS.
4075 #
4076 # @location Where to store the new image file
4077 # @size Size of the virtual disk in bytes
4078 #
4079 # Since: 2.12
4080 ##
4081 { 'struct': 'BlockdevCreateOptionsNfs',
4082 'data': { 'location': 'BlockdevOptionsNfs',
4083 'size': 'size' } }
4084
4085 ##
4086 # @BlockdevCreateOptionsParallels:
4087 #
4088 # Driver specific image creation options for parallels.
4089 #
4090 # @file Node to create the image format on
4091 # @size Size of the virtual disk in bytes
4092 # @cluster-size Cluster size in bytes (default: 1 MB)
4093 #
4094 # Since: 2.12
4095 ##
4096 { 'struct': 'BlockdevCreateOptionsParallels',
4097 'data': { 'file': 'BlockdevRef',
4098 'size': 'size',
4099 '*cluster-size': 'size' } }
4100
4101 ##
4102 # @BlockdevCreateOptionsQcow:
4103 #
4104 # Driver specific image creation options for qcow.
4105 #
4106 # @file Node to create the image format on
4107 # @size Size of the virtual disk in bytes
4108 # @backing-file File name of the backing file if a backing file
4109 # should be used
4110 # @encrypt Encryption options if the image should be encrypted
4111 #
4112 # Since: 2.12
4113 ##
4114 { 'struct': 'BlockdevCreateOptionsQcow',
4115 'data': { 'file': 'BlockdevRef',
4116 'size': 'size',
4117 '*backing-file': 'str',
4118 '*encrypt': 'QCryptoBlockCreateOptions' } }
4119
4120 ##
4121 # @BlockdevQcow2Version:
4122 #
4123 # @v2: The original QCOW2 format as introduced in qemu 0.10 (version 2)
4124 # @v3: The extended QCOW2 format as introduced in qemu 1.1 (version 3)
4125 #
4126 # Since: 2.12
4127 ##
4128 { 'enum': 'BlockdevQcow2Version',
4129 'data': [ 'v2', 'v3' ] }
4130
4131
4132 ##
4133 # @BlockdevCreateOptionsQcow2:
4134 #
4135 # Driver specific image creation options for qcow2.
4136 #
4137 # @file Node to create the image format on
4138 # @size Size of the virtual disk in bytes
4139 # @version Compatibility level (default: v3)
4140 # @backing-file File name of the backing file if a backing file
4141 # should be used
4142 # @backing-fmt Name of the block driver to use for the backing file
4143 # @encrypt Encryption options if the image should be encrypted
4144 # @cluster-size qcow2 cluster size in bytes (default: 65536)
4145 # @preallocation Preallocation mode for the new image (default: off)
4146 # @lazy-refcounts True if refcounts may be updated lazily (default: off)
4147 # @refcount-bits Width of reference counts in bits (default: 16)
4148 #
4149 # Since: 2.12
4150 ##
4151 { 'struct': 'BlockdevCreateOptionsQcow2',
4152 'data': { 'file': 'BlockdevRef',
4153 'size': 'size',
4154 '*version': 'BlockdevQcow2Version',
4155 '*backing-file': 'str',
4156 '*backing-fmt': 'BlockdevDriver',
4157 '*encrypt': 'QCryptoBlockCreateOptions',
4158 '*cluster-size': 'size',
4159 '*preallocation': 'PreallocMode',
4160 '*lazy-refcounts': 'bool',
4161 '*refcount-bits': 'int' } }
4162
4163 ##
4164 # @BlockdevCreateOptionsQed:
4165 #
4166 # Driver specific image creation options for qed.
4167 #
4168 # @file Node to create the image format on
4169 # @size Size of the virtual disk in bytes
4170 # @backing-file File name of the backing file if a backing file
4171 # should be used
4172 # @backing-fmt Name of the block driver to use for the backing file
4173 # @cluster-size Cluster size in bytes (default: 65536)
4174 # @table-size L1/L2 table size (in clusters)
4175 #
4176 # Since: 2.12
4177 ##
4178 { 'struct': 'BlockdevCreateOptionsQed',
4179 'data': { 'file': 'BlockdevRef',
4180 'size': 'size',
4181 '*backing-file': 'str',
4182 '*backing-fmt': 'BlockdevDriver',
4183 '*cluster-size': 'size',
4184 '*table-size': 'int' } }
4185
4186 ##
4187 # @BlockdevCreateOptionsRbd:
4188 #
4189 # Driver specific image creation options for rbd/Ceph.
4190 #
4191 # @location Where to store the new image file. This location cannot
4192 # point to a snapshot.
4193 # @size Size of the virtual disk in bytes
4194 # @cluster-size RBD object size
4195 #
4196 # Since: 2.12
4197 ##
4198 { 'struct': 'BlockdevCreateOptionsRbd',
4199 'data': { 'location': 'BlockdevOptionsRbd',
4200 'size': 'size',
4201 '*cluster-size' : 'size' } }
4202
4203 ##
4204 # @BlockdevVmdkSubformat:
4205 #
4206 # Subformat options for VMDK images
4207 #
4208 # @monolithicSparse: Single file image with sparse cluster allocation
4209 #
4210 # @monolithicFlat: Single flat data image and a descriptor file
4211 #
4212 # @twoGbMaxExtentSparse: Data is split into 2GB (per virtual LBA) sparse extent
4213 # files, in addition to a descriptor file
4214 #
4215 # @twoGbMaxExtentFlat: Data is split into 2GB (per virtual LBA) flat extent
4216 # files, in addition to a descriptor file
4217 #
4218 # @streamOptimized: Single file image sparse cluster allocation, optimized
4219 # for streaming over network.
4220 #
4221 # Since: 4.0
4222 ##
4223 { 'enum': 'BlockdevVmdkSubformat',
4224 'data': [ 'monolithicSparse', 'monolithicFlat', 'twoGbMaxExtentSparse',
4225 'twoGbMaxExtentFlat', 'streamOptimized'] }
4226
4227 ##
4228 # @BlockdevVmdkAdapterType:
4229 #
4230 # Adapter type info for VMDK images
4231 #
4232 # Since: 4.0
4233 ##
4234 { 'enum': 'BlockdevVmdkAdapterType',
4235 'data': [ 'ide', 'buslogic', 'lsilogic', 'legacyESX'] }
4236
4237 ##
4238 # @BlockdevCreateOptionsVmdk:
4239 #
4240 # Driver specific image creation options for VMDK.
4241 #
4242 # @file Where to store the new image file. This refers to the image
4243 # file for monolithcSparse and streamOptimized format, or the
4244 # descriptor file for other formats.
4245 # @size Size of the virtual disk in bytes
4246 # @extents Where to store the data extents. Required for monolithcFlat,
4247 # twoGbMaxExtentSparse and twoGbMaxExtentFlat formats. For
4248 # monolithicFlat, only one entry is required; for
4249 # twoGbMaxExtent* formats, the number of entries required is
4250 # calculated as extent_number = virtual_size / 2GB. Providing
4251 # more extents than will be used is an error.
4252 # @subformat The subformat of the VMDK image. Default: "monolithicSparse".
4253 # @backing-file The path of backing file. Default: no backing file is used.
4254 # @adapter-type The adapter type used to fill in the descriptor. Default: ide.
4255 # @hwversion Hardware version. The meaningful options are "4" or "6".
4256 # Default: "4".
4257 # @zeroed-grain Whether to enable zeroed-grain feature for sparse subformats.
4258 # Default: false.
4259 #
4260 # Since: 4.0
4261 ##
4262 { 'struct': 'BlockdevCreateOptionsVmdk',
4263 'data': { 'file': 'BlockdevRef',
4264 'size': 'size',
4265 '*extents': ['BlockdevRef'],
4266 '*subformat': 'BlockdevVmdkSubformat',
4267 '*backing-file': 'str',
4268 '*adapter-type': 'BlockdevVmdkAdapterType',
4269 '*hwversion': 'str',
4270 '*zeroed-grain': 'bool' } }
4271
4272
4273 ##
4274 # @SheepdogRedundancyType:
4275 #
4276 # @full Create a fully replicated vdi with x copies
4277 # @erasure-coded Create an erasure coded vdi with x data strips and
4278 # y parity strips
4279 #
4280 # Since: 2.12
4281 ##
4282 { 'enum': 'SheepdogRedundancyType',
4283 'data': [ 'full', 'erasure-coded' ] }
4284
4285 ##
4286 # @SheepdogRedundancyFull:
4287 #
4288 # @copies Number of copies to use (between 1 and 31)
4289 #
4290 # Since: 2.12
4291 ##
4292 { 'struct': 'SheepdogRedundancyFull',
4293 'data': { 'copies': 'int' }}
4294
4295 ##
4296 # @SheepdogRedundancyErasureCoded:
4297 #
4298 # @data-strips Number of data strips to use (one of {2,4,8,16})
4299 # @parity-strips Number of parity strips to use (between 1 and 15)
4300 #
4301 # Since: 2.12
4302 ##
4303 { 'struct': 'SheepdogRedundancyErasureCoded',
4304 'data': { 'data-strips': 'int',
4305 'parity-strips': 'int' }}
4306
4307 ##
4308 # @SheepdogRedundancy:
4309 #
4310 # Since: 2.12
4311 ##
4312 { 'union': 'SheepdogRedundancy',
4313 'base': { 'type': 'SheepdogRedundancyType' },
4314 'discriminator': 'type',
4315 'data': { 'full': 'SheepdogRedundancyFull',
4316 'erasure-coded': 'SheepdogRedundancyErasureCoded' } }
4317
4318 ##
4319 # @BlockdevCreateOptionsSheepdog:
4320 #
4321 # Driver specific image creation options for Sheepdog.
4322 #
4323 # @location Where to store the new image file
4324 # @size Size of the virtual disk in bytes
4325 # @backing-file File name of a base image
4326 # @preallocation Preallocation mode (allowed values: off, full)
4327 # @redundancy Redundancy of the image
4328 # @object-size Object size of the image
4329 #
4330 # Since: 2.12
4331 ##
4332 { 'struct': 'BlockdevCreateOptionsSheepdog',
4333 'data': { 'location': 'BlockdevOptionsSheepdog',
4334 'size': 'size',
4335 '*backing-file': 'str',
4336 '*preallocation': 'PreallocMode',
4337 '*redundancy': 'SheepdogRedundancy',
4338 '*object-size': 'size' } }
4339
4340 ##
4341 # @BlockdevCreateOptionsSsh:
4342 #
4343 # Driver specific image creation options for SSH.
4344 #
4345 # @location Where to store the new image file
4346 # @size Size of the virtual disk in bytes
4347 #
4348 # Since: 2.12
4349 ##
4350 { 'struct': 'BlockdevCreateOptionsSsh',
4351 'data': { 'location': 'BlockdevOptionsSsh',
4352 'size': 'size' } }
4353
4354 ##
4355 # @BlockdevCreateOptionsVdi:
4356 #
4357 # Driver specific image creation options for VDI.
4358 #
4359 # @file Node to create the image format on
4360 # @size Size of the virtual disk in bytes
4361 # @preallocation Preallocation mode for the new image (allowed values: off,
4362 # metadata; default: off)
4363 #
4364 # Since: 2.12
4365 ##
4366 { 'struct': 'BlockdevCreateOptionsVdi',
4367 'data': { 'file': 'BlockdevRef',
4368 'size': 'size',
4369 '*preallocation': 'PreallocMode' } }
4370
4371 ##
4372 # @BlockdevVhdxSubformat:
4373 #
4374 # @dynamic: Growing image file
4375 # @fixed: Preallocated fixed-size image file
4376 #
4377 # Since: 2.12
4378 ##
4379 { 'enum': 'BlockdevVhdxSubformat',
4380 'data': [ 'dynamic', 'fixed' ] }
4381
4382 ##
4383 # @BlockdevCreateOptionsVhdx:
4384 #
4385 # Driver specific image creation options for vhdx.
4386 #
4387 # @file Node to create the image format on
4388 # @size Size of the virtual disk in bytes
4389 # @log-size Log size in bytes, must be a multiple of 1 MB
4390 # (default: 1 MB)
4391 # @block-size Block size in bytes, must be a multiple of 1 MB and not
4392 # larger than 256 MB (default: automatically choose a block
4393 # size depending on the image size)
4394 # @subformat vhdx subformat (default: dynamic)
4395 # @block-state-zero Force use of payload blocks of type 'ZERO'. Non-standard,
4396 # but default. Do not set to 'off' when using 'qemu-img
4397 # convert' with subformat=dynamic.
4398 #
4399 # Since: 2.12
4400 ##
4401 { 'struct': 'BlockdevCreateOptionsVhdx',
4402 'data': { 'file': 'BlockdevRef',
4403 'size': 'size',
4404 '*log-size': 'size',
4405 '*block-size': 'size',
4406 '*subformat': 'BlockdevVhdxSubformat',
4407 '*block-state-zero': 'bool' } }
4408
4409 ##
4410 # @BlockdevVpcSubformat:
4411 #
4412 # @dynamic: Growing image file
4413 # @fixed: Preallocated fixed-size image file
4414 #
4415 # Since: 2.12
4416 ##
4417 { 'enum': 'BlockdevVpcSubformat',
4418 'data': [ 'dynamic', 'fixed' ] }
4419
4420 ##
4421 # @BlockdevCreateOptionsVpc:
4422 #
4423 # Driver specific image creation options for vpc (VHD).
4424 #
4425 # @file Node to create the image format on
4426 # @size Size of the virtual disk in bytes
4427 # @subformat vhdx subformat (default: dynamic)
4428 # @force-size Force use of the exact byte size instead of rounding to the
4429 # next size that can be represented in CHS geometry
4430 # (default: false)
4431 #
4432 # Since: 2.12
4433 ##
4434 { 'struct': 'BlockdevCreateOptionsVpc',
4435 'data': { 'file': 'BlockdevRef',
4436 'size': 'size',
4437 '*subformat': 'BlockdevVpcSubformat',
4438 '*force-size': 'bool' } }
4439
4440 ##
4441 # @BlockdevCreateOptions:
4442 #
4443 # Options for creating an image format on a given node.
4444 #
4445 # @driver block driver to create the image format
4446 #
4447 # Since: 2.12
4448 ##
4449 { 'union': 'BlockdevCreateOptions',
4450 'base': {
4451 'driver': 'BlockdevDriver' },
4452 'discriminator': 'driver',
4453 'data': {
4454 'file': 'BlockdevCreateOptionsFile',
4455 'gluster': 'BlockdevCreateOptionsGluster',
4456 'luks': 'BlockdevCreateOptionsLUKS',
4457 'nfs': 'BlockdevCreateOptionsNfs',
4458 'parallels': 'BlockdevCreateOptionsParallels',
4459 'qcow': 'BlockdevCreateOptionsQcow',
4460 'qcow2': 'BlockdevCreateOptionsQcow2',
4461 'qed': 'BlockdevCreateOptionsQed',
4462 'rbd': 'BlockdevCreateOptionsRbd',
4463 'sheepdog': 'BlockdevCreateOptionsSheepdog',
4464 'ssh': 'BlockdevCreateOptionsSsh',
4465 'vdi': 'BlockdevCreateOptionsVdi',
4466 'vhdx': 'BlockdevCreateOptionsVhdx',
4467 'vmdk': 'BlockdevCreateOptionsVmdk',
4468 'vpc': 'BlockdevCreateOptionsVpc'
4469 } }
4470
4471 ##
4472 # @blockdev-create:
4473 #
4474 # Starts a job to create an image format on a given node. The job is
4475 # automatically finalized, but a manual job-dismiss is required.
4476 #
4477 # @job-id: Identifier for the newly created job.
4478 #
4479 # @options: Options for the image creation.
4480 #
4481 # Since: 3.0
4482 ##
4483 { 'command': 'blockdev-create',
4484 'data': { 'job-id': 'str',
4485 'options': 'BlockdevCreateOptions' } }
4486
4487 ##
4488 # @blockdev-open-tray:
4489 #
4490 # Opens a block device's tray. If there is a block driver state tree inserted as
4491 # a medium, it will become inaccessible to the guest (but it will remain
4492 # associated to the block device, so closing the tray will make it accessible
4493 # again).
4494 #
4495 # If the tray was already open before, this will be a no-op.
4496 #
4497 # Once the tray opens, a DEVICE_TRAY_MOVED event is emitted. There are cases in
4498 # which no such event will be generated, these include:
4499 # - if the guest has locked the tray, @force is false and the guest does not
4500 # respond to the eject request
4501 # - if the BlockBackend denoted by @device does not have a guest device attached
4502 # to it
4503 # - if the guest device does not have an actual tray
4504 #
4505 # @device: Block device name (deprecated, use @id instead)
4506 #
4507 # @id: The name or QOM path of the guest device (since: 2.8)
4508 #
4509 # @force: if false (the default), an eject request will be sent to
4510 # the guest if it has locked the tray (and the tray will not be opened
4511 # immediately); if true, the tray will be opened regardless of whether
4512 # it is locked
4513 #
4514 # Since: 2.5
4515 #
4516 # Example:
4517 #
4518 # -> { "execute": "blockdev-open-tray",
4519 # "arguments": { "id": "ide0-1-0" } }
4520 #
4521 # <- { "timestamp": { "seconds": 1418751016,
4522 # "microseconds": 716996 },
4523 # "event": "DEVICE_TRAY_MOVED",
4524 # "data": { "device": "ide1-cd0",
4525 # "id": "ide0-1-0",
4526 # "tray-open": true } }
4527 #
4528 # <- { "return": {} }
4529 #
4530 ##
4531 { 'command': 'blockdev-open-tray',
4532 'data': { '*device': 'str',
4533 '*id': 'str',
4534 '*force': 'bool' } }
4535
4536 ##
4537 # @blockdev-close-tray:
4538 #
4539 # Closes a block device's tray. If there is a block driver state tree associated
4540 # with the block device (which is currently ejected), that tree will be loaded
4541 # as the medium.
4542 #
4543 # If the tray was already closed before, this will be a no-op.
4544 #
4545 # @device: Block device name (deprecated, use @id instead)
4546 #
4547 # @id: The name or QOM path of the guest device (since: 2.8)
4548 #
4549 # Since: 2.5
4550 #
4551 # Example:
4552 #
4553 # -> { "execute": "blockdev-close-tray",
4554 # "arguments": { "id": "ide0-1-0" } }
4555 #
4556 # <- { "timestamp": { "seconds": 1418751345,
4557 # "microseconds": 272147 },
4558 # "event": "DEVICE_TRAY_MOVED",
4559 # "data": { "device": "ide1-cd0",
4560 # "id": "ide0-1-0",
4561 # "tray-open": false } }
4562 #
4563 # <- { "return": {} }
4564 #
4565 ##
4566 { 'command': 'blockdev-close-tray',
4567 'data': { '*device': 'str',
4568 '*id': 'str' } }
4569
4570 ##
4571 # @blockdev-remove-medium:
4572 #
4573 # Removes a medium (a block driver state tree) from a block device. That block
4574 # device's tray must currently be open (unless there is no attached guest
4575 # device).
4576 #
4577 # If the tray is open and there is no medium inserted, this will be a no-op.
4578 #
4579 # @id: The name or QOM path of the guest device
4580 #
4581 # Since: 2.12
4582 #
4583 # Example:
4584 #
4585 # -> { "execute": "blockdev-remove-medium",
4586 # "arguments": { "id": "ide0-1-0" } }
4587 #
4588 # <- { "error": { "class": "GenericError",
4589 # "desc": "Tray of device 'ide0-1-0' is not open" } }
4590 #
4591 # -> { "execute": "blockdev-open-tray",
4592 # "arguments": { "id": "ide0-1-0" } }
4593 #
4594 # <- { "timestamp": { "seconds": 1418751627,
4595 # "microseconds": 549958 },
4596 # "event": "DEVICE_TRAY_MOVED",
4597 # "data": { "device": "ide1-cd0",
4598 # "id": "ide0-1-0",
4599 # "tray-open": true } }
4600 #
4601 # <- { "return": {} }
4602 #
4603 # -> { "execute": "blockdev-remove-medium",
4604 # "arguments": { "id": "ide0-1-0" } }
4605 #
4606 # <- { "return": {} }
4607 #
4608 ##
4609 { 'command': 'blockdev-remove-medium',
4610 'data': { 'id': 'str' } }
4611
4612 ##
4613 # @blockdev-insert-medium:
4614 #
4615 # Inserts a medium (a block driver state tree) into a block device. That block
4616 # device's tray must currently be open (unless there is no attached guest
4617 # device) and there must be no medium inserted already.
4618 #
4619 # @id: The name or QOM path of the guest device
4620 #
4621 # @node-name: name of a node in the block driver state graph
4622 #
4623 # Since: 2.12
4624 #
4625 # Example:
4626 #
4627 # -> { "execute": "blockdev-add",
4628 # "arguments": {
4629 # "node-name": "node0",
4630 # "driver": "raw",
4631 # "file": { "driver": "file",
4632 # "filename": "fedora.iso" } } }
4633 # <- { "return": {} }
4634 #
4635 # -> { "execute": "blockdev-insert-medium",
4636 # "arguments": { "id": "ide0-1-0",
4637 # "node-name": "node0" } }
4638 #
4639 # <- { "return": {} }
4640 #
4641 ##
4642 { 'command': 'blockdev-insert-medium',
4643 'data': { 'id': 'str',
4644 'node-name': 'str'} }
4645
4646
4647 ##
4648 # @BlockdevChangeReadOnlyMode:
4649 #
4650 # Specifies the new read-only mode of a block device subject to the
4651 # @blockdev-change-medium command.
4652 #
4653 # @retain: Retains the current read-only mode
4654 #
4655 # @read-only: Makes the device read-only
4656 #
4657 # @read-write: Makes the device writable
4658 #
4659 # Since: 2.3
4660 #
4661 ##
4662 { 'enum': 'BlockdevChangeReadOnlyMode',
4663 'data': ['retain', 'read-only', 'read-write'] }
4664
4665
4666 ##
4667 # @blockdev-change-medium:
4668 #
4669 # Changes the medium inserted into a block device by ejecting the current medium
4670 # and loading a new image file which is inserted as the new medium (this command
4671 # combines blockdev-open-tray, blockdev-remove-medium, blockdev-insert-medium
4672 # and blockdev-close-tray).
4673 #
4674 # @device: Block device name (deprecated, use @id instead)
4675 #
4676 # @id: The name or QOM path of the guest device
4677 # (since: 2.8)
4678 #
4679 # @filename: filename of the new image to be loaded
4680 #
4681 # @format: format to open the new image with (defaults to
4682 # the probed format)
4683 #
4684 # @read-only-mode: change the read-only mode of the device; defaults
4685 # to 'retain'
4686 #
4687 # Since: 2.5
4688 #
4689 # Examples:
4690 #
4691 # 1. Change a removable medium
4692 #
4693 # -> { "execute": "blockdev-change-medium",
4694 # "arguments": { "id": "ide0-1-0",
4695 # "filename": "/srv/images/Fedora-12-x86_64-DVD.iso",
4696 # "format": "raw" } }
4697 # <- { "return": {} }
4698 #
4699 # 2. Load a read-only medium into a writable drive
4700 #
4701 # -> { "execute": "blockdev-change-medium",
4702 # "arguments": { "id": "floppyA",
4703 # "filename": "/srv/images/ro.img",
4704 # "format": "raw",
4705 # "read-only-mode": "retain" } }
4706 #
4707 # <- { "error":
4708 # { "class": "GenericError",
4709 # "desc": "Could not open '/srv/images/ro.img': Permission denied" } }
4710 #
4711 # -> { "execute": "blockdev-change-medium",
4712 # "arguments": { "id": "floppyA",
4713 # "filename": "/srv/images/ro.img",
4714 # "format": "raw",
4715 # "read-only-mode": "read-only" } }
4716 #
4717 # <- { "return": {} }
4718 #
4719 ##
4720 { 'command': 'blockdev-change-medium',
4721 'data': { '*device': 'str',
4722 '*id': 'str',
4723 'filename': 'str',
4724 '*format': 'str',
4725 '*read-only-mode': 'BlockdevChangeReadOnlyMode' } }
4726
4727
4728 ##
4729 # @BlockErrorAction:
4730 #
4731 # An enumeration of action that has been taken when a DISK I/O occurs
4732 #
4733 # @ignore: error has been ignored
4734 #
4735 # @report: error has been reported to the device
4736 #
4737 # @stop: error caused VM to be stopped
4738 #
4739 # Since: 2.1
4740 ##
4741 { 'enum': 'BlockErrorAction',
4742 'data': [ 'ignore', 'report', 'stop' ] }
4743
4744
4745 ##
4746 # @BLOCK_IMAGE_CORRUPTED:
4747 #
4748 # Emitted when a disk image is being marked corrupt. The image can be
4749 # identified by its device or node name. The 'device' field is always
4750 # present for compatibility reasons, but it can be empty ("") if the
4751 # image does not have a device name associated.
4752 #
4753 # @device: device name. This is always present for compatibility
4754 # reasons, but it can be empty ("") if the image does not
4755 # have a device name associated.
4756 #
4757 # @node-name: node name (Since: 2.4)
4758 #
4759 # @msg: informative message for human consumption, such as the kind of
4760 # corruption being detected. It should not be parsed by machine as it is
4761 # not guaranteed to be stable
4762 #
4763 # @offset: if the corruption resulted from an image access, this is
4764 # the host's access offset into the image
4765 #
4766 # @size: if the corruption resulted from an image access, this is
4767 # the access size
4768 #
4769 # @fatal: if set, the image is marked corrupt and therefore unusable after this
4770 # event and must be repaired (Since 2.2; before, every
4771 # BLOCK_IMAGE_CORRUPTED event was fatal)
4772 #
4773 # Note: If action is "stop", a STOP event will eventually follow the
4774 # BLOCK_IO_ERROR event.
4775 #
4776 # Example:
4777 #
4778 # <- { "event": "BLOCK_IMAGE_CORRUPTED",
4779 # "data": { "device": "ide0-hd0", "node-name": "node0",
4780 # "msg": "Prevented active L1 table overwrite", "offset": 196608,
4781 # "size": 65536 },
4782 # "timestamp": { "seconds": 1378126126, "microseconds": 966463 } }
4783 #
4784 # Since: 1.7
4785 ##
4786 { 'event': 'BLOCK_IMAGE_CORRUPTED',
4787 'data': { 'device' : 'str',
4788 '*node-name' : 'str',
4789 'msg' : 'str',
4790 '*offset' : 'int',
4791 '*size' : 'int',
4792 'fatal' : 'bool' } }
4793
4794 ##
4795 # @BLOCK_IO_ERROR:
4796 #
4797 # Emitted when a disk I/O error occurs
4798 #
4799 # @device: device name. This is always present for compatibility
4800 # reasons, but it can be empty ("") if the image does not
4801 # have a device name associated.
4802 #
4803 # @node-name: node name. Note that errors may be reported for the root node
4804 # that is directly attached to a guest device rather than for the
4805 # node where the error occurred. The node name is not present if
4806 # the drive is empty. (Since: 2.8)
4807 #
4808 # @operation: I/O operation
4809 #
4810 # @action: action that has been taken
4811 #
4812 # @nospace: true if I/O error was caused due to a no-space
4813 # condition. This key is only present if query-block's
4814 # io-status is present, please see query-block documentation
4815 # for more information (since: 2.2)
4816 #
4817 # @reason: human readable string describing the error cause.
4818 # (This field is a debugging aid for humans, it should not
4819 # be parsed by applications) (since: 2.2)
4820 #
4821 # Note: If action is "stop", a STOP event will eventually follow the
4822 # BLOCK_IO_ERROR event
4823 #
4824 # Since: 0.13.0
4825 #
4826 # Example:
4827 #
4828 # <- { "event": "BLOCK_IO_ERROR",
4829 # "data": { "device": "ide0-hd1",
4830 # "node-name": "#block212",
4831 # "operation": "write",
4832 # "action": "stop" },
4833 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4834 #
4835 ##
4836 { 'event': 'BLOCK_IO_ERROR',
4837 'data': { 'device': 'str', '*node-name': 'str',
4838 'operation': 'IoOperationType',
4839 'action': 'BlockErrorAction', '*nospace': 'bool',
4840 'reason': 'str' } }
4841
4842 ##
4843 # @BLOCK_JOB_COMPLETED:
4844 #
4845 # Emitted when a block job has completed
4846 #
4847 # @type: job type
4848 #
4849 # @device: The job identifier. Originally the device name but other
4850 # values are allowed since QEMU 2.7
4851 #
4852 # @len: maximum progress value
4853 #
4854 # @offset: current progress value. On success this is equal to len.
4855 # On failure this is less than len
4856 #
4857 # @speed: rate limit, bytes per second
4858 #
4859 # @error: error message. Only present on failure. This field
4860 # contains a human-readable error message. There are no semantics
4861 # other than that streaming has failed and clients should not try to
4862 # interpret the error string
4863 #
4864 # Since: 1.1
4865 #
4866 # Example:
4867 #
4868 # <- { "event": "BLOCK_JOB_COMPLETED",
4869 # "data": { "type": "stream", "device": "virtio-disk0",
4870 # "len": 10737418240, "offset": 10737418240,
4871 # "speed": 0 },
4872 # "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
4873 #
4874 ##
4875 { 'event': 'BLOCK_JOB_COMPLETED',
4876 'data': { 'type' : 'JobType',
4877 'device': 'str',
4878 'len' : 'int',
4879 'offset': 'int',
4880 'speed' : 'int',
4881 '*error': 'str' } }
4882
4883 ##
4884 # @BLOCK_JOB_CANCELLED:
4885 #
4886 # Emitted when a block job has been cancelled
4887 #
4888 # @type: job type
4889 #
4890 # @device: The job identifier. Originally the device name but other
4891 # values are allowed since QEMU 2.7
4892 #
4893 # @len: maximum progress value
4894 #
4895 # @offset: current progress value. On success this is equal to len.
4896 # On failure this is less than len
4897 #
4898 # @speed: rate limit, bytes per second
4899 #
4900 # Since: 1.1
4901 #
4902 # Example:
4903 #
4904 # <- { "event": "BLOCK_JOB_CANCELLED",
4905 # "data": { "type": "stream", "device": "virtio-disk0",
4906 # "len": 10737418240, "offset": 134217728,
4907 # "speed": 0 },
4908 # "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
4909 #
4910 ##
4911 { 'event': 'BLOCK_JOB_CANCELLED',
4912 'data': { 'type' : 'JobType',
4913 'device': 'str',
4914 'len' : 'int',
4915 'offset': 'int',
4916 'speed' : 'int' } }
4917
4918 ##
4919 # @BLOCK_JOB_ERROR:
4920 #
4921 # Emitted when a block job encounters an error
4922 #
4923 # @device: The job identifier. Originally the device name but other
4924 # values are allowed since QEMU 2.7
4925 #
4926 # @operation: I/O operation
4927 #
4928 # @action: action that has been taken
4929 #
4930 # Since: 1.3
4931 #
4932 # Example:
4933 #
4934 # <- { "event": "BLOCK_JOB_ERROR",
4935 # "data": { "device": "ide0-hd1",
4936 # "operation": "write",
4937 # "action": "stop" },
4938 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4939 #
4940 ##
4941 { 'event': 'BLOCK_JOB_ERROR',
4942 'data': { 'device' : 'str',
4943 'operation': 'IoOperationType',
4944 'action' : 'BlockErrorAction' } }
4945
4946 ##
4947 # @BLOCK_JOB_READY:
4948 #
4949 # Emitted when a block job is ready to complete
4950 #
4951 # @type: job type
4952 #
4953 # @device: The job identifier. Originally the device name but other
4954 # values are allowed since QEMU 2.7
4955 #
4956 # @len: maximum progress value
4957 #
4958 # @offset: current progress value. On success this is equal to len.
4959 # On failure this is less than len
4960 #
4961 # @speed: rate limit, bytes per second
4962 #
4963 # Note: The "ready to complete" status is always reset by a @BLOCK_JOB_ERROR
4964 # event
4965 #
4966 # Since: 1.3
4967 #
4968 # Example:
4969 #
4970 # <- { "event": "BLOCK_JOB_READY",
4971 # "data": { "device": "drive0", "type": "mirror", "speed": 0,
4972 # "len": 2097152, "offset": 2097152 }
4973 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
4974 #
4975 ##
4976 { 'event': 'BLOCK_JOB_READY',
4977 'data': { 'type' : 'JobType',
4978 'device': 'str',
4979 'len' : 'int',
4980 'offset': 'int',
4981 'speed' : 'int' } }
4982
4983 ##
4984 # @BLOCK_JOB_PENDING:
4985 #
4986 # Emitted when a block job is awaiting explicit authorization to finalize graph
4987 # changes via @block-job-finalize. If this job is part of a transaction, it will
4988 # not emit this event until the transaction has converged first.
4989 #
4990 # @type: job type
4991 #
4992 # @id: The job identifier.
4993 #
4994 # Since: 2.12
4995 #
4996 # Example:
4997 #
4998 # <- { "event": "BLOCK_JOB_WAITING",
4999 # "data": { "device": "drive0", "type": "mirror" },
5000 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
5001 #
5002 ##
5003 { 'event': 'BLOCK_JOB_PENDING',
5004 'data': { 'type' : 'JobType',
5005 'id' : 'str' } }
5006
5007 ##
5008 # @PreallocMode:
5009 #
5010 # Preallocation mode of QEMU image file
5011 #
5012 # @off: no preallocation
5013 # @metadata: preallocate only for metadata
5014 # @falloc: like @full preallocation but allocate disk space by
5015 # posix_fallocate() rather than writing zeros.
5016 # @full: preallocate all data by writing zeros to device to ensure disk
5017 # space is really available. @full preallocation also sets up
5018 # metadata correctly.
5019 #
5020 # Since: 2.2
5021 ##
5022 { 'enum': 'PreallocMode',
5023 'data': [ 'off', 'metadata', 'falloc', 'full' ] }
5024
5025 ##
5026 # @BLOCK_WRITE_THRESHOLD:
5027 #
5028 # Emitted when writes on block device reaches or exceeds the
5029 # configured write threshold. For thin-provisioned devices, this
5030 # means the device should be extended to avoid pausing for
5031 # disk exhaustion.
5032 # The event is one shot. Once triggered, it needs to be
5033 # re-registered with another block-set-write-threshold command.
5034 #
5035 # @node-name: graph node name on which the threshold was exceeded.
5036 #
5037 # @amount-exceeded: amount of data which exceeded the threshold, in bytes.
5038 #
5039 # @write-threshold: last configured threshold, in bytes.
5040 #
5041 # Since: 2.3
5042 ##
5043 { 'event': 'BLOCK_WRITE_THRESHOLD',
5044 'data': { 'node-name': 'str',
5045 'amount-exceeded': 'uint64',
5046 'write-threshold': 'uint64' } }
5047
5048 ##
5049 # @block-set-write-threshold:
5050 #
5051 # Change the write threshold for a block drive. An event will be
5052 # delivered if a write to this block drive crosses the configured
5053 # threshold. The threshold is an offset, thus must be
5054 # non-negative. Default is no write threshold. Setting the threshold
5055 # to zero disables it.
5056 #
5057 # This is useful to transparently resize thin-provisioned drives without
5058 # the guest OS noticing.
5059 #
5060 # @node-name: graph node name on which the threshold must be set.
5061 #
5062 # @write-threshold: configured threshold for the block device, bytes.
5063 # Use 0 to disable the threshold.
5064 #
5065 # Since: 2.3
5066 #
5067 # Example:
5068 #
5069 # -> { "execute": "block-set-write-threshold",
5070 # "arguments": { "node-name": "mydev",
5071 # "write-threshold": 17179869184 } }
5072 # <- { "return": {} }
5073 #
5074 ##
5075 { 'command': 'block-set-write-threshold',
5076 'data': { 'node-name': 'str', 'write-threshold': 'uint64' } }
5077
5078 ##
5079 # @x-blockdev-change:
5080 #
5081 # Dynamically reconfigure the block driver state graph. It can be used
5082 # to add, remove, insert or replace a graph node. Currently only the
5083 # Quorum driver implements this feature to add or remove its child. This
5084 # is useful to fix a broken quorum child.
5085 #
5086 # If @node is specified, it will be inserted under @parent. @child
5087 # may not be specified in this case. If both @parent and @child are
5088 # specified but @node is not, @child will be detached from @parent.
5089 #
5090 # @parent: the id or name of the parent node.
5091 #
5092 # @child: the name of a child under the given parent node.
5093 #
5094 # @node: the name of the node that will be added.
5095 #
5096 # Note: this command is experimental, and its API is not stable. It
5097 # does not support all kinds of operations, all kinds of children, nor
5098 # all block drivers.
5099 #
5100 # FIXME Removing children from a quorum node means introducing gaps in the
5101 # child indices. This cannot be represented in the 'children' list of
5102 # BlockdevOptionsQuorum, as returned by .bdrv_refresh_filename().
5103 #
5104 # Warning: The data in a new quorum child MUST be consistent with that of
5105 # the rest of the array.
5106 #
5107 # Since: 2.7
5108 #
5109 # Example:
5110 #
5111 # 1. Add a new node to a quorum
5112 # -> { "execute": "blockdev-add",
5113 # "arguments": {
5114 # "driver": "raw",
5115 # "node-name": "new_node",
5116 # "file": { "driver": "file",
5117 # "filename": "test.raw" } } }
5118 # <- { "return": {} }
5119 # -> { "execute": "x-blockdev-change",
5120 # "arguments": { "parent": "disk1",
5121 # "node": "new_node" } }
5122 # <- { "return": {} }
5123 #
5124 # 2. Delete a quorum's node
5125 # -> { "execute": "x-blockdev-change",
5126 # "arguments": { "parent": "disk1",
5127 # "child": "children.1" } }
5128 # <- { "return": {} }
5129 #
5130 ##
5131 { 'command': 'x-blockdev-change',
5132 'data' : { 'parent': 'str',
5133 '*child': 'str',
5134 '*node': 'str' } }
5135
5136 ##
5137 # @x-blockdev-set-iothread:
5138 #
5139 # Move @node and its children into the @iothread. If @iothread is null then
5140 # move @node and its children into the main loop.
5141 #
5142 # The node must not be attached to a BlockBackend.
5143 #
5144 # @node-name: the name of the block driver node
5145 #
5146 # @iothread: the name of the IOThread object or null for the main loop
5147 #
5148 # @force: true if the node and its children should be moved when a BlockBackend
5149 # is already attached
5150 #
5151 # Note: this command is experimental and intended for test cases that need
5152 # control over IOThreads only.
5153 #
5154 # Since: 2.12
5155 #
5156 # Example:
5157 #
5158 # 1. Move a node into an IOThread
5159 # -> { "execute": "x-blockdev-set-iothread",
5160 # "arguments": { "node-name": "disk1",
5161 # "iothread": "iothread0" } }
5162 # <- { "return": {} }
5163 #
5164 # 2. Move a node into the main loop
5165 # -> { "execute": "x-blockdev-set-iothread",
5166 # "arguments": { "node-name": "disk1",
5167 # "iothread": null } }
5168 # <- { "return": {} }
5169 #
5170 ##
5171 { 'command': 'x-blockdev-set-iothread',
5172 'data' : { 'node-name': 'str',
5173 'iothread': 'StrOrNull',
5174 '*force': 'bool' } }