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