blob: 8c3a42a1ac3ec991aab29e99c4b46908da7efd1b [file] [log] [blame]
Anthony Liguorie3193602011-09-02 12:34:47 -05001# -*- Mode: Python -*-
2#
3# QAPI Schema
Anthony Liguori48a32be2011-09-02 12:34:48 -05004
Benoît Canetd34bda72014-06-05 13:45:29 +02005# QAPI common definitions
6{ 'include': 'qapi/common.json' }
Paolo Bonzini104059d2014-02-08 11:01:55 +01007
Daniel P. Berrangea0901872015-03-13 17:39:26 +00008# QAPI crypto definitions
9{ 'include': 'qapi/crypto.json' }
10
Benoît Canet5db15092014-06-05 13:45:30 +020011# QAPI block definitions
12{ 'include': 'qapi/block.json' }
13
Wenchao Xia82d72d92014-06-24 16:33:57 -070014# QAPI event definitions
15{ 'include': 'qapi/event.json' }
16
Lluís Vilanova1dde0f42014-08-25 13:19:57 +020017# Tracing commands
18{ 'include': 'qapi/trace.json' }
19
Markus Armbruster39a18152015-09-16 13:06:28 +020020# QAPI introspection
21{ 'include': 'qapi/introspect.json' }
22
Luiz Capitulinodcafd322012-07-27 09:34:50 -030023##
Marc-André Lureau801db5e2015-07-03 11:51:01 +020024# @LostTickPolicy:
Paolo Bonzini104059d2014-02-08 11:01:55 +010025#
26# Policy for handling lost ticks in timer devices.
27#
28# @discard: throw away the missed tick(s) and continue with future injection
29# normally. Guest time may be delayed, unless the OS has explicit
30# handling of lost ticks
31#
32# @delay: continue to deliver ticks at the normal rate. Guest time will be
33# delayed due to the late tick
34#
35# @merge: merge the missed tick(s) into one tick and inject. Guest time
36# may be delayed, depending on how the OS reacts to the merging
37# of ticks
38#
39# @slew: deliver ticks at a higher rate to catch up with the missed tick. The
40# guest time should not be delayed once catchup is complete.
41#
42# Since: 2.0
43##
44{ 'enum': 'LostTickPolicy',
45 'data': ['discard', 'delay', 'merge', 'slew' ] }
46
Luiz Capitulinob224e5e2012-09-13 16:52:20 -030047# @add_client
48#
49# Allow client connections for VNC, Spice and socket based
50# character devices to be passed in to QEMU via SCM_RIGHTS.
51#
52# @protocol: protocol name. Valid names are "vnc", "spice" or the
53# name of a character device (eg. from -chardev id=XXXX)
54#
55# @fdname: file descriptor name previously passed via 'getfd' command
56#
57# @skipauth: #optional whether to skip authentication. Only applies
58# to "vnc" and "spice" protocols
59#
60# @tls: #optional whether to perform TLS. Only applies to the "spice"
61# protocol
62#
63# Returns: nothing on success.
64#
65# Since: 0.14.0
66##
67{ 'command': 'add_client',
68 'data': { 'protocol': 'str', 'fdname': 'str', '*skipauth': 'bool',
69 '*tls': 'bool' } }
70
71##
Anthony Liguori48a32be2011-09-02 12:34:48 -050072# @NameInfo:
73#
74# Guest name information.
75#
76# @name: #optional The name of the guest
77#
78# Since 0.14.0
79##
Eric Blake895a2a82015-05-04 09:05:27 -060080{ 'struct': 'NameInfo', 'data': {'*name': 'str'} }
Anthony Liguori48a32be2011-09-02 12:34:48 -050081
82##
83# @query-name:
84#
85# Return the name information of a guest.
86#
87# Returns: @NameInfo of the guest
88#
89# Since 0.14.0
90##
91{ 'command': 'query-name', 'returns': 'NameInfo' }
Luiz Capitulinob9c15f12011-08-26 17:38:13 -030092
93##
Luiz Capitulino292a2602011-09-12 15:10:53 -030094# @KvmInfo:
95#
96# Information about support for KVM acceleration
97#
98# @enabled: true if KVM acceleration is active
99#
100# @present: true if KVM acceleration is built into this executable
101#
102# Since: 0.14.0
103##
Eric Blake895a2a82015-05-04 09:05:27 -0600104{ 'struct': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} }
Luiz Capitulino292a2602011-09-12 15:10:53 -0300105
106##
107# @query-kvm:
108#
109# Returns information about KVM acceleration
110#
111# Returns: @KvmInfo
112#
113# Since: 0.14.0
114##
115{ 'command': 'query-kvm', 'returns': 'KvmInfo' }
116
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300117##
118# @RunState
119#
Lei Li6932a692012-08-23 13:14:25 +0800120# An enumeration of VM run states.
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300121#
122# @debug: QEMU is running on a debugger
123#
Luiz Capitulino0a24c7b2012-04-27 13:16:41 -0300124# @finish-migrate: guest is paused to finish the migration process
125#
Paolo Bonzini1e998142012-10-23 14:54:21 +0200126# @inmigrate: guest is paused waiting for an incoming migration. Note
127# that this state does not tell whether the machine will start at the
128# end of the migration. This depends on the command-line -S option and
129# any invocation of 'stop' or 'cont' that has happened since QEMU was
130# started.
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300131#
132# @internal-error: An internal error that prevents further guest execution
133# has occurred
134#
135# @io-error: the last IOP has failed and the device is configured to pause
136# on I/O errors
137#
138# @paused: guest has been paused via the 'stop' command
139#
140# @postmigrate: guest is paused following a successful 'migrate'
141#
142# @prelaunch: QEMU was started with -S and guest has not started
143#
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300144# @restore-vm: guest is paused to restore VM state
145#
146# @running: guest is actively running
147#
148# @save-vm: guest is paused to save the VM state
149#
150# @shutdown: guest is shut down (and -no-shutdown is in use)
151#
Luiz Capitulinoad02b962012-04-27 13:33:36 -0300152# @suspended: guest is suspended (ACPI S3)
153#
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300154# @watchdog: the watchdog action is configured to pause and has been triggered
Hu Taoede085b2013-04-26 11:24:40 +0800155#
156# @guest-panicked: guest has been panicked as a result of guest OS panic
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300157##
158{ 'enum': 'RunState',
159 'data': [ 'debug', 'inmigrate', 'internal-error', 'io-error', 'paused',
160 'postmigrate', 'prelaunch', 'finish-migrate', 'restore-vm',
Hu Taoede085b2013-04-26 11:24:40 +0800161 'running', 'save-vm', 'shutdown', 'suspended', 'watchdog',
162 'guest-panicked' ] }
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300163
164##
165# @StatusInfo:
166#
167# Information about VCPU run state
168#
169# @running: true if all VCPUs are runnable, false if not runnable
170#
171# @singlestep: true if VCPUs are in single-step mode
172#
173# @status: the virtual machine @RunState
174#
175# Since: 0.14.0
176#
177# Notes: @singlestep is enabled through the GDB stub
178##
Eric Blake895a2a82015-05-04 09:05:27 -0600179{ 'struct': 'StatusInfo',
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300180 'data': {'running': 'bool', 'singlestep': 'bool', 'status': 'RunState'} }
181
182##
183# @query-status:
184#
185# Query the run status of all VCPUs
186#
187# Returns: @StatusInfo reflecting all VCPUs
188#
189# Since: 0.14.0
190##
191{ 'command': 'query-status', 'returns': 'StatusInfo' }
192
Luiz Capitulinoefab7672011-09-13 17:16:25 -0300193##
194# @UuidInfo:
195#
196# Guest UUID information.
197#
198# @UUID: the UUID of the guest
199#
200# Since: 0.14.0
201#
202# Notes: If no UUID was specified for the guest, a null UUID is returned.
203##
Eric Blake895a2a82015-05-04 09:05:27 -0600204{ 'struct': 'UuidInfo', 'data': {'UUID': 'str'} }
Luiz Capitulinoefab7672011-09-13 17:16:25 -0300205
206##
207# @query-uuid:
208#
209# Query the guest UUID information.
210#
211# Returns: The @UuidInfo for the guest
212#
213# Since 0.14.0
214##
215{ 'command': 'query-uuid', 'returns': 'UuidInfo' }
216
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -0300217##
218# @ChardevInfo:
219#
220# Information about a character device.
221#
222# @label: the label of the character device
223#
224# @filename: the filename of the character device
225#
Laszlo Ersek32a97ea2014-06-26 17:50:03 +0200226# @frontend-open: shows whether the frontend device attached to this backend
227# (eg. with the chardev=... option) is in open or closed state
228# (since 2.1)
229#
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -0300230# Notes: @filename is encoded using the QEMU command line character device
231# encoding. See the QEMU man page for details.
232#
233# Since: 0.14.0
234##
Eric Blake895a2a82015-05-04 09:05:27 -0600235{ 'struct': 'ChardevInfo', 'data': {'label': 'str',
Laszlo Ersek32a97ea2014-06-26 17:50:03 +0200236 'filename': 'str',
237 'frontend-open': 'bool'} }
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -0300238
239##
240# @query-chardev:
241#
242# Returns information about current character devices.
243#
244# Returns: a list of @ChardevInfo
245#
246# Since: 0.14.0
247##
248{ 'command': 'query-chardev', 'returns': ['ChardevInfo'] }
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -0300249
250##
Martin Kletzander77d1c3c2014-02-01 12:52:42 +0100251# @ChardevBackendInfo:
252#
253# Information about a character device backend
254#
255# @name: The backend name
256#
257# Since: 2.0
258##
Eric Blake895a2a82015-05-04 09:05:27 -0600259{ 'struct': 'ChardevBackendInfo', 'data': {'name': 'str'} }
Martin Kletzander77d1c3c2014-02-01 12:52:42 +0100260
261##
262# @query-chardev-backends:
263#
264# Returns information about character device backends.
265#
266# Returns: a list of @ChardevBackendInfo
267#
268# Since: 2.0
269##
270{ 'command': 'query-chardev-backends', 'returns': ['ChardevBackendInfo'] }
271
272##
Lei Li1f590cf2013-01-25 00:03:20 +0800273# @DataFormat:
274#
275# An enumeration of data format.
276#
Markus Armbruster3949e592013-02-06 21:27:24 +0100277# @utf8: Data is a UTF-8 string (RFC 3629)
Lei Li1f590cf2013-01-25 00:03:20 +0800278#
Markus Armbruster3949e592013-02-06 21:27:24 +0100279# @base64: Data is Base64 encoded binary (RFC 3548)
Lei Li1f590cf2013-01-25 00:03:20 +0800280#
281# Since: 1.4
282##
Amos Kongad0f1712013-06-19 17:23:27 +0800283{ 'enum': 'DataFormat',
Lei Li1f590cf2013-01-25 00:03:20 +0800284 'data': [ 'utf8', 'base64' ] }
285
286##
Markus Armbruster3949e592013-02-06 21:27:24 +0100287# @ringbuf-write:
Lei Li1f590cf2013-01-25 00:03:20 +0800288#
Markus Armbruster3949e592013-02-06 21:27:24 +0100289# Write to a ring buffer character device.
Lei Li1f590cf2013-01-25 00:03:20 +0800290#
Markus Armbruster3949e592013-02-06 21:27:24 +0100291# @device: the ring buffer character device name
Lei Li1f590cf2013-01-25 00:03:20 +0800292#
Markus Armbruster3949e592013-02-06 21:27:24 +0100293# @data: data to write
Lei Li1f590cf2013-01-25 00:03:20 +0800294#
Markus Armbruster3949e592013-02-06 21:27:24 +0100295# @format: #optional data encoding (default 'utf8').
296# - base64: data must be base64 encoded text. Its binary
297# decoding gets written.
298# Bug: invalid base64 is currently not rejected.
299# Whitespace *is* invalid.
300# - utf8: data's UTF-8 encoding is written
301# - data itself is always Unicode regardless of format, like
302# any other string.
Lei Li1f590cf2013-01-25 00:03:20 +0800303#
304# Returns: Nothing on success
Lei Li1f590cf2013-01-25 00:03:20 +0800305#
306# Since: 1.4
307##
Markus Armbruster3949e592013-02-06 21:27:24 +0100308{ 'command': 'ringbuf-write',
Markus Armbruster82e59a62013-02-06 21:27:14 +0100309 'data': {'device': 'str', 'data': 'str',
Lei Li1f590cf2013-01-25 00:03:20 +0800310 '*format': 'DataFormat'} }
311
312##
Markus Armbruster3949e592013-02-06 21:27:24 +0100313# @ringbuf-read:
Lei Li49b6d722013-01-25 00:03:21 +0800314#
Markus Armbruster3949e592013-02-06 21:27:24 +0100315# Read from a ring buffer character device.
Lei Li49b6d722013-01-25 00:03:21 +0800316#
Markus Armbruster3949e592013-02-06 21:27:24 +0100317# @device: the ring buffer character device name
Lei Li49b6d722013-01-25 00:03:21 +0800318#
Markus Armbruster3949e592013-02-06 21:27:24 +0100319# @size: how many bytes to read at most
Lei Li49b6d722013-01-25 00:03:21 +0800320#
Markus Armbruster3949e592013-02-06 21:27:24 +0100321# @format: #optional data encoding (default 'utf8').
322# - base64: the data read is returned in base64 encoding.
323# - utf8: the data read is interpreted as UTF-8.
324# Bug: can screw up when the buffer contains invalid UTF-8
325# sequences, NUL characters, after the ring buffer lost
326# data, and when reading stops because the size limit is
327# reached.
328# - The return value is always Unicode regardless of format,
329# like any other string.
Lei Li49b6d722013-01-25 00:03:21 +0800330#
Markus Armbruster3ab651f2013-02-06 21:27:15 +0100331# Returns: data read from the device
Lei Li49b6d722013-01-25 00:03:21 +0800332#
333# Since: 1.4
334##
Markus Armbruster3949e592013-02-06 21:27:24 +0100335{ 'command': 'ringbuf-read',
Lei Li49b6d722013-01-25 00:03:21 +0800336 'data': {'device': 'str', 'size': 'int', '*format': 'DataFormat'},
Markus Armbruster3ab651f2013-02-06 21:27:15 +0100337 'returns': 'str' }
Lei Li49b6d722013-01-25 00:03:21 +0800338
339##
Daniel P. Berrange48608532012-05-21 17:59:51 +0100340# @EventInfo:
341#
342# Information about a QMP event
343#
344# @name: The event name
345#
346# Since: 1.2.0
347##
Eric Blake895a2a82015-05-04 09:05:27 -0600348{ 'struct': 'EventInfo', 'data': {'name': 'str'} }
Daniel P. Berrange48608532012-05-21 17:59:51 +0100349
350##
351# @query-events:
352#
353# Return a list of supported QMP events by this server
354#
355# Returns: A list of @EventInfo for all supported events
356#
357# Since: 1.2.0
358##
359{ 'command': 'query-events', 'returns': ['EventInfo'] }
360
361##
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300362# @MigrationStats
363#
364# Detailed migration status.
365#
366# @transferred: amount of bytes already transferred to the target VM
367#
368# @remaining: amount of bytes remaining to be transferred to the target VM
369#
370# @total: total amount of bytes involved in the migration process
371#
Peter Lievenf1c72792013-03-26 10:58:37 +0100372# @duplicate: number of duplicate (zero) pages (since 1.2)
373#
374# @skipped: number of skipped zero pages (since 1.5)
Orit Wasserman004d4c12012-08-06 21:42:56 +0300375#
376# @normal : number of normal pages (since 1.2)
377#
Juan Quintela8d017192012-08-13 12:31:25 +0200378# @normal-bytes: number of normal bytes sent (since 1.2)
379#
380# @dirty-pages-rate: number of pages dirtied by second by the
381# guest (since 1.3)
Orit Wasserman004d4c12012-08-06 21:42:56 +0300382#
Michael R. Hines7e114f82013-06-25 21:35:30 -0400383# @mbps: throughput in megabits/sec. (since 1.6)
384#
ChenLiang58570ed2014-04-04 17:57:55 +0800385# @dirty-sync-count: number of times that dirty ram was synchronized (since 2.1)
386#
Orit Wasserman004d4c12012-08-06 21:42:56 +0300387# Since: 0.14.0
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300388##
Eric Blake895a2a82015-05-04 09:05:27 -0600389{ 'struct': 'MigrationStats',
Juan Quintelad5f8a572012-05-21 22:01:07 +0200390 'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' ,
Peter Lievenf1c72792013-03-26 10:58:37 +0100391 'duplicate': 'int', 'skipped': 'int', 'normal': 'int',
Michael R. Hines7e114f82013-06-25 21:35:30 -0400392 'normal-bytes': 'int', 'dirty-pages-rate' : 'int',
ChenLiang58570ed2014-04-04 17:57:55 +0800393 'mbps' : 'number', 'dirty-sync-count' : 'int' } }
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300394
395##
Orit Wassermanf36d55a2012-08-06 21:42:57 +0300396# @XBZRLECacheStats
397#
398# Detailed XBZRLE migration cache statistics
399#
400# @cache-size: XBZRLE cache size
401#
402# @bytes: amount of bytes already transferred to the target VM
403#
404# @pages: amount of pages transferred to the target VM
405#
406# @cache-miss: number of cache miss
407#
ChenLiang8bc39232014-04-04 17:57:56 +0800408# @cache-miss-rate: rate of cache miss (since 2.1)
409#
Orit Wassermanf36d55a2012-08-06 21:42:57 +0300410# @overflow: number of overflows
411#
412# Since: 1.2
413##
Eric Blake895a2a82015-05-04 09:05:27 -0600414{ 'struct': 'XBZRLECacheStats',
Orit Wassermanf36d55a2012-08-06 21:42:57 +0300415 'data': {'cache-size': 'int', 'bytes': 'int', 'pages': 'int',
ChenLiang8bc39232014-04-04 17:57:56 +0800416 'cache-miss': 'int', 'cache-miss-rate': 'number',
417 'overflow': 'int' } }
Orit Wassermanf36d55a2012-08-06 21:42:57 +0300418
zhanghailiang24b8c392015-03-13 16:08:40 +0800419# @MigrationStatus:
420#
421# An enumeration of migration status.
422#
423# @none: no migration has ever happened.
424#
425# @setup: migration process has been initiated.
426#
427# @cancelling: in the process of cancelling migration.
428#
429# @cancelled: cancelling migration is finished.
430#
431# @active: in the process of doing migration.
432#
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000433# @postcopy-active: like active, but now in postcopy mode. (since 2.5)
434#
zhanghailiang24b8c392015-03-13 16:08:40 +0800435# @completed: migration is finished.
436#
437# @failed: some error occurred during migration process.
438#
439# Since: 2.3
440#
441##
442{ 'enum': 'MigrationStatus',
443 'data': [ 'none', 'setup', 'cancelling', 'cancelled',
Dr. David Alan Gilbert9ec055a2015-11-05 18:10:58 +0000444 'active', 'postcopy-active', 'completed', 'failed' ] }
zhanghailiang24b8c392015-03-13 16:08:40 +0800445
Orit Wassermanf36d55a2012-08-06 21:42:57 +0300446##
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300447# @MigrationInfo
448#
449# Information about current migration process.
450#
zhanghailiang24b8c392015-03-13 16:08:40 +0800451# @status: #optional @MigrationStatus describing the current migration status.
452# If this field is not returned, no migration process
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300453# has been initiated
454#
Juan Quintelad5f8a572012-05-21 22:01:07 +0200455# @ram: #optional @MigrationStats containing detailed migration
456# status, only returned if status is 'active' or
zhanghailiang24b8c392015-03-13 16:08:40 +0800457# 'completed'(since 1.2)
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300458#
459# @disk: #optional @MigrationStats containing detailed disk migration
460# status, only returned if status is 'active' and it is a block
461# migration
462#
Orit Wassermanf36d55a2012-08-06 21:42:57 +0300463# @xbzrle-cache: #optional @XBZRLECacheStats containing detailed XBZRLE
464# migration statistics, only returned if XBZRLE feature is on and
465# status is 'active' or 'completed' (since 1.2)
466#
Juan Quintela7aa939a2012-08-18 13:17:10 +0200467# @total-time: #optional total amount of milliseconds since migration started.
468# If migration has ended, it returns the total migration
469# time. (since 1.2)
470#
Juan Quintela9c5a9fc2012-08-13 09:35:16 +0200471# @downtime: #optional only present when migration finishes correctly
472# total downtime in milliseconds for the guest.
473# (since 1.3)
474#
Juan Quintela2c52ddf2012-08-13 09:53:12 +0200475# @expected-downtime: #optional only present while migration is active
476# expected downtime in milliseconds for the guest in last walk
477# of the dirty bitmap. (since 1.3)
478#
Michael R. Hinesed4fbd12013-07-22 10:01:58 -0400479# @setup-time: #optional amount of setup time in milliseconds _before_ the
480# iterations begin but _after_ the QMP command is issued. This is designed
481# to provide an accounting of any activities (such as RDMA pinning) which
482# may be expensive, but do not actually occur during the iterative
483# migration rounds themselves. (since 1.6)
484#
Jason J. Herne47828932015-09-08 13:12:36 -0400485# @x-cpu-throttle-percentage: #optional percentage of time guest cpus are being
486# throttled during auto-converge. This is only present when auto-converge
487# has started throttling guest cpus. (Since 2.5)
488#
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300489# Since: 0.14.0
490##
Eric Blake895a2a82015-05-04 09:05:27 -0600491{ 'struct': 'MigrationInfo',
zhanghailiang24b8c392015-03-13 16:08:40 +0800492 'data': {'*status': 'MigrationStatus', '*ram': 'MigrationStats',
Orit Wassermanf36d55a2012-08-06 21:42:57 +0300493 '*disk': 'MigrationStats',
Juan Quintela7aa939a2012-08-18 13:17:10 +0200494 '*xbzrle-cache': 'XBZRLECacheStats',
Juan Quintela9c5a9fc2012-08-13 09:35:16 +0200495 '*total-time': 'int',
Juan Quintela2c52ddf2012-08-13 09:53:12 +0200496 '*expected-downtime': 'int',
Michael R. Hinesed4fbd12013-07-22 10:01:58 -0400497 '*downtime': 'int',
Jason J. Herne47828932015-09-08 13:12:36 -0400498 '*setup-time': 'int',
499 '*x-cpu-throttle-percentage': 'int'} }
Luiz Capitulino791e7c82011-09-13 17:37:16 -0300500
501##
502# @query-migrate
503#
504# Returns information about current migration process.
505#
506# Returns: @MigrationInfo
507#
508# Since: 0.14.0
509##
510{ 'command': 'query-migrate', 'returns': 'MigrationInfo' }
511
512##
Orit Wassermanbbf6da32012-08-06 21:42:47 +0300513# @MigrationCapability
514#
515# Migration capabilities enumeration
516#
517# @xbzrle: Migration supports xbzrle (Xor Based Zero Run Length Encoding).
518# This feature allows us to minimize migration traffic for certain work
519# loads, by sending compressed difference of the pages
520#
Michael R. Hines41310c62013-12-19 04:52:01 +0800521# @rdma-pin-all: Controls whether or not the entire VM memory footprint is
Michael R. Hines60d92222013-06-25 21:35:36 -0400522# mlock()'d on demand or all at once. Refer to docs/rdma.txt for usage.
Michael R. Hines41310c62013-12-19 04:52:01 +0800523# Disabled by default. (since 2.0)
Michael R. Hines60d92222013-06-25 21:35:36 -0400524#
Peter Lieven323004a2013-07-18 09:48:50 +0200525# @zero-blocks: During storage migration encode blocks of zeroes efficiently. This
526# essentially saves 1MB of zeroes per block on the wire. Enabling requires
527# source and target VM to support this feature. To enable it is sufficient
528# to enable the capability on the source VM. The feature is disabled by
529# default. (since 1.6)
530#
Liang Lidde4e692015-03-23 16:32:26 +0800531# @compress: Use multiple compression threads to accelerate live migration.
532# This feature can help to reduce the migration traffic, by sending
533# compressed pages. Please note that if compress and xbzrle are both
534# on, compress only takes effect in the ram bulk stage, after that,
535# it will be disabled and only xbzrle takes effect, this can help to
536# minimize migration traffic. The feature is disabled by default.
537# (since 2.4 )
538#
Juan Quintelab05dc722015-07-07 14:44:05 +0200539# @events: generate events for each migration state change
540# (since 2.4 )
541#
Juan Quintela9781c372013-07-23 15:21:09 +0200542# @auto-converge: If enabled, QEMU will automatically throttle down the guest
543# to speed up convergence of RAM migration. (since 1.6)
544#
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +0000545# @x-postcopy-ram: Start executing on the migration target before all of RAM has
546# been migrated, pulling the remaining pages along as needed. NOTE: If
547# the migration fails during postcopy the VM will fail. (since 2.5)
548#
Orit Wassermanbbf6da32012-08-06 21:42:47 +0300549# Since: 1.2
550##
551{ 'enum': 'MigrationCapability',
Liang Lidde4e692015-03-23 16:32:26 +0800552 'data': ['xbzrle', 'rdma-pin-all', 'auto-converge', 'zero-blocks',
Dr. David Alan Gilbert53dd3702015-11-05 18:10:51 +0000553 'compress', 'events', 'x-postcopy-ram'] }
Orit Wassermanbbf6da32012-08-06 21:42:47 +0300554
555##
556# @MigrationCapabilityStatus
557#
558# Migration capability information
559#
560# @capability: capability enum
561#
562# @state: capability state bool
563#
564# Since: 1.2
565##
Eric Blake895a2a82015-05-04 09:05:27 -0600566{ 'struct': 'MigrationCapabilityStatus',
Orit Wassermanbbf6da32012-08-06 21:42:47 +0300567 'data': { 'capability' : 'MigrationCapability', 'state' : 'bool' } }
568
569##
Orit Wasserman00458432012-08-06 21:42:48 +0300570# @migrate-set-capabilities
571#
572# Enable/Disable the following migration capabilities (like xbzrle)
573#
574# @capabilities: json array of capability modifications to make
575#
576# Since: 1.2
577##
578{ 'command': 'migrate-set-capabilities',
579 'data': { 'capabilities': ['MigrationCapabilityStatus'] } }
580
581##
Orit Wassermanbbf6da32012-08-06 21:42:47 +0300582# @query-migrate-capabilities
583#
584# Returns information about the current migration capabilities status
585#
586# Returns: @MigrationCapabilitiesStatus
587#
588# Since: 1.2
589##
590{ 'command': 'query-migrate-capabilities', 'returns': ['MigrationCapabilityStatus']}
591
Liang Li43c60a82015-03-23 16:32:27 +0800592# @MigrationParameter
593#
594# Migration parameters enumeration
595#
596# @compress-level: Set the compression level to be used in live migration,
597# the compression level is an integer between 0 and 9, where 0 means
598# no compression, 1 means the best compression speed, and 9 means best
599# compression ratio which will consume more CPU.
600#
601# @compress-threads: Set compression thread count to be used in live migration,
602# the compression thread count is an integer between 1 and 255.
603#
604# @decompress-threads: Set decompression thread count to be used in live
605# migration, the decompression thread count is an integer between 1
606# and 255. Usually, decompression is at least 4 times as fast as
607# compression, so set the decompress-threads to the number about 1/4
608# of compress-threads is adequate.
609#
Jason J. Herne1626fee2015-09-08 13:12:34 -0400610# @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled
611# when migration auto-converge is activated. The
612# default value is 20. (Since 2.5)
613#
614# @x-cpu-throttle-increment: throttle percentage increase each time
615# auto-converge detects that migration is not making
616# progress. The default value is 10. (Since 2.5)
Liang Li43c60a82015-03-23 16:32:27 +0800617# Since: 2.4
618##
619{ 'enum': 'MigrationParameter',
Jason J. Herne1626fee2015-09-08 13:12:34 -0400620 'data': ['compress-level', 'compress-threads', 'decompress-threads',
621 'x-cpu-throttle-initial', 'x-cpu-throttle-increment'] }
Liang Li43c60a82015-03-23 16:32:27 +0800622
Liang Li85de8322015-03-23 16:32:28 +0800623#
624# @migrate-set-parameters
625#
626# Set the following migration parameters
627#
628# @compress-level: compression level
629#
630# @compress-threads: compression thread count
631#
632# @decompress-threads: decompression thread count
633#
Jason J. Herne1626fee2015-09-08 13:12:34 -0400634# @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled
635# when migration auto-converge is activated. The
636# default value is 20. (Since 2.5)
637#
638# @x-cpu-throttle-increment: throttle percentage increase each time
639# auto-converge detects that migration is not making
640# progress. The default value is 10. (Since 2.5)
Liang Li85de8322015-03-23 16:32:28 +0800641# Since: 2.4
642##
643{ 'command': 'migrate-set-parameters',
644 'data': { '*compress-level': 'int',
645 '*compress-threads': 'int',
Jason J. Herne1626fee2015-09-08 13:12:34 -0400646 '*decompress-threads': 'int',
647 '*x-cpu-throttle-initial': 'int',
648 '*x-cpu-throttle-increment': 'int'} }
Liang Li85de8322015-03-23 16:32:28 +0800649
650#
651# @MigrationParameters
652#
653# @compress-level: compression level
654#
655# @compress-threads: compression thread count
656#
657# @decompress-threads: decompression thread count
658#
Jason J. Herne1626fee2015-09-08 13:12:34 -0400659# @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled
660# when migration auto-converge is activated. The
661# default value is 20. (Since 2.5)
662#
663# @x-cpu-throttle-increment: throttle percentage increase each time
664# auto-converge detects that migration is not making
665# progress. The default value is 10. (Since 2.5)
666#
Liang Li85de8322015-03-23 16:32:28 +0800667# Since: 2.4
668##
669{ 'struct': 'MigrationParameters',
670 'data': { 'compress-level': 'int',
671 'compress-threads': 'int',
Jason J. Herne1626fee2015-09-08 13:12:34 -0400672 'decompress-threads': 'int',
673 'x-cpu-throttle-initial': 'int',
674 'x-cpu-throttle-increment': 'int'} }
Liang Li85de8322015-03-23 16:32:28 +0800675##
676# @query-migrate-parameters
677#
678# Returns information about the current migration parameters
679#
680# Returns: @MigrationParameters
681#
682# Since: 2.4
683##
684{ 'command': 'query-migrate-parameters',
685 'returns': 'MigrationParameters' }
686
Orit Wassermanbbf6da32012-08-06 21:42:47 +0300687##
Markus Armbrusterb8a185b2015-03-05 17:29:02 +0100688# @client_migrate_info
689#
690# Set migration information for remote display. This makes the server
691# ask the client to automatically reconnect using the new parameters
692# once migration finished successfully. Only implemented for SPICE.
693#
694# @protocol: must be "spice"
695# @hostname: migration target hostname
696# @port: #optional spice tcp port for plaintext channels
697# @tls-port: #optional spice tcp port for tls-secured channels
698# @cert-subject: #optional server certificate subject
699#
700# Since: 0.14.0
701##
702{ 'command': 'client_migrate_info',
703 'data': { 'protocol': 'str', 'hostname': 'str', '*port': 'int',
704 '*tls-port': 'int', '*cert-subject': 'str' } }
705
706##
Dr. David Alan Gilbert4886a1b2015-11-05 18:10:56 +0000707# @migrate-start-postcopy
708#
709# Switch migration to postcopy mode
710#
711# Since: 2.5
712{ 'command': 'migrate-start-postcopy' }
713
714##
Luiz Capitulinoe235cec2011-09-21 15:29:55 -0300715# @MouseInfo:
716#
717# Information about a mouse device.
718#
719# @name: the name of the mouse device
720#
721# @index: the index of the mouse device
722#
723# @current: true if this device is currently receiving mouse events
724#
725# @absolute: true if this device supports absolute coordinates as input
726#
727# Since: 0.14.0
728##
Eric Blake895a2a82015-05-04 09:05:27 -0600729{ 'struct': 'MouseInfo',
Luiz Capitulinoe235cec2011-09-21 15:29:55 -0300730 'data': {'name': 'str', 'index': 'int', 'current': 'bool',
731 'absolute': 'bool'} }
732
733##
734# @query-mice:
735#
736# Returns information about each active mouse device
737#
738# Returns: a list of @MouseInfo for each device
739#
740# Since: 0.14.0
741##
742{ 'command': 'query-mice', 'returns': ['MouseInfo'] }
743
744##
Luiz Capitulinode0b36b2011-09-21 16:38:35 -0300745# @CpuInfo:
746#
747# Information about a virtual CPU
748#
749# @CPU: the index of the virtual CPU
750#
751# @current: this only exists for backwards compatible and should be ignored
Laszlo Ersekb80e5602012-07-17 16:17:10 +0200752#
Luiz Capitulinode0b36b2011-09-21 16:38:35 -0300753# @halted: true if the virtual CPU is in the halt state. Halt usually refers
754# to a processor specific low power mode.
755#
Eduardo Habkost58f88d42015-05-08 16:04:22 -0300756# @qom_path: path to the CPU object in the QOM tree (since 2.4)
757#
Luiz Capitulinode0b36b2011-09-21 16:38:35 -0300758# @pc: #optional If the target is i386 or x86_64, this is the 64-bit instruction
759# pointer.
760# If the target is Sparc, this is the PC component of the
761# instruction pointer.
762#
763# @nip: #optional If the target is PPC, the instruction pointer
764#
765# @npc: #optional If the target is Sparc, the NPC component of the instruction
766# pointer
767#
768# @PC: #optional If the target is MIPS, the instruction pointer
769#
770# @thread_id: ID of the underlying host thread
771#
772# Since: 0.14.0
773#
774# Notes: @halted is a transient state that changes frequently. By the time the
775# data is sent to the client, the guest may no longer be halted.
776##
Eric Blake895a2a82015-05-04 09:05:27 -0600777{ 'struct': 'CpuInfo',
Eduardo Habkost58f88d42015-05-08 16:04:22 -0300778 'data': {'CPU': 'int', 'current': 'bool', 'halted': 'bool',
779 'qom_path': 'str',
780 '*pc': 'int', '*nip': 'int', '*npc': 'int', '*PC': 'int',
781 'thread_id': 'int'} }
Luiz Capitulinode0b36b2011-09-21 16:38:35 -0300782
783##
784# @query-cpus:
785#
786# Returns a list of information about each virtual CPU.
787#
788# Returns: a list of @CpuInfo for each virtual CPU
789#
790# Since: 0.14.0
791##
792{ 'command': 'query-cpus', 'returns': ['CpuInfo'] }
793
794##
Stefan Hajnoczidc3dd0d2014-02-27 11:48:42 +0100795# @IOThreadInfo:
796#
797# Information about an iothread
798#
799# @id: the identifier of the iothread
800#
801# @thread-id: ID of the underlying host thread
802#
803# Since: 2.0
804##
Eric Blake895a2a82015-05-04 09:05:27 -0600805{ 'struct': 'IOThreadInfo',
Stefan Hajnoczidc3dd0d2014-02-27 11:48:42 +0100806 'data': {'id': 'str', 'thread-id': 'int'} }
807
808##
809# @query-iothreads:
810#
811# Returns a list of information about each iothread.
812#
813# Note this list excludes the QEMU main loop thread, which is not declared
814# using the -object iothread command-line option. It is always the main thread
815# of the process.
816#
817# Returns: a list of @IOThreadInfo for each iothread
818#
819# Since: 2.0
820##
821{ 'command': 'query-iothreads', 'returns': ['IOThreadInfo'] }
822
823##
Wenchao Xiaa5895692014-06-18 08:43:30 +0200824# @NetworkAddressFamily
825#
826# The network address family
827#
828# @ipv4: IPV4 family
829#
830# @ipv6: IPV6 family
831#
832# @unix: unix socket
833#
834# @unknown: otherwise
835#
836# Since: 2.1
837##
838{ 'enum': 'NetworkAddressFamily',
839 'data': [ 'ipv4', 'ipv6', 'unix', 'unknown' ] }
840
841##
842# @VncBasicInfo
843#
844# The basic information for vnc network connection
845#
846# @host: IP address
847#
Wenchao Xia2f44a082014-06-24 16:34:00 -0700848# @service: The service name of the vnc port. This may depend on the host
849# system's service database so symbolic names should not be relied
850# on.
Wenchao Xiaa5895692014-06-18 08:43:30 +0200851#
852# @family: address family
853#
Gerd Hoffmann4478aa72014-12-10 09:49:39 +0100854# @websocket: true in case the socket is a websocket (since 2.3).
855#
Wenchao Xiaa5895692014-06-18 08:43:30 +0200856# Since: 2.1
857##
Eric Blake895a2a82015-05-04 09:05:27 -0600858{ 'struct': 'VncBasicInfo',
Wenchao Xiaa5895692014-06-18 08:43:30 +0200859 'data': { 'host': 'str',
860 'service': 'str',
Gerd Hoffmann4478aa72014-12-10 09:49:39 +0100861 'family': 'NetworkAddressFamily',
862 'websocket': 'bool' } }
Wenchao Xiaa5895692014-06-18 08:43:30 +0200863
864##
865# @VncServerInfo
866#
867# The network connection information for server
868#
869# @auth: #optional, authentication method
870#
871# Since: 2.1
872##
Eric Blake895a2a82015-05-04 09:05:27 -0600873{ 'struct': 'VncServerInfo',
Wenchao Xiaa5895692014-06-18 08:43:30 +0200874 'base': 'VncBasicInfo',
875 'data': { '*auth': 'str' } }
876
877##
Luiz Capitulino2b54aa82011-10-17 16:41:22 -0200878# @VncClientInfo:
879#
880# Information about a connected VNC client.
881#
Luiz Capitulino2b54aa82011-10-17 16:41:22 -0200882# @x509_dname: #optional If x509 authentication is in use, the Distinguished
883# Name of the client.
884#
885# @sasl_username: #optional If SASL authentication is in use, the SASL username
886# used for authentication.
887#
888# Since: 0.14.0
889##
Eric Blake895a2a82015-05-04 09:05:27 -0600890{ 'struct': 'VncClientInfo',
Wenchao Xiaa5895692014-06-18 08:43:30 +0200891 'base': 'VncBasicInfo',
Wenchao Xia2f44a082014-06-24 16:34:00 -0700892 'data': { '*x509_dname': 'str', '*sasl_username': 'str' } }
Luiz Capitulino2b54aa82011-10-17 16:41:22 -0200893
894##
895# @VncInfo:
896#
897# Information about the VNC session.
898#
899# @enabled: true if the VNC server is enabled, false otherwise
900#
901# @host: #optional The hostname the VNC server is bound to. This depends on
902# the name resolution on the host and may be an IP address.
903#
904# @family: #optional 'ipv6' if the host is listening for IPv6 connections
905# 'ipv4' if the host is listening for IPv4 connections
906# 'unix' if the host is listening on a unix domain socket
907# 'unknown' otherwise
908#
909# @service: #optional The service name of the server's port. This may depends
910# on the host system's service database so symbolic names should not
911# be relied on.
912#
913# @auth: #optional the current authentication type used by the server
914# 'none' if no authentication is being used
915# 'vnc' if VNC authentication is being used
916# 'vencrypt+plain' if VEncrypt is used with plain text authentication
917# 'vencrypt+tls+none' if VEncrypt is used with TLS and no authentication
918# 'vencrypt+tls+vnc' if VEncrypt is used with TLS and VNC authentication
919# 'vencrypt+tls+plain' if VEncrypt is used with TLS and plain text auth
920# 'vencrypt+x509+none' if VEncrypt is used with x509 and no auth
921# 'vencrypt+x509+vnc' if VEncrypt is used with x509 and VNC auth
922# 'vencrypt+x509+plain' if VEncrypt is used with x509 and plain text auth
923# 'vencrypt+tls+sasl' if VEncrypt is used with TLS and SASL auth
924# 'vencrypt+x509+sasl' if VEncrypt is used with x509 and SASL auth
925#
926# @clients: a list of @VncClientInfo of all currently connected clients
927#
928# Since: 0.14.0
929##
Eric Blake895a2a82015-05-04 09:05:27 -0600930{ 'struct': 'VncInfo',
Wenchao Xiaa5895692014-06-18 08:43:30 +0200931 'data': {'enabled': 'bool', '*host': 'str',
932 '*family': 'NetworkAddressFamily',
Luiz Capitulino2b54aa82011-10-17 16:41:22 -0200933 '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']} }
934
935##
Gerd Hoffmanndf887682014-12-17 15:49:44 +0100936# @VncPriAuth:
937#
938# vnc primary authentication method.
939#
940# Since: 2.3
941##
942{ 'enum': 'VncPrimaryAuth',
943 'data': [ 'none', 'vnc', 'ra2', 'ra2ne', 'tight', 'ultra',
944 'tls', 'vencrypt', 'sasl' ] }
945
946##
947# @VncVencryptSubAuth:
948#
949# vnc sub authentication method with vencrypt.
950#
951# Since: 2.3
952##
953{ 'enum': 'VncVencryptSubAuth',
954 'data': [ 'plain',
955 'tls-none', 'x509-none',
956 'tls-vnc', 'x509-vnc',
957 'tls-plain', 'x509-plain',
958 'tls-sasl', 'x509-sasl' ] }
959
960##
961# @VncInfo2:
962#
963# Information about a vnc server
964#
965# @id: vnc server name.
966#
967# @server: A list of @VncBasincInfo describing all listening sockets.
968# The list can be empty (in case the vnc server is disabled).
969# It also may have multiple entries: normal + websocket,
970# possibly also ipv4 + ipv6 in the future.
971#
972# @clients: A list of @VncClientInfo of all currently connected clients.
973# The list can be empty, for obvious reasons.
974#
975# @auth: The current authentication type used by the server
976#
977# @vencrypt: #optional The vencrypt sub authentication type used by the server,
978# only specified in case auth == vencrypt.
979#
980# @display: #optional The display device the vnc server is linked to.
981#
982# Since: 2.3
983##
Eric Blake895a2a82015-05-04 09:05:27 -0600984{ 'struct': 'VncInfo2',
Gerd Hoffmanndf887682014-12-17 15:49:44 +0100985 'data': { 'id' : 'str',
986 'server' : ['VncBasicInfo'],
987 'clients' : ['VncClientInfo'],
988 'auth' : 'VncPrimaryAuth',
989 '*vencrypt' : 'VncVencryptSubAuth',
990 '*display' : 'str' } }
991
992##
Luiz Capitulino2b54aa82011-10-17 16:41:22 -0200993# @query-vnc:
994#
995# Returns information about the current VNC server
996#
997# Returns: @VncInfo
Luiz Capitulino2b54aa82011-10-17 16:41:22 -0200998#
999# Since: 0.14.0
1000##
1001{ 'command': 'query-vnc', 'returns': 'VncInfo' }
1002
1003##
Gerd Hoffmanndf887682014-12-17 15:49:44 +01001004# @query-vnc-servers:
1005#
1006# Returns a list of vnc servers. The list can be empty.
1007#
1008# Returns: a list of @VncInfo2
1009#
1010# Since: 2.3
1011##
1012{ 'command': 'query-vnc-servers', 'returns': ['VncInfo2'] }
1013
1014##
Wenchao Xiaa5895692014-06-18 08:43:30 +02001015# @SpiceBasicInfo
1016#
1017# The basic information for SPICE network connection
1018#
1019# @host: IP address
1020#
1021# @port: port number
1022#
1023# @family: address family
1024#
1025# Since: 2.1
1026##
Eric Blake895a2a82015-05-04 09:05:27 -06001027{ 'struct': 'SpiceBasicInfo',
Wenchao Xiaa5895692014-06-18 08:43:30 +02001028 'data': { 'host': 'str',
1029 'port': 'str',
1030 'family': 'NetworkAddressFamily' } }
1031
1032##
1033# @SpiceServerInfo
1034#
1035# Information about a SPICE server
1036#
1037# @auth: #optional, authentication method
1038#
1039# Since: 2.1
1040##
Eric Blake895a2a82015-05-04 09:05:27 -06001041{ 'struct': 'SpiceServerInfo',
Wenchao Xiaa5895692014-06-18 08:43:30 +02001042 'base': 'SpiceBasicInfo',
1043 'data': { '*auth': 'str' } }
1044
1045##
Luiz Capitulinod1f29642011-10-20 17:01:33 -02001046# @SpiceChannel
1047#
1048# Information about a SPICE client channel.
1049#
Luiz Capitulinod1f29642011-10-20 17:01:33 -02001050# @connection-id: SPICE connection id number. All channels with the same id
1051# belong to the same SPICE session.
1052#
Cole Robinson7e781c72015-02-26 13:59:58 -05001053# @channel-type: SPICE channel type number. "1" is the main control
1054# channel, filter for this one if you want to track spice
1055# sessions only
Luiz Capitulinod1f29642011-10-20 17:01:33 -02001056#
Alon Levy419e1bd2012-03-05 15:13:27 +02001057# @channel-id: SPICE channel ID number. Usually "0", might be different when
1058# multiple channels of the same type exist, such as multiple
Luiz Capitulinod1f29642011-10-20 17:01:33 -02001059# display channels in a multihead setup
1060#
1061# @tls: true if the channel is encrypted, false otherwise.
1062#
1063# Since: 0.14.0
1064##
Eric Blake895a2a82015-05-04 09:05:27 -06001065{ 'struct': 'SpiceChannel',
Wenchao Xiaa5895692014-06-18 08:43:30 +02001066 'base': 'SpiceBasicInfo',
1067 'data': {'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int',
Luiz Capitulinod1f29642011-10-20 17:01:33 -02001068 'tls': 'bool'} }
1069
1070##
Alon Levy4efee022012-03-29 23:23:14 +02001071# @SpiceQueryMouseMode
1072#
Lei Li6932a692012-08-23 13:14:25 +08001073# An enumeration of Spice mouse states.
Alon Levy4efee022012-03-29 23:23:14 +02001074#
1075# @client: Mouse cursor position is determined by the client.
1076#
1077# @server: Mouse cursor position is determined by the server.
1078#
1079# @unknown: No information is available about mouse mode used by
1080# the spice server.
1081#
1082# Note: spice/enums.h has a SpiceMouseMode already, hence the name.
1083#
1084# Since: 1.1
1085##
1086{ 'enum': 'SpiceQueryMouseMode',
1087 'data': [ 'client', 'server', 'unknown' ] }
1088
1089##
Luiz Capitulinod1f29642011-10-20 17:01:33 -02001090# @SpiceInfo
1091#
1092# Information about the SPICE session.
Laszlo Ersekb80e5602012-07-17 16:17:10 +02001093#
Luiz Capitulinod1f29642011-10-20 17:01:33 -02001094# @enabled: true if the SPICE server is enabled, false otherwise
1095#
Yonit Halperin61c4efe2012-08-21 11:51:58 +03001096# @migrated: true if the last guest migration completed and spice
1097# migration had completed as well. false otherwise.
1098#
Luiz Capitulinod1f29642011-10-20 17:01:33 -02001099# @host: #optional The hostname the SPICE server is bound to. This depends on
1100# the name resolution on the host and may be an IP address.
1101#
1102# @port: #optional The SPICE server's port number.
1103#
1104# @compiled-version: #optional SPICE server version.
1105#
1106# @tls-port: #optional The SPICE server's TLS port number.
1107#
1108# @auth: #optional the current authentication type used by the server
Alon Levy419e1bd2012-03-05 15:13:27 +02001109# 'none' if no authentication is being used
1110# 'spice' uses SASL or direct TLS authentication, depending on command
1111# line options
Luiz Capitulinod1f29642011-10-20 17:01:33 -02001112#
Alon Levy4efee022012-03-29 23:23:14 +02001113# @mouse-mode: The mode in which the mouse cursor is displayed currently. Can
1114# be determined by the client or the server, or unknown if spice
1115# server doesn't provide this information.
1116#
1117# Since: 1.1
1118#
Luiz Capitulinod1f29642011-10-20 17:01:33 -02001119# @channels: a list of @SpiceChannel for each active spice channel
1120#
1121# Since: 0.14.0
1122##
Eric Blake895a2a82015-05-04 09:05:27 -06001123{ 'struct': 'SpiceInfo',
Yonit Halperin61c4efe2012-08-21 11:51:58 +03001124 'data': {'enabled': 'bool', 'migrated': 'bool', '*host': 'str', '*port': 'int',
Luiz Capitulinod1f29642011-10-20 17:01:33 -02001125 '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
Alon Levy4efee022012-03-29 23:23:14 +02001126 'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} }
Luiz Capitulinod1f29642011-10-20 17:01:33 -02001127
1128##
1129# @query-spice
1130#
1131# Returns information about the current SPICE server
1132#
1133# Returns: @SpiceInfo
1134#
1135# Since: 0.14.0
1136##
1137{ 'command': 'query-spice', 'returns': 'SpiceInfo' }
1138
1139##
Luiz Capitulino96637bc2011-10-21 11:41:37 -02001140# @BalloonInfo:
1141#
1142# Information about the guest balloon device.
1143#
1144# @actual: the number of bytes the balloon currently contains
1145#
Luiz Capitulino96637bc2011-10-21 11:41:37 -02001146# Since: 0.14.0
1147#
Luiz Capitulino96637bc2011-10-21 11:41:37 -02001148##
Eric Blake895a2a82015-05-04 09:05:27 -06001149{ 'struct': 'BalloonInfo', 'data': {'actual': 'int' } }
Luiz Capitulino96637bc2011-10-21 11:41:37 -02001150
1151##
1152# @query-balloon:
1153#
1154# Return information about the balloon device.
1155#
1156# Returns: @BalloonInfo on success
1157# If the balloon driver is enabled but not functional because the KVM
1158# kernel module cannot support it, KvmMissingCap
1159# If no balloon device is present, DeviceNotActive
1160#
1161# Since: 0.14.0
1162##
1163{ 'command': 'query-balloon', 'returns': 'BalloonInfo' }
1164
1165##
Luiz Capitulino79627472011-10-21 14:15:33 -02001166# @PciMemoryRange:
1167#
1168# A PCI device memory region
1169#
1170# @base: the starting address (guest physical)
1171#
1172# @limit: the ending address (guest physical)
1173#
1174# Since: 0.14.0
1175##
Eric Blake895a2a82015-05-04 09:05:27 -06001176{ 'struct': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} }
Luiz Capitulino79627472011-10-21 14:15:33 -02001177
1178##
1179# @PciMemoryRegion
1180#
1181# Information about a PCI device I/O region.
1182#
1183# @bar: the index of the Base Address Register for this region
1184#
1185# @type: 'io' if the region is a PIO region
1186# 'memory' if the region is a MMIO region
1187#
1188# @prefetch: #optional if @type is 'memory', true if the memory is prefetchable
1189#
1190# @mem_type_64: #optional if @type is 'memory', true if the BAR is 64-bit
1191#
1192# Since: 0.14.0
1193##
Eric Blake895a2a82015-05-04 09:05:27 -06001194{ 'struct': 'PciMemoryRegion',
Luiz Capitulino79627472011-10-21 14:15:33 -02001195 'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int',
1196 '*prefetch': 'bool', '*mem_type_64': 'bool' } }
1197
1198##
Eric Blake9fa02cd2015-05-04 09:05:32 -06001199# @PciBusInfo:
1200#
1201# Information about a bus of a PCI Bridge device
1202#
1203# @number: primary bus interface number. This should be the number of the
1204# bus the device resides on.
1205#
1206# @secondary: secondary bus interface number. This is the number of the
1207# main bus for the bridge
1208#
1209# @subordinate: This is the highest number bus that resides below the
1210# bridge.
1211#
1212# @io_range: The PIO range for all devices on this bridge
1213#
1214# @memory_range: The MMIO range for all devices on this bridge
1215#
1216# @prefetchable_range: The range of prefetchable MMIO for all devices on
1217# this bridge
1218#
1219# Since: 2.4
1220##
1221{ 'struct': 'PciBusInfo',
1222 'data': {'number': 'int', 'secondary': 'int', 'subordinate': 'int',
1223 'io_range': 'PciMemoryRange',
1224 'memory_range': 'PciMemoryRange',
1225 'prefetchable_range': 'PciMemoryRange' } }
1226
1227##
Luiz Capitulino79627472011-10-21 14:15:33 -02001228# @PciBridgeInfo:
1229#
1230# Information about a PCI Bridge device
1231#
Eric Blake9fa02cd2015-05-04 09:05:32 -06001232# @bus: information about the bus the device resides on
Luiz Capitulino79627472011-10-21 14:15:33 -02001233#
1234# @devices: a list of @PciDeviceInfo for each device on this bridge
1235#
1236# Since: 0.14.0
1237##
Eric Blake895a2a82015-05-04 09:05:27 -06001238{ 'struct': 'PciBridgeInfo',
Eric Blake9fa02cd2015-05-04 09:05:32 -06001239 'data': {'bus': 'PciBusInfo', '*devices': ['PciDeviceInfo']} }
1240
1241##
1242# @PciDeviceClass:
1243#
1244# Information about the Class of a PCI device
1245#
1246# @desc: #optional a string description of the device's class
1247#
1248# @class: the class code of the device
1249#
1250# Since: 2.4
1251##
1252{ 'struct': 'PciDeviceClass',
1253 'data': {'*desc': 'str', 'class': 'int'} }
1254
1255##
1256# @PciDeviceId:
1257#
1258# Information about the Id of a PCI device
1259#
1260# @device: the PCI device id
1261#
1262# @vendor: the PCI vendor id
1263#
1264# Since: 2.4
1265##
1266{ 'struct': 'PciDeviceId',
1267 'data': {'device': 'int', 'vendor': 'int'} }
Luiz Capitulino79627472011-10-21 14:15:33 -02001268
1269##
1270# @PciDeviceInfo:
1271#
1272# Information about a PCI device
1273#
1274# @bus: the bus number of the device
1275#
1276# @slot: the slot the device is located in
1277#
1278# @function: the function of the slot used by the device
1279#
Eric Blake9fa02cd2015-05-04 09:05:32 -06001280# @class_info: the class of the device
Luiz Capitulino79627472011-10-21 14:15:33 -02001281#
Eric Blake9fa02cd2015-05-04 09:05:32 -06001282# @id: the PCI device id
Luiz Capitulino79627472011-10-21 14:15:33 -02001283#
1284# @irq: #optional if an IRQ is assigned to the device, the IRQ number
1285#
1286# @qdev_id: the device name of the PCI device
1287#
1288# @pci_bridge: if the device is a PCI bridge, the bridge information
1289#
1290# @regions: a list of the PCI I/O regions associated with the device
1291#
1292# Notes: the contents of @class_info.desc are not stable and should only be
1293# treated as informational.
1294#
1295# Since: 0.14.0
1296##
Eric Blake895a2a82015-05-04 09:05:27 -06001297{ 'struct': 'PciDeviceInfo',
Luiz Capitulino79627472011-10-21 14:15:33 -02001298 'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
Eric Blake9fa02cd2015-05-04 09:05:32 -06001299 'class_info': 'PciDeviceClass', 'id': 'PciDeviceId',
Luiz Capitulino79627472011-10-21 14:15:33 -02001300 '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
1301 'regions': ['PciMemoryRegion']} }
1302
1303##
1304# @PciInfo:
1305#
1306# Information about a PCI bus
1307#
1308# @bus: the bus index
1309#
1310# @devices: a list of devices on this bus
1311#
1312# Since: 0.14.0
1313##
Eric Blake895a2a82015-05-04 09:05:27 -06001314{ 'struct': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} }
Luiz Capitulino79627472011-10-21 14:15:33 -02001315
1316##
1317# @query-pci:
1318#
1319# Return information about the PCI bus topology of the guest.
1320#
1321# Returns: a list of @PciInfo for each PCI bus
1322#
1323# Since: 0.14.0
1324##
1325{ 'command': 'query-pci', 'returns': ['PciInfo'] }
1326
1327##
Luiz Capitulino7a7f3252011-09-15 14:20:28 -03001328# @quit:
1329#
1330# This command will cause the QEMU process to exit gracefully. While every
1331# attempt is made to send the QMP response before terminating, this is not
1332# guaranteed. When using this interface, a premature EOF would not be
1333# unexpected.
1334#
1335# Since: 0.14.0
1336##
1337{ 'command': 'quit' }
Luiz Capitulino5f158f22011-09-15 14:34:39 -03001338
1339##
1340# @stop:
1341#
1342# Stop all guest VCPU execution.
1343#
1344# Since: 0.14.0
1345#
1346# Notes: This function will succeed even if the guest is already in the stopped
Paolo Bonzini1e998142012-10-23 14:54:21 +02001347# state. In "inmigrate" state, it will ensure that the guest
1348# remains paused once migration finishes, as if the -S option was
1349# passed on the command line.
Luiz Capitulino5f158f22011-09-15 14:34:39 -03001350##
1351{ 'command': 'stop' }
Luiz Capitulino38d22652011-09-15 14:41:46 -03001352
1353##
1354# @system_reset:
1355#
1356# Performs a hard reset of a guest.
1357#
1358# Since: 0.14.0
1359##
1360{ 'command': 'system_reset' }
Luiz Capitulino5bc465e2011-09-28 11:06:15 -03001361
1362##
1363# @system_powerdown:
1364#
1365# Requests that a guest perform a powerdown operation.
1366#
1367# Since: 0.14.0
1368#
1369# Notes: A guest may or may not respond to this command. This command
1370# returning does not indicate that a guest has accepted the request or
1371# that it has shut down. Many guests will respond to this command by
1372# prompting the user in some way.
1373##
1374{ 'command': 'system_powerdown' }
Luiz Capitulino755f1962011-10-06 14:31:39 -03001375
1376##
1377# @cpu:
1378#
1379# This command is a nop that is only provided for the purposes of compatibility.
1380#
1381# Since: 0.14.0
1382#
1383# Notes: Do not use this command.
1384##
1385{ 'command': 'cpu', 'data': {'index': 'int'} }
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -02001386
1387##
Igor Mammedov69ca3ea2013-04-30 15:41:25 +02001388# @cpu-add
1389#
1390# Adds CPU with specified ID
1391#
1392# @id: ID of CPU to be created, valid values [0..max_cpus)
1393#
1394# Returns: Nothing on success
1395#
1396# Since 1.5
1397##
1398{ 'command': 'cpu-add', 'data': {'id': 'int'} }
1399
1400##
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -02001401# @memsave:
1402#
1403# Save a portion of guest memory to a file.
1404#
1405# @val: the virtual address of the guest to start from
1406#
1407# @size: the size of memory region to save
1408#
1409# @filename: the file to save the memory to as binary data
1410#
1411# @cpu-index: #optional the index of the virtual CPU to use for translating the
1412# virtual address (defaults to CPU 0)
1413#
1414# Returns: Nothing on success
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -02001415#
1416# Since: 0.14.0
1417#
1418# Notes: Errors were not reliably returned until 1.1
1419##
1420{ 'command': 'memsave',
1421 'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
Luiz Capitulino6d3962b2011-11-22 17:26:46 -02001422
1423##
1424# @pmemsave:
1425#
1426# Save a portion of guest physical memory to a file.
1427#
1428# @val: the physical address of the guest to start from
1429#
1430# @size: the size of memory region to save
1431#
1432# @filename: the file to save the memory to as binary data
1433#
1434# Returns: Nothing on success
Luiz Capitulino6d3962b2011-11-22 17:26:46 -02001435#
1436# Since: 0.14.0
1437#
1438# Notes: Errors were not reliably returned until 1.1
1439##
1440{ 'command': 'pmemsave',
1441 'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
Luiz Capitulinoe42e8182011-11-22 17:58:31 -02001442
1443##
1444# @cont:
1445#
1446# Resume guest VCPU execution.
1447#
1448# Since: 0.14.0
1449#
1450# Returns: If successful, nothing
Luiz Capitulinoe42e8182011-11-22 17:58:31 -02001451# If QEMU was started with an encrypted block device and a key has
1452# not yet been set, DeviceEncrypted.
1453#
Paolo Bonzini1e998142012-10-23 14:54:21 +02001454# Notes: This command will succeed if the guest is currently running. It
1455# will also succeed if the guest is in the "inmigrate" state; in
1456# this case, the effect of the command is to make sure the guest
1457# starts once migration finishes, removing the effect of the -S
1458# command line option if it was passed.
Luiz Capitulinoe42e8182011-11-22 17:58:31 -02001459##
1460{ 'command': 'cont' }
1461
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001462##
Gerd Hoffmann9b9df252012-02-23 13:45:21 +01001463# @system_wakeup:
1464#
1465# Wakeup guest from suspend. Does nothing in case the guest isn't suspended.
1466#
1467# Since: 1.1
1468#
1469# Returns: nothing.
1470##
1471{ 'command': 'system_wakeup' }
1472
1473##
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001474# @inject-nmi:
1475#
Alexey Kardashevskiy9cb805f2014-08-20 22:16:33 +10001476# Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or all CPUs (ppc64).
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001477#
1478# Returns: If successful, nothing
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001479#
1480# Since: 0.14.0
1481#
Alexey Kardashevskiy9cb805f2014-08-20 22:16:33 +10001482# Note: prior to 2.1, this command was only supported for x86 and s390 VMs
Luiz Capitulinoab49ab52011-11-23 12:55:53 -02001483##
1484{ 'command': 'inject-nmi' }
Luiz Capitulino4b371562011-11-23 13:11:55 -02001485
1486##
1487# @set_link:
1488#
1489# Sets the link status of a virtual network adapter.
1490#
1491# @name: the device name of the virtual network adapter
1492#
1493# @up: true to set the link status to be up
1494#
1495# Returns: Nothing on success
1496# If @name is not a valid network device, DeviceNotFound
1497#
1498# Since: 0.14.0
1499#
1500# Notes: Not all network adapters support setting link status. This command
1501# will succeed even if the network adapter does not support link status
1502# notification.
1503##
1504{ 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} }
Luiz Capitulinoa4dea8a2011-11-23 13:28:21 -02001505
1506##
Luiz Capitulinod72f3262011-11-25 14:38:09 -02001507# @balloon:
1508#
1509# Request the balloon driver to change its balloon size.
1510#
1511# @value: the target size of the balloon in bytes
1512#
1513# Returns: Nothing on success
1514# If the balloon driver is enabled but not functional because the KVM
1515# kernel module cannot support it, KvmMissingCap
1516# If no balloon device is present, DeviceNotActive
1517#
1518# Notes: This command just issues a request to the guest. When it returns,
1519# the balloon size may not have changed. A guest can change the balloon
1520# size independent of this command.
1521#
1522# Since: 0.14.0
1523##
1524{ 'command': 'balloon', 'data': {'value': 'int'} }
Luiz Capitulino5e7caac2011-11-25 14:57:10 -02001525
1526##
Stefan Hajnoczi78b18b72013-06-24 17:13:18 +02001527# @Abort
1528#
1529# This action can be used to test transaction failure.
1530#
1531# Since: 1.6
1532###
Eric Blake895a2a82015-05-04 09:05:27 -06001533{ 'struct': 'Abort',
Stefan Hajnoczi78b18b72013-06-24 17:13:18 +02001534 'data': { } }
1535
1536##
Kevin Wolfc8a83e82013-05-13 10:43:43 +02001537# @TransactionAction
Jeff Cody8802d1f2012-02-28 15:54:06 -05001538#
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001539# A discriminated record of operations that can be performed with
1540# @transaction.
Fam Zhengb7b9d392014-12-18 18:37:04 +08001541#
1542# Since 1.1
1543#
1544# drive-backup since 1.6
1545# abort since 1.6
1546# blockdev-snapshot-internal-sync since 1.7
Fam Zhengbd8baec2014-12-18 18:37:06 +08001547# blockdev-backup since 2.3
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001548##
Kevin Wolfc8a83e82013-05-13 10:43:43 +02001549{ 'union': 'TransactionAction',
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001550 'data': {
Stefan Hajnoczi3037f362013-06-24 17:13:17 +02001551 'blockdev-snapshot-sync': 'BlockdevSnapshot',
Stefan Hajnoczi78b18b72013-06-24 17:13:18 +02001552 'drive-backup': 'DriveBackup',
Fam Zhengbd8baec2014-12-18 18:37:06 +08001553 'blockdev-backup': 'BlockdevBackup',
Wenchao Xiabbe86012013-09-11 14:04:34 +08001554 'abort': 'Abort',
1555 'blockdev-snapshot-internal-sync': 'BlockdevSnapshotInternal'
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001556 } }
1557
1558##
1559# @transaction
1560#
Kevin Wolfc8a83e82013-05-13 10:43:43 +02001561# Executes a number of transactionable QMP commands atomically. If any
1562# operation fails, then the entire set of actions will be abandoned and the
1563# appropriate error returned.
Jeff Cody8802d1f2012-02-28 15:54:06 -05001564#
1565# List of:
Kevin Wolfc8a83e82013-05-13 10:43:43 +02001566# @TransactionAction: information needed for the respective operation
Jeff Cody8802d1f2012-02-28 15:54:06 -05001567#
1568# Returns: nothing on success
Kevin Wolfc8a83e82013-05-13 10:43:43 +02001569# Errors depend on the operations of the transaction
Jeff Cody8802d1f2012-02-28 15:54:06 -05001570#
Kevin Wolfc8a83e82013-05-13 10:43:43 +02001571# Note: The transaction aborts on the first failure. Therefore, there will be
1572# information on only one failed operation returned in an error condition, and
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001573# subsequent actions will not have been attempted.
1574#
1575# Since 1.1
Jeff Cody8802d1f2012-02-28 15:54:06 -05001576##
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001577{ 'command': 'transaction',
Kevin Wolfc8a83e82013-05-13 10:43:43 +02001578 'data': { 'actions': [ 'TransactionAction' ] } }
Jeff Cody8802d1f2012-02-28 15:54:06 -05001579
1580##
Luiz Capitulinod51a67b2011-11-25 17:52:45 -02001581# @human-monitor-command:
1582#
1583# Execute a command on the human monitor and return the output.
1584#
1585# @command-line: the command to execute in the human monitor
1586#
1587# @cpu-index: #optional The CPU to use for commands that require an implicit CPU
1588#
1589# Returns: the output of the command as a string
1590#
1591# Since: 0.14.0
1592#
Stefan Weil59b00962013-10-11 21:34:33 +02001593# Notes: This command only exists as a stop-gap. Its use is highly
Luiz Capitulinod51a67b2011-11-25 17:52:45 -02001594# discouraged. The semantics of this command are not guaranteed.
1595#
1596# Known limitations:
1597#
1598# o This command is stateless, this means that commands that depend
1599# on state information (such as getfd) might not work
1600#
1601# o Commands that prompt the user for data (eg. 'cont' when the block
1602# device is encrypted) don't currently work
1603##
1604{ 'command': 'human-monitor-command',
1605 'data': {'command-line': 'str', '*cpu-index': 'int'},
Laszlo Ersekb80e5602012-07-17 16:17:10 +02001606 'returns': 'str' }
Luiz Capitulino6cdedb02011-11-27 22:54:09 -02001607
1608##
1609# @migrate_cancel
1610#
1611# Cancel the current executing migration process.
1612#
1613# Returns: nothing on success
1614#
1615# Notes: This command succeeds even if there is no migration process running.
1616#
1617# Since: 0.14.0
1618##
1619{ 'command': 'migrate_cancel' }
Luiz Capitulino4f0a9932011-11-27 23:18:01 -02001620
1621##
1622# @migrate_set_downtime
1623#
1624# Set maximum tolerated downtime for migration.
1625#
1626# @value: maximum downtime in seconds
1627#
1628# Returns: nothing on success
1629#
1630# Since: 0.14.0
1631##
1632{ 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
Luiz Capitulino3dc85382011-11-28 11:59:37 -02001633
1634##
1635# @migrate_set_speed
1636#
1637# Set maximum speed for migration.
1638#
1639# @value: maximum speed in bytes.
1640#
1641# Returns: nothing on success
1642#
1643# Notes: A value lesser than zero will be automatically round up to zero.
1644#
1645# Since: 0.14.0
1646##
1647{ 'command': 'migrate_set_speed', 'data': {'value': 'int'} }
Anthony Liguorib4b12c62011-12-12 14:29:34 -06001648
1649##
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03001650# @migrate-set-cache-size
1651#
1652# Set XBZRLE cache size
1653#
1654# @value: cache size in bytes
1655#
1656# The size will be rounded down to the nearest power of 2.
1657# The cache size can be modified before and during ongoing migration
1658#
1659# Returns: nothing on success
1660#
1661# Since: 1.2
1662##
1663{ 'command': 'migrate-set-cache-size', 'data': {'value': 'int'} }
1664
1665##
1666# @query-migrate-cache-size
1667#
1668# query XBZRLE cache size
1669#
1670# Returns: XBZRLE cache size in bytes
1671#
1672# Since: 1.2
1673##
1674{ 'command': 'query-migrate-cache-size', 'returns': 'int' }
1675
1676##
Alon Levyd03ee402012-03-05 15:13:28 +02001677# @ObjectPropertyInfo:
Anthony Liguorib4b12c62011-12-12 14:29:34 -06001678#
1679# @name: the name of the property
1680#
1681# @type: the type of the property. This will typically come in one of four
1682# forms:
1683#
1684# 1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
1685# These types are mapped to the appropriate JSON type.
1686#
Marc-André Lureau33b23b42015-09-04 21:41:01 +02001687# 2) A child type in the form 'child<subtype>' where subtype is a qdev
Anthony Liguorib4b12c62011-12-12 14:29:34 -06001688# device type name. Child properties create the composition tree.
1689#
Marc-André Lureau33b23b42015-09-04 21:41:01 +02001690# 3) A link type in the form 'link<subtype>' where subtype is a qdev
Anthony Liguorib4b12c62011-12-12 14:29:34 -06001691# device type name. Link properties form the device model graph.
1692#
Anthony Liguori51920822012-08-10 11:04:10 -05001693# Since: 1.2
Anthony Liguorib4b12c62011-12-12 14:29:34 -06001694##
Eric Blake895a2a82015-05-04 09:05:27 -06001695{ 'struct': 'ObjectPropertyInfo',
Anthony Liguorib4b12c62011-12-12 14:29:34 -06001696 'data': { 'name': 'str', 'type': 'str' } }
1697
1698##
1699# @qom-list:
1700#
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001701# This command will list any properties of a object given a path in the object
Anthony Liguorib4b12c62011-12-12 14:29:34 -06001702# model.
1703#
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001704# @path: the path within the object model. See @qom-get for a description of
Anthony Liguorib4b12c62011-12-12 14:29:34 -06001705# this parameter.
1706#
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001707# Returns: a list of @ObjectPropertyInfo that describe the properties of the
1708# object.
Anthony Liguorib4b12c62011-12-12 14:29:34 -06001709#
Anthony Liguori51920822012-08-10 11:04:10 -05001710# Since: 1.2
Anthony Liguorib4b12c62011-12-12 14:29:34 -06001711##
1712{ 'command': 'qom-list',
1713 'data': { 'path': 'str' },
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001714 'returns': [ 'ObjectPropertyInfo' ] }
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06001715
1716##
1717# @qom-get:
1718#
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001719# This command will get a property from a object model path and return the
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06001720# value.
1721#
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001722# @path: The path within the object model. There are two forms of supported
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06001723# paths--absolute and partial paths.
1724#
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001725# Absolute paths are derived from the root object and can follow child<>
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06001726# or link<> properties. Since they can follow link<> properties, they
1727# can be arbitrarily long. Absolute paths look like absolute filenames
1728# and are prefixed with a leading slash.
1729#
1730# Partial paths look like relative filenames. They do not begin
1731# with a prefix. The matching rules for partial paths are subtle but
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001732# designed to make specifying objects easy. At each level of the
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06001733# composition tree, the partial path is matched as an absolute path.
1734# The first match is not returned. At least two matches are searched
1735# for. A successful result is only returned if only one match is
1736# found. If more than one match is found, a flag is return to
1737# indicate that the match was ambiguous.
1738#
1739# @property: The property name to read
1740#
Marc-André Lureau33b23b42015-09-04 21:41:01 +02001741# Returns: The property value. The type depends on the property
1742# type. child<> and link<> properties are returned as #str
1743# pathnames. All integer property types (u8, u16, etc) are
1744# returned as #int.
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06001745#
Anthony Liguori51920822012-08-10 11:04:10 -05001746# Since: 1.2
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06001747##
1748{ 'command': 'qom-get',
1749 'data': { 'path': 'str', 'property': 'str' },
Markus Armbruster6eb39372015-09-16 13:06:25 +02001750 'returns': 'any' }
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06001751
1752##
1753# @qom-set:
1754#
Anthony Liguori57c9faf2012-01-30 08:55:55 -06001755# This command will set a property from a object model path.
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06001756#
1757# @path: see @qom-get for a description of this parameter
1758#
1759# @property: the property name to set
1760#
1761# @value: a value who's type is appropriate for the property type. See @qom-get
1762# for a description of type mapping.
1763#
Anthony Liguori51920822012-08-10 11:04:10 -05001764# Since: 1.2
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06001765##
1766{ 'command': 'qom-set',
Markus Armbruster6eb39372015-09-16 13:06:25 +02001767 'data': { 'path': 'str', 'property': 'str', 'value': 'any' } }
Luiz Capitulinofbf796f2011-12-07 11:17:51 -02001768
1769##
1770# @set_password:
1771#
1772# Sets the password of a remote display session.
1773#
1774# @protocol: `vnc' to modify the VNC server password
1775# `spice' to modify the Spice server password
1776#
1777# @password: the new password
1778#
1779# @connected: #optional how to handle existing clients when changing the
Laszlo Ersekb80e5602012-07-17 16:17:10 +02001780# password. If nothing is specified, defaults to `keep'
Luiz Capitulinofbf796f2011-12-07 11:17:51 -02001781# `fail' to fail the command if clients are connected
1782# `disconnect' to disconnect existing clients
1783# `keep' to maintain existing clients
1784#
1785# Returns: Nothing on success
1786# If Spice is not enabled, DeviceNotFound
Luiz Capitulinofbf796f2011-12-07 11:17:51 -02001787#
1788# Since: 0.14.0
1789##
1790{ 'command': 'set_password',
1791 'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} }
Luiz Capitulino9ad53722011-12-07 11:47:57 -02001792
1793##
1794# @expire_password:
1795#
1796# Expire the password of a remote display server.
1797#
1798# @protocol: the name of the remote display protocol `vnc' or `spice'
1799#
1800# @time: when to expire the password.
1801# `now' to expire the password immediately
1802# `never' to cancel password expiration
1803# `+INT' where INT is the number of seconds from now (integer)
1804# `INT' where INT is the absolute time in seconds
1805#
1806# Returns: Nothing on success
1807# If @protocol is `spice' and Spice is not active, DeviceNotFound
Luiz Capitulino9ad53722011-12-07 11:47:57 -02001808#
1809# Since: 0.14.0
1810#
1811# Notes: Time is relative to the server and currently there is no way to
1812# coordinate server time with client time. It is not recommended to
1813# use the absolute time version of the @time parameter unless you're
1814# sure you are on the same machine as the QEMU instance.
1815##
1816{ 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} }
Luiz Capitulinoc245b6a2011-12-07 16:02:36 -02001817
1818##
Luiz Capitulino270b2432011-12-08 11:45:55 -02001819# @change-vnc-password:
1820#
1821# Change the VNC server password.
1822#
Gonglei1c854062014-12-08 19:40:19 +08001823# @password: the new password to use with VNC authentication
Luiz Capitulino270b2432011-12-08 11:45:55 -02001824#
1825# Since: 1.1
1826#
1827# Notes: An empty password in this command will set the password to the empty
1828# string. Existing clients are unaffected by executing this command.
1829##
1830{ 'command': 'change-vnc-password', 'data': {'password': 'str'} }
Luiz Capitulino333a96e2011-12-08 11:13:50 -02001831
1832##
1833# @change:
1834#
1835# This command is multiple commands multiplexed together.
1836#
1837# @device: This is normally the name of a block device but it may also be 'vnc'.
1838# when it's 'vnc', then sub command depends on @target
1839#
1840# @target: If @device is a block device, then this is the new filename.
1841# If @device is 'vnc', then if the value 'password' selects the vnc
1842# change password command. Otherwise, this specifies a new server URI
1843# address to listen to for VNC connections.
1844#
1845# @arg: If @device is a block device, then this is an optional format to open
1846# the device with.
1847# If @device is 'vnc' and @target is 'password', this is the new VNC
1848# password to set. If this argument is an empty string, then no future
1849# logins will be allowed.
1850#
1851# Returns: Nothing on success.
1852# If @device is not a valid block device, DeviceNotFound
Luiz Capitulino333a96e2011-12-08 11:13:50 -02001853# If the new block device is encrypted, DeviceEncrypted. Note that
1854# if this error is returned, the device has been opened successfully
1855# and an additional call to @block_passwd is required to set the
1856# device's password. The behavior of reads and writes to the block
1857# device between when these calls are executed is undefined.
1858#
1859# Notes: It is strongly recommended that this interface is not used especially
1860# for changing block devices.
1861#
1862# Since: 0.14.0
1863##
1864{ 'command': 'change',
1865 'data': {'device': 'str', 'target': 'str', '*arg': 'str'} }
Luiz Capitulino80047da2011-12-14 16:49:14 -02001866
1867##
Anthony Liguori5eeee3f2011-12-22 14:40:54 -06001868# @ObjectTypeInfo:
1869#
1870# This structure describes a search result from @qom-list-types
1871#
1872# @name: the type name found in the search
1873#
1874# Since: 1.1
1875#
1876# Notes: This command is experimental and may change syntax in future releases.
1877##
Eric Blake895a2a82015-05-04 09:05:27 -06001878{ 'struct': 'ObjectTypeInfo',
Anthony Liguori5eeee3f2011-12-22 14:40:54 -06001879 'data': { 'name': 'str' } }
1880
1881##
1882# @qom-list-types:
1883#
1884# This command will return a list of types given search parameters
1885#
1886# @implements: if specified, only return types that implement this type name
1887#
1888# @abstract: if true, include abstract types in the results
1889#
1890# Returns: a list of @ObjectTypeInfo or an empty list if no results are found
1891#
1892# Since: 1.1
Anthony Liguori5eeee3f2011-12-22 14:40:54 -06001893##
1894{ 'command': 'qom-list-types',
1895 'data': { '*implements': 'str', '*abstract': 'bool' },
1896 'returns': [ 'ObjectTypeInfo' ] }
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001897
1898##
Anthony Liguori1daa31b2012-08-10 11:04:09 -05001899# @DevicePropertyInfo:
1900#
1901# Information about device properties.
1902#
1903# @name: the name of the property
1904# @type: the typename of the property
Gonglei07d09c52014-10-07 14:33:23 +08001905# @description: #optional if specified, the description of the property.
1906# (since 2.2)
Anthony Liguori1daa31b2012-08-10 11:04:09 -05001907#
1908# Since: 1.2
1909##
Eric Blake895a2a82015-05-04 09:05:27 -06001910{ 'struct': 'DevicePropertyInfo',
Gonglei07d09c52014-10-07 14:33:23 +08001911 'data': { 'name': 'str', 'type': 'str', '*description': 'str' } }
Anthony Liguori1daa31b2012-08-10 11:04:09 -05001912
1913##
1914# @device-list-properties:
1915#
1916# List properties associated with a device.
1917#
1918# @typename: the type name of a device
1919#
1920# Returns: a list of DevicePropertyInfo describing a devices properties
1921#
1922# Since: 1.2
1923##
1924{ 'command': 'device-list-properties',
1925 'data': { 'typename': 'str'},
1926 'returns': [ 'DevicePropertyInfo' ] }
1927
1928##
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -02001929# @migrate
1930#
1931# Migrates the current running guest to another Virtual Machine.
1932#
1933# @uri: the Uniform Resource Identifier of the destination VM
1934#
1935# @blk: #optional do block migration (full disk copy)
1936#
1937# @inc: #optional incremental disk copy migration
1938#
1939# @detach: this argument exists only for compatibility reasons and
1940# is ignored by QEMU
1941#
1942# Returns: nothing on success
1943#
1944# Since: 0.14.0
1945##
1946{ 'command': 'migrate',
1947 'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
Anthony Liguori33cf6292012-03-19 13:39:42 -05001948
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001949##
1950# @migrate-incoming
1951#
1952# Start an incoming migration, the qemu must have been started
1953# with -incoming defer
1954#
1955# @uri: The Uniform Resource Identifier identifying the source or
1956# address to listen on
1957#
1958# Returns: nothing on success
1959#
1960# Since: 2.3
Dr. David Alan Gilbertd8760532015-02-26 14:54:40 +00001961# Note: It's a bad idea to use a string for the uri, but it needs to stay
1962# compatible with -incoming and the format of the uri is already exposed
1963# above libvirt
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +00001964##
1965{ 'command': 'migrate-incoming', 'data': {'uri': 'str' } }
1966
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001967# @xen-save-devices-state:
1968#
1969# Save the state of all devices to file. The RAM and the block devices
1970# of the VM are not saved by this command.
1971#
1972# @filename: the file to save the state of the devices to as binary
1973# data. See xen-save-devices-state.txt for a description of the binary
1974# format.
1975#
1976# Returns: Nothing on success
Stefano Stabellinia7ae8352012-01-25 12:24:51 +00001977#
1978# Since: 1.1
1979##
1980{ 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} }
Luiz Capitulinoa15fef22012-03-29 12:38:50 -03001981
1982##
Anthony PERARD39f42432012-10-03 13:48:19 +00001983# @xen-set-global-dirty-log
1984#
1985# Enable or disable the global dirty log mode.
1986#
1987# @enable: true to enable, false to disable.
1988#
1989# Returns: nothing
1990#
1991# Since: 1.3
1992##
1993{ 'command': 'xen-set-global-dirty-log', 'data': { 'enable': 'bool' } }
1994
1995##
Luiz Capitulinoa15fef22012-03-29 12:38:50 -03001996# @device_del:
1997#
1998# Remove a device from a guest
1999#
Daniel P. Berrange6287d822015-09-11 13:33:56 +01002000# @id: the name or QOM path of the device
Luiz Capitulinoa15fef22012-03-29 12:38:50 -03002001#
2002# Returns: Nothing on success
2003# If @id is not a valid device, DeviceNotFound
Luiz Capitulinoa15fef22012-03-29 12:38:50 -03002004#
2005# Notes: When this command completes, the device may not be removed from the
2006# guest. Hot removal is an operation that requires guest cooperation.
2007# This command merely requests that the guest begin the hot removal
Michael S. Tsirkin0402a5d2013-03-06 14:58:59 +02002008# process. Completion of the device removal process is signaled with a
2009# DEVICE_DELETED event. Guest reset will automatically complete removal
2010# for all devices.
Luiz Capitulinoa15fef22012-03-29 12:38:50 -03002011#
2012# Since: 0.14.0
2013##
2014{ 'command': 'device_del', 'data': {'id': 'str'} }
Wen Congyang783e9b42012-05-07 12:10:47 +08002015
2016##
qiaonuohanb53ccc32014-02-18 14:11:36 +08002017# @DumpGuestMemoryFormat:
2018#
2019# An enumeration of guest-memory-dump's format.
2020#
2021# @elf: elf format
2022#
2023# @kdump-zlib: kdump-compressed format with zlib-compressed
2024#
2025# @kdump-lzo: kdump-compressed format with lzo-compressed
2026#
2027# @kdump-snappy: kdump-compressed format with snappy-compressed
2028#
2029# Since: 2.0
2030##
2031{ 'enum': 'DumpGuestMemoryFormat',
2032 'data': [ 'elf', 'kdump-zlib', 'kdump-lzo', 'kdump-snappy' ] }
2033
2034##
Wen Congyang783e9b42012-05-07 12:10:47 +08002035# @dump-guest-memory
2036#
2037# Dump guest's memory to vmcore. It is a synchronous operation that can take
2038# very long depending on the amount of guest memory. This command is only
Luiz Capitulinof5b0d932012-06-28 11:59:15 -03002039# supported on i386 and x86_64.
Wen Congyang783e9b42012-05-07 12:10:47 +08002040#
Luiz Capitulinof5b0d932012-06-28 11:59:15 -03002041# @paging: if true, do paging to get guest's memory mapping. This allows
Luiz Capitulinod6911802012-09-21 13:10:58 -03002042# using gdb to process the core file.
Luiz Capitulinof5b0d932012-06-28 11:59:15 -03002043#
Luiz Capitulinod6911802012-09-21 13:10:58 -03002044# IMPORTANT: this option can make QEMU allocate several gigabytes
2045# of RAM. This can happen for a large guest, or a
2046# malicious guest pretending to be large.
2047#
2048# Also, paging=true has the following limitations:
2049#
2050# 1. The guest may be in a catastrophic state or can have corrupted
2051# memory, which cannot be trusted
2052# 2. The guest can be in real-mode even if paging is enabled. For
2053# example, the guest uses ACPI to sleep, and ACPI sleep state
2054# goes in real-mode
Luiz Capitulinof5b0d932012-06-28 11:59:15 -03002055#
Wen Congyang783e9b42012-05-07 12:10:47 +08002056# @protocol: the filename or file descriptor of the vmcore. The supported
Luiz Capitulinod6911802012-09-21 13:10:58 -03002057# protocols are:
Luiz Capitulinof5b0d932012-06-28 11:59:15 -03002058#
Luiz Capitulinod6911802012-09-21 13:10:58 -03002059# 1. file: the protocol starts with "file:", and the following
2060# string is the file's path.
2061# 2. fd: the protocol starts with "fd:", and the following string
2062# is the fd's name.
Luiz Capitulinof5b0d932012-06-28 11:59:15 -03002063#
Wen Congyang783e9b42012-05-07 12:10:47 +08002064# @begin: #optional if specified, the starting physical address.
Luiz Capitulinof5b0d932012-06-28 11:59:15 -03002065#
Wen Congyang783e9b42012-05-07 12:10:47 +08002066# @length: #optional if specified, the memory size, in bytes. If you don't
Luiz Capitulinod6911802012-09-21 13:10:58 -03002067# want to dump all guest's memory, please specify the start @begin
2068# and @length
Wen Congyang783e9b42012-05-07 12:10:47 +08002069#
qiaonuohanb53ccc32014-02-18 14:11:36 +08002070# @format: #optional if specified, the format of guest memory dump. But non-elf
2071# format is conflict with paging and filter, ie. @paging, @begin and
2072# @length is not allowed to be specified with non-elf @format at the
2073# same time (since 2.0)
2074#
Wen Congyang783e9b42012-05-07 12:10:47 +08002075# Returns: nothing on success
Wen Congyang783e9b42012-05-07 12:10:47 +08002076#
2077# Since: 1.2
2078##
2079{ 'command': 'dump-guest-memory',
2080 'data': { 'paging': 'bool', 'protocol': 'str', '*begin': 'int',
qiaonuohanb53ccc32014-02-18 14:11:36 +08002081 '*length': 'int', '*format': 'DumpGuestMemoryFormat' } }
Luiz Capitulinod6911802012-09-21 13:10:58 -03002082
Luiz Capitulino928059a2012-04-18 17:34:15 -03002083##
qiaonuohan7d6dc7f2014-02-18 14:11:38 +08002084# @DumpGuestMemoryCapability:
2085#
2086# A list of the available formats for dump-guest-memory
2087#
2088# Since: 2.0
2089##
Eric Blake895a2a82015-05-04 09:05:27 -06002090{ 'struct': 'DumpGuestMemoryCapability',
qiaonuohan7d6dc7f2014-02-18 14:11:38 +08002091 'data': {
2092 'formats': ['DumpGuestMemoryFormat'] } }
2093
2094##
2095# @query-dump-guest-memory-capability:
2096#
2097# Returns the available formats for dump-guest-memory
2098#
2099# Returns: A @DumpGuestMemoryCapability object listing available formats for
2100# dump-guest-memory
2101#
2102# Since: 2.0
2103##
2104{ 'command': 'query-dump-guest-memory-capability',
2105 'returns': 'DumpGuestMemoryCapability' }
Luiz Capitulino928059a2012-04-18 17:34:15 -03002106
2107##
Jason J. Herne7ee0c3e2015-06-26 14:03:16 -04002108# @dump-skeys
2109#
2110# Dump guest's storage keys
2111#
2112# @filename: the path to the file to dump to
2113#
2114# This command is only supported on s390 architecture.
2115#
2116# Since: 2.5
2117##
2118{ 'command': 'dump-skeys',
2119 'data': { 'filename': 'str' } }
2120
2121##
Luiz Capitulino928059a2012-04-18 17:34:15 -03002122# @netdev_add:
2123#
2124# Add a network backend.
2125#
2126# @type: the type of network backend. Current valid values are 'user', 'tap',
2127# 'vde', 'socket', 'dump' and 'bridge'
2128#
2129# @id: the name of the new network backend
2130#
Markus Armbrusterb8a98322015-09-16 13:06:26 +02002131# Additional arguments depend on the type.
Luiz Capitulino928059a2012-04-18 17:34:15 -03002132#
Markus Armbrusterb8a98322015-09-16 13:06:26 +02002133# TODO This command effectively bypasses QAPI completely due to its
2134# "additional arguments" business. It shouldn't have been added to
2135# the schema in this form. It should be qapified properly, or
2136# replaced by a properly qapified command.
Luiz Capitulino928059a2012-04-18 17:34:15 -03002137#
2138# Since: 0.14.0
2139#
2140# Returns: Nothing on success
2141# If @type is not a valid network backend, DeviceNotFound
Luiz Capitulino928059a2012-04-18 17:34:15 -03002142##
2143{ 'command': 'netdev_add',
Markus Armbrusterb8a98322015-09-16 13:06:26 +02002144 'data': {'type': 'str', 'id': 'str'},
2145 'gen': false } # so we can get the additional arguments
Luiz Capitulino5f964152012-04-16 14:36:32 -03002146
2147##
2148# @netdev_del:
2149#
2150# Remove a network backend.
2151#
2152# @id: the name of the network backend to remove
2153#
2154# Returns: Nothing on success
2155# If @id is not a valid network backend, DeviceNotFound
2156#
2157# Since: 0.14.0
2158##
2159{ 'command': 'netdev_del', 'data': {'id': 'str'} }
Corey Bryant208c9d12012-06-22 14:36:09 -04002160
2161##
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +01002162# @object-add:
2163#
2164# Create a QOM object.
2165#
2166# @qom-type: the class name for the object to be created
2167#
2168# @id: the name of the new object
2169#
2170# @props: #optional a dictionary of properties to be passed to the backend
2171#
2172# Returns: Nothing on success
2173# Error if @qom-type is not a valid class name
2174#
2175# Since: 2.0
2176##
2177{ 'command': 'object-add',
Markus Armbruster6eb39372015-09-16 13:06:25 +02002178 'data': {'qom-type': 'str', 'id': 'str', '*props': 'any'} }
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +01002179
2180##
Paolo Bonziniab2d0532013-12-20 23:21:09 +01002181# @object-del:
2182#
2183# Remove a QOM object.
2184#
2185# @id: the name of the QOM object to remove
2186#
2187# Returns: Nothing on success
2188# Error if @id is not a valid id for a QOM object
2189#
2190# Since: 2.0
2191##
2192{ 'command': 'object-del', 'data': {'id': 'str'} }
2193
2194##
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002195# @NetdevNoneOptions
2196#
2197# Use it alone to have zero network devices.
2198#
2199# Since 1.2
2200##
Eric Blake895a2a82015-05-04 09:05:27 -06002201{ 'struct': 'NetdevNoneOptions',
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002202 'data': { } }
2203
2204##
2205# @NetLegacyNicOptions
2206#
2207# Create a new Network Interface Card.
2208#
2209# @netdev: #optional id of -netdev to connect to
2210#
2211# @macaddr: #optional MAC address
2212#
2213# @model: #optional device model (e1000, rtl8139, virtio etc.)
2214#
2215# @addr: #optional PCI device address
2216#
2217# @vectors: #optional number of MSI-x vectors, 0 to disable MSI-X
2218#
2219# Since 1.2
2220##
Eric Blake895a2a82015-05-04 09:05:27 -06002221{ 'struct': 'NetLegacyNicOptions',
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002222 'data': {
2223 '*netdev': 'str',
2224 '*macaddr': 'str',
2225 '*model': 'str',
2226 '*addr': 'str',
2227 '*vectors': 'uint32' } }
2228
2229##
2230# @String
2231#
2232# A fat type wrapping 'str', to be embedded in lists.
2233#
2234# Since 1.2
2235##
Eric Blake895a2a82015-05-04 09:05:27 -06002236{ 'struct': 'String',
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002237 'data': {
2238 'str': 'str' } }
2239
2240##
2241# @NetdevUserOptions
2242#
2243# Use the user mode network stack which requires no administrator privilege to
2244# run.
2245#
2246# @hostname: #optional client hostname reported by the builtin DHCP server
2247#
2248# @restrict: #optional isolate the guest from the host
2249#
2250# @ip: #optional legacy parameter, use net= instead
2251#
2252# @net: #optional IP address and optional netmask
2253#
2254# @host: #optional guest-visible address of the host
2255#
2256# @tftp: #optional root directory of the built-in TFTP server
2257#
2258# @bootfile: #optional BOOTP filename, for use with tftp=
2259#
2260# @dhcpstart: #optional the first of the 16 IPs the built-in DHCP server can
2261# assign
2262#
2263# @dns: #optional guest-visible address of the virtual nameserver
2264#
Klaus Stengel63d29602012-10-27 19:53:39 +02002265# @dnssearch: #optional list of DNS suffixes to search, passed as DHCP option
2266# to the guest
2267#
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002268# @smb: #optional root directory of the built-in SMB server
2269#
2270# @smbserver: #optional IP address of the built-in SMB server
2271#
2272# @hostfwd: #optional redirect incoming TCP or UDP host connections to guest
2273# endpoints
2274#
2275# @guestfwd: #optional forward guest TCP connections
2276#
2277# Since 1.2
2278##
Eric Blake895a2a82015-05-04 09:05:27 -06002279{ 'struct': 'NetdevUserOptions',
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002280 'data': {
2281 '*hostname': 'str',
2282 '*restrict': 'bool',
2283 '*ip': 'str',
2284 '*net': 'str',
2285 '*host': 'str',
2286 '*tftp': 'str',
2287 '*bootfile': 'str',
2288 '*dhcpstart': 'str',
2289 '*dns': 'str',
Klaus Stengel63d29602012-10-27 19:53:39 +02002290 '*dnssearch': ['String'],
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002291 '*smb': 'str',
2292 '*smbserver': 'str',
2293 '*hostfwd': ['String'],
2294 '*guestfwd': ['String'] } }
2295
2296##
2297# @NetdevTapOptions
2298#
2299# Connect the host TAP network interface name to the VLAN.
2300#
2301# @ifname: #optional interface name
2302#
2303# @fd: #optional file descriptor of an already opened tap
2304#
Jason Wang2ca81ba2013-02-20 18:04:01 +08002305# @fds: #optional multiple file descriptors of already opened multiqueue capable
2306# tap
2307#
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002308# @script: #optional script to initialize the interface
2309#
2310# @downscript: #optional script to shut down the interface
2311#
2312# @helper: #optional command to execute to configure bridge
2313#
2314# @sndbuf: #optional send buffer limit. Understands [TGMKkb] suffixes.
2315#
2316# @vnet_hdr: #optional enable the IFF_VNET_HDR flag on the tap interface
2317#
2318# @vhost: #optional enable vhost-net network accelerator
2319#
2320# @vhostfd: #optional file descriptor of an already opened vhost net device
2321#
Jason Wang2ca81ba2013-02-20 18:04:01 +08002322# @vhostfds: #optional file descriptors of multiple already opened vhost net
2323# devices
2324#
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002325# @vhostforce: #optional vhost on for non-MSIX virtio guests
2326#
Jason Wangec396012013-02-22 22:57:52 +08002327# @queues: #optional number of queues to be created for multiqueue capable tap
2328#
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002329# Since 1.2
2330##
Eric Blake895a2a82015-05-04 09:05:27 -06002331{ 'struct': 'NetdevTapOptions',
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002332 'data': {
2333 '*ifname': 'str',
2334 '*fd': 'str',
Jason Wang264986e2013-01-30 19:12:34 +08002335 '*fds': 'str',
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002336 '*script': 'str',
2337 '*downscript': 'str',
2338 '*helper': 'str',
2339 '*sndbuf': 'size',
2340 '*vnet_hdr': 'bool',
2341 '*vhost': 'bool',
2342 '*vhostfd': 'str',
Jason Wang264986e2013-01-30 19:12:34 +08002343 '*vhostfds': 'str',
2344 '*vhostforce': 'bool',
2345 '*queues': 'uint32'} }
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002346
2347##
2348# @NetdevSocketOptions
2349#
2350# Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP
2351# socket connection.
2352#
2353# @fd: #optional file descriptor of an already opened socket
2354#
2355# @listen: #optional port number, and optional hostname, to listen on
2356#
2357# @connect: #optional port number, and optional hostname, to connect to
2358#
2359# @mcast: #optional UDP multicast address and port number
2360#
2361# @localaddr: #optional source address and port for multicast and udp packets
2362#
2363# @udp: #optional UDP unicast address and port number
2364#
2365# Since 1.2
2366##
Eric Blake895a2a82015-05-04 09:05:27 -06002367{ 'struct': 'NetdevSocketOptions',
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002368 'data': {
2369 '*fd': 'str',
2370 '*listen': 'str',
2371 '*connect': 'str',
2372 '*mcast': 'str',
2373 '*localaddr': 'str',
2374 '*udp': 'str' } }
2375
2376##
Anton Ivanov3fb69aa2014-06-20 10:34:41 +01002377# @NetdevL2TPv3Options
2378#
2379# Connect the VLAN to Ethernet over L2TPv3 Static tunnel
2380#
2381# @src: source address
2382#
2383# @dst: destination address
2384#
2385# @srcport: #optional source port - mandatory for udp, optional for ip
2386#
2387# @dstport: #optional destination port - mandatory for udp, optional for ip
2388#
2389# @ipv6: #optional - force the use of ipv6
2390#
2391# @udp: #optional - use the udp version of l2tpv3 encapsulation
2392#
2393# @cookie64: #optional - use 64 bit coookies
2394#
2395# @counter: #optional have sequence counter
2396#
2397# @pincounter: #optional pin sequence counter to zero -
2398# workaround for buggy implementations or
2399# networks with packet reorder
2400#
2401# @txcookie: #optional 32 or 64 bit transmit cookie
2402#
2403# @rxcookie: #optional 32 or 64 bit receive cookie
2404#
2405# @txsession: 32 bit transmit session
2406#
2407# @rxsession: #optional 32 bit receive session - if not specified
2408# set to the same value as transmit
2409#
2410# @offset: #optional additional offset - allows the insertion of
2411# additional application-specific data before the packet payload
2412#
2413# Since 2.1
2414##
Eric Blake895a2a82015-05-04 09:05:27 -06002415{ 'struct': 'NetdevL2TPv3Options',
Anton Ivanov3fb69aa2014-06-20 10:34:41 +01002416 'data': {
2417 'src': 'str',
2418 'dst': 'str',
2419 '*srcport': 'str',
2420 '*dstport': 'str',
2421 '*ipv6': 'bool',
2422 '*udp': 'bool',
2423 '*cookie64': 'bool',
2424 '*counter': 'bool',
2425 '*pincounter': 'bool',
2426 '*txcookie': 'uint64',
2427 '*rxcookie': 'uint64',
2428 'txsession': 'uint32',
2429 '*rxsession': 'uint32',
2430 '*offset': 'uint32' } }
2431
2432##
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002433# @NetdevVdeOptions
2434#
2435# Connect the VLAN to a vde switch running on the host.
2436#
2437# @sock: #optional socket path
2438#
2439# @port: #optional port number
2440#
2441# @group: #optional group owner of socket
2442#
2443# @mode: #optional permissions for socket
2444#
2445# Since 1.2
2446##
Eric Blake895a2a82015-05-04 09:05:27 -06002447{ 'struct': 'NetdevVdeOptions',
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002448 'data': {
2449 '*sock': 'str',
2450 '*port': 'uint16',
2451 '*group': 'str',
2452 '*mode': 'uint16' } }
2453
2454##
2455# @NetdevDumpOptions
2456#
2457# Dump VLAN network traffic to a file.
2458#
2459# @len: #optional per-packet size limit (64k default). Understands [TGMKkb]
2460# suffixes.
2461#
2462# @file: #optional dump file path (default is qemu-vlan0.pcap)
2463#
2464# Since 1.2
2465##
Eric Blake895a2a82015-05-04 09:05:27 -06002466{ 'struct': 'NetdevDumpOptions',
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002467 'data': {
2468 '*len': 'size',
2469 '*file': 'str' } }
2470
2471##
2472# @NetdevBridgeOptions
2473#
2474# Connect a host TAP network interface to a host bridge device.
2475#
2476# @br: #optional bridge name
2477#
2478# @helper: #optional command to execute to configure bridge
2479#
2480# Since 1.2
2481##
Eric Blake895a2a82015-05-04 09:05:27 -06002482{ 'struct': 'NetdevBridgeOptions',
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002483 'data': {
2484 '*br': 'str',
2485 '*helper': 'str' } }
2486
2487##
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +01002488# @NetdevHubPortOptions
2489#
2490# Connect two or more net clients through a software hub.
2491#
2492# @hubid: hub identifier number
2493#
2494# Since 1.2
2495##
Eric Blake895a2a82015-05-04 09:05:27 -06002496{ 'struct': 'NetdevHubPortOptions',
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +01002497 'data': {
2498 'hubid': 'int32' } }
2499
2500##
Vincenzo Maffione58952132013-11-06 11:44:06 +01002501# @NetdevNetmapOptions
2502#
2503# Connect a client to a netmap-enabled NIC or to a VALE switch port
2504#
2505# @ifname: Either the name of an existing network interface supported by
2506# netmap, or the name of a VALE port (created on the fly).
2507# A VALE port name is in the form 'valeXXX:YYY', where XXX and
2508# YYY are non-negative integers. XXX identifies a switch and
2509# YYY identifies a port of the switch. VALE ports having the
2510# same XXX are therefore connected to the same switch.
2511#
2512# @devname: #optional path of the netmap device (default: '/dev/netmap').
2513#
Stefan Hajnoczic27de2a2013-12-11 09:49:14 +01002514# Since 2.0
Vincenzo Maffione58952132013-11-06 11:44:06 +01002515##
Eric Blake895a2a82015-05-04 09:05:27 -06002516{ 'struct': 'NetdevNetmapOptions',
Vincenzo Maffione58952132013-11-06 11:44:06 +01002517 'data': {
2518 'ifname': 'str',
2519 '*devname': 'str' } }
2520
2521##
Nikolay Nikolaev03ce5742014-06-10 13:02:16 +03002522# @NetdevVhostUserOptions
2523#
2524# Vhost-user network backend
2525#
2526# @chardev: name of a unix socket chardev
2527#
2528# @vhostforce: #optional vhost on for non-MSIX virtio guests (default: false).
2529#
Changchun Ouyangb931bfb2015-09-23 12:20:00 +08002530# @queues: #optional number of queues to be created for multiqueue vhost-user
2531# (default: 1) (Since 2.5)
2532#
Nikolay Nikolaev03ce5742014-06-10 13:02:16 +03002533# Since 2.1
2534##
Eric Blake895a2a82015-05-04 09:05:27 -06002535{ 'struct': 'NetdevVhostUserOptions',
Nikolay Nikolaev03ce5742014-06-10 13:02:16 +03002536 'data': {
2537 'chardev': 'str',
Changchun Ouyangb931bfb2015-09-23 12:20:00 +08002538 '*vhostforce': 'bool',
2539 '*queues': 'int' } }
Nikolay Nikolaev03ce5742014-06-10 13:02:16 +03002540
2541##
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002542# @NetClientOptions
2543#
2544# A discriminated record of network device traits.
2545#
2546# Since 1.2
Anton Ivanov3fb69aa2014-06-20 10:34:41 +01002547#
2548# 'l2tpv3' - since 2.1
2549#
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002550##
2551{ 'union': 'NetClientOptions',
2552 'data': {
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +01002553 'none': 'NetdevNoneOptions',
2554 'nic': 'NetLegacyNicOptions',
2555 'user': 'NetdevUserOptions',
2556 'tap': 'NetdevTapOptions',
Anton Ivanov3fb69aa2014-06-20 10:34:41 +01002557 'l2tpv3': 'NetdevL2TPv3Options',
Stefan Hajnoczif6c874e2012-07-24 16:35:04 +01002558 'socket': 'NetdevSocketOptions',
2559 'vde': 'NetdevVdeOptions',
2560 'dump': 'NetdevDumpOptions',
2561 'bridge': 'NetdevBridgeOptions',
Vincenzo Maffione58952132013-11-06 11:44:06 +01002562 'hubport': 'NetdevHubPortOptions',
Nikolay Nikolaev03ce5742014-06-10 13:02:16 +03002563 'netmap': 'NetdevNetmapOptions',
2564 'vhost-user': 'NetdevVhostUserOptions' } }
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002565
2566##
2567# @NetLegacy
2568#
2569# Captures the configuration of a network device; legacy.
2570#
2571# @vlan: #optional vlan number
2572#
2573# @id: #optional identifier for monitor commands
2574#
2575# @name: #optional identifier for monitor commands, ignored if @id is present
2576#
2577# @opts: device type specific properties (legacy)
2578#
2579# Since 1.2
2580##
Eric Blake895a2a82015-05-04 09:05:27 -06002581{ 'struct': 'NetLegacy',
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002582 'data': {
2583 '*vlan': 'int32',
2584 '*id': 'str',
2585 '*name': 'str',
2586 'opts': 'NetClientOptions' } }
2587
2588##
2589# @Netdev
2590#
2591# Captures the configuration of a network device.
2592#
2593# @id: identifier for monitor commands.
2594#
2595# @opts: device type specific properties
2596#
2597# Since 1.2
2598##
Eric Blake895a2a82015-05-04 09:05:27 -06002599{ 'struct': 'Netdev',
Laszlo Ersek14aa0c22012-07-17 16:17:11 +02002600 'data': {
2601 'id': 'str',
2602 'opts': 'NetClientOptions' } }
2603
2604##
Yang Hongyangfdccce42015-10-07 11:52:14 +08002605# @NetFilterDirection
2606#
2607# Indicates whether a netfilter is attached to a netdev's transmit queue or
2608# receive queue or both.
2609#
2610# @all: the filter is attached both to the receive and the transmit
2611# queue of the netdev (default).
2612#
2613# @rx: the filter is attached to the receive queue of the netdev,
2614# where it will receive packets sent to the netdev.
2615#
2616# @tx: the filter is attached to the transmit queue of the netdev,
2617# where it will receive packets sent by the netdev.
2618#
2619# Since 2.5
2620##
2621{ 'enum': 'NetFilterDirection',
2622 'data': [ 'all', 'rx', 'tx' ] }
2623
2624##
Paolo Bonzini5be8c752012-09-19 14:03:35 +02002625# @InetSocketAddress
2626#
2627# Captures a socket address or address range in the Internet namespace.
2628#
2629# @host: host part of the address
2630#
Daniel P. Berrange2ea17932015-10-22 11:25:43 +01002631# @port: port part of the address, or lowest port if @to is present
Paolo Bonzini5be8c752012-09-19 14:03:35 +02002632#
2633# @to: highest port to try
2634#
2635# @ipv4: whether to accept IPv4 addresses, default try both IPv4 and IPv6
2636# #optional
2637#
2638# @ipv6: whether to accept IPv6 addresses, default try both IPv4 and IPv6
2639# #optional
2640#
2641# Since 1.3
2642##
Eric Blake895a2a82015-05-04 09:05:27 -06002643{ 'struct': 'InetSocketAddress',
Paolo Bonzini5be8c752012-09-19 14:03:35 +02002644 'data': {
2645 'host': 'str',
Daniel P. Berrange2ea17932015-10-22 11:25:43 +01002646 'port': 'str',
Paolo Bonzini5be8c752012-09-19 14:03:35 +02002647 '*to': 'uint16',
2648 '*ipv4': 'bool',
2649 '*ipv6': 'bool' } }
2650
2651##
2652# @UnixSocketAddress
2653#
2654# Captures a socket address in the local ("Unix socket") namespace.
2655#
2656# @path: filesystem path to use
2657#
2658# Since 1.3
2659##
Eric Blake895a2a82015-05-04 09:05:27 -06002660{ 'struct': 'UnixSocketAddress',
Paolo Bonzini5be8c752012-09-19 14:03:35 +02002661 'data': {
2662 'path': 'str' } }
2663
2664##
2665# @SocketAddress
2666#
2667# Captures the address of a socket, which could also be a named file descriptor
2668#
2669# Since 1.3
2670##
2671{ 'union': 'SocketAddress',
2672 'data': {
2673 'inet': 'InetSocketAddress',
2674 'unix': 'UnixSocketAddress',
2675 'fd': 'String' } }
2676
2677##
Corey Bryant208c9d12012-06-22 14:36:09 -04002678# @getfd:
2679#
2680# Receive a file descriptor via SCM rights and assign it a name
2681#
2682# @fdname: file descriptor name
2683#
2684# Returns: Nothing on success
Corey Bryant208c9d12012-06-22 14:36:09 -04002685#
2686# Since: 0.14.0
2687#
2688# Notes: If @fdname already exists, the file descriptor assigned to
2689# it will be closed and replaced by the received file
2690# descriptor.
2691# The 'closefd' command can be used to explicitly close the
2692# file descriptor when it is no longer needed.
2693##
2694{ 'command': 'getfd', 'data': {'fdname': 'str'} }
2695
2696##
2697# @closefd:
2698#
2699# Close a file descriptor previously passed via SCM rights
2700#
2701# @fdname: file descriptor name
2702#
2703# Returns: Nothing on success
Corey Bryant208c9d12012-06-22 14:36:09 -04002704#
2705# Since: 0.14.0
2706##
2707{ 'command': 'closefd', 'data': {'fdname': 'str'} }
Anthony Liguori01d3c802012-08-10 11:04:11 -05002708
2709##
2710# @MachineInfo:
2711#
2712# Information describing a machine.
2713#
2714# @name: the name of the machine
2715#
2716# @alias: #optional an alias for the machine name
2717#
2718# @default: #optional whether the machine is default
2719#
Michal Novotnyc72e7682013-04-08 18:21:02 +02002720# @cpu-max: maximum number of CPUs supported by the machine type
2721# (since 1.5.0)
2722#
Anthony Liguori01d3c802012-08-10 11:04:11 -05002723# Since: 1.2.0
2724##
Eric Blake895a2a82015-05-04 09:05:27 -06002725{ 'struct': 'MachineInfo',
Anthony Liguori01d3c802012-08-10 11:04:11 -05002726 'data': { 'name': 'str', '*alias': 'str',
Michal Novotnyc72e7682013-04-08 18:21:02 +02002727 '*is-default': 'bool', 'cpu-max': 'int' } }
Anthony Liguori01d3c802012-08-10 11:04:11 -05002728
2729##
2730# @query-machines:
2731#
2732# Return a list of supported machines
2733#
2734# Returns: a list of MachineInfo
2735#
2736# Since: 1.2.0
2737##
2738{ 'command': 'query-machines', 'returns': ['MachineInfo'] }
Anthony Liguorie4e31c62012-08-10 11:04:13 -05002739
2740##
2741# @CpuDefinitionInfo:
2742#
2743# Virtual CPU definition.
2744#
2745# @name: the name of the CPU definition
2746#
2747# Since: 1.2.0
2748##
Eric Blake895a2a82015-05-04 09:05:27 -06002749{ 'struct': 'CpuDefinitionInfo',
Anthony Liguorie4e31c62012-08-10 11:04:13 -05002750 'data': { 'name': 'str' } }
2751
2752##
2753# @query-cpu-definitions:
2754#
2755# Return a list of supported virtual CPU definitions
2756#
2757# Returns: a list of CpuDefInfo
2758#
2759# Since: 1.2.0
2760##
2761{ 'command': 'query-cpu-definitions', 'returns': ['CpuDefinitionInfo'] }
Corey Bryantba1c0482012-08-14 16:43:43 -04002762
2763# @AddfdInfo:
2764#
2765# Information about a file descriptor that was added to an fd set.
2766#
2767# @fdset-id: The ID of the fd set that @fd was added to.
2768#
2769# @fd: The file descriptor that was received via SCM rights and
2770# added to the fd set.
2771#
2772# Since: 1.2.0
2773##
Eric Blake895a2a82015-05-04 09:05:27 -06002774{ 'struct': 'AddfdInfo', 'data': {'fdset-id': 'int', 'fd': 'int'} }
Corey Bryantba1c0482012-08-14 16:43:43 -04002775
2776##
2777# @add-fd:
2778#
2779# Add a file descriptor, that was passed via SCM rights, to an fd set.
2780#
2781# @fdset-id: #optional The ID of the fd set to add the file descriptor to.
2782#
2783# @opaque: #optional A free-form string that can be used to describe the fd.
2784#
2785# Returns: @AddfdInfo on success
2786# If file descriptor was not received, FdNotSupplied
Corey Bryant9ac54af2012-10-18 15:19:31 -04002787# If @fdset-id is a negative value, InvalidParameterValue
Corey Bryantba1c0482012-08-14 16:43:43 -04002788#
2789# Notes: The list of fd sets is shared by all monitor connections.
2790#
2791# If @fdset-id is not specified, a new fd set will be created.
2792#
2793# Since: 1.2.0
2794##
2795{ 'command': 'add-fd', 'data': {'*fdset-id': 'int', '*opaque': 'str'},
2796 'returns': 'AddfdInfo' }
2797
2798##
2799# @remove-fd:
2800#
2801# Remove a file descriptor from an fd set.
2802#
2803# @fdset-id: The ID of the fd set that the file descriptor belongs to.
2804#
2805# @fd: #optional The file descriptor that is to be removed.
2806#
2807# Returns: Nothing on success
2808# If @fdset-id or @fd is not found, FdNotFound
2809#
2810# Since: 1.2.0
2811#
2812# Notes: The list of fd sets is shared by all monitor connections.
2813#
2814# If @fd is not specified, all file descriptors in @fdset-id
2815# will be removed.
2816##
2817{ 'command': 'remove-fd', 'data': {'fdset-id': 'int', '*fd': 'int'} }
2818
2819##
2820# @FdsetFdInfo:
2821#
2822# Information about a file descriptor that belongs to an fd set.
2823#
2824# @fd: The file descriptor value.
2825#
2826# @opaque: #optional A free-form string that can be used to describe the fd.
2827#
2828# Since: 1.2.0
2829##
Eric Blake895a2a82015-05-04 09:05:27 -06002830{ 'struct': 'FdsetFdInfo',
Corey Bryantba1c0482012-08-14 16:43:43 -04002831 'data': {'fd': 'int', '*opaque': 'str'} }
2832
2833##
2834# @FdsetInfo:
2835#
2836# Information about an fd set.
2837#
2838# @fdset-id: The ID of the fd set.
2839#
2840# @fds: A list of file descriptors that belong to this fd set.
2841#
2842# Since: 1.2.0
2843##
Eric Blake895a2a82015-05-04 09:05:27 -06002844{ 'struct': 'FdsetInfo',
Corey Bryantba1c0482012-08-14 16:43:43 -04002845 'data': {'fdset-id': 'int', 'fds': ['FdsetFdInfo']} }
2846
2847##
2848# @query-fdsets:
2849#
2850# Return information describing all fd sets.
2851#
2852# Returns: A list of @FdsetInfo
2853#
2854# Since: 1.2.0
2855#
2856# Note: The list of fd sets is shared by all monitor connections.
2857#
2858##
2859{ 'command': 'query-fdsets', 'returns': ['FdsetInfo'] }
Daniel P. Berrange99afc912012-08-20 15:31:38 +01002860
2861##
Daniel P. Berrange99afc912012-08-20 15:31:38 +01002862# @TargetInfo:
2863#
2864# Information describing the QEMU target.
2865#
2866# @arch: the target architecture (eg "x86_64", "i386", etc)
2867#
2868# Since: 1.2.0
2869##
Eric Blake895a2a82015-05-04 09:05:27 -06002870{ 'struct': 'TargetInfo',
Paolo Bonzinic02a9552013-06-04 14:45:28 +02002871 'data': { 'arch': 'str' } }
Daniel P. Berrange99afc912012-08-20 15:31:38 +01002872
2873##
2874# @query-target:
2875#
2876# Return information about the target for this QEMU
2877#
2878# Returns: TargetInfo
2879#
2880# Since: 1.2.0
2881##
2882{ 'command': 'query-target', 'returns': 'TargetInfo' }
Amos Kong411656f2012-08-31 10:56:24 +08002883
2884##
2885# @QKeyCode:
2886#
2887# An enumeration of key name.
2888#
2889# This is used by the send-key command.
2890#
2891# Since: 1.3.0
Gerd Hoffmannbbd1b1c2013-12-13 12:10:14 +01002892#
Gerd Hoffmann8b6b0c52013-12-16 10:34:53 +01002893# 'unmapped' and 'pause' since 2.0
Gerd Hoffmannb771f472015-05-26 10:39:10 +02002894# 'ro' and 'kp_comma' since 2.4
Amos Kong411656f2012-08-31 10:56:24 +08002895##
2896{ 'enum': 'QKeyCode',
Gerd Hoffmannbbd1b1c2013-12-13 12:10:14 +01002897 'data': [ 'unmapped',
2898 'shift', 'shift_r', 'alt', 'alt_r', 'altgr', 'altgr_r', 'ctrl',
Amos Kong411656f2012-08-31 10:56:24 +08002899 'ctrl_r', 'menu', 'esc', '1', '2', '3', '4', '5', '6', '7', '8',
2900 '9', '0', 'minus', 'equal', 'backspace', 'tab', 'q', 'w', 'e',
2901 'r', 't', 'y', 'u', 'i', 'o', 'p', 'bracket_left', 'bracket_right',
2902 'ret', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'semicolon',
2903 'apostrophe', 'grave_accent', 'backslash', 'z', 'x', 'c', 'v', 'b',
2904 'n', 'm', 'comma', 'dot', 'slash', 'asterisk', 'spc', 'caps_lock',
2905 'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'f10',
2906 'num_lock', 'scroll_lock', 'kp_divide', 'kp_multiply',
2907 'kp_subtract', 'kp_add', 'kp_enter', 'kp_decimal', 'sysrq', 'kp_0',
2908 'kp_1', 'kp_2', 'kp_3', 'kp_4', 'kp_5', 'kp_6', 'kp_7', 'kp_8',
2909 'kp_9', 'less', 'f11', 'f12', 'print', 'home', 'pgup', 'pgdn', 'end',
2910 'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again',
2911 'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut',
Gerd Hoffmannb771f472015-05-26 10:39:10 +02002912 'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause', 'ro',
2913 'kp_comma' ] }
Amos Konge4c8f002012-08-31 10:56:26 +08002914
2915##
Luiz Capitulino9f328972012-09-20 14:19:47 -03002916# @KeyValue
2917#
2918# Represents a keyboard key.
2919#
2920# Since: 1.3.0
2921##
2922{ 'union': 'KeyValue',
2923 'data': {
2924 'number': 'int',
2925 'qcode': 'QKeyCode' } }
2926
2927##
Amos Konge4c8f002012-08-31 10:56:26 +08002928# @send-key:
2929#
2930# Send keys to guest.
2931#
Luiz Capitulino9f328972012-09-20 14:19:47 -03002932# @keys: An array of @KeyValue elements. All @KeyValues in this array are
2933# simultaneously sent to the guest. A @KeyValue.number value is sent
2934# directly to the guest, while @KeyValue.qcode must be a valid
2935# @QKeyCode value
Amos Konge4c8f002012-08-31 10:56:26 +08002936#
2937# @hold-time: #optional time to delay key up events, milliseconds. Defaults
2938# to 100
2939#
2940# Returns: Nothing on success
2941# If key is unknown or redundant, InvalidParameter
2942#
2943# Since: 1.3.0
2944#
2945##
2946{ 'command': 'send-key',
Luiz Capitulino9f328972012-09-20 14:19:47 -03002947 'data': { 'keys': ['KeyValue'], '*hold-time': 'int' } }
Luiz Capitulinoad39cf62012-05-24 13:48:23 -03002948
2949##
2950# @screendump:
2951#
2952# Write a PPM of the VGA screen to a file.
2953#
2954# @filename: the path of a new PPM file to store the image
2955#
2956# Returns: Nothing on success
2957#
2958# Since: 0.14.0
2959##
2960{ 'command': 'screendump', 'data': {'filename': 'str'} }
Paolo Bonzini6dd844d2012-08-22 16:43:07 +02002961
2962##
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01002963# @ChardevFile:
2964#
2965# Configuration info for file chardevs.
2966#
2967# @in: #optional The name of the input file
2968# @out: The name of the output file
2969#
2970# Since: 1.4
2971##
Eric Blake895a2a82015-05-04 09:05:27 -06002972{ 'struct': 'ChardevFile', 'data': { '*in' : 'str',
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01002973 'out' : 'str' } }
2974
2975##
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01002976# @ChardevHostdev:
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01002977#
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01002978# Configuration info for device and pipe chardevs.
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01002979#
2980# @device: The name of the special file for the device,
2981# i.e. /dev/ttyS0 on Unix or COM1: on Windows
2982# @type: What kind of device this is.
2983#
2984# Since: 1.4
2985##
Eric Blake895a2a82015-05-04 09:05:27 -06002986{ 'struct': 'ChardevHostdev', 'data': { 'device' : 'str' } }
Gerd Hoffmannd59044e2012-12-19 13:50:29 +01002987
2988##
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002989# @ChardevSocket:
2990#
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01002991# Configuration info for (stream) socket chardevs.
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002992#
2993# @addr: socket address to listen on (server=true)
2994# or connect to (server=false)
2995# @server: #optional create server socket (default: true)
Gerd Hoffmannef993ba2013-06-24 08:39:50 +02002996# @wait: #optional wait for incoming connection on server
2997# sockets (default: false).
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01002998# @nodelay: #optional set TCP_NODELAY socket option (default: false)
Gerd Hoffmannef993ba2013-06-24 08:39:50 +02002999# @telnet: #optional enable telnet protocol on server
3000# sockets (default: false)
Corey Minyard5dd1f022014-10-02 11:17:37 -05003001# @reconnect: #optional For a client socket, if a socket is disconnected,
3002# then attempt a reconnect after the given number of seconds.
3003# Setting this to zero disables this function. (default: 0)
3004# (Since: 2.2)
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003005#
3006# Since: 1.4
3007##
Eric Blake895a2a82015-05-04 09:05:27 -06003008{ 'struct': 'ChardevSocket', 'data': { 'addr' : 'SocketAddress',
Corey Minyard5dd1f022014-10-02 11:17:37 -05003009 '*server' : 'bool',
3010 '*wait' : 'bool',
3011 '*nodelay' : 'bool',
3012 '*telnet' : 'bool',
3013 '*reconnect' : 'int' } }
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003014
3015##
Lei Li08d0ab32013-05-20 14:51:03 +08003016# @ChardevUdp:
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01003017#
3018# Configuration info for datagram socket chardevs.
3019#
3020# @remote: remote address
3021# @local: #optional local address
3022#
3023# Since: 1.5
3024##
Eric Blake895a2a82015-05-04 09:05:27 -06003025{ 'struct': 'ChardevUdp', 'data': { 'remote' : 'SocketAddress',
Lei Li08d0ab32013-05-20 14:51:03 +08003026 '*local' : 'SocketAddress' } }
Gerd Hoffmann3ecc0592013-02-27 14:10:47 +01003027
3028##
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003029# @ChardevMux:
3030#
3031# Configuration info for mux chardevs.
3032#
3033# @chardev: name of the base chardev.
3034#
3035# Since: 1.5
3036##
Eric Blake895a2a82015-05-04 09:05:27 -06003037{ 'struct': 'ChardevMux', 'data': { 'chardev' : 'str' } }
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003038
3039##
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003040# @ChardevStdio:
3041#
3042# Configuration info for stdio chardevs.
3043#
3044# @signal: #optional Allow signals (such as SIGINT triggered by ^C)
3045# be delivered to qemu. Default: true in -nographic mode,
3046# false otherwise.
3047#
3048# Since: 1.5
3049##
Eric Blake895a2a82015-05-04 09:05:27 -06003050{ 'struct': 'ChardevStdio', 'data': { '*signal' : 'bool' } }
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003051
3052##
Gerd Hoffmanncd153e22013-02-25 12:39:06 +01003053# @ChardevSpiceChannel:
3054#
3055# Configuration info for spice vm channel chardevs.
3056#
3057# @type: kind of channel (for example vdagent).
3058#
3059# Since: 1.5
3060##
Eric Blake895a2a82015-05-04 09:05:27 -06003061{ 'struct': 'ChardevSpiceChannel', 'data': { 'type' : 'str' } }
Gerd Hoffmanncd153e22013-02-25 12:39:06 +01003062
3063##
3064# @ChardevSpicePort:
3065#
3066# Configuration info for spice port chardevs.
3067#
3068# @fqdn: name of the channel (see docs/spice-port-fqdn.txt)
3069#
3070# Since: 1.5
3071##
Eric Blake895a2a82015-05-04 09:05:27 -06003072{ 'struct': 'ChardevSpicePort', 'data': { 'fqdn' : 'str' } }
Gerd Hoffmanncd153e22013-02-25 12:39:06 +01003073
3074##
Gerd Hoffmann702ec692013-02-25 15:52:32 +01003075# @ChardevVC:
3076#
3077# Configuration info for virtual console chardevs.
3078#
3079# @width: console width, in pixels
3080# @height: console height, in pixels
3081# @cols: console width, in chars
3082# @rows: console height, in chars
3083#
3084# Since: 1.5
3085##
Eric Blake895a2a82015-05-04 09:05:27 -06003086{ 'struct': 'ChardevVC', 'data': { '*width' : 'int',
Gerd Hoffmann702ec692013-02-25 15:52:32 +01003087 '*height' : 'int',
3088 '*cols' : 'int',
3089 '*rows' : 'int' } }
3090
3091##
Markus Armbruster4f573782013-07-26 16:44:32 +02003092# @ChardevRingbuf:
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003093#
Markus Armbruster3a1da422013-07-26 16:44:34 +02003094# Configuration info for ring buffer chardevs.
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003095#
Markus Armbruster3a1da422013-07-26 16:44:34 +02003096# @size: #optional ring buffer size, must be power of two, default is 65536
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003097#
3098# Since: 1.5
3099##
Eric Blake895a2a82015-05-04 09:05:27 -06003100{ 'struct': 'ChardevRingbuf', 'data': { '*size' : 'int' } }
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003101
3102##
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003103# @ChardevBackend:
3104#
3105# Configuration info for the new chardev backend.
3106#
Paolo Bonzini56923992014-07-11 09:44:26 +02003107# Since: 1.4 (testdev since 2.2)
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003108##
Eric Blake895a2a82015-05-04 09:05:27 -06003109{ 'struct': 'ChardevDummy', 'data': { } }
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003110
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003111{ 'union': 'ChardevBackend', 'data': { 'file' : 'ChardevFile',
Markus Armbrusterd36b2b92013-02-13 15:54:16 +01003112 'serial' : 'ChardevHostdev',
3113 'parallel': 'ChardevHostdev',
Gerd Hoffmann548cbb32013-02-25 11:50:55 +01003114 'pipe' : 'ChardevHostdev',
Gerd Hoffmannf6bd5d62012-12-20 13:53:12 +01003115 'socket' : 'ChardevSocket',
Lei Li08d0ab32013-05-20 14:51:03 +08003116 'udp' : 'ChardevUdp',
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01003117 'pty' : 'ChardevDummy',
Gerd Hoffmannedb2fb32013-02-21 16:16:42 +01003118 'null' : 'ChardevDummy',
Gerd Hoffmannf5a51ca2013-02-21 11:58:44 +01003119 'mux' : 'ChardevMux',
Gerd Hoffmann2d572862013-02-21 12:56:10 +01003120 'msmouse': 'ChardevDummy',
Gerd Hoffmann7c358032013-02-21 12:34:58 +01003121 'braille': 'ChardevDummy',
Paolo Bonzini56923992014-07-11 09:44:26 +02003122 'testdev': 'ChardevDummy',
Gerd Hoffmannd9ac3742013-02-25 11:48:06 +01003123 'stdio' : 'ChardevStdio',
Gerd Hoffmanncd153e22013-02-25 12:39:06 +01003124 'console': 'ChardevDummy',
3125 'spicevmc' : 'ChardevSpiceChannel',
Gerd Hoffmann702ec692013-02-25 15:52:32 +01003126 'spiceport' : 'ChardevSpicePort',
Gerd Hoffmann1da48c62013-02-26 16:21:11 +01003127 'vc' : 'ChardevVC',
Markus Armbruster3a1da422013-07-26 16:44:34 +02003128 'ringbuf': 'ChardevRingbuf',
3129 # next one is just for compatibility
Markus Armbruster4f573782013-07-26 16:44:32 +02003130 'memory' : 'ChardevRingbuf' } }
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003131
3132##
3133# @ChardevReturn:
3134#
3135# Return info about the chardev backend just created.
3136#
Markus Armbruster58fa4322013-02-11 18:05:48 +01003137# @pty: #optional name of the slave pseudoterminal device, present if
3138# and only if a chardev of type 'pty' was created
3139#
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003140# Since: 1.4
3141##
Eric Blake895a2a82015-05-04 09:05:27 -06003142{ 'struct' : 'ChardevReturn', 'data': { '*pty' : 'str' } }
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003143
3144##
3145# @chardev-add:
3146#
Markus Armbruster58fa4322013-02-11 18:05:48 +01003147# Add a character device backend
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003148#
3149# @id: the chardev's ID, must be unique
3150# @backend: backend type and parameters
3151#
Markus Armbruster58fa4322013-02-11 18:05:48 +01003152# Returns: ChardevReturn.
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003153#
3154# Since: 1.4
3155##
3156{ 'command': 'chardev-add', 'data': {'id' : 'str',
3157 'backend' : 'ChardevBackend' },
3158 'returns': 'ChardevReturn' }
3159
3160##
3161# @chardev-remove:
3162#
Markus Armbruster58fa4322013-02-11 18:05:48 +01003163# Remove a character device backend
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003164#
3165# @id: the chardev's ID, must exist and not be in use
3166#
3167# Returns: Nothing on success
3168#
3169# Since: 1.4
3170##
3171{ 'command': 'chardev-remove', 'data': {'id': 'str'} }
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003172
3173##
3174# @TpmModel:
3175#
3176# An enumeration of TPM models
3177#
3178# @tpm-tis: TPM TIS model
3179#
3180# Since: 1.5
3181##
3182{ 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
3183
3184##
3185# @query-tpm-models:
3186#
3187# Return a list of supported TPM models
3188#
3189# Returns: a list of TpmModel
3190#
3191# Since: 1.5
3192##
3193{ 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
3194
3195##
3196# @TpmType:
3197#
3198# An enumeration of TPM types
3199#
3200# @passthrough: TPM passthrough type
3201#
3202# Since: 1.5
3203##
3204{ 'enum': 'TpmType', 'data': [ 'passthrough' ] }
3205
3206##
3207# @query-tpm-types:
3208#
3209# Return a list of supported TPM types
3210#
3211# Returns: a list of TpmType
3212#
3213# Since: 1.5
3214##
3215{ 'command': 'query-tpm-types', 'returns': ['TpmType'] }
3216
3217##
3218# @TPMPassthroughOptions:
3219#
3220# Information about the TPM passthrough type
3221#
3222# @path: #optional string describing the path used for accessing the TPM device
3223#
3224# @cancel-path: #optional string showing the TPM's sysfs cancel file
3225# for cancellation of TPM commands while they are executing
3226#
3227# Since: 1.5
3228##
Eric Blake895a2a82015-05-04 09:05:27 -06003229{ 'struct': 'TPMPassthroughOptions', 'data': { '*path' : 'str',
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003230 '*cancel-path' : 'str'} }
3231
3232##
3233# @TpmTypeOptions:
3234#
3235# A union referencing different TPM backend types' configuration options
3236#
Corey Bryant88ca7bc2013-03-20 12:34:48 -04003237# @passthrough: The configuration options for the TPM passthrough type
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003238#
3239# Since: 1.5
3240##
3241{ 'union': 'TpmTypeOptions',
Corey Bryant88ca7bc2013-03-20 12:34:48 -04003242 'data': { 'passthrough' : 'TPMPassthroughOptions' } }
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003243
3244##
3245# @TpmInfo:
3246#
3247# Information about the TPM
3248#
3249# @id: The Id of the TPM
3250#
3251# @model: The TPM frontend model
3252#
Corey Bryant88ca7bc2013-03-20 12:34:48 -04003253# @options: The TPM (backend) type configuration options
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003254#
3255# Since: 1.5
3256##
Eric Blake895a2a82015-05-04 09:05:27 -06003257{ 'struct': 'TPMInfo',
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003258 'data': {'id': 'str',
3259 'model': 'TpmModel',
Corey Bryant88ca7bc2013-03-20 12:34:48 -04003260 'options': 'TpmTypeOptions' } }
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003261
3262##
3263# @query-tpm:
3264#
3265# Return information about the TPM device
3266#
3267# Returns: @TPMInfo on success
3268#
3269# Since: 1.5
3270##
3271{ 'command': 'query-tpm', 'returns': ['TPMInfo'] }
Laszlo Ersek8ccbad52013-03-21 00:23:16 +01003272
3273##
3274# @AcpiTableOptions
3275#
3276# Specify an ACPI table on the command line to load.
3277#
3278# At most one of @file and @data can be specified. The list of files specified
3279# by any one of them is loaded and concatenated in order. If both are omitted,
3280# @data is implied.
3281#
3282# Other fields / optargs can be used to override fields of the generic ACPI
3283# table header; refer to the ACPI specification 5.0, section 5.2.6 System
3284# Description Table Header. If a header field is not overridden, then the
3285# corresponding value from the concatenated blob is used (in case of @file), or
3286# it is filled in with a hard-coded value (in case of @data).
3287#
3288# String fields are copied into the matching ACPI member from lowest address
3289# upwards, and silently truncated / NUL-padded to length.
3290#
3291# @sig: #optional table signature / identifier (4 bytes)
3292#
3293# @rev: #optional table revision number (dependent on signature, 1 byte)
3294#
3295# @oem_id: #optional OEM identifier (6 bytes)
3296#
3297# @oem_table_id: #optional OEM table identifier (8 bytes)
3298#
3299# @oem_rev: #optional OEM-supplied revision number (4 bytes)
3300#
3301# @asl_compiler_id: #optional identifier of the utility that created the table
3302# (4 bytes)
3303#
3304# @asl_compiler_rev: #optional revision number of the utility that created the
3305# table (4 bytes)
3306#
3307# @file: #optional colon (:) separated list of pathnames to load and
3308# concatenate as table data. The resultant binary blob is expected to
3309# have an ACPI table header. At least one file is required. This field
3310# excludes @data.
3311#
3312# @data: #optional colon (:) separated list of pathnames to load and
3313# concatenate as table data. The resultant binary blob must not have an
3314# ACPI table header. At least one file is required. This field excludes
3315# @file.
3316#
3317# Since 1.5
3318##
Eric Blake895a2a82015-05-04 09:05:27 -06003319{ 'struct': 'AcpiTableOptions',
Laszlo Ersek8ccbad52013-03-21 00:23:16 +01003320 'data': {
3321 '*sig': 'str',
3322 '*rev': 'uint8',
3323 '*oem_id': 'str',
3324 '*oem_table_id': 'str',
3325 '*oem_rev': 'uint32',
3326 '*asl_compiler_id': 'str',
3327 '*asl_compiler_rev': 'uint32',
3328 '*file': 'str',
3329 '*data': 'str' }}
Amos Kong1f8f9872013-04-25 17:50:35 +08003330
3331##
3332# @CommandLineParameterType:
3333#
3334# Possible types for an option parameter.
3335#
3336# @string: accepts a character string
3337#
3338# @boolean: accepts "on" or "off"
3339#
3340# @number: accepts a number
3341#
3342# @size: accepts a number followed by an optional suffix (K)ilo,
3343# (M)ega, (G)iga, (T)era
3344#
3345# Since 1.5
3346##
3347{ 'enum': 'CommandLineParameterType',
3348 'data': ['string', 'boolean', 'number', 'size'] }
3349
3350##
3351# @CommandLineParameterInfo:
3352#
3353# Details about a single parameter of a command line option.
3354#
3355# @name: parameter name
3356#
3357# @type: parameter @CommandLineParameterType
3358#
3359# @help: #optional human readable text string, not suitable for parsing.
3360#
Chunyan Liue36af942014-06-05 17:20:43 +08003361# @default: #optional default value string (since 2.1)
3362#
Amos Kong1f8f9872013-04-25 17:50:35 +08003363# Since 1.5
3364##
Eric Blake895a2a82015-05-04 09:05:27 -06003365{ 'struct': 'CommandLineParameterInfo',
Amos Kong1f8f9872013-04-25 17:50:35 +08003366 'data': { 'name': 'str',
3367 'type': 'CommandLineParameterType',
Chunyan Liue36af942014-06-05 17:20:43 +08003368 '*help': 'str',
3369 '*default': 'str' } }
Amos Kong1f8f9872013-04-25 17:50:35 +08003370
3371##
3372# @CommandLineOptionInfo:
3373#
3374# Details about a command line option, including its list of parameter details
3375#
3376# @option: option name
3377#
3378# @parameters: an array of @CommandLineParameterInfo
3379#
3380# Since 1.5
3381##
Eric Blake895a2a82015-05-04 09:05:27 -06003382{ 'struct': 'CommandLineOptionInfo',
Amos Kong1f8f9872013-04-25 17:50:35 +08003383 'data': { 'option': 'str', 'parameters': ['CommandLineParameterInfo'] } }
3384
3385##
3386# @query-command-line-options:
3387#
3388# Query command line option schema.
3389#
3390# @option: #optional option name
3391#
3392# Returns: list of @CommandLineOptionInfo for all options (or for the given
3393# @option). Returns an error if the given @option doesn't exist.
3394#
3395# Since 1.5
3396##
3397{'command': 'query-command-line-options', 'data': { '*option': 'str' },
3398 'returns': ['CommandLineOptionInfo'] }
Eduardo Habkost8e8aba52013-05-06 13:20:07 -03003399
3400##
3401# @X86CPURegister32
3402#
3403# A X86 32-bit register
3404#
3405# Since: 1.5
3406##
3407{ 'enum': 'X86CPURegister32',
3408 'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
3409
3410##
3411# @X86CPUFeatureWordInfo
3412#
3413# Information about a X86 CPU feature word
3414#
3415# @cpuid-input-eax: Input EAX value for CPUID instruction for that feature word
3416#
3417# @cpuid-input-ecx: #optional Input ECX value for CPUID instruction for that
3418# feature word
3419#
3420# @cpuid-register: Output register containing the feature bits
3421#
3422# @features: value of output register, containing the feature bits
3423#
3424# Since: 1.5
3425##
Eric Blake895a2a82015-05-04 09:05:27 -06003426{ 'struct': 'X86CPUFeatureWordInfo',
Eduardo Habkost8e8aba52013-05-06 13:20:07 -03003427 'data': { 'cpuid-input-eax': 'int',
3428 '*cpuid-input-ecx': 'int',
3429 'cpuid-register': 'X86CPURegister32',
3430 'features': 'int' } }
Amos Kongb1be4282013-06-14 15:45:52 +08003431
3432##
Eric Blake9f08c8e2015-10-12 22:22:28 -06003433# @DummyForceArrays
3434#
3435# Not used by QMP; hack to let us use X86CPUFeatureWordInfoList internally
3436#
3437# Since 2.5
3438##
3439{ 'struct': 'DummyForceArrays',
3440 'data': { 'unused': ['X86CPUFeatureWordInfo'] } }
3441
3442
3443##
Amos Kongb1be4282013-06-14 15:45:52 +08003444# @RxState:
3445#
3446# Packets receiving state
3447#
3448# @normal: filter assigned packets according to the mac-table
3449#
3450# @none: don't receive any assigned packet
3451#
3452# @all: receive all assigned packets
3453#
3454# Since: 1.6
3455##
3456{ 'enum': 'RxState', 'data': [ 'normal', 'none', 'all' ] }
3457
3458##
3459# @RxFilterInfo:
3460#
3461# Rx-filter information for a NIC.
3462#
3463# @name: net client name
3464#
3465# @promiscuous: whether promiscuous mode is enabled
3466#
3467# @multicast: multicast receive state
3468#
3469# @unicast: unicast receive state
3470#
Amos Kongf7bc8ef2014-03-26 08:19:43 +08003471# @vlan: vlan receive state (Since 2.0)
3472#
Amos Kongb1be4282013-06-14 15:45:52 +08003473# @broadcast-allowed: whether to receive broadcast
3474#
3475# @multicast-overflow: multicast table is overflowed or not
3476#
3477# @unicast-overflow: unicast table is overflowed or not
3478#
3479# @main-mac: the main macaddr string
3480#
3481# @vlan-table: a list of active vlan id
3482#
3483# @unicast-table: a list of unicast macaddr string
3484#
3485# @multicast-table: a list of multicast macaddr string
3486#
3487# Since 1.6
3488##
3489
Eric Blake895a2a82015-05-04 09:05:27 -06003490{ 'struct': 'RxFilterInfo',
Amos Kongb1be4282013-06-14 15:45:52 +08003491 'data': {
3492 'name': 'str',
3493 'promiscuous': 'bool',
3494 'multicast': 'RxState',
3495 'unicast': 'RxState',
Amos Kongf7bc8ef2014-03-26 08:19:43 +08003496 'vlan': 'RxState',
Amos Kongb1be4282013-06-14 15:45:52 +08003497 'broadcast-allowed': 'bool',
3498 'multicast-overflow': 'bool',
3499 'unicast-overflow': 'bool',
3500 'main-mac': 'str',
3501 'vlan-table': ['int'],
3502 'unicast-table': ['str'],
3503 'multicast-table': ['str'] }}
3504
3505##
3506# @query-rx-filter:
3507#
3508# Return rx-filter information for all NICs (or for the given NIC).
3509#
3510# @name: #optional net client name
3511#
3512# Returns: list of @RxFilterInfo for all NICs (or for the given NIC).
3513# Returns an error if the given @name doesn't exist, or given
3514# NIC doesn't support rx-filter querying, or given net client
3515# isn't a NIC.
3516#
3517# Since: 1.6
3518##
3519{ 'command': 'query-rx-filter', 'data': { '*name': 'str' },
3520 'returns': ['RxFilterInfo'] }
Kevin Wolfd26c9a12013-09-23 15:26:03 +02003521
Gerd Hoffmann031fa962013-11-27 09:08:40 +01003522##
3523# @InputButton
3524#
3525# Button of a pointer input device (mouse, tablet).
3526#
3527# Since: 2.0
3528##
3529{ 'enum' : 'InputButton',
3530 'data' : [ 'Left', 'Middle', 'Right', 'WheelUp', 'WheelDown' ] }
3531
3532##
3533# @InputButton
3534#
3535# Position axis of a pointer input device (mouse, tablet).
3536#
3537# Since: 2.0
3538##
3539{ 'enum' : 'InputAxis',
3540 'data' : [ 'X', 'Y' ] }
3541
3542##
3543# @InputKeyEvent
3544#
3545# Keyboard input event.
3546#
3547# @key: Which key this event is for.
3548# @down: True for key-down and false for key-up events.
3549#
3550# Since: 2.0
3551##
Eric Blake895a2a82015-05-04 09:05:27 -06003552{ 'struct' : 'InputKeyEvent',
Gerd Hoffmann031fa962013-11-27 09:08:40 +01003553 'data' : { 'key' : 'KeyValue',
3554 'down' : 'bool' } }
3555
3556##
3557# @InputBtnEvent
3558#
3559# Pointer button input event.
3560#
3561# @button: Which button this event is for.
3562# @down: True for key-down and false for key-up events.
3563#
3564# Since: 2.0
3565##
Eric Blake895a2a82015-05-04 09:05:27 -06003566{ 'struct' : 'InputBtnEvent',
Gerd Hoffmann031fa962013-11-27 09:08:40 +01003567 'data' : { 'button' : 'InputButton',
3568 'down' : 'bool' } }
3569
3570##
3571# @InputMoveEvent
3572#
3573# Pointer motion input event.
3574#
3575# @axis: Which axis is referenced by @value.
3576# @value: Pointer position. For absolute coordinates the
3577# valid range is 0 -> 0x7ffff
3578#
3579# Since: 2.0
3580##
Eric Blake895a2a82015-05-04 09:05:27 -06003581{ 'struct' : 'InputMoveEvent',
Gerd Hoffmann031fa962013-11-27 09:08:40 +01003582 'data' : { 'axis' : 'InputAxis',
3583 'value' : 'int' } }
3584
3585##
3586# @InputEvent
3587#
3588# Input event union.
3589#
Amos Kong935fb912014-11-07 12:41:24 +08003590# @key: Input event of Keyboard
3591# @btn: Input event of pointer buttons
3592# @rel: Input event of relative pointer motion
3593# @abs: Input event of absolute pointer motion
3594#
Gerd Hoffmann031fa962013-11-27 09:08:40 +01003595# Since: 2.0
3596##
3597{ 'union' : 'InputEvent',
3598 'data' : { 'key' : 'InputKeyEvent',
3599 'btn' : 'InputBtnEvent',
3600 'rel' : 'InputMoveEvent',
3601 'abs' : 'InputMoveEvent' } }
Wanlong Gao00421092014-05-14 17:43:08 +08003602
3603##
Gerd Hoffmanndf5b2ad2014-11-25 14:54:17 +01003604# @x-input-send-event
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003605#
3606# Send input event(s) to guest.
3607#
Amos Kong51fc4472014-11-07 12:41:25 +08003608# @console: #optional console to send event(s) to.
Gerd Hoffmann4083ae32014-11-21 10:25:57 +01003609# This parameter can be used to send the input event to
3610# specific input devices in case (a) multiple input devices
3611# of the same kind are added to the virtual machine and (b)
3612# you have configured input routing (see docs/multiseat.txt)
3613# for those input devices. If input routing is not
3614# configured this parameter has no effect.
3615# If @console is missing, only devices that aren't associated
3616# with a console are admissible.
3617# If @console is specified, it must exist, and both devices
3618# associated with that console and devices not associated with a
3619# console are admissible, but the former take precedence.
3620
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003621#
3622# @events: List of InputEvent union.
3623#
3624# Returns: Nothing on success.
3625#
3626# Since: 2.2
3627#
Gerd Hoffmanndf5b2ad2014-11-25 14:54:17 +01003628# Note: this command is experimental, and not a stable API.
3629#
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003630##
Gerd Hoffmanndf5b2ad2014-11-25 14:54:17 +01003631{ 'command': 'x-input-send-event',
Amos Kong51fc4472014-11-07 12:41:25 +08003632 'data': { '*console':'int', 'events': [ 'InputEvent' ] } }
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003633
3634##
Wanlong Gao00421092014-05-14 17:43:08 +08003635# @NumaOptions
3636#
3637# A discriminated record of NUMA options. (for OptsVisitor)
3638#
3639# Since 2.1
3640##
3641{ 'union': 'NumaOptions',
3642 'data': {
3643 'node': 'NumaNodeOptions' }}
3644
3645##
3646# @NumaNodeOptions
3647#
3648# Create a guest NUMA node. (for OptsVisitor)
3649#
3650# @nodeid: #optional NUMA node ID (increase by 1 from 0 if omitted)
3651#
3652# @cpus: #optional VCPUs belonging to this node (assign VCPUS round-robin
3653# if omitted)
3654#
Paolo Bonzini7febe362014-05-14 17:43:17 +08003655# @mem: #optional memory size of this node; mutually exclusive with @memdev.
3656# Equally divide total memory among nodes if both @mem and @memdev are
3657# omitted.
3658#
3659# @memdev: #optional memory backend object. If specified for one node,
3660# it must be specified for all nodes.
Wanlong Gao00421092014-05-14 17:43:08 +08003661#
3662# Since: 2.1
3663##
Eric Blake895a2a82015-05-04 09:05:27 -06003664{ 'struct': 'NumaNodeOptions',
Wanlong Gao00421092014-05-14 17:43:08 +08003665 'data': {
3666 '*nodeid': 'uint16',
3667 '*cpus': ['uint16'],
Paolo Bonzini7febe362014-05-14 17:43:17 +08003668 '*mem': 'size',
3669 '*memdev': 'str' }}
Hu Tao4cf1b762014-06-10 19:15:25 +08003670
3671##
3672# @HostMemPolicy
3673#
3674# Host memory policy types
3675#
3676# @default: restore default policy, remove any nondefault policy
3677#
3678# @preferred: set the preferred host nodes for allocation
3679#
3680# @bind: a strict policy that restricts memory allocation to the
3681# host nodes specified
3682#
3683# @interleave: memory allocations are interleaved across the set
3684# of host nodes specified
3685#
3686# Since 2.1
3687##
3688{ 'enum': 'HostMemPolicy',
3689 'data': [ 'default', 'preferred', 'bind', 'interleave' ] }
Hu Tao76b5d852014-06-16 18:05:41 +08003690
3691##
3692# @Memdev:
3693#
Igor Mammedov8f4e5ac2014-06-19 16:14:43 +02003694# Information about memory backend
Hu Tao76b5d852014-06-16 18:05:41 +08003695#
Igor Mammedov8f4e5ac2014-06-19 16:14:43 +02003696# @size: memory backend size
Hu Tao76b5d852014-06-16 18:05:41 +08003697#
3698# @merge: enables or disables memory merge support
3699#
Igor Mammedov8f4e5ac2014-06-19 16:14:43 +02003700# @dump: includes memory backend's memory in a core dump or not
Hu Tao76b5d852014-06-16 18:05:41 +08003701#
3702# @prealloc: enables or disables memory preallocation
3703#
3704# @host-nodes: host nodes for its memory policy
3705#
Igor Mammedov8f4e5ac2014-06-19 16:14:43 +02003706# @policy: memory policy of memory backend
Hu Tao76b5d852014-06-16 18:05:41 +08003707#
3708# Since: 2.1
3709##
3710
Eric Blake895a2a82015-05-04 09:05:27 -06003711{ 'struct': 'Memdev',
Hu Tao76b5d852014-06-16 18:05:41 +08003712 'data': {
3713 'size': 'size',
3714 'merge': 'bool',
3715 'dump': 'bool',
3716 'prealloc': 'bool',
3717 'host-nodes': ['uint16'],
3718 'policy': 'HostMemPolicy' }}
3719
3720##
3721# @query-memdev:
3722#
Igor Mammedov8f4e5ac2014-06-19 16:14:43 +02003723# Returns information for all memory backends.
Hu Tao76b5d852014-06-16 18:05:41 +08003724#
3725# Returns: a list of @Memdev.
3726#
3727# Since: 2.1
3728##
3729{ 'command': 'query-memdev', 'returns': ['Memdev'] }
Igor Mammedov8f4e5ac2014-06-19 16:14:43 +02003730
3731##
Igor Mammedov6f2e2732014-06-16 19:12:25 +02003732# @PCDIMMDeviceInfo:
3733#
3734# PCDIMMDevice state information
3735#
3736# @id: #optional device's ID
3737#
3738# @addr: physical address, where device is mapped
3739#
3740# @size: size of memory that the device provides
3741#
3742# @slot: slot number at which device is plugged in
3743#
3744# @node: NUMA node number where device is plugged in
3745#
3746# @memdev: memory backend linked with device
3747#
3748# @hotplugged: true if device was hotplugged
3749#
3750# @hotpluggable: true if device if could be added/removed while machine is running
3751#
3752# Since: 2.1
3753##
Eric Blake895a2a82015-05-04 09:05:27 -06003754{ 'struct': 'PCDIMMDeviceInfo',
Igor Mammedov6f2e2732014-06-16 19:12:25 +02003755 'data': { '*id': 'str',
3756 'addr': 'int',
3757 'size': 'int',
3758 'slot': 'int',
3759 'node': 'int',
3760 'memdev': 'str',
3761 'hotplugged': 'bool',
3762 'hotpluggable': 'bool'
3763 }
3764}
3765
3766##
3767# @MemoryDeviceInfo:
3768#
3769# Union containing information about a memory device
3770#
3771# Since: 2.1
3772##
3773{ 'union': 'MemoryDeviceInfo', 'data': {'dimm': 'PCDIMMDeviceInfo'} }
3774
3775##
3776# @query-memory-devices
3777#
3778# Lists available memory devices and their state
3779#
3780# Since: 2.1
3781##
3782{ 'command': 'query-memory-devices', 'returns': ['MemoryDeviceInfo'] }
Igor Mammedov521b3672014-06-16 19:12:26 +02003783
3784## @ACPISlotType
3785#
3786# @DIMM: memory slot
3787#
3788{ 'enum': 'ACPISlotType', 'data': [ 'DIMM' ] }
3789
3790## @ACPIOSTInfo
3791#
3792# OSPM Status Indication for a device
3793# For description of possible values of @source and @status fields
3794# see "_OST (OSPM Status Indication)" chapter of ACPI5.0 spec.
3795#
3796# @device: #optional device ID associated with slot
3797#
3798# @slot: slot ID, unique per slot of a given @slot-type
3799#
3800# @slot-type: type of the slot
3801#
3802# @source: an integer containing the source event
3803#
3804# @status: an integer containing the status code
3805#
3806# Since: 2.1
3807##
Eric Blake895a2a82015-05-04 09:05:27 -06003808{ 'struct': 'ACPIOSTInfo',
Igor Mammedov521b3672014-06-16 19:12:26 +02003809 'data' : { '*device': 'str',
3810 'slot': 'str',
3811 'slot-type': 'ACPISlotType',
3812 'source': 'int',
3813 'status': 'int' } }
Igor Mammedov02419bc2014-06-16 19:12:28 +02003814
3815##
3816# @query-acpi-ospm-status
3817#
3818# Lists ACPI OSPM status of ACPI device objects,
3819# which might be reported via _OST method
3820#
3821# Since: 2.1
3822##
3823{ 'command': 'query-acpi-ospm-status', 'returns': ['ACPIOSTInfo'] }
Wenchao Xiaf6684702014-06-18 08:43:32 +02003824
Wenchao Xia99eaf092014-06-18 08:43:42 +02003825##
3826# @WatchdogExpirationAction
3827#
3828# An enumeration of the actions taken when the watchdog device's timer is
3829# expired
3830#
3831# @reset: system resets
3832#
3833# @shutdown: system shutdown, note that it is similar to @powerdown, which
3834# tries to set to system status and notify guest
3835#
3836# @poweroff: system poweroff, the emulator program exits
3837#
3838# @pause: system pauses, similar to @stop
3839#
3840# @debug: system enters debug state
3841#
3842# @none: nothing is done
3843#
Mao Chuan Li795dc6e2015-02-05 18:28:36 +08003844# @inject-nmi: a non-maskable interrupt is injected into the first VCPU (all
3845# VCPUS on x86) (since 2.4)
3846#
Wenchao Xia99eaf092014-06-18 08:43:42 +02003847# Since: 2.1
3848##
3849{ 'enum': 'WatchdogExpirationAction',
Mao Chuan Li795dc6e2015-02-05 18:28:36 +08003850 'data': [ 'reset', 'shutdown', 'poweroff', 'pause', 'debug', 'none',
3851 'inject-nmi' ] }
Wenchao Xia99eaf092014-06-18 08:43:42 +02003852
Wenchao Xia5a2d2cb2014-06-18 08:43:45 +02003853##
3854# @IoOperationType
3855#
3856# An enumeration of the I/O operation types
3857#
3858# @read: read operation
3859#
3860# @write: write operation
3861#
3862# Since: 2.1
3863##
3864{ 'enum': 'IoOperationType',
3865 'data': [ 'read', 'write' ] }
3866
Wenchao Xia3a449692014-06-18 08:43:52 +02003867##
3868# @GuestPanicAction
3869#
3870# An enumeration of the actions taken when guest OS panic is detected
3871#
3872# @pause: system pauses
3873#
3874# Since: 2.1
3875##
3876{ 'enum': 'GuestPanicAction',
3877 'data': [ 'pause' ] }
Marcelo Tosattif2ae8ab2014-06-24 18:55:11 -03003878
3879##
3880# @rtc-reset-reinjection
3881#
3882# This command will reset the RTC interrupt reinjection backlog.
3883# Can be used if another mechanism to synchronize guest time
3884# is in effect, for example QEMU guest agent's guest-set-time
3885# command.
3886#
3887# Since: 2.1
3888##
3889{ 'command': 'rtc-reset-reinjection' }
Scott Feldmanfafa4d52015-06-10 18:21:21 -07003890
3891# Rocker ethernet network switch
3892{ 'include': 'qapi/rocker.json' }
Pavel Dovgalyukd73abd62015-09-17 19:23:37 +03003893
3894##
3895# ReplayMode:
3896#
3897# Mode of the replay subsystem.
3898#
3899# @none: normal execution mode. Replay or record are not enabled.
3900#
3901# @record: record mode. All non-deterministic data is written into the
3902# replay log.
3903#
3904# @play: replay mode. Non-deterministic data required for system execution
3905# is read from the log.
3906#
3907# Since: 2.5
3908##
3909{ 'enum': 'ReplayMode',
3910 'data': [ 'none', 'record', 'play' ] }