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