s390x: gdb updates for vector registers
[qemu/qmp-unstable.git] / qapi-schema.json
blobf97ffa1132de22c81835d7da83bc49372be9b52b
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 { 'struct': '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 { 'struct': '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 { 'struct': '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 { 'struct': '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 { 'struct': '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 { 'struct': '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 { 'struct': '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 { 'struct': '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 { 'struct': 'XBZRLECacheStats',
409   'data': {'cache-size': 'int', 'bytes': 'int', 'pages': 'int',
410            'cache-miss': 'int', 'cache-miss-rate': 'number',
411            'overflow': 'int' } }
413 # @MigrationStatus:
415 # An enumeration of migration status.
417 # @none: no migration has ever happened.
419 # @setup: migration process has been initiated.
421 # @cancelling: in the process of cancelling migration.
423 # @cancelled: cancelling migration is finished.
425 # @active: in the process of doing migration.
427 # @completed: migration is finished.
429 # @failed: some error occurred during migration process.
431 # Since: 2.3
434 { 'enum': 'MigrationStatus',
435   'data': [ 'none', 'setup', 'cancelling', 'cancelled',
436             'active', 'completed', 'failed' ] }
439 # @MigrationInfo
441 # Information about current migration process.
443 # @status: #optional @MigrationStatus describing the current migration status.
444 #          If this field is not returned, no migration process
445 #          has been initiated
447 # @ram: #optional @MigrationStats containing detailed migration
448 #       status, only returned if status is 'active' or
449 #       'completed'(since 1.2)
451 # @disk: #optional @MigrationStats containing detailed disk migration
452 #        status, only returned if status is 'active' and it is a block
453 #        migration
455 # @xbzrle-cache: #optional @XBZRLECacheStats containing detailed XBZRLE
456 #                migration statistics, only returned if XBZRLE feature is on and
457 #                status is 'active' or 'completed' (since 1.2)
459 # @total-time: #optional total amount of milliseconds since migration started.
460 #        If migration has ended, it returns the total migration
461 #        time. (since 1.2)
463 # @downtime: #optional only present when migration finishes correctly
464 #        total downtime in milliseconds for the guest.
465 #        (since 1.3)
467 # @expected-downtime: #optional only present while migration is active
468 #        expected downtime in milliseconds for the guest in last walk
469 #        of the dirty bitmap. (since 1.3)
471 # @setup-time: #optional amount of setup time in milliseconds _before_ the
472 #        iterations begin but _after_ the QMP command is issued. This is designed
473 #        to provide an accounting of any activities (such as RDMA pinning) which
474 #        may be expensive, but do not actually occur during the iterative
475 #        migration rounds themselves. (since 1.6)
477 # Since: 0.14.0
479 { 'struct': 'MigrationInfo',
480   'data': {'*status': 'MigrationStatus', '*ram': 'MigrationStats',
481            '*disk': 'MigrationStats',
482            '*xbzrle-cache': 'XBZRLECacheStats',
483            '*total-time': 'int',
484            '*expected-downtime': 'int',
485            '*downtime': 'int',
486            '*setup-time': 'int'} }
489 # @query-migrate
491 # Returns information about current migration process.
493 # Returns: @MigrationInfo
495 # Since: 0.14.0
497 { 'command': 'query-migrate', 'returns': 'MigrationInfo' }
500 # @MigrationCapability
502 # Migration capabilities enumeration
504 # @xbzrle: Migration supports xbzrle (Xor Based Zero Run Length Encoding).
505 #          This feature allows us to minimize migration traffic for certain work
506 #          loads, by sending compressed difference of the pages
508 # @rdma-pin-all: Controls whether or not the entire VM memory footprint is
509 #          mlock()'d on demand or all at once. Refer to docs/rdma.txt for usage.
510 #          Disabled by default. (since 2.0)
512 # @zero-blocks: During storage migration encode blocks of zeroes efficiently. This
513 #          essentially saves 1MB of zeroes per block on the wire. Enabling requires
514 #          source and target VM to support this feature. To enable it is sufficient
515 #          to enable the capability on the source VM. The feature is disabled by
516 #          default. (since 1.6)
518 # @compress: Use multiple compression threads to accelerate live migration.
519 #          This feature can help to reduce the migration traffic, by sending
520 #          compressed pages. Please note that if compress and xbzrle are both
521 #          on, compress only takes effect in the ram bulk stage, after that,
522 #          it will be disabled and only xbzrle takes effect, this can help to
523 #          minimize migration traffic. The feature is disabled by default.
524 #          (since 2.4 )
526 # @auto-converge: If enabled, QEMU will automatically throttle down the guest
527 #          to speed up convergence of RAM migration. (since 1.6)
529 # Since: 1.2
531 { 'enum': 'MigrationCapability',
532   'data': ['xbzrle', 'rdma-pin-all', 'auto-converge', 'zero-blocks',
533            'compress'] }
536 # @MigrationCapabilityStatus
538 # Migration capability information
540 # @capability: capability enum
542 # @state: capability state bool
544 # Since: 1.2
546 { 'struct': 'MigrationCapabilityStatus',
547   'data': { 'capability' : 'MigrationCapability', 'state' : 'bool' } }
550 # @migrate-set-capabilities
552 # Enable/Disable the following migration capabilities (like xbzrle)
554 # @capabilities: json array of capability modifications to make
556 # Since: 1.2
558 { 'command': 'migrate-set-capabilities',
559   'data': { 'capabilities': ['MigrationCapabilityStatus'] } }
562 # @query-migrate-capabilities
564 # Returns information about the current migration capabilities status
566 # Returns: @MigrationCapabilitiesStatus
568 # Since: 1.2
570 { 'command': 'query-migrate-capabilities', 'returns':   ['MigrationCapabilityStatus']}
572 # @MigrationParameter
574 # Migration parameters enumeration
576 # @compress-level: Set the compression level to be used in live migration,
577 #          the compression level is an integer between 0 and 9, where 0 means
578 #          no compression, 1 means the best compression speed, and 9 means best
579 #          compression ratio which will consume more CPU.
581 # @compress-threads: Set compression thread count to be used in live migration,
582 #          the compression thread count is an integer between 1 and 255.
584 # @decompress-threads: Set decompression thread count to be used in live
585 #          migration, the decompression thread count is an integer between 1
586 #          and 255. Usually, decompression is at least 4 times as fast as
587 #          compression, so set the decompress-threads to the number about 1/4
588 #          of compress-threads is adequate.
590 # Since: 2.4
592 { 'enum': 'MigrationParameter',
593   'data': ['compress-level', 'compress-threads', 'decompress-threads'] }
596 # @migrate-set-parameters
598 # Set the following migration parameters
600 # @compress-level: compression level
602 # @compress-threads: compression thread count
604 # @decompress-threads: decompression thread count
606 # Since: 2.4
608 { 'command': 'migrate-set-parameters',
609   'data': { '*compress-level': 'int',
610             '*compress-threads': 'int',
611             '*decompress-threads': 'int'} }
614 # @MigrationParameters
616 # @compress-level: compression level
618 # @compress-threads: compression thread count
620 # @decompress-threads: decompression thread count
622 # Since: 2.4
624 { 'struct': 'MigrationParameters',
625   'data': { 'compress-level': 'int',
626             'compress-threads': 'int',
627             'decompress-threads': 'int'} }
629 # @query-migrate-parameters
631 # Returns information about the current migration parameters
633 # Returns: @MigrationParameters
635 # Since: 2.4
637 { 'command': 'query-migrate-parameters',
638   'returns': 'MigrationParameters' }
641 # @MouseInfo:
643 # Information about a mouse device.
645 # @name: the name of the mouse device
647 # @index: the index of the mouse device
649 # @current: true if this device is currently receiving mouse events
651 # @absolute: true if this device supports absolute coordinates as input
653 # Since: 0.14.0
655 { 'struct': 'MouseInfo',
656   'data': {'name': 'str', 'index': 'int', 'current': 'bool',
657            'absolute': 'bool'} }
660 # @query-mice:
662 # Returns information about each active mouse device
664 # Returns: a list of @MouseInfo for each device
666 # Since: 0.14.0
668 { 'command': 'query-mice', 'returns': ['MouseInfo'] }
671 # @CpuInfo:
673 # Information about a virtual CPU
675 # @CPU: the index of the virtual CPU
677 # @current: this only exists for backwards compatible and should be ignored
679 # @halted: true if the virtual CPU is in the halt state.  Halt usually refers
680 #          to a processor specific low power mode.
682 # @qom_path: path to the CPU object in the QOM tree (since 2.4)
684 # @pc: #optional If the target is i386 or x86_64, this is the 64-bit instruction
685 #                pointer.
686 #                If the target is Sparc, this is the PC component of the
687 #                instruction pointer.
689 # @nip: #optional If the target is PPC, the instruction pointer
691 # @npc: #optional If the target is Sparc, the NPC component of the instruction
692 #                 pointer
694 # @PC: #optional If the target is MIPS, the instruction pointer
696 # @thread_id: ID of the underlying host thread
698 # Since: 0.14.0
700 # Notes: @halted is a transient state that changes frequently.  By the time the
701 #        data is sent to the client, the guest may no longer be halted.
703 { 'struct': 'CpuInfo',
704   'data': {'CPU': 'int', 'current': 'bool', 'halted': 'bool',
705            'qom_path': 'str',
706            '*pc': 'int', '*nip': 'int', '*npc': 'int', '*PC': 'int',
707            'thread_id': 'int'} }
710 # @query-cpus:
712 # Returns a list of information about each virtual CPU.
714 # Returns: a list of @CpuInfo for each virtual CPU
716 # Since: 0.14.0
718 { 'command': 'query-cpus', 'returns': ['CpuInfo'] }
721 # @IOThreadInfo:
723 # Information about an iothread
725 # @id: the identifier of the iothread
727 # @thread-id: ID of the underlying host thread
729 # Since: 2.0
731 { 'struct': 'IOThreadInfo',
732   'data': {'id': 'str', 'thread-id': 'int'} }
735 # @query-iothreads:
737 # Returns a list of information about each iothread.
739 # Note this list excludes the QEMU main loop thread, which is not declared
740 # using the -object iothread command-line option.  It is always the main thread
741 # of the process.
743 # Returns: a list of @IOThreadInfo for each iothread
745 # Since: 2.0
747 { 'command': 'query-iothreads', 'returns': ['IOThreadInfo'] }
750 # @NetworkAddressFamily
752 # The network address family
754 # @ipv4: IPV4 family
756 # @ipv6: IPV6 family
758 # @unix: unix socket
760 # @unknown: otherwise
762 # Since: 2.1
764 { 'enum': 'NetworkAddressFamily',
765   'data': [ 'ipv4', 'ipv6', 'unix', 'unknown' ] }
768 # @VncBasicInfo
770 # The basic information for vnc network connection
772 # @host: IP address
774 # @service: The service name of the vnc port. This may depend on the host
775 #           system's service database so symbolic names should not be relied
776 #           on.
778 # @family: address family
780 # @websocket: true in case the socket is a websocket (since 2.3).
782 # Since: 2.1
784 { 'struct': 'VncBasicInfo',
785   'data': { 'host': 'str',
786             'service': 'str',
787             'family': 'NetworkAddressFamily',
788             'websocket': 'bool' } }
791 # @VncServerInfo
793 # The network connection information for server
795 # @auth: #optional, authentication method
797 # Since: 2.1
799 { 'struct': 'VncServerInfo',
800   'base': 'VncBasicInfo',
801   'data': { '*auth': 'str' } }
804 # @VncClientInfo:
806 # Information about a connected VNC client.
808 # @x509_dname: #optional If x509 authentication is in use, the Distinguished
809 #              Name of the client.
811 # @sasl_username: #optional If SASL authentication is in use, the SASL username
812 #                 used for authentication.
814 # Since: 0.14.0
816 { 'struct': 'VncClientInfo',
817   'base': 'VncBasicInfo',
818   'data': { '*x509_dname': 'str', '*sasl_username': 'str' } }
821 # @VncInfo:
823 # Information about the VNC session.
825 # @enabled: true if the VNC server is enabled, false otherwise
827 # @host: #optional The hostname the VNC server is bound to.  This depends on
828 #        the name resolution on the host and may be an IP address.
830 # @family: #optional 'ipv6' if the host is listening for IPv6 connections
831 #                    'ipv4' if the host is listening for IPv4 connections
832 #                    'unix' if the host is listening on a unix domain socket
833 #                    'unknown' otherwise
835 # @service: #optional The service name of the server's port.  This may depends
836 #           on the host system's service database so symbolic names should not
837 #           be relied on.
839 # @auth: #optional the current authentication type used by the server
840 #        'none' if no authentication is being used
841 #        'vnc' if VNC authentication is being used
842 #        'vencrypt+plain' if VEncrypt is used with plain text authentication
843 #        'vencrypt+tls+none' if VEncrypt is used with TLS and no authentication
844 #        'vencrypt+tls+vnc' if VEncrypt is used with TLS and VNC authentication
845 #        'vencrypt+tls+plain' if VEncrypt is used with TLS and plain text auth
846 #        'vencrypt+x509+none' if VEncrypt is used with x509 and no auth
847 #        'vencrypt+x509+vnc' if VEncrypt is used with x509 and VNC auth
848 #        'vencrypt+x509+plain' if VEncrypt is used with x509 and plain text auth
849 #        'vencrypt+tls+sasl' if VEncrypt is used with TLS and SASL auth
850 #        'vencrypt+x509+sasl' if VEncrypt is used with x509 and SASL auth
852 # @clients: a list of @VncClientInfo of all currently connected clients
854 # Since: 0.14.0
856 { 'struct': 'VncInfo',
857   'data': {'enabled': 'bool', '*host': 'str',
858            '*family': 'NetworkAddressFamily',
859            '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']} }
862 # @VncPriAuth:
864 # vnc primary authentication method.
866 # Since: 2.3
868 { 'enum': 'VncPrimaryAuth',
869   'data': [ 'none', 'vnc', 'ra2', 'ra2ne', 'tight', 'ultra',
870             'tls', 'vencrypt', 'sasl' ] }
873 # @VncVencryptSubAuth:
875 # vnc sub authentication method with vencrypt.
877 # Since: 2.3
879 { 'enum': 'VncVencryptSubAuth',
880   'data': [ 'plain',
881             'tls-none',  'x509-none',
882             'tls-vnc',   'x509-vnc',
883             'tls-plain', 'x509-plain',
884             'tls-sasl',  'x509-sasl' ] }
887 # @VncInfo2:
889 # Information about a vnc server
891 # @id: vnc server name.
893 # @server: A list of @VncBasincInfo describing all listening sockets.
894 #          The list can be empty (in case the vnc server is disabled).
895 #          It also may have multiple entries: normal + websocket,
896 #          possibly also ipv4 + ipv6 in the future.
898 # @clients: A list of @VncClientInfo of all currently connected clients.
899 #           The list can be empty, for obvious reasons.
901 # @auth: The current authentication type used by the server
903 # @vencrypt: #optional The vencrypt sub authentication type used by the server,
904 #            only specified in case auth == vencrypt.
906 # @display: #optional The display device the vnc server is linked to.
908 # Since: 2.3
910 { 'struct': 'VncInfo2',
911   'data': { 'id'        : 'str',
912             'server'    : ['VncBasicInfo'],
913             'clients'   : ['VncClientInfo'],
914             'auth'      : 'VncPrimaryAuth',
915             '*vencrypt' : 'VncVencryptSubAuth',
916             '*display'  : 'str' } }
919 # @query-vnc:
921 # Returns information about the current VNC server
923 # Returns: @VncInfo
925 # Since: 0.14.0
927 { 'command': 'query-vnc', 'returns': 'VncInfo' }
930 # @query-vnc-servers:
932 # Returns a list of vnc servers.  The list can be empty.
934 # Returns: a list of @VncInfo2
936 # Since: 2.3
938 { 'command': 'query-vnc-servers', 'returns': ['VncInfo2'] }
941 # @SpiceBasicInfo
943 # The basic information for SPICE network connection
945 # @host: IP address
947 # @port: port number
949 # @family: address family
951 # Since: 2.1
953 { 'struct': 'SpiceBasicInfo',
954   'data': { 'host': 'str',
955             'port': 'str',
956             'family': 'NetworkAddressFamily' } }
959 # @SpiceServerInfo
961 # Information about a SPICE server
963 # @auth: #optional, authentication method
965 # Since: 2.1
967 { 'struct': 'SpiceServerInfo',
968   'base': 'SpiceBasicInfo',
969   'data': { '*auth': 'str' } }
972 # @SpiceChannel
974 # Information about a SPICE client channel.
976 # @connection-id: SPICE connection id number.  All channels with the same id
977 #                 belong to the same SPICE session.
979 # @channel-type: SPICE channel type number.  "1" is the main control
980 #                channel, filter for this one if you want to track spice
981 #                sessions only
983 # @channel-id: SPICE channel ID number.  Usually "0", might be different when
984 #              multiple channels of the same type exist, such as multiple
985 #              display channels in a multihead setup
987 # @tls: true if the channel is encrypted, false otherwise.
989 # Since: 0.14.0
991 { 'struct': 'SpiceChannel',
992   'base': 'SpiceBasicInfo',
993   'data': {'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int',
994            'tls': 'bool'} }
997 # @SpiceQueryMouseMode
999 # An enumeration of Spice mouse states.
1001 # @client: Mouse cursor position is determined by the client.
1003 # @server: Mouse cursor position is determined by the server.
1005 # @unknown: No information is available about mouse mode used by
1006 #           the spice server.
1008 # Note: spice/enums.h has a SpiceMouseMode already, hence the name.
1010 # Since: 1.1
1012 { 'enum': 'SpiceQueryMouseMode',
1013   'data': [ 'client', 'server', 'unknown' ] }
1016 # @SpiceInfo
1018 # Information about the SPICE session.
1020 # @enabled: true if the SPICE server is enabled, false otherwise
1022 # @migrated: true if the last guest migration completed and spice
1023 #            migration had completed as well. false otherwise.
1025 # @host: #optional The hostname the SPICE server is bound to.  This depends on
1026 #        the name resolution on the host and may be an IP address.
1028 # @port: #optional The SPICE server's port number.
1030 # @compiled-version: #optional SPICE server version.
1032 # @tls-port: #optional The SPICE server's TLS port number.
1034 # @auth: #optional the current authentication type used by the server
1035 #        'none'  if no authentication is being used
1036 #        'spice' uses SASL or direct TLS authentication, depending on command
1037 #                line options
1039 # @mouse-mode: The mode in which the mouse cursor is displayed currently. Can
1040 #              be determined by the client or the server, or unknown if spice
1041 #              server doesn't provide this information.
1043 #              Since: 1.1
1045 # @channels: a list of @SpiceChannel for each active spice channel
1047 # Since: 0.14.0
1049 { 'struct': 'SpiceInfo',
1050   'data': {'enabled': 'bool', 'migrated': 'bool', '*host': 'str', '*port': 'int',
1051            '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
1052            'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} }
1055 # @query-spice
1057 # Returns information about the current SPICE server
1059 # Returns: @SpiceInfo
1061 # Since: 0.14.0
1063 { 'command': 'query-spice', 'returns': 'SpiceInfo' }
1066 # @BalloonInfo:
1068 # Information about the guest balloon device.
1070 # @actual: the number of bytes the balloon currently contains
1072 # Since: 0.14.0
1075 { 'struct': 'BalloonInfo', 'data': {'actual': 'int' } }
1078 # @query-balloon:
1080 # Return information about the balloon device.
1082 # Returns: @BalloonInfo on success
1083 #          If the balloon driver is enabled but not functional because the KVM
1084 #          kernel module cannot support it, KvmMissingCap
1085 #          If no balloon device is present, DeviceNotActive
1087 # Since: 0.14.0
1089 { 'command': 'query-balloon', 'returns': 'BalloonInfo' }
1092 # @PciMemoryRange:
1094 # A PCI device memory region
1096 # @base: the starting address (guest physical)
1098 # @limit: the ending address (guest physical)
1100 # Since: 0.14.0
1102 { 'struct': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} }
1105 # @PciMemoryRegion
1107 # Information about a PCI device I/O region.
1109 # @bar: the index of the Base Address Register for this region
1111 # @type: 'io' if the region is a PIO region
1112 #        'memory' if the region is a MMIO region
1114 # @prefetch: #optional if @type is 'memory', true if the memory is prefetchable
1116 # @mem_type_64: #optional if @type is 'memory', true if the BAR is 64-bit
1118 # Since: 0.14.0
1120 { 'struct': 'PciMemoryRegion',
1121   'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int',
1122            '*prefetch': 'bool', '*mem_type_64': 'bool' } }
1125 # @PciBusInfo:
1127 # Information about a bus of a PCI Bridge device
1129 # @number: primary bus interface number.  This should be the number of the
1130 #          bus the device resides on.
1132 # @secondary: secondary bus interface number.  This is the number of the
1133 #             main bus for the bridge
1135 # @subordinate: This is the highest number bus that resides below the
1136 #               bridge.
1138 # @io_range: The PIO range for all devices on this bridge
1140 # @memory_range: The MMIO range for all devices on this bridge
1142 # @prefetchable_range: The range of prefetchable MMIO for all devices on
1143 #                      this bridge
1145 # Since: 2.4
1147 { 'struct': 'PciBusInfo',
1148   'data': {'number': 'int', 'secondary': 'int', 'subordinate': 'int',
1149            'io_range': 'PciMemoryRange',
1150            'memory_range': 'PciMemoryRange',
1151            'prefetchable_range': 'PciMemoryRange' } }
1154 # @PciBridgeInfo:
1156 # Information about a PCI Bridge device
1158 # @bus: information about the bus the device resides on
1160 # @devices: a list of @PciDeviceInfo for each device on this bridge
1162 # Since: 0.14.0
1164 { 'struct': 'PciBridgeInfo',
1165   'data': {'bus': 'PciBusInfo', '*devices': ['PciDeviceInfo']} }
1168 # @PciDeviceClass:
1170 # Information about the Class of a PCI device
1172 # @desc: #optional a string description of the device's class
1174 # @class: the class code of the device
1176 # Since: 2.4
1178 { 'struct': 'PciDeviceClass',
1179   'data': {'*desc': 'str', 'class': 'int'} }
1182 # @PciDeviceId:
1184 # Information about the Id of a PCI device
1186 # @device: the PCI device id
1188 # @vendor: the PCI vendor id
1190 # Since: 2.4
1192 { 'struct': 'PciDeviceId',
1193   'data': {'device': 'int', 'vendor': 'int'} }
1196 # @PciDeviceInfo:
1198 # Information about a PCI device
1200 # @bus: the bus number of the device
1202 # @slot: the slot the device is located in
1204 # @function: the function of the slot used by the device
1206 # @class_info: the class of the device
1208 # @id: the PCI device id
1210 # @irq: #optional if an IRQ is assigned to the device, the IRQ number
1212 # @qdev_id: the device name of the PCI device
1214 # @pci_bridge: if the device is a PCI bridge, the bridge information
1216 # @regions: a list of the PCI I/O regions associated with the device
1218 # Notes: the contents of @class_info.desc are not stable and should only be
1219 #        treated as informational.
1221 # Since: 0.14.0
1223 { 'struct': 'PciDeviceInfo',
1224   'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
1225            'class_info': 'PciDeviceClass', 'id': 'PciDeviceId',
1226            '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
1227            'regions': ['PciMemoryRegion']} }
1230 # @PciInfo:
1232 # Information about a PCI bus
1234 # @bus: the bus index
1236 # @devices: a list of devices on this bus
1238 # Since: 0.14.0
1240 { 'struct': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} }
1243 # @query-pci:
1245 # Return information about the PCI bus topology of the guest.
1247 # Returns: a list of @PciInfo for each PCI bus
1249 # Since: 0.14.0
1251 { 'command': 'query-pci', 'returns': ['PciInfo'] }
1254 # @quit:
1256 # This command will cause the QEMU process to exit gracefully.  While every
1257 # attempt is made to send the QMP response before terminating, this is not
1258 # guaranteed.  When using this interface, a premature EOF would not be
1259 # unexpected.
1261 # Since: 0.14.0
1263 { 'command': 'quit' }
1266 # @stop:
1268 # Stop all guest VCPU execution.
1270 # Since:  0.14.0
1272 # Notes:  This function will succeed even if the guest is already in the stopped
1273 #         state.  In "inmigrate" state, it will ensure that the guest
1274 #         remains paused once migration finishes, as if the -S option was
1275 #         passed on the command line.
1277 { 'command': 'stop' }
1280 # @system_reset:
1282 # Performs a hard reset of a guest.
1284 # Since: 0.14.0
1286 { 'command': 'system_reset' }
1289 # @system_powerdown:
1291 # Requests that a guest perform a powerdown operation.
1293 # Since: 0.14.0
1295 # Notes: A guest may or may not respond to this command.  This command
1296 #        returning does not indicate that a guest has accepted the request or
1297 #        that it has shut down.  Many guests will respond to this command by
1298 #        prompting the user in some way.
1300 { 'command': 'system_powerdown' }
1303 # @cpu:
1305 # This command is a nop that is only provided for the purposes of compatibility.
1307 # Since: 0.14.0
1309 # Notes: Do not use this command.
1311 { 'command': 'cpu', 'data': {'index': 'int'} }
1314 # @cpu-add
1316 # Adds CPU with specified ID
1318 # @id: ID of CPU to be created, valid values [0..max_cpus)
1320 # Returns: Nothing on success
1322 # Since 1.5
1324 { 'command': 'cpu-add', 'data': {'id': 'int'} }
1327 # @memsave:
1329 # Save a portion of guest memory to a file.
1331 # @val: the virtual address of the guest to start from
1333 # @size: the size of memory region to save
1335 # @filename: the file to save the memory to as binary data
1337 # @cpu-index: #optional the index of the virtual CPU to use for translating the
1338 #                       virtual address (defaults to CPU 0)
1340 # Returns: Nothing on success
1342 # Since: 0.14.0
1344 # Notes: Errors were not reliably returned until 1.1
1346 { 'command': 'memsave',
1347   'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
1350 # @pmemsave:
1352 # Save a portion of guest physical memory to a file.
1354 # @val: the physical address of the guest to start from
1356 # @size: the size of memory region to save
1358 # @filename: the file to save the memory to as binary data
1360 # Returns: Nothing on success
1362 # Since: 0.14.0
1364 # Notes: Errors were not reliably returned until 1.1
1366 { 'command': 'pmemsave',
1367   'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
1370 # @cont:
1372 # Resume guest VCPU execution.
1374 # Since:  0.14.0
1376 # Returns:  If successful, nothing
1377 #           If QEMU was started with an encrypted block device and a key has
1378 #              not yet been set, DeviceEncrypted.
1380 # Notes:  This command will succeed if the guest is currently running.  It
1381 #         will also succeed if the guest is in the "inmigrate" state; in
1382 #         this case, the effect of the command is to make sure the guest
1383 #         starts once migration finishes, removing the effect of the -S
1384 #         command line option if it was passed.
1386 { 'command': 'cont' }
1389 # @system_wakeup:
1391 # Wakeup guest from suspend.  Does nothing in case the guest isn't suspended.
1393 # Since:  1.1
1395 # Returns:  nothing.
1397 { 'command': 'system_wakeup' }
1400 # @inject-nmi:
1402 # Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or all CPUs (ppc64).
1404 # Returns:  If successful, nothing
1406 # Since:  0.14.0
1408 # Note: prior to 2.1, this command was only supported for x86 and s390 VMs
1410 { 'command': 'inject-nmi' }
1413 # @set_link:
1415 # Sets the link status of a virtual network adapter.
1417 # @name: the device name of the virtual network adapter
1419 # @up: true to set the link status to be up
1421 # Returns: Nothing on success
1422 #          If @name is not a valid network device, DeviceNotFound
1424 # Since: 0.14.0
1426 # Notes: Not all network adapters support setting link status.  This command
1427 #        will succeed even if the network adapter does not support link status
1428 #        notification.
1430 { 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} }
1433 # @balloon:
1435 # Request the balloon driver to change its balloon size.
1437 # @value: the target size of the balloon in bytes
1439 # Returns: Nothing on success
1440 #          If the balloon driver is enabled but not functional because the KVM
1441 #            kernel module cannot support it, KvmMissingCap
1442 #          If no balloon device is present, DeviceNotActive
1444 # Notes: This command just issues a request to the guest.  When it returns,
1445 #        the balloon size may not have changed.  A guest can change the balloon
1446 #        size independent of this command.
1448 # Since: 0.14.0
1450 { 'command': 'balloon', 'data': {'value': 'int'} }
1453 # @Abort
1455 # This action can be used to test transaction failure.
1457 # Since: 1.6
1459 { 'struct': 'Abort',
1460   'data': { } }
1463 # @TransactionAction
1465 # A discriminated record of operations that can be performed with
1466 # @transaction.
1468 # Since 1.1
1470 # drive-backup since 1.6
1471 # abort since 1.6
1472 # blockdev-snapshot-internal-sync since 1.7
1473 # blockdev-backup since 2.3
1475 { 'union': 'TransactionAction',
1476   'data': {
1477        'blockdev-snapshot-sync': 'BlockdevSnapshot',
1478        'drive-backup': 'DriveBackup',
1479        'blockdev-backup': 'BlockdevBackup',
1480        'abort': 'Abort',
1481        'blockdev-snapshot-internal-sync': 'BlockdevSnapshotInternal'
1482    } }
1485 # @transaction
1487 # Executes a number of transactionable QMP commands atomically. If any
1488 # operation fails, then the entire set of actions will be abandoned and the
1489 # appropriate error returned.
1491 #  List of:
1492 #  @TransactionAction: information needed for the respective operation
1494 # Returns: nothing on success
1495 #          Errors depend on the operations of the transaction
1497 # Note: The transaction aborts on the first failure.  Therefore, there will be
1498 # information on only one failed operation returned in an error condition, and
1499 # subsequent actions will not have been attempted.
1501 # Since 1.1
1503 { 'command': 'transaction',
1504   'data': { 'actions': [ 'TransactionAction' ] } }
1507 # @human-monitor-command:
1509 # Execute a command on the human monitor and return the output.
1511 # @command-line: the command to execute in the human monitor
1513 # @cpu-index: #optional The CPU to use for commands that require an implicit CPU
1515 # Returns: the output of the command as a string
1517 # Since: 0.14.0
1519 # Notes: This command only exists as a stop-gap.  Its use is highly
1520 #        discouraged.  The semantics of this command are not guaranteed.
1522 #        Known limitations:
1524 #        o This command is stateless, this means that commands that depend
1525 #          on state information (such as getfd) might not work
1527 #       o Commands that prompt the user for data (eg. 'cont' when the block
1528 #         device is encrypted) don't currently work
1530 { 'command': 'human-monitor-command',
1531   'data': {'command-line': 'str', '*cpu-index': 'int'},
1532   'returns': 'str' }
1535 # @migrate_cancel
1537 # Cancel the current executing migration process.
1539 # Returns: nothing on success
1541 # Notes: This command succeeds even if there is no migration process running.
1543 # Since: 0.14.0
1545 { 'command': 'migrate_cancel' }
1548 # @migrate_set_downtime
1550 # Set maximum tolerated downtime for migration.
1552 # @value: maximum downtime in seconds
1554 # Returns: nothing on success
1556 # Since: 0.14.0
1558 { 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
1561 # @migrate_set_speed
1563 # Set maximum speed for migration.
1565 # @value: maximum speed in bytes.
1567 # Returns: nothing on success
1569 # Notes: A value lesser than zero will be automatically round up to zero.
1571 # Since: 0.14.0
1573 { 'command': 'migrate_set_speed', 'data': {'value': 'int'} }
1576 # @migrate-set-cache-size
1578 # Set XBZRLE cache size
1580 # @value: cache size in bytes
1582 # The size will be rounded down to the nearest power of 2.
1583 # The cache size can be modified before and during ongoing migration
1585 # Returns: nothing on success
1587 # Since: 1.2
1589 { 'command': 'migrate-set-cache-size', 'data': {'value': 'int'} }
1592 # @query-migrate-cache-size
1594 # query XBZRLE cache size
1596 # Returns: XBZRLE cache size in bytes
1598 # Since: 1.2
1600 { 'command': 'query-migrate-cache-size', 'returns': 'int' }
1603 # @ObjectPropertyInfo:
1605 # @name: the name of the property
1607 # @type: the type of the property.  This will typically come in one of four
1608 #        forms:
1610 #        1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
1611 #           These types are mapped to the appropriate JSON type.
1613 #        2) A legacy type in the form 'legacy<subtype>' where subtype is the
1614 #           legacy qdev typename.  These types are always treated as strings.
1616 #        3) A child type in the form 'child<subtype>' where subtype is a qdev
1617 #           device type name.  Child properties create the composition tree.
1619 #        4) A link type in the form 'link<subtype>' where subtype is a qdev
1620 #           device type name.  Link properties form the device model graph.
1622 # Since: 1.2
1624 { 'struct': 'ObjectPropertyInfo',
1625   'data': { 'name': 'str', 'type': 'str' } }
1628 # @qom-list:
1630 # This command will list any properties of a object given a path in the object
1631 # model.
1633 # @path: the path within the object model.  See @qom-get for a description of
1634 #        this parameter.
1636 # Returns: a list of @ObjectPropertyInfo that describe the properties of the
1637 #          object.
1639 # Since: 1.2
1641 { 'command': 'qom-list',
1642   'data': { 'path': 'str' },
1643   'returns': [ 'ObjectPropertyInfo' ] }
1646 # @qom-get:
1648 # This command will get a property from a object model path and return the
1649 # value.
1651 # @path: The path within the object model.  There are two forms of supported
1652 #        paths--absolute and partial paths.
1654 #        Absolute paths are derived from the root object and can follow child<>
1655 #        or link<> properties.  Since they can follow link<> properties, they
1656 #        can be arbitrarily long.  Absolute paths look like absolute filenames
1657 #        and are prefixed  with a leading slash.
1659 #        Partial paths look like relative filenames.  They do not begin
1660 #        with a prefix.  The matching rules for partial paths are subtle but
1661 #        designed to make specifying objects easy.  At each level of the
1662 #        composition tree, the partial path is matched as an absolute path.
1663 #        The first match is not returned.  At least two matches are searched
1664 #        for.  A successful result is only returned if only one match is
1665 #        found.  If more than one match is found, a flag is return to
1666 #        indicate that the match was ambiguous.
1668 # @property: The property name to read
1670 # Returns: The property value.  The type depends on the property type.  legacy<>
1671 #          properties are returned as #str.  child<> and link<> properties are
1672 #          returns as #str pathnames.  All integer property types (u8, u16, etc)
1673 #          are returned as #int.
1675 # Since: 1.2
1677 { 'command': 'qom-get',
1678   'data': { 'path': 'str', 'property': 'str' },
1679   'returns': '**',
1680   'gen': false }
1683 # @qom-set:
1685 # This command will set a property from a object model path.
1687 # @path: see @qom-get for a description of this parameter
1689 # @property: the property name to set
1691 # @value: a value who's type is appropriate for the property type.  See @qom-get
1692 #         for a description of type mapping.
1694 # Since: 1.2
1696 { 'command': 'qom-set',
1697   'data': { 'path': 'str', 'property': 'str', 'value': '**' },
1698   'gen': false }
1701 # @set_password:
1703 # Sets the password of a remote display session.
1705 # @protocol: `vnc' to modify the VNC server password
1706 #            `spice' to modify the Spice server password
1708 # @password: the new password
1710 # @connected: #optional how to handle existing clients when changing the
1711 #                       password.  If nothing is specified, defaults to `keep'
1712 #                       `fail' to fail the command if clients are connected
1713 #                       `disconnect' to disconnect existing clients
1714 #                       `keep' to maintain existing clients
1716 # Returns: Nothing on success
1717 #          If Spice is not enabled, DeviceNotFound
1719 # Since: 0.14.0
1721 { 'command': 'set_password',
1722   'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} }
1725 # @expire_password:
1727 # Expire the password of a remote display server.
1729 # @protocol: the name of the remote display protocol `vnc' or `spice'
1731 # @time: when to expire the password.
1732 #        `now' to expire the password immediately
1733 #        `never' to cancel password expiration
1734 #        `+INT' where INT is the number of seconds from now (integer)
1735 #        `INT' where INT is the absolute time in seconds
1737 # Returns: Nothing on success
1738 #          If @protocol is `spice' and Spice is not active, DeviceNotFound
1740 # Since: 0.14.0
1742 # Notes: Time is relative to the server and currently there is no way to
1743 #        coordinate server time with client time.  It is not recommended to
1744 #        use the absolute time version of the @time parameter unless you're
1745 #        sure you are on the same machine as the QEMU instance.
1747 { 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} }
1750 # @change-vnc-password:
1752 # Change the VNC server password.
1754 # @password:  the new password to use with VNC authentication
1756 # Since: 1.1
1758 # Notes:  An empty password in this command will set the password to the empty
1759 #         string.  Existing clients are unaffected by executing this command.
1761 { 'command': 'change-vnc-password', 'data': {'password': 'str'} }
1764 # @change:
1766 # This command is multiple commands multiplexed together.
1768 # @device: This is normally the name of a block device but it may also be 'vnc'.
1769 #          when it's 'vnc', then sub command depends on @target
1771 # @target: If @device is a block device, then this is the new filename.
1772 #          If @device is 'vnc', then if the value 'password' selects the vnc
1773 #          change password command.   Otherwise, this specifies a new server URI
1774 #          address to listen to for VNC connections.
1776 # @arg:    If @device is a block device, then this is an optional format to open
1777 #          the device with.
1778 #          If @device is 'vnc' and @target is 'password', this is the new VNC
1779 #          password to set.  If this argument is an empty string, then no future
1780 #          logins will be allowed.
1782 # Returns: Nothing on success.
1783 #          If @device is not a valid block device, DeviceNotFound
1784 #          If the new block device is encrypted, DeviceEncrypted.  Note that
1785 #          if this error is returned, the device has been opened successfully
1786 #          and an additional call to @block_passwd is required to set the
1787 #          device's password.  The behavior of reads and writes to the block
1788 #          device between when these calls are executed is undefined.
1790 # Notes:  It is strongly recommended that this interface is not used especially
1791 #         for changing block devices.
1793 # Since: 0.14.0
1795 { 'command': 'change',
1796   'data': {'device': 'str', 'target': 'str', '*arg': 'str'} }
1799 # @ObjectTypeInfo:
1801 # This structure describes a search result from @qom-list-types
1803 # @name: the type name found in the search
1805 # Since: 1.1
1807 # Notes: This command is experimental and may change syntax in future releases.
1809 { 'struct': 'ObjectTypeInfo',
1810   'data': { 'name': 'str' } }
1813 # @qom-list-types:
1815 # This command will return a list of types given search parameters
1817 # @implements: if specified, only return types that implement this type name
1819 # @abstract: if true, include abstract types in the results
1821 # Returns: a list of @ObjectTypeInfo or an empty list if no results are found
1823 # Since: 1.1
1825 { 'command': 'qom-list-types',
1826   'data': { '*implements': 'str', '*abstract': 'bool' },
1827   'returns': [ 'ObjectTypeInfo' ] }
1830 # @DevicePropertyInfo:
1832 # Information about device properties.
1834 # @name: the name of the property
1835 # @type: the typename of the property
1836 # @description: #optional if specified, the description of the property.
1837 #               (since 2.2)
1839 # Since: 1.2
1841 { 'struct': 'DevicePropertyInfo',
1842   'data': { 'name': 'str', 'type': 'str', '*description': 'str' } }
1845 # @device-list-properties:
1847 # List properties associated with a device.
1849 # @typename: the type name of a device
1851 # Returns: a list of DevicePropertyInfo describing a devices properties
1853 # Since: 1.2
1855 { 'command': 'device-list-properties',
1856   'data': { 'typename': 'str'},
1857   'returns': [ 'DevicePropertyInfo' ] }
1860 # @migrate
1862 # Migrates the current running guest to another Virtual Machine.
1864 # @uri: the Uniform Resource Identifier of the destination VM
1866 # @blk: #optional do block migration (full disk copy)
1868 # @inc: #optional incremental disk copy migration
1870 # @detach: this argument exists only for compatibility reasons and
1871 #          is ignored by QEMU
1873 # Returns: nothing on success
1875 # Since: 0.14.0
1877 { 'command': 'migrate',
1878   'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
1881 # @migrate-incoming
1883 # Start an incoming migration, the qemu must have been started
1884 # with -incoming defer
1886 # @uri: The Uniform Resource Identifier identifying the source or
1887 #       address to listen on
1889 # Returns: nothing on success
1891 # Since: 2.3
1892 # Note: It's a bad idea to use a string for the uri, but it needs to stay
1893 # compatible with -incoming and the format of the uri is already exposed
1894 # above libvirt
1896 { 'command': 'migrate-incoming', 'data': {'uri': 'str' } }
1898 # @xen-save-devices-state:
1900 # Save the state of all devices to file. The RAM and the block devices
1901 # of the VM are not saved by this command.
1903 # @filename: the file to save the state of the devices to as binary
1904 # data. See xen-save-devices-state.txt for a description of the binary
1905 # format.
1907 # Returns: Nothing on success
1909 # Since: 1.1
1911 { 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} }
1914 # @xen-set-global-dirty-log
1916 # Enable or disable the global dirty log mode.
1918 # @enable: true to enable, false to disable.
1920 # Returns: nothing
1922 # Since: 1.3
1924 { 'command': 'xen-set-global-dirty-log', 'data': { 'enable': 'bool' } }
1927 # @device_del:
1929 # Remove a device from a guest
1931 # @id: the name of the device
1933 # Returns: Nothing on success
1934 #          If @id is not a valid device, DeviceNotFound
1936 # Notes: When this command completes, the device may not be removed from the
1937 #        guest.  Hot removal is an operation that requires guest cooperation.
1938 #        This command merely requests that the guest begin the hot removal
1939 #        process.  Completion of the device removal process is signaled with a
1940 #        DEVICE_DELETED event. Guest reset will automatically complete removal
1941 #        for all devices.
1943 # Since: 0.14.0
1945 { 'command': 'device_del', 'data': {'id': 'str'} }
1948 # @DumpGuestMemoryFormat:
1950 # An enumeration of guest-memory-dump's format.
1952 # @elf: elf format
1954 # @kdump-zlib: kdump-compressed format with zlib-compressed
1956 # @kdump-lzo: kdump-compressed format with lzo-compressed
1958 # @kdump-snappy: kdump-compressed format with snappy-compressed
1960 # Since: 2.0
1962 { 'enum': 'DumpGuestMemoryFormat',
1963   'data': [ 'elf', 'kdump-zlib', 'kdump-lzo', 'kdump-snappy' ] }
1966 # @dump-guest-memory
1968 # Dump guest's memory to vmcore. It is a synchronous operation that can take
1969 # very long depending on the amount of guest memory. This command is only
1970 # supported on i386 and x86_64.
1972 # @paging: if true, do paging to get guest's memory mapping. This allows
1973 #          using gdb to process the core file.
1975 #          IMPORTANT: this option can make QEMU allocate several gigabytes
1976 #                     of RAM. This can happen for a large guest, or a
1977 #                     malicious guest pretending to be large.
1979 #          Also, paging=true has the following limitations:
1981 #             1. The guest may be in a catastrophic state or can have corrupted
1982 #                memory, which cannot be trusted
1983 #             2. The guest can be in real-mode even if paging is enabled. For
1984 #                example, the guest uses ACPI to sleep, and ACPI sleep state
1985 #                goes in real-mode
1987 # @protocol: the filename or file descriptor of the vmcore. The supported
1988 #            protocols are:
1990 #            1. file: the protocol starts with "file:", and the following
1991 #               string is the file's path.
1992 #            2. fd: the protocol starts with "fd:", and the following string
1993 #               is the fd's name.
1995 # @begin: #optional if specified, the starting physical address.
1997 # @length: #optional if specified, the memory size, in bytes. If you don't
1998 #          want to dump all guest's memory, please specify the start @begin
1999 #          and @length
2001 # @format: #optional if specified, the format of guest memory dump. But non-elf
2002 #          format is conflict with paging and filter, ie. @paging, @begin and
2003 #          @length is not allowed to be specified with non-elf @format at the
2004 #          same time (since 2.0)
2006 # Returns: nothing on success
2008 # Since: 1.2
2010 { 'command': 'dump-guest-memory',
2011   'data': { 'paging': 'bool', 'protocol': 'str', '*begin': 'int',
2012             '*length': 'int', '*format': 'DumpGuestMemoryFormat' } }
2015 # @DumpGuestMemoryCapability:
2017 # A list of the available formats for dump-guest-memory
2019 # Since: 2.0
2021 { 'struct': 'DumpGuestMemoryCapability',
2022   'data': {
2023       'formats': ['DumpGuestMemoryFormat'] } }
2026 # @query-dump-guest-memory-capability:
2028 # Returns the available formats for dump-guest-memory
2030 # Returns:  A @DumpGuestMemoryCapability object listing available formats for
2031 #           dump-guest-memory
2033 # Since: 2.0
2035 { 'command': 'query-dump-guest-memory-capability',
2036   'returns': 'DumpGuestMemoryCapability' }
2039 # @netdev_add:
2041 # Add a network backend.
2043 # @type: the type of network backend.  Current valid values are 'user', 'tap',
2044 #        'vde', 'socket', 'dump' and 'bridge'
2046 # @id: the name of the new network backend
2048 # @props: #optional a list of properties to be passed to the backend in
2049 #         the format 'name=value', like 'ifname=tap0,script=no'
2051 # Notes: The semantics of @props is not well defined.  Future commands will be
2052 #        introduced that provide stronger typing for backend creation.
2054 # Since: 0.14.0
2056 # Returns: Nothing on success
2057 #          If @type is not a valid network backend, DeviceNotFound
2059 { 'command': 'netdev_add',
2060   'data': {'type': 'str', 'id': 'str', '*props': '**'},
2061   'gen': false }
2064 # @netdev_del:
2066 # Remove a network backend.
2068 # @id: the name of the network backend to remove
2070 # Returns: Nothing on success
2071 #          If @id is not a valid network backend, DeviceNotFound
2073 # Since: 0.14.0
2075 { 'command': 'netdev_del', 'data': {'id': 'str'} }
2078 # @object-add:
2080 # Create a QOM object.
2082 # @qom-type: the class name for the object to be created
2084 # @id: the name of the new object
2086 # @props: #optional a dictionary of properties to be passed to the backend
2088 # Returns: Nothing on success
2089 #          Error if @qom-type is not a valid class name
2091 # Since: 2.0
2093 { 'command': 'object-add',
2094   'data': {'qom-type': 'str', 'id': 'str', '*props': '**'},
2095   'gen': false }
2098 # @object-del:
2100 # Remove a QOM object.
2102 # @id: the name of the QOM object to remove
2104 # Returns: Nothing on success
2105 #          Error if @id is not a valid id for a QOM object
2107 # Since: 2.0
2109 { 'command': 'object-del', 'data': {'id': 'str'} }
2112 # @NetdevNoneOptions
2114 # Use it alone to have zero network devices.
2116 # Since 1.2
2118 { 'struct': 'NetdevNoneOptions',
2119   'data': { } }
2122 # @NetLegacyNicOptions
2124 # Create a new Network Interface Card.
2126 # @netdev: #optional id of -netdev to connect to
2128 # @macaddr: #optional MAC address
2130 # @model: #optional device model (e1000, rtl8139, virtio etc.)
2132 # @addr: #optional PCI device address
2134 # @vectors: #optional number of MSI-x vectors, 0 to disable MSI-X
2136 # Since 1.2
2138 { 'struct': 'NetLegacyNicOptions',
2139   'data': {
2140     '*netdev':  'str',
2141     '*macaddr': 'str',
2142     '*model':   'str',
2143     '*addr':    'str',
2144     '*vectors': 'uint32' } }
2147 # @String
2149 # A fat type wrapping 'str', to be embedded in lists.
2151 # Since 1.2
2153 { 'struct': 'String',
2154   'data': {
2155     'str': 'str' } }
2158 # @NetdevUserOptions
2160 # Use the user mode network stack which requires no administrator privilege to
2161 # run.
2163 # @hostname: #optional client hostname reported by the builtin DHCP server
2165 # @restrict: #optional isolate the guest from the host
2167 # @ip: #optional legacy parameter, use net= instead
2169 # @net: #optional IP address and optional netmask
2171 # @host: #optional guest-visible address of the host
2173 # @tftp: #optional root directory of the built-in TFTP server
2175 # @bootfile: #optional BOOTP filename, for use with tftp=
2177 # @dhcpstart: #optional the first of the 16 IPs the built-in DHCP server can
2178 #             assign
2180 # @dns: #optional guest-visible address of the virtual nameserver
2182 # @dnssearch: #optional list of DNS suffixes to search, passed as DHCP option
2183 #             to the guest
2185 # @smb: #optional root directory of the built-in SMB server
2187 # @smbserver: #optional IP address of the built-in SMB server
2189 # @hostfwd: #optional redirect incoming TCP or UDP host connections to guest
2190 #           endpoints
2192 # @guestfwd: #optional forward guest TCP connections
2194 # Since 1.2
2196 { 'struct': 'NetdevUserOptions',
2197   'data': {
2198     '*hostname':  'str',
2199     '*restrict':  'bool',
2200     '*ip':        'str',
2201     '*net':       'str',
2202     '*host':      'str',
2203     '*tftp':      'str',
2204     '*bootfile':  'str',
2205     '*dhcpstart': 'str',
2206     '*dns':       'str',
2207     '*dnssearch': ['String'],
2208     '*smb':       'str',
2209     '*smbserver': 'str',
2210     '*hostfwd':   ['String'],
2211     '*guestfwd':  ['String'] } }
2214 # @NetdevTapOptions
2216 # Connect the host TAP network interface name to the VLAN.
2218 # @ifname: #optional interface name
2220 # @fd: #optional file descriptor of an already opened tap
2222 # @fds: #optional multiple file descriptors of already opened multiqueue capable
2223 # tap
2225 # @script: #optional script to initialize the interface
2227 # @downscript: #optional script to shut down the interface
2229 # @helper: #optional command to execute to configure bridge
2231 # @sndbuf: #optional send buffer limit. Understands [TGMKkb] suffixes.
2233 # @vnet_hdr: #optional enable the IFF_VNET_HDR flag on the tap interface
2235 # @vhost: #optional enable vhost-net network accelerator
2237 # @vhostfd: #optional file descriptor of an already opened vhost net device
2239 # @vhostfds: #optional file descriptors of multiple already opened vhost net
2240 # devices
2242 # @vhostforce: #optional vhost on for non-MSIX virtio guests
2244 # @queues: #optional number of queues to be created for multiqueue capable tap
2246 # Since 1.2
2248 { 'struct': 'NetdevTapOptions',
2249   'data': {
2250     '*ifname':     'str',
2251     '*fd':         'str',
2252     '*fds':        'str',
2253     '*script':     'str',
2254     '*downscript': 'str',
2255     '*helper':     'str',
2256     '*sndbuf':     'size',
2257     '*vnet_hdr':   'bool',
2258     '*vhost':      'bool',
2259     '*vhostfd':    'str',
2260     '*vhostfds':   'str',
2261     '*vhostforce': 'bool',
2262     '*queues':     'uint32'} }
2265 # @NetdevSocketOptions
2267 # Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP
2268 # socket connection.
2270 # @fd: #optional file descriptor of an already opened socket
2272 # @listen: #optional port number, and optional hostname, to listen on
2274 # @connect: #optional port number, and optional hostname, to connect to
2276 # @mcast: #optional UDP multicast address and port number
2278 # @localaddr: #optional source address and port for multicast and udp packets
2280 # @udp: #optional UDP unicast address and port number
2282 # Since 1.2
2284 { 'struct': 'NetdevSocketOptions',
2285   'data': {
2286     '*fd':        'str',
2287     '*listen':    'str',
2288     '*connect':   'str',
2289     '*mcast':     'str',
2290     '*localaddr': 'str',
2291     '*udp':       'str' } }
2294 # @NetdevL2TPv3Options
2296 # Connect the VLAN to Ethernet over L2TPv3 Static tunnel
2298 # @src: source address
2300 # @dst: destination address
2302 # @srcport: #optional source port - mandatory for udp, optional for ip
2304 # @dstport: #optional destination port - mandatory for udp, optional for ip
2306 # @ipv6: #optional - force the use of ipv6
2308 # @udp: #optional - use the udp version of l2tpv3 encapsulation
2310 # @cookie64: #optional - use 64 bit coookies
2312 # @counter: #optional have sequence counter
2314 # @pincounter: #optional pin sequence counter to zero -
2315 #              workaround for buggy implementations or
2316 #              networks with packet reorder
2318 # @txcookie: #optional 32 or 64 bit transmit cookie
2320 # @rxcookie: #optional 32 or 64 bit receive cookie
2322 # @txsession: 32 bit transmit session
2324 # @rxsession: #optional 32 bit receive session - if not specified
2325 #             set to the same value as transmit
2327 # @offset: #optional additional offset - allows the insertion of
2328 #          additional application-specific data before the packet payload
2330 # Since 2.1
2332 { 'struct': 'NetdevL2TPv3Options',
2333   'data': {
2334     'src':          'str',
2335     'dst':          'str',
2336     '*srcport':     'str',
2337     '*dstport':     'str',
2338     '*ipv6':        'bool',
2339     '*udp':         'bool',
2340     '*cookie64':    'bool',
2341     '*counter':     'bool',
2342     '*pincounter':  'bool',
2343     '*txcookie':    'uint64',
2344     '*rxcookie':    'uint64',
2345     'txsession':    'uint32',
2346     '*rxsession':   'uint32',
2347     '*offset':      'uint32' } }
2350 # @NetdevVdeOptions
2352 # Connect the VLAN to a vde switch running on the host.
2354 # @sock: #optional socket path
2356 # @port: #optional port number
2358 # @group: #optional group owner of socket
2360 # @mode: #optional permissions for socket
2362 # Since 1.2
2364 { 'struct': 'NetdevVdeOptions',
2365   'data': {
2366     '*sock':  'str',
2367     '*port':  'uint16',
2368     '*group': 'str',
2369     '*mode':  'uint16' } }
2372 # @NetdevDumpOptions
2374 # Dump VLAN network traffic to a file.
2376 # @len: #optional per-packet size limit (64k default). Understands [TGMKkb]
2377 # suffixes.
2379 # @file: #optional dump file path (default is qemu-vlan0.pcap)
2381 # Since 1.2
2383 { 'struct': 'NetdevDumpOptions',
2384   'data': {
2385     '*len':  'size',
2386     '*file': 'str' } }
2389 # @NetdevBridgeOptions
2391 # Connect a host TAP network interface to a host bridge device.
2393 # @br: #optional bridge name
2395 # @helper: #optional command to execute to configure bridge
2397 # Since 1.2
2399 { 'struct': 'NetdevBridgeOptions',
2400   'data': {
2401     '*br':     'str',
2402     '*helper': 'str' } }
2405 # @NetdevHubPortOptions
2407 # Connect two or more net clients through a software hub.
2409 # @hubid: hub identifier number
2411 # Since 1.2
2413 { 'struct': 'NetdevHubPortOptions',
2414   'data': {
2415     'hubid':     'int32' } }
2418 # @NetdevNetmapOptions
2420 # Connect a client to a netmap-enabled NIC or to a VALE switch port
2422 # @ifname: Either the name of an existing network interface supported by
2423 #          netmap, or the name of a VALE port (created on the fly).
2424 #          A VALE port name is in the form 'valeXXX:YYY', where XXX and
2425 #          YYY are non-negative integers. XXX identifies a switch and
2426 #          YYY identifies a port of the switch. VALE ports having the
2427 #          same XXX are therefore connected to the same switch.
2429 # @devname: #optional path of the netmap device (default: '/dev/netmap').
2431 # Since 2.0
2433 { 'struct': 'NetdevNetmapOptions',
2434   'data': {
2435     'ifname':     'str',
2436     '*devname':    'str' } }
2439 # @NetdevVhostUserOptions
2441 # Vhost-user network backend
2443 # @chardev: name of a unix socket chardev
2445 # @vhostforce: #optional vhost on for non-MSIX virtio guests (default: false).
2447 # Since 2.1
2449 { 'struct': 'NetdevVhostUserOptions',
2450   'data': {
2451     'chardev':        'str',
2452     '*vhostforce':    'bool' } }
2455 # @NetClientOptions
2457 # A discriminated record of network device traits.
2459 # Since 1.2
2461 # 'l2tpv3' - since 2.1
2464 { 'union': 'NetClientOptions',
2465   'data': {
2466     'none':     'NetdevNoneOptions',
2467     'nic':      'NetLegacyNicOptions',
2468     'user':     'NetdevUserOptions',
2469     'tap':      'NetdevTapOptions',
2470     'l2tpv3':   'NetdevL2TPv3Options',
2471     'socket':   'NetdevSocketOptions',
2472     'vde':      'NetdevVdeOptions',
2473     'dump':     'NetdevDumpOptions',
2474     'bridge':   'NetdevBridgeOptions',
2475     'hubport':  'NetdevHubPortOptions',
2476     'netmap':   'NetdevNetmapOptions',
2477     'vhost-user': 'NetdevVhostUserOptions' } }
2480 # @NetLegacy
2482 # Captures the configuration of a network device; legacy.
2484 # @vlan: #optional vlan number
2486 # @id: #optional identifier for monitor commands
2488 # @name: #optional identifier for monitor commands, ignored if @id is present
2490 # @opts: device type specific properties (legacy)
2492 # Since 1.2
2494 { 'struct': 'NetLegacy',
2495   'data': {
2496     '*vlan': 'int32',
2497     '*id':   'str',
2498     '*name': 'str',
2499     'opts':  'NetClientOptions' } }
2502 # @Netdev
2504 # Captures the configuration of a network device.
2506 # @id: identifier for monitor commands.
2508 # @opts: device type specific properties
2510 # Since 1.2
2512 { 'struct': 'Netdev',
2513   'data': {
2514     'id':   'str',
2515     'opts': 'NetClientOptions' } }
2518 # @InetSocketAddress
2520 # Captures a socket address or address range in the Internet namespace.
2522 # @host: host part of the address
2524 # @port: port part of the address, or lowest port if @to is present
2526 # @to: highest port to try
2528 # @ipv4: whether to accept IPv4 addresses, default try both IPv4 and IPv6
2529 #        #optional
2531 # @ipv6: whether to accept IPv6 addresses, default try both IPv4 and IPv6
2532 #        #optional
2534 # Since 1.3
2536 { 'struct': 'InetSocketAddress',
2537   'data': {
2538     'host': 'str',
2539     'port': 'str',
2540     '*to': 'uint16',
2541     '*ipv4': 'bool',
2542     '*ipv6': 'bool' } }
2545 # @UnixSocketAddress
2547 # Captures a socket address in the local ("Unix socket") namespace.
2549 # @path: filesystem path to use
2551 # Since 1.3
2553 { 'struct': 'UnixSocketAddress',
2554   'data': {
2555     'path': 'str' } }
2558 # @SocketAddress
2560 # Captures the address of a socket, which could also be a named file descriptor
2562 # Since 1.3
2564 { 'union': 'SocketAddress',
2565   'data': {
2566     'inet': 'InetSocketAddress',
2567     'unix': 'UnixSocketAddress',
2568     'fd': 'String' } }
2571 # @getfd:
2573 # Receive a file descriptor via SCM rights and assign it a name
2575 # @fdname: file descriptor name
2577 # Returns: Nothing on success
2579 # Since: 0.14.0
2581 # Notes: If @fdname already exists, the file descriptor assigned to
2582 #        it will be closed and replaced by the received file
2583 #        descriptor.
2584 #        The 'closefd' command can be used to explicitly close the
2585 #        file descriptor when it is no longer needed.
2587 { 'command': 'getfd', 'data': {'fdname': 'str'} }
2590 # @closefd:
2592 # Close a file descriptor previously passed via SCM rights
2594 # @fdname: file descriptor name
2596 # Returns: Nothing on success
2598 # Since: 0.14.0
2600 { 'command': 'closefd', 'data': {'fdname': 'str'} }
2603 # @MachineInfo:
2605 # Information describing a machine.
2607 # @name: the name of the machine
2609 # @alias: #optional an alias for the machine name
2611 # @default: #optional whether the machine is default
2613 # @cpu-max: maximum number of CPUs supported by the machine type
2614 #           (since 1.5.0)
2616 # Since: 1.2.0
2618 { 'struct': 'MachineInfo',
2619   'data': { 'name': 'str', '*alias': 'str',
2620             '*is-default': 'bool', 'cpu-max': 'int' } }
2623 # @query-machines:
2625 # Return a list of supported machines
2627 # Returns: a list of MachineInfo
2629 # Since: 1.2.0
2631 { 'command': 'query-machines', 'returns': ['MachineInfo'] }
2634 # @CpuDefinitionInfo:
2636 # Virtual CPU definition.
2638 # @name: the name of the CPU definition
2640 # Since: 1.2.0
2642 { 'struct': 'CpuDefinitionInfo',
2643   'data': { 'name': 'str' } }
2646 # @query-cpu-definitions:
2648 # Return a list of supported virtual CPU definitions
2650 # Returns: a list of CpuDefInfo
2652 # Since: 1.2.0
2654 { 'command': 'query-cpu-definitions', 'returns': ['CpuDefinitionInfo'] }
2656 # @AddfdInfo:
2658 # Information about a file descriptor that was added to an fd set.
2660 # @fdset-id: The ID of the fd set that @fd was added to.
2662 # @fd: The file descriptor that was received via SCM rights and
2663 #      added to the fd set.
2665 # Since: 1.2.0
2667 { 'struct': 'AddfdInfo', 'data': {'fdset-id': 'int', 'fd': 'int'} }
2670 # @add-fd:
2672 # Add a file descriptor, that was passed via SCM rights, to an fd set.
2674 # @fdset-id: #optional The ID of the fd set to add the file descriptor to.
2676 # @opaque: #optional A free-form string that can be used to describe the fd.
2678 # Returns: @AddfdInfo on success
2679 #          If file descriptor was not received, FdNotSupplied
2680 #          If @fdset-id is a negative value, InvalidParameterValue
2682 # Notes: The list of fd sets is shared by all monitor connections.
2684 #        If @fdset-id is not specified, a new fd set will be created.
2686 # Since: 1.2.0
2688 { 'command': 'add-fd', 'data': {'*fdset-id': 'int', '*opaque': 'str'},
2689   'returns': 'AddfdInfo' }
2692 # @remove-fd:
2694 # Remove a file descriptor from an fd set.
2696 # @fdset-id: The ID of the fd set that the file descriptor belongs to.
2698 # @fd: #optional The file descriptor that is to be removed.
2700 # Returns: Nothing on success
2701 #          If @fdset-id or @fd is not found, FdNotFound
2703 # Since: 1.2.0
2705 # Notes: The list of fd sets is shared by all monitor connections.
2707 #        If @fd is not specified, all file descriptors in @fdset-id
2708 #        will be removed.
2710 { 'command': 'remove-fd', 'data': {'fdset-id': 'int', '*fd': 'int'} }
2713 # @FdsetFdInfo:
2715 # Information about a file descriptor that belongs to an fd set.
2717 # @fd: The file descriptor value.
2719 # @opaque: #optional A free-form string that can be used to describe the fd.
2721 # Since: 1.2.0
2723 { 'struct': 'FdsetFdInfo',
2724   'data': {'fd': 'int', '*opaque': 'str'} }
2727 # @FdsetInfo:
2729 # Information about an fd set.
2731 # @fdset-id: The ID of the fd set.
2733 # @fds: A list of file descriptors that belong to this fd set.
2735 # Since: 1.2.0
2737 { 'struct': 'FdsetInfo',
2738   'data': {'fdset-id': 'int', 'fds': ['FdsetFdInfo']} }
2741 # @query-fdsets:
2743 # Return information describing all fd sets.
2745 # Returns: A list of @FdsetInfo
2747 # Since: 1.2.0
2749 # Note: The list of fd sets is shared by all monitor connections.
2752 { 'command': 'query-fdsets', 'returns': ['FdsetInfo'] }
2755 # @TargetInfo:
2757 # Information describing the QEMU target.
2759 # @arch: the target architecture (eg "x86_64", "i386", etc)
2761 # Since: 1.2.0
2763 { 'struct': 'TargetInfo',
2764   'data': { 'arch': 'str' } }
2767 # @query-target:
2769 # Return information about the target for this QEMU
2771 # Returns: TargetInfo
2773 # Since: 1.2.0
2775 { 'command': 'query-target', 'returns': 'TargetInfo' }
2778 # @QKeyCode:
2780 # An enumeration of key name.
2782 # This is used by the send-key command.
2784 # Since: 1.3.0
2786 # 'unmapped' and 'pause' since 2.0
2788 { 'enum': 'QKeyCode',
2789   'data': [ 'unmapped',
2790             'shift', 'shift_r', 'alt', 'alt_r', 'altgr', 'altgr_r', 'ctrl',
2791             'ctrl_r', 'menu', 'esc', '1', '2', '3', '4', '5', '6', '7', '8',
2792             '9', '0', 'minus', 'equal', 'backspace', 'tab', 'q', 'w', 'e',
2793             'r', 't', 'y', 'u', 'i', 'o', 'p', 'bracket_left', 'bracket_right',
2794             'ret', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'semicolon',
2795             'apostrophe', 'grave_accent', 'backslash', 'z', 'x', 'c', 'v', 'b',
2796             'n', 'm', 'comma', 'dot', 'slash', 'asterisk', 'spc', 'caps_lock',
2797             'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'f10',
2798             'num_lock', 'scroll_lock', 'kp_divide', 'kp_multiply',
2799             'kp_subtract', 'kp_add', 'kp_enter', 'kp_decimal', 'sysrq', 'kp_0',
2800             'kp_1', 'kp_2', 'kp_3', 'kp_4', 'kp_5', 'kp_6', 'kp_7', 'kp_8',
2801             'kp_9', 'less', 'f11', 'f12', 'print', 'home', 'pgup', 'pgdn', 'end',
2802             'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again',
2803             'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut',
2804              'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause' ] }
2807 # @KeyValue
2809 # Represents a keyboard key.
2811 # Since: 1.3.0
2813 { 'union': 'KeyValue',
2814   'data': {
2815     'number': 'int',
2816     'qcode': 'QKeyCode' } }
2819 # @send-key:
2821 # Send keys to guest.
2823 # @keys: An array of @KeyValue elements. All @KeyValues in this array are
2824 #        simultaneously sent to the guest. A @KeyValue.number value is sent
2825 #        directly to the guest, while @KeyValue.qcode must be a valid
2826 #        @QKeyCode value
2828 # @hold-time: #optional time to delay key up events, milliseconds. Defaults
2829 #             to 100
2831 # Returns: Nothing on success
2832 #          If key is unknown or redundant, InvalidParameter
2834 # Since: 1.3.0
2837 { 'command': 'send-key',
2838   'data': { 'keys': ['KeyValue'], '*hold-time': 'int' } }
2841 # @screendump:
2843 # Write a PPM of the VGA screen to a file.
2845 # @filename: the path of a new PPM file to store the image
2847 # Returns: Nothing on success
2849 # Since: 0.14.0
2851 { 'command': 'screendump', 'data': {'filename': 'str'} }
2854 # @ChardevFile:
2856 # Configuration info for file chardevs.
2858 # @in:  #optional The name of the input file
2859 # @out: The name of the output file
2861 # Since: 1.4
2863 { 'struct': 'ChardevFile', 'data': { '*in' : 'str',
2864                                    'out' : 'str' } }
2867 # @ChardevHostdev:
2869 # Configuration info for device and pipe chardevs.
2871 # @device: The name of the special file for the device,
2872 #          i.e. /dev/ttyS0 on Unix or COM1: on Windows
2873 # @type: What kind of device this is.
2875 # Since: 1.4
2877 { 'struct': 'ChardevHostdev', 'data': { 'device' : 'str' } }
2880 # @ChardevSocket:
2882 # Configuration info for (stream) socket chardevs.
2884 # @addr: socket address to listen on (server=true)
2885 #        or connect to (server=false)
2886 # @server: #optional create server socket (default: true)
2887 # @wait: #optional wait for incoming connection on server
2888 #        sockets (default: false).
2889 # @nodelay: #optional set TCP_NODELAY socket option (default: false)
2890 # @telnet: #optional enable telnet protocol on server
2891 #          sockets (default: false)
2892 # @reconnect: #optional For a client socket, if a socket is disconnected,
2893 #          then attempt a reconnect after the given number of seconds.
2894 #          Setting this to zero disables this function. (default: 0)
2895 #          (Since: 2.2)
2897 # Since: 1.4
2899 { 'struct': 'ChardevSocket', 'data': { 'addr'       : 'SocketAddress',
2900                                      '*server'    : 'bool',
2901                                      '*wait'      : 'bool',
2902                                      '*nodelay'   : 'bool',
2903                                      '*telnet'    : 'bool',
2904                                      '*reconnect' : 'int' } }
2907 # @ChardevUdp:
2909 # Configuration info for datagram socket chardevs.
2911 # @remote: remote address
2912 # @local: #optional local address
2914 # Since: 1.5
2916 { 'struct': 'ChardevUdp', 'data': { 'remote' : 'SocketAddress',
2917                                   '*local' : 'SocketAddress' } }
2920 # @ChardevMux:
2922 # Configuration info for mux chardevs.
2924 # @chardev: name of the base chardev.
2926 # Since: 1.5
2928 { 'struct': 'ChardevMux', 'data': { 'chardev' : 'str' } }
2931 # @ChardevStdio:
2933 # Configuration info for stdio chardevs.
2935 # @signal: #optional Allow signals (such as SIGINT triggered by ^C)
2936 #          be delivered to qemu.  Default: true in -nographic mode,
2937 #          false otherwise.
2939 # Since: 1.5
2941 { 'struct': 'ChardevStdio', 'data': { '*signal' : 'bool' } }
2944 # @ChardevSpiceChannel:
2946 # Configuration info for spice vm channel chardevs.
2948 # @type: kind of channel (for example vdagent).
2950 # Since: 1.5
2952 { 'struct': 'ChardevSpiceChannel', 'data': { 'type'  : 'str' } }
2955 # @ChardevSpicePort:
2957 # Configuration info for spice port chardevs.
2959 # @fqdn: name of the channel (see docs/spice-port-fqdn.txt)
2961 # Since: 1.5
2963 { 'struct': 'ChardevSpicePort', 'data': { 'fqdn'  : 'str' } }
2966 # @ChardevVC:
2968 # Configuration info for virtual console chardevs.
2970 # @width:  console width,  in pixels
2971 # @height: console height, in pixels
2972 # @cols:   console width,  in chars
2973 # @rows:   console height, in chars
2975 # Since: 1.5
2977 { 'struct': 'ChardevVC', 'data': { '*width'  : 'int',
2978                                  '*height' : 'int',
2979                                  '*cols'   : 'int',
2980                                  '*rows'   : 'int' } }
2983 # @ChardevRingbuf:
2985 # Configuration info for ring buffer chardevs.
2987 # @size: #optional ring buffer size, must be power of two, default is 65536
2989 # Since: 1.5
2991 { 'struct': 'ChardevRingbuf', 'data': { '*size'  : 'int' } }
2994 # @ChardevBackend:
2996 # Configuration info for the new chardev backend.
2998 # Since: 1.4 (testdev since 2.2)
3000 { 'struct': 'ChardevDummy', 'data': { } }
3002 { 'union': 'ChardevBackend', 'data': { 'file'   : 'ChardevFile',
3003                                        'serial' : 'ChardevHostdev',
3004                                        'parallel': 'ChardevHostdev',
3005                                        'pipe'   : 'ChardevHostdev',
3006                                        'socket' : 'ChardevSocket',
3007                                        'udp'    : 'ChardevUdp',
3008                                        'pty'    : 'ChardevDummy',
3009                                        'null'   : 'ChardevDummy',
3010                                        'mux'    : 'ChardevMux',
3011                                        'msmouse': 'ChardevDummy',
3012                                        'braille': 'ChardevDummy',
3013                                        'testdev': 'ChardevDummy',
3014                                        'stdio'  : 'ChardevStdio',
3015                                        'console': 'ChardevDummy',
3016                                        'spicevmc' : 'ChardevSpiceChannel',
3017                                        'spiceport' : 'ChardevSpicePort',
3018                                        'vc'     : 'ChardevVC',
3019                                        'ringbuf': 'ChardevRingbuf',
3020                                        # next one is just for compatibility
3021                                        'memory' : 'ChardevRingbuf' } }
3024 # @ChardevReturn:
3026 # Return info about the chardev backend just created.
3028 # @pty: #optional name of the slave pseudoterminal device, present if
3029 #       and only if a chardev of type 'pty' was created
3031 # Since: 1.4
3033 { 'struct' : 'ChardevReturn', 'data': { '*pty' : 'str' } }
3036 # @chardev-add:
3038 # Add a character device backend
3040 # @id: the chardev's ID, must be unique
3041 # @backend: backend type and parameters
3043 # Returns: ChardevReturn.
3045 # Since: 1.4
3047 { 'command': 'chardev-add', 'data': {'id'      : 'str',
3048                                      'backend' : 'ChardevBackend' },
3049   'returns': 'ChardevReturn' }
3052 # @chardev-remove:
3054 # Remove a character device backend
3056 # @id: the chardev's ID, must exist and not be in use
3058 # Returns: Nothing on success
3060 # Since: 1.4
3062 { 'command': 'chardev-remove', 'data': {'id': 'str'} }
3065 # @TpmModel:
3067 # An enumeration of TPM models
3069 # @tpm-tis: TPM TIS model
3071 # Since: 1.5
3073 { 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
3076 # @query-tpm-models:
3078 # Return a list of supported TPM models
3080 # Returns: a list of TpmModel
3082 # Since: 1.5
3084 { 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
3087 # @TpmType:
3089 # An enumeration of TPM types
3091 # @passthrough: TPM passthrough type
3093 # Since: 1.5
3095 { 'enum': 'TpmType', 'data': [ 'passthrough' ] }
3098 # @query-tpm-types:
3100 # Return a list of supported TPM types
3102 # Returns: a list of TpmType
3104 # Since: 1.5
3106 { 'command': 'query-tpm-types', 'returns': ['TpmType'] }
3109 # @TPMPassthroughOptions:
3111 # Information about the TPM passthrough type
3113 # @path: #optional string describing the path used for accessing the TPM device
3115 # @cancel-path: #optional string showing the TPM's sysfs cancel file
3116 #               for cancellation of TPM commands while they are executing
3118 # Since: 1.5
3120 { 'struct': 'TPMPassthroughOptions', 'data': { '*path' : 'str',
3121                                              '*cancel-path' : 'str'} }
3124 # @TpmTypeOptions:
3126 # A union referencing different TPM backend types' configuration options
3128 # @passthrough: The configuration options for the TPM passthrough type
3130 # Since: 1.5
3132 { 'union': 'TpmTypeOptions',
3133    'data': { 'passthrough' : 'TPMPassthroughOptions' } }
3136 # @TpmInfo:
3138 # Information about the TPM
3140 # @id: The Id of the TPM
3142 # @model: The TPM frontend model
3144 # @options: The TPM (backend) type configuration options
3146 # Since: 1.5
3148 { 'struct': 'TPMInfo',
3149   'data': {'id': 'str',
3150            'model': 'TpmModel',
3151            'options': 'TpmTypeOptions' } }
3154 # @query-tpm:
3156 # Return information about the TPM device
3158 # Returns: @TPMInfo on success
3160 # Since: 1.5
3162 { 'command': 'query-tpm', 'returns': ['TPMInfo'] }
3165 # @AcpiTableOptions
3167 # Specify an ACPI table on the command line to load.
3169 # At most one of @file and @data can be specified. The list of files specified
3170 # by any one of them is loaded and concatenated in order. If both are omitted,
3171 # @data is implied.
3173 # Other fields / optargs can be used to override fields of the generic ACPI
3174 # table header; refer to the ACPI specification 5.0, section 5.2.6 System
3175 # Description Table Header. If a header field is not overridden, then the
3176 # corresponding value from the concatenated blob is used (in case of @file), or
3177 # it is filled in with a hard-coded value (in case of @data).
3179 # String fields are copied into the matching ACPI member from lowest address
3180 # upwards, and silently truncated / NUL-padded to length.
3182 # @sig: #optional table signature / identifier (4 bytes)
3184 # @rev: #optional table revision number (dependent on signature, 1 byte)
3186 # @oem_id: #optional OEM identifier (6 bytes)
3188 # @oem_table_id: #optional OEM table identifier (8 bytes)
3190 # @oem_rev: #optional OEM-supplied revision number (4 bytes)
3192 # @asl_compiler_id: #optional identifier of the utility that created the table
3193 #                   (4 bytes)
3195 # @asl_compiler_rev: #optional revision number of the utility that created the
3196 #                    table (4 bytes)
3198 # @file: #optional colon (:) separated list of pathnames to load and
3199 #        concatenate as table data. The resultant binary blob is expected to
3200 #        have an ACPI table header. At least one file is required. This field
3201 #        excludes @data.
3203 # @data: #optional colon (:) separated list of pathnames to load and
3204 #        concatenate as table data. The resultant binary blob must not have an
3205 #        ACPI table header. At least one file is required. This field excludes
3206 #        @file.
3208 # Since 1.5
3210 { 'struct': 'AcpiTableOptions',
3211   'data': {
3212     '*sig':               'str',
3213     '*rev':               'uint8',
3214     '*oem_id':            'str',
3215     '*oem_table_id':      'str',
3216     '*oem_rev':           'uint32',
3217     '*asl_compiler_id':   'str',
3218     '*asl_compiler_rev':  'uint32',
3219     '*file':              'str',
3220     '*data':              'str' }}
3223 # @CommandLineParameterType:
3225 # Possible types for an option parameter.
3227 # @string: accepts a character string
3229 # @boolean: accepts "on" or "off"
3231 # @number: accepts a number
3233 # @size: accepts a number followed by an optional suffix (K)ilo,
3234 #        (M)ega, (G)iga, (T)era
3236 # Since 1.5
3238 { 'enum': 'CommandLineParameterType',
3239   'data': ['string', 'boolean', 'number', 'size'] }
3242 # @CommandLineParameterInfo:
3244 # Details about a single parameter of a command line option.
3246 # @name: parameter name
3248 # @type: parameter @CommandLineParameterType
3250 # @help: #optional human readable text string, not suitable for parsing.
3252 # @default: #optional default value string (since 2.1)
3254 # Since 1.5
3256 { 'struct': 'CommandLineParameterInfo',
3257   'data': { 'name': 'str',
3258             'type': 'CommandLineParameterType',
3259             '*help': 'str',
3260             '*default': 'str' } }
3263 # @CommandLineOptionInfo:
3265 # Details about a command line option, including its list of parameter details
3267 # @option: option name
3269 # @parameters: an array of @CommandLineParameterInfo
3271 # Since 1.5
3273 { 'struct': 'CommandLineOptionInfo',
3274   'data': { 'option': 'str', 'parameters': ['CommandLineParameterInfo'] } }
3277 # @query-command-line-options:
3279 # Query command line option schema.
3281 # @option: #optional option name
3283 # Returns: list of @CommandLineOptionInfo for all options (or for the given
3284 #          @option).  Returns an error if the given @option doesn't exist.
3286 # Since 1.5
3288 {'command': 'query-command-line-options', 'data': { '*option': 'str' },
3289  'returns': ['CommandLineOptionInfo'] }
3292 # @X86CPURegister32
3294 # A X86 32-bit register
3296 # Since: 1.5
3298 { 'enum': 'X86CPURegister32',
3299   'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
3302 # @X86CPUFeatureWordInfo
3304 # Information about a X86 CPU feature word
3306 # @cpuid-input-eax: Input EAX value for CPUID instruction for that feature word
3308 # @cpuid-input-ecx: #optional Input ECX value for CPUID instruction for that
3309 #                   feature word
3311 # @cpuid-register: Output register containing the feature bits
3313 # @features: value of output register, containing the feature bits
3315 # Since: 1.5
3317 { 'struct': 'X86CPUFeatureWordInfo',
3318   'data': { 'cpuid-input-eax': 'int',
3319             '*cpuid-input-ecx': 'int',
3320             'cpuid-register': 'X86CPURegister32',
3321             'features': 'int' } }
3324 # @RxState:
3326 # Packets receiving state
3328 # @normal: filter assigned packets according to the mac-table
3330 # @none: don't receive any assigned packet
3332 # @all: receive all assigned packets
3334 # Since: 1.6
3336 { 'enum': 'RxState', 'data': [ 'normal', 'none', 'all' ] }
3339 # @RxFilterInfo:
3341 # Rx-filter information for a NIC.
3343 # @name: net client name
3345 # @promiscuous: whether promiscuous mode is enabled
3347 # @multicast: multicast receive state
3349 # @unicast: unicast receive state
3351 # @vlan: vlan receive state (Since 2.0)
3353 # @broadcast-allowed: whether to receive broadcast
3355 # @multicast-overflow: multicast table is overflowed or not
3357 # @unicast-overflow: unicast table is overflowed or not
3359 # @main-mac: the main macaddr string
3361 # @vlan-table: a list of active vlan id
3363 # @unicast-table: a list of unicast macaddr string
3365 # @multicast-table: a list of multicast macaddr string
3367 # Since 1.6
3370 { 'struct': 'RxFilterInfo',
3371   'data': {
3372     'name':               'str',
3373     'promiscuous':        'bool',
3374     'multicast':          'RxState',
3375     'unicast':            'RxState',
3376     'vlan':               'RxState',
3377     'broadcast-allowed':  'bool',
3378     'multicast-overflow': 'bool',
3379     'unicast-overflow':   'bool',
3380     'main-mac':           'str',
3381     'vlan-table':         ['int'],
3382     'unicast-table':      ['str'],
3383     'multicast-table':    ['str'] }}
3386 # @query-rx-filter:
3388 # Return rx-filter information for all NICs (or for the given NIC).
3390 # @name: #optional net client name
3392 # Returns: list of @RxFilterInfo for all NICs (or for the given NIC).
3393 #          Returns an error if the given @name doesn't exist, or given
3394 #          NIC doesn't support rx-filter querying, or given net client
3395 #          isn't a NIC.
3397 # Since: 1.6
3399 { 'command': 'query-rx-filter', 'data': { '*name': 'str' },
3400   'returns': ['RxFilterInfo'] }
3403 # @InputButton
3405 # Button of a pointer input device (mouse, tablet).
3407 # Since: 2.0
3409 { 'enum'  : 'InputButton',
3410   'data'  : [ 'Left', 'Middle', 'Right', 'WheelUp', 'WheelDown' ] }
3413 # @InputButton
3415 # Position axis of a pointer input device (mouse, tablet).
3417 # Since: 2.0
3419 { 'enum'  : 'InputAxis',
3420   'data'  : [ 'X', 'Y' ] }
3423 # @InputKeyEvent
3425 # Keyboard input event.
3427 # @key:    Which key this event is for.
3428 # @down:   True for key-down and false for key-up events.
3430 # Since: 2.0
3432 { 'struct'  : 'InputKeyEvent',
3433   'data'  : { 'key'     : 'KeyValue',
3434               'down'    : 'bool' } }
3437 # @InputBtnEvent
3439 # Pointer button input event.
3441 # @button: Which button this event is for.
3442 # @down:   True for key-down and false for key-up events.
3444 # Since: 2.0
3446 { 'struct'  : 'InputBtnEvent',
3447   'data'  : { 'button'  : 'InputButton',
3448               'down'    : 'bool' } }
3451 # @InputMoveEvent
3453 # Pointer motion input event.
3455 # @axis:   Which axis is referenced by @value.
3456 # @value:  Pointer position.  For absolute coordinates the
3457 #          valid range is 0 -> 0x7ffff
3459 # Since: 2.0
3461 { 'struct'  : 'InputMoveEvent',
3462   'data'  : { 'axis'    : 'InputAxis',
3463               'value'   : 'int' } }
3466 # @InputEvent
3468 # Input event union.
3470 # @key: Input event of Keyboard
3471 # @btn: Input event of pointer buttons
3472 # @rel: Input event of relative pointer motion
3473 # @abs: Input event of absolute pointer motion
3475 # Since: 2.0
3477 { 'union' : 'InputEvent',
3478   'data'  : { 'key'     : 'InputKeyEvent',
3479               'btn'     : 'InputBtnEvent',
3480               'rel'     : 'InputMoveEvent',
3481               'abs'     : 'InputMoveEvent' } }
3484 # @x-input-send-event
3486 # Send input event(s) to guest.
3488 # @console: #optional console to send event(s) to.
3489 #           This parameter can be used to send the input event to
3490 #           specific input devices in case (a) multiple input devices
3491 #           of the same kind are added to the virtual machine and (b)
3492 #           you have configured input routing (see docs/multiseat.txt)
3493 #           for those input devices.  If input routing is not
3494 #           configured this parameter has no effect.
3495 #           If @console is missing, only devices that aren't associated
3496 #           with a console are admissible.
3497 #           If @console is specified, it must exist, and both devices
3498 #           associated with that console and devices not associated with a
3499 #           console are admissible, but the former take precedence.
3502 # @events: List of InputEvent union.
3504 # Returns: Nothing on success.
3506 # Since: 2.2
3508 # Note: this command is experimental, and not a stable API.
3511 { 'command': 'x-input-send-event',
3512   'data': { '*console':'int', 'events': [ 'InputEvent' ] } }
3515 # @NumaOptions
3517 # A discriminated record of NUMA options. (for OptsVisitor)
3519 # Since 2.1
3521 { 'union': 'NumaOptions',
3522   'data': {
3523     'node': 'NumaNodeOptions' }}
3526 # @NumaNodeOptions
3528 # Create a guest NUMA node. (for OptsVisitor)
3530 # @nodeid: #optional NUMA node ID (increase by 1 from 0 if omitted)
3532 # @cpus: #optional VCPUs belonging to this node (assign VCPUS round-robin
3533 #         if omitted)
3535 # @mem: #optional memory size of this node; mutually exclusive with @memdev.
3536 #       Equally divide total memory among nodes if both @mem and @memdev are
3537 #       omitted.
3539 # @memdev: #optional memory backend object.  If specified for one node,
3540 #          it must be specified for all nodes.
3542 # Since: 2.1
3544 { 'struct': 'NumaNodeOptions',
3545   'data': {
3546    '*nodeid': 'uint16',
3547    '*cpus':   ['uint16'],
3548    '*mem':    'size',
3549    '*memdev': 'str' }}
3552 # @HostMemPolicy
3554 # Host memory policy types
3556 # @default: restore default policy, remove any nondefault policy
3558 # @preferred: set the preferred host nodes for allocation
3560 # @bind: a strict policy that restricts memory allocation to the
3561 #        host nodes specified
3563 # @interleave: memory allocations are interleaved across the set
3564 #              of host nodes specified
3566 # Since 2.1
3568 { 'enum': 'HostMemPolicy',
3569   'data': [ 'default', 'preferred', 'bind', 'interleave' ] }
3572 # @Memdev:
3574 # Information about memory backend
3576 # @size: memory backend size
3578 # @merge: enables or disables memory merge support
3580 # @dump: includes memory backend's memory in a core dump or not
3582 # @prealloc: enables or disables memory preallocation
3584 # @host-nodes: host nodes for its memory policy
3586 # @policy: memory policy of memory backend
3588 # Since: 2.1
3591 { 'struct': 'Memdev',
3592   'data': {
3593     'size':       'size',
3594     'merge':      'bool',
3595     'dump':       'bool',
3596     'prealloc':   'bool',
3597     'host-nodes': ['uint16'],
3598     'policy':     'HostMemPolicy' }}
3601 # @query-memdev:
3603 # Returns information for all memory backends.
3605 # Returns: a list of @Memdev.
3607 # Since: 2.1
3609 { 'command': 'query-memdev', 'returns': ['Memdev'] }
3612 # @PCDIMMDeviceInfo:
3614 # PCDIMMDevice state information
3616 # @id: #optional device's ID
3618 # @addr: physical address, where device is mapped
3620 # @size: size of memory that the device provides
3622 # @slot: slot number at which device is plugged in
3624 # @node: NUMA node number where device is plugged in
3626 # @memdev: memory backend linked with device
3628 # @hotplugged: true if device was hotplugged
3630 # @hotpluggable: true if device if could be added/removed while machine is running
3632 # Since: 2.1
3634 { 'struct': 'PCDIMMDeviceInfo',
3635   'data': { '*id': 'str',
3636             'addr': 'int',
3637             'size': 'int',
3638             'slot': 'int',
3639             'node': 'int',
3640             'memdev': 'str',
3641             'hotplugged': 'bool',
3642             'hotpluggable': 'bool'
3643           }
3647 # @MemoryDeviceInfo:
3649 # Union containing information about a memory device
3651 # Since: 2.1
3653 { 'union': 'MemoryDeviceInfo', 'data': {'dimm': 'PCDIMMDeviceInfo'} }
3656 # @query-memory-devices
3658 # Lists available memory devices and their state
3660 # Since: 2.1
3662 { 'command': 'query-memory-devices', 'returns': ['MemoryDeviceInfo'] }
3664 ## @ACPISlotType
3666 # @DIMM: memory slot
3668 { 'enum': 'ACPISlotType', 'data': [ 'DIMM' ] }
3670 ## @ACPIOSTInfo
3672 # OSPM Status Indication for a device
3673 # For description of possible values of @source and @status fields
3674 # see "_OST (OSPM Status Indication)" chapter of ACPI5.0 spec.
3676 # @device: #optional device ID associated with slot
3678 # @slot: slot ID, unique per slot of a given @slot-type
3680 # @slot-type: type of the slot
3682 # @source: an integer containing the source event
3684 # @status: an integer containing the status code
3686 # Since: 2.1
3688 { 'struct': 'ACPIOSTInfo',
3689   'data'  : { '*device': 'str',
3690               'slot': 'str',
3691               'slot-type': 'ACPISlotType',
3692               'source': 'int',
3693               'status': 'int' } }
3696 # @query-acpi-ospm-status
3698 # Lists ACPI OSPM status of ACPI device objects,
3699 # which might be reported via _OST method
3701 # Since: 2.1
3703 { 'command': 'query-acpi-ospm-status', 'returns': ['ACPIOSTInfo'] }
3706 # @WatchdogExpirationAction
3708 # An enumeration of the actions taken when the watchdog device's timer is
3709 # expired
3711 # @reset: system resets
3713 # @shutdown: system shutdown, note that it is similar to @powerdown, which
3714 #            tries to set to system status and notify guest
3716 # @poweroff: system poweroff, the emulator program exits
3718 # @pause: system pauses, similar to @stop
3720 # @debug: system enters debug state
3722 # @none: nothing is done
3724 # Since: 2.1
3726 { 'enum': 'WatchdogExpirationAction',
3727   'data': [ 'reset', 'shutdown', 'poweroff', 'pause', 'debug', 'none' ] }
3730 # @IoOperationType
3732 # An enumeration of the I/O operation types
3734 # @read: read operation
3736 # @write: write operation
3738 # Since: 2.1
3740 { 'enum': 'IoOperationType',
3741   'data': [ 'read', 'write' ] }
3744 # @GuestPanicAction
3746 # An enumeration of the actions taken when guest OS panic is detected
3748 # @pause: system pauses
3750 # Since: 2.1
3752 { 'enum': 'GuestPanicAction',
3753   'data': [ 'pause' ] }
3756 # @rtc-reset-reinjection
3758 # This command will reset the RTC interrupt reinjection backlog.
3759 # Can be used if another mechanism to synchronize guest time
3760 # is in effect, for example QEMU guest agent's guest-set-time
3761 # command.
3763 # Since: 2.1
3765 { 'command': 'rtc-reset-reinjection' }