qemu-char: append opt to stop truncation of serial file
[qemu/ar7.git] / qapi-schema.json
blob516b14526b95b504e966e97f8973fb7eecf937d4
1 # -*- Mode: Python -*-
3 # QAPI Schema
5 # QAPI common definitions
6 { 'include': 'qapi/common.json' }
8 # QAPI crypto definitions
9 { 'include': 'qapi/crypto.json' }
11 # QAPI block definitions
12 { 'include': 'qapi/block.json' }
14 # QAPI event definitions
15 { 'include': 'qapi/event.json' }
17 # Tracing commands
18 { 'include': 'qapi/trace.json' }
20 # QAPI introspection
21 { 'include': 'qapi/introspect.json' }
24 # @LostTickPolicy:
26 # Policy for handling lost ticks in timer devices.
28 # @discard: throw away the missed tick(s) and continue with future injection
29 #           normally.  Guest time may be delayed, unless the OS has explicit
30 #           handling of lost ticks
32 # @delay: continue to deliver ticks at the normal rate.  Guest time will be
33 #         delayed due to the late tick
35 # @merge: merge the missed tick(s) into one tick and inject.  Guest time
36 #         may be delayed, depending on how the OS reacts to the merging
37 #         of ticks
39 # @slew: deliver ticks at a higher rate to catch up with the missed tick. The
40 #        guest time should not be delayed once catchup is complete.
42 # Since: 2.0
44 { 'enum': 'LostTickPolicy',
45   'data': ['discard', 'delay', 'merge', 'slew' ] }
47 # @add_client
49 # Allow client connections for VNC, Spice and socket based
50 # character devices to be passed in to QEMU via SCM_RIGHTS.
52 # @protocol: protocol name. Valid names are "vnc", "spice" or the
53 #            name of a character device (eg. from -chardev id=XXXX)
55 # @fdname: file descriptor name previously passed via 'getfd' command
57 # @skipauth: #optional whether to skip authentication. Only applies
58 #            to "vnc" and "spice" protocols
60 # @tls: #optional whether to perform TLS. Only applies to the "spice"
61 #       protocol
63 # Returns: nothing on success.
65 # Since: 0.14.0
67 { 'command': 'add_client',
68   'data': { 'protocol': 'str', 'fdname': 'str', '*skipauth': 'bool',
69             '*tls': 'bool' } }
72 # @NameInfo:
74 # Guest name information.
76 # @name: #optional The name of the guest
78 # Since 0.14.0
80 { 'struct': 'NameInfo', 'data': {'*name': 'str'} }
83 # @query-name:
85 # Return the name information of a guest.
87 # Returns: @NameInfo of the guest
89 # Since 0.14.0
91 { 'command': 'query-name', 'returns': 'NameInfo' }
94 # @KvmInfo:
96 # Information about support for KVM acceleration
98 # @enabled: true if KVM acceleration is active
100 # @present: true if KVM acceleration is built into this executable
102 # Since: 0.14.0
104 { 'struct': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} }
107 # @query-kvm:
109 # Returns information about KVM acceleration
111 # Returns: @KvmInfo
113 # Since: 0.14.0
115 { 'command': 'query-kvm', 'returns': 'KvmInfo' }
118 # @RunState
120 # An enumeration of VM run states.
122 # @debug: QEMU is running on a debugger
124 # @finish-migrate: guest is paused to finish the migration process
126 # @inmigrate: guest is paused waiting for an incoming migration.  Note
127 # that this state does not tell whether the machine will start at the
128 # end of the migration.  This depends on the command-line -S option and
129 # any invocation of 'stop' or 'cont' that has happened since QEMU was
130 # started.
132 # @internal-error: An internal error that prevents further guest execution
133 # has occurred
135 # @io-error: the last IOP has failed and the device is configured to pause
136 # on I/O errors
138 # @paused: guest has been paused via the 'stop' command
140 # @postmigrate: guest is paused following a successful 'migrate'
142 # @prelaunch: QEMU was started with -S and guest has not started
144 # @restore-vm: guest is paused to restore VM state
146 # @running: guest is actively running
148 # @save-vm: guest is paused to save the VM state
150 # @shutdown: guest is shut down (and -no-shutdown is in use)
152 # @suspended: guest is suspended (ACPI S3)
154 # @watchdog: the watchdog action is configured to pause and has been triggered
156 # @guest-panicked: guest has been panicked as a result of guest OS panic
158 { 'enum': 'RunState',
159   'data': [ 'debug', 'inmigrate', 'internal-error', 'io-error', 'paused',
160             'postmigrate', 'prelaunch', 'finish-migrate', 'restore-vm',
161             'running', 'save-vm', 'shutdown', 'suspended', 'watchdog',
162             'guest-panicked' ] }
165 # @StatusInfo:
167 # Information about VCPU run state
169 # @running: true if all VCPUs are runnable, false if not runnable
171 # @singlestep: true if VCPUs are in single-step mode
173 # @status: the virtual machine @RunState
175 # Since:  0.14.0
177 # Notes: @singlestep is enabled through the GDB stub
179 { 'struct': 'StatusInfo',
180   'data': {'running': 'bool', 'singlestep': 'bool', 'status': 'RunState'} }
183 # @query-status:
185 # Query the run status of all VCPUs
187 # Returns: @StatusInfo reflecting all VCPUs
189 # Since:  0.14.0
191 { 'command': 'query-status', 'returns': 'StatusInfo' }
194 # @UuidInfo:
196 # Guest UUID information.
198 # @UUID: the UUID of the guest
200 # Since: 0.14.0
202 # Notes: If no UUID was specified for the guest, a null UUID is returned.
204 { 'struct': 'UuidInfo', 'data': {'UUID': 'str'} }
207 # @query-uuid:
209 # Query the guest UUID information.
211 # Returns: The @UuidInfo for the guest
213 # Since 0.14.0
215 { 'command': 'query-uuid', 'returns': 'UuidInfo' }
218 # @ChardevInfo:
220 # Information about a character device.
222 # @label: the label of the character device
224 # @filename: the filename of the character device
226 # @frontend-open: shows whether the frontend device attached to this backend
227 #                 (eg. with the chardev=... option) is in open or closed state
228 #                 (since 2.1)
230 # Notes: @filename is encoded using the QEMU command line character device
231 #        encoding.  See the QEMU man page for details.
233 # Since: 0.14.0
235 { 'struct': 'ChardevInfo', 'data': {'label': 'str',
236                                   'filename': 'str',
237                                   'frontend-open': 'bool'} }
240 # @query-chardev:
242 # Returns information about current character devices.
244 # Returns: a list of @ChardevInfo
246 # Since: 0.14.0
248 { 'command': 'query-chardev', 'returns': ['ChardevInfo'] }
251 # @ChardevBackendInfo:
253 # Information about a character device backend
255 # @name: The backend name
257 # Since: 2.0
259 { 'struct': 'ChardevBackendInfo', 'data': {'name': 'str'} }
262 # @query-chardev-backends:
264 # Returns information about character device backends.
266 # Returns: a list of @ChardevBackendInfo
268 # Since: 2.0
270 { 'command': 'query-chardev-backends', 'returns': ['ChardevBackendInfo'] }
273 # @DataFormat:
275 # An enumeration of data format.
277 # @utf8: Data is a UTF-8 string (RFC 3629)
279 # @base64: Data is Base64 encoded binary (RFC 3548)
281 # Since: 1.4
283 { 'enum': 'DataFormat',
284   'data': [ 'utf8', 'base64' ] }
287 # @ringbuf-write:
289 # Write to a ring buffer character device.
291 # @device: the ring buffer character device name
293 # @data: data to write
295 # @format: #optional data encoding (default 'utf8').
296 #          - base64: data must be base64 encoded text.  Its binary
297 #            decoding gets written.
298 #            Bug: invalid base64 is currently not rejected.
299 #            Whitespace *is* invalid.
300 #          - utf8: data's UTF-8 encoding is written
301 #          - data itself is always Unicode regardless of format, like
302 #            any other string.
304 # Returns: Nothing on success
306 # Since: 1.4
308 { 'command': 'ringbuf-write',
309   'data': {'device': 'str', 'data': 'str',
310            '*format': 'DataFormat'} }
313 # @ringbuf-read:
315 # Read from a ring buffer character device.
317 # @device: the ring buffer character device name
319 # @size: how many bytes to read at most
321 # @format: #optional data encoding (default 'utf8').
322 #          - base64: the data read is returned in base64 encoding.
323 #          - utf8: the data read is interpreted as UTF-8.
324 #            Bug: can screw up when the buffer contains invalid UTF-8
325 #            sequences, NUL characters, after the ring buffer lost
326 #            data, and when reading stops because the size limit is
327 #            reached.
328 #          - The return value is always Unicode regardless of format,
329 #            like any other string.
331 # Returns: data read from the device
333 # Since: 1.4
335 { 'command': 'ringbuf-read',
336   'data': {'device': 'str', 'size': 'int', '*format': 'DataFormat'},
337   'returns': 'str' }
340 # @EventInfo:
342 # Information about a QMP event
344 # @name: The event name
346 # Since: 1.2.0
348 { 'struct': 'EventInfo', 'data': {'name': 'str'} }
351 # @query-events:
353 # Return a list of supported QMP events by this server
355 # Returns: A list of @EventInfo for all supported events
357 # Since: 1.2.0
359 { 'command': 'query-events', 'returns': ['EventInfo'] }
362 # @MigrationStats
364 # Detailed migration status.
366 # @transferred: amount of bytes already transferred to the target VM
368 # @remaining: amount of bytes remaining to be transferred to the target VM
370 # @total: total amount of bytes involved in the migration process
372 # @duplicate: number of duplicate (zero) pages (since 1.2)
374 # @skipped: number of skipped zero pages (since 1.5)
376 # @normal : number of normal pages (since 1.2)
378 # @normal-bytes: number of normal bytes sent (since 1.2)
380 # @dirty-pages-rate: number of pages dirtied by second by the
381 #        guest (since 1.3)
383 # @mbps: throughput in megabits/sec. (since 1.6)
385 # @dirty-sync-count: number of times that dirty ram was synchronized (since 2.1)
387 # Since: 0.14.0
389 { 'struct': 'MigrationStats',
390   'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' ,
391            'duplicate': 'int', 'skipped': 'int', 'normal': 'int',
392            'normal-bytes': 'int', 'dirty-pages-rate' : 'int',
393            'mbps' : 'number', 'dirty-sync-count' : 'int' } }
396 # @XBZRLECacheStats
398 # Detailed XBZRLE migration cache statistics
400 # @cache-size: XBZRLE cache size
402 # @bytes: amount of bytes already transferred to the target VM
404 # @pages: amount of pages transferred to the target VM
406 # @cache-miss: number of cache miss
408 # @cache-miss-rate: rate of cache miss (since 2.1)
410 # @overflow: number of overflows
412 # Since: 1.2
414 { 'struct': 'XBZRLECacheStats',
415   'data': {'cache-size': 'int', 'bytes': 'int', 'pages': 'int',
416            'cache-miss': 'int', 'cache-miss-rate': 'number',
417            'overflow': 'int' } }
419 # @MigrationStatus:
421 # An enumeration of migration status.
423 # @none: no migration has ever happened.
425 # @setup: migration process has been initiated.
427 # @cancelling: in the process of cancelling migration.
429 # @cancelled: cancelling migration is finished.
431 # @active: in the process of doing migration.
433 # @postcopy-active: like active, but now in postcopy mode. (since 2.5)
435 # @completed: migration is finished.
437 # @failed: some error occurred during migration process.
439 # Since: 2.3
442 { 'enum': 'MigrationStatus',
443   'data': [ 'none', 'setup', 'cancelling', 'cancelled',
444             'active', 'postcopy-active', 'completed', 'failed' ] }
447 # @MigrationInfo
449 # Information about current migration process.
451 # @status: #optional @MigrationStatus describing the current migration status.
452 #          If this field is not returned, no migration process
453 #          has been initiated
455 # @ram: #optional @MigrationStats containing detailed migration
456 #       status, only returned if status is 'active' or
457 #       'completed'(since 1.2)
459 # @disk: #optional @MigrationStats containing detailed disk migration
460 #        status, only returned if status is 'active' and it is a block
461 #        migration
463 # @xbzrle-cache: #optional @XBZRLECacheStats containing detailed XBZRLE
464 #                migration statistics, only returned if XBZRLE feature is on and
465 #                status is 'active' or 'completed' (since 1.2)
467 # @total-time: #optional total amount of milliseconds since migration started.
468 #        If migration has ended, it returns the total migration
469 #        time. (since 1.2)
471 # @downtime: #optional only present when migration finishes correctly
472 #        total downtime in milliseconds for the guest.
473 #        (since 1.3)
475 # @expected-downtime: #optional only present while migration is active
476 #        expected downtime in milliseconds for the guest in last walk
477 #        of the dirty bitmap. (since 1.3)
479 # @setup-time: #optional amount of setup time in milliseconds _before_ the
480 #        iterations begin but _after_ the QMP command is issued. This is designed
481 #        to provide an accounting of any activities (such as RDMA pinning) which
482 #        may be expensive, but do not actually occur during the iterative
483 #        migration rounds themselves. (since 1.6)
485 # @x-cpu-throttle-percentage: #optional percentage of time guest cpus are being
486 #       throttled during auto-converge. This is only present when auto-converge
487 #       has started throttling guest cpus. (Since 2.5)
489 # Since: 0.14.0
491 { 'struct': 'MigrationInfo',
492   'data': {'*status': 'MigrationStatus', '*ram': 'MigrationStats',
493            '*disk': 'MigrationStats',
494            '*xbzrle-cache': 'XBZRLECacheStats',
495            '*total-time': 'int',
496            '*expected-downtime': 'int',
497            '*downtime': 'int',
498            '*setup-time': 'int',
499            '*x-cpu-throttle-percentage': 'int'} }
502 # @query-migrate
504 # Returns information about current migration process.
506 # Returns: @MigrationInfo
508 # Since: 0.14.0
510 { 'command': 'query-migrate', 'returns': 'MigrationInfo' }
513 # @MigrationCapability
515 # Migration capabilities enumeration
517 # @xbzrle: Migration supports xbzrle (Xor Based Zero Run Length Encoding).
518 #          This feature allows us to minimize migration traffic for certain work
519 #          loads, by sending compressed difference of the pages
521 # @rdma-pin-all: Controls whether or not the entire VM memory footprint is
522 #          mlock()'d on demand or all at once. Refer to docs/rdma.txt for usage.
523 #          Disabled by default. (since 2.0)
525 # @zero-blocks: During storage migration encode blocks of zeroes efficiently. This
526 #          essentially saves 1MB of zeroes per block on the wire. Enabling requires
527 #          source and target VM to support this feature. To enable it is sufficient
528 #          to enable the capability on the source VM. The feature is disabled by
529 #          default. (since 1.6)
531 # @compress: Use multiple compression threads to accelerate live migration.
532 #          This feature can help to reduce the migration traffic, by sending
533 #          compressed pages. Please note that if compress and xbzrle are both
534 #          on, compress only takes effect in the ram bulk stage, after that,
535 #          it will be disabled and only xbzrle takes effect, this can help to
536 #          minimize migration traffic. The feature is disabled by default.
537 #          (since 2.4 )
539 # @events: generate events for each migration state change
540 #          (since 2.4 )
542 # @auto-converge: If enabled, QEMU will automatically throttle down the guest
543 #          to speed up convergence of RAM migration. (since 1.6)
545 # @x-postcopy-ram: Start executing on the migration target before all of RAM has
546 #          been migrated, pulling the remaining pages along as needed. NOTE: If
547 #          the migration fails during postcopy the VM will fail.  (since 2.5)
549 # Since: 1.2
551 { 'enum': 'MigrationCapability',
552   'data': ['xbzrle', 'rdma-pin-all', 'auto-converge', 'zero-blocks',
553            'compress', 'events', 'x-postcopy-ram'] }
556 # @MigrationCapabilityStatus
558 # Migration capability information
560 # @capability: capability enum
562 # @state: capability state bool
564 # Since: 1.2
566 { 'struct': 'MigrationCapabilityStatus',
567   'data': { 'capability' : 'MigrationCapability', 'state' : 'bool' } }
570 # @migrate-set-capabilities
572 # Enable/Disable the following migration capabilities (like xbzrle)
574 # @capabilities: json array of capability modifications to make
576 # Since: 1.2
578 { 'command': 'migrate-set-capabilities',
579   'data': { 'capabilities': ['MigrationCapabilityStatus'] } }
582 # @query-migrate-capabilities
584 # Returns information about the current migration capabilities status
586 # Returns: @MigrationCapabilitiesStatus
588 # Since: 1.2
590 { 'command': 'query-migrate-capabilities', 'returns':   ['MigrationCapabilityStatus']}
592 # @MigrationParameter
594 # Migration parameters enumeration
596 # @compress-level: Set the compression level to be used in live migration,
597 #          the compression level is an integer between 0 and 9, where 0 means
598 #          no compression, 1 means the best compression speed, and 9 means best
599 #          compression ratio which will consume more CPU.
601 # @compress-threads: Set compression thread count to be used in live migration,
602 #          the compression thread count is an integer between 1 and 255.
604 # @decompress-threads: Set decompression thread count to be used in live
605 #          migration, the decompression thread count is an integer between 1
606 #          and 255. Usually, decompression is at least 4 times as fast as
607 #          compression, so set the decompress-threads to the number about 1/4
608 #          of compress-threads is adequate.
610 # @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled
611 #                          when migration auto-converge is activated. The
612 #                          default value is 20. (Since 2.5)
614 # @x-cpu-throttle-increment: throttle percentage increase each time
615 #                            auto-converge detects that migration is not making
616 #                            progress. The default value is 10. (Since 2.5)
617 # Since: 2.4
619 { 'enum': 'MigrationParameter',
620   'data': ['compress-level', 'compress-threads', 'decompress-threads',
621            'x-cpu-throttle-initial', 'x-cpu-throttle-increment'] }
624 # @migrate-set-parameters
626 # Set the following migration parameters
628 # @compress-level: compression level
630 # @compress-threads: compression thread count
632 # @decompress-threads: decompression thread count
634 # @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled
635 #                          when migration auto-converge is activated. The
636 #                          default value is 20. (Since 2.5)
638 # @x-cpu-throttle-increment: throttle percentage increase each time
639 #                            auto-converge detects that migration is not making
640 #                            progress. The default value is 10. (Since 2.5)
641 # Since: 2.4
643 { 'command': 'migrate-set-parameters',
644   'data': { '*compress-level': 'int',
645             '*compress-threads': 'int',
646             '*decompress-threads': 'int',
647             '*x-cpu-throttle-initial': 'int',
648             '*x-cpu-throttle-increment': 'int'} }
651 # @MigrationParameters
653 # @compress-level: compression level
655 # @compress-threads: compression thread count
657 # @decompress-threads: decompression thread count
659 # @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled
660 #                          when migration auto-converge is activated. The
661 #                          default value is 20. (Since 2.5)
663 # @x-cpu-throttle-increment: throttle percentage increase each time
664 #                            auto-converge detects that migration is not making
665 #                            progress. The default value is 10. (Since 2.5)
667 # Since: 2.4
669 { 'struct': 'MigrationParameters',
670   'data': { 'compress-level': 'int',
671             'compress-threads': 'int',
672             'decompress-threads': 'int',
673             'x-cpu-throttle-initial': 'int',
674             'x-cpu-throttle-increment': 'int'} }
676 # @query-migrate-parameters
678 # Returns information about the current migration parameters
680 # Returns: @MigrationParameters
682 # Since: 2.4
684 { 'command': 'query-migrate-parameters',
685   'returns': 'MigrationParameters' }
688 # @client_migrate_info
690 # Set migration information for remote display.  This makes the server
691 # ask the client to automatically reconnect using the new parameters
692 # once migration finished successfully.  Only implemented for SPICE.
694 # @protocol:     must be "spice"
695 # @hostname:     migration target hostname
696 # @port:         #optional spice tcp port for plaintext channels
697 # @tls-port:     #optional spice tcp port for tls-secured channels
698 # @cert-subject: #optional server certificate subject
700 # Since: 0.14.0
702 { 'command': 'client_migrate_info',
703   'data': { 'protocol': 'str', 'hostname': 'str', '*port': 'int',
704             '*tls-port': 'int', '*cert-subject': 'str' } }
707 # @migrate-start-postcopy
709 # Followup to a migration command to switch the migration to postcopy mode.
710 # The x-postcopy-ram capability must be set before the original migration
711 # command.
713 # Since: 2.5
714 { 'command': 'migrate-start-postcopy' }
717 # @MouseInfo:
719 # Information about a mouse device.
721 # @name: the name of the mouse device
723 # @index: the index of the mouse device
725 # @current: true if this device is currently receiving mouse events
727 # @absolute: true if this device supports absolute coordinates as input
729 # Since: 0.14.0
731 { 'struct': 'MouseInfo',
732   'data': {'name': 'str', 'index': 'int', 'current': 'bool',
733            'absolute': 'bool'} }
736 # @query-mice:
738 # Returns information about each active mouse device
740 # Returns: a list of @MouseInfo for each device
742 # Since: 0.14.0
744 { 'command': 'query-mice', 'returns': ['MouseInfo'] }
747 # @CpuInfoArch:
749 # An enumeration of cpu types that enable additional information during
750 # @query-cpus.
752 # Since: 2.6
754 { 'enum': 'CpuInfoArch',
755   'data': ['x86', 'sparc', 'ppc', 'mips', 'tricore', 'other' ] }
758 # @CpuInfoBase:
760 # Common information about a virtual CPU
762 # @CPU: the index of the virtual CPU
764 # @current: this only exists for backwards compatibility and should be ignored
766 # @halted: true if the virtual CPU is in the halt state.  Halt usually refers
767 #          to a processor specific low power mode.
769 # @qom_path: path to the CPU object in the QOM tree (since 2.4)
771 # @thread_id: ID of the underlying host thread
773 # @arch: architecture of the cpu, which determines which additional fields
774 #        will be listed (since 2.6)
776 # Since: 0.14.0
778 # Notes: @halted is a transient state that changes frequently.  By the time the
779 #        data is sent to the client, the guest may no longer be halted.
781 { 'struct': 'CpuInfoBase',
782   'data': {'CPU': 'int', 'current': 'bool', 'halted': 'bool',
783            'qom_path': 'str', 'thread_id': 'int', 'arch': 'CpuInfoArch' } }
786 # @CpuInfo:
788 # Information about a virtual CPU
790 # Since: 0.14.0
792 { 'union': 'CpuInfo', 'base': 'CpuInfoBase', 'discriminator': 'arch',
793   'data': { 'x86': 'CpuInfoX86',
794             'sparc': 'CpuInfoSPARC',
795             'ppc': 'CpuInfoPPC',
796             'mips': 'CpuInfoMIPS',
797             'tricore': 'CpuInfoTricore',
798             'other': 'CpuInfoOther' } }
801 # @CpuInfoX86:
803 # Additional information about a virtual i386 or x86_64 CPU
805 # @pc: the 64-bit instruction pointer
807 # Since 2.6
809 { 'struct': 'CpuInfoX86', 'data': { 'pc': 'int' } }
812 # @CpuInfoSPARC:
814 # Additional information about a virtual SPARC CPU
816 # @pc: the PC component of the instruction pointer
818 # @npc: the NPC component of the instruction pointer
820 # Since 2.6
822 { 'struct': 'CpuInfoSPARC', 'data': { 'pc': 'int', 'npc': 'int' } }
825 # @CpuInfoPPC:
827 # Additional information about a virtual PPC CPU
829 # @nip: the instruction pointer
831 # Since 2.6
833 { 'struct': 'CpuInfoPPC', 'data': { 'nip': 'int' } }
836 # @CpuInfoMIPS:
838 # Additional information about a virtual MIPS CPU
840 # @PC: the instruction pointer
842 # Since 2.6
844 { 'struct': 'CpuInfoMIPS', 'data': { 'PC': 'int' } }
847 # @CpuInfoTricore:
849 # Additional information about a virtual Tricore CPU
851 # @PC: the instruction pointer
853 # Since 2.6
855 { 'struct': 'CpuInfoTricore', 'data': { 'PC': 'int' } }
858 # @CpuInfoOther:
860 # No additional information is available about the virtual CPU
862 # Since 2.6
865 { 'struct': 'CpuInfoOther', 'data': { } }
868 # @query-cpus:
870 # Returns a list of information about each virtual CPU.
872 # Returns: a list of @CpuInfo for each virtual CPU
874 # Since: 0.14.0
876 { 'command': 'query-cpus', 'returns': ['CpuInfo'] }
879 # @IOThreadInfo:
881 # Information about an iothread
883 # @id: the identifier of the iothread
885 # @thread-id: ID of the underlying host thread
887 # Since: 2.0
889 { 'struct': 'IOThreadInfo',
890   'data': {'id': 'str', 'thread-id': 'int'} }
893 # @query-iothreads:
895 # Returns a list of information about each iothread.
897 # Note this list excludes the QEMU main loop thread, which is not declared
898 # using the -object iothread command-line option.  It is always the main thread
899 # of the process.
901 # Returns: a list of @IOThreadInfo for each iothread
903 # Since: 2.0
905 { 'command': 'query-iothreads', 'returns': ['IOThreadInfo'] }
908 # @NetworkAddressFamily
910 # The network address family
912 # @ipv4: IPV4 family
914 # @ipv6: IPV6 family
916 # @unix: unix socket
918 # @unknown: otherwise
920 # Since: 2.1
922 { 'enum': 'NetworkAddressFamily',
923   'data': [ 'ipv4', 'ipv6', 'unix', 'unknown' ] }
926 # @VncBasicInfo
928 # The basic information for vnc network connection
930 # @host: IP address
932 # @service: The service name of the vnc port. This may depend on the host
933 #           system's service database so symbolic names should not be relied
934 #           on.
936 # @family: address family
938 # @websocket: true in case the socket is a websocket (since 2.3).
940 # Since: 2.1
942 { 'struct': 'VncBasicInfo',
943   'data': { 'host': 'str',
944             'service': 'str',
945             'family': 'NetworkAddressFamily',
946             'websocket': 'bool' } }
949 # @VncServerInfo
951 # The network connection information for server
953 # @auth: #optional, authentication method
955 # Since: 2.1
957 { 'struct': 'VncServerInfo',
958   'base': 'VncBasicInfo',
959   'data': { '*auth': 'str' } }
962 # @VncClientInfo:
964 # Information about a connected VNC client.
966 # @x509_dname: #optional If x509 authentication is in use, the Distinguished
967 #              Name of the client.
969 # @sasl_username: #optional If SASL authentication is in use, the SASL username
970 #                 used for authentication.
972 # Since: 0.14.0
974 { 'struct': 'VncClientInfo',
975   'base': 'VncBasicInfo',
976   'data': { '*x509_dname': 'str', '*sasl_username': 'str' } }
979 # @VncInfo:
981 # Information about the VNC session.
983 # @enabled: true if the VNC server is enabled, false otherwise
985 # @host: #optional The hostname the VNC server is bound to.  This depends on
986 #        the name resolution on the host and may be an IP address.
988 # @family: #optional 'ipv6' if the host is listening for IPv6 connections
989 #                    'ipv4' if the host is listening for IPv4 connections
990 #                    'unix' if the host is listening on a unix domain socket
991 #                    'unknown' otherwise
993 # @service: #optional The service name of the server's port.  This may depends
994 #           on the host system's service database so symbolic names should not
995 #           be relied on.
997 # @auth: #optional the current authentication type used by the server
998 #        'none' if no authentication is being used
999 #        'vnc' if VNC authentication is being used
1000 #        'vencrypt+plain' if VEncrypt is used with plain text authentication
1001 #        'vencrypt+tls+none' if VEncrypt is used with TLS and no authentication
1002 #        'vencrypt+tls+vnc' if VEncrypt is used with TLS and VNC authentication
1003 #        'vencrypt+tls+plain' if VEncrypt is used with TLS and plain text auth
1004 #        'vencrypt+x509+none' if VEncrypt is used with x509 and no auth
1005 #        'vencrypt+x509+vnc' if VEncrypt is used with x509 and VNC auth
1006 #        'vencrypt+x509+plain' if VEncrypt is used with x509 and plain text auth
1007 #        'vencrypt+tls+sasl' if VEncrypt is used with TLS and SASL auth
1008 #        'vencrypt+x509+sasl' if VEncrypt is used with x509 and SASL auth
1010 # @clients: a list of @VncClientInfo of all currently connected clients
1012 # Since: 0.14.0
1014 { 'struct': 'VncInfo',
1015   'data': {'enabled': 'bool', '*host': 'str',
1016            '*family': 'NetworkAddressFamily',
1017            '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']} }
1020 # @VncPriAuth:
1022 # vnc primary authentication method.
1024 # Since: 2.3
1026 { 'enum': 'VncPrimaryAuth',
1027   'data': [ 'none', 'vnc', 'ra2', 'ra2ne', 'tight', 'ultra',
1028             'tls', 'vencrypt', 'sasl' ] }
1031 # @VncVencryptSubAuth:
1033 # vnc sub authentication method with vencrypt.
1035 # Since: 2.3
1037 { 'enum': 'VncVencryptSubAuth',
1038   'data': [ 'plain',
1039             'tls-none',  'x509-none',
1040             'tls-vnc',   'x509-vnc',
1041             'tls-plain', 'x509-plain',
1042             'tls-sasl',  'x509-sasl' ] }
1045 # @VncInfo2:
1047 # Information about a vnc server
1049 # @id: vnc server name.
1051 # @server: A list of @VncBasincInfo describing all listening sockets.
1052 #          The list can be empty (in case the vnc server is disabled).
1053 #          It also may have multiple entries: normal + websocket,
1054 #          possibly also ipv4 + ipv6 in the future.
1056 # @clients: A list of @VncClientInfo of all currently connected clients.
1057 #           The list can be empty, for obvious reasons.
1059 # @auth: The current authentication type used by the server
1061 # @vencrypt: #optional The vencrypt sub authentication type used by the server,
1062 #            only specified in case auth == vencrypt.
1064 # @display: #optional The display device the vnc server is linked to.
1066 # Since: 2.3
1068 { 'struct': 'VncInfo2',
1069   'data': { 'id'        : 'str',
1070             'server'    : ['VncBasicInfo'],
1071             'clients'   : ['VncClientInfo'],
1072             'auth'      : 'VncPrimaryAuth',
1073             '*vencrypt' : 'VncVencryptSubAuth',
1074             '*display'  : 'str' } }
1077 # @query-vnc:
1079 # Returns information about the current VNC server
1081 # Returns: @VncInfo
1083 # Since: 0.14.0
1085 { 'command': 'query-vnc', 'returns': 'VncInfo' }
1088 # @query-vnc-servers:
1090 # Returns a list of vnc servers.  The list can be empty.
1092 # Returns: a list of @VncInfo2
1094 # Since: 2.3
1096 { 'command': 'query-vnc-servers', 'returns': ['VncInfo2'] }
1099 # @SpiceBasicInfo
1101 # The basic information for SPICE network connection
1103 # @host: IP address
1105 # @port: port number
1107 # @family: address family
1109 # Since: 2.1
1111 { 'struct': 'SpiceBasicInfo',
1112   'data': { 'host': 'str',
1113             'port': 'str',
1114             'family': 'NetworkAddressFamily' } }
1117 # @SpiceServerInfo
1119 # Information about a SPICE server
1121 # @auth: #optional, authentication method
1123 # Since: 2.1
1125 { 'struct': 'SpiceServerInfo',
1126   'base': 'SpiceBasicInfo',
1127   'data': { '*auth': 'str' } }
1130 # @SpiceChannel
1132 # Information about a SPICE client channel.
1134 # @connection-id: SPICE connection id number.  All channels with the same id
1135 #                 belong to the same SPICE session.
1137 # @channel-type: SPICE channel type number.  "1" is the main control
1138 #                channel, filter for this one if you want to track spice
1139 #                sessions only
1141 # @channel-id: SPICE channel ID number.  Usually "0", might be different when
1142 #              multiple channels of the same type exist, such as multiple
1143 #              display channels in a multihead setup
1145 # @tls: true if the channel is encrypted, false otherwise.
1147 # Since: 0.14.0
1149 { 'struct': 'SpiceChannel',
1150   'base': 'SpiceBasicInfo',
1151   'data': {'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int',
1152            'tls': 'bool'} }
1155 # @SpiceQueryMouseMode
1157 # An enumeration of Spice mouse states.
1159 # @client: Mouse cursor position is determined by the client.
1161 # @server: Mouse cursor position is determined by the server.
1163 # @unknown: No information is available about mouse mode used by
1164 #           the spice server.
1166 # Note: spice/enums.h has a SpiceMouseMode already, hence the name.
1168 # Since: 1.1
1170 { 'enum': 'SpiceQueryMouseMode',
1171   'data': [ 'client', 'server', 'unknown' ] }
1174 # @SpiceInfo
1176 # Information about the SPICE session.
1178 # @enabled: true if the SPICE server is enabled, false otherwise
1180 # @migrated: true if the last guest migration completed and spice
1181 #            migration had completed as well. false otherwise.
1183 # @host: #optional The hostname the SPICE server is bound to.  This depends on
1184 #        the name resolution on the host and may be an IP address.
1186 # @port: #optional The SPICE server's port number.
1188 # @compiled-version: #optional SPICE server version.
1190 # @tls-port: #optional The SPICE server's TLS port number.
1192 # @auth: #optional the current authentication type used by the server
1193 #        'none'  if no authentication is being used
1194 #        'spice' uses SASL or direct TLS authentication, depending on command
1195 #                line options
1197 # @mouse-mode: The mode in which the mouse cursor is displayed currently. Can
1198 #              be determined by the client or the server, or unknown if spice
1199 #              server doesn't provide this information.
1201 #              Since: 1.1
1203 # @channels: a list of @SpiceChannel for each active spice channel
1205 # Since: 0.14.0
1207 { 'struct': 'SpiceInfo',
1208   'data': {'enabled': 'bool', 'migrated': 'bool', '*host': 'str', '*port': 'int',
1209            '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
1210            'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} }
1213 # @query-spice
1215 # Returns information about the current SPICE server
1217 # Returns: @SpiceInfo
1219 # Since: 0.14.0
1221 { 'command': 'query-spice', 'returns': 'SpiceInfo' }
1224 # @BalloonInfo:
1226 # Information about the guest balloon device.
1228 # @actual: the number of bytes the balloon currently contains
1230 # Since: 0.14.0
1233 { 'struct': 'BalloonInfo', 'data': {'actual': 'int' } }
1236 # @query-balloon:
1238 # Return information about the balloon device.
1240 # Returns: @BalloonInfo on success
1241 #          If the balloon driver is enabled but not functional because the KVM
1242 #          kernel module cannot support it, KvmMissingCap
1243 #          If no balloon device is present, DeviceNotActive
1245 # Since: 0.14.0
1247 { 'command': 'query-balloon', 'returns': 'BalloonInfo' }
1250 # @PciMemoryRange:
1252 # A PCI device memory region
1254 # @base: the starting address (guest physical)
1256 # @limit: the ending address (guest physical)
1258 # Since: 0.14.0
1260 { 'struct': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} }
1263 # @PciMemoryRegion
1265 # Information about a PCI device I/O region.
1267 # @bar: the index of the Base Address Register for this region
1269 # @type: 'io' if the region is a PIO region
1270 #        'memory' if the region is a MMIO region
1272 # @prefetch: #optional if @type is 'memory', true if the memory is prefetchable
1274 # @mem_type_64: #optional if @type is 'memory', true if the BAR is 64-bit
1276 # Since: 0.14.0
1278 { 'struct': 'PciMemoryRegion',
1279   'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int',
1280            '*prefetch': 'bool', '*mem_type_64': 'bool' } }
1283 # @PciBusInfo:
1285 # Information about a bus of a PCI Bridge device
1287 # @number: primary bus interface number.  This should be the number of the
1288 #          bus the device resides on.
1290 # @secondary: secondary bus interface number.  This is the number of the
1291 #             main bus for the bridge
1293 # @subordinate: This is the highest number bus that resides below the
1294 #               bridge.
1296 # @io_range: The PIO range for all devices on this bridge
1298 # @memory_range: The MMIO range for all devices on this bridge
1300 # @prefetchable_range: The range of prefetchable MMIO for all devices on
1301 #                      this bridge
1303 # Since: 2.4
1305 { 'struct': 'PciBusInfo',
1306   'data': {'number': 'int', 'secondary': 'int', 'subordinate': 'int',
1307            'io_range': 'PciMemoryRange',
1308            'memory_range': 'PciMemoryRange',
1309            'prefetchable_range': 'PciMemoryRange' } }
1312 # @PciBridgeInfo:
1314 # Information about a PCI Bridge device
1316 # @bus: information about the bus the device resides on
1318 # @devices: a list of @PciDeviceInfo for each device on this bridge
1320 # Since: 0.14.0
1322 { 'struct': 'PciBridgeInfo',
1323   'data': {'bus': 'PciBusInfo', '*devices': ['PciDeviceInfo']} }
1326 # @PciDeviceClass:
1328 # Information about the Class of a PCI device
1330 # @desc: #optional a string description of the device's class
1332 # @class: the class code of the device
1334 # Since: 2.4
1336 { 'struct': 'PciDeviceClass',
1337   'data': {'*desc': 'str', 'class': 'int'} }
1340 # @PciDeviceId:
1342 # Information about the Id of a PCI device
1344 # @device: the PCI device id
1346 # @vendor: the PCI vendor id
1348 # Since: 2.4
1350 { 'struct': 'PciDeviceId',
1351   'data': {'device': 'int', 'vendor': 'int'} }
1354 # @PciDeviceInfo:
1356 # Information about a PCI device
1358 # @bus: the bus number of the device
1360 # @slot: the slot the device is located in
1362 # @function: the function of the slot used by the device
1364 # @class_info: the class of the device
1366 # @id: the PCI device id
1368 # @irq: #optional if an IRQ is assigned to the device, the IRQ number
1370 # @qdev_id: the device name of the PCI device
1372 # @pci_bridge: if the device is a PCI bridge, the bridge information
1374 # @regions: a list of the PCI I/O regions associated with the device
1376 # Notes: the contents of @class_info.desc are not stable and should only be
1377 #        treated as informational.
1379 # Since: 0.14.0
1381 { 'struct': 'PciDeviceInfo',
1382   'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
1383            'class_info': 'PciDeviceClass', 'id': 'PciDeviceId',
1384            '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
1385            'regions': ['PciMemoryRegion']} }
1388 # @PciInfo:
1390 # Information about a PCI bus
1392 # @bus: the bus index
1394 # @devices: a list of devices on this bus
1396 # Since: 0.14.0
1398 { 'struct': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} }
1401 # @query-pci:
1403 # Return information about the PCI bus topology of the guest.
1405 # Returns: a list of @PciInfo for each PCI bus
1407 # Since: 0.14.0
1409 { 'command': 'query-pci', 'returns': ['PciInfo'] }
1412 # @quit:
1414 # This command will cause the QEMU process to exit gracefully.  While every
1415 # attempt is made to send the QMP response before terminating, this is not
1416 # guaranteed.  When using this interface, a premature EOF would not be
1417 # unexpected.
1419 # Since: 0.14.0
1421 { 'command': 'quit' }
1424 # @stop:
1426 # Stop all guest VCPU execution.
1428 # Since:  0.14.0
1430 # Notes:  This function will succeed even if the guest is already in the stopped
1431 #         state.  In "inmigrate" state, it will ensure that the guest
1432 #         remains paused once migration finishes, as if the -S option was
1433 #         passed on the command line.
1435 { 'command': 'stop' }
1438 # @system_reset:
1440 # Performs a hard reset of a guest.
1442 # Since: 0.14.0
1444 { 'command': 'system_reset' }
1447 # @system_powerdown:
1449 # Requests that a guest perform a powerdown operation.
1451 # Since: 0.14.0
1453 # Notes: A guest may or may not respond to this command.  This command
1454 #        returning does not indicate that a guest has accepted the request or
1455 #        that it has shut down.  Many guests will respond to this command by
1456 #        prompting the user in some way.
1458 { 'command': 'system_powerdown' }
1461 # @cpu:
1463 # This command is a nop that is only provided for the purposes of compatibility.
1465 # Since: 0.14.0
1467 # Notes: Do not use this command.
1469 { 'command': 'cpu', 'data': {'index': 'int'} }
1472 # @cpu-add
1474 # Adds CPU with specified ID
1476 # @id: ID of CPU to be created, valid values [0..max_cpus)
1478 # Returns: Nothing on success
1480 # Since 1.5
1482 { 'command': 'cpu-add', 'data': {'id': 'int'} }
1485 # @memsave:
1487 # Save a portion of guest memory to a file.
1489 # @val: the virtual address of the guest to start from
1491 # @size: the size of memory region to save
1493 # @filename: the file to save the memory to as binary data
1495 # @cpu-index: #optional the index of the virtual CPU to use for translating the
1496 #                       virtual address (defaults to CPU 0)
1498 # Returns: Nothing on success
1500 # Since: 0.14.0
1502 # Notes: Errors were not reliably returned until 1.1
1504 { 'command': 'memsave',
1505   'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
1508 # @pmemsave:
1510 # Save a portion of guest physical memory to a file.
1512 # @val: the physical address of the guest to start from
1514 # @size: the size of memory region to save
1516 # @filename: the file to save the memory to as binary data
1518 # Returns: Nothing on success
1520 # Since: 0.14.0
1522 # Notes: Errors were not reliably returned until 1.1
1524 { 'command': 'pmemsave',
1525   'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
1528 # @cont:
1530 # Resume guest VCPU execution.
1532 # Since:  0.14.0
1534 # Returns:  If successful, nothing
1535 #           If QEMU was started with an encrypted block device and a key has
1536 #              not yet been set, DeviceEncrypted.
1538 # Notes:  This command will succeed if the guest is currently running.  It
1539 #         will also succeed if the guest is in the "inmigrate" state; in
1540 #         this case, the effect of the command is to make sure the guest
1541 #         starts once migration finishes, removing the effect of the -S
1542 #         command line option if it was passed.
1544 { 'command': 'cont' }
1547 # @system_wakeup:
1549 # Wakeup guest from suspend.  Does nothing in case the guest isn't suspended.
1551 # Since:  1.1
1553 # Returns:  nothing.
1555 { 'command': 'system_wakeup' }
1558 # @inject-nmi:
1560 # Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or all CPUs (ppc64).
1562 # Returns:  If successful, nothing
1564 # Since:  0.14.0
1566 # Note: prior to 2.1, this command was only supported for x86 and s390 VMs
1568 { 'command': 'inject-nmi' }
1571 # @set_link:
1573 # Sets the link status of a virtual network adapter.
1575 # @name: the device name of the virtual network adapter
1577 # @up: true to set the link status to be up
1579 # Returns: Nothing on success
1580 #          If @name is not a valid network device, DeviceNotFound
1582 # Since: 0.14.0
1584 # Notes: Not all network adapters support setting link status.  This command
1585 #        will succeed even if the network adapter does not support link status
1586 #        notification.
1588 { 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} }
1591 # @balloon:
1593 # Request the balloon driver to change its balloon size.
1595 # @value: the target size of the balloon in bytes
1597 # Returns: Nothing on success
1598 #          If the balloon driver is enabled but not functional because the KVM
1599 #            kernel module cannot support it, KvmMissingCap
1600 #          If no balloon device is present, DeviceNotActive
1602 # Notes: This command just issues a request to the guest.  When it returns,
1603 #        the balloon size may not have changed.  A guest can change the balloon
1604 #        size independent of this command.
1606 # Since: 0.14.0
1608 { 'command': 'balloon', 'data': {'value': 'int'} }
1611 # @Abort
1613 # This action can be used to test transaction failure.
1615 # Since: 1.6
1617 { 'struct': 'Abort',
1618   'data': { } }
1621 # @ActionCompletionMode
1623 # An enumeration of Transactional completion modes.
1625 # @individual: Do not attempt to cancel any other Actions if any Actions fail
1626 #              after the Transaction request succeeds. All Actions that
1627 #              can complete successfully will do so without waiting on others.
1628 #              This is the default.
1630 # @grouped: If any Action fails after the Transaction succeeds, cancel all
1631 #           Actions. Actions do not complete until all Actions are ready to
1632 #           complete. May be rejected by Actions that do not support this
1633 #           completion mode.
1635 # Since: 2.5
1637 { 'enum': 'ActionCompletionMode',
1638   'data': [ 'individual', 'grouped' ] }
1641 # @TransactionAction
1643 # A discriminated record of operations that can be performed with
1644 # @transaction.
1646 # Since 1.1
1648 # drive-backup since 1.6
1649 # abort since 1.6
1650 # blockdev-snapshot-internal-sync since 1.7
1651 # blockdev-backup since 2.3
1652 # blockdev-snapshot since 2.5
1653 # block-dirty-bitmap-add since 2.5
1654 # block-dirty-bitmap-clear since 2.5
1656 { 'union': 'TransactionAction',
1657   'data': {
1658        'blockdev-snapshot': 'BlockdevSnapshot',
1659        'blockdev-snapshot-sync': 'BlockdevSnapshotSync',
1660        'drive-backup': 'DriveBackup',
1661        'blockdev-backup': 'BlockdevBackup',
1662        'abort': 'Abort',
1663        'blockdev-snapshot-internal-sync': 'BlockdevSnapshotInternal',
1664        'block-dirty-bitmap-add': 'BlockDirtyBitmapAdd',
1665        'block-dirty-bitmap-clear': 'BlockDirtyBitmap'
1666    } }
1669 # @TransactionProperties
1671 # Optional arguments to modify the behavior of a Transaction.
1673 # @completion-mode: #optional Controls how jobs launched asynchronously by
1674 #                   Actions will complete or fail as a group.
1675 #                   See @ActionCompletionMode for details.
1677 # Since: 2.5
1679 { 'struct': 'TransactionProperties',
1680   'data': {
1681        '*completion-mode': 'ActionCompletionMode'
1682   }
1686 # @transaction
1688 # Executes a number of transactionable QMP commands atomically. If any
1689 # operation fails, then the entire set of actions will be abandoned and the
1690 # appropriate error returned.
1692 # @actions: List of @TransactionAction;
1693 #           information needed for the respective operations.
1695 # @properties: #optional structure of additional options to control the
1696 #              execution of the transaction. See @TransactionProperties
1697 #              for additional detail.
1699 # Returns: nothing on success
1700 #          Errors depend on the operations of the transaction
1702 # Note: The transaction aborts on the first failure.  Therefore, there will be
1703 # information on only one failed operation returned in an error condition, and
1704 # subsequent actions will not have been attempted.
1706 # Since 1.1
1708 { 'command': 'transaction',
1709   'data': { 'actions': [ 'TransactionAction' ],
1710             '*properties': 'TransactionProperties'
1711           }
1715 # @human-monitor-command:
1717 # Execute a command on the human monitor and return the output.
1719 # @command-line: the command to execute in the human monitor
1721 # @cpu-index: #optional The CPU to use for commands that require an implicit CPU
1723 # Returns: the output of the command as a string
1725 # Since: 0.14.0
1727 # Notes: This command only exists as a stop-gap.  Its use is highly
1728 #        discouraged.  The semantics of this command are not guaranteed.
1730 #        Known limitations:
1732 #        o This command is stateless, this means that commands that depend
1733 #          on state information (such as getfd) might not work
1735 #       o Commands that prompt the user for data (eg. 'cont' when the block
1736 #         device is encrypted) don't currently work
1738 { 'command': 'human-monitor-command',
1739   'data': {'command-line': 'str', '*cpu-index': 'int'},
1740   'returns': 'str' }
1743 # @migrate_cancel
1745 # Cancel the current executing migration process.
1747 # Returns: nothing on success
1749 # Notes: This command succeeds even if there is no migration process running.
1751 # Since: 0.14.0
1753 { 'command': 'migrate_cancel' }
1756 # @migrate_set_downtime
1758 # Set maximum tolerated downtime for migration.
1760 # @value: maximum downtime in seconds
1762 # Returns: nothing on success
1764 # Since: 0.14.0
1766 { 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
1769 # @migrate_set_speed
1771 # Set maximum speed for migration.
1773 # @value: maximum speed in bytes.
1775 # Returns: nothing on success
1777 # Notes: A value lesser than zero will be automatically round up to zero.
1779 # Since: 0.14.0
1781 { 'command': 'migrate_set_speed', 'data': {'value': 'int'} }
1784 # @migrate-set-cache-size
1786 # Set XBZRLE cache size
1788 # @value: cache size in bytes
1790 # The size will be rounded down to the nearest power of 2.
1791 # The cache size can be modified before and during ongoing migration
1793 # Returns: nothing on success
1795 # Since: 1.2
1797 { 'command': 'migrate-set-cache-size', 'data': {'value': 'int'} }
1800 # @query-migrate-cache-size
1802 # query XBZRLE cache size
1804 # Returns: XBZRLE cache size in bytes
1806 # Since: 1.2
1808 { 'command': 'query-migrate-cache-size', 'returns': 'int' }
1811 # @ObjectPropertyInfo:
1813 # @name: the name of the property
1815 # @type: the type of the property.  This will typically come in one of four
1816 #        forms:
1818 #        1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
1819 #           These types are mapped to the appropriate JSON type.
1821 #        2) A child type in the form 'child<subtype>' where subtype is a qdev
1822 #           device type name.  Child properties create the composition tree.
1824 #        3) A link type in the form 'link<subtype>' where subtype is a qdev
1825 #           device type name.  Link properties form the device model graph.
1827 # Since: 1.2
1829 { 'struct': 'ObjectPropertyInfo',
1830   'data': { 'name': 'str', 'type': 'str' } }
1833 # @qom-list:
1835 # This command will list any properties of a object given a path in the object
1836 # model.
1838 # @path: the path within the object model.  See @qom-get for a description of
1839 #        this parameter.
1841 # Returns: a list of @ObjectPropertyInfo that describe the properties of the
1842 #          object.
1844 # Since: 1.2
1846 { 'command': 'qom-list',
1847   'data': { 'path': 'str' },
1848   'returns': [ 'ObjectPropertyInfo' ] }
1851 # @qom-get:
1853 # This command will get a property from a object model path and return the
1854 # value.
1856 # @path: The path within the object model.  There are two forms of supported
1857 #        paths--absolute and partial paths.
1859 #        Absolute paths are derived from the root object and can follow child<>
1860 #        or link<> properties.  Since they can follow link<> properties, they
1861 #        can be arbitrarily long.  Absolute paths look like absolute filenames
1862 #        and are prefixed  with a leading slash.
1864 #        Partial paths look like relative filenames.  They do not begin
1865 #        with a prefix.  The matching rules for partial paths are subtle but
1866 #        designed to make specifying objects easy.  At each level of the
1867 #        composition tree, the partial path is matched as an absolute path.
1868 #        The first match is not returned.  At least two matches are searched
1869 #        for.  A successful result is only returned if only one match is
1870 #        found.  If more than one match is found, a flag is return to
1871 #        indicate that the match was ambiguous.
1873 # @property: The property name to read
1875 # Returns: The property value.  The type depends on the property
1876 #          type. child<> and link<> properties are returned as #str
1877 #          pathnames.  All integer property types (u8, u16, etc) are
1878 #          returned as #int.
1880 # Since: 1.2
1882 { 'command': 'qom-get',
1883   'data': { 'path': 'str', 'property': 'str' },
1884   'returns': 'any' }
1887 # @qom-set:
1889 # This command will set a property from a object model path.
1891 # @path: see @qom-get for a description of this parameter
1893 # @property: the property name to set
1895 # @value: a value who's type is appropriate for the property type.  See @qom-get
1896 #         for a description of type mapping.
1898 # Since: 1.2
1900 { 'command': 'qom-set',
1901   'data': { 'path': 'str', 'property': 'str', 'value': 'any' } }
1904 # @set_password:
1906 # Sets the password of a remote display session.
1908 # @protocol: `vnc' to modify the VNC server password
1909 #            `spice' to modify the Spice server password
1911 # @password: the new password
1913 # @connected: #optional how to handle existing clients when changing the
1914 #                       password.  If nothing is specified, defaults to `keep'
1915 #                       `fail' to fail the command if clients are connected
1916 #                       `disconnect' to disconnect existing clients
1917 #                       `keep' to maintain existing clients
1919 # Returns: Nothing on success
1920 #          If Spice is not enabled, DeviceNotFound
1922 # Since: 0.14.0
1924 { 'command': 'set_password',
1925   'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} }
1928 # @expire_password:
1930 # Expire the password of a remote display server.
1932 # @protocol: the name of the remote display protocol `vnc' or `spice'
1934 # @time: when to expire the password.
1935 #        `now' to expire the password immediately
1936 #        `never' to cancel password expiration
1937 #        `+INT' where INT is the number of seconds from now (integer)
1938 #        `INT' where INT is the absolute time in seconds
1940 # Returns: Nothing on success
1941 #          If @protocol is `spice' and Spice is not active, DeviceNotFound
1943 # Since: 0.14.0
1945 # Notes: Time is relative to the server and currently there is no way to
1946 #        coordinate server time with client time.  It is not recommended to
1947 #        use the absolute time version of the @time parameter unless you're
1948 #        sure you are on the same machine as the QEMU instance.
1950 { 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} }
1953 # @change-vnc-password:
1955 # Change the VNC server password.
1957 # @password:  the new password to use with VNC authentication
1959 # Since: 1.1
1961 # Notes:  An empty password in this command will set the password to the empty
1962 #         string.  Existing clients are unaffected by executing this command.
1964 { 'command': 'change-vnc-password', 'data': {'password': 'str'} }
1967 # @change:
1969 # This command is multiple commands multiplexed together.
1971 # @device: This is normally the name of a block device but it may also be 'vnc'.
1972 #          when it's 'vnc', then sub command depends on @target
1974 # @target: If @device is a block device, then this is the new filename.
1975 #          If @device is 'vnc', then if the value 'password' selects the vnc
1976 #          change password command.   Otherwise, this specifies a new server URI
1977 #          address to listen to for VNC connections.
1979 # @arg:    If @device is a block device, then this is an optional format to open
1980 #          the device with.
1981 #          If @device is 'vnc' and @target is 'password', this is the new VNC
1982 #          password to set.  If this argument is an empty string, then no future
1983 #          logins will be allowed.
1985 # Returns: Nothing on success.
1986 #          If @device is not a valid block device, DeviceNotFound
1987 #          If the new block device is encrypted, DeviceEncrypted.  Note that
1988 #          if this error is returned, the device has been opened successfully
1989 #          and an additional call to @block_passwd is required to set the
1990 #          device's password.  The behavior of reads and writes to the block
1991 #          device between when these calls are executed is undefined.
1993 # Notes:  This interface is deprecated, and it is strongly recommended that you
1994 #         avoid using it.  For changing block devices, use
1995 #         blockdev-change-medium; for changing VNC parameters, use
1996 #         change-vnc-password.
1998 # Since: 0.14.0
2000 { 'command': 'change',
2001   'data': {'device': 'str', 'target': 'str', '*arg': 'str'} }
2004 # @ObjectTypeInfo:
2006 # This structure describes a search result from @qom-list-types
2008 # @name: the type name found in the search
2010 # Since: 1.1
2012 # Notes: This command is experimental and may change syntax in future releases.
2014 { 'struct': 'ObjectTypeInfo',
2015   'data': { 'name': 'str' } }
2018 # @qom-list-types:
2020 # This command will return a list of types given search parameters
2022 # @implements: if specified, only return types that implement this type name
2024 # @abstract: if true, include abstract types in the results
2026 # Returns: a list of @ObjectTypeInfo or an empty list if no results are found
2028 # Since: 1.1
2030 { 'command': 'qom-list-types',
2031   'data': { '*implements': 'str', '*abstract': 'bool' },
2032   'returns': [ 'ObjectTypeInfo' ] }
2035 # @DevicePropertyInfo:
2037 # Information about device properties.
2039 # @name: the name of the property
2040 # @type: the typename of the property
2041 # @description: #optional if specified, the description of the property.
2042 #               (since 2.2)
2044 # Since: 1.2
2046 { 'struct': 'DevicePropertyInfo',
2047   'data': { 'name': 'str', 'type': 'str', '*description': 'str' } }
2050 # @device-list-properties:
2052 # List properties associated with a device.
2054 # @typename: the type name of a device
2056 # Returns: a list of DevicePropertyInfo describing a devices properties
2058 # Since: 1.2
2060 { 'command': 'device-list-properties',
2061   'data': { 'typename': 'str'},
2062   'returns': [ 'DevicePropertyInfo' ] }
2065 # @migrate
2067 # Migrates the current running guest to another Virtual Machine.
2069 # @uri: the Uniform Resource Identifier of the destination VM
2071 # @blk: #optional do block migration (full disk copy)
2073 # @inc: #optional incremental disk copy migration
2075 # @detach: this argument exists only for compatibility reasons and
2076 #          is ignored by QEMU
2078 # Returns: nothing on success
2080 # Since: 0.14.0
2082 { 'command': 'migrate',
2083   'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
2086 # @migrate-incoming
2088 # Start an incoming migration, the qemu must have been started
2089 # with -incoming defer
2091 # @uri: The Uniform Resource Identifier identifying the source or
2092 #       address to listen on
2094 # Returns: nothing on success
2096 # Since: 2.3
2097 # Note: It's a bad idea to use a string for the uri, but it needs to stay
2098 # compatible with -incoming and the format of the uri is already exposed
2099 # above libvirt
2101 { 'command': 'migrate-incoming', 'data': {'uri': 'str' } }
2103 # @xen-save-devices-state:
2105 # Save the state of all devices to file. The RAM and the block devices
2106 # of the VM are not saved by this command.
2108 # @filename: the file to save the state of the devices to as binary
2109 # data. See xen-save-devices-state.txt for a description of the binary
2110 # format.
2112 # Returns: Nothing on success
2114 # Since: 1.1
2116 { 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} }
2119 # @xen-set-global-dirty-log
2121 # Enable or disable the global dirty log mode.
2123 # @enable: true to enable, false to disable.
2125 # Returns: nothing
2127 # Since: 1.3
2129 { 'command': 'xen-set-global-dirty-log', 'data': { 'enable': 'bool' } }
2132 # @device_del:
2134 # Remove a device from a guest
2136 # @id: the name or QOM path of the device
2138 # Returns: Nothing on success
2139 #          If @id is not a valid device, DeviceNotFound
2141 # Notes: When this command completes, the device may not be removed from the
2142 #        guest.  Hot removal is an operation that requires guest cooperation.
2143 #        This command merely requests that the guest begin the hot removal
2144 #        process.  Completion of the device removal process is signaled with a
2145 #        DEVICE_DELETED event. Guest reset will automatically complete removal
2146 #        for all devices.
2148 # Since: 0.14.0
2150 { 'command': 'device_del', 'data': {'id': 'str'} }
2153 # @DumpGuestMemoryFormat:
2155 # An enumeration of guest-memory-dump's format.
2157 # @elf: elf format
2159 # @kdump-zlib: kdump-compressed format with zlib-compressed
2161 # @kdump-lzo: kdump-compressed format with lzo-compressed
2163 # @kdump-snappy: kdump-compressed format with snappy-compressed
2165 # Since: 2.0
2167 { 'enum': 'DumpGuestMemoryFormat',
2168   'data': [ 'elf', 'kdump-zlib', 'kdump-lzo', 'kdump-snappy' ] }
2171 # @dump-guest-memory
2173 # Dump guest's memory to vmcore. It is a synchronous operation that can take
2174 # very long depending on the amount of guest memory. This command is only
2175 # supported on i386 and x86_64.
2177 # @paging: if true, do paging to get guest's memory mapping. This allows
2178 #          using gdb to process the core file.
2180 #          IMPORTANT: this option can make QEMU allocate several gigabytes
2181 #                     of RAM. This can happen for a large guest, or a
2182 #                     malicious guest pretending to be large.
2184 #          Also, paging=true has the following limitations:
2186 #             1. The guest may be in a catastrophic state or can have corrupted
2187 #                memory, which cannot be trusted
2188 #             2. The guest can be in real-mode even if paging is enabled. For
2189 #                example, the guest uses ACPI to sleep, and ACPI sleep state
2190 #                goes in real-mode
2192 # @protocol: the filename or file descriptor of the vmcore. The supported
2193 #            protocols are:
2195 #            1. file: the protocol starts with "file:", and the following
2196 #               string is the file's path.
2197 #            2. fd: the protocol starts with "fd:", and the following string
2198 #               is the fd's name.
2200 # @begin: #optional if specified, the starting physical address.
2202 # @length: #optional if specified, the memory size, in bytes. If you don't
2203 #          want to dump all guest's memory, please specify the start @begin
2204 #          and @length
2206 # @format: #optional if specified, the format of guest memory dump. But non-elf
2207 #          format is conflict with paging and filter, ie. @paging, @begin and
2208 #          @length is not allowed to be specified with non-elf @format at the
2209 #          same time (since 2.0)
2211 # Returns: nothing on success
2213 # Since: 1.2
2215 { 'command': 'dump-guest-memory',
2216   'data': { 'paging': 'bool', 'protocol': 'str', '*begin': 'int',
2217             '*length': 'int', '*format': 'DumpGuestMemoryFormat' } }
2220 # @DumpGuestMemoryCapability:
2222 # A list of the available formats for dump-guest-memory
2224 # Since: 2.0
2226 { 'struct': 'DumpGuestMemoryCapability',
2227   'data': {
2228       'formats': ['DumpGuestMemoryFormat'] } }
2231 # @query-dump-guest-memory-capability:
2233 # Returns the available formats for dump-guest-memory
2235 # Returns:  A @DumpGuestMemoryCapability object listing available formats for
2236 #           dump-guest-memory
2238 # Since: 2.0
2240 { 'command': 'query-dump-guest-memory-capability',
2241   'returns': 'DumpGuestMemoryCapability' }
2244 # @dump-skeys
2246 # Dump guest's storage keys
2248 # @filename: the path to the file to dump to
2250 # This command is only supported on s390 architecture.
2252 # Since: 2.5
2254 { 'command': 'dump-skeys',
2255   'data': { 'filename': 'str' } }
2258 # @netdev_add:
2260 # Add a network backend.
2262 # @type: the type of network backend.  Current valid values are 'user', 'tap',
2263 #        'vde', 'socket', 'dump' and 'bridge'
2265 # @id: the name of the new network backend
2267 # Additional arguments depend on the type.
2269 # TODO This command effectively bypasses QAPI completely due to its
2270 # "additional arguments" business.  It shouldn't have been added to
2271 # the schema in this form.  It should be qapified properly, or
2272 # replaced by a properly qapified command.
2274 # Since: 0.14.0
2276 # Returns: Nothing on success
2277 #          If @type is not a valid network backend, DeviceNotFound
2279 { 'command': 'netdev_add',
2280   'data': {'type': 'str', 'id': 'str'},
2281   'gen': false }                # so we can get the additional arguments
2284 # @netdev_del:
2286 # Remove a network backend.
2288 # @id: the name of the network backend to remove
2290 # Returns: Nothing on success
2291 #          If @id is not a valid network backend, DeviceNotFound
2293 # Since: 0.14.0
2295 { 'command': 'netdev_del', 'data': {'id': 'str'} }
2298 # @object-add:
2300 # Create a QOM object.
2302 # @qom-type: the class name for the object to be created
2304 # @id: the name of the new object
2306 # @props: #optional a dictionary of properties to be passed to the backend
2308 # Returns: Nothing on success
2309 #          Error if @qom-type is not a valid class name
2311 # Since: 2.0
2313 { 'command': 'object-add',
2314   'data': {'qom-type': 'str', 'id': 'str', '*props': 'any'} }
2317 # @object-del:
2319 # Remove a QOM object.
2321 # @id: the name of the QOM object to remove
2323 # Returns: Nothing on success
2324 #          Error if @id is not a valid id for a QOM object
2326 # Since: 2.0
2328 { 'command': 'object-del', 'data': {'id': 'str'} }
2331 # @NetdevNoneOptions
2333 # Use it alone to have zero network devices.
2335 # Since 1.2
2337 { 'struct': 'NetdevNoneOptions',
2338   'data': { } }
2341 # @NetLegacyNicOptions
2343 # Create a new Network Interface Card.
2345 # @netdev: #optional id of -netdev to connect to
2347 # @macaddr: #optional MAC address
2349 # @model: #optional device model (e1000, rtl8139, virtio etc.)
2351 # @addr: #optional PCI device address
2353 # @vectors: #optional number of MSI-x vectors, 0 to disable MSI-X
2355 # Since 1.2
2357 { 'struct': 'NetLegacyNicOptions',
2358   'data': {
2359     '*netdev':  'str',
2360     '*macaddr': 'str',
2361     '*model':   'str',
2362     '*addr':    'str',
2363     '*vectors': 'uint32' } }
2366 # @String
2368 # A fat type wrapping 'str', to be embedded in lists.
2370 # Since 1.2
2372 { 'struct': 'String',
2373   'data': {
2374     'str': 'str' } }
2377 # @NetdevUserOptions
2379 # Use the user mode network stack which requires no administrator privilege to
2380 # run.
2382 # @hostname: #optional client hostname reported by the builtin DHCP server
2384 # @restrict: #optional isolate the guest from the host
2386 # @ip: #optional legacy parameter, use net= instead
2388 # @net: #optional IP address and optional netmask
2390 # @host: #optional guest-visible address of the host
2392 # @tftp: #optional root directory of the built-in TFTP server
2394 # @bootfile: #optional BOOTP filename, for use with tftp=
2396 # @dhcpstart: #optional the first of the 16 IPs the built-in DHCP server can
2397 #             assign
2399 # @dns: #optional guest-visible address of the virtual nameserver
2401 # @dnssearch: #optional list of DNS suffixes to search, passed as DHCP option
2402 #             to the guest
2404 # @smb: #optional root directory of the built-in SMB server
2406 # @smbserver: #optional IP address of the built-in SMB server
2408 # @hostfwd: #optional redirect incoming TCP or UDP host connections to guest
2409 #           endpoints
2411 # @guestfwd: #optional forward guest TCP connections
2413 # Since 1.2
2415 { 'struct': 'NetdevUserOptions',
2416   'data': {
2417     '*hostname':  'str',
2418     '*restrict':  'bool',
2419     '*ip':        'str',
2420     '*net':       'str',
2421     '*host':      'str',
2422     '*tftp':      'str',
2423     '*bootfile':  'str',
2424     '*dhcpstart': 'str',
2425     '*dns':       'str',
2426     '*dnssearch': ['String'],
2427     '*smb':       'str',
2428     '*smbserver': 'str',
2429     '*hostfwd':   ['String'],
2430     '*guestfwd':  ['String'] } }
2433 # @NetdevTapOptions
2435 # Connect the host TAP network interface name to the VLAN.
2437 # @ifname: #optional interface name
2439 # @fd: #optional file descriptor of an already opened tap
2441 # @fds: #optional multiple file descriptors of already opened multiqueue capable
2442 # tap
2444 # @script: #optional script to initialize the interface
2446 # @downscript: #optional script to shut down the interface
2448 # @helper: #optional command to execute to configure bridge
2450 # @sndbuf: #optional send buffer limit. Understands [TGMKkb] suffixes.
2452 # @vnet_hdr: #optional enable the IFF_VNET_HDR flag on the tap interface
2454 # @vhost: #optional enable vhost-net network accelerator
2456 # @vhostfd: #optional file descriptor of an already opened vhost net device
2458 # @vhostfds: #optional file descriptors of multiple already opened vhost net
2459 # devices
2461 # @vhostforce: #optional vhost on for non-MSIX virtio guests
2463 # @queues: #optional number of queues to be created for multiqueue capable tap
2465 # Since 1.2
2467 { 'struct': 'NetdevTapOptions',
2468   'data': {
2469     '*ifname':     'str',
2470     '*fd':         'str',
2471     '*fds':        'str',
2472     '*script':     'str',
2473     '*downscript': 'str',
2474     '*helper':     'str',
2475     '*sndbuf':     'size',
2476     '*vnet_hdr':   'bool',
2477     '*vhost':      'bool',
2478     '*vhostfd':    'str',
2479     '*vhostfds':   'str',
2480     '*vhostforce': 'bool',
2481     '*queues':     'uint32'} }
2484 # @NetdevSocketOptions
2486 # Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP
2487 # socket connection.
2489 # @fd: #optional file descriptor of an already opened socket
2491 # @listen: #optional port number, and optional hostname, to listen on
2493 # @connect: #optional port number, and optional hostname, to connect to
2495 # @mcast: #optional UDP multicast address and port number
2497 # @localaddr: #optional source address and port for multicast and udp packets
2499 # @udp: #optional UDP unicast address and port number
2501 # Since 1.2
2503 { 'struct': 'NetdevSocketOptions',
2504   'data': {
2505     '*fd':        'str',
2506     '*listen':    'str',
2507     '*connect':   'str',
2508     '*mcast':     'str',
2509     '*localaddr': 'str',
2510     '*udp':       'str' } }
2513 # @NetdevL2TPv3Options
2515 # Connect the VLAN to Ethernet over L2TPv3 Static tunnel
2517 # @src: source address
2519 # @dst: destination address
2521 # @srcport: #optional source port - mandatory for udp, optional for ip
2523 # @dstport: #optional destination port - mandatory for udp, optional for ip
2525 # @ipv6: #optional - force the use of ipv6
2527 # @udp: #optional - use the udp version of l2tpv3 encapsulation
2529 # @cookie64: #optional - use 64 bit coookies
2531 # @counter: #optional have sequence counter
2533 # @pincounter: #optional pin sequence counter to zero -
2534 #              workaround for buggy implementations or
2535 #              networks with packet reorder
2537 # @txcookie: #optional 32 or 64 bit transmit cookie
2539 # @rxcookie: #optional 32 or 64 bit receive cookie
2541 # @txsession: 32 bit transmit session
2543 # @rxsession: #optional 32 bit receive session - if not specified
2544 #             set to the same value as transmit
2546 # @offset: #optional additional offset - allows the insertion of
2547 #          additional application-specific data before the packet payload
2549 # Since 2.1
2551 { 'struct': 'NetdevL2TPv3Options',
2552   'data': {
2553     'src':          'str',
2554     'dst':          'str',
2555     '*srcport':     'str',
2556     '*dstport':     'str',
2557     '*ipv6':        'bool',
2558     '*udp':         'bool',
2559     '*cookie64':    'bool',
2560     '*counter':     'bool',
2561     '*pincounter':  'bool',
2562     '*txcookie':    'uint64',
2563     '*rxcookie':    'uint64',
2564     'txsession':    'uint32',
2565     '*rxsession':   'uint32',
2566     '*offset':      'uint32' } }
2569 # @NetdevVdeOptions
2571 # Connect the VLAN to a vde switch running on the host.
2573 # @sock: #optional socket path
2575 # @port: #optional port number
2577 # @group: #optional group owner of socket
2579 # @mode: #optional permissions for socket
2581 # Since 1.2
2583 { 'struct': 'NetdevVdeOptions',
2584   'data': {
2585     '*sock':  'str',
2586     '*port':  'uint16',
2587     '*group': 'str',
2588     '*mode':  'uint16' } }
2591 # @NetdevDumpOptions
2593 # Dump VLAN network traffic to a file.
2595 # @len: #optional per-packet size limit (64k default). Understands [TGMKkb]
2596 # suffixes.
2598 # @file: #optional dump file path (default is qemu-vlan0.pcap)
2600 # Since 1.2
2602 { 'struct': 'NetdevDumpOptions',
2603   'data': {
2604     '*len':  'size',
2605     '*file': 'str' } }
2608 # @NetdevBridgeOptions
2610 # Connect a host TAP network interface to a host bridge device.
2612 # @br: #optional bridge name
2614 # @helper: #optional command to execute to configure bridge
2616 # Since 1.2
2618 { 'struct': 'NetdevBridgeOptions',
2619   'data': {
2620     '*br':     'str',
2621     '*helper': 'str' } }
2624 # @NetdevHubPortOptions
2626 # Connect two or more net clients through a software hub.
2628 # @hubid: hub identifier number
2630 # Since 1.2
2632 { 'struct': 'NetdevHubPortOptions',
2633   'data': {
2634     'hubid':     'int32' } }
2637 # @NetdevNetmapOptions
2639 # Connect a client to a netmap-enabled NIC or to a VALE switch port
2641 # @ifname: Either the name of an existing network interface supported by
2642 #          netmap, or the name of a VALE port (created on the fly).
2643 #          A VALE port name is in the form 'valeXXX:YYY', where XXX and
2644 #          YYY are non-negative integers. XXX identifies a switch and
2645 #          YYY identifies a port of the switch. VALE ports having the
2646 #          same XXX are therefore connected to the same switch.
2648 # @devname: #optional path of the netmap device (default: '/dev/netmap').
2650 # Since 2.0
2652 { 'struct': 'NetdevNetmapOptions',
2653   'data': {
2654     'ifname':     'str',
2655     '*devname':    'str' } }
2658 # @NetdevVhostUserOptions
2660 # Vhost-user network backend
2662 # @chardev: name of a unix socket chardev
2664 # @vhostforce: #optional vhost on for non-MSIX virtio guests (default: false).
2666 # @queues: #optional number of queues to be created for multiqueue vhost-user
2667 #          (default: 1) (Since 2.5)
2669 # Since 2.1
2671 { 'struct': 'NetdevVhostUserOptions',
2672   'data': {
2673     'chardev':        'str',
2674     '*vhostforce':    'bool',
2675     '*queues':        'int' } }
2678 # @NetClientOptions
2680 # A discriminated record of network device traits.
2682 # Since 1.2
2684 # 'l2tpv3' - since 2.1
2687 { 'union': 'NetClientOptions',
2688   'data': {
2689     'none':     'NetdevNoneOptions',
2690     'nic':      'NetLegacyNicOptions',
2691     'user':     'NetdevUserOptions',
2692     'tap':      'NetdevTapOptions',
2693     'l2tpv3':   'NetdevL2TPv3Options',
2694     'socket':   'NetdevSocketOptions',
2695     'vde':      'NetdevVdeOptions',
2696     'dump':     'NetdevDumpOptions',
2697     'bridge':   'NetdevBridgeOptions',
2698     'hubport':  'NetdevHubPortOptions',
2699     'netmap':   'NetdevNetmapOptions',
2700     'vhost-user': 'NetdevVhostUserOptions' } }
2703 # @NetLegacy
2705 # Captures the configuration of a network device; legacy.
2707 # @vlan: #optional vlan number
2709 # @id: #optional identifier for monitor commands
2711 # @name: #optional identifier for monitor commands, ignored if @id is present
2713 # @opts: device type specific properties (legacy)
2715 # Since 1.2
2717 { 'struct': 'NetLegacy',
2718   'data': {
2719     '*vlan': 'int32',
2720     '*id':   'str',
2721     '*name': 'str',
2722     'opts':  'NetClientOptions' } }
2725 # @Netdev
2727 # Captures the configuration of a network device.
2729 # @id: identifier for monitor commands.
2731 # @opts: device type specific properties
2733 # Since 1.2
2735 { 'struct': 'Netdev',
2736   'data': {
2737     'id':   'str',
2738     'opts': 'NetClientOptions' } }
2741 # @NetFilterDirection
2743 # Indicates whether a netfilter is attached to a netdev's transmit queue or
2744 # receive queue or both.
2746 # @all: the filter is attached both to the receive and the transmit
2747 #       queue of the netdev (default).
2749 # @rx: the filter is attached to the receive queue of the netdev,
2750 #      where it will receive packets sent to the netdev.
2752 # @tx: the filter is attached to the transmit queue of the netdev,
2753 #      where it will receive packets sent by the netdev.
2755 # Since 2.5
2757 { 'enum': 'NetFilterDirection',
2758   'data': [ 'all', 'rx', 'tx' ] }
2761 # @InetSocketAddress
2763 # Captures a socket address or address range in the Internet namespace.
2765 # @host: host part of the address
2767 # @port: port part of the address, or lowest port if @to is present
2769 # @to: highest port to try
2771 # @ipv4: whether to accept IPv4 addresses, default try both IPv4 and IPv6
2772 #        #optional
2774 # @ipv6: whether to accept IPv6 addresses, default try both IPv4 and IPv6
2775 #        #optional
2777 # Since 1.3
2779 { 'struct': 'InetSocketAddress',
2780   'data': {
2781     'host': 'str',
2782     'port': 'str',
2783     '*to': 'uint16',
2784     '*ipv4': 'bool',
2785     '*ipv6': 'bool' } }
2788 # @UnixSocketAddress
2790 # Captures a socket address in the local ("Unix socket") namespace.
2792 # @path: filesystem path to use
2794 # Since 1.3
2796 { 'struct': 'UnixSocketAddress',
2797   'data': {
2798     'path': 'str' } }
2801 # @SocketAddress
2803 # Captures the address of a socket, which could also be a named file descriptor
2805 # Since 1.3
2807 { 'union': 'SocketAddress',
2808   'data': {
2809     'inet': 'InetSocketAddress',
2810     'unix': 'UnixSocketAddress',
2811     'fd': 'String' } }
2814 # @getfd:
2816 # Receive a file descriptor via SCM rights and assign it a name
2818 # @fdname: file descriptor name
2820 # Returns: Nothing on success
2822 # Since: 0.14.0
2824 # Notes: If @fdname already exists, the file descriptor assigned to
2825 #        it will be closed and replaced by the received file
2826 #        descriptor.
2827 #        The 'closefd' command can be used to explicitly close the
2828 #        file descriptor when it is no longer needed.
2830 { 'command': 'getfd', 'data': {'fdname': 'str'} }
2833 # @closefd:
2835 # Close a file descriptor previously passed via SCM rights
2837 # @fdname: file descriptor name
2839 # Returns: Nothing on success
2841 # Since: 0.14.0
2843 { 'command': 'closefd', 'data': {'fdname': 'str'} }
2846 # @MachineInfo:
2848 # Information describing a machine.
2850 # @name: the name of the machine
2852 # @alias: #optional an alias for the machine name
2854 # @default: #optional whether the machine is default
2856 # @cpu-max: maximum number of CPUs supported by the machine type
2857 #           (since 1.5.0)
2859 # Since: 1.2.0
2861 { 'struct': 'MachineInfo',
2862   'data': { 'name': 'str', '*alias': 'str',
2863             '*is-default': 'bool', 'cpu-max': 'int' } }
2866 # @query-machines:
2868 # Return a list of supported machines
2870 # Returns: a list of MachineInfo
2872 # Since: 1.2.0
2874 { 'command': 'query-machines', 'returns': ['MachineInfo'] }
2877 # @CpuDefinitionInfo:
2879 # Virtual CPU definition.
2881 # @name: the name of the CPU definition
2883 # Since: 1.2.0
2885 { 'struct': 'CpuDefinitionInfo',
2886   'data': { 'name': 'str' } }
2889 # @query-cpu-definitions:
2891 # Return a list of supported virtual CPU definitions
2893 # Returns: a list of CpuDefInfo
2895 # Since: 1.2.0
2897 { 'command': 'query-cpu-definitions', 'returns': ['CpuDefinitionInfo'] }
2899 # @AddfdInfo:
2901 # Information about a file descriptor that was added to an fd set.
2903 # @fdset-id: The ID of the fd set that @fd was added to.
2905 # @fd: The file descriptor that was received via SCM rights and
2906 #      added to the fd set.
2908 # Since: 1.2.0
2910 { 'struct': 'AddfdInfo', 'data': {'fdset-id': 'int', 'fd': 'int'} }
2913 # @add-fd:
2915 # Add a file descriptor, that was passed via SCM rights, to an fd set.
2917 # @fdset-id: #optional The ID of the fd set to add the file descriptor to.
2919 # @opaque: #optional A free-form string that can be used to describe the fd.
2921 # Returns: @AddfdInfo on success
2922 #          If file descriptor was not received, FdNotSupplied
2923 #          If @fdset-id is a negative value, InvalidParameterValue
2925 # Notes: The list of fd sets is shared by all monitor connections.
2927 #        If @fdset-id is not specified, a new fd set will be created.
2929 # Since: 1.2.0
2931 { 'command': 'add-fd', 'data': {'*fdset-id': 'int', '*opaque': 'str'},
2932   'returns': 'AddfdInfo' }
2935 # @remove-fd:
2937 # Remove a file descriptor from an fd set.
2939 # @fdset-id: The ID of the fd set that the file descriptor belongs to.
2941 # @fd: #optional The file descriptor that is to be removed.
2943 # Returns: Nothing on success
2944 #          If @fdset-id or @fd is not found, FdNotFound
2946 # Since: 1.2.0
2948 # Notes: The list of fd sets is shared by all monitor connections.
2950 #        If @fd is not specified, all file descriptors in @fdset-id
2951 #        will be removed.
2953 { 'command': 'remove-fd', 'data': {'fdset-id': 'int', '*fd': 'int'} }
2956 # @FdsetFdInfo:
2958 # Information about a file descriptor that belongs to an fd set.
2960 # @fd: The file descriptor value.
2962 # @opaque: #optional A free-form string that can be used to describe the fd.
2964 # Since: 1.2.0
2966 { 'struct': 'FdsetFdInfo',
2967   'data': {'fd': 'int', '*opaque': 'str'} }
2970 # @FdsetInfo:
2972 # Information about an fd set.
2974 # @fdset-id: The ID of the fd set.
2976 # @fds: A list of file descriptors that belong to this fd set.
2978 # Since: 1.2.0
2980 { 'struct': 'FdsetInfo',
2981   'data': {'fdset-id': 'int', 'fds': ['FdsetFdInfo']} }
2984 # @query-fdsets:
2986 # Return information describing all fd sets.
2988 # Returns: A list of @FdsetInfo
2990 # Since: 1.2.0
2992 # Note: The list of fd sets is shared by all monitor connections.
2995 { 'command': 'query-fdsets', 'returns': ['FdsetInfo'] }
2998 # @TargetInfo:
3000 # Information describing the QEMU target.
3002 # @arch: the target architecture (eg "x86_64", "i386", etc)
3004 # Since: 1.2.0
3006 { 'struct': 'TargetInfo',
3007   'data': { 'arch': 'str' } }
3010 # @query-target:
3012 # Return information about the target for this QEMU
3014 # Returns: TargetInfo
3016 # Since: 1.2.0
3018 { 'command': 'query-target', 'returns': 'TargetInfo' }
3021 # @QKeyCode:
3023 # An enumeration of key name.
3025 # This is used by the send-key command.
3027 # Since: 1.3.0
3029 # 'unmapped' and 'pause' since 2.0
3030 # 'ro' and 'kp_comma' since 2.4
3032 { 'enum': 'QKeyCode',
3033   'data': [ 'unmapped',
3034             'shift', 'shift_r', 'alt', 'alt_r', 'altgr', 'altgr_r', 'ctrl',
3035             'ctrl_r', 'menu', 'esc', '1', '2', '3', '4', '5', '6', '7', '8',
3036             '9', '0', 'minus', 'equal', 'backspace', 'tab', 'q', 'w', 'e',
3037             'r', 't', 'y', 'u', 'i', 'o', 'p', 'bracket_left', 'bracket_right',
3038             'ret', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'semicolon',
3039             'apostrophe', 'grave_accent', 'backslash', 'z', 'x', 'c', 'v', 'b',
3040             'n', 'm', 'comma', 'dot', 'slash', 'asterisk', 'spc', 'caps_lock',
3041             'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'f10',
3042             'num_lock', 'scroll_lock', 'kp_divide', 'kp_multiply',
3043             'kp_subtract', 'kp_add', 'kp_enter', 'kp_decimal', 'sysrq', 'kp_0',
3044             'kp_1', 'kp_2', 'kp_3', 'kp_4', 'kp_5', 'kp_6', 'kp_7', 'kp_8',
3045             'kp_9', 'less', 'f11', 'f12', 'print', 'home', 'pgup', 'pgdn', 'end',
3046             'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again',
3047             'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut',
3048             'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause', 'ro',
3049             'kp_comma' ] }
3052 # @KeyValue
3054 # Represents a keyboard key.
3056 # Since: 1.3.0
3058 { 'union': 'KeyValue',
3059   'data': {
3060     'number': 'int',
3061     'qcode': 'QKeyCode' } }
3064 # @send-key:
3066 # Send keys to guest.
3068 # @keys: An array of @KeyValue elements. All @KeyValues in this array are
3069 #        simultaneously sent to the guest. A @KeyValue.number value is sent
3070 #        directly to the guest, while @KeyValue.qcode must be a valid
3071 #        @QKeyCode value
3073 # @hold-time: #optional time to delay key up events, milliseconds. Defaults
3074 #             to 100
3076 # Returns: Nothing on success
3077 #          If key is unknown or redundant, InvalidParameter
3079 # Since: 1.3.0
3082 { 'command': 'send-key',
3083   'data': { 'keys': ['KeyValue'], '*hold-time': 'int' } }
3086 # @screendump:
3088 # Write a PPM of the VGA screen to a file.
3090 # @filename: the path of a new PPM file to store the image
3092 # Returns: Nothing on success
3094 # Since: 0.14.0
3096 { 'command': 'screendump', 'data': {'filename': 'str'} }
3099 # @ChardevFile:
3101 # Configuration info for file chardevs.
3103 # @in:  #optional The name of the input file
3104 # @out: The name of the output file
3105 # @append: #optional Open the file in append mode (default false to
3106 #          truncate) (Since 2.6)
3108 # Since: 1.4
3110 { 'struct': 'ChardevFile', 'data': { '*in' : 'str',
3111                                    'out' : 'str',
3112                                    '*append': 'bool' } }
3115 # @ChardevHostdev:
3117 # Configuration info for device and pipe chardevs.
3119 # @device: The name of the special file for the device,
3120 #          i.e. /dev/ttyS0 on Unix or COM1: on Windows
3121 # @type: What kind of device this is.
3123 # Since: 1.4
3125 { 'struct': 'ChardevHostdev', 'data': { 'device' : 'str' } }
3128 # @ChardevSocket:
3130 # Configuration info for (stream) socket chardevs.
3132 # @addr: socket address to listen on (server=true)
3133 #        or connect to (server=false)
3134 # @server: #optional create server socket (default: true)
3135 # @wait: #optional wait for incoming connection on server
3136 #        sockets (default: false).
3137 # @nodelay: #optional set TCP_NODELAY socket option (default: false)
3138 # @telnet: #optional enable telnet protocol on server
3139 #          sockets (default: false)
3140 # @reconnect: #optional For a client socket, if a socket is disconnected,
3141 #          then attempt a reconnect after the given number of seconds.
3142 #          Setting this to zero disables this function. (default: 0)
3143 #          (Since: 2.2)
3145 # Since: 1.4
3147 { 'struct': 'ChardevSocket', 'data': { 'addr'       : 'SocketAddress',
3148                                      '*server'    : 'bool',
3149                                      '*wait'      : 'bool',
3150                                      '*nodelay'   : 'bool',
3151                                      '*telnet'    : 'bool',
3152                                      '*reconnect' : 'int' } }
3155 # @ChardevUdp:
3157 # Configuration info for datagram socket chardevs.
3159 # @remote: remote address
3160 # @local: #optional local address
3162 # Since: 1.5
3164 { 'struct': 'ChardevUdp', 'data': { 'remote' : 'SocketAddress',
3165                                   '*local' : 'SocketAddress' } }
3168 # @ChardevMux:
3170 # Configuration info for mux chardevs.
3172 # @chardev: name of the base chardev.
3174 # Since: 1.5
3176 { 'struct': 'ChardevMux', 'data': { 'chardev' : 'str' } }
3179 # @ChardevStdio:
3181 # Configuration info for stdio chardevs.
3183 # @signal: #optional Allow signals (such as SIGINT triggered by ^C)
3184 #          be delivered to qemu.  Default: true in -nographic mode,
3185 #          false otherwise.
3187 # Since: 1.5
3189 { 'struct': 'ChardevStdio', 'data': { '*signal' : 'bool' } }
3192 # @ChardevSpiceChannel:
3194 # Configuration info for spice vm channel chardevs.
3196 # @type: kind of channel (for example vdagent).
3198 # Since: 1.5
3200 { 'struct': 'ChardevSpiceChannel', 'data': { 'type'  : 'str' } }
3203 # @ChardevSpicePort:
3205 # Configuration info for spice port chardevs.
3207 # @fqdn: name of the channel (see docs/spice-port-fqdn.txt)
3209 # Since: 1.5
3211 { 'struct': 'ChardevSpicePort', 'data': { 'fqdn'  : 'str' } }
3214 # @ChardevVC:
3216 # Configuration info for virtual console chardevs.
3218 # @width:  console width,  in pixels
3219 # @height: console height, in pixels
3220 # @cols:   console width,  in chars
3221 # @rows:   console height, in chars
3223 # Since: 1.5
3225 { 'struct': 'ChardevVC', 'data': { '*width'  : 'int',
3226                                  '*height' : 'int',
3227                                  '*cols'   : 'int',
3228                                  '*rows'   : 'int' } }
3231 # @ChardevRingbuf:
3233 # Configuration info for ring buffer chardevs.
3235 # @size: #optional ring buffer size, must be power of two, default is 65536
3237 # Since: 1.5
3239 { 'struct': 'ChardevRingbuf', 'data': { '*size'  : 'int' } }
3242 # @ChardevBackend:
3244 # Configuration info for the new chardev backend.
3246 # Since: 1.4 (testdev since 2.2)
3248 { 'struct': 'ChardevDummy', 'data': { } }
3250 { 'union': 'ChardevBackend', 'data': { 'file'   : 'ChardevFile',
3251                                        'serial' : 'ChardevHostdev',
3252                                        'parallel': 'ChardevHostdev',
3253                                        'pipe'   : 'ChardevHostdev',
3254                                        'socket' : 'ChardevSocket',
3255                                        'udp'    : 'ChardevUdp',
3256                                        'pty'    : 'ChardevDummy',
3257                                        'null'   : 'ChardevDummy',
3258                                        'mux'    : 'ChardevMux',
3259                                        'msmouse': 'ChardevDummy',
3260                                        'braille': 'ChardevDummy',
3261                                        'testdev': 'ChardevDummy',
3262                                        'stdio'  : 'ChardevStdio',
3263                                        'console': 'ChardevDummy',
3264                                        'spicevmc' : 'ChardevSpiceChannel',
3265                                        'spiceport' : 'ChardevSpicePort',
3266                                        'vc'     : 'ChardevVC',
3267                                        'ringbuf': 'ChardevRingbuf',
3268                                        # next one is just for compatibility
3269                                        'memory' : 'ChardevRingbuf' } }
3272 # @ChardevReturn:
3274 # Return info about the chardev backend just created.
3276 # @pty: #optional name of the slave pseudoterminal device, present if
3277 #       and only if a chardev of type 'pty' was created
3279 # Since: 1.4
3281 { 'struct' : 'ChardevReturn', 'data': { '*pty' : 'str' } }
3284 # @chardev-add:
3286 # Add a character device backend
3288 # @id: the chardev's ID, must be unique
3289 # @backend: backend type and parameters
3291 # Returns: ChardevReturn.
3293 # Since: 1.4
3295 { 'command': 'chardev-add', 'data': {'id'      : 'str',
3296                                      'backend' : 'ChardevBackend' },
3297   'returns': 'ChardevReturn' }
3300 # @chardev-remove:
3302 # Remove a character device backend
3304 # @id: the chardev's ID, must exist and not be in use
3306 # Returns: Nothing on success
3308 # Since: 1.4
3310 { 'command': 'chardev-remove', 'data': {'id': 'str'} }
3313 # @TpmModel:
3315 # An enumeration of TPM models
3317 # @tpm-tis: TPM TIS model
3319 # Since: 1.5
3321 { 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
3324 # @query-tpm-models:
3326 # Return a list of supported TPM models
3328 # Returns: a list of TpmModel
3330 # Since: 1.5
3332 { 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
3335 # @TpmType:
3337 # An enumeration of TPM types
3339 # @passthrough: TPM passthrough type
3341 # Since: 1.5
3343 { 'enum': 'TpmType', 'data': [ 'passthrough' ] }
3346 # @query-tpm-types:
3348 # Return a list of supported TPM types
3350 # Returns: a list of TpmType
3352 # Since: 1.5
3354 { 'command': 'query-tpm-types', 'returns': ['TpmType'] }
3357 # @TPMPassthroughOptions:
3359 # Information about the TPM passthrough type
3361 # @path: #optional string describing the path used for accessing the TPM device
3363 # @cancel-path: #optional string showing the TPM's sysfs cancel file
3364 #               for cancellation of TPM commands while they are executing
3366 # Since: 1.5
3368 { 'struct': 'TPMPassthroughOptions', 'data': { '*path' : 'str',
3369                                              '*cancel-path' : 'str'} }
3372 # @TpmTypeOptions:
3374 # A union referencing different TPM backend types' configuration options
3376 # @passthrough: The configuration options for the TPM passthrough type
3378 # Since: 1.5
3380 { 'union': 'TpmTypeOptions',
3381    'data': { 'passthrough' : 'TPMPassthroughOptions' } }
3384 # @TpmInfo:
3386 # Information about the TPM
3388 # @id: The Id of the TPM
3390 # @model: The TPM frontend model
3392 # @options: The TPM (backend) type configuration options
3394 # Since: 1.5
3396 { 'struct': 'TPMInfo',
3397   'data': {'id': 'str',
3398            'model': 'TpmModel',
3399            'options': 'TpmTypeOptions' } }
3402 # @query-tpm:
3404 # Return information about the TPM device
3406 # Returns: @TPMInfo on success
3408 # Since: 1.5
3410 { 'command': 'query-tpm', 'returns': ['TPMInfo'] }
3413 # @AcpiTableOptions
3415 # Specify an ACPI table on the command line to load.
3417 # At most one of @file and @data can be specified. The list of files specified
3418 # by any one of them is loaded and concatenated in order. If both are omitted,
3419 # @data is implied.
3421 # Other fields / optargs can be used to override fields of the generic ACPI
3422 # table header; refer to the ACPI specification 5.0, section 5.2.6 System
3423 # Description Table Header. If a header field is not overridden, then the
3424 # corresponding value from the concatenated blob is used (in case of @file), or
3425 # it is filled in with a hard-coded value (in case of @data).
3427 # String fields are copied into the matching ACPI member from lowest address
3428 # upwards, and silently truncated / NUL-padded to length.
3430 # @sig: #optional table signature / identifier (4 bytes)
3432 # @rev: #optional table revision number (dependent on signature, 1 byte)
3434 # @oem_id: #optional OEM identifier (6 bytes)
3436 # @oem_table_id: #optional OEM table identifier (8 bytes)
3438 # @oem_rev: #optional OEM-supplied revision number (4 bytes)
3440 # @asl_compiler_id: #optional identifier of the utility that created the table
3441 #                   (4 bytes)
3443 # @asl_compiler_rev: #optional revision number of the utility that created the
3444 #                    table (4 bytes)
3446 # @file: #optional colon (:) separated list of pathnames to load and
3447 #        concatenate as table data. The resultant binary blob is expected to
3448 #        have an ACPI table header. At least one file is required. This field
3449 #        excludes @data.
3451 # @data: #optional colon (:) separated list of pathnames to load and
3452 #        concatenate as table data. The resultant binary blob must not have an
3453 #        ACPI table header. At least one file is required. This field excludes
3454 #        @file.
3456 # Since 1.5
3458 { 'struct': 'AcpiTableOptions',
3459   'data': {
3460     '*sig':               'str',
3461     '*rev':               'uint8',
3462     '*oem_id':            'str',
3463     '*oem_table_id':      'str',
3464     '*oem_rev':           'uint32',
3465     '*asl_compiler_id':   'str',
3466     '*asl_compiler_rev':  'uint32',
3467     '*file':              'str',
3468     '*data':              'str' }}
3471 # @CommandLineParameterType:
3473 # Possible types for an option parameter.
3475 # @string: accepts a character string
3477 # @boolean: accepts "on" or "off"
3479 # @number: accepts a number
3481 # @size: accepts a number followed by an optional suffix (K)ilo,
3482 #        (M)ega, (G)iga, (T)era
3484 # Since 1.5
3486 { 'enum': 'CommandLineParameterType',
3487   'data': ['string', 'boolean', 'number', 'size'] }
3490 # @CommandLineParameterInfo:
3492 # Details about a single parameter of a command line option.
3494 # @name: parameter name
3496 # @type: parameter @CommandLineParameterType
3498 # @help: #optional human readable text string, not suitable for parsing.
3500 # @default: #optional default value string (since 2.1)
3502 # Since 1.5
3504 { 'struct': 'CommandLineParameterInfo',
3505   'data': { 'name': 'str',
3506             'type': 'CommandLineParameterType',
3507             '*help': 'str',
3508             '*default': 'str' } }
3511 # @CommandLineOptionInfo:
3513 # Details about a command line option, including its list of parameter details
3515 # @option: option name
3517 # @parameters: an array of @CommandLineParameterInfo
3519 # Since 1.5
3521 { 'struct': 'CommandLineOptionInfo',
3522   'data': { 'option': 'str', 'parameters': ['CommandLineParameterInfo'] } }
3525 # @query-command-line-options:
3527 # Query command line option schema.
3529 # @option: #optional option name
3531 # Returns: list of @CommandLineOptionInfo for all options (or for the given
3532 #          @option).  Returns an error if the given @option doesn't exist.
3534 # Since 1.5
3536 {'command': 'query-command-line-options', 'data': { '*option': 'str' },
3537  'returns': ['CommandLineOptionInfo'] }
3540 # @X86CPURegister32
3542 # A X86 32-bit register
3544 # Since: 1.5
3546 { 'enum': 'X86CPURegister32',
3547   'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
3550 # @X86CPUFeatureWordInfo
3552 # Information about a X86 CPU feature word
3554 # @cpuid-input-eax: Input EAX value for CPUID instruction for that feature word
3556 # @cpuid-input-ecx: #optional Input ECX value for CPUID instruction for that
3557 #                   feature word
3559 # @cpuid-register: Output register containing the feature bits
3561 # @features: value of output register, containing the feature bits
3563 # Since: 1.5
3565 { 'struct': 'X86CPUFeatureWordInfo',
3566   'data': { 'cpuid-input-eax': 'int',
3567             '*cpuid-input-ecx': 'int',
3568             'cpuid-register': 'X86CPURegister32',
3569             'features': 'int' } }
3572 # @DummyForceArrays
3574 # Not used by QMP; hack to let us use X86CPUFeatureWordInfoList internally
3576 # Since 2.5
3578 { 'struct': 'DummyForceArrays',
3579   'data': { 'unused': ['X86CPUFeatureWordInfo'] } }
3583 # @RxState:
3585 # Packets receiving state
3587 # @normal: filter assigned packets according to the mac-table
3589 # @none: don't receive any assigned packet
3591 # @all: receive all assigned packets
3593 # Since: 1.6
3595 { 'enum': 'RxState', 'data': [ 'normal', 'none', 'all' ] }
3598 # @RxFilterInfo:
3600 # Rx-filter information for a NIC.
3602 # @name: net client name
3604 # @promiscuous: whether promiscuous mode is enabled
3606 # @multicast: multicast receive state
3608 # @unicast: unicast receive state
3610 # @vlan: vlan receive state (Since 2.0)
3612 # @broadcast-allowed: whether to receive broadcast
3614 # @multicast-overflow: multicast table is overflowed or not
3616 # @unicast-overflow: unicast table is overflowed or not
3618 # @main-mac: the main macaddr string
3620 # @vlan-table: a list of active vlan id
3622 # @unicast-table: a list of unicast macaddr string
3624 # @multicast-table: a list of multicast macaddr string
3626 # Since 1.6
3629 { 'struct': 'RxFilterInfo',
3630   'data': {
3631     'name':               'str',
3632     'promiscuous':        'bool',
3633     'multicast':          'RxState',
3634     'unicast':            'RxState',
3635     'vlan':               'RxState',
3636     'broadcast-allowed':  'bool',
3637     'multicast-overflow': 'bool',
3638     'unicast-overflow':   'bool',
3639     'main-mac':           'str',
3640     'vlan-table':         ['int'],
3641     'unicast-table':      ['str'],
3642     'multicast-table':    ['str'] }}
3645 # @query-rx-filter:
3647 # Return rx-filter information for all NICs (or for the given NIC).
3649 # @name: #optional net client name
3651 # Returns: list of @RxFilterInfo for all NICs (or for the given NIC).
3652 #          Returns an error if the given @name doesn't exist, or given
3653 #          NIC doesn't support rx-filter querying, or given net client
3654 #          isn't a NIC.
3656 # Since: 1.6
3658 { 'command': 'query-rx-filter', 'data': { '*name': 'str' },
3659   'returns': ['RxFilterInfo'] }
3662 # @InputButton
3664 # Button of a pointer input device (mouse, tablet).
3666 # Since: 2.0
3668 # Note that the spelling of these values may change when the
3669 # x-input-send-event is promoted out of experimental status.
3671 { 'enum'  : 'InputButton',
3672   'data'  : [ 'Left', 'Middle', 'Right', 'WheelUp', 'WheelDown' ] }
3675 # @InputAxis
3677 # Position axis of a pointer input device (mouse, tablet).
3679 # Since: 2.0
3681 # Note that the spelling of these values may change when the
3682 # x-input-send-event is promoted out of experimental status.
3684 { 'enum'  : 'InputAxis',
3685   'data'  : [ 'X', 'Y' ] }
3688 # @InputKeyEvent
3690 # Keyboard input event.
3692 # @key:    Which key this event is for.
3693 # @down:   True for key-down and false for key-up events.
3695 # Since: 2.0
3697 { 'struct'  : 'InputKeyEvent',
3698   'data'  : { 'key'     : 'KeyValue',
3699               'down'    : 'bool' } }
3702 # @InputBtnEvent
3704 # Pointer button input event.
3706 # @button: Which button this event is for.
3707 # @down:   True for key-down and false for key-up events.
3709 # Since: 2.0
3711 { 'struct'  : 'InputBtnEvent',
3712   'data'  : { 'button'  : 'InputButton',
3713               'down'    : 'bool' } }
3716 # @InputMoveEvent
3718 # Pointer motion input event.
3720 # @axis:   Which axis is referenced by @value.
3721 # @value:  Pointer position.  For absolute coordinates the
3722 #          valid range is 0 -> 0x7ffff
3724 # Since: 2.0
3726 { 'struct'  : 'InputMoveEvent',
3727   'data'  : { 'axis'    : 'InputAxis',
3728               'value'   : 'int' } }
3731 # @InputEvent
3733 # Input event union.
3735 # @key: Input event of Keyboard
3736 # @btn: Input event of pointer buttons
3737 # @rel: Input event of relative pointer motion
3738 # @abs: Input event of absolute pointer motion
3740 # Since: 2.0
3742 { 'union' : 'InputEvent',
3743   'data'  : { 'key'     : 'InputKeyEvent',
3744               'btn'     : 'InputBtnEvent',
3745               'rel'     : 'InputMoveEvent',
3746               'abs'     : 'InputMoveEvent' } }
3749 # @x-input-send-event
3751 # Send input event(s) to guest.
3753 # @console: #optional console to send event(s) to.
3754 #           This parameter can be used to send the input event to
3755 #           specific input devices in case (a) multiple input devices
3756 #           of the same kind are added to the virtual machine and (b)
3757 #           you have configured input routing (see docs/multiseat.txt)
3758 #           for those input devices.  If input routing is not
3759 #           configured this parameter has no effect.
3760 #           If @console is missing, only devices that aren't associated
3761 #           with a console are admissible.
3762 #           If @console is specified, it must exist, and both devices
3763 #           associated with that console and devices not associated with a
3764 #           console are admissible, but the former take precedence.
3767 # @events: List of InputEvent union.
3769 # Returns: Nothing on success.
3771 # Since: 2.2
3773 # Note: this command is experimental, and not a stable API.  Things that
3774 # might change before it becomes stable include the spelling of enum
3775 # values for InputButton and InputAxis, and the notion of how to designate
3776 # which console will receive the event.
3779 { 'command': 'x-input-send-event',
3780   'data': { '*console':'int', 'events': [ 'InputEvent' ] } }
3783 # @NumaOptions
3785 # A discriminated record of NUMA options. (for OptsVisitor)
3787 # Since 2.1
3789 { 'union': 'NumaOptions',
3790   'data': {
3791     'node': 'NumaNodeOptions' }}
3794 # @NumaNodeOptions
3796 # Create a guest NUMA node. (for OptsVisitor)
3798 # @nodeid: #optional NUMA node ID (increase by 1 from 0 if omitted)
3800 # @cpus: #optional VCPUs belonging to this node (assign VCPUS round-robin
3801 #         if omitted)
3803 # @mem: #optional memory size of this node; mutually exclusive with @memdev.
3804 #       Equally divide total memory among nodes if both @mem and @memdev are
3805 #       omitted.
3807 # @memdev: #optional memory backend object.  If specified for one node,
3808 #          it must be specified for all nodes.
3810 # Since: 2.1
3812 { 'struct': 'NumaNodeOptions',
3813   'data': {
3814    '*nodeid': 'uint16',
3815    '*cpus':   ['uint16'],
3816    '*mem':    'size',
3817    '*memdev': 'str' }}
3820 # @HostMemPolicy
3822 # Host memory policy types
3824 # @default: restore default policy, remove any nondefault policy
3826 # @preferred: set the preferred host nodes for allocation
3828 # @bind: a strict policy that restricts memory allocation to the
3829 #        host nodes specified
3831 # @interleave: memory allocations are interleaved across the set
3832 #              of host nodes specified
3834 # Since 2.1
3836 { 'enum': 'HostMemPolicy',
3837   'data': [ 'default', 'preferred', 'bind', 'interleave' ] }
3840 # @Memdev:
3842 # Information about memory backend
3844 # @size: memory backend size
3846 # @merge: enables or disables memory merge support
3848 # @dump: includes memory backend's memory in a core dump or not
3850 # @prealloc: enables or disables memory preallocation
3852 # @host-nodes: host nodes for its memory policy
3854 # @policy: memory policy of memory backend
3856 # Since: 2.1
3859 { 'struct': 'Memdev',
3860   'data': {
3861     'size':       'size',
3862     'merge':      'bool',
3863     'dump':       'bool',
3864     'prealloc':   'bool',
3865     'host-nodes': ['uint16'],
3866     'policy':     'HostMemPolicy' }}
3869 # @query-memdev:
3871 # Returns information for all memory backends.
3873 # Returns: a list of @Memdev.
3875 # Since: 2.1
3877 { 'command': 'query-memdev', 'returns': ['Memdev'] }
3880 # @PCDIMMDeviceInfo:
3882 # PCDIMMDevice state information
3884 # @id: #optional device's ID
3886 # @addr: physical address, where device is mapped
3888 # @size: size of memory that the device provides
3890 # @slot: slot number at which device is plugged in
3892 # @node: NUMA node number where device is plugged in
3894 # @memdev: memory backend linked with device
3896 # @hotplugged: true if device was hotplugged
3898 # @hotpluggable: true if device if could be added/removed while machine is running
3900 # Since: 2.1
3902 { 'struct': 'PCDIMMDeviceInfo',
3903   'data': { '*id': 'str',
3904             'addr': 'int',
3905             'size': 'int',
3906             'slot': 'int',
3907             'node': 'int',
3908             'memdev': 'str',
3909             'hotplugged': 'bool',
3910             'hotpluggable': 'bool'
3911           }
3915 # @MemoryDeviceInfo:
3917 # Union containing information about a memory device
3919 # Since: 2.1
3921 { 'union': 'MemoryDeviceInfo', 'data': {'dimm': 'PCDIMMDeviceInfo'} }
3924 # @query-memory-devices
3926 # Lists available memory devices and their state
3928 # Since: 2.1
3930 { 'command': 'query-memory-devices', 'returns': ['MemoryDeviceInfo'] }
3932 ## @ACPISlotType
3934 # @DIMM: memory slot
3936 { 'enum': 'ACPISlotType', 'data': [ 'DIMM' ] }
3938 ## @ACPIOSTInfo
3940 # OSPM Status Indication for a device
3941 # For description of possible values of @source and @status fields
3942 # see "_OST (OSPM Status Indication)" chapter of ACPI5.0 spec.
3944 # @device: #optional device ID associated with slot
3946 # @slot: slot ID, unique per slot of a given @slot-type
3948 # @slot-type: type of the slot
3950 # @source: an integer containing the source event
3952 # @status: an integer containing the status code
3954 # Since: 2.1
3956 { 'struct': 'ACPIOSTInfo',
3957   'data'  : { '*device': 'str',
3958               'slot': 'str',
3959               'slot-type': 'ACPISlotType',
3960               'source': 'int',
3961               'status': 'int' } }
3964 # @query-acpi-ospm-status
3966 # Lists ACPI OSPM status of ACPI device objects,
3967 # which might be reported via _OST method
3969 # Since: 2.1
3971 { 'command': 'query-acpi-ospm-status', 'returns': ['ACPIOSTInfo'] }
3974 # @WatchdogExpirationAction
3976 # An enumeration of the actions taken when the watchdog device's timer is
3977 # expired
3979 # @reset: system resets
3981 # @shutdown: system shutdown, note that it is similar to @powerdown, which
3982 #            tries to set to system status and notify guest
3984 # @poweroff: system poweroff, the emulator program exits
3986 # @pause: system pauses, similar to @stop
3988 # @debug: system enters debug state
3990 # @none: nothing is done
3992 # @inject-nmi: a non-maskable interrupt is injected into the first VCPU (all
3993 #              VCPUS on x86) (since 2.4)
3995 # Since: 2.1
3997 { 'enum': 'WatchdogExpirationAction',
3998   'data': [ 'reset', 'shutdown', 'poweroff', 'pause', 'debug', 'none',
3999             'inject-nmi' ] }
4002 # @IoOperationType
4004 # An enumeration of the I/O operation types
4006 # @read: read operation
4008 # @write: write operation
4010 # Since: 2.1
4012 { 'enum': 'IoOperationType',
4013   'data': [ 'read', 'write' ] }
4016 # @GuestPanicAction
4018 # An enumeration of the actions taken when guest OS panic is detected
4020 # @pause: system pauses
4022 # Since: 2.1
4024 { 'enum': 'GuestPanicAction',
4025   'data': [ 'pause' ] }
4028 # @rtc-reset-reinjection
4030 # This command will reset the RTC interrupt reinjection backlog.
4031 # Can be used if another mechanism to synchronize guest time
4032 # is in effect, for example QEMU guest agent's guest-set-time
4033 # command.
4035 # Since: 2.1
4037 { 'command': 'rtc-reset-reinjection' }
4039 # Rocker ethernet network switch
4040 { 'include': 'qapi/rocker.json' }
4043 # ReplayMode:
4045 # Mode of the replay subsystem.
4047 # @none: normal execution mode. Replay or record are not enabled.
4049 # @record: record mode. All non-deterministic data is written into the
4050 #          replay log.
4052 # @play: replay mode. Non-deterministic data required for system execution
4053 #        is read from the log.
4055 # Since: 2.5
4057 { 'enum': 'ReplayMode',
4058   'data': [ 'none', 'record', 'play' ] }