]> git.proxmox.com Git - mirror_qemu.git/blame - qapi-schema.json
block: Introduce BlockDriver.bdrv_drain callback
[mirror_qemu.git] / qapi-schema.json
CommitLineData
e3193601
AL
1# -*- Mode: Python -*-
2#
3# QAPI Schema
48a32bed 4
d34bda71
BC
5# QAPI common definitions
6{ 'include': 'qapi/common.json' }
104059da 7
a090187d
DB
8# QAPI crypto definitions
9{ 'include': 'qapi/crypto.json' }
10
5db15096
BC
11# QAPI block definitions
12{ 'include': 'qapi/block.json' }
13
82d72d9d
WX
14# QAPI event definitions
15{ 'include': 'qapi/event.json' }
16
1dde0f48
LV
17# Tracing commands
18{ 'include': 'qapi/trace.json' }
19
39a18158
MA
20# QAPI introspection
21{ 'include': 'qapi/introspect.json' }
22
104059da 23##
801db5ec 24# @LostTickPolicy:
104059da
PB
25#
26# Policy for handling lost ticks in timer devices.
27#
28# @discard: throw away the missed tick(s) and continue with future injection
29# normally. Guest time may be delayed, unless the OS has explicit
30# handling of lost ticks
31#
32# @delay: continue to deliver ticks at the normal rate. Guest time will be
33# delayed due to the late tick
34#
35# @merge: merge the missed tick(s) into one tick and inject. Guest time
36# may be delayed, depending on how the OS reacts to the merging
37# of ticks
38#
39# @slew: deliver ticks at a higher rate to catch up with the missed tick. The
40# guest time should not be delayed once catchup is complete.
41#
42# Since: 2.0
43##
44{ 'enum': 'LostTickPolicy',
45 'data': ['discard', 'delay', 'merge', 'slew' ] }
46
b224e5e2
LC
47# @add_client
48#
49# Allow client connections for VNC, Spice and socket based
50# character devices to be passed in to QEMU via SCM_RIGHTS.
51#
52# @protocol: protocol name. Valid names are "vnc", "spice" or the
53# name of a character device (eg. from -chardev id=XXXX)
54#
55# @fdname: file descriptor name previously passed via 'getfd' command
56#
57# @skipauth: #optional whether to skip authentication. Only applies
58# to "vnc" and "spice" protocols
59#
60# @tls: #optional whether to perform TLS. Only applies to the "spice"
61# protocol
62#
63# Returns: nothing on success.
64#
65# Since: 0.14.0
66##
67{ 'command': 'add_client',
68 'data': { 'protocol': 'str', 'fdname': 'str', '*skipauth': 'bool',
69 '*tls': 'bool' } }
70
48a32bed
AL
71##
72# @NameInfo:
73#
74# Guest name information.
75#
76# @name: #optional The name of the guest
77#
78# Since 0.14.0
79##
895a2a80 80{ 'struct': 'NameInfo', 'data': {'*name': 'str'} }
48a32bed
AL
81
82##
83# @query-name:
84#
85# Return the name information of a guest.
86#
87# Returns: @NameInfo of the guest
88#
89# Since 0.14.0
90##
91{ 'command': 'query-name', 'returns': 'NameInfo' }
b9c15f16 92
292a2602
LC
93##
94# @KvmInfo:
95#
96# Information about support for KVM acceleration
97#
98# @enabled: true if KVM acceleration is active
99#
100# @present: true if KVM acceleration is built into this executable
101#
102# Since: 0.14.0
103##
895a2a80 104{ 'struct': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} }
292a2602
LC
105
106##
107# @query-kvm:
108#
109# Returns information about KVM acceleration
110#
111# Returns: @KvmInfo
112#
113# Since: 0.14.0
114##
115{ 'command': 'query-kvm', 'returns': 'KvmInfo' }
116
1fa9a5e4
LC
117##
118# @RunState
119#
6932a69b 120# An enumeration of VM run states.
1fa9a5e4
LC
121#
122# @debug: QEMU is running on a debugger
123#
0a24c7b1
LC
124# @finish-migrate: guest is paused to finish the migration process
125#
1e998146
PB
126# @inmigrate: guest is paused waiting for an incoming migration. Note
127# that this state does not tell whether the machine will start at the
128# end of the migration. This depends on the command-line -S option and
129# any invocation of 'stop' or 'cont' that has happened since QEMU was
130# started.
1fa9a5e4
LC
131#
132# @internal-error: An internal error that prevents further guest execution
133# has occurred
134#
135# @io-error: the last IOP has failed and the device is configured to pause
136# on I/O errors
137#
138# @paused: guest has been paused via the 'stop' command
139#
140# @postmigrate: guest is paused following a successful 'migrate'
141#
142# @prelaunch: QEMU was started with -S and guest has not started
143#
1fa9a5e4
LC
144# @restore-vm: guest is paused to restore VM state
145#
146# @running: guest is actively running
147#
148# @save-vm: guest is paused to save the VM state
149#
150# @shutdown: guest is shut down (and -no-shutdown is in use)
151#
ad02b96a
LC
152# @suspended: guest is suspended (ACPI S3)
153#
1fa9a5e4 154# @watchdog: the watchdog action is configured to pause and has been triggered
ede085b3
HT
155#
156# @guest-panicked: guest has been panicked as a result of guest OS panic
1fa9a5e4
LC
157##
158{ 'enum': 'RunState',
159 'data': [ 'debug', 'inmigrate', 'internal-error', 'io-error', 'paused',
160 'postmigrate', 'prelaunch', 'finish-migrate', 'restore-vm',
ede085b3
HT
161 'running', 'save-vm', 'shutdown', 'suspended', 'watchdog',
162 'guest-panicked' ] }
1fa9a5e4
LC
163
164##
165# @StatusInfo:
166#
167# Information about VCPU run state
168#
169# @running: true if all VCPUs are runnable, false if not runnable
170#
171# @singlestep: true if VCPUs are in single-step mode
172#
173# @status: the virtual machine @RunState
174#
175# Since: 0.14.0
176#
177# Notes: @singlestep is enabled through the GDB stub
178##
895a2a80 179{ 'struct': 'StatusInfo',
1fa9a5e4
LC
180 'data': {'running': 'bool', 'singlestep': 'bool', 'status': 'RunState'} }
181
182##
183# @query-status:
184#
185# Query the run status of all VCPUs
186#
187# Returns: @StatusInfo reflecting all VCPUs
188#
189# Since: 0.14.0
190##
191{ 'command': 'query-status', 'returns': 'StatusInfo' }
192
efab767e
LC
193##
194# @UuidInfo:
195#
196# Guest UUID information.
197#
198# @UUID: the UUID of the guest
199#
200# Since: 0.14.0
201#
202# Notes: If no UUID was specified for the guest, a null UUID is returned.
203##
895a2a80 204{ 'struct': 'UuidInfo', 'data': {'UUID': 'str'} }
efab767e
LC
205
206##
207# @query-uuid:
208#
209# Query the guest UUID information.
210#
211# Returns: The @UuidInfo for the guest
212#
213# Since 0.14.0
214##
215{ 'command': 'query-uuid', 'returns': 'UuidInfo' }
216
c5a415a0
LC
217##
218# @ChardevInfo:
219#
220# Information about a character device.
221#
222# @label: the label of the character device
223#
224# @filename: the filename of the character device
225#
32a97ea1
LE
226# @frontend-open: shows whether the frontend device attached to this backend
227# (eg. with the chardev=... option) is in open or closed state
228# (since 2.1)
229#
c5a415a0
LC
230# Notes: @filename is encoded using the QEMU command line character device
231# encoding. See the QEMU man page for details.
232#
233# Since: 0.14.0
234##
895a2a80 235{ 'struct': 'ChardevInfo', 'data': {'label': 'str',
32a97ea1
LE
236 'filename': 'str',
237 'frontend-open': 'bool'} }
c5a415a0
LC
238
239##
240# @query-chardev:
241#
242# Returns information about current character devices.
243#
244# Returns: a list of @ChardevInfo
245#
246# Since: 0.14.0
247##
248{ 'command': 'query-chardev', 'returns': ['ChardevInfo'] }
aa9b79bc 249
77d1c3c6
MK
250##
251# @ChardevBackendInfo:
252#
253# Information about a character device backend
254#
255# @name: The backend name
256#
257# Since: 2.0
258##
895a2a80 259{ 'struct': 'ChardevBackendInfo', 'data': {'name': 'str'} }
77d1c3c6
MK
260
261##
262# @query-chardev-backends:
263#
264# Returns information about character device backends.
265#
266# Returns: a list of @ChardevBackendInfo
267#
268# Since: 2.0
269##
270{ 'command': 'query-chardev-backends', 'returns': ['ChardevBackendInfo'] }
271
1f590cf9
LL
272##
273# @DataFormat:
274#
275# An enumeration of data format.
276#
3949e594 277# @utf8: Data is a UTF-8 string (RFC 3629)
1f590cf9 278#
3949e594 279# @base64: Data is Base64 encoded binary (RFC 3548)
1f590cf9
LL
280#
281# Since: 1.4
282##
ad0f171e 283{ 'enum': 'DataFormat',
1f590cf9
LL
284 'data': [ 'utf8', 'base64' ] }
285
286##
3949e594 287# @ringbuf-write:
1f590cf9 288#
3949e594 289# Write to a ring buffer character device.
1f590cf9 290#
3949e594 291# @device: the ring buffer character device name
1f590cf9 292#
3949e594 293# @data: data to write
1f590cf9 294#
3949e594
MA
295# @format: #optional data encoding (default 'utf8').
296# - base64: data must be base64 encoded text. Its binary
297# decoding gets written.
298# Bug: invalid base64 is currently not rejected.
299# Whitespace *is* invalid.
300# - utf8: data's UTF-8 encoding is written
301# - data itself is always Unicode regardless of format, like
302# any other string.
1f590cf9
LL
303#
304# Returns: Nothing on success
1f590cf9
LL
305#
306# Since: 1.4
307##
3949e594 308{ 'command': 'ringbuf-write',
82e59a67 309 'data': {'device': 'str', 'data': 'str',
1f590cf9
LL
310 '*format': 'DataFormat'} }
311
49b6d722 312##
3949e594 313# @ringbuf-read:
49b6d722 314#
3949e594 315# Read from a ring buffer character device.
49b6d722 316#
3949e594 317# @device: the ring buffer character device name
49b6d722 318#
3949e594 319# @size: how many bytes to read at most
49b6d722 320#
3949e594
MA
321# @format: #optional data encoding (default 'utf8').
322# - base64: the data read is returned in base64 encoding.
323# - utf8: the data read is interpreted as UTF-8.
324# Bug: can screw up when the buffer contains invalid UTF-8
325# sequences, NUL characters, after the ring buffer lost
326# data, and when reading stops because the size limit is
327# reached.
328# - The return value is always Unicode regardless of format,
329# like any other string.
49b6d722 330#
3ab651fc 331# Returns: data read from the device
49b6d722
LL
332#
333# Since: 1.4
334##
3949e594 335{ 'command': 'ringbuf-read',
49b6d722 336 'data': {'device': 'str', 'size': 'int', '*format': 'DataFormat'},
3ab651fc 337 'returns': 'str' }
49b6d722 338
4860853d
DB
339##
340# @EventInfo:
341#
342# Information about a QMP event
343#
344# @name: The event name
345#
346# Since: 1.2.0
347##
895a2a80 348{ 'struct': 'EventInfo', 'data': {'name': 'str'} }
4860853d
DB
349
350##
351# @query-events:
352#
353# Return a list of supported QMP events by this server
354#
355# Returns: A list of @EventInfo for all supported events
356#
357# Since: 1.2.0
358##
359{ 'command': 'query-events', 'returns': ['EventInfo'] }
360
791e7c82
LC
361##
362# @MigrationStats
363#
364# Detailed migration status.
365#
366# @transferred: amount of bytes already transferred to the target VM
367#
368# @remaining: amount of bytes remaining to be transferred to the target VM
369#
370# @total: total amount of bytes involved in the migration process
371#
f1c72795
PL
372# @duplicate: number of duplicate (zero) pages (since 1.2)
373#
374# @skipped: number of skipped zero pages (since 1.5)
004d4c10
OW
375#
376# @normal : number of normal pages (since 1.2)
377#
8d017193
JQ
378# @normal-bytes: number of normal bytes sent (since 1.2)
379#
380# @dirty-pages-rate: number of pages dirtied by second by the
381# guest (since 1.3)
004d4c10 382#
7e114f8c
MH
383# @mbps: throughput in megabits/sec. (since 1.6)
384#
58570ed8
C
385# @dirty-sync-count: number of times that dirty ram was synchronized (since 2.1)
386#
004d4c10 387# Since: 0.14.0
791e7c82 388##
895a2a80 389{ 'struct': 'MigrationStats',
d5f8a570 390 'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' ,
f1c72795 391 'duplicate': 'int', 'skipped': 'int', 'normal': 'int',
7e114f8c 392 'normal-bytes': 'int', 'dirty-pages-rate' : 'int',
58570ed8 393 'mbps' : 'number', 'dirty-sync-count' : 'int' } }
791e7c82 394
f36d55af
OW
395##
396# @XBZRLECacheStats
397#
398# Detailed XBZRLE migration cache statistics
399#
400# @cache-size: XBZRLE cache size
401#
402# @bytes: amount of bytes already transferred to the target VM
403#
404# @pages: amount of pages transferred to the target VM
405#
406# @cache-miss: number of cache miss
407#
8bc39233
C
408# @cache-miss-rate: rate of cache miss (since 2.1)
409#
f36d55af
OW
410# @overflow: number of overflows
411#
412# Since: 1.2
413##
895a2a80 414{ 'struct': 'XBZRLECacheStats',
f36d55af 415 'data': {'cache-size': 'int', 'bytes': 'int', 'pages': 'int',
8bc39233
C
416 'cache-miss': 'int', 'cache-miss-rate': 'number',
417 'overflow': 'int' } }
f36d55af 418
24b8c39b
HZ
419# @MigrationStatus:
420#
421# An enumeration of migration status.
422#
423# @none: no migration has ever happened.
424#
425# @setup: migration process has been initiated.
426#
427# @cancelling: in the process of cancelling migration.
428#
429# @cancelled: cancelling migration is finished.
430#
431# @active: in the process of doing migration.
432#
9ec055ae
DDAG
433# @postcopy-active: like active, but now in postcopy mode. (since 2.5)
434#
24b8c39b
HZ
435# @completed: migration is finished.
436#
437# @failed: some error occurred during migration process.
438#
439# Since: 2.3
440#
441##
442{ 'enum': 'MigrationStatus',
443 'data': [ 'none', 'setup', 'cancelling', 'cancelled',
9ec055ae 444 'active', 'postcopy-active', 'completed', 'failed' ] }
24b8c39b 445
791e7c82
LC
446##
447# @MigrationInfo
448#
449# Information about current migration process.
450#
24b8c39b
HZ
451# @status: #optional @MigrationStatus describing the current migration status.
452# If this field is not returned, no migration process
791e7c82
LC
453# has been initiated
454#
d5f8a570
JQ
455# @ram: #optional @MigrationStats containing detailed migration
456# status, only returned if status is 'active' or
24b8c39b 457# 'completed'(since 1.2)
791e7c82
LC
458#
459# @disk: #optional @MigrationStats containing detailed disk migration
460# status, only returned if status is 'active' and it is a block
461# migration
462#
f36d55af
OW
463# @xbzrle-cache: #optional @XBZRLECacheStats containing detailed XBZRLE
464# migration statistics, only returned if XBZRLE feature is on and
465# status is 'active' or 'completed' (since 1.2)
466#
7aa939af
JQ
467# @total-time: #optional total amount of milliseconds since migration started.
468# If migration has ended, it returns the total migration
469# time. (since 1.2)
470#
9c5a9fcf
JQ
471# @downtime: #optional only present when migration finishes correctly
472# total downtime in milliseconds for the guest.
473# (since 1.3)
474#
2c52ddf1
JQ
475# @expected-downtime: #optional only present while migration is active
476# expected downtime in milliseconds for the guest in last walk
477# of the dirty bitmap. (since 1.3)
478#
ed4fbd10
MH
479# @setup-time: #optional amount of setup time in milliseconds _before_ the
480# iterations begin but _after_ the QMP command is issued. This is designed
481# to provide an accounting of any activities (such as RDMA pinning) which
482# may be expensive, but do not actually occur during the iterative
483# migration rounds themselves. (since 1.6)
484#
4782893e
JH
485# @x-cpu-throttle-percentage: #optional percentage of time guest cpus are being
486# throttled during auto-converge. This is only present when auto-converge
487# has started throttling guest cpus. (Since 2.5)
488#
791e7c82
LC
489# Since: 0.14.0
490##
895a2a80 491{ 'struct': 'MigrationInfo',
24b8c39b 492 'data': {'*status': 'MigrationStatus', '*ram': 'MigrationStats',
f36d55af 493 '*disk': 'MigrationStats',
7aa939af 494 '*xbzrle-cache': 'XBZRLECacheStats',
9c5a9fcf 495 '*total-time': 'int',
2c52ddf1 496 '*expected-downtime': 'int',
ed4fbd10 497 '*downtime': 'int',
4782893e
JH
498 '*setup-time': 'int',
499 '*x-cpu-throttle-percentage': 'int'} }
791e7c82
LC
500
501##
502# @query-migrate
503#
504# Returns information about current migration process.
505#
506# Returns: @MigrationInfo
507#
508# Since: 0.14.0
509##
510{ 'command': 'query-migrate', 'returns': 'MigrationInfo' }
511
bbf6da32
OW
512##
513# @MigrationCapability
514#
515# Migration capabilities enumeration
516#
517# @xbzrle: Migration supports xbzrle (Xor Based Zero Run Length Encoding).
518# This feature allows us to minimize migration traffic for certain work
519# loads, by sending compressed difference of the pages
520#
41310c68 521# @rdma-pin-all: Controls whether or not the entire VM memory footprint is
60d9222c 522# mlock()'d on demand or all at once. Refer to docs/rdma.txt for usage.
41310c68 523# Disabled by default. (since 2.0)
60d9222c 524#
323004a3
PL
525# @zero-blocks: During storage migration encode blocks of zeroes efficiently. This
526# essentially saves 1MB of zeroes per block on the wire. Enabling requires
527# source and target VM to support this feature. To enable it is sufficient
528# to enable the capability on the source VM. The feature is disabled by
529# default. (since 1.6)
530#
dde4e694
LL
531# @compress: Use multiple compression threads to accelerate live migration.
532# This feature can help to reduce the migration traffic, by sending
533# compressed pages. Please note that if compress and xbzrle are both
534# on, compress only takes effect in the ram bulk stage, after that,
535# it will be disabled and only xbzrle takes effect, this can help to
536# minimize migration traffic. The feature is disabled by default.
537# (since 2.4 )
538#
b05dc723
JQ
539# @events: generate events for each migration state change
540# (since 2.4 )
541#
9781c371
JQ
542# @auto-converge: If enabled, QEMU will automatically throttle down the guest
543# to speed up convergence of RAM migration. (since 1.6)
544#
53dd370c
DDAG
545# @x-postcopy-ram: Start executing on the migration target before all of RAM has
546# been migrated, pulling the remaining pages along as needed. NOTE: If
547# the migration fails during postcopy the VM will fail. (since 2.5)
548#
bbf6da32
OW
549# Since: 1.2
550##
551{ 'enum': 'MigrationCapability',
dde4e694 552 'data': ['xbzrle', 'rdma-pin-all', 'auto-converge', 'zero-blocks',
53dd370c 553 'compress', 'events', 'x-postcopy-ram'] }
bbf6da32
OW
554
555##
556# @MigrationCapabilityStatus
557#
558# Migration capability information
559#
560# @capability: capability enum
561#
562# @state: capability state bool
563#
564# Since: 1.2
565##
895a2a80 566{ 'struct': 'MigrationCapabilityStatus',
bbf6da32
OW
567 'data': { 'capability' : 'MigrationCapability', 'state' : 'bool' } }
568
569##
00458433
OW
570# @migrate-set-capabilities
571#
572# Enable/Disable the following migration capabilities (like xbzrle)
573#
574# @capabilities: json array of capability modifications to make
575#
576# Since: 1.2
577##
578{ 'command': 'migrate-set-capabilities',
579 'data': { 'capabilities': ['MigrationCapabilityStatus'] } }
580
581##
bbf6da32
OW
582# @query-migrate-capabilities
583#
584# Returns information about the current migration capabilities status
585#
586# Returns: @MigrationCapabilitiesStatus
587#
588# Since: 1.2
589##
590{ 'command': 'query-migrate-capabilities', 'returns': ['MigrationCapabilityStatus']}
591
43c60a81
LL
592# @MigrationParameter
593#
594# Migration parameters enumeration
595#
596# @compress-level: Set the compression level to be used in live migration,
597# the compression level is an integer between 0 and 9, where 0 means
598# no compression, 1 means the best compression speed, and 9 means best
599# compression ratio which will consume more CPU.
600#
601# @compress-threads: Set compression thread count to be used in live migration,
602# the compression thread count is an integer between 1 and 255.
603#
604# @decompress-threads: Set decompression thread count to be used in live
605# migration, the decompression thread count is an integer between 1
606# and 255. Usually, decompression is at least 4 times as fast as
607# compression, so set the decompress-threads to the number about 1/4
608# of compress-threads is adequate.
609#
1626fee3
JH
610# @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled
611# when migration auto-converge is activated. The
612# default value is 20. (Since 2.5)
613#
614# @x-cpu-throttle-increment: throttle percentage increase each time
615# auto-converge detects that migration is not making
616# progress. The default value is 10. (Since 2.5)
43c60a81
LL
617# Since: 2.4
618##
619{ 'enum': 'MigrationParameter',
1626fee3
JH
620 'data': ['compress-level', 'compress-threads', 'decompress-threads',
621 'x-cpu-throttle-initial', 'x-cpu-throttle-increment'] }
43c60a81 622
85de8323
LL
623#
624# @migrate-set-parameters
625#
626# Set the following migration parameters
627#
628# @compress-level: compression level
629#
630# @compress-threads: compression thread count
631#
632# @decompress-threads: decompression thread count
633#
1626fee3
JH
634# @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled
635# when migration auto-converge is activated. The
636# default value is 20. (Since 2.5)
637#
638# @x-cpu-throttle-increment: throttle percentage increase each time
639# auto-converge detects that migration is not making
640# progress. The default value is 10. (Since 2.5)
85de8323
LL
641# Since: 2.4
642##
643{ 'command': 'migrate-set-parameters',
644 'data': { '*compress-level': 'int',
645 '*compress-threads': 'int',
1626fee3
JH
646 '*decompress-threads': 'int',
647 '*x-cpu-throttle-initial': 'int',
648 '*x-cpu-throttle-increment': 'int'} }
85de8323
LL
649
650#
651# @MigrationParameters
652#
653# @compress-level: compression level
654#
655# @compress-threads: compression thread count
656#
657# @decompress-threads: decompression thread count
658#
1626fee3
JH
659# @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled
660# when migration auto-converge is activated. The
661# default value is 20. (Since 2.5)
662#
663# @x-cpu-throttle-increment: throttle percentage increase each time
664# auto-converge detects that migration is not making
665# progress. The default value is 10. (Since 2.5)
666#
85de8323
LL
667# Since: 2.4
668##
669{ 'struct': 'MigrationParameters',
670 'data': { 'compress-level': 'int',
671 'compress-threads': 'int',
1626fee3
JH
672 'decompress-threads': 'int',
673 'x-cpu-throttle-initial': 'int',
674 'x-cpu-throttle-increment': 'int'} }
85de8323
LL
675##
676# @query-migrate-parameters
677#
678# Returns information about the current migration parameters
679#
680# Returns: @MigrationParameters
681#
682# Since: 2.4
683##
684{ 'command': 'query-migrate-parameters',
685 'returns': 'MigrationParameters' }
686
b8a185bc
MA
687##
688# @client_migrate_info
689#
690# Set migration information for remote display. This makes the server
691# ask the client to automatically reconnect using the new parameters
692# once migration finished successfully. Only implemented for SPICE.
693#
694# @protocol: must be "spice"
695# @hostname: migration target hostname
696# @port: #optional spice tcp port for plaintext channels
697# @tls-port: #optional spice tcp port for tls-secured channels
698# @cert-subject: #optional server certificate subject
699#
700# Since: 0.14.0
701##
702{ 'command': 'client_migrate_info',
703 'data': { 'protocol': 'str', 'hostname': 'str', '*port': 'int',
704 '*tls-port': 'int', '*cert-subject': 'str' } }
705
4886a1bc
DDAG
706##
707# @migrate-start-postcopy
708#
709# Switch migration to postcopy mode
710#
711# Since: 2.5
712{ 'command': 'migrate-start-postcopy' }
713
e235cec3
LC
714##
715# @MouseInfo:
716#
717# Information about a mouse device.
718#
719# @name: the name of the mouse device
720#
721# @index: the index of the mouse device
722#
723# @current: true if this device is currently receiving mouse events
724#
725# @absolute: true if this device supports absolute coordinates as input
726#
727# Since: 0.14.0
728##
895a2a80 729{ 'struct': 'MouseInfo',
e235cec3
LC
730 'data': {'name': 'str', 'index': 'int', 'current': 'bool',
731 'absolute': 'bool'} }
732
733##
734# @query-mice:
735#
736# Returns information about each active mouse device
737#
738# Returns: a list of @MouseInfo for each device
739#
740# Since: 0.14.0
741##
742{ 'command': 'query-mice', 'returns': ['MouseInfo'] }
743
de0b36b6
LC
744##
745# @CpuInfo:
746#
747# Information about a virtual CPU
748#
749# @CPU: the index of the virtual CPU
750#
751# @current: this only exists for backwards compatible and should be ignored
b80e560b 752#
de0b36b6
LC
753# @halted: true if the virtual CPU is in the halt state. Halt usually refers
754# to a processor specific low power mode.
755#
58f88d4b
EH
756# @qom_path: path to the CPU object in the QOM tree (since 2.4)
757#
de0b36b6
LC
758# @pc: #optional If the target is i386 or x86_64, this is the 64-bit instruction
759# pointer.
760# If the target is Sparc, this is the PC component of the
761# instruction pointer.
762#
763# @nip: #optional If the target is PPC, the instruction pointer
764#
765# @npc: #optional If the target is Sparc, the NPC component of the instruction
766# pointer
767#
768# @PC: #optional If the target is MIPS, the instruction pointer
769#
770# @thread_id: ID of the underlying host thread
771#
772# Since: 0.14.0
773#
774# Notes: @halted is a transient state that changes frequently. By the time the
775# data is sent to the client, the guest may no longer be halted.
776##
895a2a80 777{ 'struct': 'CpuInfo',
58f88d4b
EH
778 'data': {'CPU': 'int', 'current': 'bool', 'halted': 'bool',
779 'qom_path': 'str',
780 '*pc': 'int', '*nip': 'int', '*npc': 'int', '*PC': 'int',
781 'thread_id': 'int'} }
de0b36b6
LC
782
783##
784# @query-cpus:
785#
786# Returns a list of information about each virtual CPU.
787#
788# Returns: a list of @CpuInfo for each virtual CPU
789#
790# Since: 0.14.0
791##
792{ 'command': 'query-cpus', 'returns': ['CpuInfo'] }
793
dc3dd0d2
SH
794##
795# @IOThreadInfo:
796#
797# Information about an iothread
798#
799# @id: the identifier of the iothread
800#
801# @thread-id: ID of the underlying host thread
802#
803# Since: 2.0
804##
895a2a80 805{ 'struct': 'IOThreadInfo',
dc3dd0d2
SH
806 'data': {'id': 'str', 'thread-id': 'int'} }
807
808##
809# @query-iothreads:
810#
811# Returns a list of information about each iothread.
812#
813# Note this list excludes the QEMU main loop thread, which is not declared
814# using the -object iothread command-line option. It is always the main thread
815# of the process.
816#
817# Returns: a list of @IOThreadInfo for each iothread
818#
819# Since: 2.0
820##
821{ 'command': 'query-iothreads', 'returns': ['IOThreadInfo'] }
822
2b54aa87 823##
a589569f 824# @NetworkAddressFamily
2b54aa87 825#
a589569f
WX
826# The network address family
827#
828# @ipv4: IPV4 family
829#
830# @ipv6: IPV6 family
831#
832# @unix: unix socket
833#
834# @unknown: otherwise
835#
836# Since: 2.1
837##
838{ 'enum': 'NetworkAddressFamily',
839 'data': [ 'ipv4', 'ipv6', 'unix', 'unknown' ] }
840
841##
842# @VncBasicInfo
2b54aa87 843#
a589569f 844# The basic information for vnc network connection
2b54aa87 845#
a589569f 846# @host: IP address
2b54aa87 847#
2f44a08b
WX
848# @service: The service name of the vnc port. This may depend on the host
849# system's service database so symbolic names should not be relied
850# on.
a589569f
WX
851#
852# @family: address family
853#
4478aa76
GH
854# @websocket: true in case the socket is a websocket (since 2.3).
855#
a589569f
WX
856# Since: 2.1
857##
895a2a80 858{ 'struct': 'VncBasicInfo',
a589569f
WX
859 'data': { 'host': 'str',
860 'service': 'str',
4478aa76
GH
861 'family': 'NetworkAddressFamily',
862 'websocket': 'bool' } }
a589569f
WX
863
864##
865# @VncServerInfo
2b54aa87 866#
a589569f 867# The network connection information for server
2b54aa87 868#
a589569f 869# @auth: #optional, authentication method
2b54aa87 870#
a589569f
WX
871# Since: 2.1
872##
895a2a80 873{ 'struct': 'VncServerInfo',
a589569f
WX
874 'base': 'VncBasicInfo',
875 'data': { '*auth': 'str' } }
876
877##
878# @VncClientInfo:
879#
880# Information about a connected VNC client.
2b54aa87
LC
881#
882# @x509_dname: #optional If x509 authentication is in use, the Distinguished
883# Name of the client.
884#
885# @sasl_username: #optional If SASL authentication is in use, the SASL username
886# used for authentication.
887#
888# Since: 0.14.0
889##
895a2a80 890{ 'struct': 'VncClientInfo',
a589569f 891 'base': 'VncBasicInfo',
2f44a08b 892 'data': { '*x509_dname': 'str', '*sasl_username': 'str' } }
2b54aa87
LC
893
894##
895# @VncInfo:
896#
897# Information about the VNC session.
898#
899# @enabled: true if the VNC server is enabled, false otherwise
900#
901# @host: #optional The hostname the VNC server is bound to. This depends on
902# the name resolution on the host and may be an IP address.
903#
904# @family: #optional 'ipv6' if the host is listening for IPv6 connections
905# 'ipv4' if the host is listening for IPv4 connections
906# 'unix' if the host is listening on a unix domain socket
907# 'unknown' otherwise
908#
909# @service: #optional The service name of the server's port. This may depends
910# on the host system's service database so symbolic names should not
911# be relied on.
912#
913# @auth: #optional the current authentication type used by the server
914# 'none' if no authentication is being used
915# 'vnc' if VNC authentication is being used
916# 'vencrypt+plain' if VEncrypt is used with plain text authentication
917# 'vencrypt+tls+none' if VEncrypt is used with TLS and no authentication
918# 'vencrypt+tls+vnc' if VEncrypt is used with TLS and VNC authentication
919# 'vencrypt+tls+plain' if VEncrypt is used with TLS and plain text auth
920# 'vencrypt+x509+none' if VEncrypt is used with x509 and no auth
921# 'vencrypt+x509+vnc' if VEncrypt is used with x509 and VNC auth
922# 'vencrypt+x509+plain' if VEncrypt is used with x509 and plain text auth
923# 'vencrypt+tls+sasl' if VEncrypt is used with TLS and SASL auth
924# 'vencrypt+x509+sasl' if VEncrypt is used with x509 and SASL auth
925#
926# @clients: a list of @VncClientInfo of all currently connected clients
927#
928# Since: 0.14.0
929##
895a2a80 930{ 'struct': 'VncInfo',
a589569f
WX
931 'data': {'enabled': 'bool', '*host': 'str',
932 '*family': 'NetworkAddressFamily',
2b54aa87
LC
933 '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']} }
934
df887684
GH
935##
936# @VncPriAuth:
937#
938# vnc primary authentication method.
939#
940# Since: 2.3
941##
942{ 'enum': 'VncPrimaryAuth',
943 'data': [ 'none', 'vnc', 'ra2', 'ra2ne', 'tight', 'ultra',
944 'tls', 'vencrypt', 'sasl' ] }
945
946##
947# @VncVencryptSubAuth:
948#
949# vnc sub authentication method with vencrypt.
950#
951# Since: 2.3
952##
953{ 'enum': 'VncVencryptSubAuth',
954 'data': [ 'plain',
955 'tls-none', 'x509-none',
956 'tls-vnc', 'x509-vnc',
957 'tls-plain', 'x509-plain',
958 'tls-sasl', 'x509-sasl' ] }
959
960##
961# @VncInfo2:
962#
963# Information about a vnc server
964#
965# @id: vnc server name.
966#
967# @server: A list of @VncBasincInfo describing all listening sockets.
968# The list can be empty (in case the vnc server is disabled).
969# It also may have multiple entries: normal + websocket,
970# possibly also ipv4 + ipv6 in the future.
971#
972# @clients: A list of @VncClientInfo of all currently connected clients.
973# The list can be empty, for obvious reasons.
974#
975# @auth: The current authentication type used by the server
976#
977# @vencrypt: #optional The vencrypt sub authentication type used by the server,
978# only specified in case auth == vencrypt.
979#
980# @display: #optional The display device the vnc server is linked to.
981#
982# Since: 2.3
983##
895a2a80 984{ 'struct': 'VncInfo2',
df887684
GH
985 'data': { 'id' : 'str',
986 'server' : ['VncBasicInfo'],
987 'clients' : ['VncClientInfo'],
988 'auth' : 'VncPrimaryAuth',
989 '*vencrypt' : 'VncVencryptSubAuth',
990 '*display' : 'str' } }
991
2b54aa87
LC
992##
993# @query-vnc:
994#
995# Returns information about the current VNC server
996#
997# Returns: @VncInfo
2b54aa87
LC
998#
999# Since: 0.14.0
1000##
1001{ 'command': 'query-vnc', 'returns': 'VncInfo' }
1002
df887684
GH
1003##
1004# @query-vnc-servers:
1005#
1006# Returns a list of vnc servers. The list can be empty.
1007#
1008# Returns: a list of @VncInfo2
1009#
1010# Since: 2.3
1011##
1012{ 'command': 'query-vnc-servers', 'returns': ['VncInfo2'] }
1013
d1f29646 1014##
a589569f 1015# @SpiceBasicInfo
d1f29646 1016#
a589569f
WX
1017# The basic information for SPICE network connection
1018#
1019# @host: IP address
d1f29646 1020#
a589569f 1021# @port: port number
d1f29646 1022#
a589569f 1023# @family: address family
d1f29646 1024#
a589569f
WX
1025# Since: 2.1
1026##
895a2a80 1027{ 'struct': 'SpiceBasicInfo',
a589569f
WX
1028 'data': { 'host': 'str',
1029 'port': 'str',
1030 'family': 'NetworkAddressFamily' } }
1031
1032##
1033# @SpiceServerInfo
d1f29646 1034#
a589569f 1035# Information about a SPICE server
d1f29646 1036#
a589569f 1037# @auth: #optional, authentication method
d1f29646 1038#
a589569f
WX
1039# Since: 2.1
1040##
895a2a80 1041{ 'struct': 'SpiceServerInfo',
a589569f
WX
1042 'base': 'SpiceBasicInfo',
1043 'data': { '*auth': 'str' } }
1044
1045##
1046# @SpiceChannel
1047#
1048# Information about a SPICE client channel.
d1f29646
LC
1049#
1050# @connection-id: SPICE connection id number. All channels with the same id
1051# belong to the same SPICE session.
1052#
7e781c79
CR
1053# @channel-type: SPICE channel type number. "1" is the main control
1054# channel, filter for this one if you want to track spice
1055# sessions only
d1f29646 1056#
419e1bdf
AL
1057# @channel-id: SPICE channel ID number. Usually "0", might be different when
1058# multiple channels of the same type exist, such as multiple
d1f29646
LC
1059# display channels in a multihead setup
1060#
1061# @tls: true if the channel is encrypted, false otherwise.
1062#
1063# Since: 0.14.0
1064##
895a2a80 1065{ 'struct': 'SpiceChannel',
a589569f
WX
1066 'base': 'SpiceBasicInfo',
1067 'data': {'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int',
d1f29646
LC
1068 'tls': 'bool'} }
1069
4efee029
AL
1070##
1071# @SpiceQueryMouseMode
1072#
6932a69b 1073# An enumeration of Spice mouse states.
4efee029
AL
1074#
1075# @client: Mouse cursor position is determined by the client.
1076#
1077# @server: Mouse cursor position is determined by the server.
1078#
1079# @unknown: No information is available about mouse mode used by
1080# the spice server.
1081#
1082# Note: spice/enums.h has a SpiceMouseMode already, hence the name.
1083#
1084# Since: 1.1
1085##
1086{ 'enum': 'SpiceQueryMouseMode',
1087 'data': [ 'client', 'server', 'unknown' ] }
1088
d1f29646
LC
1089##
1090# @SpiceInfo
1091#
1092# Information about the SPICE session.
b80e560b 1093#
d1f29646
LC
1094# @enabled: true if the SPICE server is enabled, false otherwise
1095#
61c4efe2
YH
1096# @migrated: true if the last guest migration completed and spice
1097# migration had completed as well. false otherwise.
1098#
d1f29646
LC
1099# @host: #optional The hostname the SPICE server is bound to. This depends on
1100# the name resolution on the host and may be an IP address.
1101#
1102# @port: #optional The SPICE server's port number.
1103#
1104# @compiled-version: #optional SPICE server version.
1105#
1106# @tls-port: #optional The SPICE server's TLS port number.
1107#
1108# @auth: #optional the current authentication type used by the server
419e1bdf
AL
1109# 'none' if no authentication is being used
1110# 'spice' uses SASL or direct TLS authentication, depending on command
1111# line options
d1f29646 1112#
4efee029
AL
1113# @mouse-mode: The mode in which the mouse cursor is displayed currently. Can
1114# be determined by the client or the server, or unknown if spice
1115# server doesn't provide this information.
1116#
1117# Since: 1.1
1118#
d1f29646
LC
1119# @channels: a list of @SpiceChannel for each active spice channel
1120#
1121# Since: 0.14.0
1122##
895a2a80 1123{ 'struct': 'SpiceInfo',
61c4efe2 1124 'data': {'enabled': 'bool', 'migrated': 'bool', '*host': 'str', '*port': 'int',
d1f29646 1125 '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
4efee029 1126 'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} }
d1f29646
LC
1127
1128##
1129# @query-spice
1130#
1131# Returns information about the current SPICE server
1132#
1133# Returns: @SpiceInfo
1134#
1135# Since: 0.14.0
1136##
1137{ 'command': 'query-spice', 'returns': 'SpiceInfo' }
1138
96637bcd
LC
1139##
1140# @BalloonInfo:
1141#
1142# Information about the guest balloon device.
1143#
1144# @actual: the number of bytes the balloon currently contains
1145#
96637bcd
LC
1146# Since: 0.14.0
1147#
96637bcd 1148##
895a2a80 1149{ 'struct': 'BalloonInfo', 'data': {'actual': 'int' } }
96637bcd
LC
1150
1151##
1152# @query-balloon:
1153#
1154# Return information about the balloon device.
1155#
1156# Returns: @BalloonInfo on success
1157# If the balloon driver is enabled but not functional because the KVM
1158# kernel module cannot support it, KvmMissingCap
1159# If no balloon device is present, DeviceNotActive
1160#
1161# Since: 0.14.0
1162##
1163{ 'command': 'query-balloon', 'returns': 'BalloonInfo' }
1164
79627472
LC
1165##
1166# @PciMemoryRange:
1167#
1168# A PCI device memory region
1169#
1170# @base: the starting address (guest physical)
1171#
1172# @limit: the ending address (guest physical)
1173#
1174# Since: 0.14.0
1175##
895a2a80 1176{ 'struct': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} }
79627472
LC
1177
1178##
1179# @PciMemoryRegion
1180#
1181# Information about a PCI device I/O region.
1182#
1183# @bar: the index of the Base Address Register for this region
1184#
1185# @type: 'io' if the region is a PIO region
1186# 'memory' if the region is a MMIO region
1187#
1188# @prefetch: #optional if @type is 'memory', true if the memory is prefetchable
1189#
1190# @mem_type_64: #optional if @type is 'memory', true if the BAR is 64-bit
1191#
1192# Since: 0.14.0
1193##
895a2a80 1194{ 'struct': 'PciMemoryRegion',
79627472
LC
1195 'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int',
1196 '*prefetch': 'bool', '*mem_type_64': 'bool' } }
1197
1198##
9fa02cd1 1199# @PciBusInfo:
79627472 1200#
9fa02cd1 1201# Information about a bus of a PCI Bridge device
79627472 1202#
9fa02cd1
EB
1203# @number: primary bus interface number. This should be the number of the
1204# bus the device resides on.
79627472 1205#
9fa02cd1
EB
1206# @secondary: secondary bus interface number. This is the number of the
1207# main bus for the bridge
79627472 1208#
9fa02cd1
EB
1209# @subordinate: This is the highest number bus that resides below the
1210# bridge.
79627472 1211#
9fa02cd1 1212# @io_range: The PIO range for all devices on this bridge
79627472 1213#
9fa02cd1 1214# @memory_range: The MMIO range for all devices on this bridge
79627472 1215#
9fa02cd1
EB
1216# @prefetchable_range: The range of prefetchable MMIO for all devices on
1217# this bridge
1218#
1219# Since: 2.4
1220##
1221{ 'struct': 'PciBusInfo',
1222 'data': {'number': 'int', 'secondary': 'int', 'subordinate': 'int',
1223 'io_range': 'PciMemoryRange',
1224 'memory_range': 'PciMemoryRange',
1225 'prefetchable_range': 'PciMemoryRange' } }
1226
1227##
1228# @PciBridgeInfo:
1229#
1230# Information about a PCI Bridge device
1231#
1232# @bus: information about the bus the device resides on
79627472
LC
1233#
1234# @devices: a list of @PciDeviceInfo for each device on this bridge
1235#
1236# Since: 0.14.0
1237##
895a2a80 1238{ 'struct': 'PciBridgeInfo',
9fa02cd1
EB
1239 'data': {'bus': 'PciBusInfo', '*devices': ['PciDeviceInfo']} }
1240
1241##
1242# @PciDeviceClass:
1243#
1244# Information about the Class of a PCI device
1245#
1246# @desc: #optional a string description of the device's class
1247#
1248# @class: the class code of the device
1249#
1250# Since: 2.4
1251##
1252{ 'struct': 'PciDeviceClass',
1253 'data': {'*desc': 'str', 'class': 'int'} }
1254
1255##
1256# @PciDeviceId:
1257#
1258# Information about the Id of a PCI device
1259#
1260# @device: the PCI device id
1261#
1262# @vendor: the PCI vendor id
1263#
1264# Since: 2.4
1265##
1266{ 'struct': 'PciDeviceId',
1267 'data': {'device': 'int', 'vendor': 'int'} }
79627472
LC
1268
1269##
1270# @PciDeviceInfo:
1271#
1272# Information about a PCI device
1273#
1274# @bus: the bus number of the device
1275#
1276# @slot: the slot the device is located in
1277#
1278# @function: the function of the slot used by the device
1279#
9fa02cd1 1280# @class_info: the class of the device
79627472 1281#
9fa02cd1 1282# @id: the PCI device id
79627472
LC
1283#
1284# @irq: #optional if an IRQ is assigned to the device, the IRQ number
1285#
1286# @qdev_id: the device name of the PCI device
1287#
1288# @pci_bridge: if the device is a PCI bridge, the bridge information
1289#
1290# @regions: a list of the PCI I/O regions associated with the device
1291#
1292# Notes: the contents of @class_info.desc are not stable and should only be
1293# treated as informational.
1294#
1295# Since: 0.14.0
1296##
895a2a80 1297{ 'struct': 'PciDeviceInfo',
79627472 1298 'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
9fa02cd1 1299 'class_info': 'PciDeviceClass', 'id': 'PciDeviceId',
79627472
LC
1300 '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
1301 'regions': ['PciMemoryRegion']} }
1302
1303##
1304# @PciInfo:
1305#
1306# Information about a PCI bus
1307#
1308# @bus: the bus index
1309#
1310# @devices: a list of devices on this bus
1311#
1312# Since: 0.14.0
1313##
895a2a80 1314{ 'struct': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} }
79627472
LC
1315
1316##
1317# @query-pci:
1318#
1319# Return information about the PCI bus topology of the guest.
1320#
1321# Returns: a list of @PciInfo for each PCI bus
1322#
1323# Since: 0.14.0
1324##
1325{ 'command': 'query-pci', 'returns': ['PciInfo'] }
1326
7a7f325e
LC
1327##
1328# @quit:
1329#
1330# This command will cause the QEMU process to exit gracefully. While every
1331# attempt is made to send the QMP response before terminating, this is not
1332# guaranteed. When using this interface, a premature EOF would not be
1333# unexpected.
1334#
1335# Since: 0.14.0
1336##
1337{ 'command': 'quit' }
5f158f21
LC
1338
1339##
1340# @stop:
1341#
1342# Stop all guest VCPU execution.
1343#
1344# Since: 0.14.0
1345#
1346# Notes: This function will succeed even if the guest is already in the stopped
1e998146
PB
1347# state. In "inmigrate" state, it will ensure that the guest
1348# remains paused once migration finishes, as if the -S option was
1349# passed on the command line.
5f158f21
LC
1350##
1351{ 'command': 'stop' }
38d22653
LC
1352
1353##
1354# @system_reset:
1355#
1356# Performs a hard reset of a guest.
1357#
1358# Since: 0.14.0
1359##
1360{ 'command': 'system_reset' }
5bc465e4
LC
1361
1362##
1363# @system_powerdown:
1364#
1365# Requests that a guest perform a powerdown operation.
1366#
1367# Since: 0.14.0
1368#
1369# Notes: A guest may or may not respond to this command. This command
1370# returning does not indicate that a guest has accepted the request or
1371# that it has shut down. Many guests will respond to this command by
1372# prompting the user in some way.
1373##
1374{ 'command': 'system_powerdown' }
755f1968
LC
1375
1376##
1377# @cpu:
1378#
1379# This command is a nop that is only provided for the purposes of compatibility.
1380#
1381# Since: 0.14.0
1382#
1383# Notes: Do not use this command.
1384##
1385{ 'command': 'cpu', 'data': {'index': 'int'} }
0cfd6a9a 1386
69ca3ea5
IM
1387##
1388# @cpu-add
1389#
1390# Adds CPU with specified ID
1391#
1392# @id: ID of CPU to be created, valid values [0..max_cpus)
1393#
1394# Returns: Nothing on success
1395#
1396# Since 1.5
1397##
1398{ 'command': 'cpu-add', 'data': {'id': 'int'} }
1399
0cfd6a9a
LC
1400##
1401# @memsave:
1402#
1403# Save a portion of guest memory to a file.
1404#
1405# @val: the virtual address of the guest to start from
1406#
1407# @size: the size of memory region to save
1408#
1409# @filename: the file to save the memory to as binary data
1410#
1411# @cpu-index: #optional the index of the virtual CPU to use for translating the
1412# virtual address (defaults to CPU 0)
1413#
1414# Returns: Nothing on success
0cfd6a9a
LC
1415#
1416# Since: 0.14.0
1417#
1418# Notes: Errors were not reliably returned until 1.1
1419##
1420{ 'command': 'memsave',
1421 'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
6d3962bf
LC
1422
1423##
1424# @pmemsave:
1425#
1426# Save a portion of guest physical memory to a file.
1427#
1428# @val: the physical address of the guest to start from
1429#
1430# @size: the size of memory region to save
1431#
1432# @filename: the file to save the memory to as binary data
1433#
1434# Returns: Nothing on success
6d3962bf
LC
1435#
1436# Since: 0.14.0
1437#
1438# Notes: Errors were not reliably returned until 1.1
1439##
1440{ 'command': 'pmemsave',
1441 'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
e42e818b
LC
1442
1443##
1444# @cont:
1445#
1446# Resume guest VCPU execution.
1447#
1448# Since: 0.14.0
1449#
1450# Returns: If successful, nothing
e42e818b
LC
1451# If QEMU was started with an encrypted block device and a key has
1452# not yet been set, DeviceEncrypted.
1453#
1e998146
PB
1454# Notes: This command will succeed if the guest is currently running. It
1455# will also succeed if the guest is in the "inmigrate" state; in
1456# this case, the effect of the command is to make sure the guest
1457# starts once migration finishes, removing the effect of the -S
1458# command line option if it was passed.
e42e818b
LC
1459##
1460{ 'command': 'cont' }
1461
9b9df25a
GH
1462##
1463# @system_wakeup:
1464#
1465# Wakeup guest from suspend. Does nothing in case the guest isn't suspended.
1466#
1467# Since: 1.1
1468#
1469# Returns: nothing.
1470##
1471{ 'command': 'system_wakeup' }
1472
ab49ab5c
LC
1473##
1474# @inject-nmi:
1475#
9cb805fd 1476# Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or all CPUs (ppc64).
ab49ab5c
LC
1477#
1478# Returns: If successful, nothing
ab49ab5c
LC
1479#
1480# Since: 0.14.0
1481#
9cb805fd 1482# Note: prior to 2.1, this command was only supported for x86 and s390 VMs
ab49ab5c
LC
1483##
1484{ 'command': 'inject-nmi' }
4b37156c
LC
1485
1486##
1487# @set_link:
1488#
1489# Sets the link status of a virtual network adapter.
1490#
1491# @name: the device name of the virtual network adapter
1492#
1493# @up: true to set the link status to be up
1494#
1495# Returns: Nothing on success
1496# If @name is not a valid network device, DeviceNotFound
1497#
1498# Since: 0.14.0
1499#
1500# Notes: Not all network adapters support setting link status. This command
1501# will succeed even if the network adapter does not support link status
1502# notification.
1503##
1504{ 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} }
a4dea8a9 1505
d72f3264
LC
1506##
1507# @balloon:
1508#
1509# Request the balloon driver to change its balloon size.
1510#
1511# @value: the target size of the balloon in bytes
1512#
1513# Returns: Nothing on success
1514# If the balloon driver is enabled but not functional because the KVM
1515# kernel module cannot support it, KvmMissingCap
1516# If no balloon device is present, DeviceNotActive
1517#
1518# Notes: This command just issues a request to the guest. When it returns,
1519# the balloon size may not have changed. A guest can change the balloon
1520# size independent of this command.
1521#
1522# Since: 0.14.0
1523##
1524{ 'command': 'balloon', 'data': {'value': 'int'} }
5e7caacb 1525
78b18b78
SH
1526##
1527# @Abort
1528#
1529# This action can be used to test transaction failure.
1530#
1531# Since: 1.6
1532###
895a2a80 1533{ 'struct': 'Abort',
78b18b78
SH
1534 'data': { } }
1535
8802d1fd 1536##
c8a83e85 1537# @TransactionAction
8802d1fd 1538#
52e7c241
PB
1539# A discriminated record of operations that can be performed with
1540# @transaction.
b7b9d39a
FZ
1541#
1542# Since 1.1
1543#
1544# drive-backup since 1.6
1545# abort since 1.6
1546# blockdev-snapshot-internal-sync since 1.7
bd8baecd 1547# blockdev-backup since 2.3
43de7e2d 1548# blockdev-snapshot since 2.5
8802d1fd 1549##
c8a83e85 1550{ 'union': 'TransactionAction',
52e7c241 1551 'data': {
43de7e2d 1552 'blockdev-snapshot': 'BlockdevSnapshot',
a911e6ae 1553 'blockdev-snapshot-sync': 'BlockdevSnapshotSync',
78b18b78 1554 'drive-backup': 'DriveBackup',
bd8baecd 1555 'blockdev-backup': 'BlockdevBackup',
bbe86010
WX
1556 'abort': 'Abort',
1557 'blockdev-snapshot-internal-sync': 'BlockdevSnapshotInternal'
52e7c241 1558 } }
8802d1fd
JC
1559
1560##
52e7c241 1561# @transaction
8802d1fd 1562#
c8a83e85
KW
1563# Executes a number of transactionable QMP commands atomically. If any
1564# operation fails, then the entire set of actions will be abandoned and the
1565# appropriate error returned.
8802d1fd
JC
1566#
1567# List of:
c8a83e85 1568# @TransactionAction: information needed for the respective operation
8802d1fd
JC
1569#
1570# Returns: nothing on success
c8a83e85 1571# Errors depend on the operations of the transaction
8802d1fd 1572#
c8a83e85
KW
1573# Note: The transaction aborts on the first failure. Therefore, there will be
1574# information on only one failed operation returned in an error condition, and
52e7c241
PB
1575# subsequent actions will not have been attempted.
1576#
1577# Since 1.1
8802d1fd 1578##
52e7c241 1579{ 'command': 'transaction',
c8a83e85 1580 'data': { 'actions': [ 'TransactionAction' ] } }
8802d1fd 1581
d51a67b4
LC
1582##
1583# @human-monitor-command:
1584#
1585# Execute a command on the human monitor and return the output.
1586#
1587# @command-line: the command to execute in the human monitor
1588#
1589# @cpu-index: #optional The CPU to use for commands that require an implicit CPU
1590#
1591# Returns: the output of the command as a string
1592#
1ad166b6 1593# Since: 0.14.0
08e4ed6c 1594#
1ad166b6
BC
1595# Notes: This command only exists as a stop-gap. Its use is highly
1596# discouraged. The semantics of this command are not guaranteed.
b952b558 1597#
1ad166b6 1598# Known limitations:
b952b558 1599#
1ad166b6
BC
1600# o This command is stateless, this means that commands that depend
1601# on state information (such as getfd) might not work
d9b902db 1602#
1ad166b6
BC
1603# o Commands that prompt the user for data (eg. 'cont' when the block
1604# device is encrypted) don't currently work
d9b902db 1605##
1ad166b6
BC
1606{ 'command': 'human-monitor-command',
1607 'data': {'command-line': 'str', '*cpu-index': 'int'},
1608 'returns': 'str' }
d9b902db
PB
1609
1610##
6cdedb07
LC
1611# @migrate_cancel
1612#
1613# Cancel the current executing migration process.
1614#
1615# Returns: nothing on success
1616#
1617# Notes: This command succeeds even if there is no migration process running.
1618#
1619# Since: 0.14.0
1620##
1621{ 'command': 'migrate_cancel' }
4f0a993b
LC
1622
1623##
1624# @migrate_set_downtime
1625#
1626# Set maximum tolerated downtime for migration.
1627#
1628# @value: maximum downtime in seconds
1629#
1630# Returns: nothing on success
1631#
1632# Since: 0.14.0
1633##
1634{ 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
3dc85383
LC
1635
1636##
1637# @migrate_set_speed
1638#
1639# Set maximum speed for migration.
1640#
1641# @value: maximum speed in bytes.
1642#
1643# Returns: nothing on success
1644#
1645# Notes: A value lesser than zero will be automatically round up to zero.
1646#
1647# Since: 0.14.0
1648##
1649{ 'command': 'migrate_set_speed', 'data': {'value': 'int'} }
b4b12c62 1650
9e1ba4cc
OW
1651##
1652# @migrate-set-cache-size
1653#
1654# Set XBZRLE cache size
1655#
1656# @value: cache size in bytes
1657#
1658# The size will be rounded down to the nearest power of 2.
1659# The cache size can be modified before and during ongoing migration
1660#
1661# Returns: nothing on success
1662#
1663# Since: 1.2
1664##
1665{ 'command': 'migrate-set-cache-size', 'data': {'value': 'int'} }
1666
1667##
1668# @query-migrate-cache-size
1669#
1670# query XBZRLE cache size
1671#
1672# Returns: XBZRLE cache size in bytes
1673#
1674# Since: 1.2
1675##
1676{ 'command': 'query-migrate-cache-size', 'returns': 'int' }
1677
b4b12c62 1678##
d03ee401 1679# @ObjectPropertyInfo:
b4b12c62
AL
1680#
1681# @name: the name of the property
1682#
1683# @type: the type of the property. This will typically come in one of four
1684# forms:
1685#
1686# 1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
1687# These types are mapped to the appropriate JSON type.
1688#
33b23b4b 1689# 2) A child type in the form 'child<subtype>' where subtype is a qdev
b4b12c62
AL
1690# device type name. Child properties create the composition tree.
1691#
33b23b4b 1692# 3) A link type in the form 'link<subtype>' where subtype is a qdev
b4b12c62
AL
1693# device type name. Link properties form the device model graph.
1694#
51920820 1695# Since: 1.2
b4b12c62 1696##
895a2a80 1697{ 'struct': 'ObjectPropertyInfo',
b4b12c62
AL
1698 'data': { 'name': 'str', 'type': 'str' } }
1699
1700##
1701# @qom-list:
1702#
57c9fafe 1703# This command will list any properties of a object given a path in the object
b4b12c62
AL
1704# model.
1705#
57c9fafe 1706# @path: the path within the object model. See @qom-get for a description of
b4b12c62
AL
1707# this parameter.
1708#
57c9fafe
AL
1709# Returns: a list of @ObjectPropertyInfo that describe the properties of the
1710# object.
b4b12c62 1711#
51920820 1712# Since: 1.2
b4b12c62
AL
1713##
1714{ 'command': 'qom-list',
1715 'data': { 'path': 'str' },
57c9fafe 1716 'returns': [ 'ObjectPropertyInfo' ] }
eb6e8ea5
AL
1717
1718##
1719# @qom-get:
1720#
57c9fafe 1721# This command will get a property from a object model path and return the
eb6e8ea5
AL
1722# value.
1723#
57c9fafe 1724# @path: The path within the object model. There are two forms of supported
eb6e8ea5
AL
1725# paths--absolute and partial paths.
1726#
57c9fafe 1727# Absolute paths are derived from the root object and can follow child<>
eb6e8ea5
AL
1728# or link<> properties. Since they can follow link<> properties, they
1729# can be arbitrarily long. Absolute paths look like absolute filenames
1730# and are prefixed with a leading slash.
1731#
1732# Partial paths look like relative filenames. They do not begin
1733# with a prefix. The matching rules for partial paths are subtle but
57c9fafe 1734# designed to make specifying objects easy. At each level of the
eb6e8ea5
AL
1735# composition tree, the partial path is matched as an absolute path.
1736# The first match is not returned. At least two matches are searched
1737# for. A successful result is only returned if only one match is
1738# found. If more than one match is found, a flag is return to
1739# indicate that the match was ambiguous.
1740#
1741# @property: The property name to read
1742#
33b23b4b
MAL
1743# Returns: The property value. The type depends on the property
1744# type. child<> and link<> properties are returned as #str
1745# pathnames. All integer property types (u8, u16, etc) are
1746# returned as #int.
eb6e8ea5 1747#
51920820 1748# Since: 1.2
eb6e8ea5
AL
1749##
1750{ 'command': 'qom-get',
1751 'data': { 'path': 'str', 'property': 'str' },
6eb3937e 1752 'returns': 'any' }
eb6e8ea5
AL
1753
1754##
1755# @qom-set:
1756#
57c9fafe 1757# This command will set a property from a object model path.
eb6e8ea5
AL
1758#
1759# @path: see @qom-get for a description of this parameter
1760#
1761# @property: the property name to set
1762#
1763# @value: a value who's type is appropriate for the property type. See @qom-get
1764# for a description of type mapping.
1765#
51920820 1766# Since: 1.2
eb6e8ea5
AL
1767##
1768{ 'command': 'qom-set',
6eb3937e 1769 'data': { 'path': 'str', 'property': 'str', 'value': 'any' } }
fbf796fd
LC
1770
1771##
1772# @set_password:
1773#
1774# Sets the password of a remote display session.
1775#
1776# @protocol: `vnc' to modify the VNC server password
1777# `spice' to modify the Spice server password
1778#
1779# @password: the new password
1780#
1781# @connected: #optional how to handle existing clients when changing the
b80e560b 1782# password. If nothing is specified, defaults to `keep'
fbf796fd
LC
1783# `fail' to fail the command if clients are connected
1784# `disconnect' to disconnect existing clients
1785# `keep' to maintain existing clients
1786#
1787# Returns: Nothing on success
1788# If Spice is not enabled, DeviceNotFound
fbf796fd
LC
1789#
1790# Since: 0.14.0
1791##
1792{ 'command': 'set_password',
1793 'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} }
9ad5372d
LC
1794
1795##
1796# @expire_password:
1797#
1798# Expire the password of a remote display server.
1799#
1800# @protocol: the name of the remote display protocol `vnc' or `spice'
1801#
1802# @time: when to expire the password.
1803# `now' to expire the password immediately
1804# `never' to cancel password expiration
1805# `+INT' where INT is the number of seconds from now (integer)
1806# `INT' where INT is the absolute time in seconds
1807#
1808# Returns: Nothing on success
1809# If @protocol is `spice' and Spice is not active, DeviceNotFound
9ad5372d
LC
1810#
1811# Since: 0.14.0
1812#
1813# Notes: Time is relative to the server and currently there is no way to
1814# coordinate server time with client time. It is not recommended to
1815# use the absolute time version of the @time parameter unless you're
1816# sure you are on the same machine as the QEMU instance.
1817##
1818{ 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} }
c245b6a3 1819
270b243f
LC
1820##
1821# @change-vnc-password:
1822#
1823# Change the VNC server password.
1824#
1c854067 1825# @password: the new password to use with VNC authentication
270b243f
LC
1826#
1827# Since: 1.1
1828#
1829# Notes: An empty password in this command will set the password to the empty
1830# string. Existing clients are unaffected by executing this command.
1831##
1832{ 'command': 'change-vnc-password', 'data': {'password': 'str'} }
333a96ec
LC
1833
1834##
1835# @change:
1836#
1837# This command is multiple commands multiplexed together.
1838#
1839# @device: This is normally the name of a block device but it may also be 'vnc'.
1840# when it's 'vnc', then sub command depends on @target
1841#
1842# @target: If @device is a block device, then this is the new filename.
1843# If @device is 'vnc', then if the value 'password' selects the vnc
1844# change password command. Otherwise, this specifies a new server URI
1845# address to listen to for VNC connections.
1846#
1847# @arg: If @device is a block device, then this is an optional format to open
1848# the device with.
1849# If @device is 'vnc' and @target is 'password', this is the new VNC
1850# password to set. If this argument is an empty string, then no future
1851# logins will be allowed.
1852#
1853# Returns: Nothing on success.
1854# If @device is not a valid block device, DeviceNotFound
333a96ec
LC
1855# If the new block device is encrypted, DeviceEncrypted. Note that
1856# if this error is returned, the device has been opened successfully
1857# and an additional call to @block_passwd is required to set the
1858# device's password. The behavior of reads and writes to the block
1859# device between when these calls are executed is undefined.
1860#
24fb4133
HR
1861# Notes: This interface is deprecated, and it is strongly recommended that you
1862# avoid using it. For changing block devices, use
1863# blockdev-change-medium; for changing VNC parameters, use
1864# change-vnc-password.
333a96ec
LC
1865#
1866# Since: 0.14.0
1867##
1868{ 'command': 'change',
1869 'data': {'device': 'str', 'target': 'str', '*arg': 'str'} }
80047da5 1870
5eeee3fa
AL
1871##
1872# @ObjectTypeInfo:
1873#
1874# This structure describes a search result from @qom-list-types
1875#
1876# @name: the type name found in the search
1877#
1878# Since: 1.1
1879#
1880# Notes: This command is experimental and may change syntax in future releases.
1881##
895a2a80 1882{ 'struct': 'ObjectTypeInfo',
5eeee3fa
AL
1883 'data': { 'name': 'str' } }
1884
1885##
1886# @qom-list-types:
1887#
1888# This command will return a list of types given search parameters
1889#
1890# @implements: if specified, only return types that implement this type name
1891#
1892# @abstract: if true, include abstract types in the results
1893#
1894# Returns: a list of @ObjectTypeInfo or an empty list if no results are found
1895#
1896# Since: 1.1
5eeee3fa
AL
1897##
1898{ 'command': 'qom-list-types',
1899 'data': { '*implements': 'str', '*abstract': 'bool' },
1900 'returns': [ 'ObjectTypeInfo' ] }
e1c37d0e 1901
1daa31b9
AL
1902##
1903# @DevicePropertyInfo:
1904#
1905# Information about device properties.
1906#
1907# @name: the name of the property
1908# @type: the typename of the property
07d09c58
GA
1909# @description: #optional if specified, the description of the property.
1910# (since 2.2)
1daa31b9
AL
1911#
1912# Since: 1.2
1913##
895a2a80 1914{ 'struct': 'DevicePropertyInfo',
07d09c58 1915 'data': { 'name': 'str', 'type': 'str', '*description': 'str' } }
1daa31b9
AL
1916
1917##
1918# @device-list-properties:
1919#
1920# List properties associated with a device.
1921#
1922# @typename: the type name of a device
1923#
1924# Returns: a list of DevicePropertyInfo describing a devices properties
1925#
1926# Since: 1.2
1927##
1928{ 'command': 'device-list-properties',
1929 'data': { 'typename': 'str'},
1930 'returns': [ 'DevicePropertyInfo' ] }
1931
e1c37d0e
LC
1932##
1933# @migrate
1934#
1935# Migrates the current running guest to another Virtual Machine.
1936#
1937# @uri: the Uniform Resource Identifier of the destination VM
1938#
1939# @blk: #optional do block migration (full disk copy)
1940#
1941# @inc: #optional incremental disk copy migration
1942#
1943# @detach: this argument exists only for compatibility reasons and
1944# is ignored by QEMU
1945#
1946# Returns: nothing on success
1947#
1948# Since: 0.14.0
1949##
1950{ 'command': 'migrate',
1951 'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
33cf629a 1952
bf1ae1f4
DDAG
1953##
1954# @migrate-incoming
1955#
1956# Start an incoming migration, the qemu must have been started
1957# with -incoming defer
1958#
1959# @uri: The Uniform Resource Identifier identifying the source or
1960# address to listen on
1961#
1962# Returns: nothing on success
1963#
1964# Since: 2.3
d8760534
DDAG
1965# Note: It's a bad idea to use a string for the uri, but it needs to stay
1966# compatible with -incoming and the format of the uri is already exposed
1967# above libvirt
bf1ae1f4
DDAG
1968##
1969{ 'command': 'migrate-incoming', 'data': {'uri': 'str' } }
1970
a7ae8355
SS
1971# @xen-save-devices-state:
1972#
1973# Save the state of all devices to file. The RAM and the block devices
1974# of the VM are not saved by this command.
1975#
1976# @filename: the file to save the state of the devices to as binary
1977# data. See xen-save-devices-state.txt for a description of the binary
1978# format.
1979#
1980# Returns: Nothing on success
a7ae8355
SS
1981#
1982# Since: 1.1
1983##
1984{ 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} }
a15fef21 1985
39f42439
AP
1986##
1987# @xen-set-global-dirty-log
1988#
1989# Enable or disable the global dirty log mode.
1990#
1991# @enable: true to enable, false to disable.
1992#
1993# Returns: nothing
1994#
1995# Since: 1.3
1996##
1997{ 'command': 'xen-set-global-dirty-log', 'data': { 'enable': 'bool' } }
1998
a15fef21
LC
1999##
2000# @device_del:
2001#
2002# Remove a device from a guest
2003#
6287d827 2004# @id: the name or QOM path of the device
a15fef21
LC
2005#
2006# Returns: Nothing on success
2007# If @id is not a valid device, DeviceNotFound
a15fef21
LC
2008#
2009# Notes: When this command completes, the device may not be removed from the
2010# guest. Hot removal is an operation that requires guest cooperation.
2011# This command merely requests that the guest begin the hot removal
0402a5d6
MT
2012# process. Completion of the device removal process is signaled with a
2013# DEVICE_DELETED event. Guest reset will automatically complete removal
2014# for all devices.
a15fef21
LC
2015#
2016# Since: 0.14.0
2017##
2018{ 'command': 'device_del', 'data': {'id': 'str'} }
783e9b48 2019
b53ccc30
QN
2020##
2021# @DumpGuestMemoryFormat:
2022#
2023# An enumeration of guest-memory-dump's format.
2024#
2025# @elf: elf format
2026#
2027# @kdump-zlib: kdump-compressed format with zlib-compressed
2028#
2029# @kdump-lzo: kdump-compressed format with lzo-compressed
2030#
2031# @kdump-snappy: kdump-compressed format with snappy-compressed
2032#
2033# Since: 2.0
2034##
2035{ 'enum': 'DumpGuestMemoryFormat',
2036 'data': [ 'elf', 'kdump-zlib', 'kdump-lzo', 'kdump-snappy' ] }
2037
783e9b48
WC
2038##
2039# @dump-guest-memory
2040#
2041# Dump guest's memory to vmcore. It is a synchronous operation that can take
2042# very long depending on the amount of guest memory. This command is only
f5b0d93b
LC
2043# supported on i386 and x86_64.
2044#
2045# @paging: if true, do paging to get guest's memory mapping. This allows
d691180e 2046# using gdb to process the core file.
f5b0d93b 2047#
d691180e
LC
2048# IMPORTANT: this option can make QEMU allocate several gigabytes
2049# of RAM. This can happen for a large guest, or a
2050# malicious guest pretending to be large.
2051#
2052# Also, paging=true has the following limitations:
2053#
2054# 1. The guest may be in a catastrophic state or can have corrupted
2055# memory, which cannot be trusted
2056# 2. The guest can be in real-mode even if paging is enabled. For
2057# example, the guest uses ACPI to sleep, and ACPI sleep state
2058# goes in real-mode
f5b0d93b 2059#
783e9b48 2060# @protocol: the filename or file descriptor of the vmcore. The supported
d691180e 2061# protocols are:
f5b0d93b 2062#
d691180e
LC
2063# 1. file: the protocol starts with "file:", and the following
2064# string is the file's path.
2065# 2. fd: the protocol starts with "fd:", and the following string
2066# is the fd's name.
f5b0d93b 2067#
783e9b48 2068# @begin: #optional if specified, the starting physical address.
f5b0d93b 2069#
783e9b48 2070# @length: #optional if specified, the memory size, in bytes. If you don't
d691180e
LC
2071# want to dump all guest's memory, please specify the start @begin
2072# and @length
783e9b48 2073#
b53ccc30
QN
2074# @format: #optional if specified, the format of guest memory dump. But non-elf
2075# format is conflict with paging and filter, ie. @paging, @begin and
2076# @length is not allowed to be specified with non-elf @format at the
2077# same time (since 2.0)
2078#
783e9b48 2079# Returns: nothing on success
783e9b48
WC
2080#
2081# Since: 1.2
2082##
2083{ 'command': 'dump-guest-memory',
2084 'data': { 'paging': 'bool', 'protocol': 'str', '*begin': 'int',
b53ccc30 2085 '*length': 'int', '*format': 'DumpGuestMemoryFormat' } }
d691180e 2086
7d6dc7f3
QN
2087##
2088# @DumpGuestMemoryCapability:
2089#
2090# A list of the available formats for dump-guest-memory
2091#
2092# Since: 2.0
2093##
895a2a80 2094{ 'struct': 'DumpGuestMemoryCapability',
7d6dc7f3
QN
2095 'data': {
2096 'formats': ['DumpGuestMemoryFormat'] } }
2097
2098##
2099# @query-dump-guest-memory-capability:
2100#
2101# Returns the available formats for dump-guest-memory
2102#
2103# Returns: A @DumpGuestMemoryCapability object listing available formats for
2104# dump-guest-memory
2105#
2106# Since: 2.0
2107##
2108{ 'command': 'query-dump-guest-memory-capability',
2109 'returns': 'DumpGuestMemoryCapability' }
d691180e 2110
7ee0c3e3
JH
2111##
2112# @dump-skeys
2113#
2114# Dump guest's storage keys
2115#
2116# @filename: the path to the file to dump to
2117#
2118# This command is only supported on s390 architecture.
2119#
2120# Since: 2.5
2121##
2122{ 'command': 'dump-skeys',
2123 'data': { 'filename': 'str' } }
2124
928059a3
LC
2125##
2126# @netdev_add:
2127#
2128# Add a network backend.
2129#
2130# @type: the type of network backend. Current valid values are 'user', 'tap',
2131# 'vde', 'socket', 'dump' and 'bridge'
2132#
2133# @id: the name of the new network backend
2134#
b8a98326 2135# Additional arguments depend on the type.
928059a3 2136#
b8a98326
MA
2137# TODO This command effectively bypasses QAPI completely due to its
2138# "additional arguments" business. It shouldn't have been added to
2139# the schema in this form. It should be qapified properly, or
2140# replaced by a properly qapified command.
928059a3
LC
2141#
2142# Since: 0.14.0
2143#
2144# Returns: Nothing on success
2145# If @type is not a valid network backend, DeviceNotFound
928059a3
LC
2146##
2147{ 'command': 'netdev_add',
b8a98326
MA
2148 'data': {'type': 'str', 'id': 'str'},
2149 'gen': false } # so we can get the additional arguments
5f964155
LC
2150
2151##
2152# @netdev_del:
2153#
2154# Remove a network backend.
2155#
2156# @id: the name of the network backend to remove
2157#
2158# Returns: Nothing on success
2159# If @id is not a valid network backend, DeviceNotFound
2160#
2161# Since: 0.14.0
2162##
2163{ 'command': 'netdev_del', 'data': {'id': 'str'} }
208c9d1b 2164
cff8b2c6
PB
2165##
2166# @object-add:
2167#
2168# Create a QOM object.
2169#
2170# @qom-type: the class name for the object to be created
2171#
2172# @id: the name of the new object
2173#
2174# @props: #optional a dictionary of properties to be passed to the backend
2175#
2176# Returns: Nothing on success
2177# Error if @qom-type is not a valid class name
2178#
2179# Since: 2.0
2180##
2181{ 'command': 'object-add',
6eb3937e 2182 'data': {'qom-type': 'str', 'id': 'str', '*props': 'any'} }
cff8b2c6 2183
ab2d0531
PB
2184##
2185# @object-del:
2186#
2187# Remove a QOM object.
2188#
2189# @id: the name of the QOM object to remove
2190#
2191# Returns: Nothing on success
2192# Error if @id is not a valid id for a QOM object
2193#
2194# Since: 2.0
2195##
2196{ 'command': 'object-del', 'data': {'id': 'str'} }
2197
14aa0c2d
LE
2198##
2199# @NetdevNoneOptions
2200#
2201# Use it alone to have zero network devices.
2202#
2203# Since 1.2
2204##
895a2a80 2205{ 'struct': 'NetdevNoneOptions',
14aa0c2d
LE
2206 'data': { } }
2207
2208##
2209# @NetLegacyNicOptions
2210#
2211# Create a new Network Interface Card.
2212#
2213# @netdev: #optional id of -netdev to connect to
2214#
2215# @macaddr: #optional MAC address
2216#
2217# @model: #optional device model (e1000, rtl8139, virtio etc.)
2218#
2219# @addr: #optional PCI device address
2220#
2221# @vectors: #optional number of MSI-x vectors, 0 to disable MSI-X
2222#
2223# Since 1.2
2224##
895a2a80 2225{ 'struct': 'NetLegacyNicOptions',
14aa0c2d
LE
2226 'data': {
2227 '*netdev': 'str',
2228 '*macaddr': 'str',
2229 '*model': 'str',
2230 '*addr': 'str',
2231 '*vectors': 'uint32' } }
2232
2233##
2234# @String
2235#
2236# A fat type wrapping 'str', to be embedded in lists.
2237#
2238# Since 1.2
2239##
895a2a80 2240{ 'struct': 'String',
14aa0c2d
LE
2241 'data': {
2242 'str': 'str' } }
2243
2244##
2245# @NetdevUserOptions
2246#
2247# Use the user mode network stack which requires no administrator privilege to
2248# run.
2249#
2250# @hostname: #optional client hostname reported by the builtin DHCP server
2251#
2252# @restrict: #optional isolate the guest from the host
2253#
2254# @ip: #optional legacy parameter, use net= instead
2255#
2256# @net: #optional IP address and optional netmask
2257#
2258# @host: #optional guest-visible address of the host
2259#
2260# @tftp: #optional root directory of the built-in TFTP server
2261#
2262# @bootfile: #optional BOOTP filename, for use with tftp=
2263#
2264# @dhcpstart: #optional the first of the 16 IPs the built-in DHCP server can
2265# assign
2266#
2267# @dns: #optional guest-visible address of the virtual nameserver
2268#
63d2960b
KS
2269# @dnssearch: #optional list of DNS suffixes to search, passed as DHCP option
2270# to the guest
2271#
14aa0c2d
LE
2272# @smb: #optional root directory of the built-in SMB server
2273#
2274# @smbserver: #optional IP address of the built-in SMB server
2275#
2276# @hostfwd: #optional redirect incoming TCP or UDP host connections to guest
2277# endpoints
2278#
2279# @guestfwd: #optional forward guest TCP connections
2280#
2281# Since 1.2
2282##
895a2a80 2283{ 'struct': 'NetdevUserOptions',
14aa0c2d
LE
2284 'data': {
2285 '*hostname': 'str',
2286 '*restrict': 'bool',
2287 '*ip': 'str',
2288 '*net': 'str',
2289 '*host': 'str',
2290 '*tftp': 'str',
2291 '*bootfile': 'str',
2292 '*dhcpstart': 'str',
2293 '*dns': 'str',
63d2960b 2294 '*dnssearch': ['String'],
14aa0c2d
LE
2295 '*smb': 'str',
2296 '*smbserver': 'str',
2297 '*hostfwd': ['String'],
2298 '*guestfwd': ['String'] } }
2299
2300##
2301# @NetdevTapOptions
2302#
2303# Connect the host TAP network interface name to the VLAN.
2304#
2305# @ifname: #optional interface name
2306#
2307# @fd: #optional file descriptor of an already opened tap
2308#
2ca81baa
JW
2309# @fds: #optional multiple file descriptors of already opened multiqueue capable
2310# tap
2311#
14aa0c2d
LE
2312# @script: #optional script to initialize the interface
2313#
2314# @downscript: #optional script to shut down the interface
2315#
2316# @helper: #optional command to execute to configure bridge
2317#
2318# @sndbuf: #optional send buffer limit. Understands [TGMKkb] suffixes.
2319#
2320# @vnet_hdr: #optional enable the IFF_VNET_HDR flag on the tap interface
2321#
2322# @vhost: #optional enable vhost-net network accelerator
2323#
2324# @vhostfd: #optional file descriptor of an already opened vhost net device
2325#
2ca81baa
JW
2326# @vhostfds: #optional file descriptors of multiple already opened vhost net
2327# devices
2328#
14aa0c2d
LE
2329# @vhostforce: #optional vhost on for non-MSIX virtio guests
2330#
ec396014
JW
2331# @queues: #optional number of queues to be created for multiqueue capable tap
2332#
14aa0c2d
LE
2333# Since 1.2
2334##
895a2a80 2335{ 'struct': 'NetdevTapOptions',
14aa0c2d
LE
2336 'data': {
2337 '*ifname': 'str',
2338 '*fd': 'str',
264986e2 2339 '*fds': 'str',
14aa0c2d
LE
2340 '*script': 'str',
2341 '*downscript': 'str',
2342 '*helper': 'str',
2343 '*sndbuf': 'size',
2344 '*vnet_hdr': 'bool',
2345 '*vhost': 'bool',
2346 '*vhostfd': 'str',
264986e2
JW
2347 '*vhostfds': 'str',
2348 '*vhostforce': 'bool',
2349 '*queues': 'uint32'} }
14aa0c2d
LE
2350
2351##
2352# @NetdevSocketOptions
2353#
2354# Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP
2355# socket connection.
2356#
2357# @fd: #optional file descriptor of an already opened socket
2358#
2359# @listen: #optional port number, and optional hostname, to listen on
2360#
2361# @connect: #optional port number, and optional hostname, to connect to
2362#
2363# @mcast: #optional UDP multicast address and port number
2364#
2365# @localaddr: #optional source address and port for multicast and udp packets
2366#
2367# @udp: #optional UDP unicast address and port number
2368#
2369# Since 1.2
2370##
895a2a80 2371{ 'struct': 'NetdevSocketOptions',
14aa0c2d
LE
2372 'data': {
2373 '*fd': 'str',
2374 '*listen': 'str',
2375 '*connect': 'str',
2376 '*mcast': 'str',
2377 '*localaddr': 'str',
2378 '*udp': 'str' } }
2379
3fb69aa1
AI
2380##
2381# @NetdevL2TPv3Options
2382#
2383# Connect the VLAN to Ethernet over L2TPv3 Static tunnel
2384#
2385# @src: source address
2386#
2387# @dst: destination address
2388#
2389# @srcport: #optional source port - mandatory for udp, optional for ip
2390#
2391# @dstport: #optional destination port - mandatory for udp, optional for ip
2392#
2393# @ipv6: #optional - force the use of ipv6
2394#
2395# @udp: #optional - use the udp version of l2tpv3 encapsulation
2396#
2397# @cookie64: #optional - use 64 bit coookies
2398#
2399# @counter: #optional have sequence counter
2400#
2401# @pincounter: #optional pin sequence counter to zero -
2402# workaround for buggy implementations or
2403# networks with packet reorder
2404#
2405# @txcookie: #optional 32 or 64 bit transmit cookie
2406#
2407# @rxcookie: #optional 32 or 64 bit receive cookie
2408#
2409# @txsession: 32 bit transmit session
2410#
2411# @rxsession: #optional 32 bit receive session - if not specified
2412# set to the same value as transmit
2413#
2414# @offset: #optional additional offset - allows the insertion of
2415# additional application-specific data before the packet payload
2416#
2417# Since 2.1
2418##
895a2a80 2419{ 'struct': 'NetdevL2TPv3Options',
3fb69aa1
AI
2420 'data': {
2421 'src': 'str',
2422 'dst': 'str',
2423 '*srcport': 'str',
2424 '*dstport': 'str',
2425 '*ipv6': 'bool',
2426 '*udp': 'bool',
2427 '*cookie64': 'bool',
2428 '*counter': 'bool',
2429 '*pincounter': 'bool',
2430 '*txcookie': 'uint64',
2431 '*rxcookie': 'uint64',
2432 'txsession': 'uint32',
2433 '*rxsession': 'uint32',
2434 '*offset': 'uint32' } }
2435
14aa0c2d
LE
2436##
2437# @NetdevVdeOptions
2438#
2439# Connect the VLAN to a vde switch running on the host.
2440#
2441# @sock: #optional socket path
2442#
2443# @port: #optional port number
2444#
2445# @group: #optional group owner of socket
2446#
2447# @mode: #optional permissions for socket
2448#
2449# Since 1.2
2450##
895a2a80 2451{ 'struct': 'NetdevVdeOptions',
14aa0c2d
LE
2452 'data': {
2453 '*sock': 'str',
2454 '*port': 'uint16',
2455 '*group': 'str',
2456 '*mode': 'uint16' } }
2457
2458##
2459# @NetdevDumpOptions
2460#
2461# Dump VLAN network traffic to a file.
2462#
2463# @len: #optional per-packet size limit (64k default). Understands [TGMKkb]
2464# suffixes.
2465#
2466# @file: #optional dump file path (default is qemu-vlan0.pcap)
2467#
2468# Since 1.2
2469##
895a2a80 2470{ 'struct': 'NetdevDumpOptions',
14aa0c2d
LE
2471 'data': {
2472 '*len': 'size',
2473 '*file': 'str' } }
2474
2475##
2476# @NetdevBridgeOptions
2477#
2478# Connect a host TAP network interface to a host bridge device.
2479#
2480# @br: #optional bridge name
2481#
2482# @helper: #optional command to execute to configure bridge
2483#
2484# Since 1.2
2485##
895a2a80 2486{ 'struct': 'NetdevBridgeOptions',
14aa0c2d
LE
2487 'data': {
2488 '*br': 'str',
2489 '*helper': 'str' } }
2490
f6c874e3
SH
2491##
2492# @NetdevHubPortOptions
2493#
2494# Connect two or more net clients through a software hub.
2495#
2496# @hubid: hub identifier number
2497#
2498# Since 1.2
2499##
895a2a80 2500{ 'struct': 'NetdevHubPortOptions',
f6c874e3
SH
2501 'data': {
2502 'hubid': 'int32' } }
2503
58952137
VM
2504##
2505# @NetdevNetmapOptions
2506#
2507# Connect a client to a netmap-enabled NIC or to a VALE switch port
2508#
2509# @ifname: Either the name of an existing network interface supported by
2510# netmap, or the name of a VALE port (created on the fly).
2511# A VALE port name is in the form 'valeXXX:YYY', where XXX and
2512# YYY are non-negative integers. XXX identifies a switch and
2513# YYY identifies a port of the switch. VALE ports having the
2514# same XXX are therefore connected to the same switch.
2515#
2516# @devname: #optional path of the netmap device (default: '/dev/netmap').
2517#
c27de2a3 2518# Since 2.0
58952137 2519##
895a2a80 2520{ 'struct': 'NetdevNetmapOptions',
58952137
VM
2521 'data': {
2522 'ifname': 'str',
2523 '*devname': 'str' } }
2524
03ce5744
NN
2525##
2526# @NetdevVhostUserOptions
2527#
2528# Vhost-user network backend
2529#
2530# @chardev: name of a unix socket chardev
2531#
2532# @vhostforce: #optional vhost on for non-MSIX virtio guests (default: false).
2533#
b931bfbf
CO
2534# @queues: #optional number of queues to be created for multiqueue vhost-user
2535# (default: 1) (Since 2.5)
2536#
03ce5744
NN
2537# Since 2.1
2538##
895a2a80 2539{ 'struct': 'NetdevVhostUserOptions',
03ce5744
NN
2540 'data': {
2541 'chardev': 'str',
b931bfbf
CO
2542 '*vhostforce': 'bool',
2543 '*queues': 'int' } }
03ce5744 2544
14aa0c2d
LE
2545##
2546# @NetClientOptions
2547#
2548# A discriminated record of network device traits.
2549#
2550# Since 1.2
3fb69aa1
AI
2551#
2552# 'l2tpv3' - since 2.1
2553#
14aa0c2d
LE
2554##
2555{ 'union': 'NetClientOptions',
2556 'data': {
f6c874e3
SH
2557 'none': 'NetdevNoneOptions',
2558 'nic': 'NetLegacyNicOptions',
2559 'user': 'NetdevUserOptions',
2560 'tap': 'NetdevTapOptions',
3fb69aa1 2561 'l2tpv3': 'NetdevL2TPv3Options',
f6c874e3
SH
2562 'socket': 'NetdevSocketOptions',
2563 'vde': 'NetdevVdeOptions',
2564 'dump': 'NetdevDumpOptions',
2565 'bridge': 'NetdevBridgeOptions',
58952137 2566 'hubport': 'NetdevHubPortOptions',
03ce5744
NN
2567 'netmap': 'NetdevNetmapOptions',
2568 'vhost-user': 'NetdevVhostUserOptions' } }
14aa0c2d
LE
2569
2570##
2571# @NetLegacy
2572#
2573# Captures the configuration of a network device; legacy.
2574#
2575# @vlan: #optional vlan number
2576#
2577# @id: #optional identifier for monitor commands
2578#
2579# @name: #optional identifier for monitor commands, ignored if @id is present
2580#
2581# @opts: device type specific properties (legacy)
2582#
2583# Since 1.2
2584##
895a2a80 2585{ 'struct': 'NetLegacy',
14aa0c2d
LE
2586 'data': {
2587 '*vlan': 'int32',
2588 '*id': 'str',
2589 '*name': 'str',
2590 'opts': 'NetClientOptions' } }
2591
2592##
2593# @Netdev
2594#
2595# Captures the configuration of a network device.
2596#
2597# @id: identifier for monitor commands.
2598#
2599# @opts: device type specific properties
2600#
2601# Since 1.2
2602##
895a2a80 2603{ 'struct': 'Netdev',
14aa0c2d
LE
2604 'data': {
2605 'id': 'str',
2606 'opts': 'NetClientOptions' } }
2607
fdccce45
YH
2608##
2609# @NetFilterDirection
2610#
2611# Indicates whether a netfilter is attached to a netdev's transmit queue or
2612# receive queue or both.
2613#
2614# @all: the filter is attached both to the receive and the transmit
2615# queue of the netdev (default).
2616#
2617# @rx: the filter is attached to the receive queue of the netdev,
2618# where it will receive packets sent to the netdev.
2619#
2620# @tx: the filter is attached to the transmit queue of the netdev,
2621# where it will receive packets sent by the netdev.
2622#
2623# Since 2.5
2624##
2625{ 'enum': 'NetFilterDirection',
2626 'data': [ 'all', 'rx', 'tx' ] }
2627
5be8c759
PB
2628##
2629# @InetSocketAddress
2630#
2631# Captures a socket address or address range in the Internet namespace.
2632#
2633# @host: host part of the address
2634#
2ea1793b 2635# @port: port part of the address, or lowest port if @to is present
5be8c759
PB
2636#
2637# @to: highest port to try
2638#
2639# @ipv4: whether to accept IPv4 addresses, default try both IPv4 and IPv6
2640# #optional
2641#
2642# @ipv6: whether to accept IPv6 addresses, default try both IPv4 and IPv6
2643# #optional
2644#
2645# Since 1.3
2646##
895a2a80 2647{ 'struct': 'InetSocketAddress',
5be8c759
PB
2648 'data': {
2649 'host': 'str',
2ea1793b 2650 'port': 'str',
5be8c759
PB
2651 '*to': 'uint16',
2652 '*ipv4': 'bool',
2653 '*ipv6': 'bool' } }
2654
2655##
2656# @UnixSocketAddress
2657#
2658# Captures a socket address in the local ("Unix socket") namespace.
2659#
2660# @path: filesystem path to use
2661#
2662# Since 1.3
2663##
895a2a80 2664{ 'struct': 'UnixSocketAddress',
5be8c759
PB
2665 'data': {
2666 'path': 'str' } }
2667
2668##
2669# @SocketAddress
2670#
2671# Captures the address of a socket, which could also be a named file descriptor
2672#
2673# Since 1.3
2674##
2675{ 'union': 'SocketAddress',
2676 'data': {
2677 'inet': 'InetSocketAddress',
2678 'unix': 'UnixSocketAddress',
2679 'fd': 'String' } }
2680
208c9d1b
CB
2681##
2682# @getfd:
2683#
2684# Receive a file descriptor via SCM rights and assign it a name
2685#
2686# @fdname: file descriptor name
2687#
2688# Returns: Nothing on success
208c9d1b
CB
2689#
2690# Since: 0.14.0
2691#
2692# Notes: If @fdname already exists, the file descriptor assigned to
2693# it will be closed and replaced by the received file
2694# descriptor.
2695# The 'closefd' command can be used to explicitly close the
2696# file descriptor when it is no longer needed.
2697##
2698{ 'command': 'getfd', 'data': {'fdname': 'str'} }
2699
2700##
2701# @closefd:
2702#
2703# Close a file descriptor previously passed via SCM rights
2704#
2705# @fdname: file descriptor name
2706#
2707# Returns: Nothing on success
208c9d1b
CB
2708#
2709# Since: 0.14.0
2710##
2711{ 'command': 'closefd', 'data': {'fdname': 'str'} }
01d3c80d
AL
2712
2713##
2714# @MachineInfo:
2715#
2716# Information describing a machine.
2717#
2718# @name: the name of the machine
2719#
2720# @alias: #optional an alias for the machine name
2721#
2722# @default: #optional whether the machine is default
2723#
c72e7688
MN
2724# @cpu-max: maximum number of CPUs supported by the machine type
2725# (since 1.5.0)
2726#
01d3c80d
AL
2727# Since: 1.2.0
2728##
895a2a80 2729{ 'struct': 'MachineInfo',
01d3c80d 2730 'data': { 'name': 'str', '*alias': 'str',
c72e7688 2731 '*is-default': 'bool', 'cpu-max': 'int' } }
01d3c80d
AL
2732
2733##
2734# @query-machines:
2735#
2736# Return a list of supported machines
2737#
2738# Returns: a list of MachineInfo
2739#
2740# Since: 1.2.0
2741##
2742{ 'command': 'query-machines', 'returns': ['MachineInfo'] }
e4e31c63
AL
2743
2744##
2745# @CpuDefinitionInfo:
2746#
2747# Virtual CPU definition.
2748#
2749# @name: the name of the CPU definition
2750#
2751# Since: 1.2.0
2752##
895a2a80 2753{ 'struct': 'CpuDefinitionInfo',
e4e31c63
AL
2754 'data': { 'name': 'str' } }
2755
2756##
2757# @query-cpu-definitions:
2758#
2759# Return a list of supported virtual CPU definitions
2760#
2761# Returns: a list of CpuDefInfo
2762#
2763# Since: 1.2.0
2764##
2765{ 'command': 'query-cpu-definitions', 'returns': ['CpuDefinitionInfo'] }
ba1c048a
CB
2766
2767# @AddfdInfo:
2768#
2769# Information about a file descriptor that was added to an fd set.
2770#
2771# @fdset-id: The ID of the fd set that @fd was added to.
2772#
2773# @fd: The file descriptor that was received via SCM rights and
2774# added to the fd set.
2775#
2776# Since: 1.2.0
2777##
895a2a80 2778{ 'struct': 'AddfdInfo', 'data': {'fdset-id': 'int', 'fd': 'int'} }
ba1c048a
CB
2779
2780##
2781# @add-fd:
2782#
2783# Add a file descriptor, that was passed via SCM rights, to an fd set.
2784#
2785# @fdset-id: #optional The ID of the fd set to add the file descriptor to.
2786#
2787# @opaque: #optional A free-form string that can be used to describe the fd.
2788#
2789# Returns: @AddfdInfo on success
2790# If file descriptor was not received, FdNotSupplied
9ac54af0 2791# If @fdset-id is a negative value, InvalidParameterValue
ba1c048a
CB
2792#
2793# Notes: The list of fd sets is shared by all monitor connections.
2794#
2795# If @fdset-id is not specified, a new fd set will be created.
2796#
2797# Since: 1.2.0
2798##
2799{ 'command': 'add-fd', 'data': {'*fdset-id': 'int', '*opaque': 'str'},
2800 'returns': 'AddfdInfo' }
2801
2802##
2803# @remove-fd:
2804#
2805# Remove a file descriptor from an fd set.
2806#
2807# @fdset-id: The ID of the fd set that the file descriptor belongs to.
2808#
2809# @fd: #optional The file descriptor that is to be removed.
2810#
2811# Returns: Nothing on success
2812# If @fdset-id or @fd is not found, FdNotFound
2813#
2814# Since: 1.2.0
2815#
2816# Notes: The list of fd sets is shared by all monitor connections.
2817#
2818# If @fd is not specified, all file descriptors in @fdset-id
2819# will be removed.
2820##
2821{ 'command': 'remove-fd', 'data': {'fdset-id': 'int', '*fd': 'int'} }
2822
2823##
2824# @FdsetFdInfo:
2825#
2826# Information about a file descriptor that belongs to an fd set.
2827#
2828# @fd: The file descriptor value.
2829#
2830# @opaque: #optional A free-form string that can be used to describe the fd.
2831#
2832# Since: 1.2.0
2833##
895a2a80 2834{ 'struct': 'FdsetFdInfo',
ba1c048a
CB
2835 'data': {'fd': 'int', '*opaque': 'str'} }
2836
2837##
2838# @FdsetInfo:
2839#
2840# Information about an fd set.
2841#
2842# @fdset-id: The ID of the fd set.
2843#
2844# @fds: A list of file descriptors that belong to this fd set.
2845#
2846# Since: 1.2.0
2847##
895a2a80 2848{ 'struct': 'FdsetInfo',
ba1c048a
CB
2849 'data': {'fdset-id': 'int', 'fds': ['FdsetFdInfo']} }
2850
2851##
2852# @query-fdsets:
2853#
2854# Return information describing all fd sets.
2855#
2856# Returns: A list of @FdsetInfo
2857#
2858# Since: 1.2.0
2859#
2860# Note: The list of fd sets is shared by all monitor connections.
2861#
2862##
2863{ 'command': 'query-fdsets', 'returns': ['FdsetInfo'] }
99afc91d 2864
99afc91d
DB
2865##
2866# @TargetInfo:
2867#
2868# Information describing the QEMU target.
2869#
2870# @arch: the target architecture (eg "x86_64", "i386", etc)
2871#
2872# Since: 1.2.0
2873##
895a2a80 2874{ 'struct': 'TargetInfo',
c02a9552 2875 'data': { 'arch': 'str' } }
99afc91d
DB
2876
2877##
2878# @query-target:
2879#
2880# Return information about the target for this QEMU
2881#
2882# Returns: TargetInfo
2883#
2884# Since: 1.2.0
2885##
2886{ 'command': 'query-target', 'returns': 'TargetInfo' }
411656f4
AK
2887
2888##
2889# @QKeyCode:
2890#
2891# An enumeration of key name.
2892#
2893# This is used by the send-key command.
2894#
2895# Since: 1.3.0
bbd1b1cc 2896#
8b6b0c59 2897# 'unmapped' and 'pause' since 2.0
b771f470 2898# 'ro' and 'kp_comma' since 2.4
411656f4
AK
2899##
2900{ 'enum': 'QKeyCode',
bbd1b1cc
GH
2901 'data': [ 'unmapped',
2902 'shift', 'shift_r', 'alt', 'alt_r', 'altgr', 'altgr_r', 'ctrl',
411656f4
AK
2903 'ctrl_r', 'menu', 'esc', '1', '2', '3', '4', '5', '6', '7', '8',
2904 '9', '0', 'minus', 'equal', 'backspace', 'tab', 'q', 'w', 'e',
2905 'r', 't', 'y', 'u', 'i', 'o', 'p', 'bracket_left', 'bracket_right',
2906 'ret', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'semicolon',
2907 'apostrophe', 'grave_accent', 'backslash', 'z', 'x', 'c', 'v', 'b',
2908 'n', 'm', 'comma', 'dot', 'slash', 'asterisk', 'spc', 'caps_lock',
2909 'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'f10',
2910 'num_lock', 'scroll_lock', 'kp_divide', 'kp_multiply',
2911 'kp_subtract', 'kp_add', 'kp_enter', 'kp_decimal', 'sysrq', 'kp_0',
2912 'kp_1', 'kp_2', 'kp_3', 'kp_4', 'kp_5', 'kp_6', 'kp_7', 'kp_8',
2913 'kp_9', 'less', 'f11', 'f12', 'print', 'home', 'pgup', 'pgdn', 'end',
2914 'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again',
2915 'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut',
b771f470
GH
2916 'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause', 'ro',
2917 'kp_comma' ] }
e4c8f004 2918
9f328977
LC
2919##
2920# @KeyValue
2921#
2922# Represents a keyboard key.
2923#
2924# Since: 1.3.0
2925##
2926{ 'union': 'KeyValue',
2927 'data': {
2928 'number': 'int',
2929 'qcode': 'QKeyCode' } }
2930
e4c8f004
AK
2931##
2932# @send-key:
2933#
2934# Send keys to guest.
2935#
9f328977
LC
2936# @keys: An array of @KeyValue elements. All @KeyValues in this array are
2937# simultaneously sent to the guest. A @KeyValue.number value is sent
2938# directly to the guest, while @KeyValue.qcode must be a valid
2939# @QKeyCode value
e4c8f004
AK
2940#
2941# @hold-time: #optional time to delay key up events, milliseconds. Defaults
2942# to 100
2943#
2944# Returns: Nothing on success
2945# If key is unknown or redundant, InvalidParameter
2946#
2947# Since: 1.3.0
2948#
2949##
2950{ 'command': 'send-key',
9f328977 2951 'data': { 'keys': ['KeyValue'], '*hold-time': 'int' } }
ad39cf6d
LC
2952
2953##
2954# @screendump:
2955#
2956# Write a PPM of the VGA screen to a file.
2957#
2958# @filename: the path of a new PPM file to store the image
2959#
2960# Returns: Nothing on success
2961#
2962# Since: 0.14.0
2963##
2964{ 'command': 'screendump', 'data': {'filename': 'str'} }
6dd844db 2965
ffbdbe59
GH
2966##
2967# @ChardevFile:
2968#
2969# Configuration info for file chardevs.
2970#
2971# @in: #optional The name of the input file
2972# @out: The name of the output file
2973#
2974# Since: 1.4
2975##
895a2a80 2976{ 'struct': 'ChardevFile', 'data': { '*in' : 'str',
ffbdbe59
GH
2977 'out' : 'str' } }
2978
d59044ef 2979##
d36b2b90 2980# @ChardevHostdev:
d59044ef 2981#
548cbb36 2982# Configuration info for device and pipe chardevs.
d59044ef
GH
2983#
2984# @device: The name of the special file for the device,
2985# i.e. /dev/ttyS0 on Unix or COM1: on Windows
2986# @type: What kind of device this is.
2987#
2988# Since: 1.4
2989##
895a2a80 2990{ 'struct': 'ChardevHostdev', 'data': { 'device' : 'str' } }
d59044ef 2991
f6bd5d6e
GH
2992##
2993# @ChardevSocket:
2994#
3ecc059d 2995# Configuration info for (stream) socket chardevs.
f6bd5d6e
GH
2996#
2997# @addr: socket address to listen on (server=true)
2998# or connect to (server=false)
2999# @server: #optional create server socket (default: true)
ef993ba7
GH
3000# @wait: #optional wait for incoming connection on server
3001# sockets (default: false).
f6bd5d6e 3002# @nodelay: #optional set TCP_NODELAY socket option (default: false)
ef993ba7
GH
3003# @telnet: #optional enable telnet protocol on server
3004# sockets (default: false)
5dd1f02b
CM
3005# @reconnect: #optional For a client socket, if a socket is disconnected,
3006# then attempt a reconnect after the given number of seconds.
3007# Setting this to zero disables this function. (default: 0)
3008# (Since: 2.2)
f6bd5d6e
GH
3009#
3010# Since: 1.4
3011##
895a2a80 3012{ 'struct': 'ChardevSocket', 'data': { 'addr' : 'SocketAddress',
5dd1f02b
CM
3013 '*server' : 'bool',
3014 '*wait' : 'bool',
3015 '*nodelay' : 'bool',
3016 '*telnet' : 'bool',
3017 '*reconnect' : 'int' } }
f6bd5d6e 3018
3ecc059d 3019##
08d0ab3f 3020# @ChardevUdp:
3ecc059d
GH
3021#
3022# Configuration info for datagram socket chardevs.
3023#
3024# @remote: remote address
3025# @local: #optional local address
3026#
3027# Since: 1.5
3028##
895a2a80 3029{ 'struct': 'ChardevUdp', 'data': { 'remote' : 'SocketAddress',
08d0ab3f 3030 '*local' : 'SocketAddress' } }
3ecc059d 3031
edb2fb3c
GH
3032##
3033# @ChardevMux:
3034#
3035# Configuration info for mux chardevs.
3036#
3037# @chardev: name of the base chardev.
3038#
3039# Since: 1.5
3040##
895a2a80 3041{ 'struct': 'ChardevMux', 'data': { 'chardev' : 'str' } }
edb2fb3c 3042
7c358031
GH
3043##
3044# @ChardevStdio:
3045#
3046# Configuration info for stdio chardevs.
3047#
3048# @signal: #optional Allow signals (such as SIGINT triggered by ^C)
3049# be delivered to qemu. Default: true in -nographic mode,
3050# false otherwise.
3051#
3052# Since: 1.5
3053##
895a2a80 3054{ 'struct': 'ChardevStdio', 'data': { '*signal' : 'bool' } }
7c358031 3055
cd153e2a
GH
3056##
3057# @ChardevSpiceChannel:
3058#
3059# Configuration info for spice vm channel chardevs.
3060#
3061# @type: kind of channel (for example vdagent).
3062#
3063# Since: 1.5
3064##
895a2a80 3065{ 'struct': 'ChardevSpiceChannel', 'data': { 'type' : 'str' } }
cd153e2a
GH
3066
3067##
3068# @ChardevSpicePort:
3069#
3070# Configuration info for spice port chardevs.
3071#
3072# @fqdn: name of the channel (see docs/spice-port-fqdn.txt)
3073#
3074# Since: 1.5
3075##
895a2a80 3076{ 'struct': 'ChardevSpicePort', 'data': { 'fqdn' : 'str' } }
cd153e2a 3077
702ec69c
GH
3078##
3079# @ChardevVC:
3080#
3081# Configuration info for virtual console chardevs.
3082#
3083# @width: console width, in pixels
3084# @height: console height, in pixels
3085# @cols: console width, in chars
3086# @rows: console height, in chars
3087#
3088# Since: 1.5
3089##
895a2a80 3090{ 'struct': 'ChardevVC', 'data': { '*width' : 'int',
702ec69c
GH
3091 '*height' : 'int',
3092 '*cols' : 'int',
3093 '*rows' : 'int' } }
3094
1da48c65 3095##
4f57378f 3096# @ChardevRingbuf:
1da48c65 3097#
3a1da42e 3098# Configuration info for ring buffer chardevs.
1da48c65 3099#
3a1da42e 3100# @size: #optional ring buffer size, must be power of two, default is 65536
1da48c65
GH
3101#
3102# Since: 1.5
3103##
895a2a80 3104{ 'struct': 'ChardevRingbuf', 'data': { '*size' : 'int' } }
1da48c65 3105
f1a1a356
GH
3106##
3107# @ChardevBackend:
3108#
3109# Configuration info for the new chardev backend.
3110#
5692399f 3111# Since: 1.4 (testdev since 2.2)
f1a1a356 3112##
895a2a80 3113{ 'struct': 'ChardevDummy', 'data': { } }
f1a1a356 3114
f6bd5d6e 3115{ 'union': 'ChardevBackend', 'data': { 'file' : 'ChardevFile',
d36b2b90
MA
3116 'serial' : 'ChardevHostdev',
3117 'parallel': 'ChardevHostdev',
548cbb36 3118 'pipe' : 'ChardevHostdev',
f6bd5d6e 3119 'socket' : 'ChardevSocket',
08d0ab3f 3120 'udp' : 'ChardevUdp',
0a1a7fab 3121 'pty' : 'ChardevDummy',
edb2fb3c 3122 'null' : 'ChardevDummy',
f5a51cab 3123 'mux' : 'ChardevMux',
2d57286d 3124 'msmouse': 'ChardevDummy',
7c358031 3125 'braille': 'ChardevDummy',
5692399f 3126 'testdev': 'ChardevDummy',
d9ac374f 3127 'stdio' : 'ChardevStdio',
cd153e2a
GH
3128 'console': 'ChardevDummy',
3129 'spicevmc' : 'ChardevSpiceChannel',
702ec69c 3130 'spiceport' : 'ChardevSpicePort',
1da48c65 3131 'vc' : 'ChardevVC',
3a1da42e
MA
3132 'ringbuf': 'ChardevRingbuf',
3133 # next one is just for compatibility
4f57378f 3134 'memory' : 'ChardevRingbuf' } }
f1a1a356
GH
3135
3136##
3137# @ChardevReturn:
3138#
3139# Return info about the chardev backend just created.
3140#
58fa4325
MA
3141# @pty: #optional name of the slave pseudoterminal device, present if
3142# and only if a chardev of type 'pty' was created
3143#
f1a1a356
GH
3144# Since: 1.4
3145##
895a2a80 3146{ 'struct' : 'ChardevReturn', 'data': { '*pty' : 'str' } }
f1a1a356
GH
3147
3148##
3149# @chardev-add:
3150#
58fa4325 3151# Add a character device backend
f1a1a356
GH
3152#
3153# @id: the chardev's ID, must be unique
3154# @backend: backend type and parameters
3155#
58fa4325 3156# Returns: ChardevReturn.
f1a1a356
GH
3157#
3158# Since: 1.4
3159##
3160{ 'command': 'chardev-add', 'data': {'id' : 'str',
3161 'backend' : 'ChardevBackend' },
3162 'returns': 'ChardevReturn' }
3163
3164##
3165# @chardev-remove:
3166#
58fa4325 3167# Remove a character device backend
f1a1a356
GH
3168#
3169# @id: the chardev's ID, must exist and not be in use
3170#
3171# Returns: Nothing on success
3172#
3173# Since: 1.4
3174##
3175{ 'command': 'chardev-remove', 'data': {'id': 'str'} }
d1a0cf73
SB
3176
3177##
3178# @TpmModel:
3179#
3180# An enumeration of TPM models
3181#
3182# @tpm-tis: TPM TIS model
3183#
3184# Since: 1.5
3185##
3186{ 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
3187
3188##
3189# @query-tpm-models:
3190#
3191# Return a list of supported TPM models
3192#
3193# Returns: a list of TpmModel
3194#
3195# Since: 1.5
3196##
3197{ 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
3198
3199##
3200# @TpmType:
3201#
3202# An enumeration of TPM types
3203#
3204# @passthrough: TPM passthrough type
3205#
3206# Since: 1.5
3207##
3208{ 'enum': 'TpmType', 'data': [ 'passthrough' ] }
3209
3210##
3211# @query-tpm-types:
3212#
3213# Return a list of supported TPM types
3214#
3215# Returns: a list of TpmType
3216#
3217# Since: 1.5
3218##
3219{ 'command': 'query-tpm-types', 'returns': ['TpmType'] }
3220
3221##
3222# @TPMPassthroughOptions:
3223#
3224# Information about the TPM passthrough type
3225#
3226# @path: #optional string describing the path used for accessing the TPM device
3227#
3228# @cancel-path: #optional string showing the TPM's sysfs cancel file
3229# for cancellation of TPM commands while they are executing
3230#
3231# Since: 1.5
3232##
895a2a80 3233{ 'struct': 'TPMPassthroughOptions', 'data': { '*path' : 'str',
d1a0cf73
SB
3234 '*cancel-path' : 'str'} }
3235
3236##
3237# @TpmTypeOptions:
3238#
3239# A union referencing different TPM backend types' configuration options
3240#
88ca7bcf 3241# @passthrough: The configuration options for the TPM passthrough type
d1a0cf73
SB
3242#
3243# Since: 1.5
3244##
3245{ 'union': 'TpmTypeOptions',
88ca7bcf 3246 'data': { 'passthrough' : 'TPMPassthroughOptions' } }
d1a0cf73
SB
3247
3248##
3249# @TpmInfo:
3250#
3251# Information about the TPM
3252#
3253# @id: The Id of the TPM
3254#
3255# @model: The TPM frontend model
3256#
88ca7bcf 3257# @options: The TPM (backend) type configuration options
d1a0cf73
SB
3258#
3259# Since: 1.5
3260##
895a2a80 3261{ 'struct': 'TPMInfo',
d1a0cf73
SB
3262 'data': {'id': 'str',
3263 'model': 'TpmModel',
88ca7bcf 3264 'options': 'TpmTypeOptions' } }
d1a0cf73
SB
3265
3266##
3267# @query-tpm:
3268#
3269# Return information about the TPM device
3270#
3271# Returns: @TPMInfo on success
3272#
3273# Since: 1.5
3274##
3275{ 'command': 'query-tpm', 'returns': ['TPMInfo'] }
8ccbad5c
LE
3276
3277##
3278# @AcpiTableOptions
3279#
3280# Specify an ACPI table on the command line to load.
3281#
3282# At most one of @file and @data can be specified. The list of files specified
3283# by any one of them is loaded and concatenated in order. If both are omitted,
3284# @data is implied.
3285#
3286# Other fields / optargs can be used to override fields of the generic ACPI
3287# table header; refer to the ACPI specification 5.0, section 5.2.6 System
3288# Description Table Header. If a header field is not overridden, then the
3289# corresponding value from the concatenated blob is used (in case of @file), or
3290# it is filled in with a hard-coded value (in case of @data).
3291#
3292# String fields are copied into the matching ACPI member from lowest address
3293# upwards, and silently truncated / NUL-padded to length.
3294#
3295# @sig: #optional table signature / identifier (4 bytes)
3296#
3297# @rev: #optional table revision number (dependent on signature, 1 byte)
3298#
3299# @oem_id: #optional OEM identifier (6 bytes)
3300#
3301# @oem_table_id: #optional OEM table identifier (8 bytes)
3302#
3303# @oem_rev: #optional OEM-supplied revision number (4 bytes)
3304#
3305# @asl_compiler_id: #optional identifier of the utility that created the table
3306# (4 bytes)
3307#
3308# @asl_compiler_rev: #optional revision number of the utility that created the
3309# table (4 bytes)
3310#
3311# @file: #optional colon (:) separated list of pathnames to load and
3312# concatenate as table data. The resultant binary blob is expected to
3313# have an ACPI table header. At least one file is required. This field
3314# excludes @data.
3315#
3316# @data: #optional colon (:) separated list of pathnames to load and
3317# concatenate as table data. The resultant binary blob must not have an
3318# ACPI table header. At least one file is required. This field excludes
3319# @file.
3320#
3321# Since 1.5
3322##
895a2a80 3323{ 'struct': 'AcpiTableOptions',
8ccbad5c
LE
3324 'data': {
3325 '*sig': 'str',
3326 '*rev': 'uint8',
3327 '*oem_id': 'str',
3328 '*oem_table_id': 'str',
3329 '*oem_rev': 'uint32',
3330 '*asl_compiler_id': 'str',
3331 '*asl_compiler_rev': 'uint32',
3332 '*file': 'str',
3333 '*data': 'str' }}
1f8f987d
AK
3334
3335##
3336# @CommandLineParameterType:
3337#
3338# Possible types for an option parameter.
3339#
3340# @string: accepts a character string
3341#
3342# @boolean: accepts "on" or "off"
3343#
3344# @number: accepts a number
3345#
3346# @size: accepts a number followed by an optional suffix (K)ilo,
3347# (M)ega, (G)iga, (T)era
3348#
3349# Since 1.5
3350##
3351{ 'enum': 'CommandLineParameterType',
3352 'data': ['string', 'boolean', 'number', 'size'] }
3353
3354##
3355# @CommandLineParameterInfo:
3356#
3357# Details about a single parameter of a command line option.
3358#
3359# @name: parameter name
3360#
3361# @type: parameter @CommandLineParameterType
3362#
3363# @help: #optional human readable text string, not suitable for parsing.
3364#
e36af94f
CL
3365# @default: #optional default value string (since 2.1)
3366#
1f8f987d
AK
3367# Since 1.5
3368##
895a2a80 3369{ 'struct': 'CommandLineParameterInfo',
1f8f987d
AK
3370 'data': { 'name': 'str',
3371 'type': 'CommandLineParameterType',
e36af94f
CL
3372 '*help': 'str',
3373 '*default': 'str' } }
1f8f987d
AK
3374
3375##
3376# @CommandLineOptionInfo:
3377#
3378# Details about a command line option, including its list of parameter details
3379#
3380# @option: option name
3381#
3382# @parameters: an array of @CommandLineParameterInfo
3383#
3384# Since 1.5
3385##
895a2a80 3386{ 'struct': 'CommandLineOptionInfo',
1f8f987d
AK
3387 'data': { 'option': 'str', 'parameters': ['CommandLineParameterInfo'] } }
3388
3389##
3390# @query-command-line-options:
3391#
3392# Query command line option schema.
3393#
3394# @option: #optional option name
3395#
3396# Returns: list of @CommandLineOptionInfo for all options (or for the given
3397# @option). Returns an error if the given @option doesn't exist.
3398#
3399# Since 1.5
3400##
3401{'command': 'query-command-line-options', 'data': { '*option': 'str' },
3402 'returns': ['CommandLineOptionInfo'] }
8e8aba50
EH
3403
3404##
3405# @X86CPURegister32
3406#
3407# A X86 32-bit register
3408#
3409# Since: 1.5
3410##
3411{ 'enum': 'X86CPURegister32',
3412 'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
3413
3414##
3415# @X86CPUFeatureWordInfo
3416#
3417# Information about a X86 CPU feature word
3418#
3419# @cpuid-input-eax: Input EAX value for CPUID instruction for that feature word
3420#
3421# @cpuid-input-ecx: #optional Input ECX value for CPUID instruction for that
3422# feature word
3423#
3424# @cpuid-register: Output register containing the feature bits
3425#
3426# @features: value of output register, containing the feature bits
3427#
3428# Since: 1.5
3429##
895a2a80 3430{ 'struct': 'X86CPUFeatureWordInfo',
8e8aba50
EH
3431 'data': { 'cpuid-input-eax': 'int',
3432 '*cpuid-input-ecx': 'int',
3433 'cpuid-register': 'X86CPURegister32',
3434 'features': 'int' } }
b1be4280 3435
9f08c8ec
EB
3436##
3437# @DummyForceArrays
3438#
3439# Not used by QMP; hack to let us use X86CPUFeatureWordInfoList internally
3440#
3441# Since 2.5
3442##
3443{ 'struct': 'DummyForceArrays',
3444 'data': { 'unused': ['X86CPUFeatureWordInfo'] } }
3445
3446
b1be4280
AK
3447##
3448# @RxState:
3449#
3450# Packets receiving state
3451#
3452# @normal: filter assigned packets according to the mac-table
3453#
3454# @none: don't receive any assigned packet
3455#
3456# @all: receive all assigned packets
3457#
3458# Since: 1.6
3459##
3460{ 'enum': 'RxState', 'data': [ 'normal', 'none', 'all' ] }
3461
3462##
3463# @RxFilterInfo:
3464#
3465# Rx-filter information for a NIC.
3466#
3467# @name: net client name
3468#
3469# @promiscuous: whether promiscuous mode is enabled
3470#
3471# @multicast: multicast receive state
3472#
3473# @unicast: unicast receive state
3474#
f7bc8ef8
AK
3475# @vlan: vlan receive state (Since 2.0)
3476#
b1be4280
AK
3477# @broadcast-allowed: whether to receive broadcast
3478#
3479# @multicast-overflow: multicast table is overflowed or not
3480#
3481# @unicast-overflow: unicast table is overflowed or not
3482#
3483# @main-mac: the main macaddr string
3484#
3485# @vlan-table: a list of active vlan id
3486#
3487# @unicast-table: a list of unicast macaddr string
3488#
3489# @multicast-table: a list of multicast macaddr string
3490#
3491# Since 1.6
3492##
3493
895a2a80 3494{ 'struct': 'RxFilterInfo',
b1be4280
AK
3495 'data': {
3496 'name': 'str',
3497 'promiscuous': 'bool',
3498 'multicast': 'RxState',
3499 'unicast': 'RxState',
f7bc8ef8 3500 'vlan': 'RxState',
b1be4280
AK
3501 'broadcast-allowed': 'bool',
3502 'multicast-overflow': 'bool',
3503 'unicast-overflow': 'bool',
3504 'main-mac': 'str',
3505 'vlan-table': ['int'],
3506 'unicast-table': ['str'],
3507 'multicast-table': ['str'] }}
3508
3509##
3510# @query-rx-filter:
3511#
3512# Return rx-filter information for all NICs (or for the given NIC).
3513#
3514# @name: #optional net client name
3515#
3516# Returns: list of @RxFilterInfo for all NICs (or for the given NIC).
3517# Returns an error if the given @name doesn't exist, or given
3518# NIC doesn't support rx-filter querying, or given net client
3519# isn't a NIC.
3520#
3521# Since: 1.6
3522##
3523{ 'command': 'query-rx-filter', 'data': { '*name': 'str' },
3524 'returns': ['RxFilterInfo'] }
d26c9a15 3525
031fa964
GH
3526##
3527# @InputButton
3528#
3529# Button of a pointer input device (mouse, tablet).
3530#
3531# Since: 2.0
3532##
3533{ 'enum' : 'InputButton',
3534 'data' : [ 'Left', 'Middle', 'Right', 'WheelUp', 'WheelDown' ] }
3535
3536##
3537# @InputButton
3538#
3539# Position axis of a pointer input device (mouse, tablet).
3540#
3541# Since: 2.0
3542##
3543{ 'enum' : 'InputAxis',
3544 'data' : [ 'X', 'Y' ] }
3545
3546##
3547# @InputKeyEvent
3548#
3549# Keyboard input event.
3550#
3551# @key: Which key this event is for.
3552# @down: True for key-down and false for key-up events.
3553#
3554# Since: 2.0
3555##
895a2a80 3556{ 'struct' : 'InputKeyEvent',
031fa964
GH
3557 'data' : { 'key' : 'KeyValue',
3558 'down' : 'bool' } }
3559
3560##
3561# @InputBtnEvent
3562#
3563# Pointer button input event.
3564#
3565# @button: Which button this event is for.
3566# @down: True for key-down and false for key-up events.
3567#
3568# Since: 2.0
3569##
895a2a80 3570{ 'struct' : 'InputBtnEvent',
031fa964
GH
3571 'data' : { 'button' : 'InputButton',
3572 'down' : 'bool' } }
3573
3574##
3575# @InputMoveEvent
3576#
3577# Pointer motion input event.
3578#
3579# @axis: Which axis is referenced by @value.
3580# @value: Pointer position. For absolute coordinates the
3581# valid range is 0 -> 0x7ffff
3582#
3583# Since: 2.0
3584##
895a2a80 3585{ 'struct' : 'InputMoveEvent',
031fa964
GH
3586 'data' : { 'axis' : 'InputAxis',
3587 'value' : 'int' } }
3588
3589##
3590# @InputEvent
3591#
3592# Input event union.
3593#
935fb915
AK
3594# @key: Input event of Keyboard
3595# @btn: Input event of pointer buttons
3596# @rel: Input event of relative pointer motion
3597# @abs: Input event of absolute pointer motion
3598#
031fa964
GH
3599# Since: 2.0
3600##
3601{ 'union' : 'InputEvent',
3602 'data' : { 'key' : 'InputKeyEvent',
3603 'btn' : 'InputBtnEvent',
3604 'rel' : 'InputMoveEvent',
3605 'abs' : 'InputMoveEvent' } }
0042109a 3606
50c6617f 3607##
df5b2adb 3608# @x-input-send-event
50c6617f
MT
3609#
3610# Send input event(s) to guest.
3611#
51fc4476 3612# @console: #optional console to send event(s) to.
4083ae31
GH
3613# This parameter can be used to send the input event to
3614# specific input devices in case (a) multiple input devices
3615# of the same kind are added to the virtual machine and (b)
3616# you have configured input routing (see docs/multiseat.txt)
3617# for those input devices. If input routing is not
3618# configured this parameter has no effect.
3619# If @console is missing, only devices that aren't associated
3620# with a console are admissible.
3621# If @console is specified, it must exist, and both devices
3622# associated with that console and devices not associated with a
3623# console are admissible, but the former take precedence.
3624
50c6617f
MT
3625#
3626# @events: List of InputEvent union.
3627#
3628# Returns: Nothing on success.
3629#
3630# Since: 2.2
3631#
df5b2adb
GH
3632# Note: this command is experimental, and not a stable API.
3633#
50c6617f 3634##
df5b2adb 3635{ 'command': 'x-input-send-event',
51fc4476 3636 'data': { '*console':'int', 'events': [ 'InputEvent' ] } }
50c6617f 3637
0042109a
WG
3638##
3639# @NumaOptions
3640#
3641# A discriminated record of NUMA options. (for OptsVisitor)
3642#
3643# Since 2.1
3644##
3645{ 'union': 'NumaOptions',
3646 'data': {
3647 'node': 'NumaNodeOptions' }}
3648
3649##
3650# @NumaNodeOptions
3651#
3652# Create a guest NUMA node. (for OptsVisitor)
3653#
3654# @nodeid: #optional NUMA node ID (increase by 1 from 0 if omitted)
3655#
3656# @cpus: #optional VCPUs belonging to this node (assign VCPUS round-robin
3657# if omitted)
3658#
7febe36f
PB
3659# @mem: #optional memory size of this node; mutually exclusive with @memdev.
3660# Equally divide total memory among nodes if both @mem and @memdev are
3661# omitted.
3662#
3663# @memdev: #optional memory backend object. If specified for one node,
3664# it must be specified for all nodes.
0042109a
WG
3665#
3666# Since: 2.1
3667##
895a2a80 3668{ 'struct': 'NumaNodeOptions',
0042109a
WG
3669 'data': {
3670 '*nodeid': 'uint16',
3671 '*cpus': ['uint16'],
7febe36f
PB
3672 '*mem': 'size',
3673 '*memdev': 'str' }}
4cf1b76b
HT
3674
3675##
3676# @HostMemPolicy
3677#
3678# Host memory policy types
3679#
3680# @default: restore default policy, remove any nondefault policy
3681#
3682# @preferred: set the preferred host nodes for allocation
3683#
3684# @bind: a strict policy that restricts memory allocation to the
3685# host nodes specified
3686#
3687# @interleave: memory allocations are interleaved across the set
3688# of host nodes specified
3689#
3690# Since 2.1
3691##
3692{ 'enum': 'HostMemPolicy',
3693 'data': [ 'default', 'preferred', 'bind', 'interleave' ] }
76b5d850
HT
3694
3695##
3696# @Memdev:
3697#
8f4e5ac3 3698# Information about memory backend
76b5d850 3699#
8f4e5ac3 3700# @size: memory backend size
76b5d850
HT
3701#
3702# @merge: enables or disables memory merge support
3703#
8f4e5ac3 3704# @dump: includes memory backend's memory in a core dump or not
76b5d850
HT
3705#
3706# @prealloc: enables or disables memory preallocation
3707#
3708# @host-nodes: host nodes for its memory policy
3709#
8f4e5ac3 3710# @policy: memory policy of memory backend
76b5d850
HT
3711#
3712# Since: 2.1
3713##
3714
895a2a80 3715{ 'struct': 'Memdev',
76b5d850
HT
3716 'data': {
3717 'size': 'size',
3718 'merge': 'bool',
3719 'dump': 'bool',
3720 'prealloc': 'bool',
3721 'host-nodes': ['uint16'],
3722 'policy': 'HostMemPolicy' }}
3723
3724##
3725# @query-memdev:
3726#
8f4e5ac3 3727# Returns information for all memory backends.
76b5d850
HT
3728#
3729# Returns: a list of @Memdev.
3730#
3731# Since: 2.1
3732##
3733{ 'command': 'query-memdev', 'returns': ['Memdev'] }
8f4e5ac3
IM
3734
3735##
6f2e2730
IM
3736# @PCDIMMDeviceInfo:
3737#
3738# PCDIMMDevice state information
3739#
3740# @id: #optional device's ID
3741#
3742# @addr: physical address, where device is mapped
3743#
3744# @size: size of memory that the device provides
3745#
3746# @slot: slot number at which device is plugged in
3747#
3748# @node: NUMA node number where device is plugged in
3749#
3750# @memdev: memory backend linked with device
3751#
3752# @hotplugged: true if device was hotplugged
3753#
3754# @hotpluggable: true if device if could be added/removed while machine is running
3755#
3756# Since: 2.1
3757##
895a2a80 3758{ 'struct': 'PCDIMMDeviceInfo',
6f2e2730
IM
3759 'data': { '*id': 'str',
3760 'addr': 'int',
3761 'size': 'int',
3762 'slot': 'int',
3763 'node': 'int',
3764 'memdev': 'str',
3765 'hotplugged': 'bool',
3766 'hotpluggable': 'bool'
3767 }
3768}
3769
3770##
3771# @MemoryDeviceInfo:
3772#
3773# Union containing information about a memory device
3774#
3775# Since: 2.1
3776##
3777{ 'union': 'MemoryDeviceInfo', 'data': {'dimm': 'PCDIMMDeviceInfo'} }
3778
3779##
3780# @query-memory-devices
3781#
3782# Lists available memory devices and their state
3783#
3784# Since: 2.1
3785##
3786{ 'command': 'query-memory-devices', 'returns': ['MemoryDeviceInfo'] }
521b3673
IM
3787
3788## @ACPISlotType
3789#
3790# @DIMM: memory slot
3791#
3792{ 'enum': 'ACPISlotType', 'data': [ 'DIMM' ] }
3793
3794## @ACPIOSTInfo
3795#
3796# OSPM Status Indication for a device
3797# For description of possible values of @source and @status fields
3798# see "_OST (OSPM Status Indication)" chapter of ACPI5.0 spec.
3799#
3800# @device: #optional device ID associated with slot
3801#
3802# @slot: slot ID, unique per slot of a given @slot-type
3803#
3804# @slot-type: type of the slot
3805#
3806# @source: an integer containing the source event
3807#
3808# @status: an integer containing the status code
3809#
3810# Since: 2.1
3811##
895a2a80 3812{ 'struct': 'ACPIOSTInfo',
521b3673
IM
3813 'data' : { '*device': 'str',
3814 'slot': 'str',
3815 'slot-type': 'ACPISlotType',
3816 'source': 'int',
3817 'status': 'int' } }
02419bcb
IM
3818
3819##
3820# @query-acpi-ospm-status
3821#
3822# Lists ACPI OSPM status of ACPI device objects,
3823# which might be reported via _OST method
3824#
3825# Since: 2.1
3826##
3827{ 'command': 'query-acpi-ospm-status', 'returns': ['ACPIOSTInfo'] }
f668470f 3828
99eaf09c
WX
3829##
3830# @WatchdogExpirationAction
3831#
3832# An enumeration of the actions taken when the watchdog device's timer is
3833# expired
3834#
3835# @reset: system resets
3836#
3837# @shutdown: system shutdown, note that it is similar to @powerdown, which
3838# tries to set to system status and notify guest
3839#
3840# @poweroff: system poweroff, the emulator program exits
3841#
3842# @pause: system pauses, similar to @stop
3843#
3844# @debug: system enters debug state
3845#
3846# @none: nothing is done
3847#
795dc6e4
MCL
3848# @inject-nmi: a non-maskable interrupt is injected into the first VCPU (all
3849# VCPUS on x86) (since 2.4)
3850#
99eaf09c
WX
3851# Since: 2.1
3852##
3853{ 'enum': 'WatchdogExpirationAction',
795dc6e4
MCL
3854 'data': [ 'reset', 'shutdown', 'poweroff', 'pause', 'debug', 'none',
3855 'inject-nmi' ] }
99eaf09c 3856
5a2d2cbd
WX
3857##
3858# @IoOperationType
3859#
3860# An enumeration of the I/O operation types
3861#
3862# @read: read operation
3863#
3864# @write: write operation
3865#
3866# Since: 2.1
3867##
3868{ 'enum': 'IoOperationType',
3869 'data': [ 'read', 'write' ] }
3870
3a449690
WX
3871##
3872# @GuestPanicAction
3873#
3874# An enumeration of the actions taken when guest OS panic is detected
3875#
3876# @pause: system pauses
3877#
3878# Since: 2.1
3879##
3880{ 'enum': 'GuestPanicAction',
3881 'data': [ 'pause' ] }
f2ae8abf
MT
3882
3883##
3884# @rtc-reset-reinjection
3885#
3886# This command will reset the RTC interrupt reinjection backlog.
3887# Can be used if another mechanism to synchronize guest time
3888# is in effect, for example QEMU guest agent's guest-set-time
3889# command.
3890#
3891# Since: 2.1
3892##
3893{ 'command': 'rtc-reset-reinjection' }
fafa4d50
SF
3894
3895# Rocker ethernet network switch
3896{ 'include': 'qapi/rocker.json' }
d73abd6d
PD
3897
3898##
3899# ReplayMode:
3900#
3901# Mode of the replay subsystem.
3902#
3903# @none: normal execution mode. Replay or record are not enabled.
3904#
3905# @record: record mode. All non-deterministic data is written into the
3906# replay log.
3907#
3908# @play: replay mode. Non-deterministic data required for system execution
3909# is read from the log.
3910#
3911# Since: 2.5
3912##
3913{ 'enum': 'ReplayMode',
3914 'data': [ 'none', 'record', 'play' ] }