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