target-arm: Report a valid L1Ip field in CTR_EL0 for CPU type "any"
[qemu.git] / qapi-schema.json
blob24379ab3af8e363a9f84b4771b505a860d476a08
1 # -*- Mode: Python -*-
3 # QAPI Schema
5 # QAPI common definitions
6 { 'include': 'qapi/common.json' }
8 # QAPI block definitions
9 { 'include': 'qapi/block.json' }
11 # QAPI event definitions
12 { 'include': 'qapi/event.json' }
14 # Tracing commands
15 { 'include': 'qapi/trace.json' }
18 # LostTickPolicy:
20 # Policy for handling lost ticks in timer devices.
22 # @discard: throw away the missed tick(s) and continue with future injection
23 #           normally.  Guest time may be delayed, unless the OS has explicit
24 #           handling of lost ticks
26 # @delay: continue to deliver ticks at the normal rate.  Guest time will be
27 #         delayed due to the late tick
29 # @merge: merge the missed tick(s) into one tick and inject.  Guest time
30 #         may be delayed, depending on how the OS reacts to the merging
31 #         of ticks
33 # @slew: deliver ticks at a higher rate to catch up with the missed tick. The
34 #        guest time should not be delayed once catchup is complete.
36 # Since: 2.0
38 { 'enum': 'LostTickPolicy',
39   'data': ['discard', 'delay', 'merge', 'slew' ] }
41 # @add_client
43 # Allow client connections for VNC, Spice and socket based
44 # character devices to be passed in to QEMU via SCM_RIGHTS.
46 # @protocol: protocol name. Valid names are "vnc", "spice" or the
47 #            name of a character device (eg. from -chardev id=XXXX)
49 # @fdname: file descriptor name previously passed via 'getfd' command
51 # @skipauth: #optional whether to skip authentication. Only applies
52 #            to "vnc" and "spice" protocols
54 # @tls: #optional whether to perform TLS. Only applies to the "spice"
55 #       protocol
57 # Returns: nothing on success.
59 # Since: 0.14.0
61 { 'command': 'add_client',
62   'data': { 'protocol': 'str', 'fdname': 'str', '*skipauth': 'bool',
63             '*tls': 'bool' } }
66 # @NameInfo:
68 # Guest name information.
70 # @name: #optional The name of the guest
72 # Since 0.14.0
74 { 'type': 'NameInfo', 'data': {'*name': 'str'} }
77 # @query-name:
79 # Return the name information of a guest.
81 # Returns: @NameInfo of the guest
83 # Since 0.14.0
85 { 'command': 'query-name', 'returns': 'NameInfo' }
88 # @KvmInfo:
90 # Information about support for KVM acceleration
92 # @enabled: true if KVM acceleration is active
94 # @present: true if KVM acceleration is built into this executable
96 # Since: 0.14.0
98 { 'type': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} }
101 # @query-kvm:
103 # Returns information about KVM acceleration
105 # Returns: @KvmInfo
107 # Since: 0.14.0
109 { 'command': 'query-kvm', 'returns': 'KvmInfo' }
112 # @RunState
114 # An enumeration of VM run states.
116 # @debug: QEMU is running on a debugger
118 # @finish-migrate: guest is paused to finish the migration process
120 # @inmigrate: guest is paused waiting for an incoming migration.  Note
121 # that this state does not tell whether the machine will start at the
122 # end of the migration.  This depends on the command-line -S option and
123 # any invocation of 'stop' or 'cont' that has happened since QEMU was
124 # started.
126 # @internal-error: An internal error that prevents further guest execution
127 # has occurred
129 # @io-error: the last IOP has failed and the device is configured to pause
130 # on I/O errors
132 # @paused: guest has been paused via the 'stop' command
134 # @postmigrate: guest is paused following a successful 'migrate'
136 # @prelaunch: QEMU was started with -S and guest has not started
138 # @restore-vm: guest is paused to restore VM state
140 # @running: guest is actively running
142 # @save-vm: guest is paused to save the VM state
144 # @shutdown: guest is shut down (and -no-shutdown is in use)
146 # @suspended: guest is suspended (ACPI S3)
148 # @watchdog: the watchdog action is configured to pause and has been triggered
150 # @guest-panicked: guest has been panicked as a result of guest OS panic
152 { 'enum': 'RunState',
153   'data': [ 'debug', 'inmigrate', 'internal-error', 'io-error', 'paused',
154             'postmigrate', 'prelaunch', 'finish-migrate', 'restore-vm',
155             'running', 'save-vm', 'shutdown', 'suspended', 'watchdog',
156             'guest-panicked' ] }
159 # @StatusInfo:
161 # Information about VCPU run state
163 # @running: true if all VCPUs are runnable, false if not runnable
165 # @singlestep: true if VCPUs are in single-step mode
167 # @status: the virtual machine @RunState
169 # Since:  0.14.0
171 # Notes: @singlestep is enabled through the GDB stub
173 { 'type': 'StatusInfo',
174   'data': {'running': 'bool', 'singlestep': 'bool', 'status': 'RunState'} }
177 # @query-status:
179 # Query the run status of all VCPUs
181 # Returns: @StatusInfo reflecting all VCPUs
183 # Since:  0.14.0
185 { 'command': 'query-status', 'returns': 'StatusInfo' }
188 # @UuidInfo:
190 # Guest UUID information.
192 # @UUID: the UUID of the guest
194 # Since: 0.14.0
196 # Notes: If no UUID was specified for the guest, a null UUID is returned.
198 { 'type': 'UuidInfo', 'data': {'UUID': 'str'} }
201 # @query-uuid:
203 # Query the guest UUID information.
205 # Returns: The @UuidInfo for the guest
207 # Since 0.14.0
209 { 'command': 'query-uuid', 'returns': 'UuidInfo' }
212 # @ChardevInfo:
214 # Information about a character device.
216 # @label: the label of the character device
218 # @filename: the filename of the character device
220 # @frontend-open: shows whether the frontend device attached to this backend
221 #                 (eg. with the chardev=... option) is in open or closed state
222 #                 (since 2.1)
224 # Notes: @filename is encoded using the QEMU command line character device
225 #        encoding.  See the QEMU man page for details.
227 # Since: 0.14.0
229 { 'type': 'ChardevInfo', 'data': {'label': 'str',
230                                   'filename': 'str',
231                                   'frontend-open': 'bool'} }
234 # @query-chardev:
236 # Returns information about current character devices.
238 # Returns: a list of @ChardevInfo
240 # Since: 0.14.0
242 { 'command': 'query-chardev', 'returns': ['ChardevInfo'] }
245 # @ChardevBackendInfo:
247 # Information about a character device backend
249 # @name: The backend name
251 # Since: 2.0
253 { 'type': 'ChardevBackendInfo', 'data': {'name': 'str'} }
256 # @query-chardev-backends:
258 # Returns information about character device backends.
260 # Returns: a list of @ChardevBackendInfo
262 # Since: 2.0
264 { 'command': 'query-chardev-backends', 'returns': ['ChardevBackendInfo'] }
267 # @DataFormat:
269 # An enumeration of data format.
271 # @utf8: Data is a UTF-8 string (RFC 3629)
273 # @base64: Data is Base64 encoded binary (RFC 3548)
275 # Since: 1.4
277 { 'enum': 'DataFormat',
278   'data': [ 'utf8', 'base64' ] }
281 # @ringbuf-write:
283 # Write to a ring buffer character device.
285 # @device: the ring buffer character device name
287 # @data: data to write
289 # @format: #optional data encoding (default 'utf8').
290 #          - base64: data must be base64 encoded text.  Its binary
291 #            decoding gets written.
292 #            Bug: invalid base64 is currently not rejected.
293 #            Whitespace *is* invalid.
294 #          - utf8: data's UTF-8 encoding is written
295 #          - data itself is always Unicode regardless of format, like
296 #            any other string.
298 # Returns: Nothing on success
300 # Since: 1.4
302 { 'command': 'ringbuf-write',
303   'data': {'device': 'str', 'data': 'str',
304            '*format': 'DataFormat'} }
307 # @ringbuf-read:
309 # Read from a ring buffer character device.
311 # @device: the ring buffer character device name
313 # @size: how many bytes to read at most
315 # @format: #optional data encoding (default 'utf8').
316 #          - base64: the data read is returned in base64 encoding.
317 #          - utf8: the data read is interpreted as UTF-8.
318 #            Bug: can screw up when the buffer contains invalid UTF-8
319 #            sequences, NUL characters, after the ring buffer lost
320 #            data, and when reading stops because the size limit is
321 #            reached.
322 #          - The return value is always Unicode regardless of format,
323 #            like any other string.
325 # Returns: data read from the device
327 # Since: 1.4
329 { 'command': 'ringbuf-read',
330   'data': {'device': 'str', 'size': 'int', '*format': 'DataFormat'},
331   'returns': 'str' }
334 # @EventInfo:
336 # Information about a QMP event
338 # @name: The event name
340 # Since: 1.2.0
342 { 'type': 'EventInfo', 'data': {'name': 'str'} }
345 # @query-events:
347 # Return a list of supported QMP events by this server
349 # Returns: A list of @EventInfo for all supported events
351 # Since: 1.2.0
353 { 'command': 'query-events', 'returns': ['EventInfo'] }
356 # @MigrationStats
358 # Detailed migration status.
360 # @transferred: amount of bytes already transferred to the target VM
362 # @remaining: amount of bytes remaining to be transferred to the target VM
364 # @total: total amount of bytes involved in the migration process
366 # @duplicate: number of duplicate (zero) pages (since 1.2)
368 # @skipped: number of skipped zero pages (since 1.5)
370 # @normal : number of normal pages (since 1.2)
372 # @normal-bytes: number of normal bytes sent (since 1.2)
374 # @dirty-pages-rate: number of pages dirtied by second by the
375 #        guest (since 1.3)
377 # @mbps: throughput in megabits/sec. (since 1.6)
379 # @dirty-sync-count: number of times that dirty ram was synchronized (since 2.1)
381 # Since: 0.14.0
383 { 'type': 'MigrationStats',
384   'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' ,
385            'duplicate': 'int', 'skipped': 'int', 'normal': 'int',
386            'normal-bytes': 'int', 'dirty-pages-rate' : 'int',
387            'mbps' : 'number', 'dirty-sync-count' : 'int' } }
390 # @XBZRLECacheStats
392 # Detailed XBZRLE migration cache statistics
394 # @cache-size: XBZRLE cache size
396 # @bytes: amount of bytes already transferred to the target VM
398 # @pages: amount of pages transferred to the target VM
400 # @cache-miss: number of cache miss
402 # @cache-miss-rate: rate of cache miss (since 2.1)
404 # @overflow: number of overflows
406 # Since: 1.2
408 { 'type': 'XBZRLECacheStats',
409   'data': {'cache-size': 'int', 'bytes': 'int', 'pages': 'int',
410            'cache-miss': 'int', 'cache-miss-rate': 'number',
411            'overflow': 'int' } }
414 # @MigrationInfo
416 # Information about current migration process.
418 # @status: #optional string describing the current migration status.
419 #          As of 0.14.0 this can be 'setup', 'active', 'completed', 'failed' or
420 #          'cancelled'. If this field is not returned, no migration process
421 #          has been initiated
423 # @ram: #optional @MigrationStats containing detailed migration
424 #       status, only returned if status is 'active' or
425 #       'completed'. 'comppleted' (since 1.2)
427 # @disk: #optional @MigrationStats containing detailed disk migration
428 #        status, only returned if status is 'active' and it is a block
429 #        migration
431 # @xbzrle-cache: #optional @XBZRLECacheStats containing detailed XBZRLE
432 #                migration statistics, only returned if XBZRLE feature is on and
433 #                status is 'active' or 'completed' (since 1.2)
435 # @total-time: #optional total amount of milliseconds since migration started.
436 #        If migration has ended, it returns the total migration
437 #        time. (since 1.2)
439 # @downtime: #optional only present when migration finishes correctly
440 #        total downtime in milliseconds for the guest.
441 #        (since 1.3)
443 # @expected-downtime: #optional only present while migration is active
444 #        expected downtime in milliseconds for the guest in last walk
445 #        of the dirty bitmap. (since 1.3)
447 # @setup-time: #optional amount of setup time in milliseconds _before_ the
448 #        iterations begin but _after_ the QMP command is issued. This is designed
449 #        to provide an accounting of any activities (such as RDMA pinning) which
450 #        may be expensive, but do not actually occur during the iterative
451 #        migration rounds themselves. (since 1.6)
453 # Since: 0.14.0
455 { 'type': 'MigrationInfo',
456   'data': {'*status': 'str', '*ram': 'MigrationStats',
457            '*disk': 'MigrationStats',
458            '*xbzrle-cache': 'XBZRLECacheStats',
459            '*total-time': 'int',
460            '*expected-downtime': 'int',
461            '*downtime': 'int',
462            '*setup-time': 'int'} }
465 # @query-migrate
467 # Returns information about current migration process.
469 # Returns: @MigrationInfo
471 # Since: 0.14.0
473 { 'command': 'query-migrate', 'returns': 'MigrationInfo' }
476 # @MigrationCapability
478 # Migration capabilities enumeration
480 # @xbzrle: Migration supports xbzrle (Xor Based Zero Run Length Encoding).
481 #          This feature allows us to minimize migration traffic for certain work
482 #          loads, by sending compressed difference of the pages
484 # @rdma-pin-all: Controls whether or not the entire VM memory footprint is
485 #          mlock()'d on demand or all at once. Refer to docs/rdma.txt for usage.
486 #          Disabled by default. (since 2.0)
488 # @zero-blocks: During storage migration encode blocks of zeroes efficiently. This
489 #          essentially saves 1MB of zeroes per block on the wire. Enabling requires
490 #          source and target VM to support this feature. To enable it is sufficient
491 #          to enable the capability on the source VM. The feature is disabled by
492 #          default. (since 1.6)
494 # @auto-converge: If enabled, QEMU will automatically throttle down the guest
495 #          to speed up convergence of RAM migration. (since 1.6)
497 # Since: 1.2
499 { 'enum': 'MigrationCapability',
500   'data': ['xbzrle', 'rdma-pin-all', 'auto-converge', 'zero-blocks'] }
503 # @MigrationCapabilityStatus
505 # Migration capability information
507 # @capability: capability enum
509 # @state: capability state bool
511 # Since: 1.2
513 { 'type': 'MigrationCapabilityStatus',
514   'data': { 'capability' : 'MigrationCapability', 'state' : 'bool' } }
517 # @migrate-set-capabilities
519 # Enable/Disable the following migration capabilities (like xbzrle)
521 # @capabilities: json array of capability modifications to make
523 # Since: 1.2
525 { 'command': 'migrate-set-capabilities',
526   'data': { 'capabilities': ['MigrationCapabilityStatus'] } }
529 # @query-migrate-capabilities
531 # Returns information about the current migration capabilities status
533 # Returns: @MigrationCapabilitiesStatus
535 # Since: 1.2
537 { 'command': 'query-migrate-capabilities', 'returns':   ['MigrationCapabilityStatus']}
540 # @MouseInfo:
542 # Information about a mouse device.
544 # @name: the name of the mouse device
546 # @index: the index of the mouse device
548 # @current: true if this device is currently receiving mouse events
550 # @absolute: true if this device supports absolute coordinates as input
552 # Since: 0.14.0
554 { 'type': 'MouseInfo',
555   'data': {'name': 'str', 'index': 'int', 'current': 'bool',
556            'absolute': 'bool'} }
559 # @query-mice:
561 # Returns information about each active mouse device
563 # Returns: a list of @MouseInfo for each device
565 # Since: 0.14.0
567 { 'command': 'query-mice', 'returns': ['MouseInfo'] }
570 # @CpuInfo:
572 # Information about a virtual CPU
574 # @CPU: the index of the virtual CPU
576 # @current: this only exists for backwards compatible and should be ignored
578 # @halted: true if the virtual CPU is in the halt state.  Halt usually refers
579 #          to a processor specific low power mode.
581 # @pc: #optional If the target is i386 or x86_64, this is the 64-bit instruction
582 #                pointer.
583 #                If the target is Sparc, this is the PC component of the
584 #                instruction pointer.
586 # @nip: #optional If the target is PPC, the instruction pointer
588 # @npc: #optional If the target is Sparc, the NPC component of the instruction
589 #                 pointer
591 # @PC: #optional If the target is MIPS, the instruction pointer
593 # @thread_id: ID of the underlying host thread
595 # Since: 0.14.0
597 # Notes: @halted is a transient state that changes frequently.  By the time the
598 #        data is sent to the client, the guest may no longer be halted.
600 { 'type': 'CpuInfo',
601   'data': {'CPU': 'int', 'current': 'bool', 'halted': 'bool', '*pc': 'int',
602            '*nip': 'int', '*npc': 'int', '*PC': 'int', 'thread_id': 'int'} }
605 # @query-cpus:
607 # Returns a list of information about each virtual CPU.
609 # Returns: a list of @CpuInfo for each virtual CPU
611 # Since: 0.14.0
613 { 'command': 'query-cpus', 'returns': ['CpuInfo'] }
616 # @IOThreadInfo:
618 # Information about an iothread
620 # @id: the identifier of the iothread
622 # @thread-id: ID of the underlying host thread
624 # Since: 2.0
626 { 'type': 'IOThreadInfo',
627   'data': {'id': 'str', 'thread-id': 'int'} }
630 # @query-iothreads:
632 # Returns a list of information about each iothread.
634 # Note this list excludes the QEMU main loop thread, which is not declared
635 # using the -object iothread command-line option.  It is always the main thread
636 # of the process.
638 # Returns: a list of @IOThreadInfo for each iothread
640 # Since: 2.0
642 { 'command': 'query-iothreads', 'returns': ['IOThreadInfo'] }
645 # @NetworkAddressFamily
647 # The network address family
649 # @ipv4: IPV4 family
651 # @ipv6: IPV6 family
653 # @unix: unix socket
655 # @unknown: otherwise
657 # Since: 2.1
659 { 'enum': 'NetworkAddressFamily',
660   'data': [ 'ipv4', 'ipv6', 'unix', 'unknown' ] }
663 # @VncBasicInfo
665 # The basic information for vnc network connection
667 # @host: IP address
669 # @service: The service name of the vnc port. This may depend on the host
670 #           system's service database so symbolic names should not be relied
671 #           on.
673 # @family: address family
675 # Since: 2.1
677 { 'type': 'VncBasicInfo',
678   'data': { 'host': 'str',
679             'service': 'str',
680             'family': 'NetworkAddressFamily' } }
683 # @VncServerInfo
685 # The network connection information for server
687 # @auth: #optional, authentication method
689 # Since: 2.1
691 { 'type': 'VncServerInfo',
692   'base': 'VncBasicInfo',
693   'data': { '*auth': 'str' } }
696 # @VncClientInfo:
698 # Information about a connected VNC client.
700 # @x509_dname: #optional If x509 authentication is in use, the Distinguished
701 #              Name of the client.
703 # @sasl_username: #optional If SASL authentication is in use, the SASL username
704 #                 used for authentication.
706 # Since: 0.14.0
708 { 'type': 'VncClientInfo',
709   'base': 'VncBasicInfo',
710   'data': { '*x509_dname': 'str', '*sasl_username': 'str' } }
713 # @VncInfo:
715 # Information about the VNC session.
717 # @enabled: true if the VNC server is enabled, false otherwise
719 # @host: #optional The hostname the VNC server is bound to.  This depends on
720 #        the name resolution on the host and may be an IP address.
722 # @family: #optional 'ipv6' if the host is listening for IPv6 connections
723 #                    'ipv4' if the host is listening for IPv4 connections
724 #                    'unix' if the host is listening on a unix domain socket
725 #                    'unknown' otherwise
727 # @service: #optional The service name of the server's port.  This may depends
728 #           on the host system's service database so symbolic names should not
729 #           be relied on.
731 # @auth: #optional the current authentication type used by the server
732 #        'none' if no authentication is being used
733 #        'vnc' if VNC authentication is being used
734 #        'vencrypt+plain' if VEncrypt is used with plain text authentication
735 #        'vencrypt+tls+none' if VEncrypt is used with TLS and no authentication
736 #        'vencrypt+tls+vnc' if VEncrypt is used with TLS and VNC authentication
737 #        'vencrypt+tls+plain' if VEncrypt is used with TLS and plain text auth
738 #        'vencrypt+x509+none' if VEncrypt is used with x509 and no auth
739 #        'vencrypt+x509+vnc' if VEncrypt is used with x509 and VNC auth
740 #        'vencrypt+x509+plain' if VEncrypt is used with x509 and plain text auth
741 #        'vencrypt+tls+sasl' if VEncrypt is used with TLS and SASL auth
742 #        'vencrypt+x509+sasl' if VEncrypt is used with x509 and SASL auth
744 # @clients: a list of @VncClientInfo of all currently connected clients
746 # Since: 0.14.0
748 { 'type': 'VncInfo',
749   'data': {'enabled': 'bool', '*host': 'str',
750            '*family': 'NetworkAddressFamily',
751            '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']} }
754 # @query-vnc:
756 # Returns information about the current VNC server
758 # Returns: @VncInfo
760 # Since: 0.14.0
762 { 'command': 'query-vnc', 'returns': 'VncInfo' }
765 # @SpiceBasicInfo
767 # The basic information for SPICE network connection
769 # @host: IP address
771 # @port: port number
773 # @family: address family
775 # Since: 2.1
777 { 'type': 'SpiceBasicInfo',
778   'data': { 'host': 'str',
779             'port': 'str',
780             'family': 'NetworkAddressFamily' } }
783 # @SpiceServerInfo
785 # Information about a SPICE server
787 # @auth: #optional, authentication method
789 # Since: 2.1
791 { 'type': 'SpiceServerInfo',
792   'base': 'SpiceBasicInfo',
793   'data': { '*auth': 'str' } }
796 # @SpiceChannel
798 # Information about a SPICE client channel.
800 # @connection-id: SPICE connection id number.  All channels with the same id
801 #                 belong to the same SPICE session.
803 # @connection-type: SPICE channel type number.  "1" is the main control
804 #                   channel, filter for this one if you want to track spice
805 #                   sessions only
807 # @channel-id: SPICE channel ID number.  Usually "0", might be different when
808 #              multiple channels of the same type exist, such as multiple
809 #              display channels in a multihead setup
811 # @tls: true if the channel is encrypted, false otherwise.
813 # Since: 0.14.0
815 { 'type': 'SpiceChannel',
816   'base': 'SpiceBasicInfo',
817   'data': {'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int',
818            'tls': 'bool'} }
821 # @SpiceQueryMouseMode
823 # An enumeration of Spice mouse states.
825 # @client: Mouse cursor position is determined by the client.
827 # @server: Mouse cursor position is determined by the server.
829 # @unknown: No information is available about mouse mode used by
830 #           the spice server.
832 # Note: spice/enums.h has a SpiceMouseMode already, hence the name.
834 # Since: 1.1
836 { 'enum': 'SpiceQueryMouseMode',
837   'data': [ 'client', 'server', 'unknown' ] }
840 # @SpiceInfo
842 # Information about the SPICE session.
844 # @enabled: true if the SPICE server is enabled, false otherwise
846 # @migrated: true if the last guest migration completed and spice
847 #            migration had completed as well. false otherwise.
849 # @host: #optional The hostname the SPICE server is bound to.  This depends on
850 #        the name resolution on the host and may be an IP address.
852 # @port: #optional The SPICE server's port number.
854 # @compiled-version: #optional SPICE server version.
856 # @tls-port: #optional The SPICE server's TLS port number.
858 # @auth: #optional the current authentication type used by the server
859 #        'none'  if no authentication is being used
860 #        'spice' uses SASL or direct TLS authentication, depending on command
861 #                line options
863 # @mouse-mode: The mode in which the mouse cursor is displayed currently. Can
864 #              be determined by the client or the server, or unknown if spice
865 #              server doesn't provide this information.
867 #              Since: 1.1
869 # @channels: a list of @SpiceChannel for each active spice channel
871 # Since: 0.14.0
873 { 'type': 'SpiceInfo',
874   'data': {'enabled': 'bool', 'migrated': 'bool', '*host': 'str', '*port': 'int',
875            '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
876            'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} }
879 # @query-spice
881 # Returns information about the current SPICE server
883 # Returns: @SpiceInfo
885 # Since: 0.14.0
887 { 'command': 'query-spice', 'returns': 'SpiceInfo' }
890 # @BalloonInfo:
892 # Information about the guest balloon device.
894 # @actual: the number of bytes the balloon currently contains
896 # Since: 0.14.0
899 { 'type': 'BalloonInfo', 'data': {'actual': 'int' } }
902 # @query-balloon:
904 # Return information about the balloon device.
906 # Returns: @BalloonInfo on success
907 #          If the balloon driver is enabled but not functional because the KVM
908 #          kernel module cannot support it, KvmMissingCap
909 #          If no balloon device is present, DeviceNotActive
911 # Since: 0.14.0
913 { 'command': 'query-balloon', 'returns': 'BalloonInfo' }
916 # @PciMemoryRange:
918 # A PCI device memory region
920 # @base: the starting address (guest physical)
922 # @limit: the ending address (guest physical)
924 # Since: 0.14.0
926 { 'type': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} }
929 # @PciMemoryRegion
931 # Information about a PCI device I/O region.
933 # @bar: the index of the Base Address Register for this region
935 # @type: 'io' if the region is a PIO region
936 #        'memory' if the region is a MMIO region
938 # @prefetch: #optional if @type is 'memory', true if the memory is prefetchable
940 # @mem_type_64: #optional if @type is 'memory', true if the BAR is 64-bit
942 # Since: 0.14.0
944 { 'type': 'PciMemoryRegion',
945   'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int',
946            '*prefetch': 'bool', '*mem_type_64': 'bool' } }
949 # @PciBridgeInfo:
951 # Information about a PCI Bridge device
953 # @bus.number: primary bus interface number.  This should be the number of the
954 #              bus the device resides on.
956 # @bus.secondary: secondary bus interface number.  This is the number of the
957 #                 main bus for the bridge
959 # @bus.subordinate: This is the highest number bus that resides below the
960 #                   bridge.
962 # @bus.io_range: The PIO range for all devices on this bridge
964 # @bus.memory_range: The MMIO range for all devices on this bridge
966 # @bus.prefetchable_range: The range of prefetchable MMIO for all devices on
967 #                          this bridge
969 # @devices: a list of @PciDeviceInfo for each device on this bridge
971 # Since: 0.14.0
973 { 'type': 'PciBridgeInfo',
974   'data': {'bus': { 'number': 'int', 'secondary': 'int', 'subordinate': 'int',
975                     'io_range': 'PciMemoryRange',
976                     'memory_range': 'PciMemoryRange',
977                     'prefetchable_range': 'PciMemoryRange' },
978            '*devices': ['PciDeviceInfo']} }
981 # @PciDeviceInfo:
983 # Information about a PCI device
985 # @bus: the bus number of the device
987 # @slot: the slot the device is located in
989 # @function: the function of the slot used by the device
991 # @class_info.desc: #optional a string description of the device's class
993 # @class_info.class: the class code of the device
995 # @id.device: the PCI device id
997 # @id.vendor: the PCI vendor id
999 # @irq: #optional if an IRQ is assigned to the device, the IRQ number
1001 # @qdev_id: the device name of the PCI device
1003 # @pci_bridge: if the device is a PCI bridge, the bridge information
1005 # @regions: a list of the PCI I/O regions associated with the device
1007 # Notes: the contents of @class_info.desc are not stable and should only be
1008 #        treated as informational.
1010 # Since: 0.14.0
1012 { 'type': 'PciDeviceInfo',
1013   'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
1014            'class_info': {'*desc': 'str', 'class': 'int'},
1015            'id': {'device': 'int', 'vendor': 'int'},
1016            '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
1017            'regions': ['PciMemoryRegion']} }
1020 # @PciInfo:
1022 # Information about a PCI bus
1024 # @bus: the bus index
1026 # @devices: a list of devices on this bus
1028 # Since: 0.14.0
1030 { 'type': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} }
1033 # @query-pci:
1035 # Return information about the PCI bus topology of the guest.
1037 # Returns: a list of @PciInfo for each PCI bus
1039 # Since: 0.14.0
1041 { 'command': 'query-pci', 'returns': ['PciInfo'] }
1044 # @quit:
1046 # This command will cause the QEMU process to exit gracefully.  While every
1047 # attempt is made to send the QMP response before terminating, this is not
1048 # guaranteed.  When using this interface, a premature EOF would not be
1049 # unexpected.
1051 # Since: 0.14.0
1053 { 'command': 'quit' }
1056 # @stop:
1058 # Stop all guest VCPU execution.
1060 # Since:  0.14.0
1062 # Notes:  This function will succeed even if the guest is already in the stopped
1063 #         state.  In "inmigrate" state, it will ensure that the guest
1064 #         remains paused once migration finishes, as if the -S option was
1065 #         passed on the command line.
1067 { 'command': 'stop' }
1070 # @system_reset:
1072 # Performs a hard reset of a guest.
1074 # Since: 0.14.0
1076 { 'command': 'system_reset' }
1079 # @system_powerdown:
1081 # Requests that a guest perform a powerdown operation.
1083 # Since: 0.14.0
1085 # Notes: A guest may or may not respond to this command.  This command
1086 #        returning does not indicate that a guest has accepted the request or
1087 #        that it has shut down.  Many guests will respond to this command by
1088 #        prompting the user in some way.
1090 { 'command': 'system_powerdown' }
1093 # @cpu:
1095 # This command is a nop that is only provided for the purposes of compatibility.
1097 # Since: 0.14.0
1099 # Notes: Do not use this command.
1101 { 'command': 'cpu', 'data': {'index': 'int'} }
1104 # @cpu-add
1106 # Adds CPU with specified ID
1108 # @id: ID of CPU to be created, valid values [0..max_cpus)
1110 # Returns: Nothing on success
1112 # Since 1.5
1114 { 'command': 'cpu-add', 'data': {'id': 'int'} }
1117 # @memsave:
1119 # Save a portion of guest memory to a file.
1121 # @val: the virtual address of the guest to start from
1123 # @size: the size of memory region to save
1125 # @filename: the file to save the memory to as binary data
1127 # @cpu-index: #optional the index of the virtual CPU to use for translating the
1128 #                       virtual address (defaults to CPU 0)
1130 # Returns: Nothing on success
1132 # Since: 0.14.0
1134 # Notes: Errors were not reliably returned until 1.1
1136 { 'command': 'memsave',
1137   'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
1140 # @pmemsave:
1142 # Save a portion of guest physical memory to a file.
1144 # @val: the physical address of the guest to start from
1146 # @size: the size of memory region to save
1148 # @filename: the file to save the memory to as binary data
1150 # Returns: Nothing on success
1152 # Since: 0.14.0
1154 # Notes: Errors were not reliably returned until 1.1
1156 { 'command': 'pmemsave',
1157   'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
1160 # @cont:
1162 # Resume guest VCPU execution.
1164 # Since:  0.14.0
1166 # Returns:  If successful, nothing
1167 #           If QEMU was started with an encrypted block device and a key has
1168 #              not yet been set, DeviceEncrypted.
1170 # Notes:  This command will succeed if the guest is currently running.  It
1171 #         will also succeed if the guest is in the "inmigrate" state; in
1172 #         this case, the effect of the command is to make sure the guest
1173 #         starts once migration finishes, removing the effect of the -S
1174 #         command line option if it was passed.
1176 { 'command': 'cont' }
1179 # @system_wakeup:
1181 # Wakeup guest from suspend.  Does nothing in case the guest isn't suspended.
1183 # Since:  1.1
1185 # Returns:  nothing.
1187 { 'command': 'system_wakeup' }
1190 # @inject-nmi:
1192 # Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or all CPUs (ppc64).
1194 # Returns:  If successful, nothing
1196 # Since:  0.14.0
1198 # Note: prior to 2.1, this command was only supported for x86 and s390 VMs
1200 { 'command': 'inject-nmi' }
1203 # @set_link:
1205 # Sets the link status of a virtual network adapter.
1207 # @name: the device name of the virtual network adapter
1209 # @up: true to set the link status to be up
1211 # Returns: Nothing on success
1212 #          If @name is not a valid network device, DeviceNotFound
1214 # Since: 0.14.0
1216 # Notes: Not all network adapters support setting link status.  This command
1217 #        will succeed even if the network adapter does not support link status
1218 #        notification.
1220 { 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} }
1223 # @balloon:
1225 # Request the balloon driver to change its balloon size.
1227 # @value: the target size of the balloon in bytes
1229 # Returns: Nothing on success
1230 #          If the balloon driver is enabled but not functional because the KVM
1231 #            kernel module cannot support it, KvmMissingCap
1232 #          If no balloon device is present, DeviceNotActive
1234 # Notes: This command just issues a request to the guest.  When it returns,
1235 #        the balloon size may not have changed.  A guest can change the balloon
1236 #        size independent of this command.
1238 # Since: 0.14.0
1240 { 'command': 'balloon', 'data': {'value': 'int'} }
1243 # @Abort
1245 # This action can be used to test transaction failure.
1247 # Since: 1.6
1249 { 'type': 'Abort',
1250   'data': { } }
1253 # @TransactionAction
1255 # A discriminated record of operations that can be performed with
1256 # @transaction.
1258 { 'union': 'TransactionAction',
1259   'data': {
1260        'blockdev-snapshot-sync': 'BlockdevSnapshot',
1261        'drive-backup': 'DriveBackup',
1262        'abort': 'Abort',
1263        'blockdev-snapshot-internal-sync': 'BlockdevSnapshotInternal'
1264    } }
1267 # @transaction
1269 # Executes a number of transactionable QMP commands atomically. If any
1270 # operation fails, then the entire set of actions will be abandoned and the
1271 # appropriate error returned.
1273 #  List of:
1274 #  @TransactionAction: information needed for the respective operation
1276 # Returns: nothing on success
1277 #          Errors depend on the operations of the transaction
1279 # Note: The transaction aborts on the first failure.  Therefore, there will be
1280 # information on only one failed operation returned in an error condition, and
1281 # subsequent actions will not have been attempted.
1283 # Since 1.1
1285 { 'command': 'transaction',
1286   'data': { 'actions': [ 'TransactionAction' ] } }
1289 # @human-monitor-command:
1291 # Execute a command on the human monitor and return the output.
1293 # @command-line: the command to execute in the human monitor
1295 # @cpu-index: #optional The CPU to use for commands that require an implicit CPU
1297 # Returns: the output of the command as a string
1299 # Since: 0.14.0
1301 # Notes: This command only exists as a stop-gap.  Its use is highly
1302 #        discouraged.  The semantics of this command are not guaranteed.
1304 #        Known limitations:
1306 #        o This command is stateless, this means that commands that depend
1307 #          on state information (such as getfd) might not work
1309 #       o Commands that prompt the user for data (eg. 'cont' when the block
1310 #         device is encrypted) don't currently work
1312 { 'command': 'human-monitor-command',
1313   'data': {'command-line': 'str', '*cpu-index': 'int'},
1314   'returns': 'str' }
1317 # @migrate_cancel
1319 # Cancel the current executing migration process.
1321 # Returns: nothing on success
1323 # Notes: This command succeeds even if there is no migration process running.
1325 # Since: 0.14.0
1327 { 'command': 'migrate_cancel' }
1330 # @migrate_set_downtime
1332 # Set maximum tolerated downtime for migration.
1334 # @value: maximum downtime in seconds
1336 # Returns: nothing on success
1338 # Since: 0.14.0
1340 { 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
1343 # @migrate_set_speed
1345 # Set maximum speed for migration.
1347 # @value: maximum speed in bytes.
1349 # Returns: nothing on success
1351 # Notes: A value lesser than zero will be automatically round up to zero.
1353 # Since: 0.14.0
1355 { 'command': 'migrate_set_speed', 'data': {'value': 'int'} }
1358 # @migrate-set-cache-size
1360 # Set XBZRLE cache size
1362 # @value: cache size in bytes
1364 # The size will be rounded down to the nearest power of 2.
1365 # The cache size can be modified before and during ongoing migration
1367 # Returns: nothing on success
1369 # Since: 1.2
1371 { 'command': 'migrate-set-cache-size', 'data': {'value': 'int'} }
1374 # @query-migrate-cache-size
1376 # query XBZRLE cache size
1378 # Returns: XBZRLE cache size in bytes
1380 # Since: 1.2
1382 { 'command': 'query-migrate-cache-size', 'returns': 'int' }
1385 # @ObjectPropertyInfo:
1387 # @name: the name of the property
1389 # @type: the type of the property.  This will typically come in one of four
1390 #        forms:
1392 #        1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
1393 #           These types are mapped to the appropriate JSON type.
1395 #        2) A legacy type in the form 'legacy<subtype>' where subtype is the
1396 #           legacy qdev typename.  These types are always treated as strings.
1398 #        3) A child type in the form 'child<subtype>' where subtype is a qdev
1399 #           device type name.  Child properties create the composition tree.
1401 #        4) A link type in the form 'link<subtype>' where subtype is a qdev
1402 #           device type name.  Link properties form the device model graph.
1404 # Since: 1.2
1406 { 'type': 'ObjectPropertyInfo',
1407   'data': { 'name': 'str', 'type': 'str' } }
1410 # @qom-list:
1412 # This command will list any properties of a object given a path in the object
1413 # model.
1415 # @path: the path within the object model.  See @qom-get for a description of
1416 #        this parameter.
1418 # Returns: a list of @ObjectPropertyInfo that describe the properties of the
1419 #          object.
1421 # Since: 1.2
1423 { 'command': 'qom-list',
1424   'data': { 'path': 'str' },
1425   'returns': [ 'ObjectPropertyInfo' ] }
1428 # @qom-get:
1430 # This command will get a property from a object model path and return the
1431 # value.
1433 # @path: The path within the object model.  There are two forms of supported
1434 #        paths--absolute and partial paths.
1436 #        Absolute paths are derived from the root object and can follow child<>
1437 #        or link<> properties.  Since they can follow link<> properties, they
1438 #        can be arbitrarily long.  Absolute paths look like absolute filenames
1439 #        and are prefixed  with a leading slash.
1441 #        Partial paths look like relative filenames.  They do not begin
1442 #        with a prefix.  The matching rules for partial paths are subtle but
1443 #        designed to make specifying objects easy.  At each level of the
1444 #        composition tree, the partial path is matched as an absolute path.
1445 #        The first match is not returned.  At least two matches are searched
1446 #        for.  A successful result is only returned if only one match is
1447 #        found.  If more than one match is found, a flag is return to
1448 #        indicate that the match was ambiguous.
1450 # @property: The property name to read
1452 # Returns: The property value.  The type depends on the property type.  legacy<>
1453 #          properties are returned as #str.  child<> and link<> properties are
1454 #          returns as #str pathnames.  All integer property types (u8, u16, etc)
1455 #          are returned as #int.
1457 # Since: 1.2
1459 { 'command': 'qom-get',
1460   'data': { 'path': 'str', 'property': 'str' },
1461   'returns': 'visitor',
1462   'gen': 'no' }
1465 # @qom-set:
1467 # This command will set a property from a object model path.
1469 # @path: see @qom-get for a description of this parameter
1471 # @property: the property name to set
1473 # @value: a value who's type is appropriate for the property type.  See @qom-get
1474 #         for a description of type mapping.
1476 # Since: 1.2
1478 { 'command': 'qom-set',
1479   'data': { 'path': 'str', 'property': 'str', 'value': 'visitor' },
1480   'gen': 'no' }
1483 # @set_password:
1485 # Sets the password of a remote display session.
1487 # @protocol: `vnc' to modify the VNC server password
1488 #            `spice' to modify the Spice server password
1490 # @password: the new password
1492 # @connected: #optional how to handle existing clients when changing the
1493 #                       password.  If nothing is specified, defaults to `keep'
1494 #                       `fail' to fail the command if clients are connected
1495 #                       `disconnect' to disconnect existing clients
1496 #                       `keep' to maintain existing clients
1498 # Returns: Nothing on success
1499 #          If Spice is not enabled, DeviceNotFound
1501 # Since: 0.14.0
1503 { 'command': 'set_password',
1504   'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} }
1507 # @expire_password:
1509 # Expire the password of a remote display server.
1511 # @protocol: the name of the remote display protocol `vnc' or `spice'
1513 # @time: when to expire the password.
1514 #        `now' to expire the password immediately
1515 #        `never' to cancel password expiration
1516 #        `+INT' where INT is the number of seconds from now (integer)
1517 #        `INT' where INT is the absolute time in seconds
1519 # Returns: Nothing on success
1520 #          If @protocol is `spice' and Spice is not active, DeviceNotFound
1522 # Since: 0.14.0
1524 # Notes: Time is relative to the server and currently there is no way to
1525 #        coordinate server time with client time.  It is not recommended to
1526 #        use the absolute time version of the @time parameter unless you're
1527 #        sure you are on the same machine as the QEMU instance.
1529 { 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} }
1532 # @change-vnc-password:
1534 # Change the VNC server password.
1536 # @target:  the new password to use with VNC authentication
1538 # Since: 1.1
1540 # Notes:  An empty password in this command will set the password to the empty
1541 #         string.  Existing clients are unaffected by executing this command.
1543 { 'command': 'change-vnc-password', 'data': {'password': 'str'} }
1546 # @change:
1548 # This command is multiple commands multiplexed together.
1550 # @device: This is normally the name of a block device but it may also be 'vnc'.
1551 #          when it's 'vnc', then sub command depends on @target
1553 # @target: If @device is a block device, then this is the new filename.
1554 #          If @device is 'vnc', then if the value 'password' selects the vnc
1555 #          change password command.   Otherwise, this specifies a new server URI
1556 #          address to listen to for VNC connections.
1558 # @arg:    If @device is a block device, then this is an optional format to open
1559 #          the device with.
1560 #          If @device is 'vnc' and @target is 'password', this is the new VNC
1561 #          password to set.  If this argument is an empty string, then no future
1562 #          logins will be allowed.
1564 # Returns: Nothing on success.
1565 #          If @device is not a valid block device, DeviceNotFound
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.
1572 # Notes:  It is strongly recommended that this interface is not used especially
1573 #         for changing block devices.
1575 # Since: 0.14.0
1577 { 'command': 'change',
1578   'data': {'device': 'str', 'target': 'str', '*arg': 'str'} }
1581 # @ObjectTypeInfo:
1583 # This structure describes a search result from @qom-list-types
1585 # @name: the type name found in the search
1587 # Since: 1.1
1589 # Notes: This command is experimental and may change syntax in future releases.
1591 { 'type': 'ObjectTypeInfo',
1592   'data': { 'name': 'str' } }
1595 # @qom-list-types:
1597 # This command will return a list of types given search parameters
1599 # @implements: if specified, only return types that implement this type name
1601 # @abstract: if true, include abstract types in the results
1603 # Returns: a list of @ObjectTypeInfo or an empty list if no results are found
1605 # Since: 1.1
1607 { 'command': 'qom-list-types',
1608   'data': { '*implements': 'str', '*abstract': 'bool' },
1609   'returns': [ 'ObjectTypeInfo' ] }
1612 # @DevicePropertyInfo:
1614 # Information about device properties.
1616 # @name: the name of the property
1617 # @type: the typename of the property
1618 # @description: #optional if specified, the description of the property.
1619 #               (since 2.2)
1621 # Since: 1.2
1623 { 'type': 'DevicePropertyInfo',
1624   'data': { 'name': 'str', 'type': 'str', '*description': 'str' } }
1627 # @device-list-properties:
1629 # List properties associated with a device.
1631 # @typename: the type name of a device
1633 # Returns: a list of DevicePropertyInfo describing a devices properties
1635 # Since: 1.2
1637 { 'command': 'device-list-properties',
1638   'data': { 'typename': 'str'},
1639   'returns': [ 'DevicePropertyInfo' ] }
1642 # @migrate
1644 # Migrates the current running guest to another Virtual Machine.
1646 # @uri: the Uniform Resource Identifier of the destination VM
1648 # @blk: #optional do block migration (full disk copy)
1650 # @inc: #optional incremental disk copy migration
1652 # @detach: this argument exists only for compatibility reasons and
1653 #          is ignored by QEMU
1655 # Returns: nothing on success
1657 # Since: 0.14.0
1659 { 'command': 'migrate',
1660   'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
1662 # @xen-save-devices-state:
1664 # Save the state of all devices to file. The RAM and the block devices
1665 # of the VM are not saved by this command.
1667 # @filename: the file to save the state of the devices to as binary
1668 # data. See xen-save-devices-state.txt for a description of the binary
1669 # format.
1671 # Returns: Nothing on success
1673 # Since: 1.1
1675 { 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} }
1678 # @xen-set-global-dirty-log
1680 # Enable or disable the global dirty log mode.
1682 # @enable: true to enable, false to disable.
1684 # Returns: nothing
1686 # Since: 1.3
1688 { 'command': 'xen-set-global-dirty-log', 'data': { 'enable': 'bool' } }
1691 # @device_del:
1693 # Remove a device from a guest
1695 # @id: the name of the device
1697 # Returns: Nothing on success
1698 #          If @id is not a valid device, DeviceNotFound
1700 # Notes: When this command completes, the device may not be removed from the
1701 #        guest.  Hot removal is an operation that requires guest cooperation.
1702 #        This command merely requests that the guest begin the hot removal
1703 #        process.  Completion of the device removal process is signaled with a
1704 #        DEVICE_DELETED event. Guest reset will automatically complete removal
1705 #        for all devices.
1707 # Since: 0.14.0
1709 { 'command': 'device_del', 'data': {'id': 'str'} }
1712 # @DumpGuestMemoryFormat:
1714 # An enumeration of guest-memory-dump's format.
1716 # @elf: elf format
1718 # @kdump-zlib: kdump-compressed format with zlib-compressed
1720 # @kdump-lzo: kdump-compressed format with lzo-compressed
1722 # @kdump-snappy: kdump-compressed format with snappy-compressed
1724 # Since: 2.0
1726 { 'enum': 'DumpGuestMemoryFormat',
1727   'data': [ 'elf', 'kdump-zlib', 'kdump-lzo', 'kdump-snappy' ] }
1730 # @dump-guest-memory
1732 # Dump guest's memory to vmcore. It is a synchronous operation that can take
1733 # very long depending on the amount of guest memory. This command is only
1734 # supported on i386 and x86_64.
1736 # @paging: if true, do paging to get guest's memory mapping. This allows
1737 #          using gdb to process the core file.
1739 #          IMPORTANT: this option can make QEMU allocate several gigabytes
1740 #                     of RAM. This can happen for a large guest, or a
1741 #                     malicious guest pretending to be large.
1743 #          Also, paging=true has the following limitations:
1745 #             1. The guest may be in a catastrophic state or can have corrupted
1746 #                memory, which cannot be trusted
1747 #             2. The guest can be in real-mode even if paging is enabled. For
1748 #                example, the guest uses ACPI to sleep, and ACPI sleep state
1749 #                goes in real-mode
1751 # @protocol: the filename or file descriptor of the vmcore. The supported
1752 #            protocols are:
1754 #            1. file: the protocol starts with "file:", and the following
1755 #               string is the file's path.
1756 #            2. fd: the protocol starts with "fd:", and the following string
1757 #               is the fd's name.
1759 # @begin: #optional if specified, the starting physical address.
1761 # @length: #optional if specified, the memory size, in bytes. If you don't
1762 #          want to dump all guest's memory, please specify the start @begin
1763 #          and @length
1765 # @format: #optional if specified, the format of guest memory dump. But non-elf
1766 #          format is conflict with paging and filter, ie. @paging, @begin and
1767 #          @length is not allowed to be specified with non-elf @format at the
1768 #          same time (since 2.0)
1770 # Returns: nothing on success
1772 # Since: 1.2
1774 { 'command': 'dump-guest-memory',
1775   'data': { 'paging': 'bool', 'protocol': 'str', '*begin': 'int',
1776             '*length': 'int', '*format': 'DumpGuestMemoryFormat' } }
1779 # @DumpGuestMemoryCapability:
1781 # A list of the available formats for dump-guest-memory
1783 # Since: 2.0
1785 { 'type': 'DumpGuestMemoryCapability',
1786   'data': {
1787       'formats': ['DumpGuestMemoryFormat'] } }
1790 # @query-dump-guest-memory-capability:
1792 # Returns the available formats for dump-guest-memory
1794 # Returns:  A @DumpGuestMemoryCapability object listing available formats for
1795 #           dump-guest-memory
1797 # Since: 2.0
1799 { 'command': 'query-dump-guest-memory-capability',
1800   'returns': 'DumpGuestMemoryCapability' }
1803 # @netdev_add:
1805 # Add a network backend.
1807 # @type: the type of network backend.  Current valid values are 'user', 'tap',
1808 #        'vde', 'socket', 'dump' and 'bridge'
1810 # @id: the name of the new network backend
1812 # @props: #optional a list of properties to be passed to the backend in
1813 #         the format 'name=value', like 'ifname=tap0,script=no'
1815 # Notes: The semantics of @props is not well defined.  Future commands will be
1816 #        introduced that provide stronger typing for backend creation.
1818 # Since: 0.14.0
1820 # Returns: Nothing on success
1821 #          If @type is not a valid network backend, DeviceNotFound
1823 { 'command': 'netdev_add',
1824   'data': {'type': 'str', 'id': 'str', '*props': '**'},
1825   'gen': 'no' }
1828 # @netdev_del:
1830 # Remove a network backend.
1832 # @id: the name of the network backend to remove
1834 # Returns: Nothing on success
1835 #          If @id is not a valid network backend, DeviceNotFound
1837 # Since: 0.14.0
1839 { 'command': 'netdev_del', 'data': {'id': 'str'} }
1842 # @object-add:
1844 # Create a QOM object.
1846 # @qom-type: the class name for the object to be created
1848 # @id: the name of the new object
1850 # @props: #optional a dictionary of properties to be passed to the backend
1852 # Returns: Nothing on success
1853 #          Error if @qom-type is not a valid class name
1855 # Since: 2.0
1857 { 'command': 'object-add',
1858   'data': {'qom-type': 'str', 'id': 'str', '*props': 'dict'},
1859   'gen': 'no' }
1862 # @object-del:
1864 # Remove a QOM object.
1866 # @id: the name of the QOM object to remove
1868 # Returns: Nothing on success
1869 #          Error if @id is not a valid id for a QOM object
1871 # Since: 2.0
1873 { 'command': 'object-del', 'data': {'id': 'str'} }
1876 # @NetdevNoneOptions
1878 # Use it alone to have zero network devices.
1880 # Since 1.2
1882 { 'type': 'NetdevNoneOptions',
1883   'data': { } }
1886 # @NetLegacyNicOptions
1888 # Create a new Network Interface Card.
1890 # @netdev: #optional id of -netdev to connect to
1892 # @macaddr: #optional MAC address
1894 # @model: #optional device model (e1000, rtl8139, virtio etc.)
1896 # @addr: #optional PCI device address
1898 # @vectors: #optional number of MSI-x vectors, 0 to disable MSI-X
1900 # Since 1.2
1902 { 'type': 'NetLegacyNicOptions',
1903   'data': {
1904     '*netdev':  'str',
1905     '*macaddr': 'str',
1906     '*model':   'str',
1907     '*addr':    'str',
1908     '*vectors': 'uint32' } }
1911 # @String
1913 # A fat type wrapping 'str', to be embedded in lists.
1915 # Since 1.2
1917 { 'type': 'String',
1918   'data': {
1919     'str': 'str' } }
1922 # @NetdevUserOptions
1924 # Use the user mode network stack which requires no administrator privilege to
1925 # run.
1927 # @hostname: #optional client hostname reported by the builtin DHCP server
1929 # @restrict: #optional isolate the guest from the host
1931 # @ip: #optional legacy parameter, use net= instead
1933 # @net: #optional IP address and optional netmask
1935 # @host: #optional guest-visible address of the host
1937 # @tftp: #optional root directory of the built-in TFTP server
1939 # @bootfile: #optional BOOTP filename, for use with tftp=
1941 # @dhcpstart: #optional the first of the 16 IPs the built-in DHCP server can
1942 #             assign
1944 # @dns: #optional guest-visible address of the virtual nameserver
1946 # @dnssearch: #optional list of DNS suffixes to search, passed as DHCP option
1947 #             to the guest
1949 # @smb: #optional root directory of the built-in SMB server
1951 # @smbserver: #optional IP address of the built-in SMB server
1953 # @hostfwd: #optional redirect incoming TCP or UDP host connections to guest
1954 #           endpoints
1956 # @guestfwd: #optional forward guest TCP connections
1958 # Since 1.2
1960 { 'type': 'NetdevUserOptions',
1961   'data': {
1962     '*hostname':  'str',
1963     '*restrict':  'bool',
1964     '*ip':        'str',
1965     '*net':       'str',
1966     '*host':      'str',
1967     '*tftp':      'str',
1968     '*bootfile':  'str',
1969     '*dhcpstart': 'str',
1970     '*dns':       'str',
1971     '*dnssearch': ['String'],
1972     '*smb':       'str',
1973     '*smbserver': 'str',
1974     '*hostfwd':   ['String'],
1975     '*guestfwd':  ['String'] } }
1978 # @NetdevTapOptions
1980 # Connect the host TAP network interface name to the VLAN.
1982 # @ifname: #optional interface name
1984 # @fd: #optional file descriptor of an already opened tap
1986 # @fds: #optional multiple file descriptors of already opened multiqueue capable
1987 # tap
1989 # @script: #optional script to initialize the interface
1991 # @downscript: #optional script to shut down the interface
1993 # @helper: #optional command to execute to configure bridge
1995 # @sndbuf: #optional send buffer limit. Understands [TGMKkb] suffixes.
1997 # @vnet_hdr: #optional enable the IFF_VNET_HDR flag on the tap interface
1999 # @vhost: #optional enable vhost-net network accelerator
2001 # @vhostfd: #optional file descriptor of an already opened vhost net device
2003 # @vhostfds: #optional file descriptors of multiple already opened vhost net
2004 # devices
2006 # @vhostforce: #optional vhost on for non-MSIX virtio guests
2008 # @queues: #optional number of queues to be created for multiqueue capable tap
2010 # Since 1.2
2012 { 'type': 'NetdevTapOptions',
2013   'data': {
2014     '*ifname':     'str',
2015     '*fd':         'str',
2016     '*fds':        'str',
2017     '*script':     'str',
2018     '*downscript': 'str',
2019     '*helper':     'str',
2020     '*sndbuf':     'size',
2021     '*vnet_hdr':   'bool',
2022     '*vhost':      'bool',
2023     '*vhostfd':    'str',
2024     '*vhostfds':   'str',
2025     '*vhostforce': 'bool',
2026     '*queues':     'uint32'} }
2029 # @NetdevSocketOptions
2031 # Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP
2032 # socket connection.
2034 # @fd: #optional file descriptor of an already opened socket
2036 # @listen: #optional port number, and optional hostname, to listen on
2038 # @connect: #optional port number, and optional hostname, to connect to
2040 # @mcast: #optional UDP multicast address and port number
2042 # @localaddr: #optional source address and port for multicast and udp packets
2044 # @udp: #optional UDP unicast address and port number
2046 # Since 1.2
2048 { 'type': 'NetdevSocketOptions',
2049   'data': {
2050     '*fd':        'str',
2051     '*listen':    'str',
2052     '*connect':   'str',
2053     '*mcast':     'str',
2054     '*localaddr': 'str',
2055     '*udp':       'str' } }
2058 # @NetdevL2TPv3Options
2060 # Connect the VLAN to Ethernet over L2TPv3 Static tunnel
2062 # @src: source address
2064 # @dst: destination address
2066 # @srcport: #optional source port - mandatory for udp, optional for ip
2068 # @dstport: #optional destination port - mandatory for udp, optional for ip
2070 # @ipv6: #optional - force the use of ipv6
2072 # @udp: #optional - use the udp version of l2tpv3 encapsulation
2074 # @cookie64: #optional - use 64 bit coookies
2076 # @counter: #optional have sequence counter
2078 # @pincounter: #optional pin sequence counter to zero -
2079 #              workaround for buggy implementations or
2080 #              networks with packet reorder
2082 # @txcookie: #optional 32 or 64 bit transmit cookie
2084 # @rxcookie: #optional 32 or 64 bit receive cookie
2086 # @txsession: 32 bit transmit session
2088 # @rxsession: #optional 32 bit receive session - if not specified
2089 #             set to the same value as transmit
2091 # @offset: #optional additional offset - allows the insertion of
2092 #          additional application-specific data before the packet payload
2094 # Since 2.1
2096 { 'type': 'NetdevL2TPv3Options',
2097   'data': {
2098     'src':          'str',
2099     'dst':          'str',
2100     '*srcport':     'str',
2101     '*dstport':     'str',
2102     '*ipv6':        'bool',
2103     '*udp':         'bool',
2104     '*cookie64':    'bool',
2105     '*counter':     'bool',
2106     '*pincounter':  'bool',
2107     '*txcookie':    'uint64',
2108     '*rxcookie':    'uint64',
2109     'txsession':    'uint32',
2110     '*rxsession':   'uint32',
2111     '*offset':      'uint32' } }
2114 # @NetdevVdeOptions
2116 # Connect the VLAN to a vde switch running on the host.
2118 # @sock: #optional socket path
2120 # @port: #optional port number
2122 # @group: #optional group owner of socket
2124 # @mode: #optional permissions for socket
2126 # Since 1.2
2128 { 'type': 'NetdevVdeOptions',
2129   'data': {
2130     '*sock':  'str',
2131     '*port':  'uint16',
2132     '*group': 'str',
2133     '*mode':  'uint16' } }
2136 # @NetdevDumpOptions
2138 # Dump VLAN network traffic to a file.
2140 # @len: #optional per-packet size limit (64k default). Understands [TGMKkb]
2141 # suffixes.
2143 # @file: #optional dump file path (default is qemu-vlan0.pcap)
2145 # Since 1.2
2147 { 'type': 'NetdevDumpOptions',
2148   'data': {
2149     '*len':  'size',
2150     '*file': 'str' } }
2153 # @NetdevBridgeOptions
2155 # Connect a host TAP network interface to a host bridge device.
2157 # @br: #optional bridge name
2159 # @helper: #optional command to execute to configure bridge
2161 # Since 1.2
2163 { 'type': 'NetdevBridgeOptions',
2164   'data': {
2165     '*br':     'str',
2166     '*helper': 'str' } }
2169 # @NetdevHubPortOptions
2171 # Connect two or more net clients through a software hub.
2173 # @hubid: hub identifier number
2175 # Since 1.2
2177 { 'type': 'NetdevHubPortOptions',
2178   'data': {
2179     'hubid':     'int32' } }
2182 # @NetdevNetmapOptions
2184 # Connect a client to a netmap-enabled NIC or to a VALE switch port
2186 # @ifname: Either the name of an existing network interface supported by
2187 #          netmap, or the name of a VALE port (created on the fly).
2188 #          A VALE port name is in the form 'valeXXX:YYY', where XXX and
2189 #          YYY are non-negative integers. XXX identifies a switch and
2190 #          YYY identifies a port of the switch. VALE ports having the
2191 #          same XXX are therefore connected to the same switch.
2193 # @devname: #optional path of the netmap device (default: '/dev/netmap').
2195 # Since 2.0
2197 { 'type': 'NetdevNetmapOptions',
2198   'data': {
2199     'ifname':     'str',
2200     '*devname':    'str' } }
2203 # @NetdevVhostUserOptions
2205 # Vhost-user network backend
2207 # @chardev: name of a unix socket chardev
2209 # @vhostforce: #optional vhost on for non-MSIX virtio guests (default: false).
2211 # Since 2.1
2213 { 'type': 'NetdevVhostUserOptions',
2214   'data': {
2215     'chardev':        'str',
2216     '*vhostforce':    'bool' } }
2219 # @NetClientOptions
2221 # A discriminated record of network device traits.
2223 # Since 1.2
2225 # 'l2tpv3' - since 2.1
2228 { 'union': 'NetClientOptions',
2229   'data': {
2230     'none':     'NetdevNoneOptions',
2231     'nic':      'NetLegacyNicOptions',
2232     'user':     'NetdevUserOptions',
2233     'tap':      'NetdevTapOptions',
2234     'l2tpv3':   'NetdevL2TPv3Options',
2235     'socket':   'NetdevSocketOptions',
2236     'vde':      'NetdevVdeOptions',
2237     'dump':     'NetdevDumpOptions',
2238     'bridge':   'NetdevBridgeOptions',
2239     'hubport':  'NetdevHubPortOptions',
2240     'netmap':   'NetdevNetmapOptions',
2241     'vhost-user': 'NetdevVhostUserOptions' } }
2244 # @NetLegacy
2246 # Captures the configuration of a network device; legacy.
2248 # @vlan: #optional vlan number
2250 # @id: #optional identifier for monitor commands
2252 # @name: #optional identifier for monitor commands, ignored if @id is present
2254 # @opts: device type specific properties (legacy)
2256 # Since 1.2
2258 { 'type': 'NetLegacy',
2259   'data': {
2260     '*vlan': 'int32',
2261     '*id':   'str',
2262     '*name': 'str',
2263     'opts':  'NetClientOptions' } }
2266 # @Netdev
2268 # Captures the configuration of a network device.
2270 # @id: identifier for monitor commands.
2272 # @opts: device type specific properties
2274 # Since 1.2
2276 { 'type': 'Netdev',
2277   'data': {
2278     'id':   'str',
2279     'opts': 'NetClientOptions' } }
2282 # @InetSocketAddress
2284 # Captures a socket address or address range in the Internet namespace.
2286 # @host: host part of the address
2288 # @port: port part of the address, or lowest port if @to is present
2290 # @to: highest port to try
2292 # @ipv4: whether to accept IPv4 addresses, default try both IPv4 and IPv6
2293 #        #optional
2295 # @ipv6: whether to accept IPv6 addresses, default try both IPv4 and IPv6
2296 #        #optional
2298 # Since 1.3
2300 { 'type': 'InetSocketAddress',
2301   'data': {
2302     'host': 'str',
2303     'port': 'str',
2304     '*to': 'uint16',
2305     '*ipv4': 'bool',
2306     '*ipv6': 'bool' } }
2309 # @UnixSocketAddress
2311 # Captures a socket address in the local ("Unix socket") namespace.
2313 # @path: filesystem path to use
2315 # Since 1.3
2317 { 'type': 'UnixSocketAddress',
2318   'data': {
2319     'path': 'str' } }
2322 # @SocketAddress
2324 # Captures the address of a socket, which could also be a named file descriptor
2326 # Since 1.3
2328 { 'union': 'SocketAddress',
2329   'data': {
2330     'inet': 'InetSocketAddress',
2331     'unix': 'UnixSocketAddress',
2332     'fd': 'String' } }
2335 # @getfd:
2337 # Receive a file descriptor via SCM rights and assign it a name
2339 # @fdname: file descriptor name
2341 # Returns: Nothing on success
2343 # Since: 0.14.0
2345 # Notes: If @fdname already exists, the file descriptor assigned to
2346 #        it will be closed and replaced by the received file
2347 #        descriptor.
2348 #        The 'closefd' command can be used to explicitly close the
2349 #        file descriptor when it is no longer needed.
2351 { 'command': 'getfd', 'data': {'fdname': 'str'} }
2354 # @closefd:
2356 # Close a file descriptor previously passed via SCM rights
2358 # @fdname: file descriptor name
2360 # Returns: Nothing on success
2362 # Since: 0.14.0
2364 { 'command': 'closefd', 'data': {'fdname': 'str'} }
2367 # @MachineInfo:
2369 # Information describing a machine.
2371 # @name: the name of the machine
2373 # @alias: #optional an alias for the machine name
2375 # @default: #optional whether the machine is default
2377 # @cpu-max: maximum number of CPUs supported by the machine type
2378 #           (since 1.5.0)
2380 # Since: 1.2.0
2382 { 'type': 'MachineInfo',
2383   'data': { 'name': 'str', '*alias': 'str',
2384             '*is-default': 'bool', 'cpu-max': 'int' } }
2387 # @query-machines:
2389 # Return a list of supported machines
2391 # Returns: a list of MachineInfo
2393 # Since: 1.2.0
2395 { 'command': 'query-machines', 'returns': ['MachineInfo'] }
2398 # @CpuDefinitionInfo:
2400 # Virtual CPU definition.
2402 # @name: the name of the CPU definition
2404 # Since: 1.2.0
2406 { 'type': 'CpuDefinitionInfo',
2407   'data': { 'name': 'str' } }
2410 # @query-cpu-definitions:
2412 # Return a list of supported virtual CPU definitions
2414 # Returns: a list of CpuDefInfo
2416 # Since: 1.2.0
2418 { 'command': 'query-cpu-definitions', 'returns': ['CpuDefinitionInfo'] }
2420 # @AddfdInfo:
2422 # Information about a file descriptor that was added to an fd set.
2424 # @fdset-id: The ID of the fd set that @fd was added to.
2426 # @fd: The file descriptor that was received via SCM rights and
2427 #      added to the fd set.
2429 # Since: 1.2.0
2431 { 'type': 'AddfdInfo', 'data': {'fdset-id': 'int', 'fd': 'int'} }
2434 # @add-fd:
2436 # Add a file descriptor, that was passed via SCM rights, to an fd set.
2438 # @fdset-id: #optional The ID of the fd set to add the file descriptor to.
2440 # @opaque: #optional A free-form string that can be used to describe the fd.
2442 # Returns: @AddfdInfo on success
2443 #          If file descriptor was not received, FdNotSupplied
2444 #          If @fdset-id is a negative value, InvalidParameterValue
2446 # Notes: The list of fd sets is shared by all monitor connections.
2448 #        If @fdset-id is not specified, a new fd set will be created.
2450 # Since: 1.2.0
2452 { 'command': 'add-fd', 'data': {'*fdset-id': 'int', '*opaque': 'str'},
2453   'returns': 'AddfdInfo' }
2456 # @remove-fd:
2458 # Remove a file descriptor from an fd set.
2460 # @fdset-id: The ID of the fd set that the file descriptor belongs to.
2462 # @fd: #optional The file descriptor that is to be removed.
2464 # Returns: Nothing on success
2465 #          If @fdset-id or @fd is not found, FdNotFound
2467 # Since: 1.2.0
2469 # Notes: The list of fd sets is shared by all monitor connections.
2471 #        If @fd is not specified, all file descriptors in @fdset-id
2472 #        will be removed.
2474 { 'command': 'remove-fd', 'data': {'fdset-id': 'int', '*fd': 'int'} }
2477 # @FdsetFdInfo:
2479 # Information about a file descriptor that belongs to an fd set.
2481 # @fd: The file descriptor value.
2483 # @opaque: #optional A free-form string that can be used to describe the fd.
2485 # Since: 1.2.0
2487 { 'type': 'FdsetFdInfo',
2488   'data': {'fd': 'int', '*opaque': 'str'} }
2491 # @FdsetInfo:
2493 # Information about an fd set.
2495 # @fdset-id: The ID of the fd set.
2497 # @fds: A list of file descriptors that belong to this fd set.
2499 # Since: 1.2.0
2501 { 'type': 'FdsetInfo',
2502   'data': {'fdset-id': 'int', 'fds': ['FdsetFdInfo']} }
2505 # @query-fdsets:
2507 # Return information describing all fd sets.
2509 # Returns: A list of @FdsetInfo
2511 # Since: 1.2.0
2513 # Note: The list of fd sets is shared by all monitor connections.
2516 { 'command': 'query-fdsets', 'returns': ['FdsetInfo'] }
2519 # @TargetInfo:
2521 # Information describing the QEMU target.
2523 # @arch: the target architecture (eg "x86_64", "i386", etc)
2525 # Since: 1.2.0
2527 { 'type': 'TargetInfo',
2528   'data': { 'arch': 'str' } }
2531 # @query-target:
2533 # Return information about the target for this QEMU
2535 # Returns: TargetInfo
2537 # Since: 1.2.0
2539 { 'command': 'query-target', 'returns': 'TargetInfo' }
2542 # @QKeyCode:
2544 # An enumeration of key name.
2546 # This is used by the send-key command.
2548 # Since: 1.3.0
2550 # 'unmapped' and 'pause' since 2.0
2552 { 'enum': 'QKeyCode',
2553   'data': [ 'unmapped',
2554             'shift', 'shift_r', 'alt', 'alt_r', 'altgr', 'altgr_r', 'ctrl',
2555             'ctrl_r', 'menu', 'esc', '1', '2', '3', '4', '5', '6', '7', '8',
2556             '9', '0', 'minus', 'equal', 'backspace', 'tab', 'q', 'w', 'e',
2557             'r', 't', 'y', 'u', 'i', 'o', 'p', 'bracket_left', 'bracket_right',
2558             'ret', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'semicolon',
2559             'apostrophe', 'grave_accent', 'backslash', 'z', 'x', 'c', 'v', 'b',
2560             'n', 'm', 'comma', 'dot', 'slash', 'asterisk', 'spc', 'caps_lock',
2561             'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'f10',
2562             'num_lock', 'scroll_lock', 'kp_divide', 'kp_multiply',
2563             'kp_subtract', 'kp_add', 'kp_enter', 'kp_decimal', 'sysrq', 'kp_0',
2564             'kp_1', 'kp_2', 'kp_3', 'kp_4', 'kp_5', 'kp_6', 'kp_7', 'kp_8',
2565             'kp_9', 'less', 'f11', 'f12', 'print', 'home', 'pgup', 'pgdn', 'end',
2566             'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again',
2567             'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut',
2568              'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause' ] }
2571 # @KeyValue
2573 # Represents a keyboard key.
2575 # Since: 1.3.0
2577 { 'union': 'KeyValue',
2578   'data': {
2579     'number': 'int',
2580     'qcode': 'QKeyCode' } }
2583 # @send-key:
2585 # Send keys to guest.
2587 # @keys: An array of @KeyValue elements. All @KeyValues in this array are
2588 #        simultaneously sent to the guest. A @KeyValue.number value is sent
2589 #        directly to the guest, while @KeyValue.qcode must be a valid
2590 #        @QKeyCode value
2592 # @hold-time: #optional time to delay key up events, milliseconds. Defaults
2593 #             to 100
2595 # Returns: Nothing on success
2596 #          If key is unknown or redundant, InvalidParameter
2598 # Since: 1.3.0
2601 { 'command': 'send-key',
2602   'data': { 'keys': ['KeyValue'], '*hold-time': 'int' } }
2605 # @screendump:
2607 # Write a PPM of the VGA screen to a file.
2609 # @filename: the path of a new PPM file to store the image
2611 # Returns: Nothing on success
2613 # Since: 0.14.0
2615 { 'command': 'screendump', 'data': {'filename': 'str'} }
2618 # @ChardevFile:
2620 # Configuration info for file chardevs.
2622 # @in:  #optional The name of the input file
2623 # @out: The name of the output file
2625 # Since: 1.4
2627 { 'type': 'ChardevFile', 'data': { '*in' : 'str',
2628                                    'out' : 'str' } }
2631 # @ChardevHostdev:
2633 # Configuration info for device and pipe chardevs.
2635 # @device: The name of the special file for the device,
2636 #          i.e. /dev/ttyS0 on Unix or COM1: on Windows
2637 # @type: What kind of device this is.
2639 # Since: 1.4
2641 { 'type': 'ChardevHostdev', 'data': { 'device' : 'str' } }
2644 # @ChardevSocket:
2646 # Configuration info for (stream) socket chardevs.
2648 # @addr: socket address to listen on (server=true)
2649 #        or connect to (server=false)
2650 # @server: #optional create server socket (default: true)
2651 # @wait: #optional wait for incoming connection on server
2652 #        sockets (default: false).
2653 # @nodelay: #optional set TCP_NODELAY socket option (default: false)
2654 # @telnet: #optional enable telnet protocol on server
2655 #          sockets (default: false)
2656 # @reconnect: #optional For a client socket, if a socket is disconnected,
2657 #          then attempt a reconnect after the given number of seconds.
2658 #          Setting this to zero disables this function. (default: 0)
2659 #          (Since: 2.2)
2661 # Since: 1.4
2663 { 'type': 'ChardevSocket', 'data': { 'addr'       : 'SocketAddress',
2664                                      '*server'    : 'bool',
2665                                      '*wait'      : 'bool',
2666                                      '*nodelay'   : 'bool',
2667                                      '*telnet'    : 'bool',
2668                                      '*reconnect' : 'int' } }
2671 # @ChardevUdp:
2673 # Configuration info for datagram socket chardevs.
2675 # @remote: remote address
2676 # @local: #optional local address
2678 # Since: 1.5
2680 { 'type': 'ChardevUdp', 'data': { 'remote' : 'SocketAddress',
2681                                   '*local' : 'SocketAddress' } }
2684 # @ChardevMux:
2686 # Configuration info for mux chardevs.
2688 # @chardev: name of the base chardev.
2690 # Since: 1.5
2692 { 'type': 'ChardevMux', 'data': { 'chardev' : 'str' } }
2695 # @ChardevStdio:
2697 # Configuration info for stdio chardevs.
2699 # @signal: #optional Allow signals (such as SIGINT triggered by ^C)
2700 #          be delivered to qemu.  Default: true in -nographic mode,
2701 #          false otherwise.
2703 # Since: 1.5
2705 { 'type': 'ChardevStdio', 'data': { '*signal' : 'bool' } }
2708 # @ChardevSpiceChannel:
2710 # Configuration info for spice vm channel chardevs.
2712 # @type: kind of channel (for example vdagent).
2714 # Since: 1.5
2716 { 'type': 'ChardevSpiceChannel', 'data': { 'type'  : 'str' } }
2719 # @ChardevSpicePort:
2721 # Configuration info for spice port chardevs.
2723 # @fqdn: name of the channel (see docs/spice-port-fqdn.txt)
2725 # Since: 1.5
2727 { 'type': 'ChardevSpicePort', 'data': { 'fqdn'  : 'str' } }
2730 # @ChardevVC:
2732 # Configuration info for virtual console chardevs.
2734 # @width:  console width,  in pixels
2735 # @height: console height, in pixels
2736 # @cols:   console width,  in chars
2737 # @rows:   console height, in chars
2739 # Since: 1.5
2741 { 'type': 'ChardevVC', 'data': { '*width'  : 'int',
2742                                  '*height' : 'int',
2743                                  '*cols'   : 'int',
2744                                  '*rows'   : 'int' } }
2747 # @ChardevRingbuf:
2749 # Configuration info for ring buffer chardevs.
2751 # @size: #optional ring buffer size, must be power of two, default is 65536
2753 # Since: 1.5
2755 { 'type': 'ChardevRingbuf', 'data': { '*size'  : 'int' } }
2758 # @ChardevBackend:
2760 # Configuration info for the new chardev backend.
2762 # Since: 1.4 (testdev since 2.2)
2764 { 'type': 'ChardevDummy', 'data': { } }
2766 { 'union': 'ChardevBackend', 'data': { 'file'   : 'ChardevFile',
2767                                        'serial' : 'ChardevHostdev',
2768                                        'parallel': 'ChardevHostdev',
2769                                        'pipe'   : 'ChardevHostdev',
2770                                        'socket' : 'ChardevSocket',
2771                                        'udp'    : 'ChardevUdp',
2772                                        'pty'    : 'ChardevDummy',
2773                                        'null'   : 'ChardevDummy',
2774                                        'mux'    : 'ChardevMux',
2775                                        'msmouse': 'ChardevDummy',
2776                                        'braille': 'ChardevDummy',
2777                                        'testdev': 'ChardevDummy',
2778                                        'stdio'  : 'ChardevStdio',
2779                                        'console': 'ChardevDummy',
2780                                        'spicevmc' : 'ChardevSpiceChannel',
2781                                        'spiceport' : 'ChardevSpicePort',
2782                                        'vc'     : 'ChardevVC',
2783                                        'ringbuf': 'ChardevRingbuf',
2784                                        # next one is just for compatibility
2785                                        'memory' : 'ChardevRingbuf' } }
2788 # @ChardevReturn:
2790 # Return info about the chardev backend just created.
2792 # @pty: #optional name of the slave pseudoterminal device, present if
2793 #       and only if a chardev of type 'pty' was created
2795 # Since: 1.4
2797 { 'type' : 'ChardevReturn', 'data': { '*pty' : 'str' } }
2800 # @chardev-add:
2802 # Add a character device backend
2804 # @id: the chardev's ID, must be unique
2805 # @backend: backend type and parameters
2807 # Returns: ChardevReturn.
2809 # Since: 1.4
2811 { 'command': 'chardev-add', 'data': {'id'      : 'str',
2812                                      'backend' : 'ChardevBackend' },
2813   'returns': 'ChardevReturn' }
2816 # @chardev-remove:
2818 # Remove a character device backend
2820 # @id: the chardev's ID, must exist and not be in use
2822 # Returns: Nothing on success
2824 # Since: 1.4
2826 { 'command': 'chardev-remove', 'data': {'id': 'str'} }
2829 # @TpmModel:
2831 # An enumeration of TPM models
2833 # @tpm-tis: TPM TIS model
2835 # Since: 1.5
2837 { 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
2840 # @query-tpm-models:
2842 # Return a list of supported TPM models
2844 # Returns: a list of TpmModel
2846 # Since: 1.5
2848 { 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
2851 # @TpmType:
2853 # An enumeration of TPM types
2855 # @passthrough: TPM passthrough type
2857 # Since: 1.5
2859 { 'enum': 'TpmType', 'data': [ 'passthrough' ] }
2862 # @query-tpm-types:
2864 # Return a list of supported TPM types
2866 # Returns: a list of TpmType
2868 # Since: 1.5
2870 { 'command': 'query-tpm-types', 'returns': ['TpmType'] }
2873 # @TPMPassthroughOptions:
2875 # Information about the TPM passthrough type
2877 # @path: #optional string describing the path used for accessing the TPM device
2879 # @cancel-path: #optional string showing the TPM's sysfs cancel file
2880 #               for cancellation of TPM commands while they are executing
2882 # Since: 1.5
2884 { 'type': 'TPMPassthroughOptions', 'data': { '*path' : 'str',
2885                                              '*cancel-path' : 'str'} }
2888 # @TpmTypeOptions:
2890 # A union referencing different TPM backend types' configuration options
2892 # @passthrough: The configuration options for the TPM passthrough type
2894 # Since: 1.5
2896 { 'union': 'TpmTypeOptions',
2897    'data': { 'passthrough' : 'TPMPassthroughOptions' } }
2900 # @TpmInfo:
2902 # Information about the TPM
2904 # @id: The Id of the TPM
2906 # @model: The TPM frontend model
2908 # @options: The TPM (backend) type configuration options
2910 # Since: 1.5
2912 { 'type': 'TPMInfo',
2913   'data': {'id': 'str',
2914            'model': 'TpmModel',
2915            'options': 'TpmTypeOptions' } }
2918 # @query-tpm:
2920 # Return information about the TPM device
2922 # Returns: @TPMInfo on success
2924 # Since: 1.5
2926 { 'command': 'query-tpm', 'returns': ['TPMInfo'] }
2929 # @AcpiTableOptions
2931 # Specify an ACPI table on the command line to load.
2933 # At most one of @file and @data can be specified. The list of files specified
2934 # by any one of them is loaded and concatenated in order. If both are omitted,
2935 # @data is implied.
2937 # Other fields / optargs can be used to override fields of the generic ACPI
2938 # table header; refer to the ACPI specification 5.0, section 5.2.6 System
2939 # Description Table Header. If a header field is not overridden, then the
2940 # corresponding value from the concatenated blob is used (in case of @file), or
2941 # it is filled in with a hard-coded value (in case of @data).
2943 # String fields are copied into the matching ACPI member from lowest address
2944 # upwards, and silently truncated / NUL-padded to length.
2946 # @sig: #optional table signature / identifier (4 bytes)
2948 # @rev: #optional table revision number (dependent on signature, 1 byte)
2950 # @oem_id: #optional OEM identifier (6 bytes)
2952 # @oem_table_id: #optional OEM table identifier (8 bytes)
2954 # @oem_rev: #optional OEM-supplied revision number (4 bytes)
2956 # @asl_compiler_id: #optional identifier of the utility that created the table
2957 #                   (4 bytes)
2959 # @asl_compiler_rev: #optional revision number of the utility that created the
2960 #                    table (4 bytes)
2962 # @file: #optional colon (:) separated list of pathnames to load and
2963 #        concatenate as table data. The resultant binary blob is expected to
2964 #        have an ACPI table header. At least one file is required. This field
2965 #        excludes @data.
2967 # @data: #optional colon (:) separated list of pathnames to load and
2968 #        concatenate as table data. The resultant binary blob must not have an
2969 #        ACPI table header. At least one file is required. This field excludes
2970 #        @file.
2972 # Since 1.5
2974 { 'type': 'AcpiTableOptions',
2975   'data': {
2976     '*sig':               'str',
2977     '*rev':               'uint8',
2978     '*oem_id':            'str',
2979     '*oem_table_id':      'str',
2980     '*oem_rev':           'uint32',
2981     '*asl_compiler_id':   'str',
2982     '*asl_compiler_rev':  'uint32',
2983     '*file':              'str',
2984     '*data':              'str' }}
2987 # @CommandLineParameterType:
2989 # Possible types for an option parameter.
2991 # @string: accepts a character string
2993 # @boolean: accepts "on" or "off"
2995 # @number: accepts a number
2997 # @size: accepts a number followed by an optional suffix (K)ilo,
2998 #        (M)ega, (G)iga, (T)era
3000 # Since 1.5
3002 { 'enum': 'CommandLineParameterType',
3003   'data': ['string', 'boolean', 'number', 'size'] }
3006 # @CommandLineParameterInfo:
3008 # Details about a single parameter of a command line option.
3010 # @name: parameter name
3012 # @type: parameter @CommandLineParameterType
3014 # @help: #optional human readable text string, not suitable for parsing.
3016 # @default: #optional default value string (since 2.1)
3018 # Since 1.5
3020 { 'type': 'CommandLineParameterInfo',
3021   'data': { 'name': 'str',
3022             'type': 'CommandLineParameterType',
3023             '*help': 'str',
3024             '*default': 'str' } }
3027 # @CommandLineOptionInfo:
3029 # Details about a command line option, including its list of parameter details
3031 # @option: option name
3033 # @parameters: an array of @CommandLineParameterInfo
3035 # Since 1.5
3037 { 'type': 'CommandLineOptionInfo',
3038   'data': { 'option': 'str', 'parameters': ['CommandLineParameterInfo'] } }
3041 # @query-command-line-options:
3043 # Query command line option schema.
3045 # @option: #optional option name
3047 # Returns: list of @CommandLineOptionInfo for all options (or for the given
3048 #          @option).  Returns an error if the given @option doesn't exist.
3050 # Since 1.5
3052 {'command': 'query-command-line-options', 'data': { '*option': 'str' },
3053  'returns': ['CommandLineOptionInfo'] }
3056 # @X86CPURegister32
3058 # A X86 32-bit register
3060 # Since: 1.5
3062 { 'enum': 'X86CPURegister32',
3063   'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
3066 # @X86CPUFeatureWordInfo
3068 # Information about a X86 CPU feature word
3070 # @cpuid-input-eax: Input EAX value for CPUID instruction for that feature word
3072 # @cpuid-input-ecx: #optional Input ECX value for CPUID instruction for that
3073 #                   feature word
3075 # @cpuid-register: Output register containing the feature bits
3077 # @features: value of output register, containing the feature bits
3079 # Since: 1.5
3081 { 'type': 'X86CPUFeatureWordInfo',
3082   'data': { 'cpuid-input-eax': 'int',
3083             '*cpuid-input-ecx': 'int',
3084             'cpuid-register': 'X86CPURegister32',
3085             'features': 'int' } }
3088 # @RxState:
3090 # Packets receiving state
3092 # @normal: filter assigned packets according to the mac-table
3094 # @none: don't receive any assigned packet
3096 # @all: receive all assigned packets
3098 # Since: 1.6
3100 { 'enum': 'RxState', 'data': [ 'normal', 'none', 'all' ] }
3103 # @RxFilterInfo:
3105 # Rx-filter information for a NIC.
3107 # @name: net client name
3109 # @promiscuous: whether promiscuous mode is enabled
3111 # @multicast: multicast receive state
3113 # @unicast: unicast receive state
3115 # @vlan: vlan receive state (Since 2.0)
3117 # @broadcast-allowed: whether to receive broadcast
3119 # @multicast-overflow: multicast table is overflowed or not
3121 # @unicast-overflow: unicast table is overflowed or not
3123 # @main-mac: the main macaddr string
3125 # @vlan-table: a list of active vlan id
3127 # @unicast-table: a list of unicast macaddr string
3129 # @multicast-table: a list of multicast macaddr string
3131 # Since 1.6
3134 { 'type': 'RxFilterInfo',
3135   'data': {
3136     'name':               'str',
3137     'promiscuous':        'bool',
3138     'multicast':          'RxState',
3139     'unicast':            'RxState',
3140     'vlan':               'RxState',
3141     'broadcast-allowed':  'bool',
3142     'multicast-overflow': 'bool',
3143     'unicast-overflow':   'bool',
3144     'main-mac':           'str',
3145     'vlan-table':         ['int'],
3146     'unicast-table':      ['str'],
3147     'multicast-table':    ['str'] }}
3150 # @query-rx-filter:
3152 # Return rx-filter information for all NICs (or for the given NIC).
3154 # @name: #optional net client name
3156 # Returns: list of @RxFilterInfo for all NICs (or for the given NIC).
3157 #          Returns an error if the given @name doesn't exist, or given
3158 #          NIC doesn't support rx-filter querying, or given net client
3159 #          isn't a NIC.
3161 # Since: 1.6
3163 { 'command': 'query-rx-filter', 'data': { '*name': 'str' },
3164   'returns': ['RxFilterInfo'] }
3167 # @InputButton
3169 # Button of a pointer input device (mouse, tablet).
3171 # Since: 2.0
3173 { 'enum'  : 'InputButton',
3174   'data'  : [ 'Left', 'Middle', 'Right', 'WheelUp', 'WheelDown' ] }
3177 # @InputButton
3179 # Position axis of a pointer input device (mouse, tablet).
3181 # Since: 2.0
3183 { 'enum'  : 'InputAxis',
3184   'data'  : [ 'X', 'Y' ] }
3187 # @InputKeyEvent
3189 # Keyboard input event.
3191 # @key:    Which key this event is for.
3192 # @down:   True for key-down and false for key-up events.
3194 # Since: 2.0
3196 { 'type'  : 'InputKeyEvent',
3197   'data'  : { 'key'     : 'KeyValue',
3198               'down'    : 'bool' } }
3201 # @InputBtnEvent
3203 # Pointer button input event.
3205 # @button: Which button this event is for.
3206 # @down:   True for key-down and false for key-up events.
3208 # Since: 2.0
3210 { 'type'  : 'InputBtnEvent',
3211   'data'  : { 'button'  : 'InputButton',
3212               'down'    : 'bool' } }
3215 # @InputMoveEvent
3217 # Pointer motion input event.
3219 # @axis:   Which axis is referenced by @value.
3220 # @value:  Pointer position.  For absolute coordinates the
3221 #          valid range is 0 -> 0x7ffff
3223 # Since: 2.0
3225 { 'type'  : 'InputMoveEvent',
3226   'data'  : { 'axis'    : 'InputAxis',
3227               'value'   : 'int' } }
3230 # @InputEvent
3232 # Input event union.
3234 # Since: 2.0
3236 { 'union' : 'InputEvent',
3237   'data'  : { 'key'     : 'InputKeyEvent',
3238               'btn'     : 'InputBtnEvent',
3239               'rel'     : 'InputMoveEvent',
3240               'abs'     : 'InputMoveEvent' } }
3243 # @input-send-event
3245 # Send input event(s) to guest.
3247 # @console: Which console to send event(s) to.
3249 # @events: List of InputEvent union.
3251 # Returns: Nothing on success.
3253 # Since: 2.2
3256 { 'command': 'input-send-event',
3257   'data': { 'console':'int', 'events': [ 'InputEvent' ] } }
3260 # @NumaOptions
3262 # A discriminated record of NUMA options. (for OptsVisitor)
3264 # Since 2.1
3266 { 'union': 'NumaOptions',
3267   'data': {
3268     'node': 'NumaNodeOptions' }}
3271 # @NumaNodeOptions
3273 # Create a guest NUMA node. (for OptsVisitor)
3275 # @nodeid: #optional NUMA node ID (increase by 1 from 0 if omitted)
3277 # @cpus: #optional VCPUs belonging to this node (assign VCPUS round-robin
3278 #         if omitted)
3280 # @mem: #optional memory size of this node; mutually exclusive with @memdev.
3281 #       Equally divide total memory among nodes if both @mem and @memdev are
3282 #       omitted.
3284 # @memdev: #optional memory backend object.  If specified for one node,
3285 #          it must be specified for all nodes.
3287 # Since: 2.1
3289 { 'type': 'NumaNodeOptions',
3290   'data': {
3291    '*nodeid': 'uint16',
3292    '*cpus':   ['uint16'],
3293    '*mem':    'size',
3294    '*memdev': 'str' }}
3297 # @HostMemPolicy
3299 # Host memory policy types
3301 # @default: restore default policy, remove any nondefault policy
3303 # @preferred: set the preferred host nodes for allocation
3305 # @bind: a strict policy that restricts memory allocation to the
3306 #        host nodes specified
3308 # @interleave: memory allocations are interleaved across the set
3309 #              of host nodes specified
3311 # Since 2.1
3313 { 'enum': 'HostMemPolicy',
3314   'data': [ 'default', 'preferred', 'bind', 'interleave' ] }
3317 # @Memdev:
3319 # Information about memory backend
3321 # @size: memory backend size
3323 # @merge: enables or disables memory merge support
3325 # @dump: includes memory backend's memory in a core dump or not
3327 # @prealloc: enables or disables memory preallocation
3329 # @host-nodes: host nodes for its memory policy
3331 # @policy: memory policy of memory backend
3333 # Since: 2.1
3336 { 'type': 'Memdev',
3337   'data': {
3338     'size':       'size',
3339     'merge':      'bool',
3340     'dump':       'bool',
3341     'prealloc':   'bool',
3342     'host-nodes': ['uint16'],
3343     'policy':     'HostMemPolicy' }}
3346 # @query-memdev:
3348 # Returns information for all memory backends.
3350 # Returns: a list of @Memdev.
3352 # Since: 2.1
3354 { 'command': 'query-memdev', 'returns': ['Memdev'] }
3357 # @PCDIMMDeviceInfo:
3359 # PCDIMMDevice state information
3361 # @id: #optional device's ID
3363 # @addr: physical address, where device is mapped
3365 # @size: size of memory that the device provides
3367 # @slot: slot number at which device is plugged in
3369 # @node: NUMA node number where device is plugged in
3371 # @memdev: memory backend linked with device
3373 # @hotplugged: true if device was hotplugged
3375 # @hotpluggable: true if device if could be added/removed while machine is running
3377 # Since: 2.1
3379 { 'type': 'PCDIMMDeviceInfo',
3380   'data': { '*id': 'str',
3381             'addr': 'int',
3382             'size': 'int',
3383             'slot': 'int',
3384             'node': 'int',
3385             'memdev': 'str',
3386             'hotplugged': 'bool',
3387             'hotpluggable': 'bool'
3388           }
3392 # @MemoryDeviceInfo:
3394 # Union containing information about a memory device
3396 # Since: 2.1
3398 { 'union': 'MemoryDeviceInfo', 'data': {'dimm': 'PCDIMMDeviceInfo'} }
3401 # @query-memory-devices
3403 # Lists available memory devices and their state
3405 # Since: 2.1
3407 { 'command': 'query-memory-devices', 'returns': ['MemoryDeviceInfo'] }
3409 ## @ACPISlotType
3411 # @DIMM: memory slot
3413 { 'enum': 'ACPISlotType', 'data': [ 'DIMM' ] }
3415 ## @ACPIOSTInfo
3417 # OSPM Status Indication for a device
3418 # For description of possible values of @source and @status fields
3419 # see "_OST (OSPM Status Indication)" chapter of ACPI5.0 spec.
3421 # @device: #optional device ID associated with slot
3423 # @slot: slot ID, unique per slot of a given @slot-type
3425 # @slot-type: type of the slot
3427 # @source: an integer containing the source event
3429 # @status: an integer containing the status code
3431 # Since: 2.1
3433 { 'type': 'ACPIOSTInfo',
3434   'data'  : { '*device': 'str',
3435               'slot': 'str',
3436               'slot-type': 'ACPISlotType',
3437               'source': 'int',
3438               'status': 'int' } }
3441 # @query-acpi-ospm-status
3443 # Lists ACPI OSPM status of ACPI device objects,
3444 # which might be reported via _OST method
3446 # Since: 2.1
3448 { 'command': 'query-acpi-ospm-status', 'returns': ['ACPIOSTInfo'] }
3451 # @WatchdogExpirationAction
3453 # An enumeration of the actions taken when the watchdog device's timer is
3454 # expired
3456 # @reset: system resets
3458 # @shutdown: system shutdown, note that it is similar to @powerdown, which
3459 #            tries to set to system status and notify guest
3461 # @poweroff: system poweroff, the emulator program exits
3463 # @pause: system pauses, similar to @stop
3465 # @debug: system enters debug state
3467 # @none: nothing is done
3469 # Since: 2.1
3471 { 'enum': 'WatchdogExpirationAction',
3472   'data': [ 'reset', 'shutdown', 'poweroff', 'pause', 'debug', 'none' ] }
3475 # @IoOperationType
3477 # An enumeration of the I/O operation types
3479 # @read: read operation
3481 # @write: write operation
3483 # Since: 2.1
3485 { 'enum': 'IoOperationType',
3486   'data': [ 'read', 'write' ] }
3489 # @GuestPanicAction
3491 # An enumeration of the actions taken when guest OS panic is detected
3493 # @pause: system pauses
3495 # Since: 2.1
3497 { 'enum': 'GuestPanicAction',
3498   'data': [ 'pause' ] }
3501 # @rtc-reset-reinjection
3503 # This command will reset the RTC interrupt reinjection backlog.
3504 # Can be used if another mechanism to synchronize guest time
3505 # is in effect, for example QEMU guest agent's guest-set-time
3506 # command.
3508 # Since: 2.1
3510 { 'command': 'rtc-reset-reinjection' }