block-core.json 171.4 KB
Newer Older
1
# -*- Mode: Python -*-
2 3

##
4
# == Block core (VM unrelated)
5
##
6 7

{ 'include': 'common.json' }
8
{ 'include': 'crypto.json' }
K
Kevin Wolf 已提交
9
{ 'include': 'job.json' }
10
{ 'include': 'sockets.json' }
11 12

##
13
# @SnapshotInfo:
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
#
# @id: unique snapshot id
#
# @name: user chosen name
#
# @vm-state-size: size of the VM state
#
# @date-sec: UTC date of the snapshot in seconds
#
# @date-nsec: fractional part in nano seconds to be used with date-sec
#
# @vm-clock-sec: VM clock relative to boot in seconds
#
# @vm-clock-nsec: fractional part in nano seconds to be used with vm-clock-sec
#
# Since: 1.3
#
##
32
{ 'struct': 'SnapshotInfo',
33 34 35 36
  'data': { 'id': 'str', 'name': 'str', 'vm-state-size': 'int',
            'date-sec': 'int', 'date-nsec': 'int',
            'vm-clock-sec': 'int', 'vm-clock-nsec': 'int' } }

37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
##
# @ImageInfoSpecificQCow2EncryptionBase:
#
# @format: The encryption format
#
# Since: 2.10
##
{ 'struct': 'ImageInfoSpecificQCow2EncryptionBase',
  'data': { 'format': 'BlockdevQcow2EncryptionFormat'}}

##
# @ImageInfoSpecificQCow2Encryption:
#
# Since: 2.10
##
{ 'union': 'ImageInfoSpecificQCow2Encryption',
  'base': 'ImageInfoSpecificQCow2EncryptionBase',
  'discriminator': 'format',
55
  'data': { 'luks': 'QCryptoBlockInfoLUKS' } }
56

57 58 59 60 61
##
# @ImageInfoSpecificQCow2:
#
# @compat: compatibility level
#
62 63 64
# @data-file: the filename of the external data file that is stored in the
#             image and used as a default for opening the image (since: 4.0)
#
65 66 67 68
# @data-file-raw: True if the external data file must stay valid as a
#                 standalone (read-only) raw image without looking at qcow2
#                 metadata (since: 4.0)
#
69
# @lazy-refcounts: on or off; only valid for compat >= 1.1
70
#
71
# @corrupt: true if the image has been marked corrupt; only valid for
72 73
#           compat >= 1.1 (since 2.2)
#
74 75
# @refcount-bits: width of a refcount entry in bits (since 2.3)
#
76 77 78
# @encrypt: details about encryption parameters; only set if image
#           is encrypted (since 2.10)
#
79 80
# @bitmaps: A list of qcow2 bitmap details (since 4.0)
#
81 82
# Since: 1.7
##
83
{ 'struct': 'ImageInfoSpecificQCow2',
84 85
  'data': {
      'compat': 'str',
86
      '*data-file': 'str',
87
      '*data-file-raw': 'bool',
88
      '*lazy-refcounts': 'bool',
89
      '*corrupt': 'bool',
90
      'refcount-bits': 'int',
91 92
      '*encrypt': 'ImageInfoSpecificQCow2Encryption',
      '*bitmaps': ['Qcow2BitmapInfo']
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
  } }

##
# @ImageInfoSpecificVmdk:
#
# @create-type: The create type of VMDK image
#
# @cid: Content id of image
#
# @parent-cid: Parent VMDK image's cid
#
# @extents: List of extent files
#
# Since: 1.7
##
108
{ 'struct': 'ImageInfoSpecificVmdk',
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
  'data': {
      'create-type': 'str',
      'cid': 'int',
      'parent-cid': 'int',
      'extents': ['ImageInfo']
  } }

##
# @ImageInfoSpecific:
#
# A discriminated record of image format specific information structures.
#
# Since: 1.7
##
{ 'union': 'ImageInfoSpecific',
  'data': {
      'qcow2': 'ImageInfoSpecificQCow2',
126 127 128 129 130
      'vmdk': 'ImageInfoSpecificVmdk',
      # If we need to add block driver specific parameters for
      # LUKS in future, then we'll subclass QCryptoBlockInfoLUKS
      # to define a ImageInfoSpecificLUKS
      'luks': 'QCryptoBlockInfoLUKS'
131 132 133 134 135 136 137 138 139 140 141 142 143
  } }

##
# @ImageInfo:
#
# Information about a QEMU image file
#
# @filename: name of the image file
#
# @format: format of the image file
#
# @virtual-size: maximum capacity in bytes of the image
#
144
# @actual-size: actual size on disk in bytes of the image
145
#
146
# @dirty-flag: true if image is not cleanly closed
147
#
148
# @cluster-size: size of a cluster in bytes
149
#
150
# @encrypted: true if the image is encrypted
151
#
152
# @compressed: true if the image is compressed (Since 1.7)
153
#
154
# @backing-filename: name of the backing file
155
#
156
# @full-backing-filename: full path of the backing file
157
#
158
# @backing-filename-format: the format of the backing file
159
#
160
# @snapshots: list of VM snapshots
161
#
162
# @backing-image: info of the backing image (since 1.6)
163
#
164
# @format-specific: structure supplying additional format-specific
165 166 167 168 169
# information (since 1.7)
#
# Since: 1.3
#
##
170
{ 'struct': 'ImageInfo',
171 172 173 174 175 176
  'data': {'filename': 'str', 'format': 'str', '*dirty-flag': 'bool',
           '*actual-size': 'int', 'virtual-size': 'int',
           '*cluster-size': 'int', '*encrypted': 'bool', '*compressed': 'bool',
           '*backing-filename': 'str', '*full-backing-filename': 'str',
           '*backing-filename-format': 'str', '*snapshots': ['SnapshotInfo'],
           '*backing-image': 'ImageInfo',
177
           '*format-specific': 'ImageInfoSpecific' } }
178 179 180 181 182 183 184 185 186 187 188 189

##
# @ImageCheck:
#
# Information about a QEMU image file check
#
# @filename: name of the image file checked
#
# @format: format of the image file checked
#
# @check-errors: number of unexpected errors occurred during check
#
190
# @image-end-offset: offset (in bytes) where the image ends, this
191 192 193
#                    field is present if the driver for the image format
#                    supports it
#
194
# @corruptions: number of corruptions found during the check if any
195
#
196
# @leaks: number of leaks found during the check if any
197
#
198
# @corruptions-fixed: number of corruptions fixed during the check
199 200
#                     if any
#
201
# @leaks-fixed: number of leaks fixed during the check if any
202
#
203
# @total-clusters: total number of clusters, this field is present
204 205
#                  if the driver for the image format supports it
#
206
# @allocated-clusters: total number of allocated clusters, this
207 208 209
#                      field is present if the driver for the image format
#                      supports it
#
210
# @fragmented-clusters: total number of fragmented clusters, this
211 212 213
#                       field is present if the driver for the image format
#                       supports it
#
214
# @compressed-clusters: total number of compressed clusters, this
215 216 217 218 219 220
#                       field is present if the driver for the image format
#                       supports it
#
# Since: 1.4
#
##
221
{ 'struct': 'ImageCheck',
222 223 224 225 226 227
  'data': {'filename': 'str', 'format': 'str', 'check-errors': 'int',
           '*image-end-offset': 'int', '*corruptions': 'int', '*leaks': 'int',
           '*corruptions-fixed': 'int', '*leaks-fixed': 'int',
           '*total-clusters': 'int', '*allocated-clusters': 'int',
           '*fragmented-clusters': 'int', '*compressed-clusters': 'int' } }

228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
##
# @MapEntry:
#
# Mapping information from a virtual block range to a host file range
#
# @start: the start byte of the mapped virtual range
#
# @length: the number of bytes of the mapped virtual range
#
# @data: whether the mapped range has data
#
# @zero: whether the virtual blocks are zeroed
#
# @depth: the depth of the mapping
#
243
# @offset: the offset in file that the virtual sectors are mapped to
244
#
245
# @filename: filename that is referred to by @offset
246 247 248 249 250 251 252 253 254
#
# Since: 2.6
#
##
{ 'struct': 'MapEntry',
  'data': {'start': 'int', 'length': 'int', 'data': 'bool',
           'zero': 'bool', 'depth': 'int', '*offset': 'int',
           '*filename': 'str' } }

255
##
256
# @BlockdevCacheInfo:
257 258 259 260 261 262 263 264 265
#
# Cache mode information for a block device
#
# @writeback:   true if writeback mode is enabled
# @direct:      true if the host page cache is bypassed (O_DIRECT)
# @no-flush:    true if flush requests are ignored for the device
#
# Since: 2.3
##
266
{ 'struct': 'BlockdevCacheInfo',
267 268 269 270
  'data': { 'writeback': 'bool',
            'direct': 'bool',
            'no-flush': 'bool' } }

271 272 273 274 275 276 277
##
# @BlockDeviceInfo:
#
# Information about the backing device for a block device.
#
# @file: the filename of the backing device
#
278
# @node-name: the name of the block driver node (Since 2.0)
279 280 281 282 283 284
#
# @ro: true if the backing device was open read-only
#
# @drv: the name of the block format used to open the backing device. As of
#       0.14.0 this can be: 'blkdebug', 'bochs', 'cloop', 'cow', 'dmg',
#       'file', 'file', 'ftp', 'ftps', 'host_cdrom', 'host_device',
285
#       'http', 'https', 'luks', 'nbd', 'parallels', 'qcow',
M
Max Reitz 已提交
286
#       'qcow2', 'raw', 'vdi', 'vmdk', 'vpc', 'vvfat'
S
Stefan Hajnoczi 已提交
287
#       2.2: 'archipelago' added, 'cow' dropped
288
#       2.3: 'host_floppy' deprecated
M
Max Reitz 已提交
289
#       2.5: 'host_floppy' dropped
290
#       2.6: 'luks' added
M
Max Reitz 已提交
291
#       2.8: 'replication' added, 'tftp' dropped
292
#       2.9: 'archipelago' dropped
293
#
294
# @backing_file: the name of the backing file (for copy-on-write)
295 296 297 298 299
#
# @backing_file_depth: number of files in the backing file chain (since: 1.2)
#
# @encrypted: true if the backing device is encrypted
#
300
# @encryption_key_missing: Deprecated; always false
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
#
# @detect_zeroes: detect and optimize zero writes (Since 2.1)
#
# @bps: total throughput limit in bytes per second is specified
#
# @bps_rd: read throughput limit in bytes per second is specified
#
# @bps_wr: write throughput limit in bytes per second is specified
#
# @iops: total I/O operations per second is specified
#
# @iops_rd: read I/O operations per second is specified
#
# @iops_wr: write I/O operations per second is specified
#
# @image: the info of image used (since: 1.6)
#
318
# @bps_max: total throughput limit during bursts,
319
#                     in bytes (Since 1.7)
320
#
321
# @bps_rd_max: read throughput limit during bursts,
322
#                        in bytes (Since 1.7)
323
#
324
# @bps_wr_max: write throughput limit during bursts,
325
#                        in bytes (Since 1.7)
326
#
327
# @iops_max: total I/O operations per second during bursts,
328
#                      in bytes (Since 1.7)
329
#
330
# @iops_rd_max: read I/O operations per second during bursts,
331
#                         in bytes (Since 1.7)
332
#
333
# @iops_wr_max: write I/O operations per second during bursts,
334 335
#                         in bytes (Since 1.7)
#
336
# @bps_max_length: maximum length of the @bps_max burst
337 338
#                            period, in seconds. (Since 2.6)
#
339
# @bps_rd_max_length: maximum length of the @bps_rd_max
340 341
#                               burst period, in seconds. (Since 2.6)
#
342
# @bps_wr_max_length: maximum length of the @bps_wr_max
343 344
#                               burst period, in seconds. (Since 2.6)
#
345
# @iops_max_length: maximum length of the @iops burst
346 347
#                             period, in seconds. (Since 2.6)
#
348
# @iops_rd_max_length: maximum length of the @iops_rd_max
349 350
#                                burst period, in seconds. (Since 2.6)
#
351
# @iops_wr_max_length: maximum length of the @iops_wr_max
352
#                                burst period, in seconds. (Since 2.6)
353
#
354
# @iops_size: an I/O size in bytes (Since 1.7)
355
#
356
# @group: throttle group name (Since 2.4)
357
#
358 359
# @cache: the cache mode used for the block device (since: 2.3)
#
360 361 362
# @write_threshold: configured write threshold for the device.
#                   0 if disabled. (Since 2.3)
#
363 364 365
# Since: 0.14.0
#
##
366
{ 'struct': 'BlockDeviceInfo',
367 368 369 370 371 372 373 374 375 376
  'data': { 'file': 'str', '*node-name': 'str', 'ro': 'bool', 'drv': 'str',
            '*backing_file': 'str', 'backing_file_depth': 'int',
            'encrypted': 'bool', 'encryption_key_missing': 'bool',
            'detect_zeroes': 'BlockdevDetectZeroesOptions',
            'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
            'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
            'image': 'ImageInfo',
            '*bps_max': 'int', '*bps_rd_max': 'int',
            '*bps_wr_max': 'int', '*iops_max': 'int',
            '*iops_rd_max': 'int', '*iops_wr_max': 'int',
377 378 379
            '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
            '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
            '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
380
            '*iops_size': 'int', '*group': 'str', 'cache': 'BlockdevCacheInfo',
381
            'write_threshold': 'int' } }
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420

##
# @BlockDeviceIoStatus:
#
# An enumeration of block device I/O status.
#
# @ok: The last I/O operation has succeeded
#
# @failed: The last I/O operation has failed
#
# @nospace: The last I/O operation has failed due to a no-space condition
#
# Since: 1.0
##
{ 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }

##
# @BlockDeviceMapEntry:
#
# Entry in the metadata map of the device (returned by "qemu-img map")
#
# @start: Offset in the image of the first byte described by this entry
#         (in bytes)
#
# @length: Length of the range described by this entry (in bytes)
#
# @depth: Number of layers (0 = top image, 1 = top image's backing file, etc.)
#         before reaching one for which the range is allocated.  The value is
#         in the range 0 to the depth of the image chain - 1.
#
# @zero: the sectors in this range read as zeros
#
# @data: reading the image will actually read data from a file (in particular,
#        if @offset is present this means that the sectors are not simply
#        preallocated, but contain actual data in raw format)
#
# @offset: if present, the image file stores the data for this range in
#          raw format at the given offset.
#
421
# Since: 1.7
422
##
423
{ 'struct': 'BlockDeviceMapEntry',
424 425 426
  'data': { 'start': 'int', 'length': 'int', 'depth': 'int', 'zero': 'bool',
            'data': 'bool', '*offset': 'int' } }

J
John Snow 已提交
427 428 429 430 431
##
# @DirtyBitmapStatus:
#
# An enumeration of possible states that a dirty bitmap can report to the user.
#
432 433 434 435 436 437 438 439 440 441 442 443 444
# @frozen: The bitmap is currently in-use by some operation and is immutable.
#          If the bitmap was @active prior to the operation, new writes by the
#          guest are being recorded in a temporary buffer, and will not be lost.
#          Generally, bitmaps are cleared on successful use in an operation and
#          the temporary buffer is committed into the bitmap. On failure, the
#          temporary buffer is merged back into the bitmap without first
#          clearing it.
#          Please refer to the documentation for each bitmap-using operation,
#          See also @blockdev-backup, @drive-backup.
#
# @disabled: The bitmap is not currently recording new writes by the guest.
#            This is requested explicitly via @block-dirty-bitmap-disable.
#            It can still be cleared, deleted, or used for backup operations.
J
John Snow 已提交
445 446 447 448
#
# @active: The bitmap is actively monitoring for new writes, and can be cleared,
#          deleted, or used for backup operations.
#
449 450 451 452
# @locked: The bitmap is currently in-use by some operation and is immutable.
#          If the bitmap was @active prior to the operation, it is still
#          recording new writes. If the bitmap was @disabled, it is not
#          recording new writes. (Since 2.12)
453
#
454 455 456 457 458
# @inconsistent: This is a persistent dirty bitmap that was marked in-use on
#                disk, and is unusable by QEMU. It can only be deleted.
#                Please rely on the inconsistent field in @BlockDirtyInfo
#                instead, as the status field is deprecated. (Since 4.0)
#
J
John Snow 已提交
459 460 461
# Since: 2.4
##
{ 'enum': 'DirtyBitmapStatus',
462
  'data': ['active', 'disabled', 'frozen', 'locked', 'inconsistent'] }
J
John Snow 已提交
463

464 465 466 467 468
##
# @BlockDirtyInfo:
#
# Block dirty bitmap information.
#
469
# @name: the name of the dirty bitmap (Since 2.4)
470
#
471 472 473 474
# @count: number of dirty bytes according to the dirty bitmap
#
# @granularity: granularity of the dirty bitmap in bytes (since 1.4)
#
475 476 477 478 479 480 481 482
# @status: Deprecated in favor of @recording and @locked. (since 2.4)
#
# @recording: true if the bitmap is recording new writes from the guest.
#             Replaces `active` and `disabled` statuses. (since 4.0)
#
# @busy: true if the bitmap is in-use by some operation (NBD or jobs)
#        and cannot be modified via QMP or used by another operation.
#        Replaces `locked` and `frozen` statuses. (since 4.0)
483
#
484 485
# @persistent: true if the bitmap was stored on disk, is scheduled to be stored
#              on disk, or both. (since 4.0)
486
#
487 488 489 490
# @inconsistent: true if this is a persistent bitmap that was improperly
#                stored. Implies @persistent to be true; @recording and
#                @busy to be false. This bitmap cannot be used. To remove
#                it, use @block-dirty-bitmap-remove. (Since 4.0)
491
#
492 493
# Since: 1.3
##
494
{ 'struct': 'BlockDirtyInfo',
495
  'data': {'*name': 'str', 'count': 'int', 'granularity': 'uint32',
496 497
           'recording': 'bool', 'busy': 'bool', 'status': 'DirtyBitmapStatus',
           'persistent': 'bool', '*inconsistent': 'bool' } }
498

499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
##
# @Qcow2BitmapInfoFlags:
#
# An enumeration of flags that a bitmap can report to the user.
#
# @in-use: This flag is set by any process actively modifying the qcow2 file,
#          and cleared when the updated bitmap is flushed to the qcow2 image.
#          The presence of this flag in an offline image means that the bitmap
#          was not saved correctly after its last usage, and may contain
#          inconsistent data.
#
# @auto: The bitmap must reflect all changes of the virtual disk by any
#        application that would write to this qcow2 file.
#
# Since: 4.0
##
{ 'enum': 'Qcow2BitmapInfoFlags',
  'data': ['in-use', 'auto'] }

##
# @Qcow2BitmapInfo:
#
# Qcow2 bitmap information.
#
# @name: the name of the bitmap
#
# @granularity: granularity of the bitmap in bytes
#
# @flags: flags of the bitmap
#
# Since: 4.0
##
{ 'struct': 'Qcow2BitmapInfo',
  'data': {'name': 'str', 'granularity': 'uint32',
           'flags': ['Qcow2BitmapInfoFlags'] } }

535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
##
# @BlockLatencyHistogramInfo:
#
# Block latency histogram.
#
# @boundaries: list of interval boundary values in nanoseconds, all greater
#              than zero and in ascending order.
#              For example, the list [10, 50, 100] produces the following
#              histogram intervals: [0, 10), [10, 50), [50, 100), [100, +inf).
#
# @bins: list of io request counts corresponding to histogram intervals.
#        len(@bins) = len(@boundaries) + 1
#        For the example above, @bins may be something like [3, 1, 5, 2],
#        and corresponding histogram looks like:
#
#        5|           *
#        4|           *
#        3| *         *
#        2| *         *    *
#        1| *    *    *    *
#         +------------------
#             10   50   100
#
558
# Since: 4.0
559 560 561 562 563
##
{ 'struct': 'BlockLatencyHistogramInfo',
  'data': {'boundaries': ['uint64'], 'bins': ['uint64'] } }

##
564
# @block-latency-histogram-set:
565 566 567
#
# Manage read, write and flush latency histograms for the device.
#
568
# If only @id parameter is specified, remove all present latency histograms
569 570
# for the device. Otherwise, add/reset some of (or all) latency histograms.
#
571
# @id: The name or QOM path of the guest device.
572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
#
# @boundaries: list of interval boundary values (see description in
#              BlockLatencyHistogramInfo definition). If specified, all
#              latency histograms are removed, and empty ones created for all
#              io types with intervals corresponding to @boundaries (except for
#              io types, for which specific boundaries are set through the
#              following parameters).
#
# @boundaries-read: list of interval boundary values for read latency
#                   histogram. If specified, old read latency histogram is
#                   removed, and empty one created with intervals
#                   corresponding to @boundaries-read. The parameter has higher
#                   priority then @boundaries.
#
# @boundaries-write: list of interval boundary values for write latency
#                    histogram.
#
# @boundaries-flush: list of interval boundary values for flush latency
#                    histogram.
#
# Returns: error if device is not found or any boundary arrays are invalid.
#
594
# Since: 4.0
595 596 597 598 599
#
# Example: set new histograms for all io types with intervals
# [0, 10), [10, 50), [50, 100), [100, +inf):
#
# -> { "execute": "block-latency-histogram-set",
600
#      "arguments": { "id": "drive0",
601 602 603 604 605 606 607
#                     "boundaries": [10, 50, 100] } }
# <- { "return": {} }
#
# Example: set new histogram only for write, other histograms will remain
# not changed (or not created):
#
# -> { "execute": "block-latency-histogram-set",
608
#      "arguments": { "id": "drive0",
609 610 611 612 613 614 615 616
#                     "boundaries-write": [10, 50, 100] } }
# <- { "return": {} }
#
# Example: set new histograms with the following intervals:
#   read, flush: [0, 10), [10, 50), [50, 100), [100, +inf)
#   write: [0, 1000), [1000, 5000), [5000, +inf)
#
# -> { "execute": "block-latency-histogram-set",
617
#      "arguments": { "id": "drive0",
618 619 620 621 622 623 624
#                     "boundaries": [10, 50, 100],
#                     "boundaries-write": [1000, 5000] } }
# <- { "return": {} }
#
# Example: remove all latency histograms:
#
# -> { "execute": "block-latency-histogram-set",
625
#      "arguments": { "id": "drive0" } }
626 627
# <- { "return": {} }
##
628
{ 'command': 'block-latency-histogram-set',
629
  'data': {'id': 'str',
630 631 632 633 634
           '*boundaries': ['uint64'],
           '*boundaries-read': ['uint64'],
           '*boundaries-write': ['uint64'],
           '*boundaries-flush': ['uint64'] } }

635 636 637 638 639 640 641 642
##
# @BlockInfo:
#
# Block device information.  This structure describes a virtual device and
# the backing device associated with it.
#
# @device: The device name associated with the virtual device.
#
643 644 645
# @qdev: The qdev ID, or if no ID is assigned, the QOM path of the block
#        device. (since 2.10)
#
646 647 648 649 650 651 652 653
# @type: This field is returned only for compatibility reasons, it should
#        not be used (always returns 'unknown')
#
# @removable: True if the device supports removable media.
#
# @locked: True if the guest has locked this device from having its media
#          removed
#
654
# @tray_open: True if the device's tray is open
655
#             (only present if it has a tray)
656
#
657
# @dirty-bitmaps: dirty bitmaps information (only present if the
658 659
#                 driver has one or more dirty bitmaps) (Since 2.0)
#
660
# @io-status: @BlockDeviceIoStatus. Only present if the device
661
#             supports it and the VM is configured to stop on errors
662 663
#             (supported device models: virtio-blk, IDE, SCSI except
#             scsi-generic)
664
#
665
# @inserted: @BlockDeviceInfo describing the device if media is
666 667 668 669
#            present
#
# Since:  0.14.0
##
670
{ 'struct': 'BlockInfo',
671
  'data': {'device': 'str', '*qdev': 'str', 'type': 'str', 'removable': 'bool',
672 673 674 675
           'locked': 'bool', '*inserted': 'BlockDeviceInfo',
           '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus',
           '*dirty-bitmaps': ['BlockDirtyInfo'] } }

