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