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