S
Stefan Hajnoczi 已提交
676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
##
# @BlockMeasureInfo:
#
# Image file size calculation information.  This structure describes the size
# requirements for creating a new image file.
#
# The size requirements depend on the new image file format.  File size always
# equals virtual disk size for the 'raw' format, even for sparse POSIX files.
# Compact formats such as 'qcow2' represent unallocated and zero regions
# efficiently so file size may be smaller than virtual disk size.
#
# The values are upper bounds that are guaranteed to fit the new image file.
# Subsequent modification, such as internal snapshot or bitmap creation, may
# require additional space and is not covered here.
#
# @required: Size required for a new image file, in bytes.
#
# @fully-allocated: Image file size, in bytes, once data has been written
#                   to all sectors.
#
# Since: 2.10
##
{ 'struct': 'BlockMeasureInfo',
  'data': {'required': 'int', 'fully-allocated': 'int'} }

701 702 703 704 705
##
# @query-block:
#
# Get a list of BlockInfo for all virtual block devices.
#
706 707
# Returns: a list of @BlockInfo describing each virtual block device. Filter
# nodes that were created implicitly are skipped over.
708 709
#
# Since: 0.14.0
710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766
#
# Example:
#
# -> { "execute": "query-block" }
# <- {
#       "return":[
#          {
#             "io-status": "ok",
#             "device":"ide0-hd0",
#             "locked":false,
#             "removable":false,
#             "inserted":{
#                "ro":false,
#                "drv":"qcow2",
#                "encrypted":false,
#                "file":"disks/test.qcow2",
#                "backing_file_depth":1,
#                "bps":1000000,
#                "bps_rd":0,
#                "bps_wr":0,
#                "iops":1000000,
#                "iops_rd":0,
#                "iops_wr":0,
#                "bps_max": 8000000,
#                "bps_rd_max": 0,
#                "bps_wr_max": 0,
#                "iops_max": 0,
#                "iops_rd_max": 0,
#                "iops_wr_max": 0,
#                "iops_size": 0,
#                "detect_zeroes": "on",
#                "write_threshold": 0,
#                "image":{
#                   "filename":"disks/test.qcow2",
#                   "format":"qcow2",
#                   "virtual-size":2048000,
#                   "backing_file":"base.qcow2",
#                   "full-backing-filename":"disks/base.qcow2",
#                   "backing-filename-format":"qcow2",
#                   "snapshots":[
#                      {
#                         "id": "1",
#                         "name": "snapshot1",
#                         "vm-state-size": 0,
#                         "date-sec": 10000200,
#                         "date-nsec": 12,
#                         "vm-clock-sec": 206,
#                         "vm-clock-nsec": 30
#                      }
#                   ],
#                   "backing-image":{
#                       "filename":"disks/base.qcow2",
#                       "format":"qcow2",
#                       "virtual-size":2048000
#                   }
#                }
#             },
767
#             "qdev": "ide_disk",
768 769 770 771 772 773 774
#             "type":"unknown"
#          },
#          {
#             "io-status": "ok",
#             "device":"ide1-cd0",
#             "locked":false,
#             "removable":true,
775 776
#             "qdev": "/machine/unattached/device[23]",
#             "tray_open": false,
777 778 779 780 781 782
#             "type":"unknown"
#          },
#          {
#             "device":"floppy0",
#             "locked":false,
#             "removable":true,
783
#             "qdev": "/machine/unattached/device[20]",
784 785 786 787 788 789 790 791 792 793 794
#             "type":"unknown"
#          },
#          {
#             "device":"sd0",
#             "locked":false,
#             "removable":true,
#             "type":"unknown"
#          }
#       ]
#    }
#
795 796 797
##
{ 'command': 'query-block', 'returns': ['BlockInfo'] }

798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833

##
# @BlockDeviceTimedStats:
#
# Statistics of a block device during a given interval of time.
#
# @interval_length: Interval used for calculating the statistics,
#                   in seconds.
#
# @min_rd_latency_ns: Minimum latency of read operations in the
#                     defined interval, in nanoseconds.
#
# @min_wr_latency_ns: Minimum latency of write operations in the
#                     defined interval, in nanoseconds.
#
# @min_flush_latency_ns: Minimum latency of flush operations in the
#                        defined interval, in nanoseconds.
#
# @max_rd_latency_ns: Maximum latency of read operations in the
#                     defined interval, in nanoseconds.
#
# @max_wr_latency_ns: Maximum latency of write operations in the
#                     defined interval, in nanoseconds.
#
# @max_flush_latency_ns: Maximum latency of flush operations in the
#                        defined interval, in nanoseconds.
#
# @avg_rd_latency_ns: Average latency of read operations in the
#                     defined interval, in nanoseconds.
#
# @avg_wr_latency_ns: Average latency of write operations in the
#                     defined interval, in nanoseconds.
#
# @avg_flush_latency_ns: Average latency of flush operations in the
#                        defined interval, in nanoseconds.
#
834 835 836 837 838 839
# @avg_rd_queue_depth: Average number of pending read operations
#                      in the defined interval.
#
# @avg_wr_queue_depth: Average number of pending write operations
#                      in the defined interval.
#
840 841 842 843 844 845 846
# Since: 2.5
##
{ 'struct': 'BlockDeviceTimedStats',
  'data': { 'interval_length': 'int', 'min_rd_latency_ns': 'int',
            'max_rd_latency_ns': 'int', 'avg_rd_latency_ns': 'int',
            'min_wr_latency_ns': 'int', 'max_wr_latency_ns': 'int',
            'avg_wr_latency_ns': 'int', 'min_flush_latency_ns': 'int',
847 848
            'max_flush_latency_ns': 'int', 'avg_flush_latency_ns': 'int',
            'avg_rd_queue_depth': 'number', 'avg_wr_queue_depth': 'number' } }
849

850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
##
# @BlockDeviceStats:
#
# Statistics of a virtual block device or a block backing device.
#
# @rd_bytes:      The number of bytes read by the device.
#
# @wr_bytes:      The number of bytes written by the device.
#
# @rd_operations: The number of read operations performed by the device.
#
# @wr_operations: The number of write operations performed by the device.
#
# @flush_operations: The number of cache flush operations performed by the
#                    device (since 0.15.0)
#
# @flush_total_time_ns: Total time spend on cache flushes in nano-seconds
#                       (since 0.15.0).
#
# @wr_total_time_ns: Total time spend on writes in nano-seconds (since 0.15.0).
#
# @rd_total_time_ns: Total_time_spend on reads in nano-seconds (since 0.15.0).
#
# @wr_highest_offset: The offset after the greatest byte written to the
#                     device.  The intended use of this information is for
#                     growable sparse files (like qcow2) that are used on top
#                     of a physical device.
#
878 879 880 881 882 883
# @rd_merged: Number of read requests that have been merged into another
#             request (Since 2.3).
#
# @wr_merged: Number of write requests that have been merged into another
#             request (Since 2.3).
#
884
# @idle_time_ns: Time since the last I/O operation, in
885 886 887
#                nanoseconds. If the field is absent it means that
#                there haven't been any operations yet (Since 2.5).
#
888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905
# @failed_rd_operations: The number of failed read operations
#                        performed by the device (Since 2.5)
#
# @failed_wr_operations: The number of failed write operations
#                        performed by the device (Since 2.5)
#
# @failed_flush_operations: The number of failed flush operations
#                           performed by the device (Since 2.5)
#
# @invalid_rd_operations: The number of invalid read operations
#                          performed by the device (Since 2.5)
#
# @invalid_wr_operations: The number of invalid write operations
#                         performed by the device (Since 2.5)
#
# @invalid_flush_operations: The number of invalid flush operations
#                            performed by the device (Since 2.5)
#
906 907 908 909 910 911
# @account_invalid: Whether invalid operations are included in the
#                   last access statistics (Since 2.5)
#
# @account_failed: Whether failed operations are included in the
#                  latency and last access statistics (Since 2.5)
#
912 913 914
# @timed_stats: Statistics specific to the set of previously defined
#               intervals of time (Since 2.5)
#
915
# @rd_latency_histogram: @BlockLatencyHistogramInfo. (Since 4.0)
916
#
917
# @wr_latency_histogram: @BlockLatencyHistogramInfo. (Since 4.0)
918
#
919
# @flush_latency_histogram: @BlockLatencyHistogramInfo. (Since 4.0)
920
#
921 922
# Since: 0.14.0
##
923
{ 'struct': 'BlockDeviceStats',
924 925 926
  'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'rd_operations': 'int',
           'wr_operations': 'int', 'flush_operations': 'int',
           'flush_total_time_ns': 'int', 'wr_total_time_ns': 'int',
927
           'rd_total_time_ns': 'int', 'wr_highest_offset': 'int',
928 929 930
           'rd_merged': 'int', 'wr_merged': 'int', '*idle_time_ns': 'int',
           'failed_rd_operations': 'int', 'failed_wr_operations': 'int',
           'failed_flush_operations': 'int', 'invalid_rd_operations': 'int',
931
           'invalid_wr_operations': 'int', 'invalid_flush_operations': 'int',
932
           'account_invalid': 'bool', 'account_failed': 'bool',
933
           'timed_stats': ['BlockDeviceTimedStats'],
934 935 936
           '*rd_latency_histogram': 'BlockLatencyHistogramInfo',
           '*wr_latency_histogram': 'BlockLatencyHistogramInfo',
           '*flush_latency_histogram': 'BlockLatencyHistogramInfo' } }
937 938 939 940 941 942

##
# @BlockStats:
#
# Statistics of a virtual block device or a block backing device.
#
943
# @device: If the stats are for a virtual block device, the name
944 945
#          corresponding to the virtual block device.
#
946
# @node-name: The node name of the device. (Since 2.3)
947
#
948 949 950
# @qdev: The qdev ID, or if no ID is assigned, the QOM path of the block
#        device. (since 3.0)
#
951 952
# @stats:  A @BlockDeviceStats for the device.
#
953
# @parent: This describes the file block device if it has one.
954 955 956
#          Contains recursively the statistics of the underlying
#          protocol (e.g. the host file for a qcow2 image). If there is
#          no underlying protocol, this field is omitted
957
#
958
# @backing: This describes the backing block device if it has one.
959 960 961 962
#           (Since 2.0)
#
# Since: 0.14.0
##
963
{ 'struct': 'BlockStats',
964
  'data': {'*device': 'str', '*qdev': 'str', '*node-name': 'str',
965
           'stats': 'BlockDeviceStats',
966 967 968 969 970 971 972 973
           '*parent': 'BlockStats',
           '*backing': 'BlockStats'} }

##
# @query-blockstats:
#
# Query the @BlockStats for all virtual block devices.
#
974
# @query-nodes: If true, the command will query all the block nodes
975 976 977 978
#               that have a node name, in a list which will include "parent"
#               information, but not "backing".
#               If false or omitted, the behavior is as before - query all the
#               device backends, recursively including their "parent" and
979 980
#               "backing". Filter nodes that were created implicitly are
#               skipped over in this mode. (Since 2.3)
981
#
982 983 984
# Returns: A list of @BlockStats for each virtual block devices.
#
# Since: 0.14.0
985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
#
# Example:
#
# -> { "execute": "query-blockstats" }
# <- {
#       "return":[
#          {
#             "device":"ide0-hd0",
#             "parent":{
#                "stats":{
#                   "wr_highest_offset":3686448128,
#                   "wr_bytes":9786368,
#                   "wr_operations":751,
#                   "rd_bytes":122567168,
#                   "rd_operations":36772
#                   "wr_total_times_ns":313253456
#                   "rd_total_times_ns":3465673657
#                   "flush_total_times_ns":49653
#                   "flush_operations":61,
#                   "rd_merged":0,
#                   "wr_merged":0,
#                   "idle_time_ns":2953431879,
#                   "account_invalid":true,
#                   "account_failed":false
#                }
#             },
#             "stats":{
#                "wr_highest_offset":2821110784,
#                "wr_bytes":9786368,
#                "wr_operations":692,
#                "rd_bytes":122739200,
#                "rd_operations":36604
#                "flush_operations":51,
#                "wr_total_times_ns":313253456
#                "rd_total_times_ns":3465673657
#                "flush_total_times_ns":49653,
#                "rd_merged":0,
#                "wr_merged":0,
#                "idle_time_ns":2953431879,
#                "account_invalid":true,
#                "account_failed":false
1026 1027
#             },
#             "qdev": "/machine/unattached/device[23]"
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
#          },
#          {
#             "device":"ide1-cd0",
#             "stats":{
#                "wr_highest_offset":0,
#                "wr_bytes":0,
#                "wr_operations":0,
#                "rd_bytes":0,
#                "rd_operations":0
#                "flush_operations":0,
#                "wr_total_times_ns":0
#                "rd_total_times_ns":0
#                "flush_total_times_ns":0,
#                "rd_merged":0,
#                "wr_merged":0,
#                "account_invalid":false,
#                "account_failed":false
1045 1046
#             },
#             "qdev": "/machine/unattached/device[24]"
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
#          },
#          {
#             "device":"floppy0",
#             "stats":{
#                "wr_highest_offset":0,
#                "wr_bytes":0,
#                "wr_operations":0,
#                "rd_bytes":0,
#                "rd_operations":0
#                "flush_operations":0,
#                "wr_total_times_ns":0
#                "rd_total_times_ns":0
#                "flush_total_times_ns":0,
#                "rd_merged":0,
#                "wr_merged":0,
#                "account_invalid":false,
#                "account_failed":false
1064 1065
#             },
#             "qdev": "/machine/unattached/device[16]"
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
#          },
#          {
#             "device":"sd0",
#             "stats":{
#                "wr_highest_offset":0,
#                "wr_bytes":0,
#                "wr_operations":0,
#                "rd_bytes":0,
#                "rd_operations":0
#                "flush_operations":0,
#                "wr_total_times_ns":0
#                "rd_total_times_ns":0
#                "flush_total_times_ns":0,
#                "rd_merged":0,
#                "wr_merged":0,
#                "account_invalid":false,
#                "account_failed":false
#             }
#          }
#       ]
#    }
#
1088
##
1089 1090 1091
{ 'command': 'query-blockstats',
  'data': { '*query-nodes': 'bool' },
  'returns': ['BlockStats'] }
1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110

##
# @BlockdevOnError:
#
# An enumeration of possible behaviors for errors on I/O operations.
# The exact meaning depends on whether the I/O was initiated by a guest
# or by a block job
#
# @report: for guest operations, report the error to the guest;
#          for jobs, cancel the job
#
# @ignore: ignore the error, only report a QMP event (BLOCK_IO_ERROR
#          or BLOCK_JOB_ERROR)
#
# @enospc: same as @stop on ENOSPC, same as @report otherwise.
#
# @stop: for guest operations, stop the virtual machine;
#        for jobs, pause the job
#
1111 1112
# @auto: inherit the error handling policy of the backend (since: 2.7)
#
1113 1114 1115
# Since: 1.3
##
{ 'enum': 'BlockdevOnError',
1116
  'data': ['report', 'ignore', 'enospc', 'stop', 'auto'] }
1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129

##
# @MirrorSyncMode:
#
# An enumeration of possible behaviors for the initial synchronization
# phase of storage mirroring.
#
# @top: copies data in the topmost image to the destination
#
# @full: copies data from all images to the destination
#
# @none: only copy data written from now on
#
1130
# @incremental: only copy data described by the dirty bitmap. Since: 2.4
1131
#
1132 1133 1134
# Since: 1.3
##
{ 'enum': 'MirrorSyncMode',
1135
  'data': ['top', 'full', 'none', 'incremental'] }
1136

M
Max Reitz 已提交
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
##
# @MirrorCopyMode:
#
# An enumeration whose values tell the mirror block job when to
# trigger writes to the target.
#
# @background: copy data in background only.
#
# @write-blocking: when data is written to the source, write it
#                  (synchronously) to the target as well.  In
#                  addition, data is copied in background just like in
#                  @background mode.
#
# Since: 3.0
##
{ 'enum': 'MirrorCopyMode',
  'data': ['background', 'write-blocking'] }

1155 1156 1157 1158 1159 1160 1161
##
# @BlockJobInfo:
#
# Information about a long-running block device operation.
#
# @type: the job type ('stream' for image streaming)
#
1162 1163
# @device: The job identifier. Originally the device name but other
#          values are allowed since QEMU 2.7
1164
#
1165 1166 1167 1168 1169 1170
# @len: Estimated @offset value at the completion of the job. This value can
#       arbitrarily change while the job is running, in both directions.
#
# @offset: Progress made until now. The unit is arbitrary and the value can
#          only meaningfully be used for the ratio of @offset to @len. The
#          value is monotonically increasing.
1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
#
# @busy: false if the job is known to be in a quiescent state, with
#        no pending I/O.  Since 1.3.
#
# @paused: whether the job is paused or, if @busy is true, will
#          pause itself as soon as possible.  Since 1.3.
#
# @speed: the rate limit, bytes per second
#
# @io-status: the status of the job (since 1.3)
#
M
Max Reitz 已提交
1182 1183
# @ready: true if the job may be completed (since 2.2)
#
J
John Snow 已提交
1184 1185
# @status: Current job state/status (since 2.12)
#
J
John Snow 已提交
1186 1187 1188 1189 1190 1191
# @auto-finalize: Job will finalize itself when PENDING, moving to
#                 the CONCLUDED state. (since 2.12)
#
# @auto-dismiss: Job will dismiss itself when CONCLUDED, moving to the NULL
#                state and disappearing from the query list. (since 2.12)
#
1192 1193 1194
# @error: Error information if the job did not complete successfully.
#         Not set if the job completed successfully. (since 2.12.1)
#
1195 1196
# Since: 1.1
##
1197
{ 'struct': 'BlockJobInfo',
1198 1199
  'data': {'type': 'str', 'device': 'str', 'len': 'int',
           'offset': 'int', 'busy': 'bool', 'paused': 'bool', 'speed': 'int',
J
John Snow 已提交
1200
           'io-status': 'BlockDeviceIoStatus', 'ready': 'bool',
K
Kevin Wolf 已提交
1201
           'status': 'JobStatus',
1202 1203
           'auto-finalize': 'bool', 'auto-dismiss': 'bool',
           '*error': 'str' } }
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221

##
# @query-block-jobs:
#
# Return information about long-running block device operations.
#
# Returns: a list of @BlockJobInfo for each active block job
#
# Since: 1.1
##
{ 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }

##
# @block_passwd:
#
# This command sets the password of a block device that has not been open
# with a password and requires one.
#
1222
# This command is now obsolete and will always return an error since 2.10
1223
#
1224
##
1225 1226 1227 1228
{ 'command': 'block_passwd',
  'data': { '*device': 'str',
            '*node-name': 'str',
            'password': 'str' } }
1229 1230

##
1231
# @block_resize:
1232 1233 1234 1235 1236
#
# Resize a block image while a guest is running.
#
# Either @device or @node-name must be set but not both.
#
1237
# @device: the name of the device to get the image resized
1238
#
1239
# @node-name: graph node name to get the image resized (Since 2.0)
1240 1241 1242 1243 1244 1245 1246
#
# @size:  new image size in bytes
#
# Returns: nothing on success
#          If @device is not a valid block device, DeviceNotFound
#
# Since: 0.14.0
1247 1248 1249 1250 1251 1252 1253
#
# Example:
#
# -> { "execute": "block_resize",
#      "arguments": { "device": "scratch", "size": 1073741824 } }
# <- { "return": {} }
#
1254
##
1255 1256 1257 1258
{ 'command': 'block_resize',
  'data': { '*device': 'str',
            '*node-name': 'str',
            'size': 'int' } }
1259 1260

##
1261
# @NewImageMode:
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277
#
# An enumeration that tells QEMU how to set the backing file path in
# a new image file.
#
# @existing: QEMU should look for an existing image file.
#
# @absolute-paths: QEMU should create a new image with absolute paths
# for the backing file. If there is no backing file available, the new
# image will not be backed either.
#
# Since: 1.1
##
{ 'enum': 'NewImageMode',
  'data': [ 'existing', 'absolute-paths' ] }

##
1278
# @BlockdevSnapshotSync:
1279 1280 1281
#
# Either @device or @node-name must be set but not both.
#
1282
# @device: the name of the device to take a snapshot of.
1283
#
1284
# @node-name: graph node name to generate the snapshot from (Since 2.0)
1285
#
1286 1287 1288
# @snapshot-file: the target of the new overlay image. If the file
# exists, or if it is a device, the overlay will be created in the
# existing file/device. Otherwise, a new file will be created.
1289
#
1290
# @snapshot-node-name: the graph node name of the new image (Since 2.0)
1291
#
1292
# @format: the format of the overlay image, default is 'qcow2'.
1293
#
1294
# @mode: whether and how QEMU should create a new image, default is
1295 1296
#        'absolute-paths'.
##
1297
{ 'struct': 'BlockdevSnapshotSync',
1298 1299 1300 1301
  'data': { '*device': 'str', '*node-name': 'str',
            'snapshot-file': 'str', '*snapshot-node-name': 'str',
            '*format': 'str', '*mode': 'NewImageMode' } }

1302
##
1303
# @BlockdevSnapshot:
1304
#
1305
# @node: device or node name that will have a snapshot taken.
1306 1307
#
# @overlay: reference to the existing block device that will become
1308
#           the overlay of @node, as part of taking the snapshot.
1309
#           It must not have a current backing file (this can be
M
Max Reitz 已提交
1310
#           achieved by passing "backing": null to blockdev-add).
1311
#
1312
# Since: 2.5
1313 1314 1315 1316
##
{ 'struct': 'BlockdevSnapshot',
  'data': { 'node': 'str', 'overlay': 'str' } }

