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