]> git.proxmox.com Git - mirror_qemu.git/blame - qapi/migration.json
vfio: Make vfio-pci device migration capable
[mirror_qemu.git] / qapi / migration.json
CommitLineData
48685a8e 1# -*- Mode: Python -*-
f7160f32 2# vim: filetype=python
48685a8e
MA
3#
4
5##
6# = Migration
7##
8
9{ 'include': 'common.json' }
9aca82ba 10{ 'include': 'sockets.json' }
48685a8e
MA
11
12##
13# @MigrationStats:
14#
15# Detailed migration status.
16#
17# @transferred: amount of bytes already transferred to the target VM
18#
19# @remaining: amount of bytes remaining to be transferred to the target VM
20#
21# @total: total amount of bytes involved in the migration process
22#
23# @duplicate: number of duplicate (zero) pages (since 1.2)
24#
25# @skipped: number of skipped zero pages (since 1.5)
26#
27# @normal: number of normal pages (since 1.2)
28#
29# @normal-bytes: number of normal bytes sent (since 1.2)
30#
31# @dirty-pages-rate: number of pages dirtied by second by the
26ec4e53 32# guest (since 1.3)
48685a8e
MA
33#
34# @mbps: throughput in megabits/sec. (since 1.6)
35#
36# @dirty-sync-count: number of times that dirty ram was synchronized (since 2.1)
37#
38# @postcopy-requests: The number of page requests received from the destination
26ec4e53 39# (since 2.7)
48685a8e
MA
40#
41# @page-size: The number of bytes per page for the various page-based
26ec4e53 42# statistics (since 2.10)
48685a8e 43#
a61c45bd
JQ
44# @multifd-bytes: The number of bytes sent through multifd (since 3.0)
45#
aecbfe9c 46# @pages-per-second: the number of memory pages transferred per second
26ec4e53 47# (Since 4.0)
aecbfe9c 48#
48685a8e
MA
49# Since: 0.14.0
50##
51{ 'struct': 'MigrationStats',
52 'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' ,
53 'duplicate': 'int', 'skipped': 'int', 'normal': 'int',
54 'normal-bytes': 'int', 'dirty-pages-rate' : 'int',
55 'mbps' : 'number', 'dirty-sync-count' : 'int',
a61c45bd 56 'postcopy-requests' : 'int', 'page-size' : 'int',
aecbfe9c 57 'multifd-bytes' : 'uint64', 'pages-per-second' : 'uint64' } }
48685a8e
MA
58
59##
60# @XBZRLECacheStats:
61#
62# Detailed XBZRLE migration cache statistics
63#
64# @cache-size: XBZRLE cache size
65#
66# @bytes: amount of bytes already transferred to the target VM
67#
68# @pages: amount of pages transferred to the target VM
69#
70# @cache-miss: number of cache miss
71#
72# @cache-miss-rate: rate of cache miss (since 2.1)
73#
e460a4b1
WW
74# @encoding-rate: rate of encoded bytes (since 5.1)
75#
48685a8e
MA
76# @overflow: number of overflows
77#
78# Since: 1.2
79##
80{ 'struct': 'XBZRLECacheStats',
81 'data': {'cache-size': 'int', 'bytes': 'int', 'pages': 'int',
82 'cache-miss': 'int', 'cache-miss-rate': 'number',
e460a4b1 83 'encoding-rate': 'number', 'overflow': 'int' } }
48685a8e 84
76e03000
XG
85##
86# @CompressionStats:
87#
88# Detailed migration compression statistics
89#
90# @pages: amount of pages compressed and transferred to the target VM
91#
92# @busy: count of times that no free thread was available to compress data
93#
94# @busy-rate: rate of thread busy
95#
96# @compressed-size: amount of bytes after compression
97#
98# @compression-rate: rate of compressed size
99#
100# Since: 3.1
101##
102{ 'struct': 'CompressionStats',
103 'data': {'pages': 'int', 'busy': 'int', 'busy-rate': 'number',
dbb28bc8 104 'compressed-size': 'int', 'compression-rate': 'number' } }
76e03000 105
48685a8e
MA
106##
107# @MigrationStatus:
108#
109# An enumeration of migration status.
110#
111# @none: no migration has ever happened.
112#
113# @setup: migration process has been initiated.
114#
115# @cancelling: in the process of cancelling migration.
116#
117# @cancelled: cancelling migration is finished.
118#
119# @active: in the process of doing migration.
120#
121# @postcopy-active: like active, but now in postcopy mode. (since 2.5)
122#
51f63ec7 123# @postcopy-paused: during postcopy but paused. (since 3.0)
a688d2c1 124#
51f63ec7 125# @postcopy-recover: trying to recover from a paused postcopy. (since 3.0)
135b87b4 126#
48685a8e
MA
127# @completed: migration is finished.
128#
129# @failed: some error occurred during migration process.
130#
131# @colo: VM is in the process of fault tolerance, VM can not get into this
132# state unless colo capability is enabled for migration. (since 2.8)
133#
31e06077
DDAG
134# @pre-switchover: Paused before device serialisation. (since 2.11)
135#
136# @device: During device serialisation when pause-before-switchover is enabled
26ec4e53 137# (since 2.11)
31e06077 138#
c7e0acd5
JF
139# @wait-unplug: wait for device unplug request by guest OS to be completed.
140# (since 4.2)
141#
48685a8e
MA
142# Since: 2.3
143#
144##
145{ 'enum': 'MigrationStatus',
146 'data': [ 'none', 'setup', 'cancelling', 'cancelled',
a688d2c1 147 'active', 'postcopy-active', 'postcopy-paused',
135b87b4 148 'postcopy-recover', 'completed', 'failed', 'colo',
c7e0acd5 149 'pre-switchover', 'device', 'wait-unplug' ] }
48685a8e
MA
150
151##
152# @MigrationInfo:
153#
154# Information about current migration process.
155#
156# @status: @MigrationStatus describing the current migration status.
157# If this field is not returned, no migration process
158# has been initiated
159#
160# @ram: @MigrationStats containing detailed migration
161# status, only returned if status is 'active' or
162# 'completed'(since 1.2)
163#
164# @disk: @MigrationStats containing detailed disk migration
165# status, only returned if status is 'active' and it is a block
166# migration
167#
168# @xbzrle-cache: @XBZRLECacheStats containing detailed XBZRLE
169# migration statistics, only returned if XBZRLE feature is on and
170# status is 'active' or 'completed' (since 1.2)
171#
172# @total-time: total amount of milliseconds since migration started.
26ec4e53
PM
173# If migration has ended, it returns the total migration
174# time. (since 1.2)
48685a8e
MA
175#
176# @downtime: only present when migration finishes correctly
26ec4e53
PM
177# total downtime in milliseconds for the guest.
178# (since 1.3)
48685a8e
MA
179#
180# @expected-downtime: only present while migration is active
26ec4e53
PM
181# expected downtime in milliseconds for the guest in last walk
182# of the dirty bitmap. (since 1.3)
48685a8e 183#
a660eed4
PM
184# @setup-time: amount of setup time in milliseconds *before* the
185# iterations begin but *after* the QMP command is issued. This is designed
26ec4e53
PM
186# to provide an accounting of any activities (such as RDMA pinning) which
187# may be expensive, but do not actually occur during the iterative
188# migration rounds themselves. (since 1.6)
48685a8e
MA
189#
190# @cpu-throttle-percentage: percentage of time guest cpus are being
26ec4e53
PM
191# throttled during auto-converge. This is only present when auto-converge
192# has started throttling guest cpus. (Since 2.7)
48685a8e
MA
193#
194# @error-desc: the human readable error description string, when
195# @status is 'failed'. Clients should not attempt to parse the
196# error strings. (Since 2.7)
65ace060
AP
197#
198# @postcopy-blocktime: total time when all vCPU were blocked during postcopy
26ec4e53
PM
199# live migration. This is only present when the postcopy-blocktime
200# migration capability is enabled. (Since 3.0)
65ace060 201#
5e50cae4 202# @postcopy-vcpu-blocktime: list of the postcopy blocktime per vCPU. This is
26ec4e53
PM
203# only present when the postcopy-blocktime migration capability
204# is enabled. (Since 3.0)
65ace060 205#
76e03000 206# @compression: migration compression statistics, only returned if compression
26ec4e53 207# feature is on and status is 'active' or 'completed' (Since 3.1)
48685a8e 208#
9aca82ba
JQ
209# @socket-address: Only used for tcp, to know what the real port is (Since 4.0)
210#
48685a8e
MA
211# Since: 0.14.0
212##
213{ 'struct': 'MigrationInfo',
214 'data': {'*status': 'MigrationStatus', '*ram': 'MigrationStats',
215 '*disk': 'MigrationStats',
216 '*xbzrle-cache': 'XBZRLECacheStats',
217 '*total-time': 'int',
218 '*expected-downtime': 'int',
219 '*downtime': 'int',
220 '*setup-time': 'int',
221 '*cpu-throttle-percentage': 'int',
65ace060
AP
222 '*error-desc': 'str',
223 '*postcopy-blocktime' : 'uint32',
76e03000 224 '*postcopy-vcpu-blocktime': ['uint32'],
9aca82ba
JQ
225 '*compression': 'CompressionStats',
226 '*socket-address': ['SocketAddress'] } }
48685a8e
MA
227
228##
229# @query-migrate:
230#
231# Returns information about current migration process. If migration
232# is active there will be another json-object with RAM migration
233# status and if block migration is active another one with block
234# migration status.
235#
236# Returns: @MigrationInfo
237#
238# Since: 0.14.0
239#
240# Example:
241#
242# 1. Before the first migration
243#
244# -> { "execute": "query-migrate" }
245# <- { "return": {} }
246#
247# 2. Migration is done and has succeeded
248#
249# -> { "execute": "query-migrate" }
250# <- { "return": {
251# "status": "completed",
be1d2c49 252# "total-time":12345,
253# "setup-time":12345,
254# "downtime":12345,
48685a8e
MA
255# "ram":{
256# "transferred":123,
257# "remaining":123,
258# "total":246,
48685a8e
MA
259# "duplicate":123,
260# "normal":123,
261# "normal-bytes":123456,
262# "dirty-sync-count":15
263# }
264# }
265# }
266#
267# 3. Migration is done and has failed
268#
269# -> { "execute": "query-migrate" }
270# <- { "return": { "status": "failed" } }
271#
272# 4. Migration is being performed and is not a block migration:
273#
274# -> { "execute": "query-migrate" }
275# <- {
276# "return":{
277# "status":"active",
be1d2c49 278# "total-time":12345,
279# "setup-time":12345,
280# "expected-downtime":12345,
48685a8e
MA
281# "ram":{
282# "transferred":123,
283# "remaining":123,
284# "total":246,
48685a8e
MA
285# "duplicate":123,
286# "normal":123,
287# "normal-bytes":123456,
288# "dirty-sync-count":15
289# }
290# }
291# }
292#
293# 5. Migration is being performed and is a block migration:
294#
295# -> { "execute": "query-migrate" }
296# <- {
297# "return":{
298# "status":"active",
be1d2c49 299# "total-time":12345,
300# "setup-time":12345,
301# "expected-downtime":12345,
48685a8e
MA
302# "ram":{
303# "total":1057024,
304# "remaining":1053304,
305# "transferred":3720,
48685a8e
MA
306# "duplicate":123,
307# "normal":123,
308# "normal-bytes":123456,
309# "dirty-sync-count":15
310# },
311# "disk":{
312# "total":20971520,
313# "remaining":20880384,
314# "transferred":91136
315# }
316# }
317# }
318#
319# 6. Migration is being performed and XBZRLE is active:
320#
321# -> { "execute": "query-migrate" }
322# <- {
323# "return":{
324# "status":"active",
be1d2c49 325# "total-time":12345,
326# "setup-time":12345,
327# "expected-downtime":12345,
48685a8e
MA
328# "ram":{
329# "total":1057024,
330# "remaining":1053304,
331# "transferred":3720,
48685a8e
MA
332# "duplicate":10,
333# "normal":3333,
334# "normal-bytes":3412992,
335# "dirty-sync-count":15
336# },
337# "xbzrle-cache":{
338# "cache-size":67108864,
339# "bytes":20971520,
340# "pages":2444343,
341# "cache-miss":2244,
342# "cache-miss-rate":0.123,
e460a4b1 343# "encoding-rate":80.1,
48685a8e
MA
344# "overflow":34434
345# }
346# }
347# }
348#
349##
350{ 'command': 'query-migrate', 'returns': 'MigrationInfo' }
351
352##
353# @MigrationCapability:
354#
355# Migration capabilities enumeration
356#
357# @xbzrle: Migration supports xbzrle (Xor Based Zero Run Length Encoding).
358# This feature allows us to minimize migration traffic for certain work
359# loads, by sending compressed difference of the pages
360#
361# @rdma-pin-all: Controls whether or not the entire VM memory footprint is
26ec4e53
PM
362# mlock()'d on demand or all at once. Refer to docs/rdma.txt for usage.
363# Disabled by default. (since 2.0)
48685a8e
MA
364#
365# @zero-blocks: During storage migration encode blocks of zeroes efficiently. This
26ec4e53
PM
366# essentially saves 1MB of zeroes per block on the wire. Enabling requires
367# source and target VM to support this feature. To enable it is sufficient
368# to enable the capability on the source VM. The feature is disabled by
369# default. (since 1.6)
48685a8e
MA
370#
371# @compress: Use multiple compression threads to accelerate live migration.
26ec4e53
PM
372# This feature can help to reduce the migration traffic, by sending
373# compressed pages. Please note that if compress and xbzrle are both
374# on, compress only takes effect in the ram bulk stage, after that,
375# it will be disabled and only xbzrle takes effect, this can help to
376# minimize migration traffic. The feature is disabled by default.
377# (since 2.4 )
48685a8e
MA
378#
379# @events: generate events for each migration state change
380# (since 2.4 )
381#
382# @auto-converge: If enabled, QEMU will automatically throttle down the guest
26ec4e53 383# to speed up convergence of RAM migration. (since 1.6)
48685a8e
MA
384#
385# @postcopy-ram: Start executing on the migration target before all of RAM has
26ec4e53
PM
386# been migrated, pulling the remaining pages along as needed. The
387# capacity must have the same setting on both source and target
388# or migration will not even start. NOTE: If the migration fails during
389# postcopy the VM will fail. (since 2.6)
48685a8e
MA
390#
391# @x-colo: If enabled, migration will never end, and the state of the VM on the
26ec4e53
PM
392# primary side will be migrated continuously to the VM on secondary
393# side, this process is called COarse-Grain LOck Stepping (COLO) for
394# Non-stop Service. (since 2.8)
48685a8e
MA
395#
396# @release-ram: if enabled, qemu will free the migrated ram pages on the source
26ec4e53 397# during postcopy-ram migration. (since 2.9)
48685a8e
MA
398#
399# @block: If enabled, QEMU will also migrate the contents of all block
26ec4e53
PM
400# devices. Default is disabled. A possible alternative uses
401# mirror jobs to a builtin NBD server on the destination, which
402# offers more flexibility.
403# (Since 2.10)
48685a8e
MA
404#
405# @return-path: If enabled, migration will use the return path even
406# for precopy. (since 2.10)
407#
93fbd031 408# @pause-before-switchover: Pause outgoing migration before serialising device
26ec4e53 409# state and before disabling block IO (since 2.11)
93fbd031 410#
cbfd6c95 411# @multifd: Use more than one fd for migration (since 4.0)
30126bbf 412#
55efc8c2
VSO
413# @dirty-bitmaps: If enabled, QEMU will migrate named dirty bitmaps.
414# (since 2.12)
415#
f22f928e 416# @postcopy-blocktime: Calculate downtime for postcopy live migration
26ec4e53 417# (since 3.0)
f22f928e 418#
0f073f44 419# @late-block-activate: If enabled, the destination will not activate block
26ec4e53
PM
420# devices (and thus take locks) immediately at the end of migration.
421# (since 3.0)
0f073f44 422#
18269069
YK
423# @x-ignore-shared: If enabled, QEMU will not migrate shared memory (since 4.0)
424#
b9d68df6
YK
425# @validate-uuid: Send the UUID of the source to allow the destination
426# to ensure it is the same. (since 4.2)
427#
48685a8e
MA
428# Since: 1.2
429##
430{ 'enum': 'MigrationCapability',
431 'data': ['xbzrle', 'rdma-pin-all', 'auto-converge', 'zero-blocks',
432 'compress', 'events', 'postcopy-ram', 'x-colo', 'release-ram',
cbfd6c95 433 'block', 'return-path', 'pause-before-switchover', 'multifd',
18269069 434 'dirty-bitmaps', 'postcopy-blocktime', 'late-block-activate',
b9d68df6 435 'x-ignore-shared', 'validate-uuid' ] }
48685a8e
MA
436
437##
438# @MigrationCapabilityStatus:
439#
440# Migration capability information
441#
442# @capability: capability enum
443#
444# @state: capability state bool
445#
446# Since: 1.2
447##
448{ 'struct': 'MigrationCapabilityStatus',
449 'data': { 'capability' : 'MigrationCapability', 'state' : 'bool' } }
450
451##
452# @migrate-set-capabilities:
453#
454# Enable/Disable the following migration capabilities (like xbzrle)
455#
456# @capabilities: json array of capability modifications to make
457#
458# Since: 1.2
459#
460# Example:
461#
462# -> { "execute": "migrate-set-capabilities" , "arguments":
463# { "capabilities": [ { "capability": "xbzrle", "state": true } ] } }
464#
465##
466{ 'command': 'migrate-set-capabilities',
467 'data': { 'capabilities': ['MigrationCapabilityStatus'] } }
468
469##
470# @query-migrate-capabilities:
471#
472# Returns information about the current migration capabilities status
473#
474# Returns: @MigrationCapabilitiesStatus
475#
476# Since: 1.2
477#
478# Example:
479#
480# -> { "execute": "query-migrate-capabilities" }
481# <- { "return": [
482# {"state": false, "capability": "xbzrle"},
483# {"state": false, "capability": "rdma-pin-all"},
484# {"state": false, "capability": "auto-converge"},
485# {"state": false, "capability": "zero-blocks"},
486# {"state": false, "capability": "compress"},
487# {"state": true, "capability": "events"},
488# {"state": false, "capability": "postcopy-ram"},
489# {"state": false, "capability": "x-colo"}
490# ]}
491#
492##
493{ 'command': 'query-migrate-capabilities', 'returns': ['MigrationCapabilityStatus']}
494
96eef042
JQ
495##
496# @MultiFDCompression:
497#
498# An enumeration of multifd compression methods.
499#
500# @none: no compression.
7ec2c2b3 501# @zlib: use zlib compression method.
87dc6f5f 502# @zstd: use zstd compression method.
96eef042
JQ
503#
504# Since: 5.0
505#
506##
507{ 'enum': 'MultiFDCompression',
87dc6f5f
JQ
508 'data': [ 'none', 'zlib',
509 { 'name': 'zstd', 'if': 'defined(CONFIG_ZSTD)' } ] }
96eef042 510
31e4c354
HR
511##
512# @BitmapMigrationBitmapAlias:
513#
514# @name: The name of the bitmap.
515#
516# @alias: An alias name for migration (for example the bitmap name on
517# the opposite site).
518#
519# Since: 5.2
520##
521{ 'struct': 'BitmapMigrationBitmapAlias',
522 'data': {
523 'name': 'str',
524 'alias': 'str'
525 } }
526
527##
528# @BitmapMigrationNodeAlias:
529#
530# Maps a block node name and the bitmaps it has to aliases for dirty
531# bitmap migration.
532#
533# @node-name: A block node name.
534#
535# @alias: An alias block node name for migration (for example the
536# node name on the opposite site).
537#
538# @bitmaps: Mappings for the bitmaps on this node.
539#
540# Since: 5.2
541##
542{ 'struct': 'BitmapMigrationNodeAlias',
543 'data': {
544 'node-name': 'str',
545 'alias': 'str',
546 'bitmaps': [ 'BitmapMigrationBitmapAlias' ]
547 } }
548
48685a8e
MA
549##
550# @MigrationParameter:
551#
552# Migration parameters enumeration
553#
ee3d96ba 554# @announce-initial: Initial delay (in milliseconds) before sending the first
26ec4e53 555# announce (Since 4.0)
ee3d96ba
DDAG
556#
557# @announce-max: Maximum delay (in milliseconds) between packets in the
26ec4e53 558# announcement (Since 4.0)
ee3d96ba
DDAG
559#
560# @announce-rounds: Number of self-announce packets sent after migration
26ec4e53 561# (Since 4.0)
ee3d96ba
DDAG
562#
563# @announce-step: Increase in delay (in milliseconds) between subsequent
26ec4e53 564# packets in the announcement (Since 4.0)
ee3d96ba 565#
48685a8e 566# @compress-level: Set the compression level to be used in live migration,
26ec4e53
PM
567# the compression level is an integer between 0 and 9, where 0 means
568# no compression, 1 means the best compression speed, and 9 means best
569# compression ratio which will consume more CPU.
48685a8e
MA
570#
571# @compress-threads: Set compression thread count to be used in live migration,
26ec4e53 572# the compression thread count is an integer between 1 and 255.
48685a8e 573#
1d58872a
XG
574# @compress-wait-thread: Controls behavior when all compression threads are
575# currently busy. If true (default), wait for a free
576# compression thread to become available; otherwise,
577# send the page uncompressed. (Since 3.1)
578#
48685a8e 579# @decompress-threads: Set decompression thread count to be used in live
26ec4e53
PM
580# migration, the decompression thread count is an integer between 1
581# and 255. Usually, decompression is at least 4 times as fast as
582# compression, so set the decompress-threads to the number about 1/4
583# of compress-threads is adequate.
48685a8e 584#
dc14a470
KZ
585# @throttle-trigger-threshold: The ratio of bytes_dirty_period and bytes_xfer_period
586# to trigger throttling. It is expressed as percentage.
587# The default value is 50. (Since 5.0)
588#
48685a8e
MA
589# @cpu-throttle-initial: Initial percentage of time guest cpus are throttled
590# when migration auto-converge is activated. The
591# default value is 20. (Since 2.7)
592#
593# @cpu-throttle-increment: throttle percentage increase each time
594# auto-converge detects that migration is not making
595# progress. The default value is 10. (Since 2.7)
596#
cbbf8182
KZ
597# @cpu-throttle-tailslow: Make CPU throttling slower at tail stage
598# At the tail stage of throttling, the Guest is very
599# sensitive to CPU percentage while the @cpu-throttle
600# -increment is excessive usually at tail stage.
601# If this parameter is true, we will compute the ideal
602# CPU percentage used by the Guest, which may exactly make
603# the dirty rate match the dirty rate threshold. Then we
604# will choose a smaller throttle increment between the
605# one specified by @cpu-throttle-increment and the one
606# generated by ideal CPU percentage.
607# Therefore, it is compatible to traditional throttling,
608# meanwhile the throttle increment won't be excessive
609# at tail stage.
610# The default value is false. (Since 5.1)
611#
48685a8e
MA
612# @tls-creds: ID of the 'tls-creds' object that provides credentials for
613# establishing a TLS connection over the migration data channel.
614# On the outgoing side of the migration, the credentials must
615# be for a 'client' endpoint, while for the incoming side the
616# credentials must be for a 'server' endpoint. Setting this
617# will enable TLS for all migrations. The default is unset,
618# resulting in unsecured migration at the QEMU level. (Since 2.7)
619#
620# @tls-hostname: hostname of the target host for the migration. This is
621# required when using x509 based TLS credentials and the
622# migration URI does not already include a hostname. For
623# example if using fd: or exec: based migration, the
624# hostname must be provided so that the server's x509
625# certificate identity can be validated. (Since 2.7)
626#
d2f1d29b
DB
627# @tls-authz: ID of the 'authz' object subclass that provides access control
628# checking of the TLS x509 certificate distinguished name.
629# This object is only resolved at time of use, so can be deleted
630# and recreated on the fly while the migration server is active.
631# If missing, it will default to denying access (Since 4.0)
632#
48685a8e
MA
633# @max-bandwidth: to set maximum speed for migration. maximum speed in
634# bytes per second. (Since 2.8)
635#
636# @downtime-limit: set maximum tolerated downtime for migration. maximum
637# downtime in milliseconds (Since 2.8)
638#
639# @x-checkpoint-delay: The delay time (in ms) between two COLO checkpoints in
26ec4e53 640# periodic mode. (Since 2.8)
48685a8e
MA
641#
642# @block-incremental: Affects how much storage is migrated when the
26ec4e53
PM
643# block migration capability is enabled. When false, the entire
644# storage backing chain is migrated into a flattened image at
645# the destination; when true, only the active qcow2 layer is
646# migrated and the destination must already have access to the
647# same backing chain as was used on the source. (since 2.10)
48685a8e 648#
cbfd6c95
JQ
649# @multifd-channels: Number of channels used to migrate data in
650# parallel. This is the same number that the
651# number of sockets used for migration. The
652# default value is 2 (since 4.0)
4075fb1c 653#
73af8dd8
JQ
654# @xbzrle-cache-size: cache size to be used by XBZRLE migration. It
655# needs to be a multiple of the target page size
656# and a power of 2
657# (Since 2.11)
658#
7e555c6c 659# @max-postcopy-bandwidth: Background transfer bandwidth during postcopy.
26ec4e53
PM
660# Defaults to 0 (unlimited). In bytes per second.
661# (Since 3.0)
4cbc9c7f
LQ
662#
663# @max-cpu-throttle: maximum cpu throttle percentage.
664# Defaults to 99. (Since 3.1)
ee3d96ba 665#
96eef042
JQ
666# @multifd-compression: Which compression method to use.
667# Defaults to none. (Since 5.0)
668#
9004db48 669# @multifd-zlib-level: Set the compression level to be used in live
76dd0f84
PM
670# migration, the compression level is an integer between 0
671# and 9, where 0 means no compression, 1 means the best
672# compression speed, and 9 means best compression ratio which
673# will consume more CPU.
674# Defaults to 1. (Since 5.0)
9004db48 675#
6a9ad154 676# @multifd-zstd-level: Set the compression level to be used in live
76dd0f84
PM
677# migration, the compression level is an integer between 0
678# and 20, where 0 means no compression, 1 means the best
679# compression speed, and 20 means best compression ratio which
680# will consume more CPU.
681# Defaults to 1. (Since 5.0)
6a9ad154 682#
31e4c354 683# @block-bitmap-mapping: Maps block nodes and bitmaps on them to
826bd069
PM
684# aliases for the purpose of dirty bitmap migration. Such
685# aliases may for example be the corresponding names on the
686# opposite site.
687# The mapping must be one-to-one, but not necessarily
688# complete: On the source, unmapped bitmaps and all bitmaps
689# on unmapped nodes will be ignored. On the destination,
690# encountering an unmapped alias in the incoming migration
691# stream will result in a report, and all further bitmap
692# migration data will then be discarded.
693# Note that the destination does not know about bitmaps it
694# does not receive, so there is no limitation or requirement
695# regarding the number of bitmaps received, or how they are
696# named, or on which nodes they are placed.
697# By default (when this parameter has never been set), bitmap
698# names are mapped to themselves. Nodes are mapped to their
699# block device name if there is one, and to their node name
700# otherwise. (Since 5.2)
31e4c354 701#
48685a8e
MA
702# Since: 2.4
703##
704{ 'enum': 'MigrationParameter',
ee3d96ba
DDAG
705 'data': ['announce-initial', 'announce-max',
706 'announce-rounds', 'announce-step',
707 'compress-level', 'compress-threads', 'decompress-threads',
dc14a470 708 'compress-wait-thread', 'throttle-trigger-threshold',
48685a8e 709 'cpu-throttle-initial', 'cpu-throttle-increment',
cbbf8182 710 'cpu-throttle-tailslow',
d2f1d29b 711 'tls-creds', 'tls-hostname', 'tls-authz', 'max-bandwidth',
4075fb1c 712 'downtime-limit', 'x-checkpoint-delay', 'block-incremental',
cbfd6c95 713 'multifd-channels',
4cbc9c7f 714 'xbzrle-cache-size', 'max-postcopy-bandwidth',
9004db48 715 'max-cpu-throttle', 'multifd-compression',
31e4c354
HR
716 'multifd-zlib-level' ,'multifd-zstd-level',
717 'block-bitmap-mapping' ] }
48685a8e
MA
718
719##
720# @MigrateSetParameters:
721#
ee3d96ba 722# @announce-initial: Initial delay (in milliseconds) before sending the first
26ec4e53 723# announce (Since 4.0)
ee3d96ba
DDAG
724#
725# @announce-max: Maximum delay (in milliseconds) between packets in the
26ec4e53 726# announcement (Since 4.0)
ee3d96ba
DDAG
727#
728# @announce-rounds: Number of self-announce packets sent after migration
26ec4e53 729# (Since 4.0)
ee3d96ba
DDAG
730#
731# @announce-step: Increase in delay (in milliseconds) between subsequent
26ec4e53 732# packets in the announcement (Since 4.0)
ee3d96ba 733#
48685a8e
MA
734# @compress-level: compression level
735#
736# @compress-threads: compression thread count
737#
1d58872a
XG
738# @compress-wait-thread: Controls behavior when all compression threads are
739# currently busy. If true (default), wait for a free
740# compression thread to become available; otherwise,
741# send the page uncompressed. (Since 3.1)
742#
48685a8e
MA
743# @decompress-threads: decompression thread count
744#
dc14a470
KZ
745# @throttle-trigger-threshold: The ratio of bytes_dirty_period and bytes_xfer_period
746# to trigger throttling. It is expressed as percentage.
747# The default value is 50. (Since 5.0)
748#
48685a8e
MA
749# @cpu-throttle-initial: Initial percentage of time guest cpus are
750# throttled when migration auto-converge is activated.
751# The default value is 20. (Since 2.7)
752#
753# @cpu-throttle-increment: throttle percentage increase each time
754# auto-converge detects that migration is not making
755# progress. The default value is 10. (Since 2.7)
756#
cbbf8182
KZ
757# @cpu-throttle-tailslow: Make CPU throttling slower at tail stage
758# At the tail stage of throttling, the Guest is very
759# sensitive to CPU percentage while the @cpu-throttle
760# -increment is excessive usually at tail stage.
761# If this parameter is true, we will compute the ideal
762# CPU percentage used by the Guest, which may exactly make
763# the dirty rate match the dirty rate threshold. Then we
764# will choose a smaller throttle increment between the
765# one specified by @cpu-throttle-increment and the one
766# generated by ideal CPU percentage.
767# Therefore, it is compatible to traditional throttling,
768# meanwhile the throttle increment won't be excessive
769# at tail stage.
770# The default value is false. (Since 5.1)
771#
48685a8e
MA
772# @tls-creds: ID of the 'tls-creds' object that provides credentials
773# for establishing a TLS connection over the migration data
774# channel. On the outgoing side of the migration, the credentials
775# must be for a 'client' endpoint, while for the incoming side the
776# credentials must be for a 'server' endpoint. Setting this
777# to a non-empty string enables TLS for all migrations.
778# An empty string means that QEMU will use plain text mode for
779# migration, rather than TLS (Since 2.9)
780# Previously (since 2.7), this was reported by omitting
781# tls-creds instead.
782#
783# @tls-hostname: hostname of the target host for the migration. This
784# is required when using x509 based TLS credentials and the
785# migration URI does not already include a hostname. For
786# example if using fd: or exec: based migration, the
787# hostname must be provided so that the server's x509
788# certificate identity can be validated. (Since 2.7)
789# An empty string means that QEMU will use the hostname
790# associated with the migration URI, if any. (Since 2.9)
791# Previously (since 2.7), this was reported by omitting
792# tls-hostname instead.
793#
794# @max-bandwidth: to set maximum speed for migration. maximum speed in
795# bytes per second. (Since 2.8)
796#
797# @downtime-limit: set maximum tolerated downtime for migration. maximum
798# downtime in milliseconds (Since 2.8)
799#
800# @x-checkpoint-delay: the delay time between two COLO checkpoints. (Since 2.8)
801#
802# @block-incremental: Affects how much storage is migrated when the
26ec4e53
PM
803# block migration capability is enabled. When false, the entire
804# storage backing chain is migrated into a flattened image at
805# the destination; when true, only the active qcow2 layer is
806# migrated and the destination must already have access to the
807# same backing chain as was used on the source. (since 2.10)
48685a8e 808#
cbfd6c95
JQ
809# @multifd-channels: Number of channels used to migrate data in
810# parallel. This is the same number that the
811# number of sockets used for migration. The
812# default value is 2 (since 4.0)
4075fb1c 813#
73af8dd8
JQ
814# @xbzrle-cache-size: cache size to be used by XBZRLE migration. It
815# needs to be a multiple of the target page size
816# and a power of 2
817# (Since 2.11)
7e555c6c
DDAG
818#
819# @max-postcopy-bandwidth: Background transfer bandwidth during postcopy.
26ec4e53
PM
820# Defaults to 0 (unlimited). In bytes per second.
821# (Since 3.0)
4cbc9c7f
LQ
822#
823# @max-cpu-throttle: maximum cpu throttle percentage.
824# The default value is 99. (Since 3.1)
825#
96eef042
JQ
826# @multifd-compression: Which compression method to use.
827# Defaults to none. (Since 5.0)
828#
9004db48 829# @multifd-zlib-level: Set the compression level to be used in live
76dd0f84
PM
830# migration, the compression level is an integer between 0
831# and 9, where 0 means no compression, 1 means the best
832# compression speed, and 9 means best compression ratio which
833# will consume more CPU.
834# Defaults to 1. (Since 5.0)
9004db48 835#
6a9ad154 836# @multifd-zstd-level: Set the compression level to be used in live
76dd0f84
PM
837# migration, the compression level is an integer between 0
838# and 20, where 0 means no compression, 1 means the best
839# compression speed, and 20 means best compression ratio which
840# will consume more CPU.
841# Defaults to 1. (Since 5.0)
6a9ad154 842#
31e4c354 843# @block-bitmap-mapping: Maps block nodes and bitmaps on them to
826bd069
PM
844# aliases for the purpose of dirty bitmap migration. Such
845# aliases may for example be the corresponding names on the
846# opposite site.
847# The mapping must be one-to-one, but not necessarily
848# complete: On the source, unmapped bitmaps and all bitmaps
849# on unmapped nodes will be ignored. On the destination,
850# encountering an unmapped alias in the incoming migration
851# stream will result in a report, and all further bitmap
852# migration data will then be discarded.
853# Note that the destination does not know about bitmaps it
854# does not receive, so there is no limitation or requirement
855# regarding the number of bitmaps received, or how they are
856# named, or on which nodes they are placed.
857# By default (when this parameter has never been set), bitmap
858# names are mapped to themselves. Nodes are mapped to their
859# block device name if there is one, and to their node name
860# otherwise. (Since 5.2)
31e4c354 861#
48685a8e
MA
862# Since: 2.4
863##
864# TODO either fuse back into MigrationParameters, or make
865# MigrationParameters members mandatory
866{ 'struct': 'MigrateSetParameters',
ee3d96ba
DDAG
867 'data': { '*announce-initial': 'size',
868 '*announce-max': 'size',
869 '*announce-rounds': 'size',
870 '*announce-step': 'size',
871 '*compress-level': 'int',
48685a8e 872 '*compress-threads': 'int',
1d58872a 873 '*compress-wait-thread': 'bool',
48685a8e 874 '*decompress-threads': 'int',
dc14a470 875 '*throttle-trigger-threshold': 'int',
48685a8e
MA
876 '*cpu-throttle-initial': 'int',
877 '*cpu-throttle-increment': 'int',
cbbf8182 878 '*cpu-throttle-tailslow': 'bool',
48685a8e
MA
879 '*tls-creds': 'StrOrNull',
880 '*tls-hostname': 'StrOrNull',
d2f1d29b 881 '*tls-authz': 'StrOrNull',
48685a8e
MA
882 '*max-bandwidth': 'int',
883 '*downtime-limit': 'int',
884 '*x-checkpoint-delay': 'int',
4075fb1c 885 '*block-incremental': 'bool',
cbfd6c95 886 '*multifd-channels': 'int',
7e555c6c 887 '*xbzrle-cache-size': 'size',
4cbc9c7f 888 '*max-postcopy-bandwidth': 'size',
96eef042 889 '*max-cpu-throttle': 'int',
9004db48 890 '*multifd-compression': 'MultiFDCompression',
6a9ad154 891 '*multifd-zlib-level': 'int',
31e4c354
HR
892 '*multifd-zstd-level': 'int',
893 '*block-bitmap-mapping': [ 'BitmapMigrationNodeAlias' ] } }
48685a8e
MA
894
895##
896# @migrate-set-parameters:
897#
898# Set various migration parameters.
899#
900# Since: 2.4
901#
902# Example:
903#
904# -> { "execute": "migrate-set-parameters" ,
905# "arguments": { "compress-level": 1 } }
906#
907##
908{ 'command': 'migrate-set-parameters', 'boxed': true,
909 'data': 'MigrateSetParameters' }
910
911##
912# @MigrationParameters:
913#
914# The optional members aren't actually optional.
915#
ee3d96ba 916# @announce-initial: Initial delay (in milliseconds) before sending the
26ec4e53 917# first announce (Since 4.0)
ee3d96ba
DDAG
918#
919# @announce-max: Maximum delay (in milliseconds) between packets in the
26ec4e53 920# announcement (Since 4.0)
ee3d96ba
DDAG
921#
922# @announce-rounds: Number of self-announce packets sent after migration
26ec4e53 923# (Since 4.0)
ee3d96ba
DDAG
924#
925# @announce-step: Increase in delay (in milliseconds) between subsequent
26ec4e53 926# packets in the announcement (Since 4.0)
ee3d96ba 927#
48685a8e
MA
928# @compress-level: compression level
929#
930# @compress-threads: compression thread count
931#
1d58872a
XG
932# @compress-wait-thread: Controls behavior when all compression threads are
933# currently busy. If true (default), wait for a free
934# compression thread to become available; otherwise,
935# send the page uncompressed. (Since 3.1)
936#
48685a8e
MA
937# @decompress-threads: decompression thread count
938#
dc14a470
KZ
939# @throttle-trigger-threshold: The ratio of bytes_dirty_period and bytes_xfer_period
940# to trigger throttling. It is expressed as percentage.
941# The default value is 50. (Since 5.0)
942#
48685a8e
MA
943# @cpu-throttle-initial: Initial percentage of time guest cpus are
944# throttled when migration auto-converge is activated.
945# (Since 2.7)
946#
947# @cpu-throttle-increment: throttle percentage increase each time
948# auto-converge detects that migration is not making
949# progress. (Since 2.7)
950#
cbbf8182
KZ
951# @cpu-throttle-tailslow: Make CPU throttling slower at tail stage
952# At the tail stage of throttling, the Guest is very
953# sensitive to CPU percentage while the @cpu-throttle
954# -increment is excessive usually at tail stage.
955# If this parameter is true, we will compute the ideal
956# CPU percentage used by the Guest, which may exactly make
957# the dirty rate match the dirty rate threshold. Then we
958# will choose a smaller throttle increment between the
959# one specified by @cpu-throttle-increment and the one
960# generated by ideal CPU percentage.
961# Therefore, it is compatible to traditional throttling,
962# meanwhile the throttle increment won't be excessive
963# at tail stage.
964# The default value is false. (Since 5.1)
965#
48685a8e
MA
966# @tls-creds: ID of the 'tls-creds' object that provides credentials
967# for establishing a TLS connection over the migration data
968# channel. On the outgoing side of the migration, the credentials
969# must be for a 'client' endpoint, while for the incoming side the
970# credentials must be for a 'server' endpoint.
971# An empty string means that QEMU will use plain text mode for
972# migration, rather than TLS (Since 2.7)
973# Note: 2.8 reports this by omitting tls-creds instead.
974#
975# @tls-hostname: hostname of the target host for the migration. This
976# is required when using x509 based TLS credentials and the
977# migration URI does not already include a hostname. For
978# example if using fd: or exec: based migration, the
979# hostname must be provided so that the server's x509
980# certificate identity can be validated. (Since 2.7)
981# An empty string means that QEMU will use the hostname
982# associated with the migration URI, if any. (Since 2.9)
983# Note: 2.8 reports this by omitting tls-hostname instead.
984#
d2f1d29b
DB
985# @tls-authz: ID of the 'authz' object subclass that provides access control
986# checking of the TLS x509 certificate distinguished name. (Since
987# 4.0)
988#
48685a8e
MA
989# @max-bandwidth: to set maximum speed for migration. maximum speed in
990# bytes per second. (Since 2.8)
991#
992# @downtime-limit: set maximum tolerated downtime for migration. maximum
993# downtime in milliseconds (Since 2.8)
994#
995# @x-checkpoint-delay: the delay time between two COLO checkpoints. (Since 2.8)
996#
997# @block-incremental: Affects how much storage is migrated when the
26ec4e53
PM
998# block migration capability is enabled. When false, the entire
999# storage backing chain is migrated into a flattened image at
1000# the destination; when true, only the active qcow2 layer is
1001# migrated and the destination must already have access to the
1002# same backing chain as was used on the source. (since 2.10)
48685a8e 1003#
cbfd6c95
JQ
1004# @multifd-channels: Number of channels used to migrate data in
1005# parallel. This is the same number that the
1006# number of sockets used for migration.
1007# The default value is 2 (since 4.0)
4075fb1c 1008#
73af8dd8
JQ
1009# @xbzrle-cache-size: cache size to be used by XBZRLE migration. It
1010# needs to be a multiple of the target page size
1011# and a power of 2
1012# (Since 2.11)
7e555c6c
DDAG
1013#
1014# @max-postcopy-bandwidth: Background transfer bandwidth during postcopy.
26ec4e53
PM
1015# Defaults to 0 (unlimited). In bytes per second.
1016# (Since 3.0)
4cbc9c7f
LQ
1017#
1018# @max-cpu-throttle: maximum cpu throttle percentage.
1019# Defaults to 99.
26ec4e53 1020# (Since 3.1)
4cbc9c7f 1021#
96eef042
JQ
1022# @multifd-compression: Which compression method to use.
1023# Defaults to none. (Since 5.0)
1024#
9004db48 1025# @multifd-zlib-level: Set the compression level to be used in live
76dd0f84
PM
1026# migration, the compression level is an integer between 0
1027# and 9, where 0 means no compression, 1 means the best
1028# compression speed, and 9 means best compression ratio which
1029# will consume more CPU.
1030# Defaults to 1. (Since 5.0)
9004db48 1031#
6a9ad154 1032# @multifd-zstd-level: Set the compression level to be used in live
76dd0f84
PM
1033# migration, the compression level is an integer between 0
1034# and 20, where 0 means no compression, 1 means the best
1035# compression speed, and 20 means best compression ratio which
1036# will consume more CPU.
1037# Defaults to 1. (Since 5.0)
6a9ad154 1038#
31e4c354 1039# @block-bitmap-mapping: Maps block nodes and bitmaps on them to
826bd069
PM
1040# aliases for the purpose of dirty bitmap migration. Such
1041# aliases may for example be the corresponding names on the
1042# opposite site.
1043# The mapping must be one-to-one, but not necessarily
1044# complete: On the source, unmapped bitmaps and all bitmaps
1045# on unmapped nodes will be ignored. On the destination,
1046# encountering an unmapped alias in the incoming migration
1047# stream will result in a report, and all further bitmap
1048# migration data will then be discarded.
1049# Note that the destination does not know about bitmaps it
1050# does not receive, so there is no limitation or requirement
1051# regarding the number of bitmaps received, or how they are
1052# named, or on which nodes they are placed.
1053# By default (when this parameter has never been set), bitmap
1054# names are mapped to themselves. Nodes are mapped to their
1055# block device name if there is one, and to their node name
1056# otherwise. (Since 5.2)
31e4c354 1057#
48685a8e
MA
1058# Since: 2.4
1059##
1060{ 'struct': 'MigrationParameters',
ee3d96ba
DDAG
1061 'data': { '*announce-initial': 'size',
1062 '*announce-max': 'size',
1063 '*announce-rounds': 'size',
1064 '*announce-step': 'size',
1065 '*compress-level': 'uint8',
741d4086 1066 '*compress-threads': 'uint8',
1d58872a 1067 '*compress-wait-thread': 'bool',
741d4086 1068 '*decompress-threads': 'uint8',
dc14a470 1069 '*throttle-trigger-threshold': 'uint8',
741d4086
JQ
1070 '*cpu-throttle-initial': 'uint8',
1071 '*cpu-throttle-increment': 'uint8',
cbbf8182 1072 '*cpu-throttle-tailslow': 'bool',
48685a8e
MA
1073 '*tls-creds': 'str',
1074 '*tls-hostname': 'str',
d2f1d29b 1075 '*tls-authz': 'str',
741d4086
JQ
1076 '*max-bandwidth': 'size',
1077 '*downtime-limit': 'uint64',
1078 '*x-checkpoint-delay': 'uint32',
4075fb1c 1079 '*block-incremental': 'bool' ,
cbfd6c95 1080 '*multifd-channels': 'uint8',
7e555c6c 1081 '*xbzrle-cache-size': 'size',
dbb28bc8 1082 '*max-postcopy-bandwidth': 'size',
96eef042 1083 '*max-cpu-throttle': 'uint8',
9004db48 1084 '*multifd-compression': 'MultiFDCompression',
6a9ad154 1085 '*multifd-zlib-level': 'uint8',
31e4c354
HR
1086 '*multifd-zstd-level': 'uint8',
1087 '*block-bitmap-mapping': [ 'BitmapMigrationNodeAlias' ] } }
48685a8e
MA
1088
1089##
1090# @query-migrate-parameters:
1091#
1092# Returns information about the current migration parameters
1093#
1094# Returns: @MigrationParameters
1095#
1096# Since: 2.4
1097#
1098# Example:
1099#
1100# -> { "execute": "query-migrate-parameters" }
1101# <- { "return": {
1102# "decompress-threads": 2,
1103# "cpu-throttle-increment": 10,
1104# "compress-threads": 8,
1105# "compress-level": 1,
1106# "cpu-throttle-initial": 20,
1107# "max-bandwidth": 33554432,
1108# "downtime-limit": 300
1109# }
1110# }
1111#
1112##
1113{ 'command': 'query-migrate-parameters',
1114 'returns': 'MigrationParameters' }
1115
1116##
1117# @client_migrate_info:
1118#
1119# Set migration information for remote display. This makes the server
1120# ask the client to automatically reconnect using the new parameters
1121# once migration finished successfully. Only implemented for SPICE.
1122#
1123# @protocol: must be "spice"
1124# @hostname: migration target hostname
1125# @port: spice tcp port for plaintext channels
1126# @tls-port: spice tcp port for tls-secured channels
1127# @cert-subject: server certificate subject
1128#
1129# Since: 0.14.0
1130#
1131# Example:
1132#
1133# -> { "execute": "client_migrate_info",
1134# "arguments": { "protocol": "spice",
1135# "hostname": "virt42.lab.kraxel.org",
1136# "port": 1234 } }
1137# <- { "return": {} }
1138#
1139##
1140{ 'command': 'client_migrate_info',
1141 'data': { 'protocol': 'str', 'hostname': 'str', '*port': 'int',
1142 '*tls-port': 'int', '*cert-subject': 'str' } }
1143
1144##
1145# @migrate-start-postcopy:
1146#
1147# Followup to a migration command to switch the migration to postcopy mode.
c2eb7f21
GK
1148# The postcopy-ram capability must be set on both source and destination
1149# before the original migration command.
48685a8e
MA
1150#
1151# Since: 2.5
1152#
1153# Example:
1154#
1155# -> { "execute": "migrate-start-postcopy" }
1156# <- { "return": {} }
1157#
1158##
1159{ 'command': 'migrate-start-postcopy' }
1160
1161##
1162# @MIGRATION:
1163#
1164# Emitted when a migration event happens
1165#
1166# @status: @MigrationStatus describing the current migration status.
1167#
1168# Since: 2.4
1169#
1170# Example:
1171#
1172# <- {"timestamp": {"seconds": 1432121972, "microseconds": 744001},
1173# "event": "MIGRATION",
1174# "data": {"status": "completed"} }
1175#
1176##
1177{ 'event': 'MIGRATION',
1178 'data': {'status': 'MigrationStatus'}}
1179
1180##
1181# @MIGRATION_PASS:
1182#
1183# Emitted from the source side of a migration at the start of each pass
1184# (when it syncs the dirty bitmap)
1185#
1186# @pass: An incrementing count (starting at 1 on the first pass)
1187#
1188# Since: 2.6
1189#
1190# Example:
1191#
1192# { "timestamp": {"seconds": 1449669631, "microseconds": 239225},
1193# "event": "MIGRATION_PASS", "data": {"pass": 2} }
1194#
1195##
1196{ 'event': 'MIGRATION_PASS',
1197 'data': { 'pass': 'int' } }
1198
1199##
1200# @COLOMessage:
1201#
1202# The message transmission between Primary side and Secondary side.
1203#
1204# @checkpoint-ready: Secondary VM (SVM) is ready for checkpointing
1205#
1206# @checkpoint-request: Primary VM (PVM) tells SVM to prepare for checkpointing
1207#
1208# @checkpoint-reply: SVM gets PVM's checkpoint request
1209#
1210# @vmstate-send: VM's state will be sent by PVM.
1211#
1212# @vmstate-size: The total size of VMstate.
1213#
1214# @vmstate-received: VM's state has been received by SVM.
1215#
1216# @vmstate-loaded: VM's state has been loaded by SVM.
1217#
1218# Since: 2.8
1219##
1220{ 'enum': 'COLOMessage',
1221 'data': [ 'checkpoint-ready', 'checkpoint-request', 'checkpoint-reply',
1222 'vmstate-send', 'vmstate-size', 'vmstate-received',
1223 'vmstate-loaded' ] }
1224
1225##
1226# @COLOMode:
1227#
41b6b779 1228# The COLO current mode.
48685a8e 1229#
41b6b779 1230# @none: COLO is disabled.
48685a8e 1231#
41b6b779 1232# @primary: COLO node in primary side.
48685a8e 1233#
41b6b779 1234# @secondary: COLO node in slave side.
48685a8e
MA
1235#
1236# Since: 2.8
1237##
1238{ 'enum': 'COLOMode',
41b6b779 1239 'data': [ 'none', 'primary', 'secondary'] }
48685a8e
MA
1240
1241##
1242# @FailoverStatus:
1243#
1244# An enumeration of COLO failover status
1245#
1246# @none: no failover has ever happened
1247#
1248# @require: got failover requirement but not handled
1249#
1250# @active: in the process of doing failover
1251#
1252# @completed: finish the process of failover
1253#
1254# @relaunch: restart the failover process, from 'none' -> 'completed' (Since 2.9)
1255#
1256# Since: 2.8
1257##
1258{ 'enum': 'FailoverStatus',
1259 'data': [ 'none', 'require', 'active', 'completed', 'relaunch' ] }
1260
9ecff6d6
HZ
1261##
1262# @COLO_EXIT:
1263#
1264# Emitted when VM finishes COLO mode due to some errors happening or
1265# at the request of users.
1266#
1267# @mode: report COLO mode when COLO exited.
1268#
1269# @reason: describes the reason for the COLO exit.
1270#
1271# Since: 3.1
1272#
1273# Example:
1274#
1275# <- { "timestamp": {"seconds": 2032141960, "microseconds": 417172},
1276# "event": "COLO_EXIT", "data": {"mode": "primary", "reason": "request" } }
1277#
1278##
1279{ 'event': 'COLO_EXIT',
1280 'data': {'mode': 'COLOMode', 'reason': 'COLOExitReason' } }
1281
1282##
1283# @COLOExitReason:
1284#
3a43ac47 1285# The reason for a COLO exit.
9ecff6d6 1286#
3a43ac47 1287# @none: failover has never happened. This state does not occur
26ec4e53
PM
1288# in the COLO_EXIT event, and is only visible in the result of
1289# query-colo-status.
9ecff6d6 1290#
3a43ac47 1291# @request: COLO exit is due to an external request.
9ecff6d6 1292#
3a43ac47
ZC
1293# @error: COLO exit is due to an internal error.
1294#
1295# @processing: COLO is currently handling a failover (since 4.0).
9ecff6d6
HZ
1296#
1297# Since: 3.1
1298##
1299{ 'enum': 'COLOExitReason',
3a43ac47 1300 'data': [ 'none', 'request', 'error' , 'processing' ] }
9ecff6d6 1301
48685a8e
MA
1302##
1303# @x-colo-lost-heartbeat:
1304#
1305# Tell qemu that heartbeat is lost, request it to do takeover procedures.
1306# If this command is sent to the PVM, the Primary side will exit COLO mode.
1307# If sent to the Secondary, the Secondary side will run failover work,
1308# then takes over server operation to become the service VM.
1309#
1310# Since: 2.8
1311#
1312# Example:
1313#
1314# -> { "execute": "x-colo-lost-heartbeat" }
1315# <- { "return": {} }
1316#
1317##
1318{ 'command': 'x-colo-lost-heartbeat' }
1319
1320##
1321# @migrate_cancel:
1322#
1323# Cancel the current executing migration process.
1324#
1325# Returns: nothing on success
1326#
1327# Notes: This command succeeds even if there is no migration process running.
1328#
1329# Since: 0.14.0
1330#
1331# Example:
1332#
1333# -> { "execute": "migrate_cancel" }
1334# <- { "return": {} }
1335#
1336##
1337{ 'command': 'migrate_cancel' }
1338
89cfc02c
DDAG
1339##
1340# @migrate-continue:
1341#
1342# Continue migration when it's in a paused state.
1343#
1344# @state: The state the migration is currently expected to be in
1345#
1346# Returns: nothing on success
1347# Since: 2.11
1348# Example:
1349#
1350# -> { "execute": "migrate-continue" , "arguments":
1351# { "state": "pre-switchover" } }
1352# <- { "return": {} }
1353##
1354{ 'command': 'migrate-continue', 'data': {'state': 'MigrationStatus'} }
1355
48685a8e
MA
1356##
1357# @migrate_set_downtime:
1358#
1359# Set maximum tolerated downtime for migration.
1360#
1361# @value: maximum downtime in seconds
1362#
df4097ae
MA
1363# Features:
1364# @deprecated: This command is deprecated. Use
b2f1c13c 1365# 'migrate-set-parameters' instead.
48685a8e 1366#
df4097ae 1367# Returns: nothing on success
48685a8e
MA
1368#
1369# Since: 0.14.0
1370#
1371# Example:
1372#
1373# -> { "execute": "migrate_set_downtime", "arguments": { "value": 0.1 } }
1374# <- { "return": {} }
1375#
1376##
df4097ae
MA
1377{ 'command': 'migrate_set_downtime', 'data': {'value': 'number'},
1378 'features': [ 'deprecated' ] }
48685a8e
MA
1379
1380##
1381# @migrate_set_speed:
1382#
1383# Set maximum speed for migration.
1384#
1385# @value: maximum speed in bytes per second.
1386#
df4097ae
MA
1387# Features:
1388# @deprecated: This command is deprecated. Use
b2f1c13c 1389# 'migrate-set-parameters' instead.
48685a8e 1390#
df4097ae 1391# Returns: nothing on success
48685a8e
MA
1392#
1393# Since: 0.14.0
1394#
1395# Example:
1396#
1397# -> { "execute": "migrate_set_speed", "arguments": { "value": 1024 } }
1398# <- { "return": {} }
1399#
1400##
df4097ae
MA
1401{ 'command': 'migrate_set_speed', 'data': {'value': 'int'},
1402 'features': [ 'deprecated' ] }
48685a8e
MA
1403
1404##
1405# @migrate-set-cache-size:
1406#
1407# Set cache size to be used by XBZRLE migration
1408#
1409# @value: cache size in bytes
1410#
df4097ae
MA
1411# Features:
1412# @deprecated: This command is deprecated. Use
b2f1c13c 1413# 'migrate-set-parameters' instead.
df4097ae 1414#
48685a8e
MA
1415# The size will be rounded down to the nearest power of 2.
1416# The cache size can be modified before and during ongoing migration
1417#
1418# Returns: nothing on success
1419#
1420# Since: 1.2
1421#
1422# Example:
1423#
1424# -> { "execute": "migrate-set-cache-size",
1425# "arguments": { "value": 536870912 } }
1426# <- { "return": {} }
1427#
1428##
df4097ae
MA
1429{ 'command': 'migrate-set-cache-size', 'data': {'value': 'int'},
1430 'features': [ 'deprecated' ] }
48685a8e
MA
1431
1432##
1433# @query-migrate-cache-size:
1434#
1435# Query migration XBZRLE cache size
1436#
df4097ae
MA
1437# Features:
1438# @deprecated: This command is deprecated. Use
b2f1c13c 1439# 'query-migrate-parameters' instead.
48685a8e 1440#
df4097ae 1441# Returns: XBZRLE cache size in bytes
73af8dd8 1442#
48685a8e
MA
1443# Since: 1.2
1444#
1445# Example:
1446#
1447# -> { "execute": "query-migrate-cache-size" }
1448# <- { "return": 67108864 }
1449#
1450##
df4097ae
MA
1451{ 'command': 'query-migrate-cache-size', 'returns': 'int',
1452 'features': [ 'deprecated' ] }
48685a8e
MA
1453
1454##
1455# @migrate:
1456#
1457# Migrates the current running guest to another Virtual Machine.
1458#
1459# @uri: the Uniform Resource Identifier of the destination VM
1460#
1461# @blk: do block migration (full disk copy)
1462#
1463# @inc: incremental disk copy migration
1464#
1465# @detach: this argument exists only for compatibility reasons and
1466# is ignored by QEMU
1467#
51f63ec7 1468# @resume: resume one paused migration, default "off". (since 3.0)
7a4da28b 1469#
48685a8e
MA
1470# Returns: nothing on success
1471#
1472# Since: 0.14.0
1473#
1474# Notes:
1475#
1476# 1. The 'query-migrate' command should be used to check migration's progress
1477# and final result (this information is provided by the 'status' member)
1478#
1479# 2. All boolean arguments default to false
1480#
1481# 3. The user Monitor's "detach" argument is invalid in QMP and should not
1482# be used
1483#
1484# Example:
1485#
1486# -> { "execute": "migrate", "arguments": { "uri": "tcp:0:4446" } }
1487# <- { "return": {} }
1488#
1489##
1490{ 'command': 'migrate',
7a4da28b
PX
1491 'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool',
1492 '*detach': 'bool', '*resume': 'bool' } }
48685a8e
MA
1493
1494##
1495# @migrate-incoming:
1496#
1497# Start an incoming migration, the qemu must have been started
1498# with -incoming defer
1499#
1500# @uri: The Uniform Resource Identifier identifying the source or
1501# address to listen on
1502#
1503# Returns: nothing on success
1504#
1505# Since: 2.3
1506#
1507# Notes:
1508#
1509# 1. It's a bad idea to use a string for the uri, but it needs to stay
1510# compatible with -incoming and the format of the uri is already exposed
1511# above libvirt.
1512#
1513# 2. QEMU must be started with -incoming defer to allow migrate-incoming to
1514# be used.
1515#
1516# 3. The uri format is the same as for -incoming
1517#
1518# Example:
1519#
1520# -> { "execute": "migrate-incoming",
1521# "arguments": { "uri": "tcp::4446" } }
1522# <- { "return": {} }
1523#
1524##
1525{ 'command': 'migrate-incoming', 'data': {'uri': 'str' } }
1526
1527##
1528# @xen-save-devices-state:
1529#
1530# Save the state of all devices to file. The RAM and the block devices
1531# of the VM are not saved by this command.
1532#
1533# @filename: the file to save the state of the devices to as binary
26ec4e53
PM
1534# data. See xen-save-devices-state.txt for a description of the binary
1535# format.
48685a8e 1536#
5d6c599f 1537# @live: Optional argument to ask QEMU to treat this command as part of a live
26ec4e53 1538# migration. Default to true. (since 2.11)
5d6c599f 1539#
48685a8e
MA
1540# Returns: Nothing on success
1541#
1542# Since: 1.1
1543#
1544# Example:
1545#
1546# -> { "execute": "xen-save-devices-state",
1547# "arguments": { "filename": "/tmp/save" } }
1548# <- { "return": {} }
1549#
1550##
5d6c599f
AP
1551{ 'command': 'xen-save-devices-state',
1552 'data': {'filename': 'str', '*live':'bool' } }
48685a8e 1553
28af9ba2
PMD
1554##
1555# @xen-set-global-dirty-log:
1556#
1557# Enable or disable the global dirty log mode.
1558#
1559# @enable: true to enable, false to disable.
1560#
1561# Returns: nothing
1562#
1563# Since: 1.3
1564#
1565# Example:
1566#
1567# -> { "execute": "xen-set-global-dirty-log",
1568# "arguments": { "enable": true } }
1569# <- { "return": {} }
1570#
1571##
1572{ 'command': 'xen-set-global-dirty-log', 'data': { 'enable': 'bool' } }
1573
1574##
1575# @xen-load-devices-state:
1576#
1577# Load the state of all devices from file. The RAM and the block devices
1578# of the VM are not loaded by this command.
1579#
1580# @filename: the file to load the state of the devices from as binary
1581# data. See xen-save-devices-state.txt for a description of the binary
1582# format.
1583#
1584# Since: 2.7
1585#
1586# Example:
1587#
1588# -> { "execute": "xen-load-devices-state",
1589# "arguments": { "filename": "/tmp/resume" } }
1590# <- { "return": {} }
1591#
1592##
1593{ 'command': 'xen-load-devices-state', 'data': {'filename': 'str'} }
1594
48685a8e
MA
1595##
1596# @xen-set-replication:
1597#
1598# Enable or disable replication.
1599#
1600# @enable: true to enable, false to disable.
1601#
1602# @primary: true for primary or false for secondary.
1603#
1604# @failover: true to do failover, false to stop. but cannot be
1605# specified if 'enable' is true. default value is false.
1606#
1607# Returns: nothing.
1608#
1609# Example:
1610#
1611# -> { "execute": "xen-set-replication",
1612# "arguments": {"enable": true, "primary": false} }
1613# <- { "return": {} }
1614#
1615# Since: 2.9
1616##
1617{ 'command': 'xen-set-replication',
335d10cd
MAL
1618 'data': { 'enable': 'bool', 'primary': 'bool', '*failover' : 'bool' },
1619 'if': 'defined(CONFIG_REPLICATION)' }
48685a8e
MA
1620
1621##
1622# @ReplicationStatus:
1623#
1624# The result format for 'query-xen-replication-status'.
1625#
1626# @error: true if an error happened, false if replication is normal.
1627#
1628# @desc: the human readable error description string, when
1629# @error is 'true'.
1630#
1631# Since: 2.9
1632##
1633{ 'struct': 'ReplicationStatus',
335d10cd
MAL
1634 'data': { 'error': 'bool', '*desc': 'str' },
1635 'if': 'defined(CONFIG_REPLICATION)' }
48685a8e
MA
1636
1637##
1638# @query-xen-replication-status:
1639#
1640# Query replication status while the vm is running.
1641#
1642# Returns: A @ReplicationResult object showing the status.
1643#
1644# Example:
1645#
1646# -> { "execute": "query-xen-replication-status" }
1647# <- { "return": { "error": false } }
1648#
1649# Since: 2.9
1650##
1651{ 'command': 'query-xen-replication-status',
335d10cd
MAL
1652 'returns': 'ReplicationStatus',
1653 'if': 'defined(CONFIG_REPLICATION)' }
48685a8e
MA
1654
1655##
1656# @xen-colo-do-checkpoint:
1657#
1658# Xen uses this command to notify replication to trigger a checkpoint.
1659#
1660# Returns: nothing.
1661#
1662# Example:
1663#
1664# -> { "execute": "xen-colo-do-checkpoint" }
1665# <- { "return": {} }
1666#
1667# Since: 2.9
1668##
335d10cd
MAL
1669{ 'command': 'xen-colo-do-checkpoint',
1670 'if': 'defined(CONFIG_REPLICATION)' }
02affd41 1671
f56c0065
ZC
1672##
1673# @COLOStatus:
1674#
1675# The result format for 'query-colo-status'.
1676#
1677# @mode: COLO running mode. If COLO is running, this field will return
1678# 'primary' or 'secondary'.
1679#
5cc8f9eb 1680# @last-mode: COLO last running mode. If COLO is running, this field
5ed0deca 1681# will return same like mode field, after failover we can
966c0d49 1682# use this field to get last colo mode. (since 4.0)
5ed0deca 1683#
f56c0065
ZC
1684# @reason: describes the reason for the COLO exit.
1685#
ea3b23e5 1686# Since: 3.1
f56c0065
ZC
1687##
1688{ 'struct': 'COLOStatus',
5cc8f9eb 1689 'data': { 'mode': 'COLOMode', 'last-mode': 'COLOMode',
5ed0deca 1690 'reason': 'COLOExitReason' } }
f56c0065
ZC
1691
1692##
1693# @query-colo-status:
1694#
1695# Query COLO status while the vm is running.
1696#
1697# Returns: A @COLOStatus object showing the status.
1698#
1699# Example:
1700#
1701# -> { "execute": "query-colo-status" }
b5922fc5 1702# <- { "return": { "mode": "primary", "reason": "request" } }
f56c0065 1703#
ea3b23e5 1704# Since: 3.1
f56c0065
ZC
1705##
1706{ 'command': 'query-colo-status',
1707 'returns': 'COLOStatus' }
1708
02affd41
PX
1709##
1710# @migrate-recover:
1711#
1712# Provide a recovery migration stream URI.
1713#
1714# @uri: the URI to be used for the recovery of migration stream.
1715#
1716# Returns: nothing.
1717#
1718# Example:
1719#
1720# -> { "execute": "migrate-recover",
1721# "arguments": { "uri": "tcp:192.168.1.200:12345" } }
1722# <- { "return": {} }
1723#
51f63ec7 1724# Since: 3.0
02affd41 1725##
b0ddeba2
MAL
1726{ 'command': 'migrate-recover',
1727 'data': { 'uri': 'str' },
02affd41 1728 'allow-oob': true }
bfbf89c2
PX
1729
1730##
1731# @migrate-pause:
1732#
1733# Pause a migration. Currently it only supports postcopy.
1734#
1735# Returns: nothing.
1736#
1737# Example:
1738#
1739# -> { "execute": "migrate-pause" }
1740# <- { "return": {} }
1741#
51f63ec7 1742# Since: 3.0
bfbf89c2
PX
1743##
1744{ 'command': 'migrate-pause', 'allow-oob': true }
d328e6f3
JF
1745
1746##
1747# @UNPLUG_PRIMARY:
1748#
1749# Emitted from source side of a migration when migration state is
1750# WAIT_UNPLUG. Device was unplugged by guest operating system.
1751# Device resources in QEMU are kept on standby to be able to re-plug it in case
1752# of migration failure.
1753#
1754# @device-id: QEMU device id of the unplugged device
1755#
1756# Since: 4.2
1757#
1758# Example:
1759# {"event": "UNPLUG_PRIMARY", "data": {"device-id": "hostdev0"} }
1760#
1761##
1762{ 'event': 'UNPLUG_PRIMARY',
1763 'data': { 'device-id': 'str' } }
7df3aa30
CZ
1764
1765##
1766# @DirtyRateStatus:
1767#
1768# An enumeration of dirtyrate status.
1769#
1770# @unstarted: the dirtyrate thread has not been started.
1771#
1772# @measuring: the dirtyrate thread is measuring.
1773#
1774# @measured: the dirtyrate thread has measured and results are available.
1775#
1776# Since: 5.2
1777#
1778##
1779{ 'enum': 'DirtyRateStatus',
1780 'data': [ 'unstarted', 'measuring', 'measured'] }
4c437254
CZ
1781
1782##
1783# @DirtyRateInfo:
1784#
1785# Information about current dirty page rate of vm.
1786#
b1a859cf
CZ
1787# @dirty-rate: an estimate of the dirty page rate of the VM in units of
1788# MB/s, present only when estimating the rate has completed.
4c437254
CZ
1789#
1790# @status: status containing dirtyrate query status includes
1791# 'unstarted' or 'measuring' or 'measured'
1792#
1793# @start-time: start time in units of second for calculation
1794#
1795# @calc-time: time in units of second for sample dirty pages
1796#
1797# Since: 5.2
1798#
1799##
1800{ 'struct': 'DirtyRateInfo',
b1a859cf 1801 'data': {'*dirty-rate': 'int64',
4c437254
CZ
1802 'status': 'DirtyRateStatus',
1803 'start-time': 'int64',
1804 'calc-time': 'int64'} }
1805
1806##
1807# @calc-dirty-rate:
1808#
1809# start calculating dirty page rate for vm
1810#
1811# @calc-time: time in units of second for sample dirty pages
1812#
1813# Since: 5.2
1814#
1815# Example:
1816# {"command": "calc-dirty-rate", "data": {"calc-time": 1} }
1817#
1818##
1819{ 'command': 'calc-dirty-rate', 'data': {'calc-time': 'int64'} }
1820
1821##
1822# @query-dirty-rate:
1823#
1824# query dirty page rate in units of MB/s for vm
1825#
1826# Since: 5.2
1827##
1828{ 'command': 'query-dirty-rate', 'returns': 'DirtyRateInfo' }