1317
##
1318
# @DriveBackup:
1319
#
1320
# @job-id: identifier for the newly-created block job. If
1321 1322
#          omitted, the device name will be used. (Since 2.7)
#
1323
# @device: the device name or node-name of a root node which should be copied.
1324 1325 1326 1327 1328
#
# @target: the target of the new image. If the file exists, or if it
#          is a device, the existing file/device will be used as the new
#          destination.  If it does not exist, a new file will be created.
#
1329
# @format: the format of the new destination, default is to
1330 1331 1332
#          probe if @mode is 'existing', else the format of the source
#
# @sync: what parts of the disk image should be copied to the destination
1333 1334
#        (all the disk, only the sectors allocated in the topmost image, from a
#        dirty bitmap, or only new I/O).
1335
#
1336
# @mode: whether and how QEMU should create a new image, default is
1337 1338
#        'absolute-paths'.
#
1339
# @speed: the maximum speed, in bytes per second
1340
#
1341
# @bitmap: the name of dirty bitmap if sync is "incremental".
1342
#          Must be present if sync is "incremental", must NOT be present
1343 1344
#          otherwise. (Since 2.4)
#
1345
# @compress: true to compress data, if the target format supports it.
1346
#            (default: false) (since 2.8)
1347
#
1348
# @on-source-error: the action to take on an error on the source,
1349 1350 1351
#                   default 'report'.  'stop' and 'enospc' can only be used
#                   if the block device supports io-status (see BlockInfo).
#
1352
# @on-target-error: the action to take on an error on the target,
1353 1354 1355
#                   default 'report' (no limitations, since this applies to
#                   a different block device than @device).
#
J
John Snow 已提交
1356
# @auto-finalize: When false, this job will wait in a PENDING state after it has
1357 1358 1359 1360
#                 finished its work, waiting for @block-job-finalize before
#                 making any block graph changes.
#                 When true, this job will automatically
#                 perform its abort or commit actions.
J
John Snow 已提交
1361 1362 1363
#                 Defaults to true. (Since 2.12)
#
# @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1364
#                has completely ceased all work, and awaits @block-job-dismiss.
J
John Snow 已提交
1365 1366 1367 1368
#                When true, this job will automatically disappear from the query
#                list without user intervention.
#                Defaults to true. (Since 2.12)
#
1369 1370 1371
# Note: @on-source-error and @on-target-error only affect background
# I/O.  If an error occurs during a guest write request, the device's
# rerror/werror actions will be used.
1372 1373 1374
#
# Since: 1.6
##
1375
{ 'struct': 'DriveBackup',
1376
  'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
J
John Snow 已提交
1377 1378 1379
            '*format': 'str', 'sync': 'MirrorSyncMode',
            '*mode': 'NewImageMode', '*speed': 'int',
            '*bitmap': 'str', '*compress': 'bool',
1380
            '*on-source-error': 'BlockdevOnError',
J
John Snow 已提交
1381 1382
            '*on-target-error': 'BlockdevOnError',
            '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1383

F
Fam Zheng 已提交
1384
##
1385
# @BlockdevBackup:
F
Fam Zheng 已提交
1386
#
1387
# @job-id: identifier for the newly-created block job. If
1388 1389
#          omitted, the device name will be used. (Since 2.7)
#
1390
# @device: the device name or node-name of a root node which should be copied.
F
Fam Zheng 已提交
1391
#
1392
# @target: the device name or node-name of the backup target node.
F
Fam Zheng 已提交
1393 1394 1395 1396 1397
#
# @sync: what parts of the disk image should be copied to the destination
#        (all the disk, only the sectors allocated in the topmost image, or
#        only new I/O).
#
1398
# @speed: the maximum speed, in bytes per second. The default is 0,
F
Fam Zheng 已提交
1399 1400
#         for unlimited.
#
J
John Snow 已提交
1401 1402 1403 1404
# @bitmap: the name of dirty bitmap if sync is "incremental".
#          Must be present if sync is "incremental", must NOT be present
#          otherwise. (Since 3.1)
#
1405
# @compress: true to compress data, if the target format supports it.
1406
#            (default: false) (since 2.8)
1407
#
1408
# @on-source-error: the action to take on an error on the source,
F
Fam Zheng 已提交
1409 1410 1411
#                   default 'report'.  'stop' and 'enospc' can only be used
#                   if the block device supports io-status (see BlockInfo).
#
1412
# @on-target-error: the action to take on an error on the target,
F
Fam Zheng 已提交
1413 1414 1415
#                   default 'report' (no limitations, since this applies to
#                   a different block device than @device).
#
J
John Snow 已提交
1416
# @auto-finalize: When false, this job will wait in a PENDING state after it has
1417 1418 1419 1420
#                 finished its work, waiting for @block-job-finalize before
#                 making any block graph changes.
#                 When true, this job will automatically
#                 perform its abort or commit actions.
J
John Snow 已提交
1421 1422 1423
#                 Defaults to true. (Since 2.12)
#
# @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
1424
#                has completely ceased all work, and awaits @block-job-dismiss.
J
John Snow 已提交
1425 1426 1427 1428
#                When true, this job will automatically disappear from the query
#                list without user intervention.
#                Defaults to true. (Since 2.12)
#
1429 1430 1431
# Note: @on-source-error and @on-target-error only affect background
# I/O.  If an error occurs during a guest write request, the device's
# rerror/werror actions will be used.
F
Fam Zheng 已提交
1432 1433 1434
#
# Since: 2.3
##
1435
{ 'struct': 'BlockdevBackup',
1436
  'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
J
John Snow 已提交
1437 1438
            'sync': 'MirrorSyncMode', '*speed': 'int',
            '*bitmap': 'str', '*compress': 'bool',
F
Fam Zheng 已提交
1439
            '*on-source-error': 'BlockdevOnError',
J
John Snow 已提交
1440 1441
            '*on-target-error': 'BlockdevOnError',
            '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
F
Fam Zheng 已提交
1442

1443
##
1444
# @blockdev-snapshot-sync:
1445
#
1446
# Takes a synchronous snapshot of a block device.
1447
#
1448
# For the arguments, see the documentation of BlockdevSnapshotSync.
1449 1450 1451 1452
#
# Returns: nothing on success
#          If @device is not a valid block device, DeviceNotFound
#
1453
# Since: 0.14.0
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463
#
# Example:
#
# -> { "execute": "blockdev-snapshot-sync",
#      "arguments": { "device": "ide-hd0",
#                     "snapshot-file":
#                     "/some/place/my-image",
#                     "format": "qcow2" } }
# <- { "return": {} }
#
1464 1465
##
{ 'command': 'blockdev-snapshot-sync',
1466
  'data': 'BlockdevSnapshotSync' }
1467

1468 1469

##
1470
# @blockdev-snapshot:
1471
#
1472
# Takes a snapshot of a block device.
1473
#
1474
# Take a snapshot, by installing 'node' as the backing image of
1475 1476 1477 1478
# 'overlay'. Additionally, if 'node' is associated with a block
# device, the block device changes to using 'overlay' as its new active
# image.
#
1479 1480
# For the arguments, see the documentation of BlockdevSnapshot.
#
1481
# Since: 2.5
1482 1483 1484 1485
#
# Example:
#
# -> { "execute": "blockdev-add",
1486 1487 1488 1489
#      "arguments": { "driver": "qcow2",
#                     "node-name": "node1534",
#                     "file": { "driver": "file",
#                               "filename": "hd1.qcow2" },
M
Max Reitz 已提交
1490
#                     "backing": null } }
1491 1492 1493 1494 1495 1496 1497 1498
#
# <- { "return": {} }
#
# -> { "execute": "blockdev-snapshot",
#      "arguments": { "node": "ide-hd0",
#                     "overlay": "node1534" } }
# <- { "return": {} }
#
1499 1500 1501 1502
##
{ 'command': 'blockdev-snapshot',
  'data': 'BlockdevSnapshot' }

1503
##
1504
# @change-backing-file:
1505 1506 1507 1508 1509 1510 1511 1512 1513
#
# Change the backing file in the image file metadata.  This does not
# cause QEMU to reopen the image file to reparse the backing filename
# (it may, however, perform a reopen to change permissions from
# r/o -> r/w -> r/o, if needed). The new backing file string is written
# into the image file metadata, and the QEMU internal strings are
# updated.
#
# @image-node-name: The name of the block driver state node of the
1514 1515 1516
#                   image to modify. The "device" argument is used
#                   to verify "image-node-name" is in the chain
#                   described by "device".
1517
#
1518 1519
# @device:          The device name or node-name of the root node that owns
#                   image-node-name.
1520 1521 1522 1523 1524 1525
#
# @backing-file:    The string to write as the backing file.  This
#                   string is not validated, so care should be taken
#                   when specifying the string or the image chain may
#                   not be able to be reopened again.
#
1526 1527 1528 1529
# Returns: Nothing on success
#
#          If "device" does not exist or cannot be determined, DeviceNotFound
#
1530 1531 1532 1533 1534 1535
# Since: 2.1
##
{ 'command': 'change-backing-file',
  'data': { 'device': 'str', 'image-node-name': 'str',
            'backing-file': 'str' } }

1536
##
1537
# @block-commit:
1538 1539 1540 1541
#
# Live commit of data from overlay image nodes into backing nodes - i.e.,
# writes data between 'top' and 'base' into 'base'.
#
1542
# @job-id: identifier for the newly-created block job. If
1543 1544
#          omitted, the device name will be used. (Since 2.7)
#
1545
# @device:  the device name or node-name of a root node
1546
#
1547 1548 1549
# @base-node: The node name of the backing image to write data into.
#             If not specified, this is the deepest backing image.
#             (since: 3.1)
1550
#
1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563
# @base: Same as @base-node, except that it is a file name rather than a node
#        name. This must be the exact filename string that was used to open the
#        node; other strings, even if addressing the same file, are not
#        accepted (deprecated, use @base-node instead)
#
# @top-node: The node name of the backing image within the image chain
#            which contains the topmost data to be committed down. If
#            not specified, this is the active layer. (since: 3.1)
#
# @top: Same as @top-node, except that it is a file name rather than a node
#       name. This must be the exact filename string that was used to open the
#       node; other strings, even if addressing the same file, are not
#       accepted (deprecated, use @base-node instead)
1564
#
1565
# @backing-file:  The backing file string to write into the overlay
1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581
#                           image of 'top'.  If 'top' is the active layer,
#                           specifying a backing file string is an error. This
#                           filename is not validated.
#
#                           If a pathname string is such that it cannot be
#                           resolved by QEMU, that means that subsequent QMP or
#                           HMP commands must use node-names for the image in
#                           question, as filename lookup methods will fail.
#
#                           If not specified, QEMU will automatically determine
#                           the backing file string to use, or error out if
#                           there is no obvious choice. Care should be taken
#                           when specifying the string, to specify a valid
#                           filename or protocol.
#                           (Since 2.1)
#
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593
#                    If top == base, that is an error.
#                    If top == active, the job will not be completed by itself,
#                    user needs to complete the job with the block-job-complete
#                    command after getting the ready event. (Since 2.0)
#
#                    If the base image is smaller than top, then the base image
#                    will be resized to be the same size as top.  If top is
#                    smaller than the base image, the base will not be
#                    truncated.  If you want the base image size to match the
#                    size of the smaller top, you can safely truncate it
#                    yourself once the commit operation successfully completes.
#
1594
# @speed:  the maximum speed, in bytes per second
1595
#
1596
# @filter-node-name: the node name that should be assigned to the
1597 1598 1599 1600
#                    filter driver that the commit job inserts into the graph
#                    above @top. If this option is not given, a node name is
#                    autogenerated. (Since: 2.9)
#
1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613
# @auto-finalize: When false, this job will wait in a PENDING state after it has
#                 finished its work, waiting for @block-job-finalize before
#                 making any block graph changes.
#                 When true, this job will automatically
#                 perform its abort or commit actions.
#                 Defaults to true. (Since 3.1)
#
# @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
#                has completely ceased all work, and awaits @block-job-dismiss.
#                When true, this job will automatically disappear from the query
#                list without user intervention.
#                Defaults to true. (Since 3.1)
#
1614 1615
# Returns: Nothing on success
#          If @device does not exist, DeviceNotFound
1616
#          Any other error returns a GenericError.
1617 1618 1619
#
# Since: 1.3
#
1620 1621 1622 1623 1624 1625 1626
# Example:
#
# -> { "execute": "block-commit",
#      "arguments": { "device": "virtio0",
#                     "top": "/tmp/snap1.qcow2" } }
# <- { "return": {} }
#
1627 1628
##
{ 'command': 'block-commit',
1629 1630
  'data': { '*job-id': 'str', 'device': 'str', '*base-node': 'str',
            '*base': 'str', '*top-node': 'str', '*top': 'str',
1631
            '*backing-file': 'str', '*speed': 'int',
1632 1633
            '*filter-node-name': 'str',
            '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1634 1635

##
1636
# @drive-backup:
1637 1638 1639 1640 1641 1642 1643 1644
#
# Start a point-in-time copy of a block device to a new destination.  The
# status of ongoing drive-backup operations can be checked with
# query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
# The operation can be stopped before it has completed using the
# block-job-cancel command.
#
# Returns: nothing on success
1645
#          If @device is not a valid block device, GenericError
1646
#
1647
# Since: 1.6
1648 1649 1650 1651 1652 1653 1654 1655 1656
#
# Example:
#
# -> { "execute": "drive-backup",
#      "arguments": { "device": "drive0",
#                     "sync": "full",
#                     "target": "backup.img" } }
# <- { "return": {} }
#
1657
##
P
Pavel Butsykin 已提交
1658 1659
{ 'command': 'drive-backup', 'boxed': true,
  'data': 'DriveBackup' }
1660

F
Fam Zheng 已提交
1661
##
1662
# @blockdev-backup:
F
Fam Zheng 已提交
1663 1664 1665 1666 1667 1668 1669
#
# Start a point-in-time copy of a block device to a new destination.  The
# status of ongoing blockdev-backup operations can be checked with
# query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
# The operation can be stopped before it has completed using the
# block-job-cancel command.
#
P
Pavel Butsykin 已提交
1670 1671 1672
# Returns: nothing on success
#          If @device is not a valid block device, DeviceNotFound
#
1673
# Since: 2.3
1674 1675 1676 1677 1678 1679 1680 1681
#
# Example:
# -> { "execute": "blockdev-backup",
#      "arguments": { "device": "src-id",
#                     "sync": "full",
#                     "target": "tgt-id" } }
# <- { "return": {} }
#
F
Fam Zheng 已提交
1682
##
P
Pavel Butsykin 已提交
1683 1684
{ 'command': 'blockdev-backup', 'boxed': true,
  'data': 'BlockdevBackup' }
F
Fam Zheng 已提交
1685 1686


1687
##
1688
# @query-named-block-nodes:
1689 1690 1691 1692 1693
#
# Get the named block driver list
#
# Returns: the list of BlockDeviceInfo
#
1694
# Since: 2.0
1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743
#
# Example:
#
# -> { "execute": "query-named-block-nodes" }
# <- { "return": [ { "ro":false,
#                    "drv":"qcow2",
#                    "encrypted":false,
#                    "file":"disks/test.qcow2",
#                    "node-name": "my-node",
#                    "backing_file_depth":1,
#                    "bps":1000000,
#                    "bps_rd":0,
#                    "bps_wr":0,
#                    "iops":1000000,
#                    "iops_rd":0,
#                    "iops_wr":0,
#                    "bps_max": 8000000,
#                    "bps_rd_max": 0,
#                    "bps_wr_max": 0,
#                    "iops_max": 0,
#                    "iops_rd_max": 0,
#                    "iops_wr_max": 0,
#                    "iops_size": 0,
#                    "write_threshold": 0,
#                    "image":{
#                       "filename":"disks/test.qcow2",
#                       "format":"qcow2",
#                       "virtual-size":2048000,
#                       "backing_file":"base.qcow2",
#                       "full-backing-filename":"disks/base.qcow2",
#                       "backing-filename-format":"qcow2",
#                       "snapshots":[
#                          {
#                             "id": "1",
#                             "name": "snapshot1",
#                             "vm-state-size": 0,
#                             "date-sec": 10000200,
#                             "date-nsec": 12,
#                             "vm-clock-sec": 206,
#                             "vm-clock-nsec": 30
#                          }
#                       ],
#                       "backing-image":{
#                           "filename":"disks/base.qcow2",
#                           "format":"qcow2",
#                           "virtual-size":2048000
#                       }
#                    } } ] }
#
1744 1745 1746
##
{ 'command': 'query-named-block-nodes', 'returns': [ 'BlockDeviceInfo' ] }

1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854
##
# @XDbgBlockGraphNodeType:
#
# @block-backend: corresponds to BlockBackend
#
# @block-job: corresonds to BlockJob
#
# @block-driver: corresponds to BlockDriverState
#
# Since: 4.0
##
{ 'enum': 'XDbgBlockGraphNodeType',
  'data': [ 'block-backend', 'block-job', 'block-driver' ] }

##
# @XDbgBlockGraphNode:
#
# @id: Block graph node identifier. This @id is generated only for
#      x-debug-query-block-graph and does not relate to any other identifiers in
#      Qemu.
#
# @type: Type of graph node. Can be one of block-backend, block-job or
#        block-driver-state.
#
# @name: Human readable name of the node. Corresponds to node-name for
#        block-driver-state nodes; is not guaranteed to be unique in the whole
#        graph (with block-jobs and block-backends).
#
# Since: 4.0
##
{ 'struct': 'XDbgBlockGraphNode',
  'data': { 'id': 'uint64', 'type': 'XDbgBlockGraphNodeType', 'name': 'str' } }

##
# @BlockPermission:
#
# Enum of base block permissions.
#
# @consistent-read: A user that has the "permission" of consistent reads is
#                   guaranteed that their view of the contents of the block
#                   device is complete and self-consistent, representing the
#                   contents of a disk at a specific point.
#                   For most block devices (including their backing files) this
#                   is true, but the property cannot be maintained in a few
#                   situations like for intermediate nodes of a commit block
#                   job.
#
# @write: This permission is required to change the visible disk contents.
#
# @write-unchanged: This permission (which is weaker than BLK_PERM_WRITE) is
#                   both enough and required for writes to the block node when
#                   the caller promises that the visible disk content doesn't
#                   change.
#                   As the BLK_PERM_WRITE permission is strictly stronger,
#                   either is sufficient to perform an unchanging write.
#
# @resize: This permission is required to change the size of a block node.
#
# @graph-mod: This permission is required to change the node that this
#             BdrvChild points to.
#
# Since: 4.0
##
  { 'enum': 'BlockPermission',
    'data': [ 'consistent-read', 'write', 'write-unchanged', 'resize',
              'graph-mod' ] }
##
# @XDbgBlockGraphEdge:
#
# Block Graph edge description for x-debug-query-block-graph.
#
# @parent: parent id
#
# @child: child id
#
# @name: name of the relation (examples are 'file' and 'backing')
#
# @perm: granted permissions for the parent operating on the child
#
# @shared-perm: permissions that can still be granted to other users of the
#               child while it is still attached to this parent
#
# Since: 4.0
##
{ 'struct': 'XDbgBlockGraphEdge',
  'data': { 'parent': 'uint64', 'child': 'uint64',
            'name': 'str', 'perm': [ 'BlockPermission' ],
            'shared-perm': [ 'BlockPermission' ] } }

##
# @XDbgBlockGraph:
#
# Block Graph - list of nodes and list of edges.
#
# Since: 4.0
##
{ 'struct': 'XDbgBlockGraph',
  'data': { 'nodes': ['XDbgBlockGraphNode'], 'edges': ['XDbgBlockGraphEdge'] } }

##
# @x-debug-query-block-graph:
#
# Get the block graph.
#
# Since: 4.0
##
{ 'command': 'x-debug-query-block-graph', 'returns': 'XDbgBlockGraph' }

1855
##
1856
# @drive-mirror:
1857
#
1858 1859 1860 1861 1862 1863
# Start mirroring a block device's writes to a new destination. target
# specifies the target of the new image. If the file exists, or if it
# is a device, it will be used as the new destination for writes. If
# it does not exist, a new file will be created. format specifies the
# format of the mirror image, default is to probe if mode='existing',
# else the format of the source.
1864
#
E
Eric Blake 已提交
1865
# Returns: nothing on success
1866
#          If @device is not a valid block device, GenericError
E
Eric Blake 已提交
1867
#
1868
# Since: 1.3
1869 1870 1871 1872 1873 1874 1875 1876 1877 1878
#
# Example:
#
# -> { "execute": "drive-mirror",
#      "arguments": { "device": "ide-hd0",
#                     "target": "/some/place/my-image",
#                     "sync": "full",
#                     "format": "qcow2" } }
# <- { "return": {} }
#
E
Eric Blake 已提交
1879 1880 1881 1882 1883
##
{ 'command': 'drive-mirror', 'boxed': true,
  'data': 'DriveMirror' }

##
1884
# @DriveMirror:
E
Eric Blake 已提交
1885 1886 1887
#
# A set of parameters describing drive mirror setup.
#
1888
# @job-id: identifier for the newly-created block job. If
1889 1890
#          omitted, the device name will be used. (Since 2.7)
#
1891 1892
# @device:  the device name or node-name of a root node whose writes should be
#           mirrored.
1893 1894 1895 1896 1897
#
# @target: the target of the new image. If the file exists, or if it
#          is a device, the existing file/device will be used as the new
#          destination.  If it does not exist, a new file will be created.
#
1898
# @format: the format of the new destination, default is to
1899 1900
#          probe if @mode is 'existing', else the format of the source
#
1901
# @node-name: the new block driver state node name in the graph
1902 1903
#             (Since 2.1)
#
1904
# @replaces: with sync=full graph node name to be replaced by the new
1905 1906 1907
#            image when a whole image copy is done. This can be used to repair
#            broken Quorum files. (Since 2.1)
#
1908
# @mode: whether and how QEMU should create a new image, default is
1909 1910
#        'absolute-paths'.
#
1911
# @speed:  the maximum speed, in bytes per second
1912 1913 1914 1915 1916
#
# @sync: what parts of the disk image should be copied to the destination
#        (all the disk, only the sectors allocated in the topmost image, or
#        only new I/O).
#
1917
# @granularity: granularity of the dirty bitmap, default is 64K
1918 1919 1920 1921
#               if the image format doesn't have clusters, 4K if the clusters
#               are smaller than that, else the cluster size.  Must be a
#               power of 2 between 512 and 64M (since 1.4).
#
1922
# @buf-size: maximum amount of data in flight from source to
1923 1924
#            target (since 1.4).
#
1925
# @on-source-error: the action to take on an error on the source,
1926 1927 1928
#                   default 'report'.  'stop' and 'enospc' can only be used
#                   if the block device supports io-status (see BlockInfo).
#
1929
# @on-target-error: the action to take on an error on the target,
1930 1931
#                   default 'report' (no limitations, since this applies to
#                   a different block device than @device).
1932
# @unmap: Whether to try to unmap target sectors where source has
1933 1934 1935 1936
#         only zero. If true, and target unallocated sectors will read as zero,
#         target image sectors will be unmapped; otherwise, zeroes will be
#         written. Both will result in identical contents.
#         Default is true. (Since 2.4)
1937
#
1938 1939 1940
# @copy-mode: when to copy data to the destination; defaults to 'background'
#             (Since: 3.0)
#
1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952
# @auto-finalize: When false, this job will wait in a PENDING state after it has
#                 finished its work, waiting for @block-job-finalize before
#                 making any block graph changes.
#                 When true, this job will automatically
#                 perform its abort or commit actions.
#                 Defaults to true. (Since 3.1)
#
# @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
#                has completely ceased all work, and awaits @block-job-dismiss.
#                When true, this job will automatically disappear from the query
#                list without user intervention.
#                Defaults to true. (Since 3.1)
1953
# Since: 1.3
1954
##
E
Eric Blake 已提交
1955
{ 'struct': 'DriveMirror',
1956 1957
  'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
            '*format': 'str', '*node-name': 'str', '*replaces': 'str',
1958 1959 1960
            'sync': 'MirrorSyncMode', '*mode': 'NewImageMode',
            '*speed': 'int', '*granularity': 'uint32',
            '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
1961
            '*on-target-error': 'BlockdevOnError',
1962 1963
            '*unmap': 'bool', '*copy-mode': 'MirrorCopyMode',
            '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
1964

1965
##
1966
# @BlockDirtyBitmap:
1967 1968 1969 1970 1971
#
# @node: name of device/node which the bitmap is tracking
#
# @name: name of the dirty bitmap
#
1972
# Since: 2.4
1973
##
1974
{ 'struct': 'BlockDirtyBitmap',
1975 1976 1977
  'data': { 'node': 'str', 'name': 'str' } }

##
1978
# @BlockDirtyBitmapAdd:
1979 1980 1981 1982 1983
#
# @node: name of device/node which the bitmap is tracking
#
# @name: name of the dirty bitmap
#
1984
# @granularity: the bitmap granularity, default is 64k for
1985 1986
#               block-dirty-bitmap-add
#
1987 1988 1989 1990 1991
# @persistent: the bitmap is persistent, i.e. it will be saved to the
#              corresponding block device image file on its close. For now only
#              Qcow2 disks support persistent bitmaps. Default is false for
#              block-dirty-bitmap-add. (Since: 2.10)
#
1992 1993 1994
# @autoload: ignored and deprecated since 2.12.
#            Currently, all dirty tracking bitmaps are loaded from Qcow2 on
#            open.
1995
#
1996 1997 1998
# @disabled: the bitmap is created in the disabled state, which means that
#            it will not track drive changes. The bitmap may be enabled with
#            block-dirty-bitmap-enable. Default is false. (Since: 4.0)
1999
#
2000
# Since: 2.4
2001
##
2002
{ 'struct': 'BlockDirtyBitmapAdd',
2003
  'data': { 'node': 'str', 'name': 'str', '*granularity': 'uint32',
2004
            '*persistent': 'bool', '*autoload': 'bool', '*disabled': 'bool' } }
2005

2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018
##
# @BlockDirtyBitmapMergeSource:
#
# @local: name of the bitmap, attached to the same node as target bitmap.
#
# @external: bitmap with specified node
#
# Since: 4.1
##
{ 'alternate': 'BlockDirtyBitmapMergeSource',
  'data': { 'local': 'str',
            'external': 'BlockDirtyBitmap' } }

2019 2020 2021
##
# @BlockDirtyBitmapMerge:
#
2022
# @node: name of device/node which the @target bitmap is tracking
2023
#
J
John Snow 已提交
2024
# @target: name of the destination dirty bitmap
2025
#
2026 2027 2028
# @bitmaps: name(s) of the source dirty bitmap(s) at @node and/or fully
#           specifed BlockDirtyBitmap elements. The latter are supported
#           since 4.1.
2029
#
2030
# Since: 4.0
2031 2032
##
{ 'struct': 'BlockDirtyBitmapMerge',
2033 2034
  'data': { 'node': 'str', 'target': 'str',
            'bitmaps': ['BlockDirtyBitmapMergeSource'] } }
2035

2036
##
2037
# @block-dirty-bitmap-add:
2038
#
2039
# Create a dirty bitmap with a name on the node, and start tracking the writes.
2040 2041 2042 2043 2044
#
# Returns: nothing on success
#          If @node is not a valid block device or node, DeviceNotFound
#          If @name is already taken, GenericError with an explanation
#
2045
# Since: 2.4
2046 2047 2048 2049 2050 2051 2052
#
# Example:
#
# -> { "execute": "block-dirty-bitmap-add",
#      "arguments": { "node": "drive0", "name": "bitmap0" } }
# <- { "return": {} }
#
2053 2054 2055 2056 2057
##
{ 'command': 'block-dirty-bitmap-add',
  'data': 'BlockDirtyBitmapAdd' }

##
2058
# @block-dirty-bitmap-remove:
2059
#
2060
# Stop write tracking and remove the dirty bitmap that was created
2061 2062
# with block-dirty-bitmap-add. If the bitmap is persistent, remove it from its
# storage too.
2063 2064 2065 2066
#
# Returns: nothing on success
#          If @node is not a valid block device or node, DeviceNotFound
#          If @name is not found, GenericError with an explanation
J
John Snow 已提交
2067
#          if @name is frozen by an operation, GenericError
2068
#
2069
# Since: 2.4
2070 2071 2072 2073 2074 2075 2076
#
# Example:
#
# -> { "execute": "block-dirty-bitmap-remove",
#      "arguments": { "node": "drive0", "name": "bitmap0" } }
# <- { "return": {} }
#
2077 2078 2079 2080
##
{ 'command': 'block-dirty-bitmap-remove',
  'data': 'BlockDirtyBitmap' }

J
John Snow 已提交
2081
##
2082
# @block-dirty-bitmap-clear:
J
John Snow 已提交
2083
#
2084 2085 2086
# Clear (reset) a dirty bitmap on the device, so that an incremental
# backup from this point in time forward will only backup clusters
# modified after this clear operation.
J
John Snow 已提交
2087 2088 2089 2090 2091
#
# Returns: nothing on success
#          If @node is not a valid block device, DeviceNotFound
#          If @name is not found, GenericError with an explanation
#
2092
# Since: 2.4
2093 2094 2095 2096 2097 2098 2099
#
# Example:
#
# -> { "execute": "block-dirty-bitmap-clear",
#      "arguments": { "node": "drive0", "name": "bitmap0" } }
# <- { "return": {} }
#
J
John Snow 已提交
2100 2101 2102 2103
##
{ 'command': 'block-dirty-bitmap-clear',
  'data': 'BlockDirtyBitmap' }

2104
##
2105
# @block-dirty-bitmap-enable:
2106 2107 2108 2109 2110 2111 2112
#
# Enables a dirty bitmap so that it will begin tracking disk changes.
#
# Returns: nothing on success
#          If @node is not a valid block device, DeviceNotFound
#          If @name is not found, GenericError with an explanation
#
2113
# Since: 4.0
2114 2115 2116
#
# Example:
#
2117
# -> { "execute": "block-dirty-bitmap-enable",
2118 2119 2120 2121
#      "arguments": { "node": "drive0", "name": "bitmap0" } }
# <- { "return": {} }
#
##
2122
  { 'command': 'block-dirty-bitmap-enable',
2123 2124 2125
    'data': 'BlockDirtyBitmap' }

##
2126
# @block-dirty-bitmap-disable:
2127 2128 2129 2130 2131 2132 2133
#
# Disables a dirty bitmap so that it will stop tracking disk changes.
#
# Returns: nothing on success
#          If @node is not a valid block device, DeviceNotFound
#          If @name is not found, GenericError with an explanation
#
2134
# Since: 4.0
2135 2136 2137
#
# Example:
#
2138
# -> { "execute": "block-dirty-bitmap-disable",
2139 2140 2141 2142
#      "arguments": { "node": "drive0", "name": "bitmap0" } }
# <- { "return": {} }
#
##
2143
    { 'command': 'block-dirty-bitmap-disable',
2144 2145
      'data': 'BlockDirtyBitmap' }

2146
##
2147
# @block-dirty-bitmap-merge:
2148
#
J
John Snow 已提交
2149
# Merge dirty bitmaps listed in @bitmaps to the @target dirty bitmap.
2150 2151 2152
# Dirty bitmaps in @bitmaps will be unchanged, except if it also appears
# as the @target bitmap. Any bits already set in @target will still be
# set after the merge, i.e., this operation does not clear the target.
J
John Snow 已提交
2153
# On error, @target is unchanged.
2154
#
2155 2156 2157 2158
# The resulting bitmap will count as dirty any clusters that were dirty in any
# of the source bitmaps. This can be used to achieve backup checkpoints, or in
# simpler usages, to copy bitmaps.
#
2159 2160
# Returns: nothing on success
#          If @node is not a valid block device, DeviceNotFound
J
John Snow 已提交
2161 2162 2163
#          If any bitmap in @bitmaps or @target is not found, GenericError
#          If any of the bitmaps have different sizes or granularities,
#              GenericError
2164
#
2165
# Since: 4.0
2166 2167 2168
#
# Example:
#
2169
# -> { "execute": "block-dirty-bitmap-merge",
J
John Snow 已提交
2170 2171
#      "arguments": { "node": "drive0", "target": "bitmap0",
#                     "bitmaps": ["bitmap1"] } }
2172 2173 2174
# <- { "return": {} }
#
##
2175
      { 'command': 'block-dirty-bitmap-merge',
2176 2177
        'data': 'BlockDirtyBitmapMerge' }

2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192
##
# @BlockDirtyBitmapSha256:
#
# SHA256 hash of dirty bitmap data
#
# @sha256: ASCII representation of SHA256 bitmap hash
#
# Since: 2.10
##
  { 'struct': 'BlockDirtyBitmapSha256',
    'data': {'sha256': 'str'} }

##
# @x-debug-block-dirty-bitmap-sha256:
#
2193
# Get bitmap SHA256.
2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204
#
# Returns: BlockDirtyBitmapSha256 on success
#          If @node is not a valid block device, DeviceNotFound
#          If @name is not found or if hashing has failed, GenericError with an
#          explanation
#
# Since: 2.10
##
  { 'command': 'x-debug-block-dirty-bitmap-sha256',
    'data': 'BlockDirtyBitmap', 'returns': 'BlockDirtyBitmapSha256' }

F
Fam Zheng 已提交
2205
##
2206
# @blockdev-mirror:
F
Fam Zheng 已提交
2207 2208 2209
#
# Start mirroring a block device's writes to a new destination.
#
2210
# @job-id: identifier for the newly-created block job. If
2211 2212
#          omitted, the device name will be used. (Since 2.7)
#
2213 2214
# @device: The device name or node-name of a root node whose writes should be
#          mirrored.
F
Fam Zheng 已提交
2215 2216 2217 2218
#
# @target: the id or node-name of the block device to mirror to. This mustn't be
#          attached to guest.
#
2219
# @replaces: with sync=full graph node name to be replaced by the new
F
Fam Zheng 已提交
2220 2221 2222
#            image when a whole image copy is done. This can be used to repair
#            broken Quorum files.
#
2223
# @speed:  the maximum speed, in bytes per second
F
Fam Zheng 已提交
2224 2225 2226 2227 2228
#
# @sync: what parts of the disk image should be copied to the destination
#        (all the disk, only the sectors allocated in the topmost image, or
#        only new I/O).
#
2229
# @granularity: granularity of the dirty bitmap, default is 64K
F
Fam Zheng 已提交
2230 2231 2232 2233
#               if the image format doesn't have clusters, 4K if the clusters
#               are smaller than that, else the cluster size.  Must be a
#               power of 2 between 512 and 64M
#
2234
# @buf-size: maximum amount of data in flight from source to
F
Fam Zheng 已提交
2235 2236
#            target
#
2237
# @on-source-error: the action to take on an error on the source,
F
Fam Zheng 已提交
2238 2239 2240
#                   default 'report'.  'stop' and 'enospc' can only be used
#                   if the block device supports io-status (see BlockInfo).
#
2241
# @on-target-error: the action to take on an error on the target,
F
Fam Zheng 已提交
2242 2243 2244
#                   default 'report' (no limitations, since this applies to
#                   a different block device than @device).
#
2245
# @filter-node-name: the node name that should be assigned to the
2246 2247 2248 2249
#                    filter driver that the mirror job inserts into the graph
#                    above @device. If this option is not given, a node name is
#                    autogenerated. (Since: 2.9)
#
2250 2251 2252
# @copy-mode: when to copy data to the destination; defaults to 'background'
#             (Since: 3.0)
#
2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264
# @auto-finalize: When false, this job will wait in a PENDING state after it has
#                 finished its work, waiting for @block-job-finalize before
#                 making any block graph changes.
#                 When true, this job will automatically
#                 perform its abort or commit actions.
#                 Defaults to true. (Since 3.1)
#
# @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
#                has completely ceased all work, and awaits @block-job-dismiss.
#                When true, this job will automatically disappear from the query
#                list without user intervention.
#                Defaults to true. (Since 3.1)
F
Fam Zheng 已提交
2265 2266
# Returns: nothing on success.
#
2267
# Since: 2.6
2268 2269 2270 2271 2272 2273 2274 2275 2276
#
# Example:
#
# -> { "execute": "blockdev-mirror",
#      "arguments": { "device": "ide-hd0",
#                     "target": "target0",
#                     "sync": "full" } }
# <- { "return": {} }
#
F
Fam Zheng 已提交
2277 2278
##
{ 'command': 'blockdev-mirror',
2279
  'data': { '*job-id': 'str', 'device': 'str', 'target': 'str',
F
Fam Zheng 已提交
2280 2281 2282 2283
            '*replaces': 'str',
            'sync': 'MirrorSyncMode',
            '*speed': 'int', '*granularity': 'uint32',
            '*buf-size': 'int', '*on-source-error': 'BlockdevOnError',
2284
            '*on-target-error': 'BlockdevOnError',
2285
            '*filter-node-name': 'str',
2286 2287
            '*copy-mode': 'MirrorCopyMode',
            '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
F
Fam Zheng 已提交
2288

2289 2290 2291 2292 2293
##
# @block_set_io_throttle:
#
# Change I/O throttle limits for a block drive.
#
2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312
# Since QEMU 2.4, each device with I/O limits is member of a throttle
# group.
#
# If two or more devices are members of the same group, the limits
# will apply to the combined I/O of the whole group in a round-robin
# fashion. Therefore, setting new I/O limits to a device will affect
# the whole group.
#
# The name of the group can be specified using the 'group' parameter.
# If the parameter is unset, it is assumed to be the current group of
# that device. If it's not in any group yet, the name of the device
# will be used as the name for its group.
#
# The 'group' parameter can also be used to move a device to a
# different group. In this case the limits specified in the parameters
# will be applied to the new group only.
#
# I/O limits can be disabled by setting all of them to 0. In this case
# the device will be removed from its group and the rest of its
2313
# members will not be affected. The 'group' parameter is ignored.
2314
#
2315 2316 2317 2318
# Returns: Nothing on success
#          If @device is not a valid block device, DeviceNotFound
#
# Since: 1.1
2319 2320 2321 2322
#
# Example:
#
# -> { "execute": "block_set_io_throttle",
2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340
#      "arguments": { "id": "virtio-blk-pci0/virtio-backend",
#                     "bps": 0,
#                     "bps_rd": 0,
#                     "bps_wr": 0,
#                     "iops": 512,
#                     "iops_rd": 0,
#                     "iops_wr": 0,
#                     "bps_max": 0,
#                     "bps_rd_max": 0,
#                     "bps_wr_max": 0,
#                     "iops_max": 0,
#                     "iops_rd_max": 0,
#                     "iops_wr_max": 0,
#                     "bps_max_length": 0,
#                     "iops_size": 0 } }
# <- { "return": {} }
#
# -> { "execute": "block_set_io_throttle",
2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356
#      "arguments": { "id": "ide0-1-0",
#                     "bps": 1000000,
#                     "bps_rd": 0,
#                     "bps_wr": 0,
#                     "iops": 0,
#                     "iops_rd": 0,
#                     "iops_wr": 0,
#                     "bps_max": 8000000,
#                     "bps_rd_max": 0,
#                     "bps_wr_max": 0,
#                     "iops_max": 0,
#                     "iops_rd_max": 0,
#                     "iops_wr_max": 0,
#                     "bps_max_length": 60,
#                     "iops_size": 0 } }
# <- { "return": {} }
2357 2358 2359 2360 2361
##
{ 'command': 'block_set_io_throttle', 'boxed': true,
  'data': 'BlockIOThrottle' }

##
2362
# @BlockIOThrottle:
2363 2364 2365
#
# A set of parameters describing block throttling.
#
2366
# @device: Block device name (deprecated, use @id instead)
2367
#
2368
# @id: The name or QOM path of the guest device (since: 2.8)
2369 2370 2371 2372 2373 2374 2375 2376 2377
#
# @bps: total throughput limit in bytes per second
#
# @bps_rd: read throughput limit in bytes per second
#
# @bps_wr: write throughput limit in bytes per second
#
# @iops: total I/O operations per second
#
2378
# @iops_rd: read I/O operations per second
2379 2380 2381
#
# @iops_wr: write I/O operations per second
#
2382
# @bps_max: total throughput limit during bursts,
2383
#                     in bytes (Since 1.7)
2384
#
2385
# @bps_rd_max: read throughput limit during bursts,
2386
#                        in bytes (Since 1.7)
2387
#
2388
# @bps_wr_max: write throughput limit during bursts,
2389
#                        in bytes (Since 1.7)
2390
#
2391
# @iops_max: total I/O operations per second during bursts,
2392
#                      in bytes (Since 1.7)
2393
#
2394
# @iops_rd_max: read I/O operations per second during bursts,
2395
#                         in bytes (Since 1.7)
2396
#
2397
# @iops_wr_max: write I/O operations per second during bursts,
2398 2399
#                         in bytes (Since 1.7)
#
2400
# @bps_max_length: maximum length of the @bps_max burst
2401 2402 2403 2404
#                            period, in seconds. It must only
#                            be set if @bps_max is set as well.
#                            Defaults to 1. (Since 2.6)
#
2405
# @bps_rd_max_length: maximum length of the @bps_rd_max
2406 2407 2408 2409
#                               burst period, in seconds. It must only
#                               be set if @bps_rd_max is set as well.
#                               Defaults to 1. (Since 2.6)
#
2410
# @bps_wr_max_length: maximum length of the @bps_wr_max
2411 2412 2413 2414
#                               burst period, in seconds. It must only
#                               be set if @bps_wr_max is set as well.
#                               Defaults to 1. (Since 2.6)
#
2415
# @iops_max_length: maximum length of the @iops burst
2416 2417 2418 2419
#                             period, in seconds. It must only
#                             be set if @iops_max is set as well.
#                             Defaults to 1. (Since 2.6)
#
2420
# @iops_rd_max_length: maximum length of the @iops_rd_max
2421 2422 2423 2424
#                                burst period, in seconds. It must only
#                                be set if @iops_rd_max is set as well.
#                                Defaults to 1. (Since 2.6)
#
2425
# @iops_wr_max_length: maximum length of the @iops_wr_max
2426 2427 2428
#                                burst period, in seconds. It must only
#                                be set if @iops_wr_max is set as well.
#                                Defaults to 1. (Since 2.6)
2429
#
2430
# @iops_size: an I/O size in bytes (Since 1.7)
2431
#
2432
# @group: throttle group name (Since 2.4)
2433
#
2434 2435
# Since: 1.1
##
2436
{ 'struct': 'BlockIOThrottle',
2437 2438
  'data': { '*device': 'str', '*id': 'str', 'bps': 'int', 'bps_rd': 'int',
            'bps_wr': 'int', 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int',
2439 2440 2441
            '*bps_max': 'int', '*bps_rd_max': 'int',
            '*bps_wr_max': 'int', '*iops_max': 'int',
            '*iops_rd_max': 'int', '*iops_wr_max': 'int',
2442 2443 2444
            '*bps_max_length': 'int', '*bps_rd_max_length': 'int',
            '*bps_wr_max_length': 'int', '*iops_max_length': 'int',
            '*iops_rd_max_length': 'int', '*iops_wr_max_length': 'int',
2445
            '*iops_size': 'int', '*group': 'str' } }
2446

2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494
##
# @ThrottleLimits:
#
# Limit parameters for throttling.
# Since some limit combinations are illegal, limits should always be set in one
# transaction. All fields are optional. When setting limits, if a field is
# missing the current value is not changed.
#
# @iops-total:             limit total I/O operations per second
# @iops-total-max:         I/O operations burst
# @iops-total-max-length:  length of the iops-total-max burst period, in seconds
#                          It must only be set if @iops-total-max is set as well.
# @iops-read:              limit read operations per second
# @iops-read-max:          I/O operations read burst
# @iops-read-max-length:   length of the iops-read-max burst period, in seconds
#                          It must only be set if @iops-read-max is set as well.
# @iops-write:             limit write operations per second
# @iops-write-max:         I/O operations write burst
# @iops-write-max-length:  length of the iops-write-max burst period, in seconds
#                          It must only be set if @iops-write-max is set as well.
# @bps-total:              limit total bytes per second
# @bps-total-max:          total bytes burst
# @bps-total-max-length:   length of the bps-total-max burst period, in seconds.
#                          It must only be set if @bps-total-max is set as well.
# @bps-read:               limit read bytes per second
# @bps-read-max:           total bytes read burst
# @bps-read-max-length:    length of the bps-read-max burst period, in seconds
#                          It must only be set if @bps-read-max is set as well.
# @bps-write:              limit write bytes per second
# @bps-write-max:          total bytes write burst
# @bps-write-max-length:   length of the bps-write-max burst period, in seconds
#                          It must only be set if @bps-write-max is set as well.
# @iops-size:              when limiting by iops max size of an I/O in bytes
#
# Since: 2.11
##
{ 'struct': 'ThrottleLimits',
  'data': { '*iops-total' : 'int', '*iops-total-max' : 'int',
            '*iops-total-max-length' : 'int', '*iops-read' : 'int',
            '*iops-read-max' : 'int', '*iops-read-max-length' : 'int',
            '*iops-write' : 'int', '*iops-write-max' : 'int',
            '*iops-write-max-length' : 'int', '*bps-total' : 'int',
            '*bps-total-max' : 'int', '*bps-total-max-length' : 'int',
            '*bps-read' : 'int', '*bps-read-max' : 'int',
            '*bps-read-max-length' : 'int', '*bps-write' : 'int',
            '*bps-write-max' : 'int', '*bps-write-max-length' : 'int',
            '*iops-size' : 'int' } }

2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505
##
# @block-stream:
#
# Copy data from a backing file into a block device.
#
# The block streaming operation is performed in the background until the entire
# backing file has been copied.  This command returns immediately once streaming
# has started.  The status of ongoing block streaming operations can be checked
# with query-block-jobs.  The operation can be stopped before it has completed
# using the block-job-cancel command.
#
2506 2507 2508 2509 2510 2511 2512
# The node that receives the data is called the top image, can be located in
# any part of the chain (but always above the base image; see below) and can be
# specified using its device or node name. Earlier qemu versions only allowed
# 'device' to name the top level node; presence of the 'base-node' parameter
# during introspection can be used as a witness of the enhanced semantics
# of 'device'.
#
2513 2514 2515 2516 2517 2518 2519 2520
# If a base file is specified then sectors are not copied from that base file and
# its backing chain.  When streaming completes the image file will have the base
# file as its backing file.  This can be used to stream a subset of the backing
# file chain instead of flattening the entire image.
#
# On successful completion the image file is updated to drop the backing file
# and the BLOCK_JOB_COMPLETED event is emitted.
#
2521
# @job-id: identifier for the newly-created block job. If
2522 2523
#          omitted, the device name will be used. (Since 2.7)
#
2524
# @device: the device or node name of the top image
2525
#
2526
# @base:   the common backing file name.
2527 2528
#                    It cannot be set if @base-node is also set.
#
2529
# @base-node: the node name of the backing file.
2530
#                       It cannot be set if @base is also set. (Since 2.8)
2531
#
2532
# @backing-file: The backing file string to write into the top
2533
#                          image. This filename is not validated.
2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546
#
#                          If a pathname string is such that it cannot be
#                          resolved by QEMU, that means that subsequent QMP or
#                          HMP commands must use node-names for the image in
#                          question, as filename lookup methods will fail.
#
#                          If not specified, QEMU will automatically determine
#                          the backing file string to use, or error out if there
#                          is no obvious choice.  Care should be taken when
#                          specifying the string, to specify a valid filename or
#                          protocol.
#                          (Since 2.1)
#
2547
# @speed:  the maximum speed, in bytes per second
2548
#
2549
# @on-error: the action to take on an error (default report).
2550 2551 2552
#            'stop' and 'enospc' can only be used if the block device
#            supports io-status (see BlockInfo).  Since 1.3.
#
2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565
# @auto-finalize: When false, this job will wait in a PENDING state after it has
#                 finished its work, waiting for @block-job-finalize before
#                 making any block graph changes.
#                 When true, this job will automatically
#                 perform its abort or commit actions.
#                 Defaults to true. (Since 3.1)
#
# @auto-dismiss: When false, this job will wait in a CONCLUDED state after it
#                has completely ceased all work, and awaits @block-job-dismiss.
#                When true, this job will automatically disappear from the query
#                list without user intervention.
#                Defaults to true. (Since 3.1)
#
2566 2567
# Returns: Nothing on success. If @device does not exist, DeviceNotFound.
#
2568
# Since: 1.1
2569 2570 2571 2572 2573 2574 2575 2576
#
# Example:
#
# -> { "execute": "block-stream",
#      "arguments": { "device": "virtio0",
#                     "base": "/tmp/master.qcow2" } }
# <- { "return": {} }
#
2577 2578
##
{ 'command': 'block-stream',
2579
  'data': { '*job-id': 'str', 'device': 'str', '*base': 'str',
2580
            '*base-node': 'str', '*backing-file': 'str', '*speed': 'int',
2581 2582
            '*on-error': 'BlockdevOnError',
            '*auto-finalize': 'bool', '*auto-dismiss': 'bool' } }
2583 2584 2585 2586 2587 2588 2589 2590 2591 2592

##
# @block-job-set-speed:
#
# Set maximum speed for a background block operation.
#
# This command can only be issued when there is an active block job.
#
# Throttling can be disabled by setting the speed to 0.
#
2593 2594 2595
# @device: The job identifier. This used to be a device name (hence
#          the name of the parameter), but since QEMU 2.7 it can have
#          other values.
2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620
#
# @speed:  the maximum speed, in bytes per second, or 0 for unlimited.
#          Defaults to 0.
#
# Returns: Nothing on success
#          If no background operation is active on this device, DeviceNotActive
#
# Since: 1.1
##
{ 'command': 'block-job-set-speed',
  'data': { 'device': 'str', 'speed': 'int' } }

##
# @block-job-cancel:
#
# Stop an active background block operation.
#
# This command returns immediately after marking the active background block
# operation for cancellation.  It is an error to call this command if no
# operation is in progress.
#
# The operation will cancel as soon as possible and then emit the
# BLOCK_JOB_CANCELLED event.  Before that happens the job is still visible when
# enumerated using query-block-jobs.
#
2621 2622 2623 2624 2625 2626
# Note that if you issue 'block-job-cancel' after 'drive-mirror' has indicated
# (via the event BLOCK_JOB_READY) that the source and destination are
# synchronized, then the event triggered by this command changes to
# BLOCK_JOB_COMPLETED, to indicate that the mirroring has ended and the
# destination now has a point-in-time copy tied to the time of the cancellation.
#
2627 2628 2629 2630 2631
# For streaming, the image file retains its backing file unless the streaming
# operation happens to complete just as it is being cancelled.  A new streaming
# operation can be started at a later time to finish copying all data from the
# backing file.
#
2632 2633 2634
# @device: The job identifier. This used to be a device name (hence
#          the name of the parameter), but since QEMU 2.7 it can have
#          other values.
2635
#
2636 2637 2638
# @force: If true, and the job has already emitted the event BLOCK_JOB_READY,
#         abandon the job immediately (even if it is paused) instead of waiting
#         for the destination to complete its final synchronization (since 1.3)
2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653
#
# Returns: Nothing on success
#          If no background operation is active on this device, DeviceNotActive
#
# Since: 1.1
##
{ 'command': 'block-job-cancel', 'data': { 'device': 'str', '*force': 'bool' } }

##
# @block-job-pause:
#
# Pause an active background block operation.
#
# This command returns immediately after marking the active background block
# operation for pausing.  It is an error to call this command if no
2654
# operation is in progress or if the job is already paused.
2655 2656 2657 2658 2659
#
# The operation will pause as soon as possible.  No event is emitted when
# the operation is actually paused.  Cancelling a paused job automatically
# resumes it.
#
2660 2661 2662
# @device: The job identifier. This used to be a device name (hence
#          the name of the parameter), but since QEMU 2.7 it can have
#          other values.
2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677
#
# Returns: Nothing on success
#          If no background operation is active on this device, DeviceNotActive
#
# Since: 1.3
##
{ 'command': 'block-job-pause', 'data': { 'device': 'str' } }

##
# @block-job-resume:
#
# Resume an active background block operation.
#
# This command returns immediately after resuming a paused background block
# operation.  It is an error to call this command if no operation is in
2678
# progress or if the job is not paused.
2679 2680 2681
#
# This command also clears the error status of the job.
#
2682 2683 2684
# @device: The job identifier. This used to be a device name (hence
#          the name of the parameter), but since QEMU 2.7 it can have
#          other values.
2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709
#
# Returns: Nothing on success
#          If no background operation is active on this device, DeviceNotActive
#
# Since: 1.3
##
{ 'command': 'block-job-resume', 'data': { 'device': 'str' } }

##
# @block-job-complete:
#
# Manually trigger completion of an active background block operation.  This
# is supported for drive mirroring, where it also switches the device to
# write to the target path only.  The ability to complete is signaled with
# a BLOCK_JOB_READY event.
#
# This command completes an active background block operation synchronously.
# The ordering of this command's return with the BLOCK_JOB_COMPLETED event
# is not defined.  Note that if an I/O error occurs during the processing of
# this command: 1) the command itself will fail; 2) the error will be processed
# according to the rerror/werror arguments that were specified when starting
# the operation.
#
# A cancelled or paused job cannot be completed.
#
2710 2711 2712
# @device: The job identifier. This used to be a device name (hence
#          the name of the parameter), but since QEMU 2.7 it can have
#          other values.
2713 2714 2715 2716 2717 2718 2719 2720
#
# Returns: Nothing on success
#          If no background operation is active on this device, DeviceNotActive
#
# Since: 1.3
##
{ 'command': 'block-job-complete', 'data': { 'device': 'str' } }

J
John Snow 已提交
2721 2722 2723 2724 2725 2726 2727 2728
##
# @block-job-dismiss:
#
# For jobs that have already concluded, remove them from the block-job-query
# list. This command only needs to be run for jobs which were started with
# QEMU 2.12+ job lifetime management semantics.
#
# This command will refuse to operate on any job that has not yet reached
K
Kevin Wolf 已提交
2729
# its terminal state, JOB_STATUS_CONCLUDED. For jobs that make use of the
J
John Snow 已提交
2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740
# BLOCK_JOB_READY event, block-job-cancel or block-job-complete will still need
# to be used as appropriate.
#
# @id: The job identifier.
#
# Returns: Nothing on success
#
# Since: 2.12
##
{ 'command': 'block-job-dismiss', 'data': { 'id': 'str' } }

J
John Snow 已提交
2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758
##
# @block-job-finalize:
#
# Once a job that has manual=true reaches the pending state, it can be
# instructed to finalize any graph changes and do any necessary cleanup
# via this command.
# For jobs in a transaction, instructing one job to finalize will force
# ALL jobs in the transaction to finalize, so it is only necessary to instruct
# a single member job to finalize.
#
# @id: The job identifier.
#
# Returns: Nothing on success
#
# Since: 2.12
##
{ 'command': 'block-job-finalize', 'data': { 'id': 'str' } }

2759
##
2760
# @BlockdevDiscardOptions:
2761 2762 2763 2764 2765 2766
#
# Determines how to handle discard requests.
#
# @ignore:      Ignore the request
# @unmap:       Forward as an unmap request
#
2767
# Since: 2.9
2768 2769 2770 2771 2772
##
{ 'enum': 'BlockdevDiscardOptions',
  'data': [ 'ignore', 'unmap' ] }

##
2773
# @BlockdevDetectZeroesOptions:
2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788
#
# Describes the operation mode for the automatic conversion of plain
# zero writes by the OS to driver specific optimized zero write commands.
#
# @off:      Disabled (default)
# @on:       Enabled
# @unmap:    Enabled and even try to unmap blocks if possible. This requires
#            also that @BlockdevDiscardOptions is set to unmap for this device.
#
# Since: 2.1
##
{ 'enum': 'BlockdevDetectZeroesOptions',
  'data': [ 'off', 'on', 'unmap' ] }

##
2789
# @BlockdevAioOptions:
2790 2791 2792 2793 2794 2795
#
# Selects the AIO backend to handle I/O requests
#
# @threads:     Use qemu's thread pool
# @native:      Use native AIO backend (only Linux and Windows)
#
2796
# Since: 2.9
2797 2798 2799 2800 2801
##
{ 'enum': 'BlockdevAioOptions',
  'data': [ 'threads', 'native' ] }

##
2802
# @BlockdevCacheOptions:
2803 2804 2805
#
# Includes cache-related options for block devices
#
2806
# @direct:      enables use of O_DIRECT (bypass the host page cache;
2807
#               default: false)
2808
# @no-flush:    ignore any flush requests for the device (default:
2809 2810
#               false)
#
2811
# Since: 2.9
2812
##
2813
{ 'struct': 'BlockdevCacheOptions',
2814
  'data': { '*direct': 'bool',
2815 2816 2817
            '*no-flush': 'bool' } }

##
2818
# @BlockdevDriver:
2819 2820 2821
#
# Drivers that are supported in block device operations.
#
2822
# @vxhs: Since 2.10
2823
# @throttle: Since 2.11
2824
# @nvme: Since 2.12
2825
# @copy-on-read: Since 3.0
A
Aapo Vienamo 已提交
2826
# @blklogwrites: Since 3.0
2827
#
2828
# Since: 2.9
2829 2830
##
{ 'enum': 'BlockdevDriver',
A
Aapo Vienamo 已提交
2831 2832 2833 2834
  'data': [ 'blkdebug', 'blklogwrites', 'blkverify', 'bochs', 'cloop',
            'copy-on-read', 'dmg', 'file', 'ftp', 'ftps', 'gluster',
            'host_cdrom', 'host_device', 'http', 'https', 'iscsi', 'luks',
            'nbd', 'nfs', 'null-aio', 'null-co', 'nvme', 'parallels', 'qcow',
2835 2836 2837
            'qcow2', 'qed', 'quorum', 'raw', 'rbd',
            { 'name': 'replication', 'if': 'defined(CONFIG_REPLICATION)' },
            'sheepdog',
A
Aapo Vienamo 已提交
2838
            'ssh', 'throttle', 'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat', 'vxhs' ] }
2839 2840

##
2841
# @BlockdevOptionsFile:
2842
#
2843
# Driver specific block device options for the file backend.
2844 2845
#
# @filename:    path to the image file
2846 2847 2848
# @pr-manager:  the id for the object that will handle persistent reservations
#               for this device (default: none, forward the commands via SG_IO;
#               since 2.11)
2849
# @aio:         AIO backend (default: threads) (since: 2.8)
F
Fam Zheng 已提交
2850 2851 2852
# @locking:     whether to enable file locking. If set to 'auto', only enable
#               when Open File Descriptor (OFD) locking API is available
#               (default: auto, since 2.10)
2853 2854 2855 2856
# @drop-cache:  invalidate page cache during live migration.  This prevents
#               stale data on the migration destination with cache.direct=off.
#               Currently only supported on Linux hosts.
#               (default: on, since: 4.0)
2857 2858 2859
# @x-check-cache-dropped: whether to check that page cache was dropped on live
#                         migration.  May cause noticeable delays if the image
#                         file is large, do not use in production.
2860
#                         (default: off) (since: 3.0)
2861
#
2862 2863 2864 2865 2866 2867 2868 2869 2870
# Features:
# @dynamic-auto-read-only: If present, enabled auto-read-only means that the
#                          driver will open the image read-only at first,
#                          dynamically reopen the image file read-write when
#                          the first writer is attached to the node and reopen
#                          read-only when the last writer is detached. This
#                          allows giving QEMU write permissions only on demand
#                          when an operation actually needs write access.
#
2871
# Since: 2.9
2872
##
2873
{ 'struct': 'BlockdevOptionsFile',
2874
  'data': { 'filename': 'str',
2875
            '*pr-manager': 'str',
F
Fam Zheng 已提交
2876
            '*locking': 'OnOffAuto',
2877
            '*aio': 'BlockdevAioOptions',
2878 2879
	    '*drop-cache': {'type': 'bool',
	                    'if': 'defined(CONFIG_LINUX)'},
2880 2881 2882
            '*x-check-cache-dropped': 'bool' },
  'features': [ { 'name': 'dynamic-auto-read-only',
                  'if': 'defined(CONFIG_POSIX)' } ] }
2883

F
Fam Zheng 已提交
2884
##
2885
# @BlockdevOptionsNull:
F
Fam Zheng 已提交
2886 2887 2888
#
# Driver specific block device options for the null backend.
#
2889 2890
# @size:    size of the device in bytes.
# @latency-ns: emulated latency (in nanoseconds) in processing
2891 2892
#              requests. Default to zero which completes requests immediately.
#              (Since 2.4)
2893 2894
# @read-zeroes: if true, reads from the device produce zeroes; if false, the
#               buffer is left unchanged. (default: false; since: 4.1)
F
Fam Zheng 已提交
2895
#
2896
# Since: 2.9
F
Fam Zheng 已提交
2897
##
2898
{ 'struct': 'BlockdevOptionsNull',
2899
  'data': { '*size': 'int', '*latency-ns': 'uint64', '*read-zeroes': 'bool' } }
F
Fam Zheng 已提交
2900

2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913
##
# @BlockdevOptionsNVMe:
#
# Driver specific block device options for the NVMe backend.
#
# @device:    controller address of the NVMe device.
# @namespace: namespace number of the device, starting from 1.
#
# Since: 2.12
##
{ 'struct': 'BlockdevOptionsNVMe',
  'data': { 'device': 'str', 'namespace': 'int' } }

2914
##
2915
# @BlockdevOptionsVVFAT:
2916 2917 2918 2919
#
# Driver specific block device options for the vvfat protocol.
#
# @dir:         directory to be exported as FAT image
2920 2921
# @fat-type:    FAT type: 12, 16 or 32
# @floppy:      whether to export a floppy image (true) or
2922
#               partitioned hard disk (false; default)
2923
# @label:       set the volume label, limited to 11 bytes. FAT16 and
W
Wolfgang Bumiller 已提交
2924 2925 2926
#               FAT32 traditionally have some restrictions on labels, which are
#               ignored by most operating systems. Defaults to "QEMU VVFAT".
#               (since 2.4)
2927
# @rw:          whether to allow write operations (default: false)
2928
#
2929
# Since: 2.9
2930
##
2931
{ 'struct': 'BlockdevOptionsVVFAT',
2932
  'data': { 'dir': 'str', '*fat-type': 'int', '*floppy': 'bool',
W
Wolfgang Bumiller 已提交
2933
            '*label': 'str', '*rw': 'bool' } }
2934 2935

##
2936
# @BlockdevOptionsGenericFormat:
2937 2938 2939 2940 2941 2942
#
# Driver specific block device options for image format that have no option
# besides their data source.
#
# @file:        reference to or definition of the data source block device
#
2943
# Since: 2.9
2944
##
2945
{ 'struct': 'BlockdevOptionsGenericFormat',
2946 2947
  'data': { 'file': 'BlockdevRef' } }

2948
##
2949
# @BlockdevOptionsLUKS:
2950 2951 2952
#
# Driver specific block device options for LUKS.
#
2953
# @key-secret: the ID of a QCryptoSecret object providing
2954 2955 2956
#              the decryption key (since 2.6). Mandatory except when
#              doing a metadata-only probe of the image.
#
2957
# Since: 2.9
2958 2959 2960 2961 2962 2963
##
{ 'struct': 'BlockdevOptionsLUKS',
  'base': 'BlockdevOptionsGenericFormat',
  'data': { '*key-secret': 'str' } }


2964
##
2965
# @BlockdevOptionsGenericCOWFormat:
2966 2967 2968 2969
#
# Driver specific block device options for image format that have no option
# besides their data source and an optional backing file.
#
2970
# @backing:     reference to or definition of the backing file block
2971 2972
#               device, null disables the backing file entirely.
#               Defaults to the backing file stored the image file.
2973
#
2974
# Since: 2.9
2975
##
2976
{ 'struct': 'BlockdevOptionsGenericCOWFormat',
2977
  'base': 'BlockdevOptionsGenericFormat',
2978
  'data': { '*backing': 'BlockdevRefOrNull' } }
2979

2980
##
2981
# @Qcow2OverlapCheckMode:
2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994
#
# General overlap check modes.
#
# @none:        Do not perform any checks
#
# @constant:    Perform only checks which can be done in constant time and
#               without reading anything from disk
#
# @cached:      Perform only checks which can be done without reading anything
#               from disk
#
# @all:         Perform all available overlap checks
#
2995
# Since: 2.9
2996 2997 2998 2999 3000
##
{ 'enum': 'Qcow2OverlapCheckMode',
  'data': [ 'none', 'constant', 'cached', 'all' ] }

##
3001
# @Qcow2OverlapCheckFlags:
3002 3003 3004 3005 3006 3007 3008 3009
#
# Structure of flags for each metadata structure. Setting a field to 'true'
# makes qemu guard that structure against unintended overwriting. The default
# value is chosen according to the template given.
#
# @template: Specifies a template mode which can be adjusted using the other
#            flags, defaults to 'cached'
#
3010 3011
# @bitmap-directory: since 3.0
#
3012
# Since: 2.9
3013
##
3014
{ 'struct': 'Qcow2OverlapCheckFlags',
3015 3016 3017 3018 3019 3020 3021 3022 3023 3024
  'data': { '*template':         'Qcow2OverlapCheckMode',
            '*main-header':      'bool',
            '*active-l1':        'bool',
            '*active-l2':        'bool',
            '*refcount-table':   'bool',
            '*refcount-block':   'bool',
            '*snapshot-table':   'bool',
            '*inactive-l1':      'bool',
            '*inactive-l2':      'bool',
            '*bitmap-directory': 'bool' } }
3025 3026

##
3027
# @Qcow2OverlapChecks:
3028 3029 3030 3031 3032 3033 3034 3035 3036
#
# Specifies which metadata structures should be guarded against unintended
# overwriting.
#
# @flags:   set of flags for separate specification of each metadata structure
#           type
#
# @mode:    named mode which chooses a specific set of flags
#
3037
# Since: 2.9
3038
##
3039
{ 'alternate': 'Qcow2OverlapChecks',
3040 3041 3042
  'data': { 'flags': 'Qcow2OverlapCheckFlags',
            'mode':  'Qcow2OverlapCheckMode' } }

3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078
##
# @BlockdevQcowEncryptionFormat:
#
# @aes: AES-CBC with plain64 initialization vectors
#
# Since: 2.10
##
{ 'enum': 'BlockdevQcowEncryptionFormat',
  'data': [ 'aes' ] }

##
# @BlockdevQcowEncryption:
#
# Since: 2.10
##
{ 'union': 'BlockdevQcowEncryption',
  'base': { 'format': 'BlockdevQcowEncryptionFormat' },
  'discriminator': 'format',
  'data': { 'aes': 'QCryptoBlockOptionsQCow' } }

##
# @BlockdevOptionsQcow:
#
# Driver specific block device options for qcow.
#
# @encrypt:               Image decryption options. Mandatory for
#                         encrypted images, except when doing a metadata-only
#                         probe of the image.
#
# Since: 2.10
##
{ 'struct': 'BlockdevOptionsQcow',
  'base': 'BlockdevOptionsGenericCOWFormat',
  'data': { '*encrypt': 'BlockdevQcowEncryption' } }


3079 3080 3081

##
# @BlockdevQcow2EncryptionFormat:
E
Eric Blake 已提交
3082
# @aes: AES-CBC with plain64 initialization vectors
3083 3084 3085 3086
#
# Since: 2.10
##
{ 'enum': 'BlockdevQcow2EncryptionFormat',
3087
  'data': [ 'aes', 'luks' ] }
3088 3089 3090 3091 3092 3093 3094 3095 3096

##
# @BlockdevQcow2Encryption:
#
# Since: 2.10
##
{ 'union': 'BlockdevQcow2Encryption',
  'base': { 'format': 'BlockdevQcow2EncryptionFormat' },
  'discriminator': 'format',
3097 3098
  'data': { 'aes': 'QCryptoBlockOptionsQCow',
            'luks': 'QCryptoBlockOptionsLUKS'} }
3099

3100
##
3101
# @BlockdevOptionsQcow2:
3102 3103 3104
#
# Driver specific block device options for qcow2.
#
3105
# @lazy-refcounts:        whether to enable the lazy refcounts
3106 3107
#                         feature (default is taken from the image file)
#
3108
# @pass-discard-request:  whether discard requests to the qcow2
3109 3110
#                         device should be forwarded to the data source
#
3111
# @pass-discard-snapshot: whether discard requests for the data source
3112 3113 3114
#                         should be issued when a snapshot operation (e.g.
#                         deleting a snapshot) frees clusters in the qcow2 file
#
3115
# @pass-discard-other:    whether discard requests for the data source
3116 3117 3118
#                         should be issued on other occasions where a cluster
#                         gets freed
#
3119
# @overlap-check:         which overlap checks to perform for writes
3120 3121
#                         to the image, defaults to 'cached' (since 2.2)
#
3122
# @cache-size:            the maximum total size of the L2 table and
3123 3124
#                         refcount block caches in bytes (since 2.2)
#
3125
# @l2-cache-size:         the maximum size of the L2 table cache in
3126 3127
#                         bytes (since 2.2)
#
3128 3129 3130 3131 3132
# @l2-cache-entry-size:   the size of each entry in the L2 cache in
#                         bytes. It must be a power of two between 512
#                         and the cluster size. The default value is
#                         the cluster size (since 2.12)
#
3133
# @refcount-cache-size:   the maximum size of the refcount block cache
3134 3135
#                         in bytes (since 2.2)
#
3136
# @cache-clean-interval:  clean unused entries in the L2 and refcount
3137
#                         caches. The interval is in seconds. The default value
3138 3139
#                         is 600 on supporting platforms, and 0 on other
#                         platforms. 0 disables this feature. (since 2.5)
3140
#
3141 3142 3143
# @encrypt:               Image decryption options. Mandatory for
#                         encrypted images, except when doing a metadata-only
#                         probe of the image. (since 2.10)
3144
#
3145 3146
# @data-file:             reference to or definition of the external data file.
#                         This may only be specified for images that require an
3147 3148 3149
#                         external data file. If it is not specified for such
#                         an image, the data file name is loaded from the image
#                         file. (since 4.0)
3150
#
3151
# Since: 2.9
3152
##
3153
{ 'struct': 'BlockdevOptionsQcow2',
3154 3155 3156 3157
  'base': 'BlockdevOptionsGenericCOWFormat',
  'data': { '*lazy-refcounts': 'bool',
            '*pass-discard-request': 'bool',
            '*pass-discard-snapshot': 'bool',
3158 3159 3160 3161
            '*pass-discard-other': 'bool',
            '*overlap-check': 'Qcow2OverlapChecks',
            '*cache-size': 'int',
            '*l2-cache-size': 'int',
3162
            '*l2-cache-entry-size': 'int',
3163
            '*refcount-cache-size': 'int',
3164
            '*cache-clean-interval': 'int',
3165 3166
            '*encrypt': 'BlockdevQcow2Encryption',
            '*data-file': 'BlockdevRef' } }
3167

K
Kevin Wolf 已提交
3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210
##
# @SshHostKeyCheckMode:
#
# @none             Don't check the host key at all
# @hash             Compare the host key with a given hash
# @known_hosts      Check the host key against the known_hosts file
#
# Since: 2.12
##
{ 'enum': 'SshHostKeyCheckMode',
  'data': [ 'none', 'hash', 'known_hosts' ] }

##
# @SshHostKeyCheckHashType:
#
# @md5              The given hash is an md5 hash
# @sha1             The given hash is an sha1 hash
#
# Since: 2.12
##
{ 'enum': 'SshHostKeyCheckHashType',
  'data': [ 'md5', 'sha1' ] }

##
# @SshHostKeyHash:
#
# @type             The hash algorithm used for the hash
# @hash             The expected hash value
#
# Since: 2.12
##
{ 'struct': 'SshHostKeyHash',
  'data': { 'type': 'SshHostKeyCheckHashType',
            'hash': 'str' }}

##
# @SshHostKeyCheck:
#
# Since: 2.12
##
{ 'union': 'SshHostKeyCheck',
  'base': { 'mode': 'SshHostKeyCheckMode' },
  'discriminator': 'mode',
3211
  'data': { 'hash': 'SshHostKeyHash' } }
K
Kevin Wolf 已提交
3212

3213
##
3214
# @BlockdevOptionsSsh:
3215 3216 3217 3218 3219
#
# @server:              host address
#
# @path:                path to the image on the host
#
3220
# @user:                user as which to connect, defaults to current
3221 3222
#                       local user name
#
K
Kevin Wolf 已提交
3223 3224
# @host-key-check:      Defines how and what to check the host key against
#                       (default: known_hosts)
3225
#
3226
# Since: 2.9
3227 3228 3229 3230
##
{ 'struct': 'BlockdevOptionsSsh',
  'data': { 'server': 'InetSocketAddress',
            'path': 'str',
K
Kevin Wolf 已提交
3231 3232
            '*user': 'str',
            '*host-key-check': 'SshHostKeyCheck' } }
3233

3234

3235
##
3236
# @BlkdebugEvent:
3237 3238
#
# Trigger events supported by blkdebug.
3239
#
P
Pavel Butsykin 已提交
3240 3241 3242 3243 3244
# @l1_shrink_write_table:      write zeros to the l1 table to shrink image.
#                              (since 2.11)
#
# @l1_shrink_free_l2_clusters: discard the l2 tables. (since 2.11)
#
3245 3246
# @cor_write: a write due to copy-on-read (since 2.11)
#
3247 3248
# @cluster_alloc_space: an allocation of file space for a cluster (since 4.1)
#
M
Max Reitz 已提交
3249 3250
# @none: triggers once at creation of the blkdebug node (since 4.1)
#
3251
# Since: 2.9
3252
##
3253
{ 'enum': 'BlkdebugEvent', 'prefix': 'BLKDBG',
E
Eric Blake 已提交
3254 3255 3256
  'data': [ 'l1_update', 'l1_grow_alloc_table', 'l1_grow_write_table',
            'l1_grow_activate_table', 'l2_load', 'l2_update',
            'l2_update_compressed', 'l2_alloc_cow_read', 'l2_alloc_write',
3257 3258 3259 3260
            'read_aio', 'read_backing_aio', 'read_compressed', 'write_aio',
            'write_compressed', 'vmstate_load', 'vmstate_save', 'cow_read',
            'cow_write', 'reftable_load', 'reftable_grow', 'reftable_update',
            'refblock_load', 'refblock_update', 'refblock_update_part',
E
Eric Blake 已提交
3261 3262 3263
            'refblock_alloc', 'refblock_alloc_hookup', 'refblock_alloc_write',
            'refblock_alloc_write_blocks', 'refblock_alloc_write_table',
            'refblock_alloc_switch_table', 'cluster_alloc',
3264
            'cluster_alloc_bytes', 'cluster_free', 'flush_to_os',
E
Eric Blake 已提交
3265 3266
            'flush_to_disk', 'pwritev_rmw_head', 'pwritev_rmw_after_head',
            'pwritev_rmw_tail', 'pwritev_rmw_after_tail', 'pwritev',
P
Pavel Butsykin 已提交
3267
            'pwritev_zero', 'pwritev_done', 'empty_image_prepare',
3268
            'l1_shrink_write_table', 'l1_shrink_free_l2_clusters',
M
Max Reitz 已提交
3269
            'cor_write', 'cluster_alloc_space', 'none'] }
3270

M
Max Reitz 已提交
3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285
##
# @BlkdebugIOType:
#
# Kinds of I/O that blkdebug can inject errors in.
#
# @read: .bdrv_co_preadv()
#
# @write: .bdrv_co_pwritev()
#
# @write-zeroes: .bdrv_co_pwrite_zeroes()
#
# @discard: .bdrv_co_pdiscard()
#
# @flush: .bdrv_co_flush_to_disk()
#
3286 3287
# @block-status: .bdrv_co_block_status()
#
M
Max Reitz 已提交
3288 3289 3290
# Since: 4.1
##
{ 'enum': 'BlkdebugIOType', 'prefix': 'BLKDEBUG_IO_TYPE',
3291 3292
  'data': [ 'read', 'write', 'write-zeroes', 'discard', 'flush',
            'block-status' ] }
M
Max Reitz 已提交
3293

3294
##
3295
# @BlkdebugInjectErrorOptions:
3296 3297 3298 3299 3300
#
# Describes a single error injection for blkdebug.
#
# @event:       trigger event
#
3301
# @state:       the state identifier blkdebug needs to be in to
3302 3303
#               actually trigger the event; defaults to "any"
#
M
Max Reitz 已提交
3304 3305 3306 3307 3308
# @iotype:      the type of I/O operations on which this error should
#               be injected; defaults to "all read, write,
#               write-zeroes, discard, and flush operations"
#               (since: 4.1)
#
3309
# @errno:       error identifier (errno) to be returned; defaults to
3310 3311
#               EIO
#
3312
# @sector:      specifies the sector index which has to be affected
3313 3314 3315
#               in order to actually trigger the event; defaults to "any
#               sector"
#
3316
# @once:        disables further events after this one has been
3317 3318
#               triggered; defaults to false
#
3319
# @immediately: fail immediately; defaults to false
3320
#
3321
# Since: 2.9
3322
##
3323
{ 'struct': 'BlkdebugInjectErrorOptions',
3324 3325
  'data': { 'event': 'BlkdebugEvent',
            '*state': 'int',
M
Max Reitz 已提交
3326
            '*iotype': 'BlkdebugIOType',
3327 3328 3329 3330 3331 3332
            '*errno': 'int',
            '*sector': 'int',
            '*once': 'bool',
            '*immediately': 'bool' } }

##
3333
# @BlkdebugSetStateOptions:
3334 3335 3336 3337 3338
#
# Describes a single state-change event for blkdebug.
#
# @event:       trigger event
#
3339
# @state:       the current state identifier blkdebug needs to be in;
3340 3341 3342 3343 3344
#               defaults to "any"
#
# @new_state:   the state identifier blkdebug is supposed to assume if
#               this event is triggered
#
3345
# Since: 2.9
3346
##
3347
{ 'struct': 'BlkdebugSetStateOptions',
3348 3349 3350 3351 3352
  'data': { 'event': 'BlkdebugEvent',
            '*state': 'int',
            'new_state': 'int' } }

##
3353
# @BlockdevOptionsBlkdebug:
3354 3355 3356 3357 3358
#
# Driver specific block device options for blkdebug.
#
# @image:           underlying raw block device (or image file)
#
3359
# @config:          filename of the configuration file
3360
#
3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387
# @align:           required alignment for requests in bytes, must be
#                   positive power of 2, or 0 for default
#
# @max-transfer:    maximum size for I/O transfers in bytes, must be
#                   positive multiple of @align and of the underlying
#                   file's request alignment (but need not be a power of
#                   2), or 0 for default (since 2.10)
#
# @opt-write-zero:  preferred alignment for write zero requests in bytes,
#                   must be positive multiple of @align and of the
#                   underlying file's request alignment (but need not be a
#                   power of 2), or 0 for default (since 2.10)
#
# @max-write-zero:  maximum size for write zero requests in bytes, must be
#                   positive multiple of @align, of @opt-write-zero, and of
#                   the underlying file's request alignment (but need not
#                   be a power of 2), or 0 for default (since 2.10)
#
# @opt-discard:     preferred alignment for discard requests in bytes, must
#                   be positive multiple of @align and of the underlying
#                   file's request alignment (but need not be a power of
#                   2), or 0 for default (since 2.10)
#
# @max-discard:     maximum size for discard requests in bytes, must be
#                   positive multiple of @align, of @opt-discard, and of
#                   the underlying file's request alignment (but need not
#                   be a power of 2), or 0 for default (since 2.10)
3388
#
3389
# @inject-error:    array of error injection descriptions
3390
#
3391
# @set-state:       array of state-change descriptions
3392
#
3393
# Since: 2.9
3394
##
3395
{ 'struct': 'BlockdevOptionsBlkdebug',
3396 3397
  'data': { 'image': 'BlockdevRef',
            '*config': 'str',
3398 3399 3400
            '*align': 'int', '*max-transfer': 'int32',
            '*opt-write-zero': 'int32', '*max-write-zero': 'int32',
            '*opt-discard': 'int32', '*max-discard': 'int32',
3401 3402 3403
            '*inject-error': ['BlkdebugInjectErrorOptions'],
            '*set-state': ['BlkdebugSetStateOptions'] } }

A
Aapo Vienamo 已提交
3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415
##
# @BlockdevOptionsBlklogwrites:
#
# Driver specific block device options for blklogwrites.
#
# @file:            block device
#
# @log:             block device used to log writes to @file
#
# @log-sector-size: sector size used in logging writes to @file, determines
#                   granularity of offsets and sizes of writes (default: 512)
#
3416 3417
# @log-append:      append to an existing log (default: false)
#
3418 3419 3420
# @log-super-update-interval: interval of write requests after which the log
#                             super block is updated to disk (default: 4096)
#
A
Aapo Vienamo 已提交
3421 3422 3423 3424 3425
# Since: 3.0
##
{ 'struct': 'BlockdevOptionsBlklogwrites',
  'data': { 'file': 'BlockdevRef',
            'log': 'BlockdevRef',
3426
            '*log-sector-size': 'uint32',
3427 3428
            '*log-append': 'bool',
            '*log-super-update-interval': 'uint64' } }
A
Aapo Vienamo 已提交
3429

3430
##
3431
# @BlockdevOptionsBlkverify:
3432 3433 3434 3435 3436 3437 3438
#
# Driver specific block device options for blkverify.
#
# @test:    block device to be tested
#
# @raw:     raw image used for verification
#
3439
# Since: 2.9
3440
##
3441
{ 'struct': 'BlockdevOptionsBlkverify',
3442 3443 3444
  'data': { 'test': 'BlockdevRef',
            'raw': 'BlockdevRef' } }

3445
##
3446
# @QuorumReadPattern:
3447 3448 3449 3450 3451 3452 3453
#
# An enumeration of quorum read patterns.
#
# @quorum: read all the children and do a quorum vote on reads
#
# @fifo: read only from the first child that has not failed
#
3454
# Since: 2.9
3455 3456 3457
##
{ 'enum': 'QuorumReadPattern', 'data': [ 'quorum', 'fifo' ] }

3458
##
3459
# @BlockdevOptionsQuorum:
3460 3461 3462
#
# Driver specific block device options for Quorum
#
3463
# @blkverify:      true if the driver must print content mismatch
3464 3465 3466 3467 3468 3469
#                  set to false by default
#
# @children:       the children block devices to use
#
# @vote-threshold: the vote limit under which a read will fail
#
3470
# @rewrite-corrupted: rewrite corrupted data when quorum is reached
3471 3472
#                     (Since 2.1)
#
3473
# @read-pattern: choose read pattern and set to quorum by default
3474 3475
#                (Since 2.2)
#
3476
# Since: 2.9
3477
##
3478
{ 'struct': 'BlockdevOptionsQuorum',
3479 3480
  'data': { '*blkverify': 'bool',
            'children': [ 'BlockdevRef' ],
3481 3482 3483
            'vote-threshold': 'int',
            '*rewrite-corrupted': 'bool',
            '*read-pattern': 'QuorumReadPattern' } }
3484

3485
##
3486
# @BlockdevOptionsGluster:
3487 3488 3489 3490 3491 3492 3493
#
# Driver specific block device options for Gluster
#
# @volume:      name of gluster volume where VM image resides
#
# @path:        absolute path to image file in gluster volume
#
3494
# @server:      gluster servers description
3495
#
3496
# @debug:       libgfapi log level (default '4' which is Error)
3497
#               (Since 2.8)
3498
#
3499
# @logfile:     libgfapi log file (default /dev/stderr) (Since 2.8)
3500
#
3501
# Since: 2.9
3502 3503 3504 3505
##
{ 'struct': 'BlockdevOptionsGluster',
  'data': { 'volume': 'str',
            'path': 'str',
3506
            'server': ['SocketAddress'],
3507
            '*debug': 'int',
3508
            '*logfile': 'str' } }
3509

K
Kevin Wolf 已提交
3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533
##
# @IscsiTransport:
#
# An enumeration of libiscsi transport types
#
# Since: 2.9
##
{ 'enum': 'IscsiTransport',
  'data': [ 'tcp', 'iser' ] }

##
# @IscsiHeaderDigest:
#
# An enumeration of header digests supported by libiscsi
#
# Since: 2.9
##
{ 'enum': 'IscsiHeaderDigest',
  'prefix': 'QAPI_ISCSI_HEADER_DIGEST',
  'data': [ 'crc32c', 'none', 'crc32c-none', 'none-crc32c' ] }

##
# @BlockdevOptionsIscsi:
#
3534
# @transport:       The iscsi transport type
K
Kevin Wolf 已提交
3535
#
3536
# @portal:          The address of the iscsi portal
K
Kevin Wolf 已提交
3537
#
3538
# @target:          The target iqn name
K
Kevin Wolf 已提交
3539
#
3540
# @lun:             LUN to connect to. Defaults to 0.
K
Kevin Wolf 已提交
3541
#
3542
# @user:            User name to log in with. If omitted, no CHAP
K
Kevin Wolf 已提交
3543 3544
#                   authentication is performed.
#
3545
# @password-secret: The ID of a QCryptoSecret object providing
K
Kevin Wolf 已提交
3546 3547 3548
#                   the password for the login. This option is required if
#                   @user is specified.
#
3549
# @initiator-name:  The iqn name we want to identify to the target
K
Kevin Wolf 已提交
3550 3551 3552
#                   as. If this option is not specified, an initiator name is
#                   generated automatically.
#
3553
# @header-digest:   The desired header digest. Defaults to
K
Kevin Wolf 已提交
3554 3555
#                   none-crc32c.
#
3556
# @timeout:         Timeout in seconds after which a request will
K
Kevin Wolf 已提交
3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573
#                   timeout. 0 means no timeout and is the default.
#
# Driver specific block device options for iscsi
#
# Since: 2.9
##
{ 'struct': 'BlockdevOptionsIscsi',
  'data': { 'transport': 'IscsiTransport',
            'portal': 'str',
            'target': 'str',
            '*lun': 'int',
            '*user': 'str',
            '*password-secret': 'str',
            '*initiator-name': 'str',
            '*header-digest': 'IscsiHeaderDigest',
            '*timeout': 'int' } }

3574

3575 3576 3577 3578 3579 3580 3581 3582
##
# @RbdAuthMode:
#
# Since: 3.0
##
{ 'enum': 'RbdAuthMode',
  'data': [ 'cephx', 'none' ] }

J
Jeff Cody 已提交
3583 3584 3585 3586 3587 3588 3589
##
# @BlockdevOptionsRbd:
#
# @pool:               Ceph pool name.
#
# @image:              Image name in the Ceph pool.
#
3590
# @conf:               path to Ceph configuration file.  Values
J
Jeff Cody 已提交
3591 3592 3593
#                      in the configuration file will be overridden by
#                      options specified via QAPI.
#
3594
# @snapshot:           Ceph snapshot name.
J
Jeff Cody 已提交
3595
#
3596
# @user:               Ceph id name.
J
Jeff Cody 已提交
3597
#
3598 3599 3600 3601
# @auth-client-required: Acceptable authentication modes.
#                      This maps to Ceph configuration option
#                      "auth_client_required".  (Since 3.0)
#
3602 3603 3604 3605 3606
# @key-secret:         ID of a QCryptoSecret object providing a key
#                      for cephx authentication.
#                      This maps to Ceph configuration option
#                      "key".  (Since 3.0)
#
3607
# @server:             Monitor host address and port.  This maps
3608 3609
#                      to the "mon_host" Ceph option.
#
J
Jeff Cody 已提交
3610 3611 3612 3613 3614 3615 3616 3617
# Since: 2.9
##
{ 'struct': 'BlockdevOptionsRbd',
  'data': { 'pool': 'str',
            'image': 'str',
            '*conf': 'str',
            '*snapshot': 'str',
            '*user': 'str',
3618
            '*auth-client-required': ['RbdAuthMode'],
3619
            '*key-secret': 'str',
3620
            '*server': ['InetSocketAddressBase'] } }
J
Jeff Cody 已提交
3621

3622 3623 3624 3625 3626 3627
##
# @BlockdevOptionsSheepdog:
#
# Driver specific block device options for sheepdog
#
# @vdi:         Virtual disk image name
M
Markus Armbruster 已提交
3628
# @server:      The Sheepdog server to connect to
3629 3630 3631 3632 3633 3634 3635 3636
# @snap-id:     Snapshot ID
# @tag:         Snapshot tag name
#
# Only one of @snap-id and @tag may be present.
#
# Since: 2.9
##
{ 'struct': 'BlockdevOptionsSheepdog',
3637
  'data': { 'server': 'SocketAddress',
3638 3639 3640 3641
            'vdi': 'str',
            '*snap-id': 'uint32',
            '*tag': 'str' } }

3642
##
3643
# @ReplicationMode:
3644 3645 3646 3647 3648 3649 3650
#
# An enumeration of replication modes.
#
# @primary: Primary mode, the vm's state will be sent to secondary QEMU.
#
# @secondary: Secondary mode, receive the vm's state from primary QEMU.
#
3651
# Since: 2.9
3652
##
3653 3654
{ 'enum' : 'ReplicationMode', 'data' : [ 'primary', 'secondary' ],
  'if': 'defined(CONFIG_REPLICATION)' }
3655

3656
##
3657
# @BlockdevOptionsReplication:
3658 3659 3660 3661 3662
#
# Driver specific block device options for replication
#
# @mode: the replication mode
#
3663
# @top-id: In secondary mode, node name or device ID of the root
3664 3665
#          node who owns the replication node chain. Must not be given in
#          primary mode.
3666
#
3667
# Since: 2.9
3668 3669 3670 3671
##
{ 'struct': 'BlockdevOptionsReplication',
  'base': 'BlockdevOptionsGenericFormat',
  'data': { 'mode': 'ReplicationMode',
3672 3673
            '*top-id': 'str' },
  'if': 'defined(CONFIG_REPLICATION)' }
3674

3675
##
3676
# @NFSTransport:
3677 3678 3679 3680 3681
#
# An enumeration of NFS transport types
#
# @inet:        TCP transport
#
3682
# Since: 2.9
3683 3684 3685 3686 3687
##
{ 'enum': 'NFSTransport',
  'data': [ 'inet' ] }

##
3688
# @NFSServer:
3689 3690 3691 3692 3693 3694 3695
#
# Captures the address of the socket
#
# @type:        transport type used for NFS (only TCP supported)
#
# @host:        host address for NFS server
#
3696
# Since: 2.9
3697 3698 3699 3700 3701 3702
##
{ 'struct': 'NFSServer',
  'data': { 'type': 'NFSTransport',
            'host': 'str' } }

##
3703
# @BlockdevOptionsNfs:
3704 3705 3706 3707 3708 3709 3710
#
# Driver specific block device option for NFS
#
# @server:                  host address
#
# @path:                    path of the image on the host
#
3711
# @user:                    UID value to use when talking to the
3712 3713 3714
#                           server (defaults to 65534 on Windows and getuid()
#                           on unix)
#
3715
# @group:                   GID value to use when talking to the
3716 3717 3718
#                           server (defaults to 65534 on Windows and getgid()
#                           in unix)
#
3719
# @tcp-syn-count:           number of SYNs during the session
3720 3721
#                           establishment (defaults to libnfs default)
#
3722
# @readahead-size:          set the readahead size in bytes (defaults
3723 3724
#                           to libnfs default)
#
3725
# @page-cache-size:         set the pagecache size in bytes (defaults
3726 3727
#                           to libnfs default)
#
3728
# @debug:                   set the NFS debug level (max 2) (defaults
3729 3730
#                           to libnfs default)
#
3731
# Since: 2.9
3732 3733 3734 3735 3736 3737 3738 3739 3740
##
{ 'struct': 'BlockdevOptionsNfs',
  'data': { 'server': 'NFSServer',
            'path': 'str',
            '*user': 'int',
            '*group': 'int',
            '*tcp-syn-count': 'int',
            '*readahead-size': 'int',
            '*page-cache-size': 'int',
3741
            '*debug': 'int' } }
3742

3743
##
3744
# @BlockdevOptionsCurlBase:
3745
#
3746 3747
# Driver specific block device options shared by all protocols supported by the
# curl backend.
3748
#
3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786
# @url:                     URL of the image file
#
# @readahead:               Size of the read-ahead cache; must be a multiple of
#                           512 (defaults to 256 kB)
#
# @timeout:                 Timeout for connections, in seconds (defaults to 5)
#
# @username:                Username for authentication (defaults to none)
#
# @password-secret:         ID of a QCryptoSecret object providing a password
#                           for authentication (defaults to no password)
#
# @proxy-username:          Username for proxy authentication (defaults to none)
#
# @proxy-password-secret:   ID of a QCryptoSecret object providing a password
#                           for proxy authentication (defaults to no password)
#
# Since: 2.9
##
{ 'struct': 'BlockdevOptionsCurlBase',
  'data': { 'url': 'str',
            '*readahead': 'int',
            '*timeout': 'int',
            '*username': 'str',
            '*password-secret': 'str',
            '*proxy-username': 'str',
            '*proxy-password-secret': 'str' } }

##
# @BlockdevOptionsCurlHttp:
#
# Driver specific block device options for HTTP connections over the curl
# backend.  URLs must start with "http://".
#
# @cookie:      List of cookies to set; format is
#               "name1=content1; name2=content2;" as explained by
#               CURLOPT_COOKIE(3). Defaults to no cookies.
#
3787 3788 3789
# @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
#                 secure way. See @cookie for the format. (since 2.10)
#
3790 3791 3792 3793
# Since: 2.9
##
{ 'struct': 'BlockdevOptionsCurlHttp',
  'base': 'BlockdevOptionsCurlBase',
3794 3795
  'data': { '*cookie': 'str',
            '*cookie-secret': 'str'} }
3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809

##
# @BlockdevOptionsCurlHttps:
#
# Driver specific block device options for HTTPS connections over the curl
# backend.  URLs must start with "https://".
#
# @cookie:      List of cookies to set; format is
#               "name1=content1; name2=content2;" as explained by
#               CURLOPT_COOKIE(3). Defaults to no cookies.
#
# @sslverify:   Whether to verify the SSL certificate's validity (defaults to
#               true)
#
3810 3811 3812
# @cookie-secret: ID of a QCryptoSecret object providing the cookie data in a
#                 secure way. See @cookie for the format. (since 2.10)
#
3813 3814 3815 3816 3817
# Since: 2.9
##
{ 'struct': 'BlockdevOptionsCurlHttps',
  'base': 'BlockdevOptionsCurlBase',
  'data': { '*cookie': 'str',
3818 3819
            '*sslverify': 'bool',
            '*cookie-secret': 'str'} }
3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840

##
# @BlockdevOptionsCurlFtp:
#
# Driver specific block device options for FTP connections over the curl
# backend.  URLs must start with "ftp://".
#
# Since: 2.9
##
{ 'struct': 'BlockdevOptionsCurlFtp',
  'base': 'BlockdevOptionsCurlBase',
  'data': { } }

##
# @BlockdevOptionsCurlFtps:
#
# Driver specific block device options for FTPS connections over the curl
# backend.  URLs must start with "ftps://".
#
# @sslverify:   Whether to verify the SSL certificate's validity (defaults to
#               true)
3841
#
3842
# Since: 2.9
3843
##
3844 3845 3846
{ 'struct': 'BlockdevOptionsCurlFtps',
  'base': 'BlockdevOptionsCurlBase',
  'data': { '*sslverify': 'bool' } }
3847

M
Max Reitz 已提交
3848
##
3849
# @BlockdevOptionsNbd:
M
Max Reitz 已提交
3850 3851 3852 3853 3854
#
# Driver specific block device options for NBD.
#
# @server:      NBD server address
#
3855
# @export:      export name
M
Max Reitz 已提交
3856
#
3857
# @tls-creds:   TLS credentials ID
M
Max Reitz 已提交
3858
#
3859 3860 3861 3862
# @x-dirty-bitmap: A "qemu:dirty-bitmap:NAME" string to query in place of
#                  traditional "base:allocation" block status (see
#                  NBD_OPT_LIST_META_CONTEXT in the NBD protocol) (since 3.0)
#
3863
# Since: 2.9
M
Max Reitz 已提交
3864 3865
##
{ 'struct': 'BlockdevOptionsNbd',
3866
  'data': { 'server': 'SocketAddress',
M
Max Reitz 已提交
3867
            '*export': 'str',
3868 3869
            '*tls-creds': 'str',
            '*x-dirty-bitmap': 'str' } }
M
Max Reitz 已提交
3870

3871
##
3872
# @BlockdevOptionsRaw:
3873 3874 3875
#
# Driver specific block device options for the raw driver.
#
3876 3877
# @offset:      position where the block device starts
# @size:        the assumed size of the device
3878
#
3879
# Since: 2.9
3880 3881 3882 3883 3884
##
{ 'struct': 'BlockdevOptionsRaw',
  'base': 'BlockdevOptionsGenericFormat',
  'data': { '*offset': 'int', '*size': 'int' } }

3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900
##
# @BlockdevOptionsVxHS:
#
# Driver specific block device options for VxHS
#
# @vdisk-id:    UUID of VxHS volume
# @server:      vxhs server IP, port
# @tls-creds:   TLS credentials ID
#
# Since: 2.10
##
{ 'struct': 'BlockdevOptionsVxHS',
  'data': { 'vdisk-id': 'str',
            'server': 'InetSocketAddressBase',
            '*tls-creds': 'str' } }

3901
##
3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915
# @BlockdevOptionsThrottle:
#
# Driver specific block device options for the throttle driver
#
# @throttle-group:   the name of the throttle-group object to use. It
#                    must already exist.
# @file:             reference to or definition of the data source block device
# Since: 2.11
##
{ 'struct': 'BlockdevOptionsThrottle',
  'data': { 'throttle-group': 'str',
            'file' : 'BlockdevRef'
             } }
##
3916
# @BlockdevOptions:
3917
#
3918 3919 3920 3921
# Options for creating a block device.  Many options are available for all
# block devices, independent of the block driver:
#
# @driver:        block driver name
3922
# @node-name:     the node name of the new node (Since 2.0).
3923
#                 This option is required on the top level of blockdev-add.
3924 3925 3926
#                 Valid node names start with an alphabetic character and may
#                 contain only alphanumeric characters, '-', '.' and '_'. Their
#                 maximum length is 31 characters.
3927 3928
# @discard:       discard-related options (default: ignore)
# @cache:         cache-related options
3929 3930 3931 3932 3933
# @read-only:     whether the block device should be read-only (default: false).
#                 Note that some block drivers support only read-only access,
#                 either generally or in certain configurations. In this case,
#                 the default value does not work and the option must be
#                 specified explicitly.
K
Kevin Wolf 已提交
3934 3935 3936 3937 3938 3939
# @auto-read-only: if true and @read-only is false, QEMU may automatically
#                  decide not to open the image read-write as requested, but
#                  fall back to read-only instead (and switch between the modes
#                  later), e.g. depending on whether the image file is writable
#                  or whether a writing user is attached to the node
#                  (default: false, since 3.1)
3940
# @detect-zeroes: detect and optimize zero writes (Since 2.1)
3941
#                 (default: off)
3942 3943
# @force-share:   force share all permission on added nodes.
#                 Requires read-only=true. (Since 2.10)
3944 3945
#
# Remaining options are determined by the block driver.
3946
#
3947
# Since: 2.9
3948 3949
##
{ 'union': 'BlockdevOptions',
3950 3951 3952 3953 3954
  'base': { 'driver': 'BlockdevDriver',
            '*node-name': 'str',
            '*discard': 'BlockdevDiscardOptions',
            '*cache': 'BlockdevCacheOptions',
            '*read-only': 'bool',
K
Kevin Wolf 已提交
3955
            '*auto-read-only': 'bool',
3956
            '*force-share': 'bool',
3957
            '*detect-zeroes': 'BlockdevDetectZeroesOptions' },
3958 3959
  'discriminator': 'driver',
  'data': {
3960
      'blkdebug':   'BlockdevOptionsBlkdebug',
A
Aapo Vienamo 已提交
3961
      'blklogwrites':'BlockdevOptionsBlklogwrites',
3962 3963 3964
      'blkverify':  'BlockdevOptionsBlkverify',
      'bochs':      'BlockdevOptionsGenericFormat',
      'cloop':      'BlockdevOptionsGenericFormat',
M
Max Reitz 已提交
3965
      'copy-on-read':'BlockdevOptionsGenericFormat',
3966
      'dmg':        'BlockdevOptionsGenericFormat',
3967
      'file':       'BlockdevOptionsFile',
3968 3969
      'ftp':        'BlockdevOptionsCurlFtp',
      'ftps':       'BlockdevOptionsCurlFtps',
3970
      'gluster':    'BlockdevOptionsGluster',
3971
      'host_cdrom': 'BlockdevOptionsFile',
3972
      'host_device':'BlockdevOptionsFile',
3973 3974
      'http':       'BlockdevOptionsCurlHttp',
      'https':      'BlockdevOptionsCurlHttps',
K
Kevin Wolf 已提交
3975
      'iscsi':      'BlockdevOptionsIscsi',
3976
      'luks':       'BlockdevOptionsLUKS',
M
Max Reitz 已提交
3977
      'nbd':        'BlockdevOptionsNbd',
3978
      'nfs':        'BlockdevOptionsNfs',
3979 3980
      'null-aio':   'BlockdevOptionsNull',
      'null-co':    'BlockdevOptionsNull',
3981
      'nvme':       'BlockdevOptionsNVMe',
3982 3983
      'parallels':  'BlockdevOptionsGenericFormat',
      'qcow2':      'BlockdevOptionsQcow2',
3984
      'qcow':       'BlockdevOptionsQcow',
3985
      'qed':        'BlockdevOptionsGenericCOWFormat',
3986
      'quorum':     'BlockdevOptionsQuorum',
3987
      'raw':        'BlockdevOptionsRaw',
J
Jeff Cody 已提交
3988
      'rbd':        'BlockdevOptionsRbd',
3989 3990
      'replication': { 'type': 'BlockdevOptionsReplication',
                       'if': 'defined(CONFIG_REPLICATION)' },
3991
      'sheepdog':   'BlockdevOptionsSheepdog',
3992
      'ssh':        'BlockdevOptionsSsh',
3993
      'throttle':   'BlockdevOptionsThrottle',
3994 3995 3996 3997
      'vdi':        'BlockdevOptionsGenericFormat',
      'vhdx':       'BlockdevOptionsGenericFormat',
      'vmdk':       'BlockdevOptionsGenericCOWFormat',
      'vpc':        'BlockdevOptionsGenericFormat',
3998 3999
      'vvfat':      'BlockdevOptionsVVFAT',
      'vxhs':       'BlockdevOptionsVxHS'
4000 4001 4002
  } }

##
4003
# @BlockdevRef:
4004 4005 4006 4007
#
# Reference to a block device.
#
# @definition:      defines a new block device inline
4008
# @reference:       references the ID of an existing block device
4009
#
4010
# Since: 2.9
4011
##
4012
{ 'alternate': 'BlockdevRef',
4013 4014 4015
  'data': { 'definition': 'BlockdevOptions',
            'reference': 'str' } }

4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033
##
# @BlockdevRefOrNull:
#
# Reference to a block device.
#
# @definition:      defines a new block device inline
# @reference:       references the ID of an existing block device.
#                   An empty string means that no block device should
#                   be referenced.  Deprecated; use null instead.
# @null:            No block device should be referenced (since 2.10)
#
# Since: 2.9
##
{ 'alternate': 'BlockdevRefOrNull',
  'data': { 'definition': 'BlockdevOptions',
            'reference': 'str',
            'null': 'null' } }

4034 4035 4036
##
# @blockdev-add:
#
4037 4038 4039
# Creates a new block device. If the @id option is given at the top level, a
# BlockBackend will be created; otherwise, @node-name is mandatory at the top
# level and no BlockBackend will be created.
4040
#
4041
# Since: 2.9
4042 4043 4044 4045 4046 4047
#
# Example:
#
# 1.
# -> { "execute": "blockdev-add",
#      "arguments": {
4048 4049 4050 4051 4052 4053 4054 4055
#           "driver": "qcow2",
#           "node-name": "test1",
#           "file": {
#               "driver": "file",
#               "filename": "test.qcow2"
#            }
#       }
#     }
4056 4057 4058 4059 4060
# <- { "return": {} }
#
# 2.
# -> { "execute": "blockdev-add",
#      "arguments": {
4061 4062 4063 4064 4065
#           "driver": "qcow2",
#           "node-name": "node0",
#           "discard": "unmap",
#           "cache": {
#              "direct": true
4066 4067
#            },
#            "file": {
4068 4069
#              "driver": "file",
#              "filename": "/tmp/test.qcow2"
4070 4071
#            },
#            "backing": {
4072 4073 4074 4075
#               "driver": "raw",
#               "file": {
#                  "driver": "file",
#                  "filename": "/dev/fdset/4"
4076 4077 4078 4079 4080 4081 4082
#                }
#            }
#        }
#      }
#
# <- { "return": {} }
#
4083
##
4084
{ 'command': 'blockdev-add', 'data': 'BlockdevOptions', 'boxed': true }
4085

4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127
##
# @x-blockdev-reopen:
#
# Reopens a block device using the given set of options. Any option
# not specified will be reset to its default value regardless of its
# previous status. If an option cannot be changed or a particular
# driver does not support reopening then the command will return an
# error.
#
# The top-level @node-name option (from BlockdevOptions) must be
# specified and is used to select the block device to be reopened.
# Other @node-name options must be either omitted or set to the
# current name of the appropriate node. This command won't change any
# node name and any attempt to do it will result in an error.
#
# In the case of options that refer to child nodes, the behavior of
# this command depends on the value:
#
#  1) A set of options (BlockdevOptions): the child is reopened with
#     the specified set of options.
#
#  2) A reference to the current child: the child is reopened using
#     its existing set of options.
#
#  3) A reference to a different node: the current child is replaced
#     with the specified one.
#
#  4) NULL: the current child (if any) is detached.
#
# Options (1) and (2) are supported in all cases, but at the moment
# only @backing allows replacing or detaching an existing child.
#
# Unlike with blockdev-add, the @backing option must always be present
# unless the node being reopened does not have a backing file and its
# image does not have a default backing file name as part of its
# metadata.
#
# Since: 4.0
##
{ 'command': 'x-blockdev-reopen',
  'data': 'BlockdevOptions', 'boxed': true }

4128
##
4129
# @blockdev-del:
4130 4131
#
# Deletes a block device that has been added using blockdev-add.
4132 4133
# The command will fail if the node is attached to a device or is
# otherwise being used.
4134
#
4135 4136
# @node-name: Name of the graph node to delete.
#
4137
# Since: 2.9
4138 4139 4140 4141 4142
#
# Example:
#
# -> { "execute": "blockdev-add",
#      "arguments": {
4143 4144 4145 4146 4147 4148
#           "driver": "qcow2",
#           "node-name": "node0",
#           "file": {
#               "driver": "file",
#               "filename": "test.qcow2"
#           }
4149 4150 4151 4152
#      }
#    }
# <- { "return": {} }
#
4153
# -> { "execute": "blockdev-del",
4154 4155 4156 4157
#      "arguments": { "node-name": "node0" }
#    }
# <- { "return": {} }
#
4158
##
4159
{ 'command': 'blockdev-del', 'data': { 'node-name': 'str' } }
4160

K
Kevin Wolf 已提交
4161 4162 4163 4164 4165 4166 4167
##
# @BlockdevCreateOptionsFile:
#
# Driver specific image creation options for file.
#
# @filename         Filename for the new image file
# @size             Size of the virtual disk in bytes
4168 4169 4170 4171
# @preallocation    Preallocation mode for the new image (default: off;
#                   allowed values: off,
#                   falloc (if defined CONFIG_POSIX_FALLOCATE),
#                   full (if defined CONFIG_POSIX))
K
Kevin Wolf 已提交
4172 4173 4174 4175 4176 4177 4178 4179 4180 4181
# @nocow            Turn off copy-on-write (valid only on btrfs; default: off)
#
# Since: 2.12
##
{ 'struct': 'BlockdevCreateOptionsFile',
  'data': { 'filename':         'str',
            'size':             'size',
            '*preallocation':   'PreallocMode',
            '*nocow':           'bool' } }

K
Kevin Wolf 已提交
4182 4183 4184 4185 4186 4187 4188
##
# @BlockdevCreateOptionsGluster:
#
# Driver specific image creation options for gluster.
#
# @location         Where to store the new image file
# @size             Size of the virtual disk in bytes
4189 4190 4191 4192
# @preallocation    Preallocation mode for the new image (default: off;
#                   allowed values: off,
#                   falloc (if defined CONFIG_GLUSTERFS_FALLOCATE),
#                   full (if defined CONFIG_GLUSTERFS_ZEROFILL))
K
Kevin Wolf 已提交
4193 4194 4195 4196 4197 4198 4199 4200
#
# Since: 2.12
##
{ 'struct': 'BlockdevCreateOptionsGluster',
  'data': { 'location':         'BlockdevOptionsGluster',
            'size':             'size',
            '*preallocation':   'PreallocMode' } }

K
Kevin Wolf 已提交
4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215
##
# @BlockdevCreateOptionsLUKS:
#
# Driver specific image creation options for LUKS.
#
# @file             Node to create the image format on
# @size             Size of the virtual disk in bytes
#
# Since: 2.12
##
{ 'struct': 'BlockdevCreateOptionsLUKS',
  'base': 'QCryptoBlockCreateOptionsLUKS',
  'data': { 'file':             'BlockdevRef',
            'size':             'size' } }

K
Kevin Wolf 已提交
4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229
##
# @BlockdevCreateOptionsNfs:
#
# Driver specific image creation options for NFS.
#
# @location         Where to store the new image file
# @size             Size of the virtual disk in bytes
#
# Since: 2.12
##
{ 'struct': 'BlockdevCreateOptionsNfs',
  'data': { 'location':         'BlockdevOptionsNfs',
            'size':             'size' } }

K
Kevin Wolf 已提交
4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245
##
# @BlockdevCreateOptionsParallels:
#
# Driver specific image creation options for parallels.
#
# @file             Node to create the image format on
# @size             Size of the virtual disk in bytes
# @cluster-size     Cluster size in bytes (default: 1 MB)
#
# Since: 2.12
##
{ 'struct': 'BlockdevCreateOptionsParallels',
  'data': { 'file':             'BlockdevRef',
            'size':             'size',
            '*cluster-size':    'size' } }

K
Kevin Wolf 已提交
4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264
##
# @BlockdevCreateOptionsQcow:
#
# Driver specific image creation options for qcow.
#
# @file             Node to create the image format on
# @size             Size of the virtual disk in bytes
# @backing-file     File name of the backing file if a backing file
#                   should be used
# @encrypt          Encryption options if the image should be encrypted
#
# Since: 2.12
##
{ 'struct': 'BlockdevCreateOptionsQcow',
  'data': { 'file':             'BlockdevRef',
            'size':             'size',
            '*backing-file':    'str',
            '*encrypt':         'QCryptoBlockCreateOptions' } }

4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282
##
# @BlockdevQcow2Version:
#
# @v2:  The original QCOW2 format as introduced in qemu 0.10 (version 2)
# @v3:  The extended QCOW2 format as introduced in qemu 1.1 (version 3)
#
# Since: 2.12
##
{ 'enum': 'BlockdevQcow2Version',
  'data': [ 'v2', 'v3' ] }


##
# @BlockdevCreateOptionsQcow2:
#
# Driver specific image creation options for qcow2.
#
# @file             Node to create the image format on
4283 4284 4285
# @data-file        Node to use as an external data file in which all guest
#                   data is stored so that only metadata remains in the qcow2
#                   file (since: 4.0)
4286 4287 4288
# @data-file-raw    True if the external data file must stay valid as a
#                   standalone (read-only) raw image without looking at qcow2
#                   metadata (default: false; since: 4.0)
4289 4290 4291 4292 4293 4294 4295
# @size             Size of the virtual disk in bytes
# @version          Compatibility level (default: v3)
# @backing-file     File name of the backing file if a backing file
#                   should be used
# @backing-fmt      Name of the block driver to use for the backing file
# @encrypt          Encryption options if the image should be encrypted
# @cluster-size     qcow2 cluster size in bytes (default: 65536)
4296 4297
# @preallocation    Preallocation mode for the new image (default: off;
#                   allowed values: off, falloc, full, metadata)
4298 4299 4300 4301 4302 4303 4304
# @lazy-refcounts   True if refcounts may be updated lazily (default: off)
# @refcount-bits    Width of reference counts in bits (default: 16)
#
# Since: 2.12
##
{ 'struct': 'BlockdevCreateOptionsQcow2',
  'data': { 'file':             'BlockdevRef',
4305
            '*data-file':       'BlockdevRef',
4306
            '*data-file-raw':   'bool',
4307 4308 4309 4310 4311 4312 4313 4314 4315 4316
            'size':             'size',
            '*version':         'BlockdevQcow2Version',
            '*backing-file':    'str',
            '*backing-fmt':     'BlockdevDriver',
            '*encrypt':         'QCryptoBlockCreateOptions',
            '*cluster-size':    'size',
            '*preallocation':   'PreallocMode',
            '*lazy-refcounts':  'bool',
            '*refcount-bits':   'int' } }

K
Kevin Wolf 已提交
4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339
##
# @BlockdevCreateOptionsQed:
#
# Driver specific image creation options for qed.
#
# @file             Node to create the image format on
# @size             Size of the virtual disk in bytes
# @backing-file     File name of the backing file if a backing file
#                   should be used
# @backing-fmt      Name of the block driver to use for the backing file
# @cluster-size     Cluster size in bytes (default: 65536)
# @table-size       L1/L2 table size (in clusters)
#
# Since: 2.12
##
{ 'struct': 'BlockdevCreateOptionsQed',
  'data': { 'file':             'BlockdevRef',
            'size':             'size',
            '*backing-file':    'str',
            '*backing-fmt':     'BlockdevDriver',
            '*cluster-size':    'size',
            '*table-size':      'int' } }

K
Kevin Wolf 已提交
4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356
##
# @BlockdevCreateOptionsRbd:
#
# Driver specific image creation options for rbd/Ceph.
#
# @location         Where to store the new image file. This location cannot
#                   point to a snapshot.
# @size             Size of the virtual disk in bytes
# @cluster-size     RBD object size
#
# Since: 2.12
##
{ 'struct': 'BlockdevCreateOptionsRbd',
  'data': { 'location':         'BlockdevOptionsRbd',
            'size':             'size',
            '*cluster-size' :   'size' } }

4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403
##
# @BlockdevVmdkSubformat:
#
# Subformat options for VMDK images
#
# @monolithicSparse:     Single file image with sparse cluster allocation
#
# @monolithicFlat:       Single flat data image and a descriptor file
#
# @twoGbMaxExtentSparse: Data is split into 2GB (per virtual LBA) sparse extent
#                        files, in addition to a descriptor file
#
# @twoGbMaxExtentFlat:   Data is split into 2GB (per virtual LBA) flat extent
#                        files, in addition to a descriptor file
#
# @streamOptimized:      Single file image sparse cluster allocation, optimized
#                        for streaming over network.
#
# Since: 4.0
##
{ 'enum': 'BlockdevVmdkSubformat',
  'data': [ 'monolithicSparse', 'monolithicFlat', 'twoGbMaxExtentSparse',
            'twoGbMaxExtentFlat', 'streamOptimized'] }

##
# @BlockdevVmdkAdapterType:
#
# Adapter type info for VMDK images
#
# Since: 4.0
##
{ 'enum': 'BlockdevVmdkAdapterType',
  'data': [ 'ide', 'buslogic', 'lsilogic', 'legacyESX'] }

##
# @BlockdevCreateOptionsVmdk:
#
# Driver specific image creation options for VMDK.
#
# @file         Where to store the new image file. This refers to the image
#               file for monolithcSparse and streamOptimized format, or the
#               descriptor file for other formats.
# @size         Size of the virtual disk in bytes
# @extents      Where to store the data extents. Required for monolithcFlat,
#               twoGbMaxExtentSparse and twoGbMaxExtentFlat formats. For
#               monolithicFlat, only one entry is required; for
#               twoGbMaxExtent* formats, the number of entries required is
4404 4405
#               calculated as extent_number = virtual_size / 2GB. Providing
#               more extents than will be used is an error.
4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426
# @subformat    The subformat of the VMDK image. Default: "monolithicSparse".
# @backing-file The path of backing file. Default: no backing file is used.
# @adapter-type The adapter type used to fill in the descriptor. Default: ide.
# @hwversion    Hardware version. The meaningful options are "4" or "6".
#               Default: "4".
# @zeroed-grain Whether to enable zeroed-grain feature for sparse subformats.
#               Default: false.
#
# Since: 4.0
##
{ 'struct': 'BlockdevCreateOptionsVmdk',
  'data': { 'file':             'BlockdevRef',
            'size':             'size',
            '*extents':          ['BlockdevRef'],
            '*subformat':       'BlockdevVmdkSubformat',
            '*backing-file':    'str',
            '*adapter-type':    'BlockdevVmdkAdapterType',
            '*hwversion':       'str',
            '*zeroed-grain':    'bool' } }


4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471
##
# @SheepdogRedundancyType:
#
# @full             Create a fully replicated vdi with x copies
# @erasure-coded    Create an erasure coded vdi with x data strips and
#                   y parity strips
#
# Since: 2.12
##
{ 'enum': 'SheepdogRedundancyType',
  'data': [ 'full', 'erasure-coded' ] }

##
# @SheepdogRedundancyFull:
#
# @copies           Number of copies to use (between 1 and 31)
#
# Since: 2.12
##
{ 'struct': 'SheepdogRedundancyFull',
  'data': { 'copies': 'int' }}

##
# @SheepdogRedundancyErasureCoded:
#
# @data-strips      Number of data strips to use (one of {2,4,8,16})
# @parity-strips    Number of parity strips to use (between 1 and 15)
#
# Since: 2.12
##
{ 'struct': 'SheepdogRedundancyErasureCoded',
  'data': { 'data-strips': 'int',
            'parity-strips': 'int' }}

##
# @SheepdogRedundancy:
#
# Since: 2.12
##
{ 'union': 'SheepdogRedundancy',
  'base': { 'type': 'SheepdogRedundancyType' },
  'discriminator': 'type',
  'data': { 'full': 'SheepdogRedundancyFull',
            'erasure-coded': 'SheepdogRedundancyErasureCoded' } }

K
Kevin Wolf 已提交
4472 4473 4474 4475 4476 4477 4478 4479
##
# @BlockdevCreateOptionsSheepdog:
#
# Driver specific image creation options for Sheepdog.
#
# @location         Where to store the new image file
# @size             Size of the virtual disk in bytes
# @backing-file     File name of a base image
4480 4481
# @preallocation    Preallocation mode for the new image (default: off;
#                   allowed values: off, full)
K
Kevin Wolf 已提交
4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494
# @redundancy       Redundancy of the image
# @object-size      Object size of the image
#
# Since: 2.12
##
{ 'struct': 'BlockdevCreateOptionsSheepdog',
  'data': { 'location':         'BlockdevOptionsSheepdog',
            'size':             'size',
            '*backing-file':    'str',
            '*preallocation':   'PreallocMode',
            '*redundancy':      'SheepdogRedundancy',
            '*object-size':     'size' } }

K
Kevin Wolf 已提交
4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508
##
# @BlockdevCreateOptionsSsh:
#
# Driver specific image creation options for SSH.
#
# @location         Where to store the new image file
# @size             Size of the virtual disk in bytes
#
# Since: 2.12
##
{ 'struct': 'BlockdevCreateOptionsSsh',
  'data': { 'location':         'BlockdevOptionsSsh',
            'size':             'size' } }

4509 4510 4511 4512 4513 4514 4515
##
# @BlockdevCreateOptionsVdi:
#
# Driver specific image creation options for VDI.
#
# @file             Node to create the image format on
# @size             Size of the virtual disk in bytes
4516 4517
# @preallocation    Preallocation mode for the new image (default: off;
#                   allowed values: off, metadata)
4518 4519 4520 4521 4522 4523
#
# Since: 2.12
##
{ 'struct': 'BlockdevCreateOptionsVdi',
  'data': { 'file':             'BlockdevRef',
            'size':             'size',
4524
            '*preallocation':   'PreallocMode' } }
4525

K
Kevin Wolf 已提交
4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563
##
# @BlockdevVhdxSubformat:
#
# @dynamic: Growing image file
# @fixed:   Preallocated fixed-size image file
#
# Since: 2.12
##
{ 'enum': 'BlockdevVhdxSubformat',
  'data': [ 'dynamic', 'fixed' ] }

##
# @BlockdevCreateOptionsVhdx:
#
# Driver specific image creation options for vhdx.
#
# @file             Node to create the image format on
# @size             Size of the virtual disk in bytes
# @log-size         Log size in bytes, must be a multiple of 1 MB
#                   (default: 1 MB)
# @block-size       Block size in bytes, must be a multiple of 1 MB and not
#                   larger than 256 MB (default: automatically choose a block
#                   size depending on the image size)
# @subformat        vhdx subformat (default: dynamic)
# @block-state-zero Force use of payload blocks of type 'ZERO'. Non-standard,
#                   but default.  Do not set to 'off' when using 'qemu-img
#                   convert' with subformat=dynamic.
#
# Since: 2.12
##
{ 'struct': 'BlockdevCreateOptionsVhdx',
  'data': { 'file':                 'BlockdevRef',
            'size':                 'size',
            '*log-size':            'size',
            '*block-size':          'size',
            '*subformat':           'BlockdevVhdxSubformat',
            '*block-state-zero':    'bool' } }

K
Kevin Wolf 已提交
4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594
##
# @BlockdevVpcSubformat:
#
# @dynamic: Growing image file
# @fixed:   Preallocated fixed-size image file
#
# Since: 2.12
##
{ 'enum': 'BlockdevVpcSubformat',
  'data': [ 'dynamic', 'fixed' ] }

##
# @BlockdevCreateOptionsVpc:
#
# Driver specific image creation options for vpc (VHD).
#
# @file             Node to create the image format on
# @size             Size of the virtual disk in bytes
# @subformat        vhdx subformat (default: dynamic)
# @force-size       Force use of the exact byte size instead of rounding to the
#                   next size that can be represented in CHS geometry
#                   (default: false)
#
# Since: 2.12
##
{ 'struct': 'BlockdevCreateOptionsVpc',
  'data': { 'file':                 'BlockdevRef',
            'size':                 'size',
            '*subformat':           'BlockdevVpcSubformat',
            '*force-size':          'bool' } }

4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608
##
# @BlockdevCreateOptions:
#
# Options for creating an image format on a given node.
#
# @driver           block driver to create the image format
#
# Since: 2.12
##
{ 'union': 'BlockdevCreateOptions',
  'base': {
      'driver':         'BlockdevDriver' },
  'discriminator': 'driver',
  'data': {
K
Kevin Wolf 已提交
4609
      'file':           'BlockdevCreateOptionsFile',
K
Kevin Wolf 已提交
4610
      'gluster':        'BlockdevCreateOptionsGluster',
K
Kevin Wolf 已提交
4611
      'luks':           'BlockdevCreateOptionsLUKS',
K
Kevin Wolf 已提交
4612
      'nfs':            'BlockdevCreateOptionsNfs',
K
Kevin Wolf 已提交
4613
      'parallels':      'BlockdevCreateOptionsParallels',
K
Kevin Wolf 已提交
4614
      'qcow':           'BlockdevCreateOptionsQcow',
4615
      'qcow2':          'BlockdevCreateOptionsQcow2',
K
Kevin Wolf 已提交
4616
      'qed':            'BlockdevCreateOptionsQed',
K
Kevin Wolf 已提交
4617
      'rbd':            'BlockdevCreateOptionsRbd',
K
Kevin Wolf 已提交
4618
      'sheepdog':       'BlockdevCreateOptionsSheepdog',
K
Kevin Wolf 已提交
4619
      'ssh':            'BlockdevCreateOptionsSsh',
M
Max Reitz 已提交
4620
      'vdi':            'BlockdevCreateOptionsVdi',
K
Kevin Wolf 已提交
4621
      'vhdx':           'BlockdevCreateOptionsVhdx',
4622
      'vmdk':           'BlockdevCreateOptionsVmdk',
4623
      'vpc':            'BlockdevCreateOptionsVpc'
4624 4625
  } }

4626
##
4627
# @blockdev-create:
4628
#
4629 4630
# Starts a job to create an image format on a given node. The job is
# automatically finalized, but a manual job-dismiss is required.
4631
#
4632 4633 4634 4635 4636
# @job-id:          Identifier for the newly created job.
#
# @options:         Options for the image creation.
#
# Since: 3.0
4637
##
4638
{ 'command': 'blockdev-create',
4639 4640
  'data': { 'job-id': 'str',
            'options': 'BlockdevCreateOptions' } }
4641

M
Max Reitz 已提交
4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657
##
# @blockdev-open-tray:
#
# Opens a block device's tray. If there is a block driver state tree inserted as
# a medium, it will become inaccessible to the guest (but it will remain
# associated to the block device, so closing the tray will make it accessible
# again).
#
# If the tray was already open before, this will be a no-op.
#
# Once the tray opens, a DEVICE_TRAY_MOVED event is emitted. There are cases in
# which no such event will be generated, these include:
# - if the guest has locked the tray, @force is false and the guest does not
#   respond to the eject request
# - if the BlockBackend denoted by @device does not have a guest device attached
#   to it
4658
# - if the guest device does not have an actual tray
M
Max Reitz 已提交
4659
#
4660
# @device: Block device name (deprecated, use @id instead)
4661
#
4662
# @id:     The name or QOM path of the guest device (since: 2.8)
M
Max Reitz 已提交
4663
#
4664
# @force:  if false (the default), an eject request will be sent to
M
Max Reitz 已提交
4665 4666 4667 4668 4669
#          the guest if it has locked the tray (and the tray will not be opened
#          immediately); if true, the tray will be opened regardless of whether
#          it is locked
#
# Since: 2.5
4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684
#
# Example:
#
# -> { "execute": "blockdev-open-tray",
#      "arguments": { "id": "ide0-1-0" } }
#
# <- { "timestamp": { "seconds": 1418751016,
#                     "microseconds": 716996 },
#      "event": "DEVICE_TRAY_MOVED",
#      "data": { "device": "ide1-cd0",
#                "id": "ide0-1-0",
#                "tray-open": true } }
#
# <- { "return": {} }
#
M
Max Reitz 已提交
4685 4686
##
{ 'command': 'blockdev-open-tray',
4687 4688
  'data': { '*device': 'str',
            '*id': 'str',
M
Max Reitz 已提交
4689 4690
            '*force': 'bool' } }

M
Max Reitz 已提交
4691 4692 4693 4694 4695 4696 4697 4698 4699
##
# @blockdev-close-tray:
#
# Closes a block device's tray. If there is a block driver state tree associated
# with the block device (which is currently ejected), that tree will be loaded
# as the medium.
#
# If the tray was already closed before, this will be a no-op.
#
4700
# @device:  Block device name (deprecated, use @id instead)
4701
#
4702
# @id:      The name or QOM path of the guest device (since: 2.8)
M
Max Reitz 已提交
4703 4704
#
# Since: 2.5
4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719
#
# Example:
#
# -> { "execute": "blockdev-close-tray",
#      "arguments": { "id": "ide0-1-0" } }
#
# <- { "timestamp": { "seconds": 1418751345,
#                     "microseconds": 272147 },
#      "event": "DEVICE_TRAY_MOVED",
#      "data": { "device": "ide1-cd0",
#                "id": "ide0-1-0",
#                "tray-open": false } }
#
# <- { "return": {} }
#
M
Max Reitz 已提交
4720 4721
##
{ 'command': 'blockdev-close-tray',
4722 4723
  'data': { '*device': 'str',
            '*id': 'str' } }
M
Max Reitz 已提交
4724

M
Max Reitz 已提交
4725
##
4726
# @blockdev-remove-medium:
M
Max Reitz 已提交
4727 4728 4729 4730 4731 4732 4733
#
# Removes a medium (a block driver state tree) from a block device. That block
# device's tray must currently be open (unless there is no attached guest
# device).
#
# If the tray is open and there is no medium inserted, this will be a no-op.
#
4734
# @id:     The name or QOM path of the guest device
M
Max Reitz 已提交
4735
#
4736
# Since: 2.12
4737 4738 4739
#
# Example:
#
4740
# -> { "execute": "blockdev-remove-medium",
4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757
#      "arguments": { "id": "ide0-1-0" } }
#
# <- { "error": { "class": "GenericError",
#                 "desc": "Tray of device 'ide0-1-0' is not open" } }
#
# -> { "execute": "blockdev-open-tray",
#      "arguments": { "id": "ide0-1-0" } }
#
# <- { "timestamp": { "seconds": 1418751627,
#                     "microseconds": 549958 },
#      "event": "DEVICE_TRAY_MOVED",
#      "data": { "device": "ide1-cd0",
#                "id": "ide0-1-0",
#                "tray-open": true } }
#
# <- { "return": {} }
#
4758
# -> { "execute": "blockdev-remove-medium",
4759
#      "arguments": { "id": "ide0-1-0" } }
4760 4761 4762
#
# <- { "return": {} }
#
M
Max Reitz 已提交
4763
##
4764
{ 'command': 'blockdev-remove-medium',
4765
  'data': { 'id': 'str' } }
M
Max Reitz 已提交
4766

M
Max Reitz 已提交
4767
##
4768
# @blockdev-insert-medium:
M
Max Reitz 已提交
4769 4770 4771 4772 4773
#
# Inserts a medium (a block driver state tree) into a block device. That block
# device's tray must currently be open (unless there is no attached guest
# device) and there must be no medium inserted already.
#
4774
# @id:        The name or QOM path of the guest device
M
Max Reitz 已提交
4775 4776 4777
#
# @node-name: name of a node in the block driver state graph
#
4778
# Since: 2.12
4779 4780 4781 4782 4783
#
# Example:
#
# -> { "execute": "blockdev-add",
#      "arguments": {
4784 4785 4786 4787
#          "node-name": "node0",
#          "driver": "raw",
#          "file": { "driver": "file",
#                    "filename": "fedora.iso" } } }
4788 4789
# <- { "return": {} }
#
4790
# -> { "execute": "blockdev-insert-medium",
4791 4792 4793 4794 4795
#      "arguments": { "id": "ide0-1-0",
#                     "node-name": "node0" } }
#
# <- { "return": {} }
#
M
Max Reitz 已提交
4796
##
4797
{ 'command': 'blockdev-insert-medium',
4798
  'data': { 'id': 'str',
M
Max Reitz 已提交
4799 4800
            'node-name': 'str'} }

W
Wenchao Xia 已提交
4801

4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814
##
# @BlockdevChangeReadOnlyMode:
#
# Specifies the new read-only mode of a block device subject to the
# @blockdev-change-medium command.
#
# @retain:      Retains the current read-only mode
#
# @read-only:   Makes the device read-only
#
# @read-write:  Makes the device writable
#
# Since: 2.3
4815
#
4816 4817 4818 4819 4820
##
{ 'enum': 'BlockdevChangeReadOnlyMode',
  'data': ['retain', 'read-only', 'read-write'] }


M
Max Reitz 已提交
4821 4822 4823 4824 4825
##
# @blockdev-change-medium:
#
# Changes the medium inserted into a block device by ejecting the current medium
# and loading a new image file which is inserted as the new medium (this command
4826 4827
# combines blockdev-open-tray, blockdev-remove-medium, blockdev-insert-medium
# and blockdev-close-tray).
M
Max Reitz 已提交
4828
#
4829
# @device:          Block device name (deprecated, use @id instead)
4830
#
4831
# @id:              The name or QOM path of the guest device
4832
#                   (since: 2.8)
M
Max Reitz 已提交
4833 4834 4835
#
# @filename:        filename of the new image to be loaded
#
4836
# @format:          format to open the new image with (defaults to
M
Max Reitz 已提交
4837 4838
#                   the probed format)
#
4839
# @read-only-mode:  change the read-only mode of the device; defaults
4840 4841
#                   to 'retain'
#
M
Max Reitz 已提交
4842
# Since: 2.5
4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873
#
# Examples:
#
# 1. Change a removable medium
#
# -> { "execute": "blockdev-change-medium",
#      "arguments": { "id": "ide0-1-0",
#                     "filename": "/srv/images/Fedora-12-x86_64-DVD.iso",
#                     "format": "raw" } }
# <- { "return": {} }
#
# 2. Load a read-only medium into a writable drive
#
# -> { "execute": "blockdev-change-medium",
#      "arguments": { "id": "floppyA",
#                     "filename": "/srv/images/ro.img",
#                     "format": "raw",
#                     "read-only-mode": "retain" } }
#
# <- { "error":
#      { "class": "GenericError",
#        "desc": "Could not open '/srv/images/ro.img': Permission denied" } }
#
# -> { "execute": "blockdev-change-medium",
#      "arguments": { "id": "floppyA",
#                     "filename": "/srv/images/ro.img",
#                     "format": "raw",
#                     "read-only-mode": "read-only" } }
#
# <- { "return": {} }
#
M
Max Reitz 已提交
4874 4875
##
{ 'command': 'blockdev-change-medium',
4876 4877
  'data': { '*device': 'str',
            '*id': 'str',
M
Max Reitz 已提交
4878
            'filename': 'str',
4879 4880
            '*format': 'str',
            '*read-only-mode': 'BlockdevChangeReadOnlyMode' } }
M
Max Reitz 已提交
4881 4882


W
Wenchao Xia 已提交
4883
##
4884
# @BlockErrorAction:
W
Wenchao Xia 已提交
4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897
#
# An enumeration of action that has been taken when a DISK I/O occurs
#
# @ignore: error has been ignored
#
# @report: error has been reported to the device
#
# @stop: error caused VM to be stopped
#
# Since: 2.1
##
{ 'enum': 'BlockErrorAction',
  'data': [ 'ignore', 'report', 'stop' ] }
4898 4899


4900
##
4901
# @BLOCK_IMAGE_CORRUPTED:
4902
#
4903 4904 4905 4906
# Emitted when a disk image is being marked corrupt. The image can be
# identified by its device or node name. The 'device' field is always
# present for compatibility reasons, but it can be empty ("") if the
# image does not have a device name associated.
4907
#
4908 4909 4910 4911
# @device: device name. This is always present for compatibility
#          reasons, but it can be empty ("") if the image does not
#          have a device name associated.
#
4912
# @node-name: node name (Since: 2.4)
4913 4914
#
# @msg: informative message for human consumption, such as the kind of
W
Wenchao Xia 已提交
4915 4916
#       corruption being detected. It should not be parsed by machine as it is
#       not guaranteed to be stable
4917
#
4918
# @offset: if the corruption resulted from an image access, this is
4919
#          the host's access offset into the image
4920
#
4921
# @size: if the corruption resulted from an image access, this is
4922 4923
#        the access size
#
4924
# @fatal: if set, the image is marked corrupt and therefore unusable after this
4925 4926 4927
#        event and must be repaired (Since 2.2; before, every
#        BLOCK_IMAGE_CORRUPTED event was fatal)
#
4928 4929 4930
# Note: If action is "stop", a STOP event will eventually follow the
#       BLOCK_IO_ERROR event.
#
4931 4932 4933 4934 4935 4936 4937 4938
# Example:
#
# <- { "event": "BLOCK_IMAGE_CORRUPTED",
#      "data": { "device": "ide0-hd0", "node-name": "node0",
#                "msg": "Prevented active L1 table overwrite", "offset": 196608,
#                "size": 65536 },
#      "timestamp": { "seconds": 1378126126, "microseconds": 966463 } }
#
4939 4940 4941
# Since: 1.7
##
{ 'event': 'BLOCK_IMAGE_CORRUPTED',
4942 4943 4944 4945 4946 4947
  'data': { 'device'     : 'str',
            '*node-name' : 'str',
            'msg'        : 'str',
            '*offset'    : 'int',
            '*size'      : 'int',
            'fatal'      : 'bool' } }
4948

4949
##
4950
# @BLOCK_IO_ERROR:
4951 4952 4953
#
# Emitted when a disk I/O error occurs
#
4954 4955 4956 4957 4958 4959
# @device: device name. This is always present for compatibility
#          reasons, but it can be empty ("") if the image does not
#          have a device name associated.
#
# @node-name: node name. Note that errors may be reported for the root node
#             that is directly attached to a guest device rather than for the
4960 4961
#             node where the error occurred. The node name is not present if
#             the drive is empty. (Since: 2.8)
4962 4963 4964 4965 4966
#
# @operation: I/O operation
#
# @action: action that has been taken
#
4967
# @nospace: true if I/O error was caused due to a no-space
4968 4969 4970 4971
#           condition. This key is only present if query-block's
#           io-status is present, please see query-block documentation
#           for more information (since: 2.2)
#
4972 4973 4974 4975
# @reason: human readable string describing the error cause.
#          (This field is a debugging aid for humans, it should not
#           be parsed by applications) (since: 2.2)
#
4976 4977 4978 4979
# Note: If action is "stop", a STOP event will eventually follow the
# BLOCK_IO_ERROR event
#
# Since: 0.13.0
4980 4981 4982 4983 4984 4985 4986 4987 4988 4989
#
# Example:
#
# <- { "event": "BLOCK_IO_ERROR",
#      "data": { "device": "ide0-hd1",
#                "node-name": "#block212",
#                "operation": "write",
#                "action": "stop" },
#      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
#
4990 4991
##
{ 'event': 'BLOCK_IO_ERROR',
4992 4993
  'data': { 'device': 'str', '*node-name': 'str',
            'operation': 'IoOperationType',
4994 4995
            'action': 'BlockErrorAction', '*nospace': 'bool',
            'reason': 'str' } }
4996

4997
##
4998
# @BLOCK_JOB_COMPLETED:
4999 5000 5001 5002 5003
#
# Emitted when a block job has completed
#
# @type: job type
#
5004 5005
# @device: The job identifier. Originally the device name but other
#          values are allowed since QEMU 2.7
5006 5007 5008 5009 5010 5011 5012 5013
#
# @len: maximum progress value
#
# @offset: current progress value. On success this is equal to len.
#          On failure this is less than len
#
# @speed: rate limit, bytes per second
#
5014
# @error: error message. Only present on failure. This field
5015 5016 5017 5018 5019
#         contains a human-readable error message. There are no semantics
#         other than that streaming has failed and clients should not try to
#         interpret the error string
#
# Since: 1.1
5020 5021 5022 5023 5024 5025 5026 5027 5028
#
# Example:
#
# <- { "event": "BLOCK_JOB_COMPLETED",
#      "data": { "type": "stream", "device": "virtio-disk0",
#                "len": 10737418240, "offset": 10737418240,
#                "speed": 0 },
#      "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
#
5029 5030
##
{ 'event': 'BLOCK_JOB_COMPLETED',
5031
  'data': { 'type'  : 'JobType',
5032 5033 5034 5035 5036 5037 5038
            'device': 'str',
            'len'   : 'int',
            'offset': 'int',
            'speed' : 'int',
            '*error': 'str' } }

##
5039
# @BLOCK_JOB_CANCELLED:
5040 5041 5042 5043 5044
#
# Emitted when a block job has been cancelled
#
# @type: job type
#
5045 5046
# @device: The job identifier. Originally the device name but other
#          values are allowed since QEMU 2.7
5047 5048 5049 5050 5051 5052 5053 5054 5055
#
# @len: maximum progress value
#
# @offset: current progress value. On success this is equal to len.
#          On failure this is less than len
#
# @speed: rate limit, bytes per second
#
# Since: 1.1
5056 5057 5058 5059 5060 5061 5062 5063 5064
#
# Example:
#
# <- { "event": "BLOCK_JOB_CANCELLED",
#      "data": { "type": "stream", "device": "virtio-disk0",
#                "len": 10737418240, "offset": 134217728,
#                "speed": 0 },
#      "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
#
5065 5066
##
{ 'event': 'BLOCK_JOB_CANCELLED',
5067
  'data': { 'type'  : 'JobType',
5068 5069 5070 5071 5072
            'device': 'str',
            'len'   : 'int',
            'offset': 'int',
            'speed' : 'int' } }

5073
##
5074
# @BLOCK_JOB_ERROR:
5075 5076 5077
#
# Emitted when a block job encounters an error
#
5078 5079
# @device: The job identifier. Originally the device name but other
#          values are allowed since QEMU 2.7
5080 5081 5082 5083 5084 5085
#
# @operation: I/O operation
#
# @action: action that has been taken
#
# Since: 1.3
5086 5087 5088 5089 5090 5091 5092 5093 5094
#
# Example:
#
# <- { "event": "BLOCK_JOB_ERROR",
#      "data": { "device": "ide0-hd1",
#                "operation": "write",
#                "action": "stop" },
#      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
#
5095 5096 5097 5098
##
{ 'event': 'BLOCK_JOB_ERROR',
  'data': { 'device'   : 'str',
            'operation': 'IoOperationType',
5099
            'action'   : 'BlockErrorAction' } }
5100 5101

##
5102
# @BLOCK_JOB_READY:
5103 5104 5105
#
# Emitted when a block job is ready to complete
#
5106 5107
# @type: job type
#
5108 5109
# @device: The job identifier. Originally the device name but other
#          values are allowed since QEMU 2.7
5110
#
5111 5112 5113 5114 5115 5116 5117
# @len: maximum progress value
#
# @offset: current progress value. On success this is equal to len.
#          On failure this is less than len
#
# @speed: rate limit, bytes per second
#
5118 5119 5120 5121
# Note: The "ready to complete" status is always reset by a @BLOCK_JOB_ERROR
# event
#
# Since: 1.3
5122 5123 5124 5125 5126 5127 5128 5129
#
# Example:
#
# <- { "event": "BLOCK_JOB_READY",
#      "data": { "device": "drive0", "type": "mirror", "speed": 0,
#                "len": 2097152, "offset": 2097152 }
#      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
#
5130 5131
##
{ 'event': 'BLOCK_JOB_READY',
5132
  'data': { 'type'  : 'JobType',
5133 5134 5135 5136
            'device': 'str',
            'len'   : 'int',
            'offset': 'int',
            'speed' : 'int' } }
5137

5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158
##
# @BLOCK_JOB_PENDING:
#
# Emitted when a block job is awaiting explicit authorization to finalize graph
# changes via @block-job-finalize. If this job is part of a transaction, it will
# not emit this event until the transaction has converged first.
#
# @type: job type
#
# @id: The job identifier.
#
# Since: 2.12
#
# Example:
#
# <- { "event": "BLOCK_JOB_WAITING",
#      "data": { "device": "drive0", "type": "mirror" },
#      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
#
##
{ 'event': 'BLOCK_JOB_PENDING',
5159
  'data': { 'type'  : 'JobType',
5160 5161
            'id'    : 'str' } }

5162
##
5163
# @PreallocMode:
5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174
#
# Preallocation mode of QEMU image file
#
# @off: no preallocation
# @metadata: preallocate only for metadata
# @falloc: like @full preallocation but allocate disk space by
#          posix_fallocate() rather than writing zeros.
# @full: preallocate all data by writing zeros to device to ensure disk
#        space is really available. @full preallocation also sets up
#        metadata correctly.
#
5175
# Since: 2.2
5176 5177 5178
##
{ 'enum': 'PreallocMode',
  'data': [ 'off', 'metadata', 'falloc', 'full' ] }
5179 5180

##
5181
# @BLOCK_WRITE_THRESHOLD:
5182 5183 5184 5185 5186 5187
#
# Emitted when writes on block device reaches or exceeds the
# configured write threshold. For thin-provisioned devices, this
# means the device should be extended to avoid pausing for
# disk exhaustion.
# The event is one shot. Once triggered, it needs to be
5188
# re-registered with another block-set-write-threshold command.
5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203
#
# @node-name: graph node name on which the threshold was exceeded.
#
# @amount-exceeded: amount of data which exceeded the threshold, in bytes.
#
# @write-threshold: last configured threshold, in bytes.
#
# Since: 2.3
##
{ 'event': 'BLOCK_WRITE_THRESHOLD',
  'data': { 'node-name': 'str',
            'amount-exceeded': 'uint64',
            'write-threshold': 'uint64' } }

##
5204
# @block-set-write-threshold:
5205
#
5206 5207 5208 5209 5210 5211
# Change the write threshold for a block drive. An event will be
# delivered if a write to this block drive crosses the configured
# threshold.  The threshold is an offset, thus must be
# non-negative. Default is no write threshold. Setting the threshold
# to zero disables it.
#
5212 5213 5214 5215 5216 5217 5218 5219 5220
# This is useful to transparently resize thin-provisioned drives without
# the guest OS noticing.
#
# @node-name: graph node name on which the threshold must be set.
#
# @write-threshold: configured threshold for the block device, bytes.
#                   Use 0 to disable the threshold.
#
# Since: 2.3
5221 5222 5223 5224 5225 5226 5227 5228
#
# Example:
#
# -> { "execute": "block-set-write-threshold",
#      "arguments": { "node-name": "mydev",
#                     "write-threshold": 17179869184 } }
# <- { "return": {} }
#
5229 5230 5231
##
{ 'command': 'block-set-write-threshold',
  'data': { 'node-name': 'str', 'write-threshold': 'uint64' } }
5232 5233

##
5234
# @x-blockdev-change:
5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246
#
# Dynamically reconfigure the block driver state graph. It can be used
# to add, remove, insert or replace a graph node. Currently only the
# Quorum driver implements this feature to add or remove its child. This
# is useful to fix a broken quorum child.
#
# If @node is specified, it will be inserted under @parent. @child
# may not be specified in this case. If both @parent and @child are
# specified but @node is not, @child will be detached from @parent.
#
# @parent: the id or name of the parent node.
#
5247
# @child: the name of a child under the given parent node.
5248
#
5249
# @node: the name of the node that will be added.
5250 5251 5252 5253 5254
#
# Note: this command is experimental, and its API is not stable. It
# does not support all kinds of operations, all kinds of children, nor
# all block drivers.
#
5255 5256 5257 5258
# FIXME Removing children from a quorum node means introducing gaps in the
# child indices. This cannot be represented in the 'children' list of
# BlockdevOptionsQuorum, as returned by .bdrv_refresh_filename().
#
5259 5260 5261 5262
# Warning: The data in a new quorum child MUST be consistent with that of
# the rest of the array.
#
# Since: 2.7
5263 5264 5265 5266 5267 5268
#
# Example:
#
# 1. Add a new node to a quorum
# -> { "execute": "blockdev-add",
#      "arguments": {
5269 5270 5271 5272
#          "driver": "raw",
#          "node-name": "new_node",
#          "file": { "driver": "file",
#                    "filename": "test.raw" } } }
5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284
# <- { "return": {} }
# -> { "execute": "x-blockdev-change",
#      "arguments": { "parent": "disk1",
#                     "node": "new_node" } }
# <- { "return": {} }
#
# 2. Delete a quorum's node
# -> { "execute": "x-blockdev-change",
#      "arguments": { "parent": "disk1",
#                     "child": "children.1" } }
# <- { "return": {} }
#
5285 5286 5287 5288 5289
##
{ 'command': 'x-blockdev-change',
  'data' : { 'parent': 'str',
             '*child': 'str',
             '*node': 'str' } }
5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302

##
# @x-blockdev-set-iothread:
#
# Move @node and its children into the @iothread.  If @iothread is null then
# move @node and its children into the main loop.
#
# The node must not be attached to a BlockBackend.
#
# @node-name: the name of the block driver node
#
# @iothread: the name of the IOThread object or null for the main loop
#
5303 5304 5305
# @force: true if the node and its children should be moved when a BlockBackend
#         is already attached
#
5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327
# Note: this command is experimental and intended for test cases that need
# control over IOThreads only.
#
# Since: 2.12
#
# Example:
#
# 1. Move a node into an IOThread
# -> { "execute": "x-blockdev-set-iothread",
#      "arguments": { "node-name": "disk1",
#                     "iothread": "iothread0" } }
# <- { "return": {} }
#
# 2. Move a node into the main loop
# -> { "execute": "x-blockdev-set-iothread",
#      "arguments": { "node-name": "disk1",
#                     "iothread": null } }
# <- { "return": {} }
#
##
{ 'command': 'x-blockdev-set-iothread',
  'data' : { 'node-name': 'str',
5328 5329
             'iothread': 'StrOrNull',
             '*force': 'bool' } }