monitor: add query-vnc-servers command
[qemu/ar7.git] / qapi-schema.json
blob24f62a4d81f6134b0477fd6d4dc0768f5be7fd9a
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 # @VncPriAuth:
756 # vnc primary authentication method.
758 # Since: 2.3
760 { 'enum': 'VncPrimaryAuth',
761   'data': [ 'none', 'vnc', 'ra2', 'ra2ne', 'tight', 'ultra',
762             'tls', 'vencrypt', 'sasl' ] }
765 # @VncVencryptSubAuth:
767 # vnc sub authentication method with vencrypt.
769 # Since: 2.3
771 { 'enum': 'VncVencryptSubAuth',
772   'data': [ 'plain',
773             'tls-none',  'x509-none',
774             'tls-vnc',   'x509-vnc',
775             'tls-plain', 'x509-plain',
776             'tls-sasl',  'x509-sasl' ] }
779 # @VncInfo2:
781 # Information about a vnc server
783 # @id: vnc server name.
785 # @server: A list of @VncBasincInfo describing all listening sockets.
786 #          The list can be empty (in case the vnc server is disabled).
787 #          It also may have multiple entries: normal + websocket,
788 #          possibly also ipv4 + ipv6 in the future.
790 # @clients: A list of @VncClientInfo of all currently connected clients.
791 #           The list can be empty, for obvious reasons.
793 # @auth: The current authentication type used by the server
795 # @vencrypt: #optional The vencrypt sub authentication type used by the server,
796 #            only specified in case auth == vencrypt.
798 # @display: #optional The display device the vnc server is linked to.
800 # Since: 2.3
802 { 'type': 'VncInfo2',
803   'data': { 'id'        : 'str',
804             'server'    : ['VncBasicInfo'],
805             'clients'   : ['VncClientInfo'],
806             'auth'      : 'VncPrimaryAuth',
807             '*vencrypt' : 'VncVencryptSubAuth',
808             '*display'  : 'str' } }
811 # @query-vnc:
813 # Returns information about the current VNC server
815 # Returns: @VncInfo
817 # Since: 0.14.0
819 { 'command': 'query-vnc', 'returns': 'VncInfo' }
822 # @query-vnc-servers:
824 # Returns a list of vnc servers.  The list can be empty.
826 # Returns: a list of @VncInfo2
828 # Since: 2.3
830 { 'command': 'query-vnc-servers', 'returns': ['VncInfo2'] }
833 # @SpiceBasicInfo
835 # The basic information for SPICE network connection
837 # @host: IP address
839 # @port: port number
841 # @family: address family
843 # Since: 2.1
845 { 'type': 'SpiceBasicInfo',
846   'data': { 'host': 'str',
847             'port': 'str',
848             'family': 'NetworkAddressFamily' } }
851 # @SpiceServerInfo
853 # Information about a SPICE server
855 # @auth: #optional, authentication method
857 # Since: 2.1
859 { 'type': 'SpiceServerInfo',
860   'base': 'SpiceBasicInfo',
861   'data': { '*auth': 'str' } }
864 # @SpiceChannel
866 # Information about a SPICE client channel.
868 # @connection-id: SPICE connection id number.  All channels with the same id
869 #                 belong to the same SPICE session.
871 # @connection-type: SPICE channel type number.  "1" is the main control
872 #                   channel, filter for this one if you want to track spice
873 #                   sessions only
875 # @channel-id: SPICE channel ID number.  Usually "0", might be different when
876 #              multiple channels of the same type exist, such as multiple
877 #              display channels in a multihead setup
879 # @tls: true if the channel is encrypted, false otherwise.
881 # Since: 0.14.0
883 { 'type': 'SpiceChannel',
884   'base': 'SpiceBasicInfo',
885   'data': {'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int',
886            'tls': 'bool'} }
889 # @SpiceQueryMouseMode
891 # An enumeration of Spice mouse states.
893 # @client: Mouse cursor position is determined by the client.
895 # @server: Mouse cursor position is determined by the server.
897 # @unknown: No information is available about mouse mode used by
898 #           the spice server.
900 # Note: spice/enums.h has a SpiceMouseMode already, hence the name.
902 # Since: 1.1
904 { 'enum': 'SpiceQueryMouseMode',
905   'data': [ 'client', 'server', 'unknown' ] }
908 # @SpiceInfo
910 # Information about the SPICE session.
912 # @enabled: true if the SPICE server is enabled, false otherwise
914 # @migrated: true if the last guest migration completed and spice
915 #            migration had completed as well. false otherwise.
917 # @host: #optional The hostname the SPICE server is bound to.  This depends on
918 #        the name resolution on the host and may be an IP address.
920 # @port: #optional The SPICE server's port number.
922 # @compiled-version: #optional SPICE server version.
924 # @tls-port: #optional The SPICE server's TLS port number.
926 # @auth: #optional the current authentication type used by the server
927 #        'none'  if no authentication is being used
928 #        'spice' uses SASL or direct TLS authentication, depending on command
929 #                line options
931 # @mouse-mode: The mode in which the mouse cursor is displayed currently. Can
932 #              be determined by the client or the server, or unknown if spice
933 #              server doesn't provide this information.
935 #              Since: 1.1
937 # @channels: a list of @SpiceChannel for each active spice channel
939 # Since: 0.14.0
941 { 'type': 'SpiceInfo',
942   'data': {'enabled': 'bool', 'migrated': 'bool', '*host': 'str', '*port': 'int',
943            '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
944            'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} }
947 # @query-spice
949 # Returns information about the current SPICE server
951 # Returns: @SpiceInfo
953 # Since: 0.14.0
955 { 'command': 'query-spice', 'returns': 'SpiceInfo' }
958 # @BalloonInfo:
960 # Information about the guest balloon device.
962 # @actual: the number of bytes the balloon currently contains
964 # Since: 0.14.0
967 { 'type': 'BalloonInfo', 'data': {'actual': 'int' } }
970 # @query-balloon:
972 # Return information about the balloon device.
974 # Returns: @BalloonInfo on success
975 #          If the balloon driver is enabled but not functional because the KVM
976 #          kernel module cannot support it, KvmMissingCap
977 #          If no balloon device is present, DeviceNotActive
979 # Since: 0.14.0
981 { 'command': 'query-balloon', 'returns': 'BalloonInfo' }
984 # @PciMemoryRange:
986 # A PCI device memory region
988 # @base: the starting address (guest physical)
990 # @limit: the ending address (guest physical)
992 # Since: 0.14.0
994 { 'type': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} }
997 # @PciMemoryRegion
999 # Information about a PCI device I/O region.
1001 # @bar: the index of the Base Address Register for this region
1003 # @type: 'io' if the region is a PIO region
1004 #        'memory' if the region is a MMIO region
1006 # @prefetch: #optional if @type is 'memory', true if the memory is prefetchable
1008 # @mem_type_64: #optional if @type is 'memory', true if the BAR is 64-bit
1010 # Since: 0.14.0
1012 { 'type': 'PciMemoryRegion',
1013   'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int',
1014            '*prefetch': 'bool', '*mem_type_64': 'bool' } }
1017 # @PciBridgeInfo:
1019 # Information about a PCI Bridge device
1021 # @bus.number: primary bus interface number.  This should be the number of the
1022 #              bus the device resides on.
1024 # @bus.secondary: secondary bus interface number.  This is the number of the
1025 #                 main bus for the bridge
1027 # @bus.subordinate: This is the highest number bus that resides below the
1028 #                   bridge.
1030 # @bus.io_range: The PIO range for all devices on this bridge
1032 # @bus.memory_range: The MMIO range for all devices on this bridge
1034 # @bus.prefetchable_range: The range of prefetchable MMIO for all devices on
1035 #                          this bridge
1037 # @devices: a list of @PciDeviceInfo for each device on this bridge
1039 # Since: 0.14.0
1041 { 'type': 'PciBridgeInfo',
1042   'data': {'bus': { 'number': 'int', 'secondary': 'int', 'subordinate': 'int',
1043                     'io_range': 'PciMemoryRange',
1044                     'memory_range': 'PciMemoryRange',
1045                     'prefetchable_range': 'PciMemoryRange' },
1046            '*devices': ['PciDeviceInfo']} }
1049 # @PciDeviceInfo:
1051 # Information about a PCI device
1053 # @bus: the bus number of the device
1055 # @slot: the slot the device is located in
1057 # @function: the function of the slot used by the device
1059 # @class_info.desc: #optional a string description of the device's class
1061 # @class_info.class: the class code of the device
1063 # @id.device: the PCI device id
1065 # @id.vendor: the PCI vendor id
1067 # @irq: #optional if an IRQ is assigned to the device, the IRQ number
1069 # @qdev_id: the device name of the PCI device
1071 # @pci_bridge: if the device is a PCI bridge, the bridge information
1073 # @regions: a list of the PCI I/O regions associated with the device
1075 # Notes: the contents of @class_info.desc are not stable and should only be
1076 #        treated as informational.
1078 # Since: 0.14.0
1080 { 'type': 'PciDeviceInfo',
1081   'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
1082            'class_info': {'*desc': 'str', 'class': 'int'},
1083            'id': {'device': 'int', 'vendor': 'int'},
1084            '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
1085            'regions': ['PciMemoryRegion']} }
1088 # @PciInfo:
1090 # Information about a PCI bus
1092 # @bus: the bus index
1094 # @devices: a list of devices on this bus
1096 # Since: 0.14.0
1098 { 'type': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} }
1101 # @query-pci:
1103 # Return information about the PCI bus topology of the guest.
1105 # Returns: a list of @PciInfo for each PCI bus
1107 # Since: 0.14.0
1109 { 'command': 'query-pci', 'returns': ['PciInfo'] }
1112 # @quit:
1114 # This command will cause the QEMU process to exit gracefully.  While every
1115 # attempt is made to send the QMP response before terminating, this is not
1116 # guaranteed.  When using this interface, a premature EOF would not be
1117 # unexpected.
1119 # Since: 0.14.0
1121 { 'command': 'quit' }
1124 # @stop:
1126 # Stop all guest VCPU execution.
1128 # Since:  0.14.0
1130 # Notes:  This function will succeed even if the guest is already in the stopped
1131 #         state.  In "inmigrate" state, it will ensure that the guest
1132 #         remains paused once migration finishes, as if the -S option was
1133 #         passed on the command line.
1135 { 'command': 'stop' }
1138 # @system_reset:
1140 # Performs a hard reset of a guest.
1142 # Since: 0.14.0
1144 { 'command': 'system_reset' }
1147 # @system_powerdown:
1149 # Requests that a guest perform a powerdown operation.
1151 # Since: 0.14.0
1153 # Notes: A guest may or may not respond to this command.  This command
1154 #        returning does not indicate that a guest has accepted the request or
1155 #        that it has shut down.  Many guests will respond to this command by
1156 #        prompting the user in some way.
1158 { 'command': 'system_powerdown' }
1161 # @cpu:
1163 # This command is a nop that is only provided for the purposes of compatibility.
1165 # Since: 0.14.0
1167 # Notes: Do not use this command.
1169 { 'command': 'cpu', 'data': {'index': 'int'} }
1172 # @cpu-add
1174 # Adds CPU with specified ID
1176 # @id: ID of CPU to be created, valid values [0..max_cpus)
1178 # Returns: Nothing on success
1180 # Since 1.5
1182 { 'command': 'cpu-add', 'data': {'id': 'int'} }
1185 # @memsave:
1187 # Save a portion of guest memory to a file.
1189 # @val: the virtual address of the guest to start from
1191 # @size: the size of memory region to save
1193 # @filename: the file to save the memory to as binary data
1195 # @cpu-index: #optional the index of the virtual CPU to use for translating the
1196 #                       virtual address (defaults to CPU 0)
1198 # Returns: Nothing on success
1200 # Since: 0.14.0
1202 # Notes: Errors were not reliably returned until 1.1
1204 { 'command': 'memsave',
1205   'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
1208 # @pmemsave:
1210 # Save a portion of guest physical memory to a file.
1212 # @val: the physical address of the guest to start from
1214 # @size: the size of memory region to save
1216 # @filename: the file to save the memory to as binary data
1218 # Returns: Nothing on success
1220 # Since: 0.14.0
1222 # Notes: Errors were not reliably returned until 1.1
1224 { 'command': 'pmemsave',
1225   'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
1228 # @cont:
1230 # Resume guest VCPU execution.
1232 # Since:  0.14.0
1234 # Returns:  If successful, nothing
1235 #           If QEMU was started with an encrypted block device and a key has
1236 #              not yet been set, DeviceEncrypted.
1238 # Notes:  This command will succeed if the guest is currently running.  It
1239 #         will also succeed if the guest is in the "inmigrate" state; in
1240 #         this case, the effect of the command is to make sure the guest
1241 #         starts once migration finishes, removing the effect of the -S
1242 #         command line option if it was passed.
1244 { 'command': 'cont' }
1247 # @system_wakeup:
1249 # Wakeup guest from suspend.  Does nothing in case the guest isn't suspended.
1251 # Since:  1.1
1253 # Returns:  nothing.
1255 { 'command': 'system_wakeup' }
1258 # @inject-nmi:
1260 # Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or all CPUs (ppc64).
1262 # Returns:  If successful, nothing
1264 # Since:  0.14.0
1266 # Note: prior to 2.1, this command was only supported for x86 and s390 VMs
1268 { 'command': 'inject-nmi' }
1271 # @set_link:
1273 # Sets the link status of a virtual network adapter.
1275 # @name: the device name of the virtual network adapter
1277 # @up: true to set the link status to be up
1279 # Returns: Nothing on success
1280 #          If @name is not a valid network device, DeviceNotFound
1282 # Since: 0.14.0
1284 # Notes: Not all network adapters support setting link status.  This command
1285 #        will succeed even if the network adapter does not support link status
1286 #        notification.
1288 { 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} }
1291 # @balloon:
1293 # Request the balloon driver to change its balloon size.
1295 # @value: the target size of the balloon in bytes
1297 # Returns: Nothing on success
1298 #          If the balloon driver is enabled but not functional because the KVM
1299 #            kernel module cannot support it, KvmMissingCap
1300 #          If no balloon device is present, DeviceNotActive
1302 # Notes: This command just issues a request to the guest.  When it returns,
1303 #        the balloon size may not have changed.  A guest can change the balloon
1304 #        size independent of this command.
1306 # Since: 0.14.0
1308 { 'command': 'balloon', 'data': {'value': 'int'} }
1311 # @Abort
1313 # This action can be used to test transaction failure.
1315 # Since: 1.6
1317 { 'type': 'Abort',
1318   'data': { } }
1321 # @TransactionAction
1323 # A discriminated record of operations that can be performed with
1324 # @transaction.
1326 # Since 1.1
1328 # drive-backup since 1.6
1329 # abort since 1.6
1330 # blockdev-snapshot-internal-sync since 1.7
1331 # blockdev-backup since 2.3
1333 { 'union': 'TransactionAction',
1334   'data': {
1335        'blockdev-snapshot-sync': 'BlockdevSnapshot',
1336        'drive-backup': 'DriveBackup',
1337        'blockdev-backup': 'BlockdevBackup',
1338        'abort': 'Abort',
1339        'blockdev-snapshot-internal-sync': 'BlockdevSnapshotInternal'
1340    } }
1343 # @transaction
1345 # Executes a number of transactionable QMP commands atomically. If any
1346 # operation fails, then the entire set of actions will be abandoned and the
1347 # appropriate error returned.
1349 #  List of:
1350 #  @TransactionAction: information needed for the respective operation
1352 # Returns: nothing on success
1353 #          Errors depend on the operations of the transaction
1355 # Note: The transaction aborts on the first failure.  Therefore, there will be
1356 # information on only one failed operation returned in an error condition, and
1357 # subsequent actions will not have been attempted.
1359 # Since 1.1
1361 { 'command': 'transaction',
1362   'data': { 'actions': [ 'TransactionAction' ] } }
1365 # @human-monitor-command:
1367 # Execute a command on the human monitor and return the output.
1369 # @command-line: the command to execute in the human monitor
1371 # @cpu-index: #optional The CPU to use for commands that require an implicit CPU
1373 # Returns: the output of the command as a string
1375 # Since: 0.14.0
1377 # Notes: This command only exists as a stop-gap.  Its use is highly
1378 #        discouraged.  The semantics of this command are not guaranteed.
1380 #        Known limitations:
1382 #        o This command is stateless, this means that commands that depend
1383 #          on state information (such as getfd) might not work
1385 #       o Commands that prompt the user for data (eg. 'cont' when the block
1386 #         device is encrypted) don't currently work
1388 { 'command': 'human-monitor-command',
1389   'data': {'command-line': 'str', '*cpu-index': 'int'},
1390   'returns': 'str' }
1393 # @migrate_cancel
1395 # Cancel the current executing migration process.
1397 # Returns: nothing on success
1399 # Notes: This command succeeds even if there is no migration process running.
1401 # Since: 0.14.0
1403 { 'command': 'migrate_cancel' }
1406 # @migrate_set_downtime
1408 # Set maximum tolerated downtime for migration.
1410 # @value: maximum downtime in seconds
1412 # Returns: nothing on success
1414 # Since: 0.14.0
1416 { 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
1419 # @migrate_set_speed
1421 # Set maximum speed for migration.
1423 # @value: maximum speed in bytes.
1425 # Returns: nothing on success
1427 # Notes: A value lesser than zero will be automatically round up to zero.
1429 # Since: 0.14.0
1431 { 'command': 'migrate_set_speed', 'data': {'value': 'int'} }
1434 # @migrate-set-cache-size
1436 # Set XBZRLE cache size
1438 # @value: cache size in bytes
1440 # The size will be rounded down to the nearest power of 2.
1441 # The cache size can be modified before and during ongoing migration
1443 # Returns: nothing on success
1445 # Since: 1.2
1447 { 'command': 'migrate-set-cache-size', 'data': {'value': 'int'} }
1450 # @query-migrate-cache-size
1452 # query XBZRLE cache size
1454 # Returns: XBZRLE cache size in bytes
1456 # Since: 1.2
1458 { 'command': 'query-migrate-cache-size', 'returns': 'int' }
1461 # @ObjectPropertyInfo:
1463 # @name: the name of the property
1465 # @type: the type of the property.  This will typically come in one of four
1466 #        forms:
1468 #        1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
1469 #           These types are mapped to the appropriate JSON type.
1471 #        2) A legacy type in the form 'legacy<subtype>' where subtype is the
1472 #           legacy qdev typename.  These types are always treated as strings.
1474 #        3) A child type in the form 'child<subtype>' where subtype is a qdev
1475 #           device type name.  Child properties create the composition tree.
1477 #        4) A link type in the form 'link<subtype>' where subtype is a qdev
1478 #           device type name.  Link properties form the device model graph.
1480 # Since: 1.2
1482 { 'type': 'ObjectPropertyInfo',
1483   'data': { 'name': 'str', 'type': 'str' } }
1486 # @qom-list:
1488 # This command will list any properties of a object given a path in the object
1489 # model.
1491 # @path: the path within the object model.  See @qom-get for a description of
1492 #        this parameter.
1494 # Returns: a list of @ObjectPropertyInfo that describe the properties of the
1495 #          object.
1497 # Since: 1.2
1499 { 'command': 'qom-list',
1500   'data': { 'path': 'str' },
1501   'returns': [ 'ObjectPropertyInfo' ] }
1504 # @qom-get:
1506 # This command will get a property from a object model path and return the
1507 # value.
1509 # @path: The path within the object model.  There are two forms of supported
1510 #        paths--absolute and partial paths.
1512 #        Absolute paths are derived from the root object and can follow child<>
1513 #        or link<> properties.  Since they can follow link<> properties, they
1514 #        can be arbitrarily long.  Absolute paths look like absolute filenames
1515 #        and are prefixed  with a leading slash.
1517 #        Partial paths look like relative filenames.  They do not begin
1518 #        with a prefix.  The matching rules for partial paths are subtle but
1519 #        designed to make specifying objects easy.  At each level of the
1520 #        composition tree, the partial path is matched as an absolute path.
1521 #        The first match is not returned.  At least two matches are searched
1522 #        for.  A successful result is only returned if only one match is
1523 #        found.  If more than one match is found, a flag is return to
1524 #        indicate that the match was ambiguous.
1526 # @property: The property name to read
1528 # Returns: The property value.  The type depends on the property type.  legacy<>
1529 #          properties are returned as #str.  child<> and link<> properties are
1530 #          returns as #str pathnames.  All integer property types (u8, u16, etc)
1531 #          are returned as #int.
1533 # Since: 1.2
1535 { 'command': 'qom-get',
1536   'data': { 'path': 'str', 'property': 'str' },
1537   'returns': 'visitor',
1538   'gen': 'no' }
1541 # @qom-set:
1543 # This command will set a property from a object model path.
1545 # @path: see @qom-get for a description of this parameter
1547 # @property: the property name to set
1549 # @value: a value who's type is appropriate for the property type.  See @qom-get
1550 #         for a description of type mapping.
1552 # Since: 1.2
1554 { 'command': 'qom-set',
1555   'data': { 'path': 'str', 'property': 'str', 'value': 'visitor' },
1556   'gen': 'no' }
1559 # @set_password:
1561 # Sets the password of a remote display session.
1563 # @protocol: `vnc' to modify the VNC server password
1564 #            `spice' to modify the Spice server password
1566 # @password: the new password
1568 # @connected: #optional how to handle existing clients when changing the
1569 #                       password.  If nothing is specified, defaults to `keep'
1570 #                       `fail' to fail the command if clients are connected
1571 #                       `disconnect' to disconnect existing clients
1572 #                       `keep' to maintain existing clients
1574 # Returns: Nothing on success
1575 #          If Spice is not enabled, DeviceNotFound
1577 # Since: 0.14.0
1579 { 'command': 'set_password',
1580   'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} }
1583 # @expire_password:
1585 # Expire the password of a remote display server.
1587 # @protocol: the name of the remote display protocol `vnc' or `spice'
1589 # @time: when to expire the password.
1590 #        `now' to expire the password immediately
1591 #        `never' to cancel password expiration
1592 #        `+INT' where INT is the number of seconds from now (integer)
1593 #        `INT' where INT is the absolute time in seconds
1595 # Returns: Nothing on success
1596 #          If @protocol is `spice' and Spice is not active, DeviceNotFound
1598 # Since: 0.14.0
1600 # Notes: Time is relative to the server and currently there is no way to
1601 #        coordinate server time with client time.  It is not recommended to
1602 #        use the absolute time version of the @time parameter unless you're
1603 #        sure you are on the same machine as the QEMU instance.
1605 { 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} }
1608 # @change-vnc-password:
1610 # Change the VNC server password.
1612 # @password:  the new password to use with VNC authentication
1614 # Since: 1.1
1616 # Notes:  An empty password in this command will set the password to the empty
1617 #         string.  Existing clients are unaffected by executing this command.
1619 { 'command': 'change-vnc-password', 'data': {'password': 'str'} }
1622 # @change:
1624 # This command is multiple commands multiplexed together.
1626 # @device: This is normally the name of a block device but it may also be 'vnc'.
1627 #          when it's 'vnc', then sub command depends on @target
1629 # @target: If @device is a block device, then this is the new filename.
1630 #          If @device is 'vnc', then if the value 'password' selects the vnc
1631 #          change password command.   Otherwise, this specifies a new server URI
1632 #          address to listen to for VNC connections.
1634 # @arg:    If @device is a block device, then this is an optional format to open
1635 #          the device with.
1636 #          If @device is 'vnc' and @target is 'password', this is the new VNC
1637 #          password to set.  If this argument is an empty string, then no future
1638 #          logins will be allowed.
1640 # Returns: Nothing on success.
1641 #          If @device is not a valid block device, DeviceNotFound
1642 #          If the new block device is encrypted, DeviceEncrypted.  Note that
1643 #          if this error is returned, the device has been opened successfully
1644 #          and an additional call to @block_passwd is required to set the
1645 #          device's password.  The behavior of reads and writes to the block
1646 #          device between when these calls are executed is undefined.
1648 # Notes:  It is strongly recommended that this interface is not used especially
1649 #         for changing block devices.
1651 # Since: 0.14.0
1653 { 'command': 'change',
1654   'data': {'device': 'str', 'target': 'str', '*arg': 'str'} }
1657 # @ObjectTypeInfo:
1659 # This structure describes a search result from @qom-list-types
1661 # @name: the type name found in the search
1663 # Since: 1.1
1665 # Notes: This command is experimental and may change syntax in future releases.
1667 { 'type': 'ObjectTypeInfo',
1668   'data': { 'name': 'str' } }
1671 # @qom-list-types:
1673 # This command will return a list of types given search parameters
1675 # @implements: if specified, only return types that implement this type name
1677 # @abstract: if true, include abstract types in the results
1679 # Returns: a list of @ObjectTypeInfo or an empty list if no results are found
1681 # Since: 1.1
1683 { 'command': 'qom-list-types',
1684   'data': { '*implements': 'str', '*abstract': 'bool' },
1685   'returns': [ 'ObjectTypeInfo' ] }
1688 # @DevicePropertyInfo:
1690 # Information about device properties.
1692 # @name: the name of the property
1693 # @type: the typename of the property
1694 # @description: #optional if specified, the description of the property.
1695 #               (since 2.2)
1697 # Since: 1.2
1699 { 'type': 'DevicePropertyInfo',
1700   'data': { 'name': 'str', 'type': 'str', '*description': 'str' } }
1703 # @device-list-properties:
1705 # List properties associated with a device.
1707 # @typename: the type name of a device
1709 # Returns: a list of DevicePropertyInfo describing a devices properties
1711 # Since: 1.2
1713 { 'command': 'device-list-properties',
1714   'data': { 'typename': 'str'},
1715   'returns': [ 'DevicePropertyInfo' ] }
1718 # @migrate
1720 # Migrates the current running guest to another Virtual Machine.
1722 # @uri: the Uniform Resource Identifier of the destination VM
1724 # @blk: #optional do block migration (full disk copy)
1726 # @inc: #optional incremental disk copy migration
1728 # @detach: this argument exists only for compatibility reasons and
1729 #          is ignored by QEMU
1731 # Returns: nothing on success
1733 # Since: 0.14.0
1735 { 'command': 'migrate',
1736   'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
1738 # @xen-save-devices-state:
1740 # Save the state of all devices to file. The RAM and the block devices
1741 # of the VM are not saved by this command.
1743 # @filename: the file to save the state of the devices to as binary
1744 # data. See xen-save-devices-state.txt for a description of the binary
1745 # format.
1747 # Returns: Nothing on success
1749 # Since: 1.1
1751 { 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} }
1754 # @xen-set-global-dirty-log
1756 # Enable or disable the global dirty log mode.
1758 # @enable: true to enable, false to disable.
1760 # Returns: nothing
1762 # Since: 1.3
1764 { 'command': 'xen-set-global-dirty-log', 'data': { 'enable': 'bool' } }
1767 # @device_del:
1769 # Remove a device from a guest
1771 # @id: the name of the device
1773 # Returns: Nothing on success
1774 #          If @id is not a valid device, DeviceNotFound
1776 # Notes: When this command completes, the device may not be removed from the
1777 #        guest.  Hot removal is an operation that requires guest cooperation.
1778 #        This command merely requests that the guest begin the hot removal
1779 #        process.  Completion of the device removal process is signaled with a
1780 #        DEVICE_DELETED event. Guest reset will automatically complete removal
1781 #        for all devices.
1783 # Since: 0.14.0
1785 { 'command': 'device_del', 'data': {'id': 'str'} }
1788 # @DumpGuestMemoryFormat:
1790 # An enumeration of guest-memory-dump's format.
1792 # @elf: elf format
1794 # @kdump-zlib: kdump-compressed format with zlib-compressed
1796 # @kdump-lzo: kdump-compressed format with lzo-compressed
1798 # @kdump-snappy: kdump-compressed format with snappy-compressed
1800 # Since: 2.0
1802 { 'enum': 'DumpGuestMemoryFormat',
1803   'data': [ 'elf', 'kdump-zlib', 'kdump-lzo', 'kdump-snappy' ] }
1806 # @dump-guest-memory
1808 # Dump guest's memory to vmcore. It is a synchronous operation that can take
1809 # very long depending on the amount of guest memory. This command is only
1810 # supported on i386 and x86_64.
1812 # @paging: if true, do paging to get guest's memory mapping. This allows
1813 #          using gdb to process the core file.
1815 #          IMPORTANT: this option can make QEMU allocate several gigabytes
1816 #                     of RAM. This can happen for a large guest, or a
1817 #                     malicious guest pretending to be large.
1819 #          Also, paging=true has the following limitations:
1821 #             1. The guest may be in a catastrophic state or can have corrupted
1822 #                memory, which cannot be trusted
1823 #             2. The guest can be in real-mode even if paging is enabled. For
1824 #                example, the guest uses ACPI to sleep, and ACPI sleep state
1825 #                goes in real-mode
1827 # @protocol: the filename or file descriptor of the vmcore. The supported
1828 #            protocols are:
1830 #            1. file: the protocol starts with "file:", and the following
1831 #               string is the file's path.
1832 #            2. fd: the protocol starts with "fd:", and the following string
1833 #               is the fd's name.
1835 # @begin: #optional if specified, the starting physical address.
1837 # @length: #optional if specified, the memory size, in bytes. If you don't
1838 #          want to dump all guest's memory, please specify the start @begin
1839 #          and @length
1841 # @format: #optional if specified, the format of guest memory dump. But non-elf
1842 #          format is conflict with paging and filter, ie. @paging, @begin and
1843 #          @length is not allowed to be specified with non-elf @format at the
1844 #          same time (since 2.0)
1846 # Returns: nothing on success
1848 # Since: 1.2
1850 { 'command': 'dump-guest-memory',
1851   'data': { 'paging': 'bool', 'protocol': 'str', '*begin': 'int',
1852             '*length': 'int', '*format': 'DumpGuestMemoryFormat' } }
1855 # @DumpGuestMemoryCapability:
1857 # A list of the available formats for dump-guest-memory
1859 # Since: 2.0
1861 { 'type': 'DumpGuestMemoryCapability',
1862   'data': {
1863       'formats': ['DumpGuestMemoryFormat'] } }
1866 # @query-dump-guest-memory-capability:
1868 # Returns the available formats for dump-guest-memory
1870 # Returns:  A @DumpGuestMemoryCapability object listing available formats for
1871 #           dump-guest-memory
1873 # Since: 2.0
1875 { 'command': 'query-dump-guest-memory-capability',
1876   'returns': 'DumpGuestMemoryCapability' }
1879 # @netdev_add:
1881 # Add a network backend.
1883 # @type: the type of network backend.  Current valid values are 'user', 'tap',
1884 #        'vde', 'socket', 'dump' and 'bridge'
1886 # @id: the name of the new network backend
1888 # @props: #optional a list of properties to be passed to the backend in
1889 #         the format 'name=value', like 'ifname=tap0,script=no'
1891 # Notes: The semantics of @props is not well defined.  Future commands will be
1892 #        introduced that provide stronger typing for backend creation.
1894 # Since: 0.14.0
1896 # Returns: Nothing on success
1897 #          If @type is not a valid network backend, DeviceNotFound
1899 { 'command': 'netdev_add',
1900   'data': {'type': 'str', 'id': 'str', '*props': '**'},
1901   'gen': 'no' }
1904 # @netdev_del:
1906 # Remove a network backend.
1908 # @id: the name of the network backend to remove
1910 # Returns: Nothing on success
1911 #          If @id is not a valid network backend, DeviceNotFound
1913 # Since: 0.14.0
1915 { 'command': 'netdev_del', 'data': {'id': 'str'} }
1918 # @object-add:
1920 # Create a QOM object.
1922 # @qom-type: the class name for the object to be created
1924 # @id: the name of the new object
1926 # @props: #optional a dictionary of properties to be passed to the backend
1928 # Returns: Nothing on success
1929 #          Error if @qom-type is not a valid class name
1931 # Since: 2.0
1933 { 'command': 'object-add',
1934   'data': {'qom-type': 'str', 'id': 'str', '*props': 'dict'},
1935   'gen': 'no' }
1938 # @object-del:
1940 # Remove a QOM object.
1942 # @id: the name of the QOM object to remove
1944 # Returns: Nothing on success
1945 #          Error if @id is not a valid id for a QOM object
1947 # Since: 2.0
1949 { 'command': 'object-del', 'data': {'id': 'str'} }
1952 # @NetdevNoneOptions
1954 # Use it alone to have zero network devices.
1956 # Since 1.2
1958 { 'type': 'NetdevNoneOptions',
1959   'data': { } }
1962 # @NetLegacyNicOptions
1964 # Create a new Network Interface Card.
1966 # @netdev: #optional id of -netdev to connect to
1968 # @macaddr: #optional MAC address
1970 # @model: #optional device model (e1000, rtl8139, virtio etc.)
1972 # @addr: #optional PCI device address
1974 # @vectors: #optional number of MSI-x vectors, 0 to disable MSI-X
1976 # Since 1.2
1978 { 'type': 'NetLegacyNicOptions',
1979   'data': {
1980     '*netdev':  'str',
1981     '*macaddr': 'str',
1982     '*model':   'str',
1983     '*addr':    'str',
1984     '*vectors': 'uint32' } }
1987 # @String
1989 # A fat type wrapping 'str', to be embedded in lists.
1991 # Since 1.2
1993 { 'type': 'String',
1994   'data': {
1995     'str': 'str' } }
1998 # @NetdevUserOptions
2000 # Use the user mode network stack which requires no administrator privilege to
2001 # run.
2003 # @hostname: #optional client hostname reported by the builtin DHCP server
2005 # @restrict: #optional isolate the guest from the host
2007 # @ip: #optional legacy parameter, use net= instead
2009 # @net: #optional IP address and optional netmask
2011 # @host: #optional guest-visible address of the host
2013 # @tftp: #optional root directory of the built-in TFTP server
2015 # @bootfile: #optional BOOTP filename, for use with tftp=
2017 # @dhcpstart: #optional the first of the 16 IPs the built-in DHCP server can
2018 #             assign
2020 # @dns: #optional guest-visible address of the virtual nameserver
2022 # @dnssearch: #optional list of DNS suffixes to search, passed as DHCP option
2023 #             to the guest
2025 # @smb: #optional root directory of the built-in SMB server
2027 # @smbserver: #optional IP address of the built-in SMB server
2029 # @hostfwd: #optional redirect incoming TCP or UDP host connections to guest
2030 #           endpoints
2032 # @guestfwd: #optional forward guest TCP connections
2034 # Since 1.2
2036 { 'type': 'NetdevUserOptions',
2037   'data': {
2038     '*hostname':  'str',
2039     '*restrict':  'bool',
2040     '*ip':        'str',
2041     '*net':       'str',
2042     '*host':      'str',
2043     '*tftp':      'str',
2044     '*bootfile':  'str',
2045     '*dhcpstart': 'str',
2046     '*dns':       'str',
2047     '*dnssearch': ['String'],
2048     '*smb':       'str',
2049     '*smbserver': 'str',
2050     '*hostfwd':   ['String'],
2051     '*guestfwd':  ['String'] } }
2054 # @NetdevTapOptions
2056 # Connect the host TAP network interface name to the VLAN.
2058 # @ifname: #optional interface name
2060 # @fd: #optional file descriptor of an already opened tap
2062 # @fds: #optional multiple file descriptors of already opened multiqueue capable
2063 # tap
2065 # @script: #optional script to initialize the interface
2067 # @downscript: #optional script to shut down the interface
2069 # @helper: #optional command to execute to configure bridge
2071 # @sndbuf: #optional send buffer limit. Understands [TGMKkb] suffixes.
2073 # @vnet_hdr: #optional enable the IFF_VNET_HDR flag on the tap interface
2075 # @vhost: #optional enable vhost-net network accelerator
2077 # @vhostfd: #optional file descriptor of an already opened vhost net device
2079 # @vhostfds: #optional file descriptors of multiple already opened vhost net
2080 # devices
2082 # @vhostforce: #optional vhost on for non-MSIX virtio guests
2084 # @queues: #optional number of queues to be created for multiqueue capable tap
2086 # Since 1.2
2088 { 'type': 'NetdevTapOptions',
2089   'data': {
2090     '*ifname':     'str',
2091     '*fd':         'str',
2092     '*fds':        'str',
2093     '*script':     'str',
2094     '*downscript': 'str',
2095     '*helper':     'str',
2096     '*sndbuf':     'size',
2097     '*vnet_hdr':   'bool',
2098     '*vhost':      'bool',
2099     '*vhostfd':    'str',
2100     '*vhostfds':   'str',
2101     '*vhostforce': 'bool',
2102     '*queues':     'uint32'} }
2105 # @NetdevSocketOptions
2107 # Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP
2108 # socket connection.
2110 # @fd: #optional file descriptor of an already opened socket
2112 # @listen: #optional port number, and optional hostname, to listen on
2114 # @connect: #optional port number, and optional hostname, to connect to
2116 # @mcast: #optional UDP multicast address and port number
2118 # @localaddr: #optional source address and port for multicast and udp packets
2120 # @udp: #optional UDP unicast address and port number
2122 # Since 1.2
2124 { 'type': 'NetdevSocketOptions',
2125   'data': {
2126     '*fd':        'str',
2127     '*listen':    'str',
2128     '*connect':   'str',
2129     '*mcast':     'str',
2130     '*localaddr': 'str',
2131     '*udp':       'str' } }
2134 # @NetdevL2TPv3Options
2136 # Connect the VLAN to Ethernet over L2TPv3 Static tunnel
2138 # @src: source address
2140 # @dst: destination address
2142 # @srcport: #optional source port - mandatory for udp, optional for ip
2144 # @dstport: #optional destination port - mandatory for udp, optional for ip
2146 # @ipv6: #optional - force the use of ipv6
2148 # @udp: #optional - use the udp version of l2tpv3 encapsulation
2150 # @cookie64: #optional - use 64 bit coookies
2152 # @counter: #optional have sequence counter
2154 # @pincounter: #optional pin sequence counter to zero -
2155 #              workaround for buggy implementations or
2156 #              networks with packet reorder
2158 # @txcookie: #optional 32 or 64 bit transmit cookie
2160 # @rxcookie: #optional 32 or 64 bit receive cookie
2162 # @txsession: 32 bit transmit session
2164 # @rxsession: #optional 32 bit receive session - if not specified
2165 #             set to the same value as transmit
2167 # @offset: #optional additional offset - allows the insertion of
2168 #          additional application-specific data before the packet payload
2170 # Since 2.1
2172 { 'type': 'NetdevL2TPv3Options',
2173   'data': {
2174     'src':          'str',
2175     'dst':          'str',
2176     '*srcport':     'str',
2177     '*dstport':     'str',
2178     '*ipv6':        'bool',
2179     '*udp':         'bool',
2180     '*cookie64':    'bool',
2181     '*counter':     'bool',
2182     '*pincounter':  'bool',
2183     '*txcookie':    'uint64',
2184     '*rxcookie':    'uint64',
2185     'txsession':    'uint32',
2186     '*rxsession':   'uint32',
2187     '*offset':      'uint32' } }
2190 # @NetdevVdeOptions
2192 # Connect the VLAN to a vde switch running on the host.
2194 # @sock: #optional socket path
2196 # @port: #optional port number
2198 # @group: #optional group owner of socket
2200 # @mode: #optional permissions for socket
2202 # Since 1.2
2204 { 'type': 'NetdevVdeOptions',
2205   'data': {
2206     '*sock':  'str',
2207     '*port':  'uint16',
2208     '*group': 'str',
2209     '*mode':  'uint16' } }
2212 # @NetdevDumpOptions
2214 # Dump VLAN network traffic to a file.
2216 # @len: #optional per-packet size limit (64k default). Understands [TGMKkb]
2217 # suffixes.
2219 # @file: #optional dump file path (default is qemu-vlan0.pcap)
2221 # Since 1.2
2223 { 'type': 'NetdevDumpOptions',
2224   'data': {
2225     '*len':  'size',
2226     '*file': 'str' } }
2229 # @NetdevBridgeOptions
2231 # Connect a host TAP network interface to a host bridge device.
2233 # @br: #optional bridge name
2235 # @helper: #optional command to execute to configure bridge
2237 # Since 1.2
2239 { 'type': 'NetdevBridgeOptions',
2240   'data': {
2241     '*br':     'str',
2242     '*helper': 'str' } }
2245 # @NetdevHubPortOptions
2247 # Connect two or more net clients through a software hub.
2249 # @hubid: hub identifier number
2251 # Since 1.2
2253 { 'type': 'NetdevHubPortOptions',
2254   'data': {
2255     'hubid':     'int32' } }
2258 # @NetdevNetmapOptions
2260 # Connect a client to a netmap-enabled NIC or to a VALE switch port
2262 # @ifname: Either the name of an existing network interface supported by
2263 #          netmap, or the name of a VALE port (created on the fly).
2264 #          A VALE port name is in the form 'valeXXX:YYY', where XXX and
2265 #          YYY are non-negative integers. XXX identifies a switch and
2266 #          YYY identifies a port of the switch. VALE ports having the
2267 #          same XXX are therefore connected to the same switch.
2269 # @devname: #optional path of the netmap device (default: '/dev/netmap').
2271 # Since 2.0
2273 { 'type': 'NetdevNetmapOptions',
2274   'data': {
2275     'ifname':     'str',
2276     '*devname':    'str' } }
2279 # @NetdevVhostUserOptions
2281 # Vhost-user network backend
2283 # @chardev: name of a unix socket chardev
2285 # @vhostforce: #optional vhost on for non-MSIX virtio guests (default: false).
2287 # Since 2.1
2289 { 'type': 'NetdevVhostUserOptions',
2290   'data': {
2291     'chardev':        'str',
2292     '*vhostforce':    'bool' } }
2295 # @NetClientOptions
2297 # A discriminated record of network device traits.
2299 # Since 1.2
2301 # 'l2tpv3' - since 2.1
2304 { 'union': 'NetClientOptions',
2305   'data': {
2306     'none':     'NetdevNoneOptions',
2307     'nic':      'NetLegacyNicOptions',
2308     'user':     'NetdevUserOptions',
2309     'tap':      'NetdevTapOptions',
2310     'l2tpv3':   'NetdevL2TPv3Options',
2311     'socket':   'NetdevSocketOptions',
2312     'vde':      'NetdevVdeOptions',
2313     'dump':     'NetdevDumpOptions',
2314     'bridge':   'NetdevBridgeOptions',
2315     'hubport':  'NetdevHubPortOptions',
2316     'netmap':   'NetdevNetmapOptions',
2317     'vhost-user': 'NetdevVhostUserOptions' } }
2320 # @NetLegacy
2322 # Captures the configuration of a network device; legacy.
2324 # @vlan: #optional vlan number
2326 # @id: #optional identifier for monitor commands
2328 # @name: #optional identifier for monitor commands, ignored if @id is present
2330 # @opts: device type specific properties (legacy)
2332 # Since 1.2
2334 { 'type': 'NetLegacy',
2335   'data': {
2336     '*vlan': 'int32',
2337     '*id':   'str',
2338     '*name': 'str',
2339     'opts':  'NetClientOptions' } }
2342 # @Netdev
2344 # Captures the configuration of a network device.
2346 # @id: identifier for monitor commands.
2348 # @opts: device type specific properties
2350 # Since 1.2
2352 { 'type': 'Netdev',
2353   'data': {
2354     'id':   'str',
2355     'opts': 'NetClientOptions' } }
2358 # @InetSocketAddress
2360 # Captures a socket address or address range in the Internet namespace.
2362 # @host: host part of the address
2364 # @port: port part of the address, or lowest port if @to is present
2366 # @to: highest port to try
2368 # @ipv4: whether to accept IPv4 addresses, default try both IPv4 and IPv6
2369 #        #optional
2371 # @ipv6: whether to accept IPv6 addresses, default try both IPv4 and IPv6
2372 #        #optional
2374 # Since 1.3
2376 { 'type': 'InetSocketAddress',
2377   'data': {
2378     'host': 'str',
2379     'port': 'str',
2380     '*to': 'uint16',
2381     '*ipv4': 'bool',
2382     '*ipv6': 'bool' } }
2385 # @UnixSocketAddress
2387 # Captures a socket address in the local ("Unix socket") namespace.
2389 # @path: filesystem path to use
2391 # Since 1.3
2393 { 'type': 'UnixSocketAddress',
2394   'data': {
2395     'path': 'str' } }
2398 # @SocketAddress
2400 # Captures the address of a socket, which could also be a named file descriptor
2402 # Since 1.3
2404 { 'union': 'SocketAddress',
2405   'data': {
2406     'inet': 'InetSocketAddress',
2407     'unix': 'UnixSocketAddress',
2408     'fd': 'String' } }
2411 # @getfd:
2413 # Receive a file descriptor via SCM rights and assign it a name
2415 # @fdname: file descriptor name
2417 # Returns: Nothing on success
2419 # Since: 0.14.0
2421 # Notes: If @fdname already exists, the file descriptor assigned to
2422 #        it will be closed and replaced by the received file
2423 #        descriptor.
2424 #        The 'closefd' command can be used to explicitly close the
2425 #        file descriptor when it is no longer needed.
2427 { 'command': 'getfd', 'data': {'fdname': 'str'} }
2430 # @closefd:
2432 # Close a file descriptor previously passed via SCM rights
2434 # @fdname: file descriptor name
2436 # Returns: Nothing on success
2438 # Since: 0.14.0
2440 { 'command': 'closefd', 'data': {'fdname': 'str'} }
2443 # @MachineInfo:
2445 # Information describing a machine.
2447 # @name: the name of the machine
2449 # @alias: #optional an alias for the machine name
2451 # @default: #optional whether the machine is default
2453 # @cpu-max: maximum number of CPUs supported by the machine type
2454 #           (since 1.5.0)
2456 # Since: 1.2.0
2458 { 'type': 'MachineInfo',
2459   'data': { 'name': 'str', '*alias': 'str',
2460             '*is-default': 'bool', 'cpu-max': 'int' } }
2463 # @query-machines:
2465 # Return a list of supported machines
2467 # Returns: a list of MachineInfo
2469 # Since: 1.2.0
2471 { 'command': 'query-machines', 'returns': ['MachineInfo'] }
2474 # @CpuDefinitionInfo:
2476 # Virtual CPU definition.
2478 # @name: the name of the CPU definition
2480 # Since: 1.2.0
2482 { 'type': 'CpuDefinitionInfo',
2483   'data': { 'name': 'str' } }
2486 # @query-cpu-definitions:
2488 # Return a list of supported virtual CPU definitions
2490 # Returns: a list of CpuDefInfo
2492 # Since: 1.2.0
2494 { 'command': 'query-cpu-definitions', 'returns': ['CpuDefinitionInfo'] }
2496 # @AddfdInfo:
2498 # Information about a file descriptor that was added to an fd set.
2500 # @fdset-id: The ID of the fd set that @fd was added to.
2502 # @fd: The file descriptor that was received via SCM rights and
2503 #      added to the fd set.
2505 # Since: 1.2.0
2507 { 'type': 'AddfdInfo', 'data': {'fdset-id': 'int', 'fd': 'int'} }
2510 # @add-fd:
2512 # Add a file descriptor, that was passed via SCM rights, to an fd set.
2514 # @fdset-id: #optional The ID of the fd set to add the file descriptor to.
2516 # @opaque: #optional A free-form string that can be used to describe the fd.
2518 # Returns: @AddfdInfo on success
2519 #          If file descriptor was not received, FdNotSupplied
2520 #          If @fdset-id is a negative value, InvalidParameterValue
2522 # Notes: The list of fd sets is shared by all monitor connections.
2524 #        If @fdset-id is not specified, a new fd set will be created.
2526 # Since: 1.2.0
2528 { 'command': 'add-fd', 'data': {'*fdset-id': 'int', '*opaque': 'str'},
2529   'returns': 'AddfdInfo' }
2532 # @remove-fd:
2534 # Remove a file descriptor from an fd set.
2536 # @fdset-id: The ID of the fd set that the file descriptor belongs to.
2538 # @fd: #optional The file descriptor that is to be removed.
2540 # Returns: Nothing on success
2541 #          If @fdset-id or @fd is not found, FdNotFound
2543 # Since: 1.2.0
2545 # Notes: The list of fd sets is shared by all monitor connections.
2547 #        If @fd is not specified, all file descriptors in @fdset-id
2548 #        will be removed.
2550 { 'command': 'remove-fd', 'data': {'fdset-id': 'int', '*fd': 'int'} }
2553 # @FdsetFdInfo:
2555 # Information about a file descriptor that belongs to an fd set.
2557 # @fd: The file descriptor value.
2559 # @opaque: #optional A free-form string that can be used to describe the fd.
2561 # Since: 1.2.0
2563 { 'type': 'FdsetFdInfo',
2564   'data': {'fd': 'int', '*opaque': 'str'} }
2567 # @FdsetInfo:
2569 # Information about an fd set.
2571 # @fdset-id: The ID of the fd set.
2573 # @fds: A list of file descriptors that belong to this fd set.
2575 # Since: 1.2.0
2577 { 'type': 'FdsetInfo',
2578   'data': {'fdset-id': 'int', 'fds': ['FdsetFdInfo']} }
2581 # @query-fdsets:
2583 # Return information describing all fd sets.
2585 # Returns: A list of @FdsetInfo
2587 # Since: 1.2.0
2589 # Note: The list of fd sets is shared by all monitor connections.
2592 { 'command': 'query-fdsets', 'returns': ['FdsetInfo'] }
2595 # @TargetInfo:
2597 # Information describing the QEMU target.
2599 # @arch: the target architecture (eg "x86_64", "i386", etc)
2601 # Since: 1.2.0
2603 { 'type': 'TargetInfo',
2604   'data': { 'arch': 'str' } }
2607 # @query-target:
2609 # Return information about the target for this QEMU
2611 # Returns: TargetInfo
2613 # Since: 1.2.0
2615 { 'command': 'query-target', 'returns': 'TargetInfo' }
2618 # @QKeyCode:
2620 # An enumeration of key name.
2622 # This is used by the send-key command.
2624 # Since: 1.3.0
2626 # 'unmapped' and 'pause' since 2.0
2628 { 'enum': 'QKeyCode',
2629   'data': [ 'unmapped',
2630             'shift', 'shift_r', 'alt', 'alt_r', 'altgr', 'altgr_r', 'ctrl',
2631             'ctrl_r', 'menu', 'esc', '1', '2', '3', '4', '5', '6', '7', '8',
2632             '9', '0', 'minus', 'equal', 'backspace', 'tab', 'q', 'w', 'e',
2633             'r', 't', 'y', 'u', 'i', 'o', 'p', 'bracket_left', 'bracket_right',
2634             'ret', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'semicolon',
2635             'apostrophe', 'grave_accent', 'backslash', 'z', 'x', 'c', 'v', 'b',
2636             'n', 'm', 'comma', 'dot', 'slash', 'asterisk', 'spc', 'caps_lock',
2637             'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'f10',
2638             'num_lock', 'scroll_lock', 'kp_divide', 'kp_multiply',
2639             'kp_subtract', 'kp_add', 'kp_enter', 'kp_decimal', 'sysrq', 'kp_0',
2640             'kp_1', 'kp_2', 'kp_3', 'kp_4', 'kp_5', 'kp_6', 'kp_7', 'kp_8',
2641             'kp_9', 'less', 'f11', 'f12', 'print', 'home', 'pgup', 'pgdn', 'end',
2642             'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again',
2643             'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut',
2644              'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause' ] }
2647 # @KeyValue
2649 # Represents a keyboard key.
2651 # Since: 1.3.0
2653 { 'union': 'KeyValue',
2654   'data': {
2655     'number': 'int',
2656     'qcode': 'QKeyCode' } }
2659 # @send-key:
2661 # Send keys to guest.
2663 # @keys: An array of @KeyValue elements. All @KeyValues in this array are
2664 #        simultaneously sent to the guest. A @KeyValue.number value is sent
2665 #        directly to the guest, while @KeyValue.qcode must be a valid
2666 #        @QKeyCode value
2668 # @hold-time: #optional time to delay key up events, milliseconds. Defaults
2669 #             to 100
2671 # Returns: Nothing on success
2672 #          If key is unknown or redundant, InvalidParameter
2674 # Since: 1.3.0
2677 { 'command': 'send-key',
2678   'data': { 'keys': ['KeyValue'], '*hold-time': 'int' } }
2681 # @screendump:
2683 # Write a PPM of the VGA screen to a file.
2685 # @filename: the path of a new PPM file to store the image
2687 # Returns: Nothing on success
2689 # Since: 0.14.0
2691 { 'command': 'screendump', 'data': {'filename': 'str'} }
2694 # @ChardevFile:
2696 # Configuration info for file chardevs.
2698 # @in:  #optional The name of the input file
2699 # @out: The name of the output file
2701 # Since: 1.4
2703 { 'type': 'ChardevFile', 'data': { '*in' : 'str',
2704                                    'out' : 'str' } }
2707 # @ChardevHostdev:
2709 # Configuration info for device and pipe chardevs.
2711 # @device: The name of the special file for the device,
2712 #          i.e. /dev/ttyS0 on Unix or COM1: on Windows
2713 # @type: What kind of device this is.
2715 # Since: 1.4
2717 { 'type': 'ChardevHostdev', 'data': { 'device' : 'str' } }
2720 # @ChardevSocket:
2722 # Configuration info for (stream) socket chardevs.
2724 # @addr: socket address to listen on (server=true)
2725 #        or connect to (server=false)
2726 # @server: #optional create server socket (default: true)
2727 # @wait: #optional wait for incoming connection on server
2728 #        sockets (default: false).
2729 # @nodelay: #optional set TCP_NODELAY socket option (default: false)
2730 # @telnet: #optional enable telnet protocol on server
2731 #          sockets (default: false)
2732 # @reconnect: #optional For a client socket, if a socket is disconnected,
2733 #          then attempt a reconnect after the given number of seconds.
2734 #          Setting this to zero disables this function. (default: 0)
2735 #          (Since: 2.2)
2737 # Since: 1.4
2739 { 'type': 'ChardevSocket', 'data': { 'addr'       : 'SocketAddress',
2740                                      '*server'    : 'bool',
2741                                      '*wait'      : 'bool',
2742                                      '*nodelay'   : 'bool',
2743                                      '*telnet'    : 'bool',
2744                                      '*reconnect' : 'int' } }
2747 # @ChardevUdp:
2749 # Configuration info for datagram socket chardevs.
2751 # @remote: remote address
2752 # @local: #optional local address
2754 # Since: 1.5
2756 { 'type': 'ChardevUdp', 'data': { 'remote' : 'SocketAddress',
2757                                   '*local' : 'SocketAddress' } }
2760 # @ChardevMux:
2762 # Configuration info for mux chardevs.
2764 # @chardev: name of the base chardev.
2766 # Since: 1.5
2768 { 'type': 'ChardevMux', 'data': { 'chardev' : 'str' } }
2771 # @ChardevStdio:
2773 # Configuration info for stdio chardevs.
2775 # @signal: #optional Allow signals (such as SIGINT triggered by ^C)
2776 #          be delivered to qemu.  Default: true in -nographic mode,
2777 #          false otherwise.
2779 # Since: 1.5
2781 { 'type': 'ChardevStdio', 'data': { '*signal' : 'bool' } }
2784 # @ChardevSpiceChannel:
2786 # Configuration info for spice vm channel chardevs.
2788 # @type: kind of channel (for example vdagent).
2790 # Since: 1.5
2792 { 'type': 'ChardevSpiceChannel', 'data': { 'type'  : 'str' } }
2795 # @ChardevSpicePort:
2797 # Configuration info for spice port chardevs.
2799 # @fqdn: name of the channel (see docs/spice-port-fqdn.txt)
2801 # Since: 1.5
2803 { 'type': 'ChardevSpicePort', 'data': { 'fqdn'  : 'str' } }
2806 # @ChardevVC:
2808 # Configuration info for virtual console chardevs.
2810 # @width:  console width,  in pixels
2811 # @height: console height, in pixels
2812 # @cols:   console width,  in chars
2813 # @rows:   console height, in chars
2815 # Since: 1.5
2817 { 'type': 'ChardevVC', 'data': { '*width'  : 'int',
2818                                  '*height' : 'int',
2819                                  '*cols'   : 'int',
2820                                  '*rows'   : 'int' } }
2823 # @ChardevRingbuf:
2825 # Configuration info for ring buffer chardevs.
2827 # @size: #optional ring buffer size, must be power of two, default is 65536
2829 # Since: 1.5
2831 { 'type': 'ChardevRingbuf', 'data': { '*size'  : 'int' } }
2834 # @ChardevBackend:
2836 # Configuration info for the new chardev backend.
2838 # Since: 1.4 (testdev since 2.2)
2840 { 'type': 'ChardevDummy', 'data': { } }
2842 { 'union': 'ChardevBackend', 'data': { 'file'   : 'ChardevFile',
2843                                        'serial' : 'ChardevHostdev',
2844                                        'parallel': 'ChardevHostdev',
2845                                        'pipe'   : 'ChardevHostdev',
2846                                        'socket' : 'ChardevSocket',
2847                                        'udp'    : 'ChardevUdp',
2848                                        'pty'    : 'ChardevDummy',
2849                                        'null'   : 'ChardevDummy',
2850                                        'mux'    : 'ChardevMux',
2851                                        'msmouse': 'ChardevDummy',
2852                                        'braille': 'ChardevDummy',
2853                                        'testdev': 'ChardevDummy',
2854                                        'stdio'  : 'ChardevStdio',
2855                                        'console': 'ChardevDummy',
2856                                        'spicevmc' : 'ChardevSpiceChannel',
2857                                        'spiceport' : 'ChardevSpicePort',
2858                                        'vc'     : 'ChardevVC',
2859                                        'ringbuf': 'ChardevRingbuf',
2860                                        # next one is just for compatibility
2861                                        'memory' : 'ChardevRingbuf' } }
2864 # @ChardevReturn:
2866 # Return info about the chardev backend just created.
2868 # @pty: #optional name of the slave pseudoterminal device, present if
2869 #       and only if a chardev of type 'pty' was created
2871 # Since: 1.4
2873 { 'type' : 'ChardevReturn', 'data': { '*pty' : 'str' } }
2876 # @chardev-add:
2878 # Add a character device backend
2880 # @id: the chardev's ID, must be unique
2881 # @backend: backend type and parameters
2883 # Returns: ChardevReturn.
2885 # Since: 1.4
2887 { 'command': 'chardev-add', 'data': {'id'      : 'str',
2888                                      'backend' : 'ChardevBackend' },
2889   'returns': 'ChardevReturn' }
2892 # @chardev-remove:
2894 # Remove a character device backend
2896 # @id: the chardev's ID, must exist and not be in use
2898 # Returns: Nothing on success
2900 # Since: 1.4
2902 { 'command': 'chardev-remove', 'data': {'id': 'str'} }
2905 # @TpmModel:
2907 # An enumeration of TPM models
2909 # @tpm-tis: TPM TIS model
2911 # Since: 1.5
2913 { 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
2916 # @query-tpm-models:
2918 # Return a list of supported TPM models
2920 # Returns: a list of TpmModel
2922 # Since: 1.5
2924 { 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
2927 # @TpmType:
2929 # An enumeration of TPM types
2931 # @passthrough: TPM passthrough type
2933 # Since: 1.5
2935 { 'enum': 'TpmType', 'data': [ 'passthrough' ] }
2938 # @query-tpm-types:
2940 # Return a list of supported TPM types
2942 # Returns: a list of TpmType
2944 # Since: 1.5
2946 { 'command': 'query-tpm-types', 'returns': ['TpmType'] }
2949 # @TPMPassthroughOptions:
2951 # Information about the TPM passthrough type
2953 # @path: #optional string describing the path used for accessing the TPM device
2955 # @cancel-path: #optional string showing the TPM's sysfs cancel file
2956 #               for cancellation of TPM commands while they are executing
2958 # Since: 1.5
2960 { 'type': 'TPMPassthroughOptions', 'data': { '*path' : 'str',
2961                                              '*cancel-path' : 'str'} }
2964 # @TpmTypeOptions:
2966 # A union referencing different TPM backend types' configuration options
2968 # @passthrough: The configuration options for the TPM passthrough type
2970 # Since: 1.5
2972 { 'union': 'TpmTypeOptions',
2973    'data': { 'passthrough' : 'TPMPassthroughOptions' } }
2976 # @TpmInfo:
2978 # Information about the TPM
2980 # @id: The Id of the TPM
2982 # @model: The TPM frontend model
2984 # @options: The TPM (backend) type configuration options
2986 # Since: 1.5
2988 { 'type': 'TPMInfo',
2989   'data': {'id': 'str',
2990            'model': 'TpmModel',
2991            'options': 'TpmTypeOptions' } }
2994 # @query-tpm:
2996 # Return information about the TPM device
2998 # Returns: @TPMInfo on success
3000 # Since: 1.5
3002 { 'command': 'query-tpm', 'returns': ['TPMInfo'] }
3005 # @AcpiTableOptions
3007 # Specify an ACPI table on the command line to load.
3009 # At most one of @file and @data can be specified. The list of files specified
3010 # by any one of them is loaded and concatenated in order. If both are omitted,
3011 # @data is implied.
3013 # Other fields / optargs can be used to override fields of the generic ACPI
3014 # table header; refer to the ACPI specification 5.0, section 5.2.6 System
3015 # Description Table Header. If a header field is not overridden, then the
3016 # corresponding value from the concatenated blob is used (in case of @file), or
3017 # it is filled in with a hard-coded value (in case of @data).
3019 # String fields are copied into the matching ACPI member from lowest address
3020 # upwards, and silently truncated / NUL-padded to length.
3022 # @sig: #optional table signature / identifier (4 bytes)
3024 # @rev: #optional table revision number (dependent on signature, 1 byte)
3026 # @oem_id: #optional OEM identifier (6 bytes)
3028 # @oem_table_id: #optional OEM table identifier (8 bytes)
3030 # @oem_rev: #optional OEM-supplied revision number (4 bytes)
3032 # @asl_compiler_id: #optional identifier of the utility that created the table
3033 #                   (4 bytes)
3035 # @asl_compiler_rev: #optional revision number of the utility that created the
3036 #                    table (4 bytes)
3038 # @file: #optional colon (:) separated list of pathnames to load and
3039 #        concatenate as table data. The resultant binary blob is expected to
3040 #        have an ACPI table header. At least one file is required. This field
3041 #        excludes @data.
3043 # @data: #optional colon (:) separated list of pathnames to load and
3044 #        concatenate as table data. The resultant binary blob must not have an
3045 #        ACPI table header. At least one file is required. This field excludes
3046 #        @file.
3048 # Since 1.5
3050 { 'type': 'AcpiTableOptions',
3051   'data': {
3052     '*sig':               'str',
3053     '*rev':               'uint8',
3054     '*oem_id':            'str',
3055     '*oem_table_id':      'str',
3056     '*oem_rev':           'uint32',
3057     '*asl_compiler_id':   'str',
3058     '*asl_compiler_rev':  'uint32',
3059     '*file':              'str',
3060     '*data':              'str' }}
3063 # @CommandLineParameterType:
3065 # Possible types for an option parameter.
3067 # @string: accepts a character string
3069 # @boolean: accepts "on" or "off"
3071 # @number: accepts a number
3073 # @size: accepts a number followed by an optional suffix (K)ilo,
3074 #        (M)ega, (G)iga, (T)era
3076 # Since 1.5
3078 { 'enum': 'CommandLineParameterType',
3079   'data': ['string', 'boolean', 'number', 'size'] }
3082 # @CommandLineParameterInfo:
3084 # Details about a single parameter of a command line option.
3086 # @name: parameter name
3088 # @type: parameter @CommandLineParameterType
3090 # @help: #optional human readable text string, not suitable for parsing.
3092 # @default: #optional default value string (since 2.1)
3094 # Since 1.5
3096 { 'type': 'CommandLineParameterInfo',
3097   'data': { 'name': 'str',
3098             'type': 'CommandLineParameterType',
3099             '*help': 'str',
3100             '*default': 'str' } }
3103 # @CommandLineOptionInfo:
3105 # Details about a command line option, including its list of parameter details
3107 # @option: option name
3109 # @parameters: an array of @CommandLineParameterInfo
3111 # Since 1.5
3113 { 'type': 'CommandLineOptionInfo',
3114   'data': { 'option': 'str', 'parameters': ['CommandLineParameterInfo'] } }
3117 # @query-command-line-options:
3119 # Query command line option schema.
3121 # @option: #optional option name
3123 # Returns: list of @CommandLineOptionInfo for all options (or for the given
3124 #          @option).  Returns an error if the given @option doesn't exist.
3126 # Since 1.5
3128 {'command': 'query-command-line-options', 'data': { '*option': 'str' },
3129  'returns': ['CommandLineOptionInfo'] }
3132 # @X86CPURegister32
3134 # A X86 32-bit register
3136 # Since: 1.5
3138 { 'enum': 'X86CPURegister32',
3139   'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
3142 # @X86CPUFeatureWordInfo
3144 # Information about a X86 CPU feature word
3146 # @cpuid-input-eax: Input EAX value for CPUID instruction for that feature word
3148 # @cpuid-input-ecx: #optional Input ECX value for CPUID instruction for that
3149 #                   feature word
3151 # @cpuid-register: Output register containing the feature bits
3153 # @features: value of output register, containing the feature bits
3155 # Since: 1.5
3157 { 'type': 'X86CPUFeatureWordInfo',
3158   'data': { 'cpuid-input-eax': 'int',
3159             '*cpuid-input-ecx': 'int',
3160             'cpuid-register': 'X86CPURegister32',
3161             'features': 'int' } }
3164 # @RxState:
3166 # Packets receiving state
3168 # @normal: filter assigned packets according to the mac-table
3170 # @none: don't receive any assigned packet
3172 # @all: receive all assigned packets
3174 # Since: 1.6
3176 { 'enum': 'RxState', 'data': [ 'normal', 'none', 'all' ] }
3179 # @RxFilterInfo:
3181 # Rx-filter information for a NIC.
3183 # @name: net client name
3185 # @promiscuous: whether promiscuous mode is enabled
3187 # @multicast: multicast receive state
3189 # @unicast: unicast receive state
3191 # @vlan: vlan receive state (Since 2.0)
3193 # @broadcast-allowed: whether to receive broadcast
3195 # @multicast-overflow: multicast table is overflowed or not
3197 # @unicast-overflow: unicast table is overflowed or not
3199 # @main-mac: the main macaddr string
3201 # @vlan-table: a list of active vlan id
3203 # @unicast-table: a list of unicast macaddr string
3205 # @multicast-table: a list of multicast macaddr string
3207 # Since 1.6
3210 { 'type': 'RxFilterInfo',
3211   'data': {
3212     'name':               'str',
3213     'promiscuous':        'bool',
3214     'multicast':          'RxState',
3215     'unicast':            'RxState',
3216     'vlan':               'RxState',
3217     'broadcast-allowed':  'bool',
3218     'multicast-overflow': 'bool',
3219     'unicast-overflow':   'bool',
3220     'main-mac':           'str',
3221     'vlan-table':         ['int'],
3222     'unicast-table':      ['str'],
3223     'multicast-table':    ['str'] }}
3226 # @query-rx-filter:
3228 # Return rx-filter information for all NICs (or for the given NIC).
3230 # @name: #optional net client name
3232 # Returns: list of @RxFilterInfo for all NICs (or for the given NIC).
3233 #          Returns an error if the given @name doesn't exist, or given
3234 #          NIC doesn't support rx-filter querying, or given net client
3235 #          isn't a NIC.
3237 # Since: 1.6
3239 { 'command': 'query-rx-filter', 'data': { '*name': 'str' },
3240   'returns': ['RxFilterInfo'] }
3243 # @InputButton
3245 # Button of a pointer input device (mouse, tablet).
3247 # Since: 2.0
3249 { 'enum'  : 'InputButton',
3250   'data'  : [ 'Left', 'Middle', 'Right', 'WheelUp', 'WheelDown' ] }
3253 # @InputButton
3255 # Position axis of a pointer input device (mouse, tablet).
3257 # Since: 2.0
3259 { 'enum'  : 'InputAxis',
3260   'data'  : [ 'X', 'Y' ] }
3263 # @InputKeyEvent
3265 # Keyboard input event.
3267 # @key:    Which key this event is for.
3268 # @down:   True for key-down and false for key-up events.
3270 # Since: 2.0
3272 { 'type'  : 'InputKeyEvent',
3273   'data'  : { 'key'     : 'KeyValue',
3274               'down'    : 'bool' } }
3277 # @InputBtnEvent
3279 # Pointer button input event.
3281 # @button: Which button this event is for.
3282 # @down:   True for key-down and false for key-up events.
3284 # Since: 2.0
3286 { 'type'  : 'InputBtnEvent',
3287   'data'  : { 'button'  : 'InputButton',
3288               'down'    : 'bool' } }
3291 # @InputMoveEvent
3293 # Pointer motion input event.
3295 # @axis:   Which axis is referenced by @value.
3296 # @value:  Pointer position.  For absolute coordinates the
3297 #          valid range is 0 -> 0x7ffff
3299 # Since: 2.0
3301 { 'type'  : 'InputMoveEvent',
3302   'data'  : { 'axis'    : 'InputAxis',
3303               'value'   : 'int' } }
3306 # @InputEvent
3308 # Input event union.
3310 # @key: Input event of Keyboard
3311 # @btn: Input event of pointer buttons
3312 # @rel: Input event of relative pointer motion
3313 # @abs: Input event of absolute pointer motion
3315 # Since: 2.0
3317 { 'union' : 'InputEvent',
3318   'data'  : { 'key'     : 'InputKeyEvent',
3319               'btn'     : 'InputBtnEvent',
3320               'rel'     : 'InputMoveEvent',
3321               'abs'     : 'InputMoveEvent' } }
3324 # @x-input-send-event
3326 # Send input event(s) to guest.
3328 # @console: #optional console to send event(s) to.
3330 # @events: List of InputEvent union.
3332 # Returns: Nothing on success.
3334 # Since: 2.2
3336 # Note: this command is experimental, and not a stable API.
3339 { 'command': 'x-input-send-event',
3340   'data': { '*console':'int', 'events': [ 'InputEvent' ] } }
3343 # @NumaOptions
3345 # A discriminated record of NUMA options. (for OptsVisitor)
3347 # Since 2.1
3349 { 'union': 'NumaOptions',
3350   'data': {
3351     'node': 'NumaNodeOptions' }}
3354 # @NumaNodeOptions
3356 # Create a guest NUMA node. (for OptsVisitor)
3358 # @nodeid: #optional NUMA node ID (increase by 1 from 0 if omitted)
3360 # @cpus: #optional VCPUs belonging to this node (assign VCPUS round-robin
3361 #         if omitted)
3363 # @mem: #optional memory size of this node; mutually exclusive with @memdev.
3364 #       Equally divide total memory among nodes if both @mem and @memdev are
3365 #       omitted.
3367 # @memdev: #optional memory backend object.  If specified for one node,
3368 #          it must be specified for all nodes.
3370 # Since: 2.1
3372 { 'type': 'NumaNodeOptions',
3373   'data': {
3374    '*nodeid': 'uint16',
3375    '*cpus':   ['uint16'],
3376    '*mem':    'size',
3377    '*memdev': 'str' }}
3380 # @HostMemPolicy
3382 # Host memory policy types
3384 # @default: restore default policy, remove any nondefault policy
3386 # @preferred: set the preferred host nodes for allocation
3388 # @bind: a strict policy that restricts memory allocation to the
3389 #        host nodes specified
3391 # @interleave: memory allocations are interleaved across the set
3392 #              of host nodes specified
3394 # Since 2.1
3396 { 'enum': 'HostMemPolicy',
3397   'data': [ 'default', 'preferred', 'bind', 'interleave' ] }
3400 # @Memdev:
3402 # Information about memory backend
3404 # @size: memory backend size
3406 # @merge: enables or disables memory merge support
3408 # @dump: includes memory backend's memory in a core dump or not
3410 # @prealloc: enables or disables memory preallocation
3412 # @host-nodes: host nodes for its memory policy
3414 # @policy: memory policy of memory backend
3416 # Since: 2.1
3419 { 'type': 'Memdev',
3420   'data': {
3421     'size':       'size',
3422     'merge':      'bool',
3423     'dump':       'bool',
3424     'prealloc':   'bool',
3425     'host-nodes': ['uint16'],
3426     'policy':     'HostMemPolicy' }}
3429 # @query-memdev:
3431 # Returns information for all memory backends.
3433 # Returns: a list of @Memdev.
3435 # Since: 2.1
3437 { 'command': 'query-memdev', 'returns': ['Memdev'] }
3440 # @PCDIMMDeviceInfo:
3442 # PCDIMMDevice state information
3444 # @id: #optional device's ID
3446 # @addr: physical address, where device is mapped
3448 # @size: size of memory that the device provides
3450 # @slot: slot number at which device is plugged in
3452 # @node: NUMA node number where device is plugged in
3454 # @memdev: memory backend linked with device
3456 # @hotplugged: true if device was hotplugged
3458 # @hotpluggable: true if device if could be added/removed while machine is running
3460 # Since: 2.1
3462 { 'type': 'PCDIMMDeviceInfo',
3463   'data': { '*id': 'str',
3464             'addr': 'int',
3465             'size': 'int',
3466             'slot': 'int',
3467             'node': 'int',
3468             'memdev': 'str',
3469             'hotplugged': 'bool',
3470             'hotpluggable': 'bool'
3471           }
3475 # @MemoryDeviceInfo:
3477 # Union containing information about a memory device
3479 # Since: 2.1
3481 { 'union': 'MemoryDeviceInfo', 'data': {'dimm': 'PCDIMMDeviceInfo'} }
3484 # @query-memory-devices
3486 # Lists available memory devices and their state
3488 # Since: 2.1
3490 { 'command': 'query-memory-devices', 'returns': ['MemoryDeviceInfo'] }
3492 ## @ACPISlotType
3494 # @DIMM: memory slot
3496 { 'enum': 'ACPISlotType', 'data': [ 'DIMM' ] }
3498 ## @ACPIOSTInfo
3500 # OSPM Status Indication for a device
3501 # For description of possible values of @source and @status fields
3502 # see "_OST (OSPM Status Indication)" chapter of ACPI5.0 spec.
3504 # @device: #optional device ID associated with slot
3506 # @slot: slot ID, unique per slot of a given @slot-type
3508 # @slot-type: type of the slot
3510 # @source: an integer containing the source event
3512 # @status: an integer containing the status code
3514 # Since: 2.1
3516 { 'type': 'ACPIOSTInfo',
3517   'data'  : { '*device': 'str',
3518               'slot': 'str',
3519               'slot-type': 'ACPISlotType',
3520               'source': 'int',
3521               'status': 'int' } }
3524 # @query-acpi-ospm-status
3526 # Lists ACPI OSPM status of ACPI device objects,
3527 # which might be reported via _OST method
3529 # Since: 2.1
3531 { 'command': 'query-acpi-ospm-status', 'returns': ['ACPIOSTInfo'] }
3534 # @WatchdogExpirationAction
3536 # An enumeration of the actions taken when the watchdog device's timer is
3537 # expired
3539 # @reset: system resets
3541 # @shutdown: system shutdown, note that it is similar to @powerdown, which
3542 #            tries to set to system status and notify guest
3544 # @poweroff: system poweroff, the emulator program exits
3546 # @pause: system pauses, similar to @stop
3548 # @debug: system enters debug state
3550 # @none: nothing is done
3552 # Since: 2.1
3554 { 'enum': 'WatchdogExpirationAction',
3555   'data': [ 'reset', 'shutdown', 'poweroff', 'pause', 'debug', 'none' ] }
3558 # @IoOperationType
3560 # An enumeration of the I/O operation types
3562 # @read: read operation
3564 # @write: write operation
3566 # Since: 2.1
3568 { 'enum': 'IoOperationType',
3569   'data': [ 'read', 'write' ] }
3572 # @GuestPanicAction
3574 # An enumeration of the actions taken when guest OS panic is detected
3576 # @pause: system pauses
3578 # Since: 2.1
3580 { 'enum': 'GuestPanicAction',
3581   'data': [ 'pause' ] }
3584 # @rtc-reset-reinjection
3586 # This command will reset the RTC interrupt reinjection backlog.
3587 # Can be used if another mechanism to synchronize guest time
3588 # is in effect, for example QEMU guest agent's guest-set-time
3589 # command.
3591 # Since: 2.1
3593 { 'command': 'rtc-reset-reinjection' }