kvm_stat: Add RESET support for perf event ioctl
[qemu/ar7.git] / qapi-schema.json
blobe16f8eb1108a80df2ace76d5fa257b5f2b7529b5
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 # @websocket: true in case the socket is a websocket (since 2.3).
677 # Since: 2.1
679 { 'type': 'VncBasicInfo',
680   'data': { 'host': 'str',
681             'service': 'str',
682             'family': 'NetworkAddressFamily',
683             'websocket': 'bool' } }
686 # @VncServerInfo
688 # The network connection information for server
690 # @auth: #optional, authentication method
692 # Since: 2.1
694 { 'type': 'VncServerInfo',
695   'base': 'VncBasicInfo',
696   'data': { '*auth': 'str' } }
699 # @VncClientInfo:
701 # Information about a connected VNC client.
703 # @x509_dname: #optional If x509 authentication is in use, the Distinguished
704 #              Name of the client.
706 # @sasl_username: #optional If SASL authentication is in use, the SASL username
707 #                 used for authentication.
709 # Since: 0.14.0
711 { 'type': 'VncClientInfo',
712   'base': 'VncBasicInfo',
713   'data': { '*x509_dname': 'str', '*sasl_username': 'str' } }
716 # @VncInfo:
718 # Information about the VNC session.
720 # @enabled: true if the VNC server is enabled, false otherwise
722 # @host: #optional The hostname the VNC server is bound to.  This depends on
723 #        the name resolution on the host and may be an IP address.
725 # @family: #optional 'ipv6' if the host is listening for IPv6 connections
726 #                    'ipv4' if the host is listening for IPv4 connections
727 #                    'unix' if the host is listening on a unix domain socket
728 #                    'unknown' otherwise
730 # @service: #optional The service name of the server's port.  This may depends
731 #           on the host system's service database so symbolic names should not
732 #           be relied on.
734 # @auth: #optional the current authentication type used by the server
735 #        'none' if no authentication is being used
736 #        'vnc' if VNC authentication is being used
737 #        'vencrypt+plain' if VEncrypt is used with plain text authentication
738 #        'vencrypt+tls+none' if VEncrypt is used with TLS and no authentication
739 #        'vencrypt+tls+vnc' if VEncrypt is used with TLS and VNC authentication
740 #        'vencrypt+tls+plain' if VEncrypt is used with TLS and plain text auth
741 #        'vencrypt+x509+none' if VEncrypt is used with x509 and no auth
742 #        'vencrypt+x509+vnc' if VEncrypt is used with x509 and VNC auth
743 #        'vencrypt+x509+plain' if VEncrypt is used with x509 and plain text auth
744 #        'vencrypt+tls+sasl' if VEncrypt is used with TLS and SASL auth
745 #        'vencrypt+x509+sasl' if VEncrypt is used with x509 and SASL auth
747 # @clients: a list of @VncClientInfo of all currently connected clients
749 # Since: 0.14.0
751 { 'type': 'VncInfo',
752   'data': {'enabled': 'bool', '*host': 'str',
753            '*family': 'NetworkAddressFamily',
754            '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']} }
757 # @VncPriAuth:
759 # vnc primary authentication method.
761 # Since: 2.3
763 { 'enum': 'VncPrimaryAuth',
764   'data': [ 'none', 'vnc', 'ra2', 'ra2ne', 'tight', 'ultra',
765             'tls', 'vencrypt', 'sasl' ] }
768 # @VncVencryptSubAuth:
770 # vnc sub authentication method with vencrypt.
772 # Since: 2.3
774 { 'enum': 'VncVencryptSubAuth',
775   'data': [ 'plain',
776             'tls-none',  'x509-none',
777             'tls-vnc',   'x509-vnc',
778             'tls-plain', 'x509-plain',
779             'tls-sasl',  'x509-sasl' ] }
782 # @VncInfo2:
784 # Information about a vnc server
786 # @id: vnc server name.
788 # @server: A list of @VncBasincInfo describing all listening sockets.
789 #          The list can be empty (in case the vnc server is disabled).
790 #          It also may have multiple entries: normal + websocket,
791 #          possibly also ipv4 + ipv6 in the future.
793 # @clients: A list of @VncClientInfo of all currently connected clients.
794 #           The list can be empty, for obvious reasons.
796 # @auth: The current authentication type used by the server
798 # @vencrypt: #optional The vencrypt sub authentication type used by the server,
799 #            only specified in case auth == vencrypt.
801 # @display: #optional The display device the vnc server is linked to.
803 # Since: 2.3
805 { 'type': 'VncInfo2',
806   'data': { 'id'        : 'str',
807             'server'    : ['VncBasicInfo'],
808             'clients'   : ['VncClientInfo'],
809             'auth'      : 'VncPrimaryAuth',
810             '*vencrypt' : 'VncVencryptSubAuth',
811             '*display'  : 'str' } }
814 # @query-vnc:
816 # Returns information about the current VNC server
818 # Returns: @VncInfo
820 # Since: 0.14.0
822 { 'command': 'query-vnc', 'returns': 'VncInfo' }
825 # @query-vnc-servers:
827 # Returns a list of vnc servers.  The list can be empty.
829 # Returns: a list of @VncInfo2
831 # Since: 2.3
833 { 'command': 'query-vnc-servers', 'returns': ['VncInfo2'] }
836 # @SpiceBasicInfo
838 # The basic information for SPICE network connection
840 # @host: IP address
842 # @port: port number
844 # @family: address family
846 # Since: 2.1
848 { 'type': 'SpiceBasicInfo',
849   'data': { 'host': 'str',
850             'port': 'str',
851             'family': 'NetworkAddressFamily' } }
854 # @SpiceServerInfo
856 # Information about a SPICE server
858 # @auth: #optional, authentication method
860 # Since: 2.1
862 { 'type': 'SpiceServerInfo',
863   'base': 'SpiceBasicInfo',
864   'data': { '*auth': 'str' } }
867 # @SpiceChannel
869 # Information about a SPICE client channel.
871 # @connection-id: SPICE connection id number.  All channels with the same id
872 #                 belong to the same SPICE session.
874 # @connection-type: SPICE channel type number.  "1" is the main control
875 #                   channel, filter for this one if you want to track spice
876 #                   sessions only
878 # @channel-id: SPICE channel ID number.  Usually "0", might be different when
879 #              multiple channels of the same type exist, such as multiple
880 #              display channels in a multihead setup
882 # @tls: true if the channel is encrypted, false otherwise.
884 # Since: 0.14.0
886 { 'type': 'SpiceChannel',
887   'base': 'SpiceBasicInfo',
888   'data': {'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int',
889            'tls': 'bool'} }
892 # @SpiceQueryMouseMode
894 # An enumeration of Spice mouse states.
896 # @client: Mouse cursor position is determined by the client.
898 # @server: Mouse cursor position is determined by the server.
900 # @unknown: No information is available about mouse mode used by
901 #           the spice server.
903 # Note: spice/enums.h has a SpiceMouseMode already, hence the name.
905 # Since: 1.1
907 { 'enum': 'SpiceQueryMouseMode',
908   'data': [ 'client', 'server', 'unknown' ] }
911 # @SpiceInfo
913 # Information about the SPICE session.
915 # @enabled: true if the SPICE server is enabled, false otherwise
917 # @migrated: true if the last guest migration completed and spice
918 #            migration had completed as well. false otherwise.
920 # @host: #optional The hostname the SPICE server is bound to.  This depends on
921 #        the name resolution on the host and may be an IP address.
923 # @port: #optional The SPICE server's port number.
925 # @compiled-version: #optional SPICE server version.
927 # @tls-port: #optional The SPICE server's TLS port number.
929 # @auth: #optional the current authentication type used by the server
930 #        'none'  if no authentication is being used
931 #        'spice' uses SASL or direct TLS authentication, depending on command
932 #                line options
934 # @mouse-mode: The mode in which the mouse cursor is displayed currently. Can
935 #              be determined by the client or the server, or unknown if spice
936 #              server doesn't provide this information.
938 #              Since: 1.1
940 # @channels: a list of @SpiceChannel for each active spice channel
942 # Since: 0.14.0
944 { 'type': 'SpiceInfo',
945   'data': {'enabled': 'bool', 'migrated': 'bool', '*host': 'str', '*port': 'int',
946            '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
947            'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} }
950 # @query-spice
952 # Returns information about the current SPICE server
954 # Returns: @SpiceInfo
956 # Since: 0.14.0
958 { 'command': 'query-spice', 'returns': 'SpiceInfo' }
961 # @BalloonInfo:
963 # Information about the guest balloon device.
965 # @actual: the number of bytes the balloon currently contains
967 # Since: 0.14.0
970 { 'type': 'BalloonInfo', 'data': {'actual': 'int' } }
973 # @query-balloon:
975 # Return information about the balloon device.
977 # Returns: @BalloonInfo on success
978 #          If the balloon driver is enabled but not functional because the KVM
979 #          kernel module cannot support it, KvmMissingCap
980 #          If no balloon device is present, DeviceNotActive
982 # Since: 0.14.0
984 { 'command': 'query-balloon', 'returns': 'BalloonInfo' }
987 # @PciMemoryRange:
989 # A PCI device memory region
991 # @base: the starting address (guest physical)
993 # @limit: the ending address (guest physical)
995 # Since: 0.14.0
997 { 'type': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} }
1000 # @PciMemoryRegion
1002 # Information about a PCI device I/O region.
1004 # @bar: the index of the Base Address Register for this region
1006 # @type: 'io' if the region is a PIO region
1007 #        'memory' if the region is a MMIO region
1009 # @prefetch: #optional if @type is 'memory', true if the memory is prefetchable
1011 # @mem_type_64: #optional if @type is 'memory', true if the BAR is 64-bit
1013 # Since: 0.14.0
1015 { 'type': 'PciMemoryRegion',
1016   'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int',
1017            '*prefetch': 'bool', '*mem_type_64': 'bool' } }
1020 # @PciBridgeInfo:
1022 # Information about a PCI Bridge device
1024 # @bus.number: primary bus interface number.  This should be the number of the
1025 #              bus the device resides on.
1027 # @bus.secondary: secondary bus interface number.  This is the number of the
1028 #                 main bus for the bridge
1030 # @bus.subordinate: This is the highest number bus that resides below the
1031 #                   bridge.
1033 # @bus.io_range: The PIO range for all devices on this bridge
1035 # @bus.memory_range: The MMIO range for all devices on this bridge
1037 # @bus.prefetchable_range: The range of prefetchable MMIO for all devices on
1038 #                          this bridge
1040 # @devices: a list of @PciDeviceInfo for each device on this bridge
1042 # Since: 0.14.0
1044 { 'type': 'PciBridgeInfo',
1045   'data': {'bus': { 'number': 'int', 'secondary': 'int', 'subordinate': 'int',
1046                     'io_range': 'PciMemoryRange',
1047                     'memory_range': 'PciMemoryRange',
1048                     'prefetchable_range': 'PciMemoryRange' },
1049            '*devices': ['PciDeviceInfo']} }
1052 # @PciDeviceInfo:
1054 # Information about a PCI device
1056 # @bus: the bus number of the device
1058 # @slot: the slot the device is located in
1060 # @function: the function of the slot used by the device
1062 # @class_info.desc: #optional a string description of the device's class
1064 # @class_info.class: the class code of the device
1066 # @id.device: the PCI device id
1068 # @id.vendor: the PCI vendor id
1070 # @irq: #optional if an IRQ is assigned to the device, the IRQ number
1072 # @qdev_id: the device name of the PCI device
1074 # @pci_bridge: if the device is a PCI bridge, the bridge information
1076 # @regions: a list of the PCI I/O regions associated with the device
1078 # Notes: the contents of @class_info.desc are not stable and should only be
1079 #        treated as informational.
1081 # Since: 0.14.0
1083 { 'type': 'PciDeviceInfo',
1084   'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
1085            'class_info': {'*desc': 'str', 'class': 'int'},
1086            'id': {'device': 'int', 'vendor': 'int'},
1087            '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
1088            'regions': ['PciMemoryRegion']} }
1091 # @PciInfo:
1093 # Information about a PCI bus
1095 # @bus: the bus index
1097 # @devices: a list of devices on this bus
1099 # Since: 0.14.0
1101 { 'type': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} }
1104 # @query-pci:
1106 # Return information about the PCI bus topology of the guest.
1108 # Returns: a list of @PciInfo for each PCI bus
1110 # Since: 0.14.0
1112 { 'command': 'query-pci', 'returns': ['PciInfo'] }
1115 # @quit:
1117 # This command will cause the QEMU process to exit gracefully.  While every
1118 # attempt is made to send the QMP response before terminating, this is not
1119 # guaranteed.  When using this interface, a premature EOF would not be
1120 # unexpected.
1122 # Since: 0.14.0
1124 { 'command': 'quit' }
1127 # @stop:
1129 # Stop all guest VCPU execution.
1131 # Since:  0.14.0
1133 # Notes:  This function will succeed even if the guest is already in the stopped
1134 #         state.  In "inmigrate" state, it will ensure that the guest
1135 #         remains paused once migration finishes, as if the -S option was
1136 #         passed on the command line.
1138 { 'command': 'stop' }
1141 # @system_reset:
1143 # Performs a hard reset of a guest.
1145 # Since: 0.14.0
1147 { 'command': 'system_reset' }
1150 # @system_powerdown:
1152 # Requests that a guest perform a powerdown operation.
1154 # Since: 0.14.0
1156 # Notes: A guest may or may not respond to this command.  This command
1157 #        returning does not indicate that a guest has accepted the request or
1158 #        that it has shut down.  Many guests will respond to this command by
1159 #        prompting the user in some way.
1161 { 'command': 'system_powerdown' }
1164 # @cpu:
1166 # This command is a nop that is only provided for the purposes of compatibility.
1168 # Since: 0.14.0
1170 # Notes: Do not use this command.
1172 { 'command': 'cpu', 'data': {'index': 'int'} }
1175 # @cpu-add
1177 # Adds CPU with specified ID
1179 # @id: ID of CPU to be created, valid values [0..max_cpus)
1181 # Returns: Nothing on success
1183 # Since 1.5
1185 { 'command': 'cpu-add', 'data': {'id': 'int'} }
1188 # @memsave:
1190 # Save a portion of guest memory to a file.
1192 # @val: the virtual address of the guest to start from
1194 # @size: the size of memory region to save
1196 # @filename: the file to save the memory to as binary data
1198 # @cpu-index: #optional the index of the virtual CPU to use for translating the
1199 #                       virtual address (defaults to CPU 0)
1201 # Returns: Nothing on success
1203 # Since: 0.14.0
1205 # Notes: Errors were not reliably returned until 1.1
1207 { 'command': 'memsave',
1208   'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
1211 # @pmemsave:
1213 # Save a portion of guest physical memory to a file.
1215 # @val: the physical address of the guest to start from
1217 # @size: the size of memory region to save
1219 # @filename: the file to save the memory to as binary data
1221 # Returns: Nothing on success
1223 # Since: 0.14.0
1225 # Notes: Errors were not reliably returned until 1.1
1227 { 'command': 'pmemsave',
1228   'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
1231 # @cont:
1233 # Resume guest VCPU execution.
1235 # Since:  0.14.0
1237 # Returns:  If successful, nothing
1238 #           If QEMU was started with an encrypted block device and a key has
1239 #              not yet been set, DeviceEncrypted.
1241 # Notes:  This command will succeed if the guest is currently running.  It
1242 #         will also succeed if the guest is in the "inmigrate" state; in
1243 #         this case, the effect of the command is to make sure the guest
1244 #         starts once migration finishes, removing the effect of the -S
1245 #         command line option if it was passed.
1247 { 'command': 'cont' }
1250 # @system_wakeup:
1252 # Wakeup guest from suspend.  Does nothing in case the guest isn't suspended.
1254 # Since:  1.1
1256 # Returns:  nothing.
1258 { 'command': 'system_wakeup' }
1261 # @inject-nmi:
1263 # Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or all CPUs (ppc64).
1265 # Returns:  If successful, nothing
1267 # Since:  0.14.0
1269 # Note: prior to 2.1, this command was only supported for x86 and s390 VMs
1271 { 'command': 'inject-nmi' }
1274 # @set_link:
1276 # Sets the link status of a virtual network adapter.
1278 # @name: the device name of the virtual network adapter
1280 # @up: true to set the link status to be up
1282 # Returns: Nothing on success
1283 #          If @name is not a valid network device, DeviceNotFound
1285 # Since: 0.14.0
1287 # Notes: Not all network adapters support setting link status.  This command
1288 #        will succeed even if the network adapter does not support link status
1289 #        notification.
1291 { 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} }
1294 # @balloon:
1296 # Request the balloon driver to change its balloon size.
1298 # @value: the target size of the balloon in bytes
1300 # Returns: Nothing on success
1301 #          If the balloon driver is enabled but not functional because the KVM
1302 #            kernel module cannot support it, KvmMissingCap
1303 #          If no balloon device is present, DeviceNotActive
1305 # Notes: This command just issues a request to the guest.  When it returns,
1306 #        the balloon size may not have changed.  A guest can change the balloon
1307 #        size independent of this command.
1309 # Since: 0.14.0
1311 { 'command': 'balloon', 'data': {'value': 'int'} }
1314 # @Abort
1316 # This action can be used to test transaction failure.
1318 # Since: 1.6
1320 { 'type': 'Abort',
1321   'data': { } }
1324 # @TransactionAction
1326 # A discriminated record of operations that can be performed with
1327 # @transaction.
1329 # Since 1.1
1331 # drive-backup since 1.6
1332 # abort since 1.6
1333 # blockdev-snapshot-internal-sync since 1.7
1334 # blockdev-backup since 2.3
1336 { 'union': 'TransactionAction',
1337   'data': {
1338        'blockdev-snapshot-sync': 'BlockdevSnapshot',
1339        'drive-backup': 'DriveBackup',
1340        'blockdev-backup': 'BlockdevBackup',
1341        'abort': 'Abort',
1342        'blockdev-snapshot-internal-sync': 'BlockdevSnapshotInternal'
1343    } }
1346 # @transaction
1348 # Executes a number of transactionable QMP commands atomically. If any
1349 # operation fails, then the entire set of actions will be abandoned and the
1350 # appropriate error returned.
1352 #  List of:
1353 #  @TransactionAction: information needed for the respective operation
1355 # Returns: nothing on success
1356 #          Errors depend on the operations of the transaction
1358 # Note: The transaction aborts on the first failure.  Therefore, there will be
1359 # information on only one failed operation returned in an error condition, and
1360 # subsequent actions will not have been attempted.
1362 # Since 1.1
1364 { 'command': 'transaction',
1365   'data': { 'actions': [ 'TransactionAction' ] } }
1368 # @human-monitor-command:
1370 # Execute a command on the human monitor and return the output.
1372 # @command-line: the command to execute in the human monitor
1374 # @cpu-index: #optional The CPU to use for commands that require an implicit CPU
1376 # Returns: the output of the command as a string
1378 # Since: 0.14.0
1380 # Notes: This command only exists as a stop-gap.  Its use is highly
1381 #        discouraged.  The semantics of this command are not guaranteed.
1383 #        Known limitations:
1385 #        o This command is stateless, this means that commands that depend
1386 #          on state information (such as getfd) might not work
1388 #       o Commands that prompt the user for data (eg. 'cont' when the block
1389 #         device is encrypted) don't currently work
1391 { 'command': 'human-monitor-command',
1392   'data': {'command-line': 'str', '*cpu-index': 'int'},
1393   'returns': 'str' }
1396 # @migrate_cancel
1398 # Cancel the current executing migration process.
1400 # Returns: nothing on success
1402 # Notes: This command succeeds even if there is no migration process running.
1404 # Since: 0.14.0
1406 { 'command': 'migrate_cancel' }
1409 # @migrate_set_downtime
1411 # Set maximum tolerated downtime for migration.
1413 # @value: maximum downtime in seconds
1415 # Returns: nothing on success
1417 # Since: 0.14.0
1419 { 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
1422 # @migrate_set_speed
1424 # Set maximum speed for migration.
1426 # @value: maximum speed in bytes.
1428 # Returns: nothing on success
1430 # Notes: A value lesser than zero will be automatically round up to zero.
1432 # Since: 0.14.0
1434 { 'command': 'migrate_set_speed', 'data': {'value': 'int'} }
1437 # @migrate-set-cache-size
1439 # Set XBZRLE cache size
1441 # @value: cache size in bytes
1443 # The size will be rounded down to the nearest power of 2.
1444 # The cache size can be modified before and during ongoing migration
1446 # Returns: nothing on success
1448 # Since: 1.2
1450 { 'command': 'migrate-set-cache-size', 'data': {'value': 'int'} }
1453 # @query-migrate-cache-size
1455 # query XBZRLE cache size
1457 # Returns: XBZRLE cache size in bytes
1459 # Since: 1.2
1461 { 'command': 'query-migrate-cache-size', 'returns': 'int' }
1464 # @ObjectPropertyInfo:
1466 # @name: the name of the property
1468 # @type: the type of the property.  This will typically come in one of four
1469 #        forms:
1471 #        1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
1472 #           These types are mapped to the appropriate JSON type.
1474 #        2) A legacy type in the form 'legacy<subtype>' where subtype is the
1475 #           legacy qdev typename.  These types are always treated as strings.
1477 #        3) A child type in the form 'child<subtype>' where subtype is a qdev
1478 #           device type name.  Child properties create the composition tree.
1480 #        4) A link type in the form 'link<subtype>' where subtype is a qdev
1481 #           device type name.  Link properties form the device model graph.
1483 # Since: 1.2
1485 { 'type': 'ObjectPropertyInfo',
1486   'data': { 'name': 'str', 'type': 'str' } }
1489 # @qom-list:
1491 # This command will list any properties of a object given a path in the object
1492 # model.
1494 # @path: the path within the object model.  See @qom-get for a description of
1495 #        this parameter.
1497 # Returns: a list of @ObjectPropertyInfo that describe the properties of the
1498 #          object.
1500 # Since: 1.2
1502 { 'command': 'qom-list',
1503   'data': { 'path': 'str' },
1504   'returns': [ 'ObjectPropertyInfo' ] }
1507 # @qom-get:
1509 # This command will get a property from a object model path and return the
1510 # value.
1512 # @path: The path within the object model.  There are two forms of supported
1513 #        paths--absolute and partial paths.
1515 #        Absolute paths are derived from the root object and can follow child<>
1516 #        or link<> properties.  Since they can follow link<> properties, they
1517 #        can be arbitrarily long.  Absolute paths look like absolute filenames
1518 #        and are prefixed  with a leading slash.
1520 #        Partial paths look like relative filenames.  They do not begin
1521 #        with a prefix.  The matching rules for partial paths are subtle but
1522 #        designed to make specifying objects easy.  At each level of the
1523 #        composition tree, the partial path is matched as an absolute path.
1524 #        The first match is not returned.  At least two matches are searched
1525 #        for.  A successful result is only returned if only one match is
1526 #        found.  If more than one match is found, a flag is return to
1527 #        indicate that the match was ambiguous.
1529 # @property: The property name to read
1531 # Returns: The property value.  The type depends on the property type.  legacy<>
1532 #          properties are returned as #str.  child<> and link<> properties are
1533 #          returns as #str pathnames.  All integer property types (u8, u16, etc)
1534 #          are returned as #int.
1536 # Since: 1.2
1538 { 'command': 'qom-get',
1539   'data': { 'path': 'str', 'property': 'str' },
1540   'returns': 'visitor',
1541   'gen': 'no' }
1544 # @qom-set:
1546 # This command will set a property from a object model path.
1548 # @path: see @qom-get for a description of this parameter
1550 # @property: the property name to set
1552 # @value: a value who's type is appropriate for the property type.  See @qom-get
1553 #         for a description of type mapping.
1555 # Since: 1.2
1557 { 'command': 'qom-set',
1558   'data': { 'path': 'str', 'property': 'str', 'value': 'visitor' },
1559   'gen': 'no' }
1562 # @set_password:
1564 # Sets the password of a remote display session.
1566 # @protocol: `vnc' to modify the VNC server password
1567 #            `spice' to modify the Spice server password
1569 # @password: the new password
1571 # @connected: #optional how to handle existing clients when changing the
1572 #                       password.  If nothing is specified, defaults to `keep'
1573 #                       `fail' to fail the command if clients are connected
1574 #                       `disconnect' to disconnect existing clients
1575 #                       `keep' to maintain existing clients
1577 # Returns: Nothing on success
1578 #          If Spice is not enabled, DeviceNotFound
1580 # Since: 0.14.0
1582 { 'command': 'set_password',
1583   'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} }
1586 # @expire_password:
1588 # Expire the password of a remote display server.
1590 # @protocol: the name of the remote display protocol `vnc' or `spice'
1592 # @time: when to expire the password.
1593 #        `now' to expire the password immediately
1594 #        `never' to cancel password expiration
1595 #        `+INT' where INT is the number of seconds from now (integer)
1596 #        `INT' where INT is the absolute time in seconds
1598 # Returns: Nothing on success
1599 #          If @protocol is `spice' and Spice is not active, DeviceNotFound
1601 # Since: 0.14.0
1603 # Notes: Time is relative to the server and currently there is no way to
1604 #        coordinate server time with client time.  It is not recommended to
1605 #        use the absolute time version of the @time parameter unless you're
1606 #        sure you are on the same machine as the QEMU instance.
1608 { 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} }
1611 # @change-vnc-password:
1613 # Change the VNC server password.
1615 # @password:  the new password to use with VNC authentication
1617 # Since: 1.1
1619 # Notes:  An empty password in this command will set the password to the empty
1620 #         string.  Existing clients are unaffected by executing this command.
1622 { 'command': 'change-vnc-password', 'data': {'password': 'str'} }
1625 # @change:
1627 # This command is multiple commands multiplexed together.
1629 # @device: This is normally the name of a block device but it may also be 'vnc'.
1630 #          when it's 'vnc', then sub command depends on @target
1632 # @target: If @device is a block device, then this is the new filename.
1633 #          If @device is 'vnc', then if the value 'password' selects the vnc
1634 #          change password command.   Otherwise, this specifies a new server URI
1635 #          address to listen to for VNC connections.
1637 # @arg:    If @device is a block device, then this is an optional format to open
1638 #          the device with.
1639 #          If @device is 'vnc' and @target is 'password', this is the new VNC
1640 #          password to set.  If this argument is an empty string, then no future
1641 #          logins will be allowed.
1643 # Returns: Nothing on success.
1644 #          If @device is not a valid block device, DeviceNotFound
1645 #          If the new block device is encrypted, DeviceEncrypted.  Note that
1646 #          if this error is returned, the device has been opened successfully
1647 #          and an additional call to @block_passwd is required to set the
1648 #          device's password.  The behavior of reads and writes to the block
1649 #          device between when these calls are executed is undefined.
1651 # Notes:  It is strongly recommended that this interface is not used especially
1652 #         for changing block devices.
1654 # Since: 0.14.0
1656 { 'command': 'change',
1657   'data': {'device': 'str', 'target': 'str', '*arg': 'str'} }
1660 # @ObjectTypeInfo:
1662 # This structure describes a search result from @qom-list-types
1664 # @name: the type name found in the search
1666 # Since: 1.1
1668 # Notes: This command is experimental and may change syntax in future releases.
1670 { 'type': 'ObjectTypeInfo',
1671   'data': { 'name': 'str' } }
1674 # @qom-list-types:
1676 # This command will return a list of types given search parameters
1678 # @implements: if specified, only return types that implement this type name
1680 # @abstract: if true, include abstract types in the results
1682 # Returns: a list of @ObjectTypeInfo or an empty list if no results are found
1684 # Since: 1.1
1686 { 'command': 'qom-list-types',
1687   'data': { '*implements': 'str', '*abstract': 'bool' },
1688   'returns': [ 'ObjectTypeInfo' ] }
1691 # @DevicePropertyInfo:
1693 # Information about device properties.
1695 # @name: the name of the property
1696 # @type: the typename of the property
1697 # @description: #optional if specified, the description of the property.
1698 #               (since 2.2)
1700 # Since: 1.2
1702 { 'type': 'DevicePropertyInfo',
1703   'data': { 'name': 'str', 'type': 'str', '*description': 'str' } }
1706 # @device-list-properties:
1708 # List properties associated with a device.
1710 # @typename: the type name of a device
1712 # Returns: a list of DevicePropertyInfo describing a devices properties
1714 # Since: 1.2
1716 { 'command': 'device-list-properties',
1717   'data': { 'typename': 'str'},
1718   'returns': [ 'DevicePropertyInfo' ] }
1721 # @migrate
1723 # Migrates the current running guest to another Virtual Machine.
1725 # @uri: the Uniform Resource Identifier of the destination VM
1727 # @blk: #optional do block migration (full disk copy)
1729 # @inc: #optional incremental disk copy migration
1731 # @detach: this argument exists only for compatibility reasons and
1732 #          is ignored by QEMU
1734 # Returns: nothing on success
1736 # Since: 0.14.0
1738 { 'command': 'migrate',
1739   'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
1741 # @xen-save-devices-state:
1743 # Save the state of all devices to file. The RAM and the block devices
1744 # of the VM are not saved by this command.
1746 # @filename: the file to save the state of the devices to as binary
1747 # data. See xen-save-devices-state.txt for a description of the binary
1748 # format.
1750 # Returns: Nothing on success
1752 # Since: 1.1
1754 { 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} }
1757 # @xen-set-global-dirty-log
1759 # Enable or disable the global dirty log mode.
1761 # @enable: true to enable, false to disable.
1763 # Returns: nothing
1765 # Since: 1.3
1767 { 'command': 'xen-set-global-dirty-log', 'data': { 'enable': 'bool' } }
1770 # @device_del:
1772 # Remove a device from a guest
1774 # @id: the name of the device
1776 # Returns: Nothing on success
1777 #          If @id is not a valid device, DeviceNotFound
1779 # Notes: When this command completes, the device may not be removed from the
1780 #        guest.  Hot removal is an operation that requires guest cooperation.
1781 #        This command merely requests that the guest begin the hot removal
1782 #        process.  Completion of the device removal process is signaled with a
1783 #        DEVICE_DELETED event. Guest reset will automatically complete removal
1784 #        for all devices.
1786 # Since: 0.14.0
1788 { 'command': 'device_del', 'data': {'id': 'str'} }
1791 # @DumpGuestMemoryFormat:
1793 # An enumeration of guest-memory-dump's format.
1795 # @elf: elf format
1797 # @kdump-zlib: kdump-compressed format with zlib-compressed
1799 # @kdump-lzo: kdump-compressed format with lzo-compressed
1801 # @kdump-snappy: kdump-compressed format with snappy-compressed
1803 # Since: 2.0
1805 { 'enum': 'DumpGuestMemoryFormat',
1806   'data': [ 'elf', 'kdump-zlib', 'kdump-lzo', 'kdump-snappy' ] }
1809 # @dump-guest-memory
1811 # Dump guest's memory to vmcore. It is a synchronous operation that can take
1812 # very long depending on the amount of guest memory. This command is only
1813 # supported on i386 and x86_64.
1815 # @paging: if true, do paging to get guest's memory mapping. This allows
1816 #          using gdb to process the core file.
1818 #          IMPORTANT: this option can make QEMU allocate several gigabytes
1819 #                     of RAM. This can happen for a large guest, or a
1820 #                     malicious guest pretending to be large.
1822 #          Also, paging=true has the following limitations:
1824 #             1. The guest may be in a catastrophic state or can have corrupted
1825 #                memory, which cannot be trusted
1826 #             2. The guest can be in real-mode even if paging is enabled. For
1827 #                example, the guest uses ACPI to sleep, and ACPI sleep state
1828 #                goes in real-mode
1830 # @protocol: the filename or file descriptor of the vmcore. The supported
1831 #            protocols are:
1833 #            1. file: the protocol starts with "file:", and the following
1834 #               string is the file's path.
1835 #            2. fd: the protocol starts with "fd:", and the following string
1836 #               is the fd's name.
1838 # @begin: #optional if specified, the starting physical address.
1840 # @length: #optional if specified, the memory size, in bytes. If you don't
1841 #          want to dump all guest's memory, please specify the start @begin
1842 #          and @length
1844 # @format: #optional if specified, the format of guest memory dump. But non-elf
1845 #          format is conflict with paging and filter, ie. @paging, @begin and
1846 #          @length is not allowed to be specified with non-elf @format at the
1847 #          same time (since 2.0)
1849 # Returns: nothing on success
1851 # Since: 1.2
1853 { 'command': 'dump-guest-memory',
1854   'data': { 'paging': 'bool', 'protocol': 'str', '*begin': 'int',
1855             '*length': 'int', '*format': 'DumpGuestMemoryFormat' } }
1858 # @DumpGuestMemoryCapability:
1860 # A list of the available formats for dump-guest-memory
1862 # Since: 2.0
1864 { 'type': 'DumpGuestMemoryCapability',
1865   'data': {
1866       'formats': ['DumpGuestMemoryFormat'] } }
1869 # @query-dump-guest-memory-capability:
1871 # Returns the available formats for dump-guest-memory
1873 # Returns:  A @DumpGuestMemoryCapability object listing available formats for
1874 #           dump-guest-memory
1876 # Since: 2.0
1878 { 'command': 'query-dump-guest-memory-capability',
1879   'returns': 'DumpGuestMemoryCapability' }
1882 # @netdev_add:
1884 # Add a network backend.
1886 # @type: the type of network backend.  Current valid values are 'user', 'tap',
1887 #        'vde', 'socket', 'dump' and 'bridge'
1889 # @id: the name of the new network backend
1891 # @props: #optional a list of properties to be passed to the backend in
1892 #         the format 'name=value', like 'ifname=tap0,script=no'
1894 # Notes: The semantics of @props is not well defined.  Future commands will be
1895 #        introduced that provide stronger typing for backend creation.
1897 # Since: 0.14.0
1899 # Returns: Nothing on success
1900 #          If @type is not a valid network backend, DeviceNotFound
1902 { 'command': 'netdev_add',
1903   'data': {'type': 'str', 'id': 'str', '*props': '**'},
1904   'gen': 'no' }
1907 # @netdev_del:
1909 # Remove a network backend.
1911 # @id: the name of the network backend to remove
1913 # Returns: Nothing on success
1914 #          If @id is not a valid network backend, DeviceNotFound
1916 # Since: 0.14.0
1918 { 'command': 'netdev_del', 'data': {'id': 'str'} }
1921 # @object-add:
1923 # Create a QOM object.
1925 # @qom-type: the class name for the object to be created
1927 # @id: the name of the new object
1929 # @props: #optional a dictionary of properties to be passed to the backend
1931 # Returns: Nothing on success
1932 #          Error if @qom-type is not a valid class name
1934 # Since: 2.0
1936 { 'command': 'object-add',
1937   'data': {'qom-type': 'str', 'id': 'str', '*props': 'dict'},
1938   'gen': 'no' }
1941 # @object-del:
1943 # Remove a QOM object.
1945 # @id: the name of the QOM object to remove
1947 # Returns: Nothing on success
1948 #          Error if @id is not a valid id for a QOM object
1950 # Since: 2.0
1952 { 'command': 'object-del', 'data': {'id': 'str'} }
1955 # @NetdevNoneOptions
1957 # Use it alone to have zero network devices.
1959 # Since 1.2
1961 { 'type': 'NetdevNoneOptions',
1962   'data': { } }
1965 # @NetLegacyNicOptions
1967 # Create a new Network Interface Card.
1969 # @netdev: #optional id of -netdev to connect to
1971 # @macaddr: #optional MAC address
1973 # @model: #optional device model (e1000, rtl8139, virtio etc.)
1975 # @addr: #optional PCI device address
1977 # @vectors: #optional number of MSI-x vectors, 0 to disable MSI-X
1979 # Since 1.2
1981 { 'type': 'NetLegacyNicOptions',
1982   'data': {
1983     '*netdev':  'str',
1984     '*macaddr': 'str',
1985     '*model':   'str',
1986     '*addr':    'str',
1987     '*vectors': 'uint32' } }
1990 # @String
1992 # A fat type wrapping 'str', to be embedded in lists.
1994 # Since 1.2
1996 { 'type': 'String',
1997   'data': {
1998     'str': 'str' } }
2001 # @NetdevUserOptions
2003 # Use the user mode network stack which requires no administrator privilege to
2004 # run.
2006 # @hostname: #optional client hostname reported by the builtin DHCP server
2008 # @restrict: #optional isolate the guest from the host
2010 # @ip: #optional legacy parameter, use net= instead
2012 # @net: #optional IP address and optional netmask
2014 # @host: #optional guest-visible address of the host
2016 # @tftp: #optional root directory of the built-in TFTP server
2018 # @bootfile: #optional BOOTP filename, for use with tftp=
2020 # @dhcpstart: #optional the first of the 16 IPs the built-in DHCP server can
2021 #             assign
2023 # @dns: #optional guest-visible address of the virtual nameserver
2025 # @dnssearch: #optional list of DNS suffixes to search, passed as DHCP option
2026 #             to the guest
2028 # @smb: #optional root directory of the built-in SMB server
2030 # @smbserver: #optional IP address of the built-in SMB server
2032 # @hostfwd: #optional redirect incoming TCP or UDP host connections to guest
2033 #           endpoints
2035 # @guestfwd: #optional forward guest TCP connections
2037 # Since 1.2
2039 { 'type': 'NetdevUserOptions',
2040   'data': {
2041     '*hostname':  'str',
2042     '*restrict':  'bool',
2043     '*ip':        'str',
2044     '*net':       'str',
2045     '*host':      'str',
2046     '*tftp':      'str',
2047     '*bootfile':  'str',
2048     '*dhcpstart': 'str',
2049     '*dns':       'str',
2050     '*dnssearch': ['String'],
2051     '*smb':       'str',
2052     '*smbserver': 'str',
2053     '*hostfwd':   ['String'],
2054     '*guestfwd':  ['String'] } }
2057 # @NetdevTapOptions
2059 # Connect the host TAP network interface name to the VLAN.
2061 # @ifname: #optional interface name
2063 # @fd: #optional file descriptor of an already opened tap
2065 # @fds: #optional multiple file descriptors of already opened multiqueue capable
2066 # tap
2068 # @script: #optional script to initialize the interface
2070 # @downscript: #optional script to shut down the interface
2072 # @helper: #optional command to execute to configure bridge
2074 # @sndbuf: #optional send buffer limit. Understands [TGMKkb] suffixes.
2076 # @vnet_hdr: #optional enable the IFF_VNET_HDR flag on the tap interface
2078 # @vhost: #optional enable vhost-net network accelerator
2080 # @vhostfd: #optional file descriptor of an already opened vhost net device
2082 # @vhostfds: #optional file descriptors of multiple already opened vhost net
2083 # devices
2085 # @vhostforce: #optional vhost on for non-MSIX virtio guests
2087 # @queues: #optional number of queues to be created for multiqueue capable tap
2089 # Since 1.2
2091 { 'type': 'NetdevTapOptions',
2092   'data': {
2093     '*ifname':     'str',
2094     '*fd':         'str',
2095     '*fds':        'str',
2096     '*script':     'str',
2097     '*downscript': 'str',
2098     '*helper':     'str',
2099     '*sndbuf':     'size',
2100     '*vnet_hdr':   'bool',
2101     '*vhost':      'bool',
2102     '*vhostfd':    'str',
2103     '*vhostfds':   'str',
2104     '*vhostforce': 'bool',
2105     '*queues':     'uint32'} }
2108 # @NetdevSocketOptions
2110 # Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP
2111 # socket connection.
2113 # @fd: #optional file descriptor of an already opened socket
2115 # @listen: #optional port number, and optional hostname, to listen on
2117 # @connect: #optional port number, and optional hostname, to connect to
2119 # @mcast: #optional UDP multicast address and port number
2121 # @localaddr: #optional source address and port for multicast and udp packets
2123 # @udp: #optional UDP unicast address and port number
2125 # Since 1.2
2127 { 'type': 'NetdevSocketOptions',
2128   'data': {
2129     '*fd':        'str',
2130     '*listen':    'str',
2131     '*connect':   'str',
2132     '*mcast':     'str',
2133     '*localaddr': 'str',
2134     '*udp':       'str' } }
2137 # @NetdevL2TPv3Options
2139 # Connect the VLAN to Ethernet over L2TPv3 Static tunnel
2141 # @src: source address
2143 # @dst: destination address
2145 # @srcport: #optional source port - mandatory for udp, optional for ip
2147 # @dstport: #optional destination port - mandatory for udp, optional for ip
2149 # @ipv6: #optional - force the use of ipv6
2151 # @udp: #optional - use the udp version of l2tpv3 encapsulation
2153 # @cookie64: #optional - use 64 bit coookies
2155 # @counter: #optional have sequence counter
2157 # @pincounter: #optional pin sequence counter to zero -
2158 #              workaround for buggy implementations or
2159 #              networks with packet reorder
2161 # @txcookie: #optional 32 or 64 bit transmit cookie
2163 # @rxcookie: #optional 32 or 64 bit receive cookie
2165 # @txsession: 32 bit transmit session
2167 # @rxsession: #optional 32 bit receive session - if not specified
2168 #             set to the same value as transmit
2170 # @offset: #optional additional offset - allows the insertion of
2171 #          additional application-specific data before the packet payload
2173 # Since 2.1
2175 { 'type': 'NetdevL2TPv3Options',
2176   'data': {
2177     'src':          'str',
2178     'dst':          'str',
2179     '*srcport':     'str',
2180     '*dstport':     'str',
2181     '*ipv6':        'bool',
2182     '*udp':         'bool',
2183     '*cookie64':    'bool',
2184     '*counter':     'bool',
2185     '*pincounter':  'bool',
2186     '*txcookie':    'uint64',
2187     '*rxcookie':    'uint64',
2188     'txsession':    'uint32',
2189     '*rxsession':   'uint32',
2190     '*offset':      'uint32' } }
2193 # @NetdevVdeOptions
2195 # Connect the VLAN to a vde switch running on the host.
2197 # @sock: #optional socket path
2199 # @port: #optional port number
2201 # @group: #optional group owner of socket
2203 # @mode: #optional permissions for socket
2205 # Since 1.2
2207 { 'type': 'NetdevVdeOptions',
2208   'data': {
2209     '*sock':  'str',
2210     '*port':  'uint16',
2211     '*group': 'str',
2212     '*mode':  'uint16' } }
2215 # @NetdevDumpOptions
2217 # Dump VLAN network traffic to a file.
2219 # @len: #optional per-packet size limit (64k default). Understands [TGMKkb]
2220 # suffixes.
2222 # @file: #optional dump file path (default is qemu-vlan0.pcap)
2224 # Since 1.2
2226 { 'type': 'NetdevDumpOptions',
2227   'data': {
2228     '*len':  'size',
2229     '*file': 'str' } }
2232 # @NetdevBridgeOptions
2234 # Connect a host TAP network interface to a host bridge device.
2236 # @br: #optional bridge name
2238 # @helper: #optional command to execute to configure bridge
2240 # Since 1.2
2242 { 'type': 'NetdevBridgeOptions',
2243   'data': {
2244     '*br':     'str',
2245     '*helper': 'str' } }
2248 # @NetdevHubPortOptions
2250 # Connect two or more net clients through a software hub.
2252 # @hubid: hub identifier number
2254 # Since 1.2
2256 { 'type': 'NetdevHubPortOptions',
2257   'data': {
2258     'hubid':     'int32' } }
2261 # @NetdevNetmapOptions
2263 # Connect a client to a netmap-enabled NIC or to a VALE switch port
2265 # @ifname: Either the name of an existing network interface supported by
2266 #          netmap, or the name of a VALE port (created on the fly).
2267 #          A VALE port name is in the form 'valeXXX:YYY', where XXX and
2268 #          YYY are non-negative integers. XXX identifies a switch and
2269 #          YYY identifies a port of the switch. VALE ports having the
2270 #          same XXX are therefore connected to the same switch.
2272 # @devname: #optional path of the netmap device (default: '/dev/netmap').
2274 # Since 2.0
2276 { 'type': 'NetdevNetmapOptions',
2277   'data': {
2278     'ifname':     'str',
2279     '*devname':    'str' } }
2282 # @NetdevVhostUserOptions
2284 # Vhost-user network backend
2286 # @chardev: name of a unix socket chardev
2288 # @vhostforce: #optional vhost on for non-MSIX virtio guests (default: false).
2290 # Since 2.1
2292 { 'type': 'NetdevVhostUserOptions',
2293   'data': {
2294     'chardev':        'str',
2295     '*vhostforce':    'bool' } }
2298 # @NetClientOptions
2300 # A discriminated record of network device traits.
2302 # Since 1.2
2304 # 'l2tpv3' - since 2.1
2307 { 'union': 'NetClientOptions',
2308   'data': {
2309     'none':     'NetdevNoneOptions',
2310     'nic':      'NetLegacyNicOptions',
2311     'user':     'NetdevUserOptions',
2312     'tap':      'NetdevTapOptions',
2313     'l2tpv3':   'NetdevL2TPv3Options',
2314     'socket':   'NetdevSocketOptions',
2315     'vde':      'NetdevVdeOptions',
2316     'dump':     'NetdevDumpOptions',
2317     'bridge':   'NetdevBridgeOptions',
2318     'hubport':  'NetdevHubPortOptions',
2319     'netmap':   'NetdevNetmapOptions',
2320     'vhost-user': 'NetdevVhostUserOptions' } }
2323 # @NetLegacy
2325 # Captures the configuration of a network device; legacy.
2327 # @vlan: #optional vlan number
2329 # @id: #optional identifier for monitor commands
2331 # @name: #optional identifier for monitor commands, ignored if @id is present
2333 # @opts: device type specific properties (legacy)
2335 # Since 1.2
2337 { 'type': 'NetLegacy',
2338   'data': {
2339     '*vlan': 'int32',
2340     '*id':   'str',
2341     '*name': 'str',
2342     'opts':  'NetClientOptions' } }
2345 # @Netdev
2347 # Captures the configuration of a network device.
2349 # @id: identifier for monitor commands.
2351 # @opts: device type specific properties
2353 # Since 1.2
2355 { 'type': 'Netdev',
2356   'data': {
2357     'id':   'str',
2358     'opts': 'NetClientOptions' } }
2361 # @InetSocketAddress
2363 # Captures a socket address or address range in the Internet namespace.
2365 # @host: host part of the address
2367 # @port: port part of the address, or lowest port if @to is present
2369 # @to: highest port to try
2371 # @ipv4: whether to accept IPv4 addresses, default try both IPv4 and IPv6
2372 #        #optional
2374 # @ipv6: whether to accept IPv6 addresses, default try both IPv4 and IPv6
2375 #        #optional
2377 # Since 1.3
2379 { 'type': 'InetSocketAddress',
2380   'data': {
2381     'host': 'str',
2382     'port': 'str',
2383     '*to': 'uint16',
2384     '*ipv4': 'bool',
2385     '*ipv6': 'bool' } }
2388 # @UnixSocketAddress
2390 # Captures a socket address in the local ("Unix socket") namespace.
2392 # @path: filesystem path to use
2394 # Since 1.3
2396 { 'type': 'UnixSocketAddress',
2397   'data': {
2398     'path': 'str' } }
2401 # @SocketAddress
2403 # Captures the address of a socket, which could also be a named file descriptor
2405 # Since 1.3
2407 { 'union': 'SocketAddress',
2408   'data': {
2409     'inet': 'InetSocketAddress',
2410     'unix': 'UnixSocketAddress',
2411     'fd': 'String' } }
2414 # @getfd:
2416 # Receive a file descriptor via SCM rights and assign it a name
2418 # @fdname: file descriptor name
2420 # Returns: Nothing on success
2422 # Since: 0.14.0
2424 # Notes: If @fdname already exists, the file descriptor assigned to
2425 #        it will be closed and replaced by the received file
2426 #        descriptor.
2427 #        The 'closefd' command can be used to explicitly close the
2428 #        file descriptor when it is no longer needed.
2430 { 'command': 'getfd', 'data': {'fdname': 'str'} }
2433 # @closefd:
2435 # Close a file descriptor previously passed via SCM rights
2437 # @fdname: file descriptor name
2439 # Returns: Nothing on success
2441 # Since: 0.14.0
2443 { 'command': 'closefd', 'data': {'fdname': 'str'} }
2446 # @MachineInfo:
2448 # Information describing a machine.
2450 # @name: the name of the machine
2452 # @alias: #optional an alias for the machine name
2454 # @default: #optional whether the machine is default
2456 # @cpu-max: maximum number of CPUs supported by the machine type
2457 #           (since 1.5.0)
2459 # Since: 1.2.0
2461 { 'type': 'MachineInfo',
2462   'data': { 'name': 'str', '*alias': 'str',
2463             '*is-default': 'bool', 'cpu-max': 'int' } }
2466 # @query-machines:
2468 # Return a list of supported machines
2470 # Returns: a list of MachineInfo
2472 # Since: 1.2.0
2474 { 'command': 'query-machines', 'returns': ['MachineInfo'] }
2477 # @CpuDefinitionInfo:
2479 # Virtual CPU definition.
2481 # @name: the name of the CPU definition
2483 # Since: 1.2.0
2485 { 'type': 'CpuDefinitionInfo',
2486   'data': { 'name': 'str' } }
2489 # @query-cpu-definitions:
2491 # Return a list of supported virtual CPU definitions
2493 # Returns: a list of CpuDefInfo
2495 # Since: 1.2.0
2497 { 'command': 'query-cpu-definitions', 'returns': ['CpuDefinitionInfo'] }
2499 # @AddfdInfo:
2501 # Information about a file descriptor that was added to an fd set.
2503 # @fdset-id: The ID of the fd set that @fd was added to.
2505 # @fd: The file descriptor that was received via SCM rights and
2506 #      added to the fd set.
2508 # Since: 1.2.0
2510 { 'type': 'AddfdInfo', 'data': {'fdset-id': 'int', 'fd': 'int'} }
2513 # @add-fd:
2515 # Add a file descriptor, that was passed via SCM rights, to an fd set.
2517 # @fdset-id: #optional The ID of the fd set to add the file descriptor to.
2519 # @opaque: #optional A free-form string that can be used to describe the fd.
2521 # Returns: @AddfdInfo on success
2522 #          If file descriptor was not received, FdNotSupplied
2523 #          If @fdset-id is a negative value, InvalidParameterValue
2525 # Notes: The list of fd sets is shared by all monitor connections.
2527 #        If @fdset-id is not specified, a new fd set will be created.
2529 # Since: 1.2.0
2531 { 'command': 'add-fd', 'data': {'*fdset-id': 'int', '*opaque': 'str'},
2532   'returns': 'AddfdInfo' }
2535 # @remove-fd:
2537 # Remove a file descriptor from an fd set.
2539 # @fdset-id: The ID of the fd set that the file descriptor belongs to.
2541 # @fd: #optional The file descriptor that is to be removed.
2543 # Returns: Nothing on success
2544 #          If @fdset-id or @fd is not found, FdNotFound
2546 # Since: 1.2.0
2548 # Notes: The list of fd sets is shared by all monitor connections.
2550 #        If @fd is not specified, all file descriptors in @fdset-id
2551 #        will be removed.
2553 { 'command': 'remove-fd', 'data': {'fdset-id': 'int', '*fd': 'int'} }
2556 # @FdsetFdInfo:
2558 # Information about a file descriptor that belongs to an fd set.
2560 # @fd: The file descriptor value.
2562 # @opaque: #optional A free-form string that can be used to describe the fd.
2564 # Since: 1.2.0
2566 { 'type': 'FdsetFdInfo',
2567   'data': {'fd': 'int', '*opaque': 'str'} }
2570 # @FdsetInfo:
2572 # Information about an fd set.
2574 # @fdset-id: The ID of the fd set.
2576 # @fds: A list of file descriptors that belong to this fd set.
2578 # Since: 1.2.0
2580 { 'type': 'FdsetInfo',
2581   'data': {'fdset-id': 'int', 'fds': ['FdsetFdInfo']} }
2584 # @query-fdsets:
2586 # Return information describing all fd sets.
2588 # Returns: A list of @FdsetInfo
2590 # Since: 1.2.0
2592 # Note: The list of fd sets is shared by all monitor connections.
2595 { 'command': 'query-fdsets', 'returns': ['FdsetInfo'] }
2598 # @TargetInfo:
2600 # Information describing the QEMU target.
2602 # @arch: the target architecture (eg "x86_64", "i386", etc)
2604 # Since: 1.2.0
2606 { 'type': 'TargetInfo',
2607   'data': { 'arch': 'str' } }
2610 # @query-target:
2612 # Return information about the target for this QEMU
2614 # Returns: TargetInfo
2616 # Since: 1.2.0
2618 { 'command': 'query-target', 'returns': 'TargetInfo' }
2621 # @QKeyCode:
2623 # An enumeration of key name.
2625 # This is used by the send-key command.
2627 # Since: 1.3.0
2629 # 'unmapped' and 'pause' since 2.0
2631 { 'enum': 'QKeyCode',
2632   'data': [ 'unmapped',
2633             'shift', 'shift_r', 'alt', 'alt_r', 'altgr', 'altgr_r', 'ctrl',
2634             'ctrl_r', 'menu', 'esc', '1', '2', '3', '4', '5', '6', '7', '8',
2635             '9', '0', 'minus', 'equal', 'backspace', 'tab', 'q', 'w', 'e',
2636             'r', 't', 'y', 'u', 'i', 'o', 'p', 'bracket_left', 'bracket_right',
2637             'ret', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'semicolon',
2638             'apostrophe', 'grave_accent', 'backslash', 'z', 'x', 'c', 'v', 'b',
2639             'n', 'm', 'comma', 'dot', 'slash', 'asterisk', 'spc', 'caps_lock',
2640             'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'f10',
2641             'num_lock', 'scroll_lock', 'kp_divide', 'kp_multiply',
2642             'kp_subtract', 'kp_add', 'kp_enter', 'kp_decimal', 'sysrq', 'kp_0',
2643             'kp_1', 'kp_2', 'kp_3', 'kp_4', 'kp_5', 'kp_6', 'kp_7', 'kp_8',
2644             'kp_9', 'less', 'f11', 'f12', 'print', 'home', 'pgup', 'pgdn', 'end',
2645             'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again',
2646             'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut',
2647              'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause' ] }
2650 # @KeyValue
2652 # Represents a keyboard key.
2654 # Since: 1.3.0
2656 { 'union': 'KeyValue',
2657   'data': {
2658     'number': 'int',
2659     'qcode': 'QKeyCode' } }
2662 # @send-key:
2664 # Send keys to guest.
2666 # @keys: An array of @KeyValue elements. All @KeyValues in this array are
2667 #        simultaneously sent to the guest. A @KeyValue.number value is sent
2668 #        directly to the guest, while @KeyValue.qcode must be a valid
2669 #        @QKeyCode value
2671 # @hold-time: #optional time to delay key up events, milliseconds. Defaults
2672 #             to 100
2674 # Returns: Nothing on success
2675 #          If key is unknown or redundant, InvalidParameter
2677 # Since: 1.3.0
2680 { 'command': 'send-key',
2681   'data': { 'keys': ['KeyValue'], '*hold-time': 'int' } }
2684 # @screendump:
2686 # Write a PPM of the VGA screen to a file.
2688 # @filename: the path of a new PPM file to store the image
2690 # Returns: Nothing on success
2692 # Since: 0.14.0
2694 { 'command': 'screendump', 'data': {'filename': 'str'} }
2697 # @ChardevFile:
2699 # Configuration info for file chardevs.
2701 # @in:  #optional The name of the input file
2702 # @out: The name of the output file
2704 # Since: 1.4
2706 { 'type': 'ChardevFile', 'data': { '*in' : 'str',
2707                                    'out' : 'str' } }
2710 # @ChardevHostdev:
2712 # Configuration info for device and pipe chardevs.
2714 # @device: The name of the special file for the device,
2715 #          i.e. /dev/ttyS0 on Unix or COM1: on Windows
2716 # @type: What kind of device this is.
2718 # Since: 1.4
2720 { 'type': 'ChardevHostdev', 'data': { 'device' : 'str' } }
2723 # @ChardevSocket:
2725 # Configuration info for (stream) socket chardevs.
2727 # @addr: socket address to listen on (server=true)
2728 #        or connect to (server=false)
2729 # @server: #optional create server socket (default: true)
2730 # @wait: #optional wait for incoming connection on server
2731 #        sockets (default: false).
2732 # @nodelay: #optional set TCP_NODELAY socket option (default: false)
2733 # @telnet: #optional enable telnet protocol on server
2734 #          sockets (default: false)
2735 # @reconnect: #optional For a client socket, if a socket is disconnected,
2736 #          then attempt a reconnect after the given number of seconds.
2737 #          Setting this to zero disables this function. (default: 0)
2738 #          (Since: 2.2)
2740 # Since: 1.4
2742 { 'type': 'ChardevSocket', 'data': { 'addr'       : 'SocketAddress',
2743                                      '*server'    : 'bool',
2744                                      '*wait'      : 'bool',
2745                                      '*nodelay'   : 'bool',
2746                                      '*telnet'    : 'bool',
2747                                      '*reconnect' : 'int' } }
2750 # @ChardevUdp:
2752 # Configuration info for datagram socket chardevs.
2754 # @remote: remote address
2755 # @local: #optional local address
2757 # Since: 1.5
2759 { 'type': 'ChardevUdp', 'data': { 'remote' : 'SocketAddress',
2760                                   '*local' : 'SocketAddress' } }
2763 # @ChardevMux:
2765 # Configuration info for mux chardevs.
2767 # @chardev: name of the base chardev.
2769 # Since: 1.5
2771 { 'type': 'ChardevMux', 'data': { 'chardev' : 'str' } }
2774 # @ChardevStdio:
2776 # Configuration info for stdio chardevs.
2778 # @signal: #optional Allow signals (such as SIGINT triggered by ^C)
2779 #          be delivered to qemu.  Default: true in -nographic mode,
2780 #          false otherwise.
2782 # Since: 1.5
2784 { 'type': 'ChardevStdio', 'data': { '*signal' : 'bool' } }
2787 # @ChardevSpiceChannel:
2789 # Configuration info for spice vm channel chardevs.
2791 # @type: kind of channel (for example vdagent).
2793 # Since: 1.5
2795 { 'type': 'ChardevSpiceChannel', 'data': { 'type'  : 'str' } }
2798 # @ChardevSpicePort:
2800 # Configuration info for spice port chardevs.
2802 # @fqdn: name of the channel (see docs/spice-port-fqdn.txt)
2804 # Since: 1.5
2806 { 'type': 'ChardevSpicePort', 'data': { 'fqdn'  : 'str' } }
2809 # @ChardevVC:
2811 # Configuration info for virtual console chardevs.
2813 # @width:  console width,  in pixels
2814 # @height: console height, in pixels
2815 # @cols:   console width,  in chars
2816 # @rows:   console height, in chars
2818 # Since: 1.5
2820 { 'type': 'ChardevVC', 'data': { '*width'  : 'int',
2821                                  '*height' : 'int',
2822                                  '*cols'   : 'int',
2823                                  '*rows'   : 'int' } }
2826 # @ChardevRingbuf:
2828 # Configuration info for ring buffer chardevs.
2830 # @size: #optional ring buffer size, must be power of two, default is 65536
2832 # Since: 1.5
2834 { 'type': 'ChardevRingbuf', 'data': { '*size'  : 'int' } }
2837 # @ChardevBackend:
2839 # Configuration info for the new chardev backend.
2841 # Since: 1.4 (testdev since 2.2)
2843 { 'type': 'ChardevDummy', 'data': { } }
2845 { 'union': 'ChardevBackend', 'data': { 'file'   : 'ChardevFile',
2846                                        'serial' : 'ChardevHostdev',
2847                                        'parallel': 'ChardevHostdev',
2848                                        'pipe'   : 'ChardevHostdev',
2849                                        'socket' : 'ChardevSocket',
2850                                        'udp'    : 'ChardevUdp',
2851                                        'pty'    : 'ChardevDummy',
2852                                        'null'   : 'ChardevDummy',
2853                                        'mux'    : 'ChardevMux',
2854                                        'msmouse': 'ChardevDummy',
2855                                        'braille': 'ChardevDummy',
2856                                        'testdev': 'ChardevDummy',
2857                                        'stdio'  : 'ChardevStdio',
2858                                        'console': 'ChardevDummy',
2859                                        'spicevmc' : 'ChardevSpiceChannel',
2860                                        'spiceport' : 'ChardevSpicePort',
2861                                        'vc'     : 'ChardevVC',
2862                                        'ringbuf': 'ChardevRingbuf',
2863                                        # next one is just for compatibility
2864                                        'memory' : 'ChardevRingbuf' } }
2867 # @ChardevReturn:
2869 # Return info about the chardev backend just created.
2871 # @pty: #optional name of the slave pseudoterminal device, present if
2872 #       and only if a chardev of type 'pty' was created
2874 # Since: 1.4
2876 { 'type' : 'ChardevReturn', 'data': { '*pty' : 'str' } }
2879 # @chardev-add:
2881 # Add a character device backend
2883 # @id: the chardev's ID, must be unique
2884 # @backend: backend type and parameters
2886 # Returns: ChardevReturn.
2888 # Since: 1.4
2890 { 'command': 'chardev-add', 'data': {'id'      : 'str',
2891                                      'backend' : 'ChardevBackend' },
2892   'returns': 'ChardevReturn' }
2895 # @chardev-remove:
2897 # Remove a character device backend
2899 # @id: the chardev's ID, must exist and not be in use
2901 # Returns: Nothing on success
2903 # Since: 1.4
2905 { 'command': 'chardev-remove', 'data': {'id': 'str'} }
2908 # @TpmModel:
2910 # An enumeration of TPM models
2912 # @tpm-tis: TPM TIS model
2914 # Since: 1.5
2916 { 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
2919 # @query-tpm-models:
2921 # Return a list of supported TPM models
2923 # Returns: a list of TpmModel
2925 # Since: 1.5
2927 { 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
2930 # @TpmType:
2932 # An enumeration of TPM types
2934 # @passthrough: TPM passthrough type
2936 # Since: 1.5
2938 { 'enum': 'TpmType', 'data': [ 'passthrough' ] }
2941 # @query-tpm-types:
2943 # Return a list of supported TPM types
2945 # Returns: a list of TpmType
2947 # Since: 1.5
2949 { 'command': 'query-tpm-types', 'returns': ['TpmType'] }
2952 # @TPMPassthroughOptions:
2954 # Information about the TPM passthrough type
2956 # @path: #optional string describing the path used for accessing the TPM device
2958 # @cancel-path: #optional string showing the TPM's sysfs cancel file
2959 #               for cancellation of TPM commands while they are executing
2961 # Since: 1.5
2963 { 'type': 'TPMPassthroughOptions', 'data': { '*path' : 'str',
2964                                              '*cancel-path' : 'str'} }
2967 # @TpmTypeOptions:
2969 # A union referencing different TPM backend types' configuration options
2971 # @passthrough: The configuration options for the TPM passthrough type
2973 # Since: 1.5
2975 { 'union': 'TpmTypeOptions',
2976    'data': { 'passthrough' : 'TPMPassthroughOptions' } }
2979 # @TpmInfo:
2981 # Information about the TPM
2983 # @id: The Id of the TPM
2985 # @model: The TPM frontend model
2987 # @options: The TPM (backend) type configuration options
2989 # Since: 1.5
2991 { 'type': 'TPMInfo',
2992   'data': {'id': 'str',
2993            'model': 'TpmModel',
2994            'options': 'TpmTypeOptions' } }
2997 # @query-tpm:
2999 # Return information about the TPM device
3001 # Returns: @TPMInfo on success
3003 # Since: 1.5
3005 { 'command': 'query-tpm', 'returns': ['TPMInfo'] }
3008 # @AcpiTableOptions
3010 # Specify an ACPI table on the command line to load.
3012 # At most one of @file and @data can be specified. The list of files specified
3013 # by any one of them is loaded and concatenated in order. If both are omitted,
3014 # @data is implied.
3016 # Other fields / optargs can be used to override fields of the generic ACPI
3017 # table header; refer to the ACPI specification 5.0, section 5.2.6 System
3018 # Description Table Header. If a header field is not overridden, then the
3019 # corresponding value from the concatenated blob is used (in case of @file), or
3020 # it is filled in with a hard-coded value (in case of @data).
3022 # String fields are copied into the matching ACPI member from lowest address
3023 # upwards, and silently truncated / NUL-padded to length.
3025 # @sig: #optional table signature / identifier (4 bytes)
3027 # @rev: #optional table revision number (dependent on signature, 1 byte)
3029 # @oem_id: #optional OEM identifier (6 bytes)
3031 # @oem_table_id: #optional OEM table identifier (8 bytes)
3033 # @oem_rev: #optional OEM-supplied revision number (4 bytes)
3035 # @asl_compiler_id: #optional identifier of the utility that created the table
3036 #                   (4 bytes)
3038 # @asl_compiler_rev: #optional revision number of the utility that created the
3039 #                    table (4 bytes)
3041 # @file: #optional colon (:) separated list of pathnames to load and
3042 #        concatenate as table data. The resultant binary blob is expected to
3043 #        have an ACPI table header. At least one file is required. This field
3044 #        excludes @data.
3046 # @data: #optional colon (:) separated list of pathnames to load and
3047 #        concatenate as table data. The resultant binary blob must not have an
3048 #        ACPI table header. At least one file is required. This field excludes
3049 #        @file.
3051 # Since 1.5
3053 { 'type': 'AcpiTableOptions',
3054   'data': {
3055     '*sig':               'str',
3056     '*rev':               'uint8',
3057     '*oem_id':            'str',
3058     '*oem_table_id':      'str',
3059     '*oem_rev':           'uint32',
3060     '*asl_compiler_id':   'str',
3061     '*asl_compiler_rev':  'uint32',
3062     '*file':              'str',
3063     '*data':              'str' }}
3066 # @CommandLineParameterType:
3068 # Possible types for an option parameter.
3070 # @string: accepts a character string
3072 # @boolean: accepts "on" or "off"
3074 # @number: accepts a number
3076 # @size: accepts a number followed by an optional suffix (K)ilo,
3077 #        (M)ega, (G)iga, (T)era
3079 # Since 1.5
3081 { 'enum': 'CommandLineParameterType',
3082   'data': ['string', 'boolean', 'number', 'size'] }
3085 # @CommandLineParameterInfo:
3087 # Details about a single parameter of a command line option.
3089 # @name: parameter name
3091 # @type: parameter @CommandLineParameterType
3093 # @help: #optional human readable text string, not suitable for parsing.
3095 # @default: #optional default value string (since 2.1)
3097 # Since 1.5
3099 { 'type': 'CommandLineParameterInfo',
3100   'data': { 'name': 'str',
3101             'type': 'CommandLineParameterType',
3102             '*help': 'str',
3103             '*default': 'str' } }
3106 # @CommandLineOptionInfo:
3108 # Details about a command line option, including its list of parameter details
3110 # @option: option name
3112 # @parameters: an array of @CommandLineParameterInfo
3114 # Since 1.5
3116 { 'type': 'CommandLineOptionInfo',
3117   'data': { 'option': 'str', 'parameters': ['CommandLineParameterInfo'] } }
3120 # @query-command-line-options:
3122 # Query command line option schema.
3124 # @option: #optional option name
3126 # Returns: list of @CommandLineOptionInfo for all options (or for the given
3127 #          @option).  Returns an error if the given @option doesn't exist.
3129 # Since 1.5
3131 {'command': 'query-command-line-options', 'data': { '*option': 'str' },
3132  'returns': ['CommandLineOptionInfo'] }
3135 # @X86CPURegister32
3137 # A X86 32-bit register
3139 # Since: 1.5
3141 { 'enum': 'X86CPURegister32',
3142   'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
3145 # @X86CPUFeatureWordInfo
3147 # Information about a X86 CPU feature word
3149 # @cpuid-input-eax: Input EAX value for CPUID instruction for that feature word
3151 # @cpuid-input-ecx: #optional Input ECX value for CPUID instruction for that
3152 #                   feature word
3154 # @cpuid-register: Output register containing the feature bits
3156 # @features: value of output register, containing the feature bits
3158 # Since: 1.5
3160 { 'type': 'X86CPUFeatureWordInfo',
3161   'data': { 'cpuid-input-eax': 'int',
3162             '*cpuid-input-ecx': 'int',
3163             'cpuid-register': 'X86CPURegister32',
3164             'features': 'int' } }
3167 # @RxState:
3169 # Packets receiving state
3171 # @normal: filter assigned packets according to the mac-table
3173 # @none: don't receive any assigned packet
3175 # @all: receive all assigned packets
3177 # Since: 1.6
3179 { 'enum': 'RxState', 'data': [ 'normal', 'none', 'all' ] }
3182 # @RxFilterInfo:
3184 # Rx-filter information for a NIC.
3186 # @name: net client name
3188 # @promiscuous: whether promiscuous mode is enabled
3190 # @multicast: multicast receive state
3192 # @unicast: unicast receive state
3194 # @vlan: vlan receive state (Since 2.0)
3196 # @broadcast-allowed: whether to receive broadcast
3198 # @multicast-overflow: multicast table is overflowed or not
3200 # @unicast-overflow: unicast table is overflowed or not
3202 # @main-mac: the main macaddr string
3204 # @vlan-table: a list of active vlan id
3206 # @unicast-table: a list of unicast macaddr string
3208 # @multicast-table: a list of multicast macaddr string
3210 # Since 1.6
3213 { 'type': 'RxFilterInfo',
3214   'data': {
3215     'name':               'str',
3216     'promiscuous':        'bool',
3217     'multicast':          'RxState',
3218     'unicast':            'RxState',
3219     'vlan':               'RxState',
3220     'broadcast-allowed':  'bool',
3221     'multicast-overflow': 'bool',
3222     'unicast-overflow':   'bool',
3223     'main-mac':           'str',
3224     'vlan-table':         ['int'],
3225     'unicast-table':      ['str'],
3226     'multicast-table':    ['str'] }}
3229 # @query-rx-filter:
3231 # Return rx-filter information for all NICs (or for the given NIC).
3233 # @name: #optional net client name
3235 # Returns: list of @RxFilterInfo for all NICs (or for the given NIC).
3236 #          Returns an error if the given @name doesn't exist, or given
3237 #          NIC doesn't support rx-filter querying, or given net client
3238 #          isn't a NIC.
3240 # Since: 1.6
3242 { 'command': 'query-rx-filter', 'data': { '*name': 'str' },
3243   'returns': ['RxFilterInfo'] }
3246 # @InputButton
3248 # Button of a pointer input device (mouse, tablet).
3250 # Since: 2.0
3252 { 'enum'  : 'InputButton',
3253   'data'  : [ 'Left', 'Middle', 'Right', 'WheelUp', 'WheelDown' ] }
3256 # @InputButton
3258 # Position axis of a pointer input device (mouse, tablet).
3260 # Since: 2.0
3262 { 'enum'  : 'InputAxis',
3263   'data'  : [ 'X', 'Y' ] }
3266 # @InputKeyEvent
3268 # Keyboard input event.
3270 # @key:    Which key this event is for.
3271 # @down:   True for key-down and false for key-up events.
3273 # Since: 2.0
3275 { 'type'  : 'InputKeyEvent',
3276   'data'  : { 'key'     : 'KeyValue',
3277               'down'    : 'bool' } }
3280 # @InputBtnEvent
3282 # Pointer button input event.
3284 # @button: Which button this event is for.
3285 # @down:   True for key-down and false for key-up events.
3287 # Since: 2.0
3289 { 'type'  : 'InputBtnEvent',
3290   'data'  : { 'button'  : 'InputButton',
3291               'down'    : 'bool' } }
3294 # @InputMoveEvent
3296 # Pointer motion input event.
3298 # @axis:   Which axis is referenced by @value.
3299 # @value:  Pointer position.  For absolute coordinates the
3300 #          valid range is 0 -> 0x7ffff
3302 # Since: 2.0
3304 { 'type'  : 'InputMoveEvent',
3305   'data'  : { 'axis'    : 'InputAxis',
3306               'value'   : 'int' } }
3309 # @InputEvent
3311 # Input event union.
3313 # @key: Input event of Keyboard
3314 # @btn: Input event of pointer buttons
3315 # @rel: Input event of relative pointer motion
3316 # @abs: Input event of absolute pointer motion
3318 # Since: 2.0
3320 { 'union' : 'InputEvent',
3321   'data'  : { 'key'     : 'InputKeyEvent',
3322               'btn'     : 'InputBtnEvent',
3323               'rel'     : 'InputMoveEvent',
3324               'abs'     : 'InputMoveEvent' } }
3327 # @x-input-send-event
3329 # Send input event(s) to guest.
3331 # @console: #optional console to send event(s) to.
3332 #           This parameter can be used to send the input event to
3333 #           specific input devices in case (a) multiple input devices
3334 #           of the same kind are added to the virtual machine and (b)
3335 #           you have configured input routing (see docs/multiseat.txt)
3336 #           for those input devices.  If input routing is not
3337 #           configured this parameter has no effect.
3338 #           If @console is missing, only devices that aren't associated
3339 #           with a console are admissible.
3340 #           If @console is specified, it must exist, and both devices
3341 #           associated with that console and devices not associated with a
3342 #           console are admissible, but the former take precedence.
3345 # @events: List of InputEvent union.
3347 # Returns: Nothing on success.
3349 # Since: 2.2
3351 # Note: this command is experimental, and not a stable API.
3354 { 'command': 'x-input-send-event',
3355   'data': { '*console':'int', 'events': [ 'InputEvent' ] } }
3358 # @NumaOptions
3360 # A discriminated record of NUMA options. (for OptsVisitor)
3362 # Since 2.1
3364 { 'union': 'NumaOptions',
3365   'data': {
3366     'node': 'NumaNodeOptions' }}
3369 # @NumaNodeOptions
3371 # Create a guest NUMA node. (for OptsVisitor)
3373 # @nodeid: #optional NUMA node ID (increase by 1 from 0 if omitted)
3375 # @cpus: #optional VCPUs belonging to this node (assign VCPUS round-robin
3376 #         if omitted)
3378 # @mem: #optional memory size of this node; mutually exclusive with @memdev.
3379 #       Equally divide total memory among nodes if both @mem and @memdev are
3380 #       omitted.
3382 # @memdev: #optional memory backend object.  If specified for one node,
3383 #          it must be specified for all nodes.
3385 # Since: 2.1
3387 { 'type': 'NumaNodeOptions',
3388   'data': {
3389    '*nodeid': 'uint16',
3390    '*cpus':   ['uint16'],
3391    '*mem':    'size',
3392    '*memdev': 'str' }}
3395 # @HostMemPolicy
3397 # Host memory policy types
3399 # @default: restore default policy, remove any nondefault policy
3401 # @preferred: set the preferred host nodes for allocation
3403 # @bind: a strict policy that restricts memory allocation to the
3404 #        host nodes specified
3406 # @interleave: memory allocations are interleaved across the set
3407 #              of host nodes specified
3409 # Since 2.1
3411 { 'enum': 'HostMemPolicy',
3412   'data': [ 'default', 'preferred', 'bind', 'interleave' ] }
3415 # @Memdev:
3417 # Information about memory backend
3419 # @size: memory backend size
3421 # @merge: enables or disables memory merge support
3423 # @dump: includes memory backend's memory in a core dump or not
3425 # @prealloc: enables or disables memory preallocation
3427 # @host-nodes: host nodes for its memory policy
3429 # @policy: memory policy of memory backend
3431 # Since: 2.1
3434 { 'type': 'Memdev',
3435   'data': {
3436     'size':       'size',
3437     'merge':      'bool',
3438     'dump':       'bool',
3439     'prealloc':   'bool',
3440     'host-nodes': ['uint16'],
3441     'policy':     'HostMemPolicy' }}
3444 # @query-memdev:
3446 # Returns information for all memory backends.
3448 # Returns: a list of @Memdev.
3450 # Since: 2.1
3452 { 'command': 'query-memdev', 'returns': ['Memdev'] }
3455 # @PCDIMMDeviceInfo:
3457 # PCDIMMDevice state information
3459 # @id: #optional device's ID
3461 # @addr: physical address, where device is mapped
3463 # @size: size of memory that the device provides
3465 # @slot: slot number at which device is plugged in
3467 # @node: NUMA node number where device is plugged in
3469 # @memdev: memory backend linked with device
3471 # @hotplugged: true if device was hotplugged
3473 # @hotpluggable: true if device if could be added/removed while machine is running
3475 # Since: 2.1
3477 { 'type': 'PCDIMMDeviceInfo',
3478   'data': { '*id': 'str',
3479             'addr': 'int',
3480             'size': 'int',
3481             'slot': 'int',
3482             'node': 'int',
3483             'memdev': 'str',
3484             'hotplugged': 'bool',
3485             'hotpluggable': 'bool'
3486           }
3490 # @MemoryDeviceInfo:
3492 # Union containing information about a memory device
3494 # Since: 2.1
3496 { 'union': 'MemoryDeviceInfo', 'data': {'dimm': 'PCDIMMDeviceInfo'} }
3499 # @query-memory-devices
3501 # Lists available memory devices and their state
3503 # Since: 2.1
3505 { 'command': 'query-memory-devices', 'returns': ['MemoryDeviceInfo'] }
3507 ## @ACPISlotType
3509 # @DIMM: memory slot
3511 { 'enum': 'ACPISlotType', 'data': [ 'DIMM' ] }
3513 ## @ACPIOSTInfo
3515 # OSPM Status Indication for a device
3516 # For description of possible values of @source and @status fields
3517 # see "_OST (OSPM Status Indication)" chapter of ACPI5.0 spec.
3519 # @device: #optional device ID associated with slot
3521 # @slot: slot ID, unique per slot of a given @slot-type
3523 # @slot-type: type of the slot
3525 # @source: an integer containing the source event
3527 # @status: an integer containing the status code
3529 # Since: 2.1
3531 { 'type': 'ACPIOSTInfo',
3532   'data'  : { '*device': 'str',
3533               'slot': 'str',
3534               'slot-type': 'ACPISlotType',
3535               'source': 'int',
3536               'status': 'int' } }
3539 # @query-acpi-ospm-status
3541 # Lists ACPI OSPM status of ACPI device objects,
3542 # which might be reported via _OST method
3544 # Since: 2.1
3546 { 'command': 'query-acpi-ospm-status', 'returns': ['ACPIOSTInfo'] }
3549 # @WatchdogExpirationAction
3551 # An enumeration of the actions taken when the watchdog device's timer is
3552 # expired
3554 # @reset: system resets
3556 # @shutdown: system shutdown, note that it is similar to @powerdown, which
3557 #            tries to set to system status and notify guest
3559 # @poweroff: system poweroff, the emulator program exits
3561 # @pause: system pauses, similar to @stop
3563 # @debug: system enters debug state
3565 # @none: nothing is done
3567 # Since: 2.1
3569 { 'enum': 'WatchdogExpirationAction',
3570   'data': [ 'reset', 'shutdown', 'poweroff', 'pause', 'debug', 'none' ] }
3573 # @IoOperationType
3575 # An enumeration of the I/O operation types
3577 # @read: read operation
3579 # @write: write operation
3581 # Since: 2.1
3583 { 'enum': 'IoOperationType',
3584   'data': [ 'read', 'write' ] }
3587 # @GuestPanicAction
3589 # An enumeration of the actions taken when guest OS panic is detected
3591 # @pause: system pauses
3593 # Since: 2.1
3595 { 'enum': 'GuestPanicAction',
3596   'data': [ 'pause' ] }
3599 # @rtc-reset-reinjection
3601 # This command will reset the RTC interrupt reinjection backlog.
3602 # Can be used if another mechanism to synchronize guest time
3603 # is in effect, for example QEMU guest agent's guest-set-time
3604 # command.
3606 # Since: 2.1
3608 { 'command': 'rtc-reset-reinjection' }