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