spapr: rename "hotplug memory" terminology to "device memory"
[qemu.git] / qapi / misc.json
blobf5988cc0b52d526a643a8f1ea6912c942b1f1f4e
1 # -*- Mode: Python -*-
4 ##
5 # = Miscellanea
6 ##
8 { 'include': 'common.json' }
11 # @qmp_capabilities:
13 # Enable QMP capabilities.
15 # Arguments:
17 # @enable:   An optional list of QMPCapability values to enable.  The
18 #            client must not enable any capability that is not
19 #            mentioned in the QMP greeting message.  If the field is not
20 #            provided, it means no QMP capabilities will be enabled.
21 #            (since 2.12)
23 # Example:
25 # -> { "execute": "qmp_capabilities",
26 #      "arguments": { "enable": [ "oob" ] } }
27 # <- { "return": {} }
29 # Notes: This command is valid exactly when first connecting: it must be
30 # issued before any other command will be accepted, and will fail once the
31 # monitor is accepting other commands. (see qemu docs/interop/qmp-spec.txt)
33 # The QMP client needs to explicitly enable QMP capabilities, otherwise
34 # all the QMP capabilities will be turned off by default.
36 # Since: 0.13
39 { 'command': 'qmp_capabilities',
40   'data': { '*enable': [ 'QMPCapability' ] } }
43 # @QMPCapability:
45 # Enumeration of capabilities to be advertised during initial client
46 # connection, used for agreeing on particular QMP extension behaviors.
48 # @oob:   QMP ability to support Out-Of-Band requests.
49 #         (Please refer to qmp-spec.txt for more information on OOB)
51 # Since: 2.12
54 { 'enum': 'QMPCapability',
55   'data': [ 'oob' ] }
58 # @VersionTriple:
60 # A three-part version number.
62 # @major:  The major version number.
64 # @minor:  The minor version number.
66 # @micro:  The micro version number.
68 # Since: 2.4
70 { 'struct': 'VersionTriple',
71   'data': {'major': 'int', 'minor': 'int', 'micro': 'int'} }
75 # @VersionInfo:
77 # A description of QEMU's version.
79 # @qemu:        The version of QEMU.  By current convention, a micro
80 #               version of 50 signifies a development branch.  A micro version
81 #               greater than or equal to 90 signifies a release candidate for
82 #               the next minor version.  A micro version of less than 50
83 #               signifies a stable release.
85 # @package:     QEMU will always set this field to an empty string.  Downstream
86 #               versions of QEMU should set this to a non-empty string.  The
87 #               exact format depends on the downstream however it highly
88 #               recommended that a unique name is used.
90 # Since: 0.14.0
92 { 'struct': 'VersionInfo',
93   'data': {'qemu': 'VersionTriple', 'package': 'str'} }
96 # @query-version:
98 # Returns the current version of QEMU.
100 # Returns:  A @VersionInfo object describing the current version of QEMU.
102 # Since: 0.14.0
104 # Example:
106 # -> { "execute": "query-version" }
107 # <- {
108 #       "return":{
109 #          "qemu":{
110 #             "major":0,
111 #             "minor":11,
112 #             "micro":5
113 #          },
114 #          "package":""
115 #       }
116 #    }
119 { 'command': 'query-version', 'returns': 'VersionInfo' }
122 # @CommandInfo:
124 # Information about a QMP command
126 # @name: The command name
128 # Since: 0.14.0
130 { 'struct': 'CommandInfo', 'data': {'name': 'str'} }
133 # @query-commands:
135 # Return a list of supported QMP commands by this server
137 # Returns: A list of @CommandInfo for all supported commands
139 # Since: 0.14.0
141 # Example:
143 # -> { "execute": "query-commands" }
144 # <- {
145 #      "return":[
146 #         {
147 #            "name":"query-balloon"
148 #         },
149 #         {
150 #            "name":"system_powerdown"
151 #         }
152 #      ]
153 #    }
155 # Note: This example has been shortened as the real response is too long.
158 { 'command': 'query-commands', 'returns': ['CommandInfo'] }
161 # @LostTickPolicy:
163 # Policy for handling lost ticks in timer devices.
165 # @discard: throw away the missed tick(s) and continue with future injection
166 #           normally.  Guest time may be delayed, unless the OS has explicit
167 #           handling of lost ticks
169 # @delay: continue to deliver ticks at the normal rate.  Guest time will be
170 #         delayed due to the late tick
172 # @merge: merge the missed tick(s) into one tick and inject.  Guest time
173 #         may be delayed, depending on how the OS reacts to the merging
174 #         of ticks
176 # @slew: deliver ticks at a higher rate to catch up with the missed tick. The
177 #        guest time should not be delayed once catchup is complete.
179 # Since: 2.0
181 { 'enum': 'LostTickPolicy',
182   'data': ['discard', 'delay', 'merge', 'slew' ] }
185 # @add_client:
187 # Allow client connections for VNC, Spice and socket based
188 # character devices to be passed in to QEMU via SCM_RIGHTS.
190 # @protocol: protocol name. Valid names are "vnc", "spice" or the
191 #            name of a character device (eg. from -chardev id=XXXX)
193 # @fdname: file descriptor name previously passed via 'getfd' command
195 # @skipauth: whether to skip authentication. Only applies
196 #            to "vnc" and "spice" protocols
198 # @tls: whether to perform TLS. Only applies to the "spice"
199 #       protocol
201 # Returns: nothing on success.
203 # Since: 0.14.0
205 # Example:
207 # -> { "execute": "add_client", "arguments": { "protocol": "vnc",
208 #                                              "fdname": "myclient" } }
209 # <- { "return": {} }
212 { 'command': 'add_client',
213   'data': { 'protocol': 'str', 'fdname': 'str', '*skipauth': 'bool',
214             '*tls': 'bool' } }
217 # @NameInfo:
219 # Guest name information.
221 # @name: The name of the guest
223 # Since: 0.14.0
225 { 'struct': 'NameInfo', 'data': {'*name': 'str'} }
228 # @query-name:
230 # Return the name information of a guest.
232 # Returns: @NameInfo of the guest
234 # Since: 0.14.0
236 # Example:
238 # -> { "execute": "query-name" }
239 # <- { "return": { "name": "qemu-name" } }
242 { 'command': 'query-name', 'returns': 'NameInfo' }
245 # @KvmInfo:
247 # Information about support for KVM acceleration
249 # @enabled: true if KVM acceleration is active
251 # @present: true if KVM acceleration is built into this executable
253 # Since: 0.14.0
255 { 'struct': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} }
258 # @query-kvm:
260 # Returns information about KVM acceleration
262 # Returns: @KvmInfo
264 # Since: 0.14.0
266 # Example:
268 # -> { "execute": "query-kvm" }
269 # <- { "return": { "enabled": true, "present": true } }
272 { 'command': 'query-kvm', 'returns': 'KvmInfo' }
275 # @UuidInfo:
277 # Guest UUID information (Universally Unique Identifier).
279 # @UUID: the UUID of the guest
281 # Since: 0.14.0
283 # Notes: If no UUID was specified for the guest, a null UUID is returned.
285 { 'struct': 'UuidInfo', 'data': {'UUID': 'str'} }
288 # @query-uuid:
290 # Query the guest UUID information.
292 # Returns: The @UuidInfo for the guest
294 # Since: 0.14.0
296 # Example:
298 # -> { "execute": "query-uuid" }
299 # <- { "return": { "UUID": "550e8400-e29b-41d4-a716-446655440000" } }
302 { 'command': 'query-uuid', 'returns': 'UuidInfo' }
305 # @EventInfo:
307 # Information about a QMP event
309 # @name: The event name
311 # Since: 1.2.0
313 { 'struct': 'EventInfo', 'data': {'name': 'str'} }
316 # @query-events:
318 # Return a list of supported QMP events by this server
320 # Returns: A list of @EventInfo for all supported events
322 # Since: 1.2.0
324 # Example:
326 # -> { "execute": "query-events" }
327 # <- {
328 #      "return": [
329 #          {
330 #             "name":"SHUTDOWN"
331 #          },
332 #          {
333 #             "name":"RESET"
334 #          }
335 #       ]
336 #    }
338 # Note: This example has been shortened as the real response is too long.
341 { 'command': 'query-events', 'returns': ['EventInfo'] }
344 # @CpuInfoArch:
346 # An enumeration of cpu types that enable additional information during
347 # @query-cpus and @query-cpus-fast.
349 # @s390: since 2.12
351 # @riscv: since 2.12
353 # Since: 2.6
355 { 'enum': 'CpuInfoArch',
356   'data': ['x86', 'sparc', 'ppc', 'mips', 'tricore', 's390', 'riscv', 'other' ] }
359 # @CpuInfo:
361 # Information about a virtual CPU
363 # @CPU: the index of the virtual CPU
365 # @current: this only exists for backwards compatibility and should be ignored
367 # @halted: true if the virtual CPU is in the halt state.  Halt usually refers
368 #          to a processor specific low power mode.
370 # @qom_path: path to the CPU object in the QOM tree (since 2.4)
372 # @thread_id: ID of the underlying host thread
374 # @props: properties describing to which node/socket/core/thread
375 #         virtual CPU belongs to, provided if supported by board (since 2.10)
377 # @arch: architecture of the cpu, which determines which additional fields
378 #        will be listed (since 2.6)
380 # Since: 0.14.0
382 # Notes: @halted is a transient state that changes frequently.  By the time the
383 #        data is sent to the client, the guest may no longer be halted.
385 { 'union': 'CpuInfo',
386   'base': {'CPU': 'int', 'current': 'bool', 'halted': 'bool',
387            'qom_path': 'str', 'thread_id': 'int',
388            '*props': 'CpuInstanceProperties', 'arch': 'CpuInfoArch' },
389   'discriminator': 'arch',
390   'data': { 'x86': 'CpuInfoX86',
391             'sparc': 'CpuInfoSPARC',
392             'ppc': 'CpuInfoPPC',
393             'mips': 'CpuInfoMIPS',
394             'tricore': 'CpuInfoTricore',
395             's390': 'CpuInfoS390',
396             'riscv': 'CpuInfoRISCV',
397             'other': 'CpuInfoOther' } }
400 # @CpuInfoX86:
402 # Additional information about a virtual i386 or x86_64 CPU
404 # @pc: the 64-bit instruction pointer
406 # Since: 2.6
408 { 'struct': 'CpuInfoX86', 'data': { 'pc': 'int' } }
411 # @CpuInfoSPARC:
413 # Additional information about a virtual SPARC CPU
415 # @pc: the PC component of the instruction pointer
417 # @npc: the NPC component of the instruction pointer
419 # Since: 2.6
421 { 'struct': 'CpuInfoSPARC', 'data': { 'pc': 'int', 'npc': 'int' } }
424 # @CpuInfoPPC:
426 # Additional information about a virtual PPC CPU
428 # @nip: the instruction pointer
430 # Since: 2.6
432 { 'struct': 'CpuInfoPPC', 'data': { 'nip': 'int' } }
435 # @CpuInfoMIPS:
437 # Additional information about a virtual MIPS CPU
439 # @PC: the instruction pointer
441 # Since: 2.6
443 { 'struct': 'CpuInfoMIPS', 'data': { 'PC': 'int' } }
446 # @CpuInfoTricore:
448 # Additional information about a virtual Tricore CPU
450 # @PC: the instruction pointer
452 # Since: 2.6
454 { 'struct': 'CpuInfoTricore', 'data': { 'PC': 'int' } }
457 # @CpuInfoRISCV:
459 # Additional information about a virtual RISCV CPU
461 # @pc: the instruction pointer
463 # Since 2.12
465 { 'struct': 'CpuInfoRISCV', 'data': { 'pc': 'int' } }
468 # @CpuInfoOther:
470 # No additional information is available about the virtual CPU
472 # Since: 2.6
475 { 'struct': 'CpuInfoOther', 'data': { } }
478 # @CpuS390State:
480 # An enumeration of cpu states that can be assumed by a virtual
481 # S390 CPU
483 # Since: 2.12
485 { 'enum': 'CpuS390State',
486   'prefix': 'S390_CPU_STATE',
487   'data': [ 'uninitialized', 'stopped', 'check-stop', 'operating', 'load' ] }
490 # @CpuInfoS390:
492 # Additional information about a virtual S390 CPU
494 # @cpu-state: the virtual CPU's state
496 # Since: 2.12
498 { 'struct': 'CpuInfoS390', 'data': { 'cpu-state': 'CpuS390State' } }
501 # @query-cpus:
503 # Returns a list of information about each virtual CPU.
505 # This command causes vCPU threads to exit to userspace, which causes
506 # a small interruption to guest CPU execution. This will have a negative
507 # impact on realtime guests and other latency sensitive guest workloads.
508 # It is recommended to use @query-cpus-fast instead of this command to
509 # avoid the vCPU interruption.
511 # Returns: a list of @CpuInfo for each virtual CPU
513 # Since: 0.14.0
515 # Example:
517 # -> { "execute": "query-cpus" }
518 # <- { "return": [
519 #          {
520 #             "CPU":0,
521 #             "current":true,
522 #             "halted":false,
523 #             "qom_path":"/machine/unattached/device[0]",
524 #             "arch":"x86",
525 #             "pc":3227107138,
526 #             "thread_id":3134
527 #          },
528 #          {
529 #             "CPU":1,
530 #             "current":false,
531 #             "halted":true,
532 #             "qom_path":"/machine/unattached/device[2]",
533 #             "arch":"x86",
534 #             "pc":7108165,
535 #             "thread_id":3135
536 #          }
537 #       ]
538 #    }
540 # Notes: This interface is deprecated (since 2.12.0), and it is strongly
541 #        recommended that you avoid using it. Use @query-cpus-fast to
542 #        obtain information about virtual CPUs.
545 { 'command': 'query-cpus', 'returns': ['CpuInfo'] }
548 # @CpuInfoFast:
550 # Information about a virtual CPU
552 # @cpu-index: index of the virtual CPU
554 # @qom-path: path to the CPU object in the QOM tree
556 # @thread-id: ID of the underlying host thread
558 # @props: properties describing to which node/socket/core/thread
559 #         virtual CPU belongs to, provided if supported by board
561 # @arch: base architecture of the cpu; deprecated since 2.13.0 in favor
562 #        of @target
564 # @target: the QEMU system emulation target, which determines which
565 #          additional fields will be listed (since 2.13)
567 # Since: 2.12
570 { 'union'         : 'CpuInfoFast',
571   'base'          : { 'cpu-index'    : 'int',
572                       'qom-path'     : 'str',
573                       'thread-id'    : 'int',
574                       '*props'       : 'CpuInstanceProperties',
575                       'arch'         : 'CpuInfoArch',
576                       'target'       : 'SysEmuTarget' },
577   'discriminator' : 'target',
578   'data'          : { 'aarch64'      : 'CpuInfoOther',
579                       'alpha'        : 'CpuInfoOther',
580                       'arm'          : 'CpuInfoOther',
581                       'cris'         : 'CpuInfoOther',
582                       'hppa'         : 'CpuInfoOther',
583                       'i386'         : 'CpuInfoOther',
584                       'lm32'         : 'CpuInfoOther',
585                       'm68k'         : 'CpuInfoOther',
586                       'microblaze'   : 'CpuInfoOther',
587                       'microblazeel' : 'CpuInfoOther',
588                       'mips'         : 'CpuInfoOther',
589                       'mips64'       : 'CpuInfoOther',
590                       'mips64el'     : 'CpuInfoOther',
591                       'mipsel'       : 'CpuInfoOther',
592                       'moxie'        : 'CpuInfoOther',
593                       'nios2'        : 'CpuInfoOther',
594                       'or1k'         : 'CpuInfoOther',
595                       'ppc'          : 'CpuInfoOther',
596                       'ppc64'        : 'CpuInfoOther',
597                       'ppcemb'       : 'CpuInfoOther',
598                       'riscv32'      : 'CpuInfoOther',
599                       'riscv64'      : 'CpuInfoOther',
600                       's390x'        : 'CpuInfoS390',
601                       'sh4'          : 'CpuInfoOther',
602                       'sh4eb'        : 'CpuInfoOther',
603                       'sparc'        : 'CpuInfoOther',
604                       'sparc64'      : 'CpuInfoOther',
605                       'tricore'      : 'CpuInfoOther',
606                       'unicore32'    : 'CpuInfoOther',
607                       'x86_64'       : 'CpuInfoOther',
608                       'xtensa'       : 'CpuInfoOther',
609                       'xtensaeb'     : 'CpuInfoOther' } }
612 # @query-cpus-fast:
614 # Returns information about all virtual CPUs. This command does not
615 # incur a performance penalty and should be used in production
616 # instead of query-cpus.
618 # Returns: list of @CpuInfoFast
620 # Since: 2.12
622 # Example:
624 # -> { "execute": "query-cpus-fast" }
625 # <- { "return": [
626 #         {
627 #             "thread-id": 25627,
628 #             "props": {
629 #                 "core-id": 0,
630 #                 "thread-id": 0,
631 #                 "socket-id": 0
632 #             },
633 #             "qom-path": "/machine/unattached/device[0]",
634 #             "arch":"x86",
635 #             "target":"x86_64",
636 #             "cpu-index": 0
637 #         },
638 #         {
639 #             "thread-id": 25628,
640 #             "props": {
641 #                 "core-id": 0,
642 #                 "thread-id": 0,
643 #                 "socket-id": 1
644 #             },
645 #             "qom-path": "/machine/unattached/device[2]",
646 #             "arch":"x86",
647 #             "target":"x86_64",
648 #             "cpu-index": 1
649 #         }
650 #     ]
651 # }
653 { 'command': 'query-cpus-fast', 'returns': [ 'CpuInfoFast' ] }
656 # @IOThreadInfo:
658 # Information about an iothread
660 # @id: the identifier of the iothread
662 # @thread-id: ID of the underlying host thread
664 # @poll-max-ns: maximum polling time in ns, 0 means polling is disabled
665 #               (since 2.9)
667 # @poll-grow: how many ns will be added to polling time, 0 means that it's not
668 #             configured (since 2.9)
670 # @poll-shrink: how many ns will be removed from polling time, 0 means that
671 #               it's not configured (since 2.9)
673 # Since: 2.0
675 { 'struct': 'IOThreadInfo',
676   'data': {'id': 'str',
677            'thread-id': 'int',
678            'poll-max-ns': 'int',
679            'poll-grow': 'int',
680            'poll-shrink': 'int' } }
683 # @query-iothreads:
685 # Returns a list of information about each iothread.
687 # Note: this list excludes the QEMU main loop thread, which is not declared
688 # using the -object iothread command-line option.  It is always the main thread
689 # of the process.
691 # Returns: a list of @IOThreadInfo for each iothread
693 # Since: 2.0
695 # Example:
697 # -> { "execute": "query-iothreads" }
698 # <- { "return": [
699 #          {
700 #             "id":"iothread0",
701 #             "thread-id":3134
702 #          },
703 #          {
704 #             "id":"iothread1",
705 #             "thread-id":3135
706 #          }
707 #       ]
708 #    }
711 { 'command': 'query-iothreads', 'returns': ['IOThreadInfo'] }
714 # @BalloonInfo:
716 # Information about the guest balloon device.
718 # @actual: the number of bytes the balloon currently contains
720 # Since: 0.14.0
723 { 'struct': 'BalloonInfo', 'data': {'actual': 'int' } }
726 # @query-balloon:
728 # Return information about the balloon device.
730 # Returns: @BalloonInfo on success
732 #          If the balloon driver is enabled but not functional because the KVM
733 #          kernel module cannot support it, KvmMissingCap
735 #          If no balloon device is present, DeviceNotActive
737 # Since: 0.14.0
739 # Example:
741 # -> { "execute": "query-balloon" }
742 # <- { "return": {
743 #          "actual": 1073741824,
744 #       }
745 #    }
748 { 'command': 'query-balloon', 'returns': 'BalloonInfo' }
751 # @BALLOON_CHANGE:
753 # Emitted when the guest changes the actual BALLOON level. This value is
754 # equivalent to the @actual field return by the 'query-balloon' command
756 # @actual: actual level of the guest memory balloon in bytes
758 # Note: this event is rate-limited.
760 # Since: 1.2
762 # Example:
764 # <- { "event": "BALLOON_CHANGE",
765 #      "data": { "actual": 944766976 },
766 #      "timestamp": { "seconds": 1267020223, "microseconds": 435656 } }
769 { 'event': 'BALLOON_CHANGE',
770   'data': { 'actual': 'int' } }
773 # @PciMemoryRange:
775 # A PCI device memory region
777 # @base: the starting address (guest physical)
779 # @limit: the ending address (guest physical)
781 # Since: 0.14.0
783 { 'struct': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} }
786 # @PciMemoryRegion:
788 # Information about a PCI device I/O region.
790 # @bar: the index of the Base Address Register for this region
792 # @type: 'io' if the region is a PIO region
793 #        'memory' if the region is a MMIO region
795 # @size: memory size
797 # @prefetch: if @type is 'memory', true if the memory is prefetchable
799 # @mem_type_64: if @type is 'memory', true if the BAR is 64-bit
801 # Since: 0.14.0
803 { 'struct': 'PciMemoryRegion',
804   'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int',
805            '*prefetch': 'bool', '*mem_type_64': 'bool' } }
808 # @PciBusInfo:
810 # Information about a bus of a PCI Bridge device
812 # @number: primary bus interface number.  This should be the number of the
813 #          bus the device resides on.
815 # @secondary: secondary bus interface number.  This is the number of the
816 #             main bus for the bridge
818 # @subordinate: This is the highest number bus that resides below the
819 #               bridge.
821 # @io_range: The PIO range for all devices on this bridge
823 # @memory_range: The MMIO range for all devices on this bridge
825 # @prefetchable_range: The range of prefetchable MMIO for all devices on
826 #                      this bridge
828 # Since: 2.4
830 { 'struct': 'PciBusInfo',
831   'data': {'number': 'int', 'secondary': 'int', 'subordinate': 'int',
832            'io_range': 'PciMemoryRange',
833            'memory_range': 'PciMemoryRange',
834            'prefetchable_range': 'PciMemoryRange' } }
837 # @PciBridgeInfo:
839 # Information about a PCI Bridge device
841 # @bus: information about the bus the device resides on
843 # @devices: a list of @PciDeviceInfo for each device on this bridge
845 # Since: 0.14.0
847 { 'struct': 'PciBridgeInfo',
848   'data': {'bus': 'PciBusInfo', '*devices': ['PciDeviceInfo']} }
851 # @PciDeviceClass:
853 # Information about the Class of a PCI device
855 # @desc: a string description of the device's class
857 # @class: the class code of the device
859 # Since: 2.4
861 { 'struct': 'PciDeviceClass',
862   'data': {'*desc': 'str', 'class': 'int'} }
865 # @PciDeviceId:
867 # Information about the Id of a PCI device
869 # @device: the PCI device id
871 # @vendor: the PCI vendor id
873 # Since: 2.4
875 { 'struct': 'PciDeviceId',
876   'data': {'device': 'int', 'vendor': 'int'} }
879 # @PciDeviceInfo:
881 # Information about a PCI device
883 # @bus: the bus number of the device
885 # @slot: the slot the device is located in
887 # @function: the function of the slot used by the device
889 # @class_info: the class of the device
891 # @id: the PCI device id
893 # @irq: if an IRQ is assigned to the device, the IRQ number
895 # @qdev_id: the device name of the PCI device
897 # @pci_bridge: if the device is a PCI bridge, the bridge information
899 # @regions: a list of the PCI I/O regions associated with the device
901 # Notes: the contents of @class_info.desc are not stable and should only be
902 #        treated as informational.
904 # Since: 0.14.0
906 { 'struct': 'PciDeviceInfo',
907   'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
908            'class_info': 'PciDeviceClass', 'id': 'PciDeviceId',
909            '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
910            'regions': ['PciMemoryRegion']} }
913 # @PciInfo:
915 # Information about a PCI bus
917 # @bus: the bus index
919 # @devices: a list of devices on this bus
921 # Since: 0.14.0
923 { 'struct': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} }
926 # @query-pci:
928 # Return information about the PCI bus topology of the guest.
930 # Returns: a list of @PciInfo for each PCI bus. Each bus is
931 # represented by a json-object, which has a key with a json-array of
932 # all PCI devices attached to it. Each device is represented by a
933 # json-object.
935 # Since: 0.14.0
937 # Example:
939 # -> { "execute": "query-pci" }
940 # <- { "return": [
941 #          {
942 #             "bus": 0,
943 #             "devices": [
944 #                {
945 #                   "bus": 0,
946 #                   "qdev_id": "",
947 #                   "slot": 0,
948 #                   "class_info": {
949 #                      "class": 1536,
950 #                      "desc": "Host bridge"
951 #                   },
952 #                   "id": {
953 #                      "device": 32902,
954 #                      "vendor": 4663
955 #                   },
956 #                   "function": 0,
957 #                   "regions": [
958 #                   ]
959 #                },
960 #                {
961 #                   "bus": 0,
962 #                   "qdev_id": "",
963 #                   "slot": 1,
964 #                   "class_info": {
965 #                      "class": 1537,
966 #                      "desc": "ISA bridge"
967 #                   },
968 #                   "id": {
969 #                      "device": 32902,
970 #                      "vendor": 28672
971 #                   },
972 #                   "function": 0,
973 #                   "regions": [
974 #                   ]
975 #                },
976 #                {
977 #                   "bus": 0,
978 #                   "qdev_id": "",
979 #                   "slot": 1,
980 #                   "class_info": {
981 #                      "class": 257,
982 #                      "desc": "IDE controller"
983 #                   },
984 #                   "id": {
985 #                      "device": 32902,
986 #                      "vendor": 28688
987 #                   },
988 #                   "function": 1,
989 #                   "regions": [
990 #                      {
991 #                         "bar": 4,
992 #                         "size": 16,
993 #                         "address": 49152,
994 #                         "type": "io"
995 #                      }
996 #                   ]
997 #                },
998 #                {
999 #                   "bus": 0,
1000 #                   "qdev_id": "",
1001 #                   "slot": 2,
1002 #                   "class_info": {
1003 #                      "class": 768,
1004 #                      "desc": "VGA controller"
1005 #                   },
1006 #                   "id": {
1007 #                      "device": 4115,
1008 #                      "vendor": 184
1009 #                   },
1010 #                   "function": 0,
1011 #                   "regions": [
1012 #                      {
1013 #                         "prefetch": true,
1014 #                         "mem_type_64": false,
1015 #                         "bar": 0,
1016 #                         "size": 33554432,
1017 #                         "address": 4026531840,
1018 #                         "type": "memory"
1019 #                      },
1020 #                      {
1021 #                         "prefetch": false,
1022 #                         "mem_type_64": false,
1023 #                         "bar": 1,
1024 #                         "size": 4096,
1025 #                         "address": 4060086272,
1026 #                         "type": "memory"
1027 #                      },
1028 #                      {
1029 #                         "prefetch": false,
1030 #                         "mem_type_64": false,
1031 #                         "bar": 6,
1032 #                         "size": 65536,
1033 #                         "address": -1,
1034 #                         "type": "memory"
1035 #                      }
1036 #                   ]
1037 #                },
1038 #                {
1039 #                   "bus": 0,
1040 #                   "qdev_id": "",
1041 #                   "irq": 11,
1042 #                   "slot": 4,
1043 #                   "class_info": {
1044 #                      "class": 1280,
1045 #                      "desc": "RAM controller"
1046 #                   },
1047 #                   "id": {
1048 #                      "device": 6900,
1049 #                      "vendor": 4098
1050 #                   },
1051 #                   "function": 0,
1052 #                   "regions": [
1053 #                      {
1054 #                         "bar": 0,
1055 #                         "size": 32,
1056 #                         "address": 49280,
1057 #                         "type": "io"
1058 #                      }
1059 #                   ]
1060 #                }
1061 #             ]
1062 #          }
1063 #       ]
1064 #    }
1066 # Note: This example has been shortened as the real response is too long.
1069 { 'command': 'query-pci', 'returns': ['PciInfo'] }
1072 # @quit:
1074 # This command will cause the QEMU process to exit gracefully.  While every
1075 # attempt is made to send the QMP response before terminating, this is not
1076 # guaranteed.  When using this interface, a premature EOF would not be
1077 # unexpected.
1079 # Since: 0.14.0
1081 # Example:
1083 # -> { "execute": "quit" }
1084 # <- { "return": {} }
1086 { 'command': 'quit' }
1089 # @stop:
1091 # Stop all guest VCPU execution.
1093 # Since:  0.14.0
1095 # Notes:  This function will succeed even if the guest is already in the stopped
1096 #         state.  In "inmigrate" state, it will ensure that the guest
1097 #         remains paused once migration finishes, as if the -S option was
1098 #         passed on the command line.
1100 # Example:
1102 # -> { "execute": "stop" }
1103 # <- { "return": {} }
1106 { 'command': 'stop' }
1109 # @system_reset:
1111 # Performs a hard reset of a guest.
1113 # Since: 0.14.0
1115 # Example:
1117 # -> { "execute": "system_reset" }
1118 # <- { "return": {} }
1121 { 'command': 'system_reset' }
1124 # @system_powerdown:
1126 # Requests that a guest perform a powerdown operation.
1128 # Since: 0.14.0
1130 # Notes: A guest may or may not respond to this command.  This command
1131 #        returning does not indicate that a guest has accepted the request or
1132 #        that it has shut down.  Many guests will respond to this command by
1133 #        prompting the user in some way.
1134 # Example:
1136 # -> { "execute": "system_powerdown" }
1137 # <- { "return": {} }
1140 { 'command': 'system_powerdown' }
1143 # @cpu-add:
1145 # Adds CPU with specified ID
1147 # @id: ID of CPU to be created, valid values [0..max_cpus)
1149 # Returns: Nothing on success
1151 # Since: 1.5
1153 # Example:
1155 # -> { "execute": "cpu-add", "arguments": { "id": 2 } }
1156 # <- { "return": {} }
1159 { 'command': 'cpu-add', 'data': {'id': 'int'} }
1162 # @memsave:
1164 # Save a portion of guest memory to a file.
1166 # @val: the virtual address of the guest to start from
1168 # @size: the size of memory region to save
1170 # @filename: the file to save the memory to as binary data
1172 # @cpu-index: the index of the virtual CPU to use for translating the
1173 #                       virtual address (defaults to CPU 0)
1175 # Returns: Nothing on success
1177 # Since: 0.14.0
1179 # Notes: Errors were not reliably returned until 1.1
1181 # Example:
1183 # -> { "execute": "memsave",
1184 #      "arguments": { "val": 10,
1185 #                     "size": 100,
1186 #                     "filename": "/tmp/virtual-mem-dump" } }
1187 # <- { "return": {} }
1190 { 'command': 'memsave',
1191   'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
1194 # @pmemsave:
1196 # Save a portion of guest physical memory to a file.
1198 # @val: the physical address of the guest to start from
1200 # @size: the size of memory region to save
1202 # @filename: the file to save the memory to as binary data
1204 # Returns: Nothing on success
1206 # Since: 0.14.0
1208 # Notes: Errors were not reliably returned until 1.1
1210 # Example:
1212 # -> { "execute": "pmemsave",
1213 #      "arguments": { "val": 10,
1214 #                     "size": 100,
1215 #                     "filename": "/tmp/physical-mem-dump" } }
1216 # <- { "return": {} }
1219 { 'command': 'pmemsave',
1220   'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
1223 # @cont:
1225 # Resume guest VCPU execution.
1227 # Since:  0.14.0
1229 # Returns:  If successful, nothing
1231 # Notes:  This command will succeed if the guest is currently running.  It
1232 #         will also succeed if the guest is in the "inmigrate" state; in
1233 #         this case, the effect of the command is to make sure the guest
1234 #         starts once migration finishes, removing the effect of the -S
1235 #         command line option if it was passed.
1237 # Example:
1239 # -> { "execute": "cont" }
1240 # <- { "return": {} }
1243 { 'command': 'cont' }
1246 # @system_wakeup:
1248 # Wakeup guest from suspend.  Does nothing in case the guest isn't suspended.
1250 # Since:  1.1
1252 # Returns:  nothing.
1254 # Example:
1256 # -> { "execute": "system_wakeup" }
1257 # <- { "return": {} }
1260 { 'command': 'system_wakeup' }
1263 # @inject-nmi:
1265 # Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or all CPUs (ppc64).
1266 # The command fails when the guest doesn't support injecting.
1268 # Returns:  If successful, nothing
1270 # Since:  0.14.0
1272 # Note: prior to 2.1, this command was only supported for x86 and s390 VMs
1274 # Example:
1276 # -> { "execute": "inject-nmi" }
1277 # <- { "return": {} }
1280 { 'command': 'inject-nmi' }
1283 # @balloon:
1285 # Request the balloon driver to change its balloon size.
1287 # @value: the target size of the balloon in bytes
1289 # Returns: Nothing on success
1290 #          If the balloon driver is enabled but not functional because the KVM
1291 #            kernel module cannot support it, KvmMissingCap
1292 #          If no balloon device is present, DeviceNotActive
1294 # Notes: This command just issues a request to the guest.  When it returns,
1295 #        the balloon size may not have changed.  A guest can change the balloon
1296 #        size independent of this command.
1298 # Since: 0.14.0
1300 # Example:
1302 # -> { "execute": "balloon", "arguments": { "value": 536870912 } }
1303 # <- { "return": {} }
1306 { 'command': 'balloon', 'data': {'value': 'int'} }
1309 # @human-monitor-command:
1311 # Execute a command on the human monitor and return the output.
1313 # @command-line: the command to execute in the human monitor
1315 # @cpu-index: The CPU to use for commands that require an implicit CPU
1317 # Returns: the output of the command as a string
1319 # Since: 0.14.0
1321 # Notes: This command only exists as a stop-gap.  Its use is highly
1322 #        discouraged.  The semantics of this command are not
1323 #        guaranteed: this means that command names, arguments and
1324 #        responses can change or be removed at ANY time.  Applications
1325 #        that rely on long term stability guarantees should NOT
1326 #        use this command.
1328 #        Known limitations:
1330 #        * This command is stateless, this means that commands that depend
1331 #          on state information (such as getfd) might not work
1333 #        * Commands that prompt the user for data don't currently work
1335 # Example:
1337 # -> { "execute": "human-monitor-command",
1338 #      "arguments": { "command-line": "info kvm" } }
1339 # <- { "return": "kvm support: enabled\r\n" }
1342 { 'command': 'human-monitor-command',
1343   'data': {'command-line': 'str', '*cpu-index': 'int'},
1344   'returns': 'str' }
1347 # @ObjectPropertyInfo:
1349 # @name: the name of the property
1351 # @type: the type of the property.  This will typically come in one of four
1352 #        forms:
1354 #        1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
1355 #           These types are mapped to the appropriate JSON type.
1357 #        2) A child type in the form 'child<subtype>' where subtype is a qdev
1358 #           device type name.  Child properties create the composition tree.
1360 #        3) A link type in the form 'link<subtype>' where subtype is a qdev
1361 #           device type name.  Link properties form the device model graph.
1363 # @description: if specified, the description of the property.
1365 # Since: 1.2
1367 { 'struct': 'ObjectPropertyInfo',
1368   'data': { 'name': 'str', 'type': 'str', '*description': 'str' } }
1371 # @qom-list:
1373 # This command will list any properties of a object given a path in the object
1374 # model.
1376 # @path: the path within the object model.  See @qom-get for a description of
1377 #        this parameter.
1379 # Returns: a list of @ObjectPropertyInfo that describe the properties of the
1380 #          object.
1382 # Since: 1.2
1384 { 'command': 'qom-list',
1385   'data': { 'path': 'str' },
1386   'returns': [ 'ObjectPropertyInfo' ] }
1389 # @qom-get:
1391 # This command will get a property from a object model path and return the
1392 # value.
1394 # @path: The path within the object model.  There are two forms of supported
1395 #        paths--absolute and partial paths.
1397 #        Absolute paths are derived from the root object and can follow child<>
1398 #        or link<> properties.  Since they can follow link<> properties, they
1399 #        can be arbitrarily long.  Absolute paths look like absolute filenames
1400 #        and are prefixed  with a leading slash.
1402 #        Partial paths look like relative filenames.  They do not begin
1403 #        with a prefix.  The matching rules for partial paths are subtle but
1404 #        designed to make specifying objects easy.  At each level of the
1405 #        composition tree, the partial path is matched as an absolute path.
1406 #        The first match is not returned.  At least two matches are searched
1407 #        for.  A successful result is only returned if only one match is
1408 #        found.  If more than one match is found, a flag is return to
1409 #        indicate that the match was ambiguous.
1411 # @property: The property name to read
1413 # Returns: The property value.  The type depends on the property
1414 #          type. child<> and link<> properties are returned as #str
1415 #          pathnames.  All integer property types (u8, u16, etc) are
1416 #          returned as #int.
1418 # Since: 1.2
1420 { 'command': 'qom-get',
1421   'data': { 'path': 'str', 'property': 'str' },
1422   'returns': 'any' }
1425 # @qom-set:
1427 # This command will set a property from a object model path.
1429 # @path: see @qom-get for a description of this parameter
1431 # @property: the property name to set
1433 # @value: a value who's type is appropriate for the property type.  See @qom-get
1434 #         for a description of type mapping.
1436 # Since: 1.2
1438 { 'command': 'qom-set',
1439   'data': { 'path': 'str', 'property': 'str', 'value': 'any' } }
1442 # @change:
1444 # This command is multiple commands multiplexed together.
1446 # @device: This is normally the name of a block device but it may also be 'vnc'.
1447 #          when it's 'vnc', then sub command depends on @target
1449 # @target: If @device is a block device, then this is the new filename.
1450 #          If @device is 'vnc', then if the value 'password' selects the vnc
1451 #          change password command.   Otherwise, this specifies a new server URI
1452 #          address to listen to for VNC connections.
1454 # @arg:    If @device is a block device, then this is an optional format to open
1455 #          the device with.
1456 #          If @device is 'vnc' and @target is 'password', this is the new VNC
1457 #          password to set.  See change-vnc-password for additional notes.
1459 # Returns: Nothing on success.
1460 #          If @device is not a valid block device, DeviceNotFound
1462 # Notes:  This interface is deprecated, and it is strongly recommended that you
1463 #         avoid using it.  For changing block devices, use
1464 #         blockdev-change-medium; for changing VNC parameters, use
1465 #         change-vnc-password.
1467 # Since: 0.14.0
1469 # Example:
1471 # 1. Change a removable medium
1473 # -> { "execute": "change",
1474 #      "arguments": { "device": "ide1-cd0",
1475 #                     "target": "/srv/images/Fedora-12-x86_64-DVD.iso" } }
1476 # <- { "return": {} }
1478 # 2. Change VNC password
1480 # -> { "execute": "change",
1481 #      "arguments": { "device": "vnc", "target": "password",
1482 #                     "arg": "foobar1" } }
1483 # <- { "return": {} }
1486 { 'command': 'change',
1487   'data': {'device': 'str', 'target': 'str', '*arg': 'str'} }
1490 # @ObjectTypeInfo:
1492 # This structure describes a search result from @qom-list-types
1494 # @name: the type name found in the search
1496 # @abstract: the type is abstract and can't be directly instantiated.
1497 #            Omitted if false. (since 2.10)
1499 # @parent: Name of parent type, if any (since 2.10)
1501 # Since: 1.1
1503 { 'struct': 'ObjectTypeInfo',
1504   'data': { 'name': 'str', '*abstract': 'bool', '*parent': 'str' } }
1507 # @qom-list-types:
1509 # This command will return a list of types given search parameters
1511 # @implements: if specified, only return types that implement this type name
1513 # @abstract: if true, include abstract types in the results
1515 # Returns: a list of @ObjectTypeInfo or an empty list if no results are found
1517 # Since: 1.1
1519 { 'command': 'qom-list-types',
1520   'data': { '*implements': 'str', '*abstract': 'bool' },
1521   'returns': [ 'ObjectTypeInfo' ] }
1524 # @device-list-properties:
1526 # List properties associated with a device.
1528 # @typename: the type name of a device
1530 # Returns: a list of ObjectPropertyInfo describing a devices properties
1532 # Since: 1.2
1534 { 'command': 'device-list-properties',
1535   'data': { 'typename': 'str'},
1536   'returns': [ 'ObjectPropertyInfo' ] }
1539 # @qom-list-properties:
1541 # List properties associated with a QOM object.
1543 # @typename: the type name of an object
1545 # Returns: a list of ObjectPropertyInfo describing object properties
1547 # Since: 2.12
1549 { 'command': 'qom-list-properties',
1550   'data': { 'typename': 'str'},
1551   'returns': [ 'ObjectPropertyInfo' ] }
1554 # @xen-set-global-dirty-log:
1556 # Enable or disable the global dirty log mode.
1558 # @enable: true to enable, false to disable.
1560 # Returns: nothing
1562 # Since: 1.3
1564 # Example:
1566 # -> { "execute": "xen-set-global-dirty-log",
1567 #      "arguments": { "enable": true } }
1568 # <- { "return": {} }
1571 { 'command': 'xen-set-global-dirty-log', 'data': { 'enable': 'bool' } }
1574 # @device_add:
1576 # @driver: the name of the new device's driver
1578 # @bus: the device's parent bus (device tree path)
1580 # @id: the device's ID, must be unique
1582 # Additional arguments depend on the type.
1584 # Add a device.
1586 # Notes:
1587 # 1. For detailed information about this command, please refer to the
1588 #    'docs/qdev-device-use.txt' file.
1590 # 2. It's possible to list device properties by running QEMU with the
1591 #    "-device DEVICE,help" command-line argument, where DEVICE is the
1592 #    device's name
1594 # Example:
1596 # -> { "execute": "device_add",
1597 #      "arguments": { "driver": "e1000", "id": "net1",
1598 #                     "bus": "pci.0",
1599 #                     "mac": "52:54:00:12:34:56" } }
1600 # <- { "return": {} }
1602 # TODO: This command effectively bypasses QAPI completely due to its
1603 # "additional arguments" business.  It shouldn't have been added to
1604 # the schema in this form.  It should be qapified properly, or
1605 # replaced by a properly qapified command.
1607 # Since: 0.13
1609 { 'command': 'device_add',
1610   'data': {'driver': 'str', '*bus': 'str', '*id': 'str'},
1611   'gen': false } # so we can get the additional arguments
1614 # @device_del:
1616 # Remove a device from a guest
1618 # @id: the device's ID or QOM path
1620 # Returns: Nothing on success
1621 #          If @id is not a valid device, DeviceNotFound
1623 # Notes: When this command completes, the device may not be removed from the
1624 #        guest.  Hot removal is an operation that requires guest cooperation.
1625 #        This command merely requests that the guest begin the hot removal
1626 #        process.  Completion of the device removal process is signaled with a
1627 #        DEVICE_DELETED event. Guest reset will automatically complete removal
1628 #        for all devices.
1630 # Since: 0.14.0
1632 # Example:
1634 # -> { "execute": "device_del",
1635 #      "arguments": { "id": "net1" } }
1636 # <- { "return": {} }
1638 # -> { "execute": "device_del",
1639 #      "arguments": { "id": "/machine/peripheral-anon/device[0]" } }
1640 # <- { "return": {} }
1643 { 'command': 'device_del', 'data': {'id': 'str'} }
1646 # @DEVICE_DELETED:
1648 # Emitted whenever the device removal completion is acknowledged by the guest.
1649 # At this point, it's safe to reuse the specified device ID. Device removal can
1650 # be initiated by the guest or by HMP/QMP commands.
1652 # @device: device name
1654 # @path: device path
1656 # Since: 1.5
1658 # Example:
1660 # <- { "event": "DEVICE_DELETED",
1661 #      "data": { "device": "virtio-net-pci-0",
1662 #                "path": "/machine/peripheral/virtio-net-pci-0" },
1663 #      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
1666 { 'event': 'DEVICE_DELETED',
1667   'data': { '*device': 'str', 'path': 'str' } }
1670 # @DumpGuestMemoryFormat:
1672 # An enumeration of guest-memory-dump's format.
1674 # @elf: elf format
1676 # @kdump-zlib: kdump-compressed format with zlib-compressed
1678 # @kdump-lzo: kdump-compressed format with lzo-compressed
1680 # @kdump-snappy: kdump-compressed format with snappy-compressed
1682 # Since: 2.0
1684 { 'enum': 'DumpGuestMemoryFormat',
1685   'data': [ 'elf', 'kdump-zlib', 'kdump-lzo', 'kdump-snappy' ] }
1688 # @dump-guest-memory:
1690 # Dump guest's memory to vmcore. It is a synchronous operation that can take
1691 # very long depending on the amount of guest memory.
1693 # @paging: if true, do paging to get guest's memory mapping. This allows
1694 #          using gdb to process the core file.
1696 #          IMPORTANT: this option can make QEMU allocate several gigabytes
1697 #                     of RAM. This can happen for a large guest, or a
1698 #                     malicious guest pretending to be large.
1700 #          Also, paging=true has the following limitations:
1702 #             1. The guest may be in a catastrophic state or can have corrupted
1703 #                memory, which cannot be trusted
1704 #             2. The guest can be in real-mode even if paging is enabled. For
1705 #                example, the guest uses ACPI to sleep, and ACPI sleep state
1706 #                goes in real-mode
1707 #             3. Currently only supported on i386 and x86_64.
1709 # @protocol: the filename or file descriptor of the vmcore. The supported
1710 #            protocols are:
1712 #            1. file: the protocol starts with "file:", and the following
1713 #               string is the file's path.
1714 #            2. fd: the protocol starts with "fd:", and the following string
1715 #               is the fd's name.
1717 # @detach: if true, QMP will return immediately rather than
1718 #          waiting for the dump to finish. The user can track progress
1719 #          using "query-dump". (since 2.6).
1721 # @begin: if specified, the starting physical address.
1723 # @length: if specified, the memory size, in bytes. If you don't
1724 #          want to dump all guest's memory, please specify the start @begin
1725 #          and @length
1727 # @format: if specified, the format of guest memory dump. But non-elf
1728 #          format is conflict with paging and filter, ie. @paging, @begin and
1729 #          @length is not allowed to be specified with non-elf @format at the
1730 #          same time (since 2.0)
1732 # Note: All boolean arguments default to false
1734 # Returns: nothing on success
1736 # Since: 1.2
1738 # Example:
1740 # -> { "execute": "dump-guest-memory",
1741 #      "arguments": { "protocol": "fd:dump" } }
1742 # <- { "return": {} }
1745 { 'command': 'dump-guest-memory',
1746   'data': { 'paging': 'bool', 'protocol': 'str', '*detach': 'bool',
1747             '*begin': 'int', '*length': 'int',
1748             '*format': 'DumpGuestMemoryFormat'} }
1751 # @DumpStatus:
1753 # Describe the status of a long-running background guest memory dump.
1755 # @none: no dump-guest-memory has started yet.
1757 # @active: there is one dump running in background.
1759 # @completed: the last dump has finished successfully.
1761 # @failed: the last dump has failed.
1763 # Since: 2.6
1765 { 'enum': 'DumpStatus',
1766   'data': [ 'none', 'active', 'completed', 'failed' ] }
1769 # @DumpQueryResult:
1771 # The result format for 'query-dump'.
1773 # @status: enum of @DumpStatus, which shows current dump status
1775 # @completed: bytes written in latest dump (uncompressed)
1777 # @total: total bytes to be written in latest dump (uncompressed)
1779 # Since: 2.6
1781 { 'struct': 'DumpQueryResult',
1782   'data': { 'status': 'DumpStatus',
1783             'completed': 'int',
1784             'total': 'int' } }
1787 # @query-dump:
1789 # Query latest dump status.
1791 # Returns: A @DumpStatus object showing the dump status.
1793 # Since: 2.6
1795 # Example:
1797 # -> { "execute": "query-dump" }
1798 # <- { "return": { "status": "active", "completed": 1024000,
1799 #                  "total": 2048000 } }
1802 { 'command': 'query-dump', 'returns': 'DumpQueryResult' }
1805 # @DUMP_COMPLETED:
1807 # Emitted when background dump has completed
1809 # @result: final dump status
1811 # @error: human-readable error string that provides
1812 #         hint on why dump failed. Only presents on failure. The
1813 #         user should not try to interpret the error string.
1815 # Since: 2.6
1817 # Example:
1819 # { "event": "DUMP_COMPLETED",
1820 #   "data": {"result": {"total": 1090650112, "status": "completed",
1821 #                       "completed": 1090650112} } }
1824 { 'event': 'DUMP_COMPLETED' ,
1825   'data': { 'result': 'DumpQueryResult', '*error': 'str' } }
1828 # @DumpGuestMemoryCapability:
1830 # A list of the available formats for dump-guest-memory
1832 # Since: 2.0
1834 { 'struct': 'DumpGuestMemoryCapability',
1835   'data': {
1836       'formats': ['DumpGuestMemoryFormat'] } }
1839 # @query-dump-guest-memory-capability:
1841 # Returns the available formats for dump-guest-memory
1843 # Returns:  A @DumpGuestMemoryCapability object listing available formats for
1844 #           dump-guest-memory
1846 # Since: 2.0
1848 # Example:
1850 # -> { "execute": "query-dump-guest-memory-capability" }
1851 # <- { "return": { "formats":
1852 #                  ["elf", "kdump-zlib", "kdump-lzo", "kdump-snappy"] }
1855 { 'command': 'query-dump-guest-memory-capability',
1856   'returns': 'DumpGuestMemoryCapability' }
1859 # @dump-skeys:
1861 # Dump guest's storage keys
1863 # @filename: the path to the file to dump to
1865 # This command is only supported on s390 architecture.
1867 # Since: 2.5
1869 # Example:
1871 # -> { "execute": "dump-skeys",
1872 #      "arguments": { "filename": "/tmp/skeys" } }
1873 # <- { "return": {} }
1876 { 'command': 'dump-skeys',
1877   'data': { 'filename': 'str' } }
1880 # @object-add:
1882 # Create a QOM object.
1884 # @qom-type: the class name for the object to be created
1886 # @id: the name of the new object
1888 # @props: a dictionary of properties to be passed to the backend
1890 # Returns: Nothing on success
1891 #          Error if @qom-type is not a valid class name
1893 # Since: 2.0
1895 # Example:
1897 # -> { "execute": "object-add",
1898 #      "arguments": { "qom-type": "rng-random", "id": "rng1",
1899 #                     "props": { "filename": "/dev/hwrng" } } }
1900 # <- { "return": {} }
1903 { 'command': 'object-add',
1904   'data': {'qom-type': 'str', 'id': 'str', '*props': 'any'} }
1907 # @object-del:
1909 # Remove a QOM object.
1911 # @id: the name of the QOM object to remove
1913 # Returns: Nothing on success
1914 #          Error if @id is not a valid id for a QOM object
1916 # Since: 2.0
1918 # Example:
1920 # -> { "execute": "object-del", "arguments": { "id": "rng1" } }
1921 # <- { "return": {} }
1924 { 'command': 'object-del', 'data': {'id': 'str'} }
1927 # @getfd:
1929 # Receive a file descriptor via SCM rights and assign it a name
1931 # @fdname: file descriptor name
1933 # Returns: Nothing on success
1935 # Since: 0.14.0
1937 # Notes: If @fdname already exists, the file descriptor assigned to
1938 #        it will be closed and replaced by the received file
1939 #        descriptor.
1941 #        The 'closefd' command can be used to explicitly close the
1942 #        file descriptor when it is no longer needed.
1944 # Example:
1946 # -> { "execute": "getfd", "arguments": { "fdname": "fd1" } }
1947 # <- { "return": {} }
1950 { 'command': 'getfd', 'data': {'fdname': 'str'} }
1953 # @closefd:
1955 # Close a file descriptor previously passed via SCM rights
1957 # @fdname: file descriptor name
1959 # Returns: Nothing on success
1961 # Since: 0.14.0
1963 # Example:
1965 # -> { "execute": "closefd", "arguments": { "fdname": "fd1" } }
1966 # <- { "return": {} }
1969 { 'command': 'closefd', 'data': {'fdname': 'str'} }
1972 # @MachineInfo:
1974 # Information describing a machine.
1976 # @name: the name of the machine
1978 # @alias: an alias for the machine name
1980 # @is-default: whether the machine is default
1982 # @cpu-max: maximum number of CPUs supported by the machine type
1983 #           (since 1.5.0)
1985 # @hotpluggable-cpus: cpu hotplug via -device is supported (since 2.7.0)
1987 # Since: 1.2.0
1989 { 'struct': 'MachineInfo',
1990   'data': { 'name': 'str', '*alias': 'str',
1991             '*is-default': 'bool', 'cpu-max': 'int',
1992             'hotpluggable-cpus': 'bool'} }
1995 # @query-machines:
1997 # Return a list of supported machines
1999 # Returns: a list of MachineInfo
2001 # Since: 1.2.0
2003 { 'command': 'query-machines', 'returns': ['MachineInfo'] }
2006 # @CpuDefinitionInfo:
2008 # Virtual CPU definition.
2010 # @name: the name of the CPU definition
2012 # @migration-safe: whether a CPU definition can be safely used for
2013 #                  migration in combination with a QEMU compatibility machine
2014 #                  when migrating between different QMU versions and between
2015 #                  hosts with different sets of (hardware or software)
2016 #                  capabilities. If not provided, information is not available
2017 #                  and callers should not assume the CPU definition to be
2018 #                  migration-safe. (since 2.8)
2020 # @static: whether a CPU definition is static and will not change depending on
2021 #          QEMU version, machine type, machine options and accelerator options.
2022 #          A static model is always migration-safe. (since 2.8)
2024 # @unavailable-features: List of properties that prevent
2025 #                        the CPU model from running in the current
2026 #                        host. (since 2.8)
2027 # @typename: Type name that can be used as argument to @device-list-properties,
2028 #            to introspect properties configurable using -cpu or -global.
2029 #            (since 2.9)
2031 # @unavailable-features is a list of QOM property names that
2032 # represent CPU model attributes that prevent the CPU from running.
2033 # If the QOM property is read-only, that means there's no known
2034 # way to make the CPU model run in the current host. Implementations
2035 # that choose not to provide specific information return the
2036 # property name "type".
2037 # If the property is read-write, it means that it MAY be possible
2038 # to run the CPU model in the current host if that property is
2039 # changed. Management software can use it as hints to suggest or
2040 # choose an alternative for the user, or just to generate meaningful
2041 # error messages explaining why the CPU model can't be used.
2042 # If @unavailable-features is an empty list, the CPU model is
2043 # runnable using the current host and machine-type.
2044 # If @unavailable-features is not present, runnability
2045 # information for the CPU is not available.
2047 # Since: 1.2.0
2049 { 'struct': 'CpuDefinitionInfo',
2050   'data': { 'name': 'str', '*migration-safe': 'bool', 'static': 'bool',
2051             '*unavailable-features': [ 'str' ], 'typename': 'str' } }
2054 # @MemoryInfo:
2056 # Actual memory information in bytes.
2058 # @base-memory: size of "base" memory specified with command line
2059 #               option -m.
2061 # @plugged-memory: size of memory that can be hot-unplugged. This field
2062 #                  is omitted if target doesn't support memory hotplug
2063 #                  (i.e. CONFIG_MEM_HOTPLUG not defined on build time).
2065 # Since: 2.11.0
2067 { 'struct': 'MemoryInfo',
2068   'data'  : { 'base-memory': 'size', '*plugged-memory': 'size' } }
2071 # @query-memory-size-summary:
2073 # Return the amount of initially allocated and present hotpluggable (if
2074 # enabled) memory in bytes.
2076 # Example:
2078 # -> { "execute": "query-memory-size-summary" }
2079 # <- { "return": { "base-memory": 4294967296, "plugged-memory": 0 } }
2081 # Since: 2.11.0
2083 { 'command': 'query-memory-size-summary', 'returns': 'MemoryInfo' }
2086 # @query-cpu-definitions:
2088 # Return a list of supported virtual CPU definitions
2090 # Returns: a list of CpuDefInfo
2092 # Since: 1.2.0
2094 { 'command': 'query-cpu-definitions', 'returns': ['CpuDefinitionInfo'] }
2097 # @CpuModelInfo:
2099 # Virtual CPU model.
2101 # A CPU model consists of the name of a CPU definition, to which
2102 # delta changes are applied (e.g. features added/removed). Most magic values
2103 # that an architecture might require should be hidden behind the name.
2104 # However, if required, architectures can expose relevant properties.
2106 # @name: the name of the CPU definition the model is based on
2107 # @props: a dictionary of QOM properties to be applied
2109 # Since: 2.8.0
2111 { 'struct': 'CpuModelInfo',
2112   'data': { 'name': 'str',
2113             '*props': 'any' } }
2116 # @CpuModelExpansionType:
2118 # An enumeration of CPU model expansion types.
2120 # @static: Expand to a static CPU model, a combination of a static base
2121 #          model name and property delta changes. As the static base model will
2122 #          never change, the expanded CPU model will be the same, independent of
2123 #          independent of QEMU version, machine type, machine options, and
2124 #          accelerator options. Therefore, the resulting model can be used by
2125 #          tooling without having to specify a compatibility machine - e.g. when
2126 #          displaying the "host" model. static CPU models are migration-safe.
2128 # @full: Expand all properties. The produced model is not guaranteed to be
2129 #        migration-safe, but allows tooling to get an insight and work with
2130 #        model details.
2132 # Note: When a non-migration-safe CPU model is expanded in static mode, some
2133 # features enabled by the CPU model may be omitted, because they can't be
2134 # implemented by a static CPU model definition (e.g. cache info passthrough and
2135 # PMU passthrough in x86). If you need an accurate representation of the
2136 # features enabled by a non-migration-safe CPU model, use @full. If you need a
2137 # static representation that will keep ABI compatibility even when changing QEMU
2138 # version or machine-type, use @static (but keep in mind that some features may
2139 # be omitted).
2141 # Since: 2.8.0
2143 { 'enum': 'CpuModelExpansionType',
2144   'data': [ 'static', 'full' ] }
2148 # @CpuModelExpansionInfo:
2150 # The result of a cpu model expansion.
2152 # @model: the expanded CpuModelInfo.
2154 # Since: 2.8.0
2156 { 'struct': 'CpuModelExpansionInfo',
2157   'data': { 'model': 'CpuModelInfo' } }
2161 # @query-cpu-model-expansion:
2163 # Expands a given CPU model (or a combination of CPU model + additional options)
2164 # to different granularities, allowing tooling to get an understanding what a
2165 # specific CPU model looks like in QEMU under a certain configuration.
2167 # This interface can be used to query the "host" CPU model.
2169 # The data returned by this command may be affected by:
2171 # * QEMU version: CPU models may look different depending on the QEMU version.
2172 #   (Except for CPU models reported as "static" in query-cpu-definitions.)
2173 # * machine-type: CPU model  may look different depending on the machine-type.
2174 #   (Except for CPU models reported as "static" in query-cpu-definitions.)
2175 # * machine options (including accelerator): in some architectures, CPU models
2176 #   may look different depending on machine and accelerator options. (Except for
2177 #   CPU models reported as "static" in query-cpu-definitions.)
2178 # * "-cpu" arguments and global properties: arguments to the -cpu option and
2179 #   global properties may affect expansion of CPU models. Using
2180 #   query-cpu-model-expansion while using these is not advised.
2182 # Some architectures may not support all expansion types. s390x supports
2183 # "full" and "static".
2185 # Returns: a CpuModelExpansionInfo. Returns an error if expanding CPU models is
2186 #          not supported, if the model cannot be expanded, if the model contains
2187 #          an unknown CPU definition name, unknown properties or properties
2188 #          with a wrong type. Also returns an error if an expansion type is
2189 #          not supported.
2191 # Since: 2.8.0
2193 { 'command': 'query-cpu-model-expansion',
2194   'data': { 'type': 'CpuModelExpansionType',
2195             'model': 'CpuModelInfo' },
2196   'returns': 'CpuModelExpansionInfo' }
2199 # @CpuModelCompareResult:
2201 # An enumeration of CPU model comparison results. The result is usually
2202 # calculated using e.g. CPU features or CPU generations.
2204 # @incompatible: If model A is incompatible to model B, model A is not
2205 #                guaranteed to run where model B runs and the other way around.
2207 # @identical: If model A is identical to model B, model A is guaranteed to run
2208 #             where model B runs and the other way around.
2210 # @superset: If model A is a superset of model B, model B is guaranteed to run
2211 #            where model A runs. There are no guarantees about the other way.
2213 # @subset: If model A is a subset of model B, model A is guaranteed to run
2214 #          where model B runs. There are no guarantees about the other way.
2216 # Since: 2.8.0
2218 { 'enum': 'CpuModelCompareResult',
2219   'data': [ 'incompatible', 'identical', 'superset', 'subset' ] }
2222 # @CpuModelCompareInfo:
2224 # The result of a CPU model comparison.
2226 # @result: The result of the compare operation.
2227 # @responsible-properties: List of properties that led to the comparison result
2228 #                          not being identical.
2230 # @responsible-properties is a list of QOM property names that led to
2231 # both CPUs not being detected as identical. For identical models, this
2232 # list is empty.
2233 # If a QOM property is read-only, that means there's no known way to make the
2234 # CPU models identical. If the special property name "type" is included, the
2235 # models are by definition not identical and cannot be made identical.
2237 # Since: 2.8.0
2239 { 'struct': 'CpuModelCompareInfo',
2240   'data': {'result': 'CpuModelCompareResult',
2241            'responsible-properties': ['str']
2242           }
2246 # @query-cpu-model-comparison:
2248 # Compares two CPU models, returning how they compare in a specific
2249 # configuration. The results indicates how both models compare regarding
2250 # runnability. This result can be used by tooling to make decisions if a
2251 # certain CPU model will run in a certain configuration or if a compatible
2252 # CPU model has to be created by baselining.
2254 # Usually, a CPU model is compared against the maximum possible CPU model
2255 # of a certain configuration (e.g. the "host" model for KVM). If that CPU
2256 # model is identical or a subset, it will run in that configuration.
2258 # The result returned by this command may be affected by:
2260 # * QEMU version: CPU models may look different depending on the QEMU version.
2261 #   (Except for CPU models reported as "static" in query-cpu-definitions.)
2262 # * machine-type: CPU model may look different depending on the machine-type.
2263 #   (Except for CPU models reported as "static" in query-cpu-definitions.)
2264 # * machine options (including accelerator): in some architectures, CPU models
2265 #   may look different depending on machine and accelerator options. (Except for
2266 #   CPU models reported as "static" in query-cpu-definitions.)
2267 # * "-cpu" arguments and global properties: arguments to the -cpu option and
2268 #   global properties may affect expansion of CPU models. Using
2269 #   query-cpu-model-expansion while using these is not advised.
2271 # Some architectures may not support comparing CPU models. s390x supports
2272 # comparing CPU models.
2274 # Returns: a CpuModelBaselineInfo. Returns an error if comparing CPU models is
2275 #          not supported, if a model cannot be used, if a model contains
2276 #          an unknown cpu definition name, unknown properties or properties
2277 #          with wrong types.
2279 # Since: 2.8.0
2281 { 'command': 'query-cpu-model-comparison',
2282   'data': { 'modela': 'CpuModelInfo', 'modelb': 'CpuModelInfo' },
2283   'returns': 'CpuModelCompareInfo' }
2286 # @CpuModelBaselineInfo:
2288 # The result of a CPU model baseline.
2290 # @model: the baselined CpuModelInfo.
2292 # Since: 2.8.0
2294 { 'struct': 'CpuModelBaselineInfo',
2295   'data': { 'model': 'CpuModelInfo' } }
2298 # @query-cpu-model-baseline:
2300 # Baseline two CPU models, creating a compatible third model. The created
2301 # model will always be a static, migration-safe CPU model (see "static"
2302 # CPU model expansion for details).
2304 # This interface can be used by tooling to create a compatible CPU model out
2305 # two CPU models. The created CPU model will be identical to or a subset of
2306 # both CPU models when comparing them. Therefore, the created CPU model is
2307 # guaranteed to run where the given CPU models run.
2309 # The result returned by this command may be affected by:
2311 # * QEMU version: CPU models may look different depending on the QEMU version.
2312 #   (Except for CPU models reported as "static" in query-cpu-definitions.)
2313 # * machine-type: CPU model may look different depending on the machine-type.
2314 #   (Except for CPU models reported as "static" in query-cpu-definitions.)
2315 # * machine options (including accelerator): in some architectures, CPU models
2316 #   may look different depending on machine and accelerator options. (Except for
2317 #   CPU models reported as "static" in query-cpu-definitions.)
2318 # * "-cpu" arguments and global properties: arguments to the -cpu option and
2319 #   global properties may affect expansion of CPU models. Using
2320 #   query-cpu-model-expansion while using these is not advised.
2322 # Some architectures may not support baselining CPU models. s390x supports
2323 # baselining CPU models.
2325 # Returns: a CpuModelBaselineInfo. Returns an error if baselining CPU models is
2326 #          not supported, if a model cannot be used, if a model contains
2327 #          an unknown cpu definition name, unknown properties or properties
2328 #          with wrong types.
2330 # Since: 2.8.0
2332 { 'command': 'query-cpu-model-baseline',
2333   'data': { 'modela': 'CpuModelInfo',
2334             'modelb': 'CpuModelInfo' },
2335   'returns': 'CpuModelBaselineInfo' }
2338 # @AddfdInfo:
2340 # Information about a file descriptor that was added to an fd set.
2342 # @fdset-id: The ID of the fd set that @fd was added to.
2344 # @fd: The file descriptor that was received via SCM rights and
2345 #      added to the fd set.
2347 # Since: 1.2.0
2349 { 'struct': 'AddfdInfo', 'data': {'fdset-id': 'int', 'fd': 'int'} }
2352 # @add-fd:
2354 # Add a file descriptor, that was passed via SCM rights, to an fd set.
2356 # @fdset-id: The ID of the fd set to add the file descriptor to.
2358 # @opaque: A free-form string that can be used to describe the fd.
2360 # Returns: @AddfdInfo on success
2362 #          If file descriptor was not received, FdNotSupplied
2364 #          If @fdset-id is a negative value, InvalidParameterValue
2366 # Notes: The list of fd sets is shared by all monitor connections.
2368 #        If @fdset-id is not specified, a new fd set will be created.
2370 # Since: 1.2.0
2372 # Example:
2374 # -> { "execute": "add-fd", "arguments": { "fdset-id": 1 } }
2375 # <- { "return": { "fdset-id": 1, "fd": 3 } }
2378 { 'command': 'add-fd', 'data': {'*fdset-id': 'int', '*opaque': 'str'},
2379   'returns': 'AddfdInfo' }
2382 # @remove-fd:
2384 # Remove a file descriptor from an fd set.
2386 # @fdset-id: The ID of the fd set that the file descriptor belongs to.
2388 # @fd: The file descriptor that is to be removed.
2390 # Returns: Nothing on success
2391 #          If @fdset-id or @fd is not found, FdNotFound
2393 # Since: 1.2.0
2395 # Notes: The list of fd sets is shared by all monitor connections.
2397 #        If @fd is not specified, all file descriptors in @fdset-id
2398 #        will be removed.
2400 # Example:
2402 # -> { "execute": "remove-fd", "arguments": { "fdset-id": 1, "fd": 3 } }
2403 # <- { "return": {} }
2406 { 'command': 'remove-fd', 'data': {'fdset-id': 'int', '*fd': 'int'} }
2409 # @FdsetFdInfo:
2411 # Information about a file descriptor that belongs to an fd set.
2413 # @fd: The file descriptor value.
2415 # @opaque: A free-form string that can be used to describe the fd.
2417 # Since: 1.2.0
2419 { 'struct': 'FdsetFdInfo',
2420   'data': {'fd': 'int', '*opaque': 'str'} }
2423 # @FdsetInfo:
2425 # Information about an fd set.
2427 # @fdset-id: The ID of the fd set.
2429 # @fds: A list of file descriptors that belong to this fd set.
2431 # Since: 1.2.0
2433 { 'struct': 'FdsetInfo',
2434   'data': {'fdset-id': 'int', 'fds': ['FdsetFdInfo']} }
2437 # @query-fdsets:
2439 # Return information describing all fd sets.
2441 # Returns: A list of @FdsetInfo
2443 # Since: 1.2.0
2445 # Note: The list of fd sets is shared by all monitor connections.
2447 # Example:
2449 # -> { "execute": "query-fdsets" }
2450 # <- { "return": [
2451 #        {
2452 #          "fds": [
2453 #            {
2454 #              "fd": 30,
2455 #              "opaque": "rdonly:/path/to/file"
2456 #            },
2457 #            {
2458 #              "fd": 24,
2459 #              "opaque": "rdwr:/path/to/file"
2460 #            }
2461 #          ],
2462 #          "fdset-id": 1
2463 #        },
2464 #        {
2465 #          "fds": [
2466 #            {
2467 #              "fd": 28
2468 #            },
2469 #            {
2470 #              "fd": 29
2471 #            }
2472 #          ],
2473 #          "fdset-id": 0
2474 #        }
2475 #      ]
2476 #    }
2479 { 'command': 'query-fdsets', 'returns': ['FdsetInfo'] }
2482 # @TargetInfo:
2484 # Information describing the QEMU target.
2486 # @arch: the target architecture
2488 # Since: 1.2.0
2490 { 'struct': 'TargetInfo',
2491   'data': { 'arch': 'SysEmuTarget' } }
2494 # @query-target:
2496 # Return information about the target for this QEMU
2498 # Returns: TargetInfo
2500 # Since: 1.2.0
2502 { 'command': 'query-target', 'returns': 'TargetInfo' }
2505 # @AcpiTableOptions:
2507 # Specify an ACPI table on the command line to load.
2509 # At most one of @file and @data can be specified. The list of files specified
2510 # by any one of them is loaded and concatenated in order. If both are omitted,
2511 # @data is implied.
2513 # Other fields / optargs can be used to override fields of the generic ACPI
2514 # table header; refer to the ACPI specification 5.0, section 5.2.6 System
2515 # Description Table Header. If a header field is not overridden, then the
2516 # corresponding value from the concatenated blob is used (in case of @file), or
2517 # it is filled in with a hard-coded value (in case of @data).
2519 # String fields are copied into the matching ACPI member from lowest address
2520 # upwards, and silently truncated / NUL-padded to length.
2522 # @sig: table signature / identifier (4 bytes)
2524 # @rev: table revision number (dependent on signature, 1 byte)
2526 # @oem_id: OEM identifier (6 bytes)
2528 # @oem_table_id: OEM table identifier (8 bytes)
2530 # @oem_rev: OEM-supplied revision number (4 bytes)
2532 # @asl_compiler_id: identifier of the utility that created the table
2533 #                   (4 bytes)
2535 # @asl_compiler_rev: revision number of the utility that created the
2536 #                    table (4 bytes)
2538 # @file: colon (:) separated list of pathnames to load and
2539 #        concatenate as table data. The resultant binary blob is expected to
2540 #        have an ACPI table header. At least one file is required. This field
2541 #        excludes @data.
2543 # @data: colon (:) separated list of pathnames to load and
2544 #        concatenate as table data. The resultant binary blob must not have an
2545 #        ACPI table header. At least one file is required. This field excludes
2546 #        @file.
2548 # Since: 1.5
2550 { 'struct': 'AcpiTableOptions',
2551   'data': {
2552     '*sig':               'str',
2553     '*rev':               'uint8',
2554     '*oem_id':            'str',
2555     '*oem_table_id':      'str',
2556     '*oem_rev':           'uint32',
2557     '*asl_compiler_id':   'str',
2558     '*asl_compiler_rev':  'uint32',
2559     '*file':              'str',
2560     '*data':              'str' }}
2563 # @CommandLineParameterType:
2565 # Possible types for an option parameter.
2567 # @string: accepts a character string
2569 # @boolean: accepts "on" or "off"
2571 # @number: accepts a number
2573 # @size: accepts a number followed by an optional suffix (K)ilo,
2574 #        (M)ega, (G)iga, (T)era
2576 # Since: 1.5
2578 { 'enum': 'CommandLineParameterType',
2579   'data': ['string', 'boolean', 'number', 'size'] }
2582 # @CommandLineParameterInfo:
2584 # Details about a single parameter of a command line option.
2586 # @name: parameter name
2588 # @type: parameter @CommandLineParameterType
2590 # @help: human readable text string, not suitable for parsing.
2592 # @default: default value string (since 2.1)
2594 # Since: 1.5
2596 { 'struct': 'CommandLineParameterInfo',
2597   'data': { 'name': 'str',
2598             'type': 'CommandLineParameterType',
2599             '*help': 'str',
2600             '*default': 'str' } }
2603 # @CommandLineOptionInfo:
2605 # Details about a command line option, including its list of parameter details
2607 # @option: option name
2609 # @parameters: an array of @CommandLineParameterInfo
2611 # Since: 1.5
2613 { 'struct': 'CommandLineOptionInfo',
2614   'data': { 'option': 'str', 'parameters': ['CommandLineParameterInfo'] } }
2617 # @query-command-line-options:
2619 # Query command line option schema.
2621 # @option: option name
2623 # Returns: list of @CommandLineOptionInfo for all options (or for the given
2624 #          @option).  Returns an error if the given @option doesn't exist.
2626 # Since: 1.5
2628 # Example:
2630 # -> { "execute": "query-command-line-options",
2631 #      "arguments": { "option": "option-rom" } }
2632 # <- { "return": [
2633 #         {
2634 #             "parameters": [
2635 #                 {
2636 #                     "name": "romfile",
2637 #                     "type": "string"
2638 #                 },
2639 #                 {
2640 #                     "name": "bootindex",
2641 #                     "type": "number"
2642 #                 }
2643 #             ],
2644 #             "option": "option-rom"
2645 #         }
2646 #      ]
2647 #    }
2650 {'command': 'query-command-line-options', 'data': { '*option': 'str' },
2651  'returns': ['CommandLineOptionInfo'] }
2654 # @X86CPURegister32:
2656 # A X86 32-bit register
2658 # Since: 1.5
2660 { 'enum': 'X86CPURegister32',
2661   'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
2664 # @X86CPUFeatureWordInfo:
2666 # Information about a X86 CPU feature word
2668 # @cpuid-input-eax: Input EAX value for CPUID instruction for that feature word
2670 # @cpuid-input-ecx: Input ECX value for CPUID instruction for that
2671 #                   feature word
2673 # @cpuid-register: Output register containing the feature bits
2675 # @features: value of output register, containing the feature bits
2677 # Since: 1.5
2679 { 'struct': 'X86CPUFeatureWordInfo',
2680   'data': { 'cpuid-input-eax': 'int',
2681             '*cpuid-input-ecx': 'int',
2682             'cpuid-register': 'X86CPURegister32',
2683             'features': 'int' } }
2686 # @DummyForceArrays:
2688 # Not used by QMP; hack to let us use X86CPUFeatureWordInfoList internally
2690 # Since: 2.5
2692 { 'struct': 'DummyForceArrays',
2693   'data': { 'unused': ['X86CPUFeatureWordInfo'] } }
2697 # @NumaOptionsType:
2699 # @node: NUMA nodes configuration
2701 # @dist: NUMA distance configuration (since 2.10)
2703 # @cpu: property based CPU(s) to node mapping (Since: 2.10)
2705 # Since: 2.1
2707 { 'enum': 'NumaOptionsType',
2708   'data': [ 'node', 'dist', 'cpu' ] }
2711 # @NumaOptions:
2713 # A discriminated record of NUMA options. (for OptsVisitor)
2715 # Since: 2.1
2717 { 'union': 'NumaOptions',
2718   'base': { 'type': 'NumaOptionsType' },
2719   'discriminator': 'type',
2720   'data': {
2721     'node': 'NumaNodeOptions',
2722     'dist': 'NumaDistOptions',
2723     'cpu': 'NumaCpuOptions' }}
2726 # @NumaNodeOptions:
2728 # Create a guest NUMA node. (for OptsVisitor)
2730 # @nodeid: NUMA node ID (increase by 1 from 0 if omitted)
2732 # @cpus: VCPUs belonging to this node (assign VCPUS round-robin
2733 #         if omitted)
2735 # @mem: memory size of this node; mutually exclusive with @memdev.
2736 #       Equally divide total memory among nodes if both @mem and @memdev are
2737 #       omitted.
2739 # @memdev: memory backend object.  If specified for one node,
2740 #          it must be specified for all nodes.
2742 # Since: 2.1
2744 { 'struct': 'NumaNodeOptions',
2745   'data': {
2746    '*nodeid': 'uint16',
2747    '*cpus':   ['uint16'],
2748    '*mem':    'size',
2749    '*memdev': 'str' }}
2752 # @NumaDistOptions:
2754 # Set the distance between 2 NUMA nodes.
2756 # @src: source NUMA node.
2758 # @dst: destination NUMA node.
2760 # @val: NUMA distance from source node to destination node.
2761 #       When a node is unreachable from another node, set the distance
2762 #       between them to 255.
2764 # Since: 2.10
2766 { 'struct': 'NumaDistOptions',
2767   'data': {
2768    'src': 'uint16',
2769    'dst': 'uint16',
2770    'val': 'uint8' }}
2773 # @NumaCpuOptions:
2775 # Option "-numa cpu" overrides default cpu to node mapping.
2776 # It accepts the same set of cpu properties as returned by
2777 # query-hotpluggable-cpus[].props, where node-id could be used to
2778 # override default node mapping.
2780 # Since: 2.10
2782 { 'struct': 'NumaCpuOptions',
2783    'base': 'CpuInstanceProperties',
2784    'data' : {} }
2787 # @HostMemPolicy:
2789 # Host memory policy types
2791 # @default: restore default policy, remove any nondefault policy
2793 # @preferred: set the preferred host nodes for allocation
2795 # @bind: a strict policy that restricts memory allocation to the
2796 #        host nodes specified
2798 # @interleave: memory allocations are interleaved across the set
2799 #              of host nodes specified
2801 # Since: 2.1
2803 { 'enum': 'HostMemPolicy',
2804   'data': [ 'default', 'preferred', 'bind', 'interleave' ] }
2807 # @Memdev:
2809 # Information about memory backend
2811 # @id: backend's ID if backend has 'id' property (since 2.9)
2813 # @size: memory backend size
2815 # @merge: enables or disables memory merge support
2817 # @dump: includes memory backend's memory in a core dump or not
2819 # @prealloc: enables or disables memory preallocation
2821 # @host-nodes: host nodes for its memory policy
2823 # @policy: memory policy of memory backend
2825 # Since: 2.1
2827 { 'struct': 'Memdev',
2828   'data': {
2829     '*id':        'str',
2830     'size':       'size',
2831     'merge':      'bool',
2832     'dump':       'bool',
2833     'prealloc':   'bool',
2834     'host-nodes': ['uint16'],
2835     'policy':     'HostMemPolicy' }}
2838 # @query-memdev:
2840 # Returns information for all memory backends.
2842 # Returns: a list of @Memdev.
2844 # Since: 2.1
2846 # Example:
2848 # -> { "execute": "query-memdev" }
2849 # <- { "return": [
2850 #        {
2851 #          "id": "mem1",
2852 #          "size": 536870912,
2853 #          "merge": false,
2854 #          "dump": true,
2855 #          "prealloc": false,
2856 #          "host-nodes": [0, 1],
2857 #          "policy": "bind"
2858 #        },
2859 #        {
2860 #          "size": 536870912,
2861 #          "merge": false,
2862 #          "dump": true,
2863 #          "prealloc": true,
2864 #          "host-nodes": [2, 3],
2865 #          "policy": "preferred"
2866 #        }
2867 #      ]
2868 #    }
2871 { 'command': 'query-memdev', 'returns': ['Memdev'] }
2874 # @PCDIMMDeviceInfo:
2876 # PCDIMMDevice state information
2878 # @id: device's ID
2880 # @addr: physical address, where device is mapped
2882 # @size: size of memory that the device provides
2884 # @slot: slot number at which device is plugged in
2886 # @node: NUMA node number where device is plugged in
2888 # @memdev: memory backend linked with device
2890 # @hotplugged: true if device was hotplugged
2892 # @hotpluggable: true if device if could be added/removed while machine is running
2894 # Since: 2.1
2896 { 'struct': 'PCDIMMDeviceInfo',
2897   'data': { '*id': 'str',
2898             'addr': 'int',
2899             'size': 'int',
2900             'slot': 'int',
2901             'node': 'int',
2902             'memdev': 'str',
2903             'hotplugged': 'bool',
2904             'hotpluggable': 'bool'
2905           }
2909 # @MemoryDeviceInfo:
2911 # Union containing information about a memory device
2913 # Since: 2.1
2915 { 'union': 'MemoryDeviceInfo',
2916   'data': { 'dimm': 'PCDIMMDeviceInfo',
2917             'nvdimm': 'PCDIMMDeviceInfo'
2918           }
2922 # @query-memory-devices:
2924 # Lists available memory devices and their state
2926 # Since: 2.1
2928 # Example:
2930 # -> { "execute": "query-memory-devices" }
2931 # <- { "return": [ { "data":
2932 #                       { "addr": 5368709120,
2933 #                         "hotpluggable": true,
2934 #                         "hotplugged": true,
2935 #                         "id": "d1",
2936 #                         "memdev": "/objects/memX",
2937 #                         "node": 0,
2938 #                         "size": 1073741824,
2939 #                         "slot": 0},
2940 #                    "type": "dimm"
2941 #                  } ] }
2944 { 'command': 'query-memory-devices', 'returns': ['MemoryDeviceInfo'] }
2947 # @MEM_UNPLUG_ERROR:
2949 # Emitted when memory hot unplug error occurs.
2951 # @device: device name
2953 # @msg: Informative message
2955 # Since: 2.4
2957 # Example:
2959 # <- { "event": "MEM_UNPLUG_ERROR"
2960 #      "data": { "device": "dimm1",
2961 #                "msg": "acpi: device unplug for unsupported device"
2962 #      },
2963 #      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
2966 { 'event': 'MEM_UNPLUG_ERROR',
2967   'data': { 'device': 'str', 'msg': 'str' } }
2970 # @ACPISlotType:
2972 # @DIMM: memory slot
2973 # @CPU: logical CPU slot (since 2.7)
2975 { 'enum': 'ACPISlotType', 'data': [ 'DIMM', 'CPU' ] }
2978 # @ACPIOSTInfo:
2980 # OSPM Status Indication for a device
2981 # For description of possible values of @source and @status fields
2982 # see "_OST (OSPM Status Indication)" chapter of ACPI5.0 spec.
2984 # @device: device ID associated with slot
2986 # @slot: slot ID, unique per slot of a given @slot-type
2988 # @slot-type: type of the slot
2990 # @source: an integer containing the source event
2992 # @status: an integer containing the status code
2994 # Since: 2.1
2996 { 'struct': 'ACPIOSTInfo',
2997   'data'  : { '*device': 'str',
2998               'slot': 'str',
2999               'slot-type': 'ACPISlotType',
3000               'source': 'int',
3001               'status': 'int' } }
3004 # @query-acpi-ospm-status:
3006 # Return a list of ACPIOSTInfo for devices that support status
3007 # reporting via ACPI _OST method.
3009 # Since: 2.1
3011 # Example:
3013 # -> { "execute": "query-acpi-ospm-status" }
3014 # <- { "return": [ { "device": "d1", "slot": "0", "slot-type": "DIMM", "source": 1, "status": 0},
3015 #                  { "slot": "1", "slot-type": "DIMM", "source": 0, "status": 0},
3016 #                  { "slot": "2", "slot-type": "DIMM", "source": 0, "status": 0},
3017 #                  { "slot": "3", "slot-type": "DIMM", "source": 0, "status": 0}
3018 #    ]}
3021 { 'command': 'query-acpi-ospm-status', 'returns': ['ACPIOSTInfo'] }
3024 # @ACPI_DEVICE_OST:
3026 # Emitted when guest executes ACPI _OST method.
3028 # @info: OSPM Status Indication
3030 # Since: 2.1
3032 # Example:
3034 # <- { "event": "ACPI_DEVICE_OST",
3035 #      "data": { "device": "d1", "slot": "0",
3036 #                "slot-type": "DIMM", "source": 1, "status": 0 } }
3039 { 'event': 'ACPI_DEVICE_OST',
3040      'data': { 'info': 'ACPIOSTInfo' } }
3043 # @rtc-reset-reinjection:
3045 # This command will reset the RTC interrupt reinjection backlog.
3046 # Can be used if another mechanism to synchronize guest time
3047 # is in effect, for example QEMU guest agent's guest-set-time
3048 # command.
3050 # Since: 2.1
3052 # Example:
3054 # -> { "execute": "rtc-reset-reinjection" }
3055 # <- { "return": {} }
3058 { 'command': 'rtc-reset-reinjection' }
3061 # @RTC_CHANGE:
3063 # Emitted when the guest changes the RTC time.
3065 # @offset: offset between base RTC clock (as specified by -rtc base), and
3066 #          new RTC clock value
3068 # Note: This event is rate-limited.
3070 # Since: 0.13.0
3072 # Example:
3074 # <-   { "event": "RTC_CHANGE",
3075 #        "data": { "offset": 78 },
3076 #        "timestamp": { "seconds": 1267020223, "microseconds": 435656 } }
3079 { 'event': 'RTC_CHANGE',
3080   'data': { 'offset': 'int' } }
3083 # @ReplayMode:
3085 # Mode of the replay subsystem.
3087 # @none: normal execution mode. Replay or record are not enabled.
3089 # @record: record mode. All non-deterministic data is written into the
3090 #          replay log.
3092 # @play: replay mode. Non-deterministic data required for system execution
3093 #        is read from the log.
3095 # Since: 2.5
3097 { 'enum': 'ReplayMode',
3098   'data': [ 'none', 'record', 'play' ] }
3101 # @xen-load-devices-state:
3103 # Load the state of all devices from file. The RAM and the block devices
3104 # of the VM are not loaded by this command.
3106 # @filename: the file to load the state of the devices from as binary
3107 # data. See xen-save-devices-state.txt for a description of the binary
3108 # format.
3110 # Since: 2.7
3112 # Example:
3114 # -> { "execute": "xen-load-devices-state",
3115 #      "arguments": { "filename": "/tmp/resume" } }
3116 # <- { "return": {} }
3119 { 'command': 'xen-load-devices-state', 'data': {'filename': 'str'} }
3122 # @GICCapability:
3124 # The struct describes capability for a specific GIC (Generic
3125 # Interrupt Controller) version. These bits are not only decided by
3126 # QEMU/KVM software version, but also decided by the hardware that
3127 # the program is running upon.
3129 # @version:  version of GIC to be described. Currently, only 2 and 3
3130 #            are supported.
3132 # @emulated: whether current QEMU/hardware supports emulated GIC
3133 #            device in user space.
3135 # @kernel:   whether current QEMU/hardware supports hardware
3136 #            accelerated GIC device in kernel.
3138 # Since: 2.6
3140 { 'struct': 'GICCapability',
3141   'data': { 'version': 'int',
3142             'emulated': 'bool',
3143             'kernel': 'bool' } }
3146 # @query-gic-capabilities:
3148 # This command is ARM-only. It will return a list of GICCapability
3149 # objects that describe its capability bits.
3151 # Returns: a list of GICCapability objects.
3153 # Since: 2.6
3155 # Example:
3157 # -> { "execute": "query-gic-capabilities" }
3158 # <- { "return": [{ "version": 2, "emulated": true, "kernel": false },
3159 #                 { "version": 3, "emulated": false, "kernel": true } ] }
3162 { 'command': 'query-gic-capabilities', 'returns': ['GICCapability'] }
3165 # @CpuInstanceProperties:
3167 # List of properties to be used for hotplugging a CPU instance,
3168 # it should be passed by management with device_add command when
3169 # a CPU is being hotplugged.
3171 # @node-id: NUMA node ID the CPU belongs to
3172 # @socket-id: socket number within node/board the CPU belongs to
3173 # @core-id: core number within socket the CPU belongs to
3174 # @thread-id: thread number within core the CPU belongs to
3176 # Note: currently there are 4 properties that could be present
3177 # but management should be prepared to pass through other
3178 # properties with device_add command to allow for future
3179 # interface extension. This also requires the filed names to be kept in
3180 # sync with the properties passed to -device/device_add.
3182 # Since: 2.7
3184 { 'struct': 'CpuInstanceProperties',
3185   'data': { '*node-id': 'int',
3186             '*socket-id': 'int',
3187             '*core-id': 'int',
3188             '*thread-id': 'int'
3189   }
3193 # @HotpluggableCPU:
3195 # @type: CPU object type for usage with device_add command
3196 # @props: list of properties to be used for hotplugging CPU
3197 # @vcpus-count: number of logical VCPU threads @HotpluggableCPU provides
3198 # @qom-path: link to existing CPU object if CPU is present or
3199 #            omitted if CPU is not present.
3201 # Since: 2.7
3203 { 'struct': 'HotpluggableCPU',
3204   'data': { 'type': 'str',
3205             'vcpus-count': 'int',
3206             'props': 'CpuInstanceProperties',
3207             '*qom-path': 'str'
3208           }
3212 # @query-hotpluggable-cpus:
3214 # Returns: a list of HotpluggableCPU objects.
3216 # Since: 2.7
3218 # Example:
3220 # For pseries machine type started with -smp 2,cores=2,maxcpus=4 -cpu POWER8:
3222 # -> { "execute": "query-hotpluggable-cpus" }
3223 # <- {"return": [
3224 #      { "props": { "core": 8 }, "type": "POWER8-spapr-cpu-core",
3225 #        "vcpus-count": 1 },
3226 #      { "props": { "core": 0 }, "type": "POWER8-spapr-cpu-core",
3227 #        "vcpus-count": 1, "qom-path": "/machine/unattached/device[0]"}
3228 #    ]}'
3230 # For pc machine type started with -smp 1,maxcpus=2:
3232 # -> { "execute": "query-hotpluggable-cpus" }
3233 # <- {"return": [
3234 #      {
3235 #         "type": "qemu64-x86_64-cpu", "vcpus-count": 1,
3236 #         "props": {"core-id": 0, "socket-id": 1, "thread-id": 0}
3237 #      },
3238 #      {
3239 #         "qom-path": "/machine/unattached/device[0]",
3240 #         "type": "qemu64-x86_64-cpu", "vcpus-count": 1,
3241 #         "props": {"core-id": 0, "socket-id": 0, "thread-id": 0}
3242 #      }
3243 #    ]}
3245 # For s390x-virtio-ccw machine type started with -smp 1,maxcpus=2 -cpu qemu
3246 # (Since: 2.11):
3248 # -> { "execute": "query-hotpluggable-cpus" }
3249 # <- {"return": [
3250 #      {
3251 #         "type": "qemu-s390x-cpu", "vcpus-count": 1,
3252 #         "props": { "core-id": 1 }
3253 #      },
3254 #      {
3255 #         "qom-path": "/machine/unattached/device[0]",
3256 #         "type": "qemu-s390x-cpu", "vcpus-count": 1,
3257 #         "props": { "core-id": 0 }
3258 #      }
3259 #    ]}
3262 { 'command': 'query-hotpluggable-cpus', 'returns': ['HotpluggableCPU'] }
3265 # @GuidInfo:
3267 # GUID information.
3269 # @guid: the globally unique identifier
3271 # Since: 2.9
3273 { 'struct': 'GuidInfo', 'data': {'guid': 'str'} }
3276 # @query-vm-generation-id:
3278 # Show Virtual Machine Generation ID
3280 # Since: 2.9
3282 { 'command': 'query-vm-generation-id', 'returns': 'GuidInfo' }
3286 # @SevState:
3288 # An enumeration of SEV state information used during @query-sev.
3290 # @uninit: The guest is uninitialized.
3292 # @launch-update: The guest is currently being launched; plaintext data and
3293 #                 register state is being imported.
3295 # @launch-secret: The guest is currently being launched; ciphertext data
3296 #                 is being imported.
3298 # @running: The guest is fully launched or migrated in.
3300 # @send-update: The guest is currently being migrated out to another machine.
3302 # @receive-update: The guest is currently being migrated from another machine.
3304 # Since: 2.12
3306 { 'enum': 'SevState',
3307   'data': ['uninit', 'launch-update', 'launch-secret', 'running',
3308            'send-update', 'receive-update' ] }
3311 # @SevInfo:
3313 # Information about Secure Encrypted Virtualization (SEV) support
3315 # @enabled: true if SEV is active
3317 # @api-major: SEV API major version
3319 # @api-minor: SEV API minor version
3321 # @build-id: SEV FW build id
3323 # @policy: SEV policy value
3325 # @state: SEV guest state
3327 # @handle: SEV firmware handle
3329 # Since: 2.12
3331 { 'struct': 'SevInfo',
3332     'data': { 'enabled': 'bool',
3333               'api-major': 'uint8',
3334               'api-minor' : 'uint8',
3335               'build-id' : 'uint8',
3336               'policy' : 'uint32',
3337               'state' : 'SevState',
3338               'handle' : 'uint32'
3339             }
3343 # @query-sev:
3345 # Returns information about SEV
3347 # Returns: @SevInfo
3349 # Since: 2.12
3351 # Example:
3353 # -> { "execute": "query-sev" }
3354 # <- { "return": { "enabled": true, "api-major" : 0, "api-minor" : 0,
3355 #                  "build-id" : 0, "policy" : 0, "state" : "running",
3356 #                  "handle" : 1 } }
3359 { 'command': 'query-sev', 'returns': 'SevInfo' }
3362 # @SevLaunchMeasureInfo:
3364 # SEV Guest Launch measurement information
3366 # @data: the measurement value encoded in base64
3368 # Since: 2.12
3371 { 'struct': 'SevLaunchMeasureInfo', 'data': {'data': 'str'} }
3374 # @query-sev-launch-measure:
3376 # Query the SEV guest launch information.
3378 # Returns: The @SevLaunchMeasureInfo for the guest
3380 # Since: 2.12
3382 # Example:
3384 # -> { "execute": "query-sev-launch-measure" }
3385 # <- { "return": { "data": "4l8LXeNlSPUDlXPJG5966/8%YZ" } }
3388 { 'command': 'query-sev-launch-measure', 'returns': 'SevLaunchMeasureInfo' }
3391 # @SevCapability:
3393 # The struct describes capability for a Secure Encrypted Virtualization
3394 # feature.
3396 # @pdh:  Platform Diffie-Hellman key (base64 encoded)
3398 # @cert-chain:  PDH certificate chain (base64 encoded)
3400 # @cbitpos: C-bit location in page table entry
3402 # @reduced-phys-bits: Number of physical Address bit reduction when SEV is
3403 #                     enabled
3405 # Since: 2.12
3407 { 'struct': 'SevCapability',
3408   'data': { 'pdh': 'str',
3409             'cert-chain': 'str',
3410             'cbitpos': 'int',
3411             'reduced-phys-bits': 'int'} }
3414 # @query-sev-capabilities:
3416 # This command is used to get the SEV capabilities, and is supported on AMD
3417 # X86 platforms only.
3419 # Returns: SevCapability objects.
3421 # Since: 2.12
3423 # Example:
3425 # -> { "execute": "query-sev-capabilities" }
3426 # <- { "return": { "pdh": "8CCDD8DDD", "cert-chain": "888CCCDDDEE",
3427 #                  "cbitpos": 47, "reduced-phys-bits": 5}}
3430 { 'command': 'query-sev-capabilities', 'returns': 'SevCapability' }
3433 # @CommandDropReason:
3435 # Reasons that caused one command to be dropped.
3437 # @queue-full: the command queue is full. This can only occur when
3438 #              the client sends a new non-oob command before the
3439 #              response to the previous non-oob command has been
3440 #              received.
3442 # Since: 2.12
3444 { 'enum': 'CommandDropReason',
3445   'data': [ 'queue-full' ] }
3448 # @COMMAND_DROPPED:
3450 # Emitted when a command is dropped due to some reason.  Commands can
3451 # only be dropped when the oob capability is enabled.
3453 # @id: The dropped command's "id" field.
3455 # @reason: The reason why the command is dropped.
3457 # Since: 2.12
3459 # Example:
3461 # { "event": "COMMAND_DROPPED",
3462 #   "data": {"result": {"id": "libvirt-102",
3463 #                       "reason": "queue-full" } } }
3466 { 'event': 'COMMAND_DROPPED' ,
3467   'data': { 'id': 'any', 'reason': 'CommandDropReason' } }
3470 # @x-oob-test:
3472 # Test OOB functionality.  When sending this command with lock=true,
3473 # it'll try to hang the dispatcher.  When sending it with lock=false,
3474 # it'll try to notify the locked thread to continue.  Note: it should
3475 # only be used by QMP test program rather than anything else.
3477 # Since: 2.12
3479 # Example:
3481 # { "execute": "x-oob-test",
3482 #   "arguments": { "lock": true } }
3484 { 'command': 'x-oob-test', 'data' : { 'lock': 'bool' },
3485   'allow-oob': true }