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