]> git.proxmox.com Git - qemu.git/blame - qapi-schema.json
ide scsi: Mess with geometry only for hard disk devices
[qemu.git] / qapi-schema.json
CommitLineData
e3193601
AL
1# -*- Mode: Python -*-
2#
3# QAPI Schema
48a32bed
AL
4
5##
6# @NameInfo:
7#
8# Guest name information.
9#
10# @name: #optional The name of the guest
11#
12# Since 0.14.0
13##
14{ 'type': 'NameInfo', 'data': {'*name': 'str'} }
15
16##
17# @query-name:
18#
19# Return the name information of a guest.
20#
21# Returns: @NameInfo of the guest
22#
23# Since 0.14.0
24##
25{ 'command': 'query-name', 'returns': 'NameInfo' }
b9c15f16
LC
26
27##
28# @VersionInfo:
29#
30# A description of QEMU's version.
31#
32# @qemu.major: The major version of QEMU
33#
34# @qemu.minor: The minor version of QEMU
35#
36# @qemu.micro: The micro version of QEMU. By current convention, a micro
37# version of 50 signifies a development branch. A micro version
38# greater than or equal to 90 signifies a release candidate for
39# the next minor version. A micro version of less than 50
40# signifies a stable release.
41#
42# @package: QEMU will always set this field to an empty string. Downstream
43# versions of QEMU should set this to a non-empty string. The
44# exact format depends on the downstream however it highly
45# recommended that a unique name is used.
46#
47# Since: 0.14.0
48##
49{ 'type': 'VersionInfo',
50 'data': {'qemu': {'major': 'int', 'minor': 'int', 'micro': 'int'},
51 'package': 'str'} }
52
53##
54# @query-version:
55#
56# Returns the current version of QEMU.
57#
58# Returns: A @VersionInfo object describing the current version of QEMU.
59#
60# Since: 0.14.0
61##
62{ 'command': 'query-version', 'returns': 'VersionInfo' }
292a2602
LC
63
64##
65# @KvmInfo:
66#
67# Information about support for KVM acceleration
68#
69# @enabled: true if KVM acceleration is active
70#
71# @present: true if KVM acceleration is built into this executable
72#
73# Since: 0.14.0
74##
75{ 'type': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} }
76
77##
78# @query-kvm:
79#
80# Returns information about KVM acceleration
81#
82# Returns: @KvmInfo
83#
84# Since: 0.14.0
85##
86{ 'command': 'query-kvm', 'returns': 'KvmInfo' }
87
1fa9a5e4
LC
88##
89# @RunState
90#
91# An enumation of VM run states.
92#
93# @debug: QEMU is running on a debugger
94#
0a24c7b1
LC
95# @finish-migrate: guest is paused to finish the migration process
96#
1fa9a5e4
LC
97# @inmigrate: guest is paused waiting for an incoming migration
98#
99# @internal-error: An internal error that prevents further guest execution
100# has occurred
101#
102# @io-error: the last IOP has failed and the device is configured to pause
103# on I/O errors
104#
105# @paused: guest has been paused via the 'stop' command
106#
107# @postmigrate: guest is paused following a successful 'migrate'
108#
109# @prelaunch: QEMU was started with -S and guest has not started
110#
1fa9a5e4
LC
111# @restore-vm: guest is paused to restore VM state
112#
113# @running: guest is actively running
114#
115# @save-vm: guest is paused to save the VM state
116#
117# @shutdown: guest is shut down (and -no-shutdown is in use)
118#
ad02b96a
LC
119# @suspended: guest is suspended (ACPI S3)
120#
1fa9a5e4
LC
121# @watchdog: the watchdog action is configured to pause and has been triggered
122##
123{ 'enum': 'RunState',
124 'data': [ 'debug', 'inmigrate', 'internal-error', 'io-error', 'paused',
125 'postmigrate', 'prelaunch', 'finish-migrate', 'restore-vm',
ad02b96a 126 'running', 'save-vm', 'shutdown', 'suspended', 'watchdog' ] }
1fa9a5e4
LC
127
128##
129# @StatusInfo:
130#
131# Information about VCPU run state
132#
133# @running: true if all VCPUs are runnable, false if not runnable
134#
135# @singlestep: true if VCPUs are in single-step mode
136#
137# @status: the virtual machine @RunState
138#
139# Since: 0.14.0
140#
141# Notes: @singlestep is enabled through the GDB stub
142##
143{ 'type': 'StatusInfo',
144 'data': {'running': 'bool', 'singlestep': 'bool', 'status': 'RunState'} }
145
146##
147# @query-status:
148#
149# Query the run status of all VCPUs
150#
151# Returns: @StatusInfo reflecting all VCPUs
152#
153# Since: 0.14.0
154##
155{ 'command': 'query-status', 'returns': 'StatusInfo' }
156
efab767e
LC
157##
158# @UuidInfo:
159#
160# Guest UUID information.
161#
162# @UUID: the UUID of the guest
163#
164# Since: 0.14.0
165#
166# Notes: If no UUID was specified for the guest, a null UUID is returned.
167##
168{ 'type': 'UuidInfo', 'data': {'UUID': 'str'} }
169
170##
171# @query-uuid:
172#
173# Query the guest UUID information.
174#
175# Returns: The @UuidInfo for the guest
176#
177# Since 0.14.0
178##
179{ 'command': 'query-uuid', 'returns': 'UuidInfo' }
180
c5a415a0
LC
181##
182# @ChardevInfo:
183#
184# Information about a character device.
185#
186# @label: the label of the character device
187#
188# @filename: the filename of the character device
189#
190# Notes: @filename is encoded using the QEMU command line character device
191# encoding. See the QEMU man page for details.
192#
193# Since: 0.14.0
194##
195{ 'type': 'ChardevInfo', 'data': {'label': 'str', 'filename': 'str'} }
196
197##
198# @query-chardev:
199#
200# Returns information about current character devices.
201#
202# Returns: a list of @ChardevInfo
203#
204# Since: 0.14.0
205##
206{ 'command': 'query-chardev', 'returns': ['ChardevInfo'] }
aa9b79bc
LC
207
208##
209# @CommandInfo:
210#
211# Information about a QMP command
212#
213# @name: The command name
214#
215# Since: 0.14.0
216##
217{ 'type': 'CommandInfo', 'data': {'name': 'str'} }
218
219##
220# @query-commands:
221#
222# Return a list of supported QMP commands by this server
223#
224# Returns: A list of @CommandInfo for all supported commands
225#
226# Since: 0.14.0
227##
228{ 'command': 'query-commands', 'returns': ['CommandInfo'] }
229
4860853d
DB
230##
231# @EventInfo:
232#
233# Information about a QMP event
234#
235# @name: The event name
236#
237# Since: 1.2.0
238##
239{ 'type': 'EventInfo', 'data': {'name': 'str'} }
240
241##
242# @query-events:
243#
244# Return a list of supported QMP events by this server
245#
246# Returns: A list of @EventInfo for all supported events
247#
248# Since: 1.2.0
249##
250{ 'command': 'query-events', 'returns': ['EventInfo'] }
251
791e7c82
LC
252##
253# @MigrationStats
254#
255# Detailed migration status.
256#
257# @transferred: amount of bytes already transferred to the target VM
258#
259# @remaining: amount of bytes remaining to be transferred to the target VM
260#
261# @total: total amount of bytes involved in the migration process
262#
d5f8a570
JQ
263# @total_time: tota0l amount of ms since migration started. If
264# migration has ended, it returns the total migration
265# time. (since 1.2)
266#
791e7c82
LC
267# Since: 0.14.0.
268##
269{ 'type': 'MigrationStats',
d5f8a570
JQ
270 'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' ,
271 'total_time': 'int' } }
791e7c82
LC
272
273##
274# @MigrationInfo
275#
276# Information about current migration process.
277#
278# @status: #optional string describing the current migration status.
279# As of 0.14.0 this can be 'active', 'completed', 'failed' or
280# 'cancelled'. If this field is not returned, no migration process
281# has been initiated
282#
d5f8a570
JQ
283# @ram: #optional @MigrationStats containing detailed migration
284# status, only returned if status is 'active' or
285# 'completed'. 'comppleted' (since 1.2)
791e7c82
LC
286#
287# @disk: #optional @MigrationStats containing detailed disk migration
288# status, only returned if status is 'active' and it is a block
289# migration
290#
291# Since: 0.14.0
292##
293{ 'type': 'MigrationInfo',
294 'data': {'*status': 'str', '*ram': 'MigrationStats',
295 '*disk': 'MigrationStats'} }
296
297##
298# @query-migrate
299#
300# Returns information about current migration process.
301#
302# Returns: @MigrationInfo
303#
304# Since: 0.14.0
305##
306{ 'command': 'query-migrate', 'returns': 'MigrationInfo' }
307
e235cec3
LC
308##
309# @MouseInfo:
310#
311# Information about a mouse device.
312#
313# @name: the name of the mouse device
314#
315# @index: the index of the mouse device
316#
317# @current: true if this device is currently receiving mouse events
318#
319# @absolute: true if this device supports absolute coordinates as input
320#
321# Since: 0.14.0
322##
323{ 'type': 'MouseInfo',
324 'data': {'name': 'str', 'index': 'int', 'current': 'bool',
325 'absolute': 'bool'} }
326
327##
328# @query-mice:
329#
330# Returns information about each active mouse device
331#
332# Returns: a list of @MouseInfo for each device
333#
334# Since: 0.14.0
335##
336{ 'command': 'query-mice', 'returns': ['MouseInfo'] }
337
de0b36b6
LC
338##
339# @CpuInfo:
340#
341# Information about a virtual CPU
342#
343# @CPU: the index of the virtual CPU
344#
345# @current: this only exists for backwards compatible and should be ignored
b80e560b 346#
de0b36b6
LC
347# @halted: true if the virtual CPU is in the halt state. Halt usually refers
348# to a processor specific low power mode.
349#
350# @pc: #optional If the target is i386 or x86_64, this is the 64-bit instruction
351# pointer.
352# If the target is Sparc, this is the PC component of the
353# instruction pointer.
354#
355# @nip: #optional If the target is PPC, the instruction pointer
356#
357# @npc: #optional If the target is Sparc, the NPC component of the instruction
358# pointer
359#
360# @PC: #optional If the target is MIPS, the instruction pointer
361#
362# @thread_id: ID of the underlying host thread
363#
364# Since: 0.14.0
365#
366# Notes: @halted is a transient state that changes frequently. By the time the
367# data is sent to the client, the guest may no longer be halted.
368##
369{ 'type': 'CpuInfo',
370 'data': {'CPU': 'int', 'current': 'bool', 'halted': 'bool', '*pc': 'int',
371 '*nip': 'int', '*npc': 'int', '*PC': 'int', 'thread_id': 'int'} }
372
373##
374# @query-cpus:
375#
376# Returns a list of information about each virtual CPU.
377#
378# Returns: a list of @CpuInfo for each virtual CPU
379#
380# Since: 0.14.0
381##
382{ 'command': 'query-cpus', 'returns': ['CpuInfo'] }
383
b2023818
LC
384##
385# @BlockDeviceInfo:
386#
387# Information about the backing device for a block device.
388#
389# @file: the filename of the backing device
390#
391# @ro: true if the backing device was open read-only
392#
393# @drv: the name of the block format used to open the backing device. As of
394# 0.14.0 this can be: 'blkdebug', 'bochs', 'cloop', 'cow', 'dmg',
395# 'file', 'file', 'ftp', 'ftps', 'host_cdrom', 'host_device',
396# 'host_floppy', 'http', 'https', 'nbd', 'parallels', 'qcow',
397# 'qcow2', 'raw', 'tftp', 'vdi', 'vmdk', 'vpc', 'vvfat'
398#
399# @backing_file: #optional the name of the backing file (for copy-on-write)
400#
2e3e3317
BC
401# @backing_file_depth: number of files in the backing file chain (since: 1.2)
402#
b2023818
LC
403# @encrypted: true if the backing device is encrypted
404#
727f005e
ZYW
405# @bps: total throughput limit in bytes per second is specified
406#
407# @bps_rd: read throughput limit in bytes per second is specified
408#
409# @bps_wr: write throughput limit in bytes per second is specified
410#
411# @iops: total I/O operations per second is specified
412#
413# @iops_rd: read I/O operations per second is specified
414#
415# @iops_wr: write I/O operations per second is specified
416#
b2023818
LC
417# Since: 0.14.0
418#
419# Notes: This interface is only found in @BlockInfo.
420##
421{ 'type': 'BlockDeviceInfo',
422 'data': { 'file': 'str', 'ro': 'bool', 'drv': 'str',
2e3e3317
BC
423 '*backing_file': 'str', 'backing_file_depth': 'int',
424 'encrypted': 'bool', 'bps': 'int', 'bps_rd': 'int',
425 'bps_wr': 'int', 'iops': 'int', 'iops_rd': 'int',
426 'iops_wr': 'int'} }
b2023818
LC
427
428##
429# @BlockDeviceIoStatus:
430#
431# An enumeration of block device I/O status.
432#
433# @ok: The last I/O operation has succeeded
434#
435# @failed: The last I/O operation has failed
436#
437# @nospace: The last I/O operation has failed due to a no-space condition
438#
439# Since: 1.0
440##
441{ 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
442
443##
444# @BlockInfo:
445#
446# Block device information. This structure describes a virtual device and
447# the backing device associated with it.
448#
449# @device: The device name associated with the virtual device.
450#
451# @type: This field is returned only for compatibility reasons, it should
452# not be used (always returns 'unknown')
453#
454# @removable: True if the device supports removable media.
455#
456# @locked: True if the guest has locked this device from having its media
457# removed
458#
459# @tray_open: #optional True if the device has a tray and it is open
460# (only present if removable is true)
461#
462# @io-status: #optional @BlockDeviceIoStatus. Only present if the device
463# supports it and the VM is configured to stop on errors
464#
465# @inserted: #optional @BlockDeviceInfo describing the device if media is
466# present
467#
468# Since: 0.14.0
469##
470{ 'type': 'BlockInfo',
471 'data': {'device': 'str', 'type': 'str', 'removable': 'bool',
472 'locked': 'bool', '*inserted': 'BlockDeviceInfo',
473 '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus'} }
474
475##
476# @query-block:
477#
478# Get a list of BlockInfo for all virtual block devices.
479#
480# Returns: a list of @BlockInfo describing each virtual block device
481#
482# Since: 0.14.0
483##
484{ 'command': 'query-block', 'returns': ['BlockInfo'] }
485
f11f57e4
LC
486##
487# @BlockDeviceStats:
488#
489# Statistics of a virtual block device or a block backing device.
490#
491# @rd_bytes: The number of bytes read by the device.
492#
493# @wr_bytes: The number of bytes written by the device.
494#
495# @rd_operations: The number of read operations performed by the device.
496#
497# @wr_operations: The number of write operations performed by the device.
498#
499# @flush_operations: The number of cache flush operations performed by the
500# device (since 0.15.0)
501#
502# @flush_total_time_ns: Total time spend on cache flushes in nano-seconds
503# (since 0.15.0).
504#
505# @wr_total_time_ns: Total time spend on writes in nano-seconds (since 0.15.0).
506#
507# @rd_total_time_ns: Total_time_spend on reads in nano-seconds (since 0.15.0).
508#
509# @wr_highest_offset: The offset after the greatest byte written to the
510# device. The intended use of this information is for
511# growable sparse files (like qcow2) that are used on top
512# of a physical device.
513#
514# Since: 0.14.0
515##
516{ 'type': 'BlockDeviceStats',
517 'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'rd_operations': 'int',
518 'wr_operations': 'int', 'flush_operations': 'int',
519 'flush_total_time_ns': 'int', 'wr_total_time_ns': 'int',
520 'rd_total_time_ns': 'int', 'wr_highest_offset': 'int' } }
521
522##
523# @BlockStats:
524#
525# Statistics of a virtual block device or a block backing device.
526#
527# @device: #optional If the stats are for a virtual block device, the name
528# corresponding to the virtual block device.
529#
530# @stats: A @BlockDeviceStats for the device.
531#
532# @parent: #optional This may point to the backing block device if this is a
533# a virtual block device. If it's a backing block, this will point
534# to the backing file is one is present.
535#
536# Since: 0.14.0
537##
538{ 'type': 'BlockStats',
539 'data': {'*device': 'str', 'stats': 'BlockDeviceStats',
540 '*parent': 'BlockStats'} }
541
542##
543# @query-blockstats:
544#
545# Query the @BlockStats for all virtual block devices.
546#
547# Returns: A list of @BlockStats for each virtual block devices.
548#
549# Since: 0.14.0
550##
551{ 'command': 'query-blockstats', 'returns': ['BlockStats'] }
552
2b54aa87
LC
553##
554# @VncClientInfo:
555#
556# Information about a connected VNC client.
557#
558# @host: The host name of the client. QEMU tries to resolve this to a DNS name
559# when possible.
560#
561# @family: 'ipv6' if the client is connected via IPv6 and TCP
562# 'ipv4' if the client is connected via IPv4 and TCP
563# 'unix' if the client is connected via a unix domain socket
564# 'unknown' otherwise
565#
566# @service: The service name of the client's port. This may depends on the
567# host system's service database so symbolic names should not be
568# relied on.
569#
570# @x509_dname: #optional If x509 authentication is in use, the Distinguished
571# Name of the client.
572#
573# @sasl_username: #optional If SASL authentication is in use, the SASL username
574# used for authentication.
575#
576# Since: 0.14.0
577##
578{ 'type': 'VncClientInfo',
579 'data': {'host': 'str', 'family': 'str', 'service': 'str',
580 '*x509_dname': 'str', '*sasl_username': 'str'} }
581
582##
583# @VncInfo:
584#
585# Information about the VNC session.
586#
587# @enabled: true if the VNC server is enabled, false otherwise
588#
589# @host: #optional The hostname the VNC server is bound to. This depends on
590# the name resolution on the host and may be an IP address.
591#
592# @family: #optional 'ipv6' if the host is listening for IPv6 connections
593# 'ipv4' if the host is listening for IPv4 connections
594# 'unix' if the host is listening on a unix domain socket
595# 'unknown' otherwise
596#
597# @service: #optional The service name of the server's port. This may depends
598# on the host system's service database so symbolic names should not
599# be relied on.
600#
601# @auth: #optional the current authentication type used by the server
602# 'none' if no authentication is being used
603# 'vnc' if VNC authentication is being used
604# 'vencrypt+plain' if VEncrypt is used with plain text authentication
605# 'vencrypt+tls+none' if VEncrypt is used with TLS and no authentication
606# 'vencrypt+tls+vnc' if VEncrypt is used with TLS and VNC authentication
607# 'vencrypt+tls+plain' if VEncrypt is used with TLS and plain text auth
608# 'vencrypt+x509+none' if VEncrypt is used with x509 and no auth
609# 'vencrypt+x509+vnc' if VEncrypt is used with x509 and VNC auth
610# 'vencrypt+x509+plain' if VEncrypt is used with x509 and plain text auth
611# 'vencrypt+tls+sasl' if VEncrypt is used with TLS and SASL auth
612# 'vencrypt+x509+sasl' if VEncrypt is used with x509 and SASL auth
613#
614# @clients: a list of @VncClientInfo of all currently connected clients
615#
616# Since: 0.14.0
617##
618{ 'type': 'VncInfo',
619 'data': {'enabled': 'bool', '*host': 'str', '*family': 'str',
620 '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']} }
621
622##
623# @query-vnc:
624#
625# Returns information about the current VNC server
626#
627# Returns: @VncInfo
628# If VNC support is not compiled in, FeatureDisabled
629#
630# Since: 0.14.0
631##
632{ 'command': 'query-vnc', 'returns': 'VncInfo' }
633
d1f29646
LC
634##
635# @SpiceChannel
636#
637# Information about a SPICE client channel.
638#
639# @host: The host name of the client. QEMU tries to resolve this to a DNS name
640# when possible.
641#
642# @family: 'ipv6' if the client is connected via IPv6 and TCP
643# 'ipv4' if the client is connected via IPv4 and TCP
644# 'unix' if the client is connected via a unix domain socket
645# 'unknown' otherwise
646#
647# @port: The client's port number.
648#
649# @connection-id: SPICE connection id number. All channels with the same id
650# belong to the same SPICE session.
651#
419e1bdf
AL
652# @connection-type: SPICE channel type number. "1" is the main control
653# channel, filter for this one if you want to track spice
654# sessions only
d1f29646 655#
419e1bdf
AL
656# @channel-id: SPICE channel ID number. Usually "0", might be different when
657# multiple channels of the same type exist, such as multiple
d1f29646
LC
658# display channels in a multihead setup
659#
660# @tls: true if the channel is encrypted, false otherwise.
661#
662# Since: 0.14.0
663##
664{ 'type': 'SpiceChannel',
665 'data': {'host': 'str', 'family': 'str', 'port': 'str',
666 'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int',
667 'tls': 'bool'} }
668
4efee029
AL
669##
670# @SpiceQueryMouseMode
671#
672# An enumation of Spice mouse states.
673#
674# @client: Mouse cursor position is determined by the client.
675#
676# @server: Mouse cursor position is determined by the server.
677#
678# @unknown: No information is available about mouse mode used by
679# the spice server.
680#
681# Note: spice/enums.h has a SpiceMouseMode already, hence the name.
682#
683# Since: 1.1
684##
685{ 'enum': 'SpiceQueryMouseMode',
686 'data': [ 'client', 'server', 'unknown' ] }
687
d1f29646
LC
688##
689# @SpiceInfo
690#
691# Information about the SPICE session.
b80e560b 692#
d1f29646
LC
693# @enabled: true if the SPICE server is enabled, false otherwise
694#
695# @host: #optional The hostname the SPICE server is bound to. This depends on
696# the name resolution on the host and may be an IP address.
697#
698# @port: #optional The SPICE server's port number.
699#
700# @compiled-version: #optional SPICE server version.
701#
702# @tls-port: #optional The SPICE server's TLS port number.
703#
704# @auth: #optional the current authentication type used by the server
419e1bdf
AL
705# 'none' if no authentication is being used
706# 'spice' uses SASL or direct TLS authentication, depending on command
707# line options
d1f29646 708#
4efee029
AL
709# @mouse-mode: The mode in which the mouse cursor is displayed currently. Can
710# be determined by the client or the server, or unknown if spice
711# server doesn't provide this information.
712#
713# Since: 1.1
714#
d1f29646
LC
715# @channels: a list of @SpiceChannel for each active spice channel
716#
717# Since: 0.14.0
718##
719{ 'type': 'SpiceInfo',
720 'data': {'enabled': 'bool', '*host': 'str', '*port': 'int',
721 '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
4efee029 722 'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} }
d1f29646
LC
723
724##
725# @query-spice
726#
727# Returns information about the current SPICE server
728#
729# Returns: @SpiceInfo
730#
731# Since: 0.14.0
732##
733{ 'command': 'query-spice', 'returns': 'SpiceInfo' }
734
96637bcd
LC
735##
736# @BalloonInfo:
737#
738# Information about the guest balloon device.
739#
740# @actual: the number of bytes the balloon currently contains
741#
742# @mem_swapped_in: #optional number of pages swapped in within the guest
743#
744# @mem_swapped_out: #optional number of pages swapped out within the guest
745#
746# @major_page_faults: #optional number of major page faults within the guest
747#
748# @minor_page_faults: #optional number of minor page faults within the guest
749#
750# @free_mem: #optional amount of memory (in bytes) free in the guest
751#
752# @total_mem: #optional amount of memory (in bytes) visible to the guest
753#
754# Since: 0.14.0
755#
756# Notes: all current versions of QEMU do not fill out optional information in
757# this structure.
758##
759{ 'type': 'BalloonInfo',
760 'data': {'actual': 'int', '*mem_swapped_in': 'int',
761 '*mem_swapped_out': 'int', '*major_page_faults': 'int',
762 '*minor_page_faults': 'int', '*free_mem': 'int',
763 '*total_mem': 'int'} }
764
765##
766# @query-balloon:
767#
768# Return information about the balloon device.
769#
770# Returns: @BalloonInfo on success
771# If the balloon driver is enabled but not functional because the KVM
772# kernel module cannot support it, KvmMissingCap
773# If no balloon device is present, DeviceNotActive
774#
775# Since: 0.14.0
776##
777{ 'command': 'query-balloon', 'returns': 'BalloonInfo' }
778
79627472
LC
779##
780# @PciMemoryRange:
781#
782# A PCI device memory region
783#
784# @base: the starting address (guest physical)
785#
786# @limit: the ending address (guest physical)
787#
788# Since: 0.14.0
789##
790{ 'type': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} }
791
792##
793# @PciMemoryRegion
794#
795# Information about a PCI device I/O region.
796#
797# @bar: the index of the Base Address Register for this region
798#
799# @type: 'io' if the region is a PIO region
800# 'memory' if the region is a MMIO region
801#
802# @prefetch: #optional if @type is 'memory', true if the memory is prefetchable
803#
804# @mem_type_64: #optional if @type is 'memory', true if the BAR is 64-bit
805#
806# Since: 0.14.0
807##
808{ 'type': 'PciMemoryRegion',
809 'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int',
810 '*prefetch': 'bool', '*mem_type_64': 'bool' } }
811
812##
813# @PciBridgeInfo:
814#
815# Information about a PCI Bridge device
816#
817# @bus.number: primary bus interface number. This should be the number of the
818# bus the device resides on.
819#
820# @bus.secondary: secondary bus interface number. This is the number of the
821# main bus for the bridge
822#
823# @bus.subordinate: This is the highest number bus that resides below the
824# bridge.
825#
826# @bus.io_range: The PIO range for all devices on this bridge
827#
828# @bus.memory_range: The MMIO range for all devices on this bridge
829#
830# @bus.prefetchable_range: The range of prefetchable MMIO for all devices on
831# this bridge
832#
833# @devices: a list of @PciDeviceInfo for each device on this bridge
834#
835# Since: 0.14.0
836##
837{ 'type': 'PciBridgeInfo',
838 'data': {'bus': { 'number': 'int', 'secondary': 'int', 'subordinate': 'int',
839 'io_range': 'PciMemoryRange',
840 'memory_range': 'PciMemoryRange',
841 'prefetchable_range': 'PciMemoryRange' },
842 '*devices': ['PciDeviceInfo']} }
843
844##
845# @PciDeviceInfo:
846#
847# Information about a PCI device
848#
849# @bus: the bus number of the device
850#
851# @slot: the slot the device is located in
852#
853# @function: the function of the slot used by the device
854#
855# @class_info.desc: #optional a string description of the device's class
856#
857# @class_info.class: the class code of the device
858#
859# @id.device: the PCI device id
860#
861# @id.vendor: the PCI vendor id
862#
863# @irq: #optional if an IRQ is assigned to the device, the IRQ number
864#
865# @qdev_id: the device name of the PCI device
866#
867# @pci_bridge: if the device is a PCI bridge, the bridge information
868#
869# @regions: a list of the PCI I/O regions associated with the device
870#
871# Notes: the contents of @class_info.desc are not stable and should only be
872# treated as informational.
873#
874# Since: 0.14.0
875##
876{ 'type': 'PciDeviceInfo',
877 'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
878 'class_info': {'*desc': 'str', 'class': 'int'},
879 'id': {'device': 'int', 'vendor': 'int'},
880 '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
881 'regions': ['PciMemoryRegion']} }
882
883##
884# @PciInfo:
885#
886# Information about a PCI bus
887#
888# @bus: the bus index
889#
890# @devices: a list of devices on this bus
891#
892# Since: 0.14.0
893##
894{ 'type': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} }
895
896##
897# @query-pci:
898#
899# Return information about the PCI bus topology of the guest.
900#
901# Returns: a list of @PciInfo for each PCI bus
902#
903# Since: 0.14.0
904##
905{ 'command': 'query-pci', 'returns': ['PciInfo'] }
906
fb5458cd
SH
907##
908# @BlockJobInfo:
909#
910# Information about a long-running block device operation.
911#
912# @type: the job type ('stream' for image streaming)
913#
914# @device: the block device name
915#
916# @len: the maximum progress value
917#
918# @offset: the current progress value
919#
920# @speed: the rate limit, bytes per second
921#
922# Since: 1.1
923##
924{ 'type': 'BlockJobInfo',
925 'data': {'type': 'str', 'device': 'str', 'len': 'int',
926 'offset': 'int', 'speed': 'int'} }
927
928##
929# @query-block-jobs:
930#
931# Return information about long-running block device operations.
932#
933# Returns: a list of @BlockJobInfo for each active block job
934#
935# Since: 1.1
936##
937{ 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }
938
7a7f325e
LC
939##
940# @quit:
941#
942# This command will cause the QEMU process to exit gracefully. While every
943# attempt is made to send the QMP response before terminating, this is not
944# guaranteed. When using this interface, a premature EOF would not be
945# unexpected.
946#
947# Since: 0.14.0
948##
949{ 'command': 'quit' }
5f158f21
LC
950
951##
952# @stop:
953#
954# Stop all guest VCPU execution.
955#
956# Since: 0.14.0
957#
958# Notes: This function will succeed even if the guest is already in the stopped
959# state
960##
961{ 'command': 'stop' }
38d22653
LC
962
963##
964# @system_reset:
965#
966# Performs a hard reset of a guest.
967#
968# Since: 0.14.0
969##
970{ 'command': 'system_reset' }
5bc465e4
LC
971
972##
973# @system_powerdown:
974#
975# Requests that a guest perform a powerdown operation.
976#
977# Since: 0.14.0
978#
979# Notes: A guest may or may not respond to this command. This command
980# returning does not indicate that a guest has accepted the request or
981# that it has shut down. Many guests will respond to this command by
982# prompting the user in some way.
983##
984{ 'command': 'system_powerdown' }
755f1968
LC
985
986##
987# @cpu:
988#
989# This command is a nop that is only provided for the purposes of compatibility.
990#
991# Since: 0.14.0
992#
993# Notes: Do not use this command.
994##
995{ 'command': 'cpu', 'data': {'index': 'int'} }
0cfd6a9a
LC
996
997##
998# @memsave:
999#
1000# Save a portion of guest memory to a file.
1001#
1002# @val: the virtual address of the guest to start from
1003#
1004# @size: the size of memory region to save
1005#
1006# @filename: the file to save the memory to as binary data
1007#
1008# @cpu-index: #optional the index of the virtual CPU to use for translating the
1009# virtual address (defaults to CPU 0)
1010#
1011# Returns: Nothing on success
1012# If @cpu is not a valid VCPU, InvalidParameterValue
1013# If @filename cannot be opened, OpenFileFailed
1014# If an I/O error occurs while writing the file, IOError
1015#
1016# Since: 0.14.0
1017#
1018# Notes: Errors were not reliably returned until 1.1
1019##
1020{ 'command': 'memsave',
1021 'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
6d3962bf
LC
1022
1023##
1024# @pmemsave:
1025#
1026# Save a portion of guest physical memory to a file.
1027#
1028# @val: the physical address of the guest to start from
1029#
1030# @size: the size of memory region to save
1031#
1032# @filename: the file to save the memory to as binary data
1033#
1034# Returns: Nothing on success
1035# If @filename cannot be opened, OpenFileFailed
1036# If an I/O error occurs while writing the file, IOError
1037#
1038# Since: 0.14.0
1039#
1040# Notes: Errors were not reliably returned until 1.1
1041##
1042{ 'command': 'pmemsave',
1043 'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
e42e818b
LC
1044
1045##
1046# @cont:
1047#
1048# Resume guest VCPU execution.
1049#
1050# Since: 0.14.0
1051#
1052# Returns: If successful, nothing
1053# If the QEMU is waiting for an incoming migration, MigrationExpected
1054# If QEMU was started with an encrypted block device and a key has
1055# not yet been set, DeviceEncrypted.
1056#
1057# Notes: This command will succeed if the guest is currently running.
1058##
1059{ 'command': 'cont' }
1060
9b9df25a
GH
1061##
1062# @system_wakeup:
1063#
1064# Wakeup guest from suspend. Does nothing in case the guest isn't suspended.
1065#
1066# Since: 1.1
1067#
1068# Returns: nothing.
1069##
1070{ 'command': 'system_wakeup' }
1071
ab49ab5c
LC
1072##
1073# @inject-nmi:
1074#
1075# Injects an Non-Maskable Interrupt into all guest's VCPUs.
1076#
1077# Returns: If successful, nothing
1078# If the Virtual Machine doesn't support NMI injection, Unsupported
1079#
1080# Since: 0.14.0
1081#
1082# Notes: Only x86 Virtual Machines support this command.
1083##
1084{ 'command': 'inject-nmi' }
4b37156c
LC
1085
1086##
1087# @set_link:
1088#
1089# Sets the link status of a virtual network adapter.
1090#
1091# @name: the device name of the virtual network adapter
1092#
1093# @up: true to set the link status to be up
1094#
1095# Returns: Nothing on success
1096# If @name is not a valid network device, DeviceNotFound
1097#
1098# Since: 0.14.0
1099#
1100# Notes: Not all network adapters support setting link status. This command
1101# will succeed even if the network adapter does not support link status
1102# notification.
1103##
1104{ 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} }
a4dea8a9
LC
1105
1106##
1107# @block_passwd:
1108#
1109# This command sets the password of a block device that has not been open
1110# with a password and requires one.
1111#
1112# The two cases where this can happen are a block device is created through
1113# QEMU's initial command line or a block device is changed through the legacy
1114# @change interface.
1115#
1116# In the event that the block device is created through the initial command
1117# line, the VM will start in the stopped state regardless of whether '-S' is
1118# used. The intention is for a management tool to query the block devices to
1119# determine which ones are encrypted, set the passwords with this command, and
1120# then start the guest with the @cont command.
1121#
1122# @device: the name of the device to set the password on
1123#
1124# @password: the password to use for the device
1125#
1126# Returns: nothing on success
1127# If @device is not a valid block device, DeviceNotFound
1128# If @device is not encrypted, DeviceNotEncrypted
1129# If @password is not valid for this device, InvalidPassword
1130#
1131# Notes: Not all block formats support encryption and some that do are not
1132# able to validate that a password is correct. Disk corruption may
1133# occur if an invalid password is specified.
1134#
1135# Since: 0.14.0
1136##
1137{ 'command': 'block_passwd', 'data': {'device': 'str', 'password': 'str'} }
d72f3264
LC
1138
1139##
1140# @balloon:
1141#
1142# Request the balloon driver to change its balloon size.
1143#
1144# @value: the target size of the balloon in bytes
1145#
1146# Returns: Nothing on success
1147# If the balloon driver is enabled but not functional because the KVM
1148# kernel module cannot support it, KvmMissingCap
1149# If no balloon device is present, DeviceNotActive
1150#
1151# Notes: This command just issues a request to the guest. When it returns,
1152# the balloon size may not have changed. A guest can change the balloon
1153# size independent of this command.
1154#
1155# Since: 0.14.0
1156##
1157{ 'command': 'balloon', 'data': {'value': 'int'} }
5e7caacb
LC
1158
1159##
1160# @block_resize
1161#
1162# Resize a block image while a guest is running.
1163#
1164# @device: the name of the device to get the image resized
1165#
1166# @size: new image size in bytes
1167#
1168# Returns: nothing on success
1169# If @device is not a valid block device, DeviceNotFound
939a1cc3
SH
1170# If @size is negative, InvalidParameterValue
1171# If the block device has no medium inserted, DeviceHasNoMedium
1172# If the block device does not support resize, Unsupported
1173# If the block device is read-only, DeviceIsReadOnly
1174# If a long-running operation is using the device, DeviceInUse
5e7caacb
LC
1175#
1176# Since: 0.14.0
1177##
1178{ 'command': 'block_resize', 'data': { 'device': 'str', 'size': 'int' }}
6106e249 1179
8802d1fd 1180##
bc8b094f
PB
1181# @NewImageMode
1182#
1183# An enumeration that tells QEMU how to set the backing file path in
1184# a new image file.
1185#
1186# @existing: QEMU should look for an existing image file.
1187#
1188# @absolute-paths: QEMU should create a new image with absolute paths
1189# for the backing file.
1190#
1191# Since: 1.1
1192##
1193{ 'enum': 'NewImageMode'
1194 'data': [ 'existing', 'absolute-paths' ] }
1195
8802d1fd 1196##
52e7c241 1197# @BlockdevSnapshot
8802d1fd
JC
1198#
1199# @device: the name of the device to generate the snapshot from.
1200#
1201# @snapshot-file: the target of the new image. A new file will be created.
1202#
1203# @format: #optional the format of the snapshot image, default is 'qcow2'.
6cc2a415
PB
1204#
1205# @mode: #optional whether and how QEMU should create a new image, default is
1206# 'absolute-paths'.
8802d1fd 1207##
52e7c241 1208{ 'type': 'BlockdevSnapshot',
bc8b094f
PB
1209 'data': { 'device': 'str', 'snapshot-file': 'str', '*format': 'str',
1210 '*mode': 'NewImageMode' } }
8802d1fd
JC
1211
1212##
52e7c241 1213# @BlockdevAction
8802d1fd 1214#
52e7c241
PB
1215# A discriminated record of operations that can be performed with
1216# @transaction.
8802d1fd 1217##
52e7c241
PB
1218{ 'union': 'BlockdevAction',
1219 'data': {
1220 'blockdev-snapshot-sync': 'BlockdevSnapshot',
1221 } }
8802d1fd
JC
1222
1223##
52e7c241 1224# @transaction
8802d1fd 1225#
52e7c241
PB
1226# Atomically operate on a group of one or more block devices. If
1227# any operation fails, then the entire set of actions will be
1228# abandoned and the appropriate error returned. The only operation
1229# supported is currently blockdev-snapshot-sync.
8802d1fd
JC
1230#
1231# List of:
52e7c241 1232# @BlockdevAction: information needed for the device snapshot
8802d1fd
JC
1233#
1234# Returns: nothing on success
1235# If @device is not a valid block device, DeviceNotFound
1236# If @device is busy, DeviceInUse will be returned
1237# If @snapshot-file can't be created, OpenFileFailed
1238# If @snapshot-file can't be opened, OpenFileFailed
1239# If @format is invalid, InvalidBlockFormat
1240#
52e7c241
PB
1241# Note: The transaction aborts on the first failure. Therefore, there will
1242# be only one device or snapshot file returned in an error condition, and
1243# subsequent actions will not have been attempted.
1244#
1245# Since 1.1
8802d1fd 1246##
52e7c241
PB
1247{ 'command': 'transaction',
1248 'data': { 'actions': [ 'BlockdevAction' ] } }
8802d1fd 1249
6106e249
LC
1250##
1251# @blockdev-snapshot-sync
1252#
1253# Generates a synchronous snapshot of a block device.
1254#
1255# @device: the name of the device to generate the snapshot from.
1256#
1257# @snapshot-file: the target of the new image. If the file exists, or if it
1258# is a device, the snapshot will be created in the existing
1259# file/device. If does not exist, a new file will be created.
1260#
1261# @format: #optional the format of the snapshot image, default is 'qcow2'.
1262#
6cc2a415
PB
1263# @mode: #optional whether and how QEMU should create a new image, default is
1264# 'absolute-paths'.
1265#
6106e249
LC
1266# Returns: nothing on success
1267# If @device is not a valid block device, DeviceNotFound
1268# If @snapshot-file can't be opened, OpenFileFailed
1269# If @format is invalid, InvalidBlockFormat
1270#
6106e249
LC
1271# Since 0.14.0
1272##
1273{ 'command': 'blockdev-snapshot-sync',
6cc2a415
PB
1274 'data': { 'device': 'str', 'snapshot-file': 'str', '*format': 'str',
1275 '*mode': 'NewImageMode'} }
d51a67b4
LC
1276
1277##
1278# @human-monitor-command:
1279#
1280# Execute a command on the human monitor and return the output.
1281#
1282# @command-line: the command to execute in the human monitor
1283#
1284# @cpu-index: #optional The CPU to use for commands that require an implicit CPU
1285#
1286# Returns: the output of the command as a string
1287#
1288# Since: 0.14.0
1289#
1290# Notes: This command only exists as a stop-gap. It's use is highly
1291# discouraged. The semantics of this command are not guaranteed.
1292#
1293# Known limitations:
1294#
1295# o This command is stateless, this means that commands that depend
1296# on state information (such as getfd) might not work
1297#
1298# o Commands that prompt the user for data (eg. 'cont' when the block
1299# device is encrypted) don't currently work
1300##
1301{ 'command': 'human-monitor-command',
1302 'data': {'command-line': 'str', '*cpu-index': 'int'},
b80e560b 1303 'returns': 'str' }
6cdedb07
LC
1304
1305##
1306# @migrate_cancel
1307#
1308# Cancel the current executing migration process.
1309#
1310# Returns: nothing on success
1311#
1312# Notes: This command succeeds even if there is no migration process running.
1313#
1314# Since: 0.14.0
1315##
1316{ 'command': 'migrate_cancel' }
4f0a993b
LC
1317
1318##
1319# @migrate_set_downtime
1320#
1321# Set maximum tolerated downtime for migration.
1322#
1323# @value: maximum downtime in seconds
1324#
1325# Returns: nothing on success
1326#
1327# Since: 0.14.0
1328##
1329{ 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
3dc85383
LC
1330
1331##
1332# @migrate_set_speed
1333#
1334# Set maximum speed for migration.
1335#
1336# @value: maximum speed in bytes.
1337#
1338# Returns: nothing on success
1339#
1340# Notes: A value lesser than zero will be automatically round up to zero.
1341#
1342# Since: 0.14.0
1343##
1344{ 'command': 'migrate_set_speed', 'data': {'value': 'int'} }
b4b12c62
AL
1345
1346##
d03ee401 1347# @ObjectPropertyInfo:
b4b12c62
AL
1348#
1349# @name: the name of the property
1350#
1351# @type: the type of the property. This will typically come in one of four
1352# forms:
1353#
1354# 1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
1355# These types are mapped to the appropriate JSON type.
1356#
1357# 2) A legacy type in the form 'legacy<subtype>' where subtype is the
1358# legacy qdev typename. These types are always treated as strings.
1359#
1360# 3) A child type in the form 'child<subtype>' where subtype is a qdev
1361# device type name. Child properties create the composition tree.
1362#
1363# 4) A link type in the form 'link<subtype>' where subtype is a qdev
1364# device type name. Link properties form the device model graph.
1365#
1366# Since: 1.1
1367#
1368# Notes: This type is experimental. Its syntax may change in future releases.
1369##
57c9fafe 1370{ 'type': 'ObjectPropertyInfo',
b4b12c62
AL
1371 'data': { 'name': 'str', 'type': 'str' } }
1372
1373##
1374# @qom-list:
1375#
57c9fafe 1376# This command will list any properties of a object given a path in the object
b4b12c62
AL
1377# model.
1378#
57c9fafe 1379# @path: the path within the object model. See @qom-get for a description of
b4b12c62
AL
1380# this parameter.
1381#
57c9fafe
AL
1382# Returns: a list of @ObjectPropertyInfo that describe the properties of the
1383# object.
b4b12c62
AL
1384#
1385# Since: 1.1
1386#
1387# Notes: This command is experimental. It's syntax may change in future
1388# releases.
1389##
1390{ 'command': 'qom-list',
1391 'data': { 'path': 'str' },
57c9fafe 1392 'returns': [ 'ObjectPropertyInfo' ] }
eb6e8ea5
AL
1393
1394##
1395# @qom-get:
1396#
57c9fafe 1397# This command will get a property from a object model path and return the
eb6e8ea5
AL
1398# value.
1399#
57c9fafe 1400# @path: The path within the object model. There are two forms of supported
eb6e8ea5
AL
1401# paths--absolute and partial paths.
1402#
57c9fafe 1403# Absolute paths are derived from the root object and can follow child<>
eb6e8ea5
AL
1404# or link<> properties. Since they can follow link<> properties, they
1405# can be arbitrarily long. Absolute paths look like absolute filenames
1406# and are prefixed with a leading slash.
1407#
1408# Partial paths look like relative filenames. They do not begin
1409# with a prefix. The matching rules for partial paths are subtle but
57c9fafe 1410# designed to make specifying objects easy. At each level of the
eb6e8ea5
AL
1411# composition tree, the partial path is matched as an absolute path.
1412# The first match is not returned. At least two matches are searched
1413# for. A successful result is only returned if only one match is
1414# found. If more than one match is found, a flag is return to
1415# indicate that the match was ambiguous.
1416#
1417# @property: The property name to read
1418#
1419# Returns: The property value. The type depends on the property type. legacy<>
1420# properties are returned as #str. child<> and link<> properties are
1421# returns as #str pathnames. All integer property types (u8, u16, etc)
1422# are returned as #int.
1423#
1424# Since: 1.1
1425#
1426# Notes: This command is experimental and may change syntax in future releases.
1427##
1428{ 'command': 'qom-get',
1429 'data': { 'path': 'str', 'property': 'str' },
1430 'returns': 'visitor',
1431 'gen': 'no' }
1432
1433##
1434# @qom-set:
1435#
57c9fafe 1436# This command will set a property from a object model path.
eb6e8ea5
AL
1437#
1438# @path: see @qom-get for a description of this parameter
1439#
1440# @property: the property name to set
1441#
1442# @value: a value who's type is appropriate for the property type. See @qom-get
1443# for a description of type mapping.
1444#
1445# Since: 1.1
1446#
1447# Notes: This command is experimental and may change syntax in future releases.
1448##
1449{ 'command': 'qom-set',
1450 'data': { 'path': 'str', 'property': 'str', 'value': 'visitor' },
1451 'gen': 'no' }
fbf796fd
LC
1452
1453##
1454# @set_password:
1455#
1456# Sets the password of a remote display session.
1457#
1458# @protocol: `vnc' to modify the VNC server password
1459# `spice' to modify the Spice server password
1460#
1461# @password: the new password
1462#
1463# @connected: #optional how to handle existing clients when changing the
b80e560b 1464# password. If nothing is specified, defaults to `keep'
fbf796fd
LC
1465# `fail' to fail the command if clients are connected
1466# `disconnect' to disconnect existing clients
1467# `keep' to maintain existing clients
1468#
1469# Returns: Nothing on success
1470# If Spice is not enabled, DeviceNotFound
1471# If @protocol does not support connected, InvalidParameter
1472# If @protocol is invalid, InvalidParameter
1473# If any other error occurs, SetPasswdFailed
1474#
1475# Notes: If VNC is not enabled, SetPasswdFailed is returned.
1476#
1477# Since: 0.14.0
1478##
1479{ 'command': 'set_password',
1480 'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} }
9ad5372d
LC
1481
1482##
1483# @expire_password:
1484#
1485# Expire the password of a remote display server.
1486#
1487# @protocol: the name of the remote display protocol `vnc' or `spice'
1488#
1489# @time: when to expire the password.
1490# `now' to expire the password immediately
1491# `never' to cancel password expiration
1492# `+INT' where INT is the number of seconds from now (integer)
1493# `INT' where INT is the absolute time in seconds
1494#
1495# Returns: Nothing on success
1496# If @protocol is `spice' and Spice is not active, DeviceNotFound
1497# If an error occurs setting password expiration, SetPasswdFailed
1498# If @protocol is not `spice' or 'vnc', InvalidParameter
1499#
1500# Since: 0.14.0
1501#
1502# Notes: Time is relative to the server and currently there is no way to
1503# coordinate server time with client time. It is not recommended to
1504# use the absolute time version of the @time parameter unless you're
1505# sure you are on the same machine as the QEMU instance.
1506##
1507{ 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} }
c245b6a3
LC
1508
1509##
1510# @eject:
1511#
1512# Ejects a device from a removable drive.
1513#
1514# @device: The name of the device
1515#
1516# @force: @optional If true, eject regardless of whether the drive is locked.
1517# If not specified, the default value is false.
1518#
1519# Returns: Nothing on success
1520# If @device is not a valid block device, DeviceNotFound
1521# If @device is not removable and @force is false, DeviceNotRemovable
1522# If @force is false and @device is locked, DeviceLocked
1523#
1524# Notes: Ejecting a device will no media results in success
1525#
1526# Since: 0.14.0
1527##
1528{ 'command': 'eject', 'data': {'device': 'str', '*force': 'bool'} }
270b243f
LC
1529
1530##
1531# @change-vnc-password:
1532#
1533# Change the VNC server password.
1534#
1535# @target: the new password to use with VNC authentication
1536#
1537# Since: 1.1
1538#
1539# Notes: An empty password in this command will set the password to the empty
1540# string. Existing clients are unaffected by executing this command.
1541##
1542{ 'command': 'change-vnc-password', 'data': {'password': 'str'} }
333a96ec
LC
1543
1544##
1545# @change:
1546#
1547# This command is multiple commands multiplexed together.
1548#
1549# @device: This is normally the name of a block device but it may also be 'vnc'.
1550# when it's 'vnc', then sub command depends on @target
1551#
1552# @target: If @device is a block device, then this is the new filename.
1553# If @device is 'vnc', then if the value 'password' selects the vnc
1554# change password command. Otherwise, this specifies a new server URI
1555# address to listen to for VNC connections.
1556#
1557# @arg: If @device is a block device, then this is an optional format to open
1558# the device with.
1559# If @device is 'vnc' and @target is 'password', this is the new VNC
1560# password to set. If this argument is an empty string, then no future
1561# logins will be allowed.
1562#
1563# Returns: Nothing on success.
1564# If @device is not a valid block device, DeviceNotFound
1565# If @format is not a valid block format, InvalidBlockFormat
1566# If the new block device is encrypted, DeviceEncrypted. Note that
1567# if this error is returned, the device has been opened successfully
1568# and an additional call to @block_passwd is required to set the
1569# device's password. The behavior of reads and writes to the block
1570# device between when these calls are executed is undefined.
1571#
1572# Notes: It is strongly recommended that this interface is not used especially
1573# for changing block devices.
1574#
1575# Since: 0.14.0
1576##
1577{ 'command': 'change',
1578 'data': {'device': 'str', 'target': 'str', '*arg': 'str'} }
80047da5
LC
1579
1580##
1581# @block_set_io_throttle:
1582#
1583# Change I/O throttle limits for a block drive.
1584#
1585# @device: The name of the device
1586#
1587# @bps: total throughput limit in bytes per second
1588#
1589# @bps_rd: read throughput limit in bytes per second
1590#
1591# @bps_wr: write throughput limit in bytes per second
1592#
1593# @iops: total I/O operations per second
1594#
1595# @ops_rd: read I/O operations per second
1596#
1597# @iops_wr: write I/O operations per second
1598#
1599# Returns: Nothing on success
1600# If @device is not a valid block device, DeviceNotFound
1601# If the argument combination is invalid, InvalidParameterCombination
1602#
1603# Since: 1.1
b80e560b 1604##
80047da5
LC
1605{ 'command': 'block_set_io_throttle',
1606 'data': { 'device': 'str', 'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
1607 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int' } }
12bd451f 1608
db58f9c0
SH
1609##
1610# @block-stream:
12bd451f
SH
1611#
1612# Copy data from a backing file into a block device.
1613#
1614# The block streaming operation is performed in the background until the entire
1615# backing file has been copied. This command returns immediately once streaming
1616# has started. The status of ongoing block streaming operations can be checked
1617# with query-block-jobs. The operation can be stopped before it has completed
db58f9c0 1618# using the block-job-cancel command.
12bd451f
SH
1619#
1620# If a base file is specified then sectors are not copied from that base file and
1621# its backing chain. When streaming completes the image file will have the base
1622# file as its backing file. This can be used to stream a subset of the backing
1623# file chain instead of flattening the entire image.
1624#
1625# On successful completion the image file is updated to drop the backing file
1626# and the BLOCK_JOB_COMPLETED event is emitted.
1627#
1628# @device: the device name
1629#
1630# @base: #optional the common backing file name
1631#
c83c66c3
SH
1632# @speed: #optional the maximum speed, in bytes per second
1633#
12bd451f
SH
1634# Returns: Nothing on success
1635# If streaming is already active on this device, DeviceInUse
1636# If @device does not exist, DeviceNotFound
1637# If image streaming is not supported by this device, NotSupported
019b8cbf 1638# If @base does not exist, BaseNotFound
c83c66c3 1639# If @speed is invalid, InvalidParameter
12bd451f
SH
1640#
1641# Since: 1.1
1642##
c83c66c3
SH
1643{ 'command': 'block-stream', 'data': { 'device': 'str', '*base': 'str',
1644 '*speed': 'int' } }
2d47c6e9
SH
1645
1646##
db58f9c0 1647# @block-job-set-speed:
2d47c6e9
SH
1648#
1649# Set maximum speed for a background block operation.
1650#
1651# This command can only be issued when there is an active block job.
1652#
1653# Throttling can be disabled by setting the speed to 0.
1654#
1655# @device: the device name
1656#
c83c66c3
SH
1657# @speed: the maximum speed, in bytes per second, or 0 for unlimited.
1658# Defaults to 0.
2d47c6e9
SH
1659#
1660# Returns: Nothing on success
1661# If the job type does not support throttling, NotSupported
9e6636c7 1662# If the speed value is invalid, InvalidParameter
2d47c6e9
SH
1663# If streaming is not active on this device, DeviceNotActive
1664#
1665# Since: 1.1
1666##
db58f9c0 1667{ 'command': 'block-job-set-speed',
882ec7ce 1668 'data': { 'device': 'str', 'speed': 'int' } }
370521a1
SH
1669
1670##
db58f9c0 1671# @block-job-cancel:
370521a1
SH
1672#
1673# Stop an active block streaming operation.
1674#
1675# This command returns immediately after marking the active block streaming
1676# operation for cancellation. It is an error to call this command if no
1677# operation is in progress.
1678#
1679# The operation will cancel as soon as possible and then emit the
1680# BLOCK_JOB_CANCELLED event. Before that happens the job is still visible when
1681# enumerated using query-block-jobs.
1682#
1683# The image file retains its backing file unless the streaming operation happens
1684# to complete just as it is being cancelled.
1685#
1686# A new block streaming operation can be started at a later time to finish
1687# copying all data from the backing file.
1688#
1689# @device: the device name
1690#
1691# Returns: Nothing on success
1692# If streaming is not active on this device, DeviceNotActive
1693# If cancellation already in progress, DeviceInUse
1694#
1695# Since: 1.1
1696##
db58f9c0 1697{ 'command': 'block-job-cancel', 'data': { 'device': 'str' } }
5eeee3fa
AL
1698
1699##
1700# @ObjectTypeInfo:
1701#
1702# This structure describes a search result from @qom-list-types
1703#
1704# @name: the type name found in the search
1705#
1706# Since: 1.1
1707#
1708# Notes: This command is experimental and may change syntax in future releases.
1709##
1710{ 'type': 'ObjectTypeInfo',
1711 'data': { 'name': 'str' } }
1712
1713##
1714# @qom-list-types:
1715#
1716# This command will return a list of types given search parameters
1717#
1718# @implements: if specified, only return types that implement this type name
1719#
1720# @abstract: if true, include abstract types in the results
1721#
1722# Returns: a list of @ObjectTypeInfo or an empty list if no results are found
1723#
1724# Since: 1.1
1725#
1726# Notes: This command is experimental and may change syntax in future releases.
1727##
1728{ 'command': 'qom-list-types',
1729 'data': { '*implements': 'str', '*abstract': 'bool' },
1730 'returns': [ 'ObjectTypeInfo' ] }
e1c37d0e
LC
1731
1732##
1733# @migrate
1734#
1735# Migrates the current running guest to another Virtual Machine.
1736#
1737# @uri: the Uniform Resource Identifier of the destination VM
1738#
1739# @blk: #optional do block migration (full disk copy)
1740#
1741# @inc: #optional incremental disk copy migration
1742#
1743# @detach: this argument exists only for compatibility reasons and
1744# is ignored by QEMU
1745#
1746# Returns: nothing on success
1747#
1748# Since: 0.14.0
1749##
1750{ 'command': 'migrate',
1751 'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
33cf629a 1752
a7ae8355
SS
1753# @xen-save-devices-state:
1754#
1755# Save the state of all devices to file. The RAM and the block devices
1756# of the VM are not saved by this command.
1757#
1758# @filename: the file to save the state of the devices to as binary
1759# data. See xen-save-devices-state.txt for a description of the binary
1760# format.
1761#
1762# Returns: Nothing on success
1763# If @filename cannot be opened, OpenFileFailed
1764# If an I/O error occurs while writing the file, IOError
1765#
1766# Since: 1.1
1767##
1768{ 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} }
a15fef21
LC
1769
1770##
1771# @device_del:
1772#
1773# Remove a device from a guest
1774#
1775# @id: the name of the device
1776#
1777# Returns: Nothing on success
1778# If @id is not a valid device, DeviceNotFound
1779# If the device does not support unplug, BusNoHotplug
1780#
1781# Notes: When this command completes, the device may not be removed from the
1782# guest. Hot removal is an operation that requires guest cooperation.
1783# This command merely requests that the guest begin the hot removal
1784# process.
1785#
1786# Since: 0.14.0
1787##
1788{ 'command': 'device_del', 'data': {'id': 'str'} }
783e9b48
WC
1789
1790##
1791# @dump-guest-memory
1792#
1793# Dump guest's memory to vmcore. It is a synchronous operation that can take
1794# very long depending on the amount of guest memory. This command is only
f5b0d93b
LC
1795# supported on i386 and x86_64.
1796#
1797# @paging: if true, do paging to get guest's memory mapping. This allows
1798# using gdb to process the core file. However, setting @paging to false
1799# may be desirable because of two reasons:
1800#
1801# 1. The guest may be in a catastrophic state or can have corrupted
1802# memory, which cannot be trusted
1803# 2. The guest can be in real-mode even if paging is enabled. For example,
1804# the guest uses ACPI to sleep, and ACPI sleep state goes in real-mode
1805#
783e9b48 1806# @protocol: the filename or file descriptor of the vmcore. The supported
f5b0d93b
LC
1807# protocols are:
1808#
783e9b48
WC
1809# 1. file: the protocol starts with "file:", and the following string is
1810# the file's path.
1811# 2. fd: the protocol starts with "fd:", and the following string is the
1812# fd's name.
f5b0d93b 1813#
783e9b48 1814# @begin: #optional if specified, the starting physical address.
f5b0d93b 1815#
783e9b48 1816# @length: #optional if specified, the memory size, in bytes. If you don't
f5b0d93b 1817# want to dump all guest's memory, please specify the start @begin and @length
783e9b48
WC
1818#
1819# Returns: nothing on success
1820# If @begin contains an invalid address, InvalidParameter
1821# If only one of @begin and @length is specified, MissingParameter
1822# If @protocol stats with "fd:", and the fd cannot be found, FdNotFound
1823# If @protocol starts with "file:", and the file cannot be
f5b0d93b 1824# opened, OpenFileFailed
783e9b48
WC
1825# If @protocol does not start with "fd:" or "file:", InvalidParameter
1826# If an I/O error occurs while writing the file, IOError
1827# If the target does not support this command, Unsupported
1828#
1829# Since: 1.2
1830##
1831{ 'command': 'dump-guest-memory',
1832 'data': { 'paging': 'bool', 'protocol': 'str', '*begin': 'int',
1833 '*length': 'int' } }
928059a3
LC
1834##
1835# @netdev_add:
1836#
1837# Add a network backend.
1838#
1839# @type: the type of network backend. Current valid values are 'user', 'tap',
1840# 'vde', 'socket', 'dump' and 'bridge'
1841#
1842# @id: the name of the new network backend
1843#
1844# @props: #optional a list of properties to be passed to the backend in
1845# the format 'name=value', like 'ifname=tap0,script=no'
1846#
1847# Notes: The semantics of @props is not well defined. Future commands will be
1848# introduced that provide stronger typing for backend creation.
1849#
1850# Since: 0.14.0
1851#
1852# Returns: Nothing on success
1853# If @type is not a valid network backend, DeviceNotFound
1854# If @id is not a valid identifier, InvalidParameterValue
1855# if @id already exists, DuplicateId
1856# If @props contains an invalid parameter for this backend,
1857# InvalidParameter
1858##
1859{ 'command': 'netdev_add',
1860 'data': {'type': 'str', 'id': 'str', '*props': '**'},
1861 'gen': 'no' }
5f964155
LC
1862
1863##
1864# @netdev_del:
1865#
1866# Remove a network backend.
1867#
1868# @id: the name of the network backend to remove
1869#
1870# Returns: Nothing on success
1871# If @id is not a valid network backend, DeviceNotFound
1872#
1873# Since: 0.14.0
1874##
1875{ 'command': 'netdev_del', 'data': {'id': 'str'} }
208c9d1b 1876
14aa0c2d
LE
1877##
1878# @NetdevNoneOptions
1879#
1880# Use it alone to have zero network devices.
1881#
1882# Since 1.2
1883##
1884{ 'type': 'NetdevNoneOptions',
1885 'data': { } }
1886
1887##
1888# @NetLegacyNicOptions
1889#
1890# Create a new Network Interface Card.
1891#
1892# @netdev: #optional id of -netdev to connect to
1893#
1894# @macaddr: #optional MAC address
1895#
1896# @model: #optional device model (e1000, rtl8139, virtio etc.)
1897#
1898# @addr: #optional PCI device address
1899#
1900# @vectors: #optional number of MSI-x vectors, 0 to disable MSI-X
1901#
1902# Since 1.2
1903##
1904{ 'type': 'NetLegacyNicOptions',
1905 'data': {
1906 '*netdev': 'str',
1907 '*macaddr': 'str',
1908 '*model': 'str',
1909 '*addr': 'str',
1910 '*vectors': 'uint32' } }
1911
1912##
1913# @String
1914#
1915# A fat type wrapping 'str', to be embedded in lists.
1916#
1917# Since 1.2
1918##
1919{ 'type': 'String',
1920 'data': {
1921 'str': 'str' } }
1922
1923##
1924# @NetdevUserOptions
1925#
1926# Use the user mode network stack which requires no administrator privilege to
1927# run.
1928#
1929# @hostname: #optional client hostname reported by the builtin DHCP server
1930#
1931# @restrict: #optional isolate the guest from the host
1932#
1933# @ip: #optional legacy parameter, use net= instead
1934#
1935# @net: #optional IP address and optional netmask
1936#
1937# @host: #optional guest-visible address of the host
1938#
1939# @tftp: #optional root directory of the built-in TFTP server
1940#
1941# @bootfile: #optional BOOTP filename, for use with tftp=
1942#
1943# @dhcpstart: #optional the first of the 16 IPs the built-in DHCP server can
1944# assign
1945#
1946# @dns: #optional guest-visible address of the virtual nameserver
1947#
1948# @smb: #optional root directory of the built-in SMB server
1949#
1950# @smbserver: #optional IP address of the built-in SMB server
1951#
1952# @hostfwd: #optional redirect incoming TCP or UDP host connections to guest
1953# endpoints
1954#
1955# @guestfwd: #optional forward guest TCP connections
1956#
1957# Since 1.2
1958##
1959{ 'type': 'NetdevUserOptions',
1960 'data': {
1961 '*hostname': 'str',
1962 '*restrict': 'bool',
1963 '*ip': 'str',
1964 '*net': 'str',
1965 '*host': 'str',
1966 '*tftp': 'str',
1967 '*bootfile': 'str',
1968 '*dhcpstart': 'str',
1969 '*dns': 'str',
1970 '*smb': 'str',
1971 '*smbserver': 'str',
1972 '*hostfwd': ['String'],
1973 '*guestfwd': ['String'] } }
1974
1975##
1976# @NetdevTapOptions
1977#
1978# Connect the host TAP network interface name to the VLAN.
1979#
1980# @ifname: #optional interface name
1981#
1982# @fd: #optional file descriptor of an already opened tap
1983#
1984# @script: #optional script to initialize the interface
1985#
1986# @downscript: #optional script to shut down the interface
1987#
1988# @helper: #optional command to execute to configure bridge
1989#
1990# @sndbuf: #optional send buffer limit. Understands [TGMKkb] suffixes.
1991#
1992# @vnet_hdr: #optional enable the IFF_VNET_HDR flag on the tap interface
1993#
1994# @vhost: #optional enable vhost-net network accelerator
1995#
1996# @vhostfd: #optional file descriptor of an already opened vhost net device
1997#
1998# @vhostforce: #optional vhost on for non-MSIX virtio guests
1999#
2000# Since 1.2
2001##
2002{ 'type': 'NetdevTapOptions',
2003 'data': {
2004 '*ifname': 'str',
2005 '*fd': 'str',
2006 '*script': 'str',
2007 '*downscript': 'str',
2008 '*helper': 'str',
2009 '*sndbuf': 'size',
2010 '*vnet_hdr': 'bool',
2011 '*vhost': 'bool',
2012 '*vhostfd': 'str',
2013 '*vhostforce': 'bool' } }
2014
2015##
2016# @NetdevSocketOptions
2017#
2018# Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP
2019# socket connection.
2020#
2021# @fd: #optional file descriptor of an already opened socket
2022#
2023# @listen: #optional port number, and optional hostname, to listen on
2024#
2025# @connect: #optional port number, and optional hostname, to connect to
2026#
2027# @mcast: #optional UDP multicast address and port number
2028#
2029# @localaddr: #optional source address and port for multicast and udp packets
2030#
2031# @udp: #optional UDP unicast address and port number
2032#
2033# Since 1.2
2034##
2035{ 'type': 'NetdevSocketOptions',
2036 'data': {
2037 '*fd': 'str',
2038 '*listen': 'str',
2039 '*connect': 'str',
2040 '*mcast': 'str',
2041 '*localaddr': 'str',
2042 '*udp': 'str' } }
2043
2044##
2045# @NetdevVdeOptions
2046#
2047# Connect the VLAN to a vde switch running on the host.
2048#
2049# @sock: #optional socket path
2050#
2051# @port: #optional port number
2052#
2053# @group: #optional group owner of socket
2054#
2055# @mode: #optional permissions for socket
2056#
2057# Since 1.2
2058##
2059{ 'type': 'NetdevVdeOptions',
2060 'data': {
2061 '*sock': 'str',
2062 '*port': 'uint16',
2063 '*group': 'str',
2064 '*mode': 'uint16' } }
2065
2066##
2067# @NetdevDumpOptions
2068#
2069# Dump VLAN network traffic to a file.
2070#
2071# @len: #optional per-packet size limit (64k default). Understands [TGMKkb]
2072# suffixes.
2073#
2074# @file: #optional dump file path (default is qemu-vlan0.pcap)
2075#
2076# Since 1.2
2077##
2078{ 'type': 'NetdevDumpOptions',
2079 'data': {
2080 '*len': 'size',
2081 '*file': 'str' } }
2082
2083##
2084# @NetdevBridgeOptions
2085#
2086# Connect a host TAP network interface to a host bridge device.
2087#
2088# @br: #optional bridge name
2089#
2090# @helper: #optional command to execute to configure bridge
2091#
2092# Since 1.2
2093##
2094{ 'type': 'NetdevBridgeOptions',
2095 'data': {
2096 '*br': 'str',
2097 '*helper': 'str' } }
2098
f6c874e3
SH
2099##
2100# @NetdevHubPortOptions
2101#
2102# Connect two or more net clients through a software hub.
2103#
2104# @hubid: hub identifier number
2105#
2106# Since 1.2
2107##
2108{ 'type': 'NetdevHubPortOptions',
2109 'data': {
2110 'hubid': 'int32' } }
2111
14aa0c2d
LE
2112##
2113# @NetClientOptions
2114#
2115# A discriminated record of network device traits.
2116#
2117# Since 1.2
2118##
2119{ 'union': 'NetClientOptions',
2120 'data': {
f6c874e3
SH
2121 'none': 'NetdevNoneOptions',
2122 'nic': 'NetLegacyNicOptions',
2123 'user': 'NetdevUserOptions',
2124 'tap': 'NetdevTapOptions',
2125 'socket': 'NetdevSocketOptions',
2126 'vde': 'NetdevVdeOptions',
2127 'dump': 'NetdevDumpOptions',
2128 'bridge': 'NetdevBridgeOptions',
2129 'hubport': 'NetdevHubPortOptions' } }
14aa0c2d
LE
2130
2131##
2132# @NetLegacy
2133#
2134# Captures the configuration of a network device; legacy.
2135#
2136# @vlan: #optional vlan number
2137#
2138# @id: #optional identifier for monitor commands
2139#
2140# @name: #optional identifier for monitor commands, ignored if @id is present
2141#
2142# @opts: device type specific properties (legacy)
2143#
2144# Since 1.2
2145##
2146{ 'type': 'NetLegacy',
2147 'data': {
2148 '*vlan': 'int32',
2149 '*id': 'str',
2150 '*name': 'str',
2151 'opts': 'NetClientOptions' } }
2152
2153##
2154# @Netdev
2155#
2156# Captures the configuration of a network device.
2157#
2158# @id: identifier for monitor commands.
2159#
2160# @opts: device type specific properties
2161#
2162# Since 1.2
2163##
2164{ 'type': 'Netdev',
2165 'data': {
2166 'id': 'str',
2167 'opts': 'NetClientOptions' } }
2168
208c9d1b
CB
2169##
2170# @getfd:
2171#
2172# Receive a file descriptor via SCM rights and assign it a name
2173#
2174# @fdname: file descriptor name
2175#
2176# Returns: Nothing on success
2177# If file descriptor was not received, FdNotSupplied
2178# If @fdname is not valid, InvalidParameterType
2179#
2180# Since: 0.14.0
2181#
2182# Notes: If @fdname already exists, the file descriptor assigned to
2183# it will be closed and replaced by the received file
2184# descriptor.
2185# The 'closefd' command can be used to explicitly close the
2186# file descriptor when it is no longer needed.
2187##
2188{ 'command': 'getfd', 'data': {'fdname': 'str'} }
2189
2190##
2191# @closefd:
2192#
2193# Close a file descriptor previously passed via SCM rights
2194#
2195# @fdname: file descriptor name
2196#
2197# Returns: Nothing on success
2198# If @fdname is not found, FdNotFound
2199#
2200# Since: 0.14.0
2201##
2202{ 'command': 'closefd', 'data': {'fdname': 'str'} }