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