5 # QAPI common definitions
6 { 'include': 'qapi/common.json' }
8 # QAPI block definitions
9 { 'include': 'qapi/block.json' }
14 # Policy for handling lost ticks in timer devices.
16 # @discard: throw away the missed tick(s) and continue with future injection
17 # normally. Guest time may be delayed, unless the OS has explicit
18 # handling of lost ticks
20 # @delay: continue to deliver ticks at the normal rate. Guest time will be
21 # delayed due to the late tick
23 # @merge: merge the missed tick(s) into one tick and inject. Guest time
24 # may be delayed, depending on how the OS reacts to the merging
27 # @slew: deliver ticks at a higher rate to catch up with the missed tick. The
28 # guest time should not be delayed once catchup is complete.
32 { 'enum': 'LostTickPolicy',
33 'data': ['discard', 'delay', 'merge', 'slew' ] }
38 # Policy that BIOS should use to interpret cylinder/head/sector
39 # addresses. Note that Bochs BIOS and SeaBIOS will not actually
40 # translate logical CHS to physical; instead, they will use logical
43 # @auto: If cylinder/heads/sizes are passed, choose between none and LBA
44 # depending on the size of the disk. If they are not passed,
45 # choose none if QEMU can guess that the disk had 16 or fewer
46 # heads, large if QEMU can guess that the disk had 131072 or
47 # fewer tracks across all heads (i.e. cylinders*heads<131072),
50 # @none: The physical disk geometry is equal to the logical geometry.
52 # @lba: Assume 63 sectors per track and one of 16, 32, 64, 128 or 255
53 # heads (if fewer than 255 are enough to cover the whole disk
54 # with 1024 cylinders/head). The number of cylinders/head is
55 # then computed based on the number of sectors and heads.
57 # @large: The number of cylinders per head is scaled down to 1024
58 # by correspondingly scaling up the number of heads.
60 # @rechs: Same as @large, but first convert a 16-head geometry to
61 # 15-head, by proportionally scaling up the number of
66 { 'enum': 'BiosAtaTranslation',
67 'data': ['auto', 'none', 'lba', 'large', 'rechs']}
71 # Allow client connections for VNC, Spice and socket based
72 # character devices to be passed in to QEMU via SCM_RIGHTS.
74 # @protocol: protocol name. Valid names are "vnc", "spice" or the
75 # name of a character device (eg. from -chardev id=XXXX)
77 # @fdname: file descriptor name previously passed via 'getfd' command
79 # @skipauth: #optional whether to skip authentication. Only applies
80 # to "vnc" and "spice" protocols
82 # @tls: #optional whether to perform TLS. Only applies to the "spice"
85 # Returns: nothing on success.
89 { 'command': 'add_client',
90 'data': { 'protocol': 'str', 'fdname': 'str', '*skipauth': 'bool',
96 # Guest name information.
98 # @name: #optional The name of the guest
102 { 'type': 'NameInfo', 'data': {'*name': 'str'} }
107 # Return the name information of a guest.
109 # Returns: @NameInfo of the guest
113 { 'command': 'query-name', 'returns': 'NameInfo' }
118 # Information about support for KVM acceleration
120 # @enabled: true if KVM acceleration is active
122 # @present: true if KVM acceleration is built into this executable
126 { 'type': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} }
131 # Returns information about KVM acceleration
137 { 'command': 'query-kvm', 'returns': 'KvmInfo' }
142 # An enumeration of VM run states.
144 # @debug: QEMU is running on a debugger
146 # @finish-migrate: guest is paused to finish the migration process
148 # @inmigrate: guest is paused waiting for an incoming migration. Note
149 # that this state does not tell whether the machine will start at the
150 # end of the migration. This depends on the command-line -S option and
151 # any invocation of 'stop' or 'cont' that has happened since QEMU was
154 # @internal-error: An internal error that prevents further guest execution
157 # @io-error: the last IOP has failed and the device is configured to pause
160 # @paused: guest has been paused via the 'stop' command
162 # @postmigrate: guest is paused following a successful 'migrate'
164 # @prelaunch: QEMU was started with -S and guest has not started
166 # @restore-vm: guest is paused to restore VM state
168 # @running: guest is actively running
170 # @save-vm: guest is paused to save the VM state
172 # @shutdown: guest is shut down (and -no-shutdown is in use)
174 # @suspended: guest is suspended (ACPI S3)
176 # @watchdog: the watchdog action is configured to pause and has been triggered
178 # @guest-panicked: guest has been panicked as a result of guest OS panic
180 { 'enum': 'RunState',
181 'data': [ 'debug', 'inmigrate', 'internal-error', 'io-error', 'paused',
182 'postmigrate', 'prelaunch', 'finish-migrate', 'restore-vm',
183 'running', 'save-vm', 'shutdown', 'suspended', 'watchdog',
189 # Information about VCPU run state
191 # @running: true if all VCPUs are runnable, false if not runnable
193 # @singlestep: true if VCPUs are in single-step mode
195 # @status: the virtual machine @RunState
199 # Notes: @singlestep is enabled through the GDB stub
201 { 'type': 'StatusInfo',
202 'data': {'running': 'bool', 'singlestep': 'bool', 'status': 'RunState'} }
207 # Query the run status of all VCPUs
209 # Returns: @StatusInfo reflecting all VCPUs
213 { 'command': 'query-status', 'returns': 'StatusInfo' }
218 # Guest UUID information.
220 # @UUID: the UUID of the guest
224 # Notes: If no UUID was specified for the guest, a null UUID is returned.
226 { 'type': 'UuidInfo', 'data': {'UUID': 'str'} }
231 # Query the guest UUID information.
233 # Returns: The @UuidInfo for the guest
237 { 'command': 'query-uuid', 'returns': 'UuidInfo' }
242 # Information about a character device.
244 # @label: the label of the character device
246 # @filename: the filename of the character device
248 # Notes: @filename is encoded using the QEMU command line character device
249 # encoding. See the QEMU man page for details.
253 { 'type': 'ChardevInfo', 'data': {'label': 'str', 'filename': 'str'} }
258 # Returns information about current character devices.
260 # Returns: a list of @ChardevInfo
264 { 'command': 'query-chardev', 'returns': ['ChardevInfo'] }
267 # @ChardevBackendInfo:
269 # Information about a character device backend
271 # @name: The backend name
275 { 'type': 'ChardevBackendInfo', 'data': {'name': 'str'} }
278 # @query-chardev-backends:
280 # Returns information about character device backends.
282 # Returns: a list of @ChardevBackendInfo
286 { 'command': 'query-chardev-backends', 'returns': ['ChardevBackendInfo'] }
291 # An enumeration of data format.
293 # @utf8: Data is a UTF-8 string (RFC 3629)
295 # @base64: Data is Base64 encoded binary (RFC 3548)
299 { 'enum': 'DataFormat',
300 'data': [ 'utf8', 'base64' ] }
305 # Write to a ring buffer character device.
307 # @device: the ring buffer character device name
309 # @data: data to write
311 # @format: #optional data encoding (default 'utf8').
312 # - base64: data must be base64 encoded text. Its binary
313 # decoding gets written.
314 # Bug: invalid base64 is currently not rejected.
315 # Whitespace *is* invalid.
316 # - utf8: data's UTF-8 encoding is written
317 # - data itself is always Unicode regardless of format, like
320 # Returns: Nothing on success
324 { 'command': 'ringbuf-write',
325 'data': {'device': 'str', 'data': 'str',
326 '*format': 'DataFormat'} }
331 # Read from a ring buffer character device.
333 # @device: the ring buffer character device name
335 # @size: how many bytes to read at most
337 # @format: #optional data encoding (default 'utf8').
338 # - base64: the data read is returned in base64 encoding.
339 # - utf8: the data read is interpreted as UTF-8.
340 # Bug: can screw up when the buffer contains invalid UTF-8
341 # sequences, NUL characters, after the ring buffer lost
342 # data, and when reading stops because the size limit is
344 # - The return value is always Unicode regardless of format,
345 # like any other string.
347 # Returns: data read from the device
351 { 'command': 'ringbuf-read',
352 'data': {'device': 'str', 'size': 'int', '*format': 'DataFormat'},
358 # Information about a QMP event
360 # @name: The event name
364 { 'type': 'EventInfo', 'data': {'name': 'str'} }
369 # Return a list of supported QMP events by this server
371 # Returns: A list of @EventInfo for all supported events
375 { 'command': 'query-events', 'returns': ['EventInfo'] }
380 # Detailed migration status.
382 # @transferred: amount of bytes already transferred to the target VM
384 # @remaining: amount of bytes remaining to be transferred to the target VM
386 # @total: total amount of bytes involved in the migration process
388 # @duplicate: number of duplicate (zero) pages (since 1.2)
390 # @skipped: number of skipped zero pages (since 1.5)
392 # @normal : number of normal pages (since 1.2)
394 # @normal-bytes: number of normal bytes sent (since 1.2)
396 # @dirty-pages-rate: number of pages dirtied by second by the
399 # @mbps: throughput in megabits/sec. (since 1.6)
401 # @dirty-sync-count: number of times that dirty ram was synchronized (since 2.1)
405 { 'type': 'MigrationStats',
406 'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' ,
407 'duplicate': 'int', 'skipped': 'int', 'normal': 'int',
408 'normal-bytes': 'int', 'dirty-pages-rate' : 'int',
409 'mbps' : 'number', 'dirty-sync-count' : 'int' } }
414 # Detailed XBZRLE migration cache statistics
416 # @cache-size: XBZRLE cache size
418 # @bytes: amount of bytes already transferred to the target VM
420 # @pages: amount of pages transferred to the target VM
422 # @cache-miss: number of cache miss
424 # @cache-miss-rate: rate of cache miss (since 2.1)
426 # @overflow: number of overflows
430 { 'type': 'XBZRLECacheStats',
431 'data': {'cache-size': 'int', 'bytes': 'int', 'pages': 'int',
432 'cache-miss': 'int', 'cache-miss-rate': 'number',
433 'overflow': 'int' } }
438 # Information about current migration process.
440 # @status: #optional string describing the current migration status.
441 # As of 0.14.0 this can be 'setup', 'active', 'completed', 'failed' or
442 # 'cancelled'. If this field is not returned, no migration process
445 # @ram: #optional @MigrationStats containing detailed migration
446 # status, only returned if status is 'active' or
447 # 'completed'. 'comppleted' (since 1.2)
449 # @disk: #optional @MigrationStats containing detailed disk migration
450 # status, only returned if status is 'active' and it is a block
453 # @xbzrle-cache: #optional @XBZRLECacheStats containing detailed XBZRLE
454 # migration statistics, only returned if XBZRLE feature is on and
455 # status is 'active' or 'completed' (since 1.2)
457 # @total-time: #optional total amount of milliseconds since migration started.
458 # If migration has ended, it returns the total migration
461 # @downtime: #optional only present when migration finishes correctly
462 # total downtime in milliseconds for the guest.
465 # @expected-downtime: #optional only present while migration is active
466 # expected downtime in milliseconds for the guest in last walk
467 # of the dirty bitmap. (since 1.3)
469 # @setup-time: #optional amount of setup time in milliseconds _before_ the
470 # iterations begin but _after_ the QMP command is issued. This is designed
471 # to provide an accounting of any activities (such as RDMA pinning) which
472 # may be expensive, but do not actually occur during the iterative
473 # migration rounds themselves. (since 1.6)
477 { 'type': 'MigrationInfo',
478 'data': {'*status': 'str', '*ram': 'MigrationStats',
479 '*disk': 'MigrationStats',
480 '*xbzrle-cache': 'XBZRLECacheStats',
481 '*total-time': 'int',
482 '*expected-downtime': 'int',
484 '*setup-time': 'int'} }
489 # Returns information about current migration process.
491 # Returns: @MigrationInfo
495 { 'command': 'query-migrate', 'returns': 'MigrationInfo' }
498 # @MigrationCapability
500 # Migration capabilities enumeration
502 # @xbzrle: Migration supports xbzrle (Xor Based Zero Run Length Encoding).
503 # This feature allows us to minimize migration traffic for certain work
504 # loads, by sending compressed difference of the pages
506 # @rdma-pin-all: Controls whether or not the entire VM memory footprint is
507 # mlock()'d on demand or all at once. Refer to docs/rdma.txt for usage.
508 # Disabled by default. (since 2.0)
510 # @zero-blocks: During storage migration encode blocks of zeroes efficiently. This
511 # essentially saves 1MB of zeroes per block on the wire. Enabling requires
512 # source and target VM to support this feature. To enable it is sufficient
513 # to enable the capability on the source VM. The feature is disabled by
514 # default. (since 1.6)
516 # @auto-converge: If enabled, QEMU will automatically throttle down the guest
517 # to speed up convergence of RAM migration. (since 1.6)
521 { 'enum': 'MigrationCapability',
522 'data': ['xbzrle', 'rdma-pin-all', 'auto-converge', 'zero-blocks'] }
525 # @MigrationCapabilityStatus
527 # Migration capability information
529 # @capability: capability enum
531 # @state: capability state bool
535 { 'type': 'MigrationCapabilityStatus',
536 'data': { 'capability' : 'MigrationCapability', 'state' : 'bool' } }
539 # @migrate-set-capabilities
541 # Enable/Disable the following migration capabilities (like xbzrle)
543 # @capabilities: json array of capability modifications to make
547 { 'command': 'migrate-set-capabilities',
548 'data': { 'capabilities': ['MigrationCapabilityStatus'] } }
551 # @query-migrate-capabilities
553 # Returns information about the current migration capabilities status
555 # Returns: @MigrationCapabilitiesStatus
559 { 'command': 'query-migrate-capabilities', 'returns': ['MigrationCapabilityStatus']}
564 # Information about a mouse device.
566 # @name: the name of the mouse device
568 # @index: the index of the mouse device
570 # @current: true if this device is currently receiving mouse events
572 # @absolute: true if this device supports absolute coordinates as input
576 { 'type': 'MouseInfo',
577 'data': {'name': 'str', 'index': 'int', 'current': 'bool',
578 'absolute': 'bool'} }
583 # Returns information about each active mouse device
585 # Returns: a list of @MouseInfo for each device
589 { 'command': 'query-mice', 'returns': ['MouseInfo'] }
594 # Information about a virtual CPU
596 # @CPU: the index of the virtual CPU
598 # @current: this only exists for backwards compatible and should be ignored
600 # @halted: true if the virtual CPU is in the halt state. Halt usually refers
601 # to a processor specific low power mode.
603 # @pc: #optional If the target is i386 or x86_64, this is the 64-bit instruction
605 # If the target is Sparc, this is the PC component of the
606 # instruction pointer.
608 # @nip: #optional If the target is PPC, the instruction pointer
610 # @npc: #optional If the target is Sparc, the NPC component of the instruction
613 # @PC: #optional If the target is MIPS, the instruction pointer
615 # @thread_id: ID of the underlying host thread
619 # Notes: @halted is a transient state that changes frequently. By the time the
620 # data is sent to the client, the guest may no longer be halted.
623 'data': {'CPU': 'int', 'current': 'bool', 'halted': 'bool', '*pc': 'int',
624 '*nip': 'int', '*npc': 'int', '*PC': 'int', 'thread_id': 'int'} }
629 # Returns a list of information about each virtual CPU.
631 # Returns: a list of @CpuInfo for each virtual CPU
635 { 'command': 'query-cpus', 'returns': ['CpuInfo'] }
640 # Information about an iothread
642 # @id: the identifier of the iothread
644 # @thread-id: ID of the underlying host thread
648 { 'type': 'IOThreadInfo',
649 'data': {'id': 'str', 'thread-id': 'int'} }
654 # Returns a list of information about each iothread.
656 # Note this list excludes the QEMU main loop thread, which is not declared
657 # using the -object iothread command-line option. It is always the main thread
660 # Returns: a list of @IOThreadInfo for each iothread
664 { 'command': 'query-iothreads', 'returns': ['IOThreadInfo'] }
669 # Information about a connected VNC client.
671 # @host: The host name of the client. QEMU tries to resolve this to a DNS name
674 # @family: 'ipv6' if the client is connected via IPv6 and TCP
675 # 'ipv4' if the client is connected via IPv4 and TCP
676 # 'unix' if the client is connected via a unix domain socket
677 # 'unknown' otherwise
679 # @service: The service name of the client's port. This may depends on the
680 # host system's service database so symbolic names should not be
683 # @x509_dname: #optional If x509 authentication is in use, the Distinguished
684 # Name of the client.
686 # @sasl_username: #optional If SASL authentication is in use, the SASL username
687 # used for authentication.
691 { 'type': 'VncClientInfo',
692 'data': {'host': 'str', 'family': 'str', 'service': 'str',
693 '*x509_dname': 'str', '*sasl_username': 'str'} }
698 # Information about the VNC session.
700 # @enabled: true if the VNC server is enabled, false otherwise
702 # @host: #optional The hostname the VNC server is bound to. This depends on
703 # the name resolution on the host and may be an IP address.
705 # @family: #optional 'ipv6' if the host is listening for IPv6 connections
706 # 'ipv4' if the host is listening for IPv4 connections
707 # 'unix' if the host is listening on a unix domain socket
708 # 'unknown' otherwise
710 # @service: #optional The service name of the server's port. This may depends
711 # on the host system's service database so symbolic names should not
714 # @auth: #optional the current authentication type used by the server
715 # 'none' if no authentication is being used
716 # 'vnc' if VNC authentication is being used
717 # 'vencrypt+plain' if VEncrypt is used with plain text authentication
718 # 'vencrypt+tls+none' if VEncrypt is used with TLS and no authentication
719 # 'vencrypt+tls+vnc' if VEncrypt is used with TLS and VNC authentication
720 # 'vencrypt+tls+plain' if VEncrypt is used with TLS and plain text auth
721 # 'vencrypt+x509+none' if VEncrypt is used with x509 and no auth
722 # 'vencrypt+x509+vnc' if VEncrypt is used with x509 and VNC auth
723 # 'vencrypt+x509+plain' if VEncrypt is used with x509 and plain text auth
724 # 'vencrypt+tls+sasl' if VEncrypt is used with TLS and SASL auth
725 # 'vencrypt+x509+sasl' if VEncrypt is used with x509 and SASL auth
727 # @clients: a list of @VncClientInfo of all currently connected clients
732 'data': {'enabled': 'bool', '*host': 'str', '*family': 'str',
733 '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']} }
738 # Returns information about the current VNC server
744 { 'command': 'query-vnc', 'returns': 'VncInfo' }
749 # Information about a SPICE client channel.
751 # @host: The host name of the client. QEMU tries to resolve this to a DNS name
754 # @family: 'ipv6' if the client is connected via IPv6 and TCP
755 # 'ipv4' if the client is connected via IPv4 and TCP
756 # 'unix' if the client is connected via a unix domain socket
757 # 'unknown' otherwise
759 # @port: The client's port number.
761 # @connection-id: SPICE connection id number. All channels with the same id
762 # belong to the same SPICE session.
764 # @connection-type: SPICE channel type number. "1" is the main control
765 # channel, filter for this one if you want to track spice
768 # @channel-id: SPICE channel ID number. Usually "0", might be different when
769 # multiple channels of the same type exist, such as multiple
770 # display channels in a multihead setup
772 # @tls: true if the channel is encrypted, false otherwise.
776 { 'type': 'SpiceChannel',
777 'data': {'host': 'str', 'family': 'str', 'port': 'str',
778 'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int',
782 # @SpiceQueryMouseMode
784 # An enumeration of Spice mouse states.
786 # @client: Mouse cursor position is determined by the client.
788 # @server: Mouse cursor position is determined by the server.
790 # @unknown: No information is available about mouse mode used by
793 # Note: spice/enums.h has a SpiceMouseMode already, hence the name.
797 { 'enum': 'SpiceQueryMouseMode',
798 'data': [ 'client', 'server', 'unknown' ] }
803 # Information about the SPICE session.
805 # @enabled: true if the SPICE server is enabled, false otherwise
807 # @migrated: true if the last guest migration completed and spice
808 # migration had completed as well. false otherwise.
810 # @host: #optional The hostname the SPICE server is bound to. This depends on
811 # the name resolution on the host and may be an IP address.
813 # @port: #optional The SPICE server's port number.
815 # @compiled-version: #optional SPICE server version.
817 # @tls-port: #optional The SPICE server's TLS port number.
819 # @auth: #optional the current authentication type used by the server
820 # 'none' if no authentication is being used
821 # 'spice' uses SASL or direct TLS authentication, depending on command
824 # @mouse-mode: The mode in which the mouse cursor is displayed currently. Can
825 # be determined by the client or the server, or unknown if spice
826 # server doesn't provide this information.
830 # @channels: a list of @SpiceChannel for each active spice channel
834 { 'type': 'SpiceInfo',
835 'data': {'enabled': 'bool', 'migrated': 'bool', '*host': 'str', '*port': 'int',
836 '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
837 'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} }
842 # Returns information about the current SPICE server
844 # Returns: @SpiceInfo
848 { 'command': 'query-spice', 'returns': 'SpiceInfo' }
853 # Information about the guest balloon device.
855 # @actual: the number of bytes the balloon currently contains
860 { 'type': 'BalloonInfo', 'data': {'actual': 'int' } }
865 # Return information about the balloon device.
867 # Returns: @BalloonInfo on success
868 # If the balloon driver is enabled but not functional because the KVM
869 # kernel module cannot support it, KvmMissingCap
870 # If no balloon device is present, DeviceNotActive
874 { 'command': 'query-balloon', 'returns': 'BalloonInfo' }
879 # A PCI device memory region
881 # @base: the starting address (guest physical)
883 # @limit: the ending address (guest physical)
887 { 'type': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} }
892 # Information about a PCI device I/O region.
894 # @bar: the index of the Base Address Register for this region
896 # @type: 'io' if the region is a PIO region
897 # 'memory' if the region is a MMIO region
899 # @prefetch: #optional if @type is 'memory', true if the memory is prefetchable
901 # @mem_type_64: #optional if @type is 'memory', true if the BAR is 64-bit
905 { 'type': 'PciMemoryRegion',
906 'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int',
907 '*prefetch': 'bool', '*mem_type_64': 'bool' } }
912 # Information about a PCI Bridge device
914 # @bus.number: primary bus interface number. This should be the number of the
915 # bus the device resides on.
917 # @bus.secondary: secondary bus interface number. This is the number of the
918 # main bus for the bridge
920 # @bus.subordinate: This is the highest number bus that resides below the
923 # @bus.io_range: The PIO range for all devices on this bridge
925 # @bus.memory_range: The MMIO range for all devices on this bridge
927 # @bus.prefetchable_range: The range of prefetchable MMIO for all devices on
930 # @devices: a list of @PciDeviceInfo for each device on this bridge
934 { 'type': 'PciBridgeInfo',
935 'data': {'bus': { 'number': 'int', 'secondary': 'int', 'subordinate': 'int',
936 'io_range': 'PciMemoryRange',
937 'memory_range': 'PciMemoryRange',
938 'prefetchable_range': 'PciMemoryRange' },
939 '*devices': ['PciDeviceInfo']} }
944 # Information about a PCI device
946 # @bus: the bus number of the device
948 # @slot: the slot the device is located in
950 # @function: the function of the slot used by the device
952 # @class_info.desc: #optional a string description of the device's class
954 # @class_info.class: the class code of the device
956 # @id.device: the PCI device id
958 # @id.vendor: the PCI vendor id
960 # @irq: #optional if an IRQ is assigned to the device, the IRQ number
962 # @qdev_id: the device name of the PCI device
964 # @pci_bridge: if the device is a PCI bridge, the bridge information
966 # @regions: a list of the PCI I/O regions associated with the device
968 # Notes: the contents of @class_info.desc are not stable and should only be
969 # treated as informational.
973 { 'type': 'PciDeviceInfo',
974 'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
975 'class_info': {'*desc': 'str', 'class': 'int'},
976 'id': {'device': 'int', 'vendor': 'int'},
977 '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
978 'regions': ['PciMemoryRegion']} }
983 # Information about a PCI bus
985 # @bus: the bus index
987 # @devices: a list of devices on this bus
991 { 'type': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} }
996 # Return information about the PCI bus topology of the guest.
998 # Returns: a list of @PciInfo for each PCI bus
1002 { 'command': 'query-pci', 'returns': ['PciInfo'] }
1007 # This command will cause the QEMU process to exit gracefully. While every
1008 # attempt is made to send the QMP response before terminating, this is not
1009 # guaranteed. When using this interface, a premature EOF would not be
1014 { 'command': 'quit' }
1019 # Stop all guest VCPU execution.
1023 # Notes: This function will succeed even if the guest is already in the stopped
1024 # state. In "inmigrate" state, it will ensure that the guest
1025 # remains paused once migration finishes, as if the -S option was
1026 # passed on the command line.
1028 { 'command': 'stop' }
1033 # Performs a hard reset of a guest.
1037 { 'command': 'system_reset' }
1040 # @system_powerdown:
1042 # Requests that a guest perform a powerdown operation.
1046 # Notes: A guest may or may not respond to this command. This command
1047 # returning does not indicate that a guest has accepted the request or
1048 # that it has shut down. Many guests will respond to this command by
1049 # prompting the user in some way.
1051 { 'command': 'system_powerdown' }
1056 # This command is a nop that is only provided for the purposes of compatibility.
1060 # Notes: Do not use this command.
1062 { 'command': 'cpu', 'data': {'index': 'int'} }
1067 # Adds CPU with specified ID
1069 # @id: ID of CPU to be created, valid values [0..max_cpus)
1071 # Returns: Nothing on success
1075 { 'command': 'cpu-add', 'data': {'id': 'int'} }
1080 # Save a portion of guest memory to a file.
1082 # @val: the virtual address of the guest to start from
1084 # @size: the size of memory region to save
1086 # @filename: the file to save the memory to as binary data
1088 # @cpu-index: #optional the index of the virtual CPU to use for translating the
1089 # virtual address (defaults to CPU 0)
1091 # Returns: Nothing on success
1095 # Notes: Errors were not reliably returned until 1.1
1097 { 'command': 'memsave',
1098 'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
1103 # Save a portion of guest physical memory to a file.
1105 # @val: the physical address of the guest to start from
1107 # @size: the size of memory region to save
1109 # @filename: the file to save the memory to as binary data
1111 # Returns: Nothing on success
1115 # Notes: Errors were not reliably returned until 1.1
1117 { 'command': 'pmemsave',
1118 'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
1123 # Resume guest VCPU execution.
1127 # Returns: If successful, nothing
1128 # If QEMU was started with an encrypted block device and a key has
1129 # not yet been set, DeviceEncrypted.
1131 # Notes: This command will succeed if the guest is currently running. It
1132 # will also succeed if the guest is in the "inmigrate" state; in
1133 # this case, the effect of the command is to make sure the guest
1134 # starts once migration finishes, removing the effect of the -S
1135 # command line option if it was passed.
1137 { 'command': 'cont' }
1142 # Wakeup guest from suspend. Does nothing in case the guest isn't suspended.
1148 { 'command': 'system_wakeup' }
1153 # Injects an Non-Maskable Interrupt into all guest's VCPUs.
1155 # Returns: If successful, nothing
1159 # Notes: Only x86 Virtual Machines support this command.
1161 { 'command': 'inject-nmi' }
1166 # Sets the link status of a virtual network adapter.
1168 # @name: the device name of the virtual network adapter
1170 # @up: true to set the link status to be up
1172 # Returns: Nothing on success
1173 # If @name is not a valid network device, DeviceNotFound
1177 # Notes: Not all network adapters support setting link status. This command
1178 # will succeed even if the network adapter does not support link status
1181 { 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} }
1186 # Request the balloon driver to change its balloon size.
1188 # @value: the target size of the balloon in bytes
1190 # Returns: Nothing on success
1191 # If the balloon driver is enabled but not functional because the KVM
1192 # kernel module cannot support it, KvmMissingCap
1193 # If no balloon device is present, DeviceNotActive
1195 # Notes: This command just issues a request to the guest. When it returns,
1196 # the balloon size may not have changed. A guest can change the balloon
1197 # size independent of this command.
1201 { 'command': 'balloon', 'data': {'value': 'int'} }
1204 # @BlockdevSnapshotInternal
1206 # @device: the name of the device to generate the snapshot from
1208 # @name: the name of the internal snapshot to be created
1210 # Notes: In transaction, if @name is empty, or any snapshot matching @name
1211 # exists, the operation will fail. Only some image formats support it,
1212 # for example, qcow2, rbd, and sheepdog.
1216 { 'type': 'BlockdevSnapshotInternal',
1217 'data': { 'device': 'str', 'name': 'str' } }
1222 # This action can be used to test transaction failure.
1230 # @TransactionAction
1232 # A discriminated record of operations that can be performed with
1235 { 'union': 'TransactionAction',
1237 'blockdev-snapshot-sync': 'BlockdevSnapshot',
1238 'drive-backup': 'DriveBackup',
1240 'blockdev-snapshot-internal-sync': 'BlockdevSnapshotInternal'
1246 # Executes a number of transactionable QMP commands atomically. If any
1247 # operation fails, then the entire set of actions will be abandoned and the
1248 # appropriate error returned.
1251 # @TransactionAction: information needed for the respective operation
1253 # Returns: nothing on success
1254 # Errors depend on the operations of the transaction
1256 # Note: The transaction aborts on the first failure. Therefore, there will be
1257 # information on only one failed operation returned in an error condition, and
1258 # subsequent actions will not have been attempted.
1262 { 'command': 'transaction',
1263 'data': { 'actions': [ 'TransactionAction' ] } }
1266 # @blockdev-snapshot-internal-sync
1268 # Synchronously take an internal snapshot of a block device, when the format
1269 # of the image used supports it.
1271 # For the arguments, see the documentation of BlockdevSnapshotInternal.
1273 # Returns: nothing on success
1274 # If @device is not a valid block device, DeviceNotFound
1275 # If any snapshot matching @name exists, or @name is empty,
1277 # If the format of the image used does not support it,
1278 # BlockFormatFeatureNotSupported
1282 { 'command': 'blockdev-snapshot-internal-sync',
1283 'data': 'BlockdevSnapshotInternal' }
1286 # @blockdev-snapshot-delete-internal-sync
1288 # Synchronously delete an internal snapshot of a block device, when the format
1289 # of the image used support it. The snapshot is identified by name or id or
1290 # both. One of the name or id is required. Return SnapshotInfo for the
1291 # successfully deleted snapshot.
1293 # @device: the name of the device to delete the snapshot from
1295 # @id: optional the snapshot's ID to be deleted
1297 # @name: optional the snapshot's name to be deleted
1299 # Returns: SnapshotInfo on success
1300 # If @device is not a valid block device, DeviceNotFound
1301 # If snapshot not found, GenericError
1302 # If the format of the image used does not support it,
1303 # BlockFormatFeatureNotSupported
1304 # If @id and @name are both not specified, GenericError
1308 { 'command': 'blockdev-snapshot-delete-internal-sync',
1309 'data': { 'device': 'str', '*id': 'str', '*name': 'str'},
1310 'returns': 'SnapshotInfo' }
1313 # @human-monitor-command:
1315 # Execute a command on the human monitor and return the output.
1317 # @command-line: the command to execute in the human monitor
1319 # @cpu-index: #optional The CPU to use for commands that require an implicit CPU
1321 # Returns: the output of the command as a string
1325 # Notes: This command only exists as a stop-gap. Its use is highly
1326 # discouraged. The semantics of this command are not guaranteed.
1328 # Known limitations:
1330 # o This command is stateless, this means that commands that depend
1331 # on state information (such as getfd) might not work
1333 # o Commands that prompt the user for data (eg. 'cont' when the block
1334 # device is encrypted) don't currently work
1336 { 'command': 'human-monitor-command',
1337 'data': {'command-line': 'str', '*cpu-index': 'int'},
1343 # Cancel the current executing migration process.
1345 # Returns: nothing on success
1347 # Notes: This command succeeds even if there is no migration process running.
1351 { 'command': 'migrate_cancel' }
1354 # @migrate_set_downtime
1356 # Set maximum tolerated downtime for migration.
1358 # @value: maximum downtime in seconds
1360 # Returns: nothing on success
1364 { 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
1367 # @migrate_set_speed
1369 # Set maximum speed for migration.
1371 # @value: maximum speed in bytes.
1373 # Returns: nothing on success
1375 # Notes: A value lesser than zero will be automatically round up to zero.
1379 { 'command': 'migrate_set_speed', 'data': {'value': 'int'} }
1382 # @migrate-set-cache-size
1384 # Set XBZRLE cache size
1386 # @value: cache size in bytes
1388 # The size will be rounded down to the nearest power of 2.
1389 # The cache size can be modified before and during ongoing migration
1391 # Returns: nothing on success
1395 { 'command': 'migrate-set-cache-size', 'data': {'value': 'int'} }
1398 # @query-migrate-cache-size
1400 # query XBZRLE cache size
1402 # Returns: XBZRLE cache size in bytes
1406 { 'command': 'query-migrate-cache-size', 'returns': 'int' }
1409 # @ObjectPropertyInfo:
1411 # @name: the name of the property
1413 # @type: the type of the property. This will typically come in one of four
1416 # 1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
1417 # These types are mapped to the appropriate JSON type.
1419 # 2) A legacy type in the form 'legacy<subtype>' where subtype is the
1420 # legacy qdev typename. These types are always treated as strings.
1422 # 3) A child type in the form 'child<subtype>' where subtype is a qdev
1423 # device type name. Child properties create the composition tree.
1425 # 4) A link type in the form 'link<subtype>' where subtype is a qdev
1426 # device type name. Link properties form the device model graph.
1430 { 'type': 'ObjectPropertyInfo',
1431 'data': { 'name': 'str', 'type': 'str' } }
1436 # This command will list any properties of a object given a path in the object
1439 # @path: the path within the object model. See @qom-get for a description of
1442 # Returns: a list of @ObjectPropertyInfo that describe the properties of the
1447 { 'command': 'qom-list',
1448 'data': { 'path': 'str' },
1449 'returns': [ 'ObjectPropertyInfo' ] }
1454 # This command will get a property from a object model path and return the
1457 # @path: The path within the object model. There are two forms of supported
1458 # paths--absolute and partial paths.
1460 # Absolute paths are derived from the root object and can follow child<>
1461 # or link<> properties. Since they can follow link<> properties, they
1462 # can be arbitrarily long. Absolute paths look like absolute filenames
1463 # and are prefixed with a leading slash.
1465 # Partial paths look like relative filenames. They do not begin
1466 # with a prefix. The matching rules for partial paths are subtle but
1467 # designed to make specifying objects easy. At each level of the
1468 # composition tree, the partial path is matched as an absolute path.
1469 # The first match is not returned. At least two matches are searched
1470 # for. A successful result is only returned if only one match is
1471 # found. If more than one match is found, a flag is return to
1472 # indicate that the match was ambiguous.
1474 # @property: The property name to read
1476 # Returns: The property value. The type depends on the property type. legacy<>
1477 # properties are returned as #str. child<> and link<> properties are
1478 # returns as #str pathnames. All integer property types (u8, u16, etc)
1479 # are returned as #int.
1483 { 'command': 'qom-get',
1484 'data': { 'path': 'str', 'property': 'str' },
1485 'returns': 'visitor',
1491 # This command will set a property from a object model path.
1493 # @path: see @qom-get for a description of this parameter
1495 # @property: the property name to set
1497 # @value: a value who's type is appropriate for the property type. See @qom-get
1498 # for a description of type mapping.
1502 { 'command': 'qom-set',
1503 'data': { 'path': 'str', 'property': 'str', 'value': 'visitor' },
1509 # Sets the password of a remote display session.
1511 # @protocol: `vnc' to modify the VNC server password
1512 # `spice' to modify the Spice server password
1514 # @password: the new password
1516 # @connected: #optional how to handle existing clients when changing the
1517 # password. If nothing is specified, defaults to `keep'
1518 # `fail' to fail the command if clients are connected
1519 # `disconnect' to disconnect existing clients
1520 # `keep' to maintain existing clients
1522 # Returns: Nothing on success
1523 # If Spice is not enabled, DeviceNotFound
1527 { 'command': 'set_password',
1528 'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} }
1533 # Expire the password of a remote display server.
1535 # @protocol: the name of the remote display protocol `vnc' or `spice'
1537 # @time: when to expire the password.
1538 # `now' to expire the password immediately
1539 # `never' to cancel password expiration
1540 # `+INT' where INT is the number of seconds from now (integer)
1541 # `INT' where INT is the absolute time in seconds
1543 # Returns: Nothing on success
1544 # If @protocol is `spice' and Spice is not active, DeviceNotFound
1548 # Notes: Time is relative to the server and currently there is no way to
1549 # coordinate server time with client time. It is not recommended to
1550 # use the absolute time version of the @time parameter unless you're
1551 # sure you are on the same machine as the QEMU instance.
1553 { 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} }
1558 # Ejects a device from a removable drive.
1560 # @device: The name of the device
1562 # @force: @optional If true, eject regardless of whether the drive is locked.
1563 # If not specified, the default value is false.
1565 # Returns: Nothing on success
1566 # If @device is not a valid block device, DeviceNotFound
1568 # Notes: Ejecting a device will no media results in success
1572 { 'command': 'eject', 'data': {'device': 'str', '*force': 'bool'} }
1575 # @change-vnc-password:
1577 # Change the VNC server password.
1579 # @target: the new password to use with VNC authentication
1583 # Notes: An empty password in this command will set the password to the empty
1584 # string. Existing clients are unaffected by executing this command.
1586 { 'command': 'change-vnc-password', 'data': {'password': 'str'} }
1591 # This command is multiple commands multiplexed together.
1593 # @device: This is normally the name of a block device but it may also be 'vnc'.
1594 # when it's 'vnc', then sub command depends on @target
1596 # @target: If @device is a block device, then this is the new filename.
1597 # If @device is 'vnc', then if the value 'password' selects the vnc
1598 # change password command. Otherwise, this specifies a new server URI
1599 # address to listen to for VNC connections.
1601 # @arg: If @device is a block device, then this is an optional format to open
1603 # If @device is 'vnc' and @target is 'password', this is the new VNC
1604 # password to set. If this argument is an empty string, then no future
1605 # logins will be allowed.
1607 # Returns: Nothing on success.
1608 # If @device is not a valid block device, DeviceNotFound
1609 # If the new block device is encrypted, DeviceEncrypted. Note that
1610 # if this error is returned, the device has been opened successfully
1611 # and an additional call to @block_passwd is required to set the
1612 # device's password. The behavior of reads and writes to the block
1613 # device between when these calls are executed is undefined.
1615 # Notes: It is strongly recommended that this interface is not used especially
1616 # for changing block devices.
1620 { 'command': 'change',
1621 'data': {'device': 'str', 'target': 'str', '*arg': 'str'} }
1626 # This structure describes a search result from @qom-list-types
1628 # @name: the type name found in the search
1632 # Notes: This command is experimental and may change syntax in future releases.
1634 { 'type': 'ObjectTypeInfo',
1635 'data': { 'name': 'str' } }
1640 # This command will return a list of types given search parameters
1642 # @implements: if specified, only return types that implement this type name
1644 # @abstract: if true, include abstract types in the results
1646 # Returns: a list of @ObjectTypeInfo or an empty list if no results are found
1650 { 'command': 'qom-list-types',
1651 'data': { '*implements': 'str', '*abstract': 'bool' },
1652 'returns': [ 'ObjectTypeInfo' ] }
1655 # @DevicePropertyInfo:
1657 # Information about device properties.
1659 # @name: the name of the property
1660 # @type: the typename of the property
1664 { 'type': 'DevicePropertyInfo',
1665 'data': { 'name': 'str', 'type': 'str' } }
1668 # @device-list-properties:
1670 # List properties associated with a device.
1672 # @typename: the type name of a device
1674 # Returns: a list of DevicePropertyInfo describing a devices properties
1678 { 'command': 'device-list-properties',
1679 'data': { 'typename': 'str'},
1680 'returns': [ 'DevicePropertyInfo' ] }
1685 # Migrates the current running guest to another Virtual Machine.
1687 # @uri: the Uniform Resource Identifier of the destination VM
1689 # @blk: #optional do block migration (full disk copy)
1691 # @inc: #optional incremental disk copy migration
1693 # @detach: this argument exists only for compatibility reasons and
1694 # is ignored by QEMU
1696 # Returns: nothing on success
1700 { 'command': 'migrate',
1701 'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
1703 # @xen-save-devices-state:
1705 # Save the state of all devices to file. The RAM and the block devices
1706 # of the VM are not saved by this command.
1708 # @filename: the file to save the state of the devices to as binary
1709 # data. See xen-save-devices-state.txt for a description of the binary
1712 # Returns: Nothing on success
1716 { 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} }
1719 # @xen-set-global-dirty-log
1721 # Enable or disable the global dirty log mode.
1723 # @enable: true to enable, false to disable.
1729 { 'command': 'xen-set-global-dirty-log', 'data': { 'enable': 'bool' } }
1734 # Remove a device from a guest
1736 # @id: the name of the device
1738 # Returns: Nothing on success
1739 # If @id is not a valid device, DeviceNotFound
1741 # Notes: When this command completes, the device may not be removed from the
1742 # guest. Hot removal is an operation that requires guest cooperation.
1743 # This command merely requests that the guest begin the hot removal
1744 # process. Completion of the device removal process is signaled with a
1745 # DEVICE_DELETED event. Guest reset will automatically complete removal
1750 { 'command': 'device_del', 'data': {'id': 'str'} }
1753 # @DumpGuestMemoryFormat:
1755 # An enumeration of guest-memory-dump's format.
1759 # @kdump-zlib: kdump-compressed format with zlib-compressed
1761 # @kdump-lzo: kdump-compressed format with lzo-compressed
1763 # @kdump-snappy: kdump-compressed format with snappy-compressed
1767 { 'enum': 'DumpGuestMemoryFormat',
1768 'data': [ 'elf', 'kdump-zlib', 'kdump-lzo', 'kdump-snappy' ] }
1771 # @dump-guest-memory
1773 # Dump guest's memory to vmcore. It is a synchronous operation that can take
1774 # very long depending on the amount of guest memory. This command is only
1775 # supported on i386 and x86_64.
1777 # @paging: if true, do paging to get guest's memory mapping. This allows
1778 # using gdb to process the core file.
1780 # IMPORTANT: this option can make QEMU allocate several gigabytes
1781 # of RAM. This can happen for a large guest, or a
1782 # malicious guest pretending to be large.
1784 # Also, paging=true has the following limitations:
1786 # 1. The guest may be in a catastrophic state or can have corrupted
1787 # memory, which cannot be trusted
1788 # 2. The guest can be in real-mode even if paging is enabled. For
1789 # example, the guest uses ACPI to sleep, and ACPI sleep state
1792 # @protocol: the filename or file descriptor of the vmcore. The supported
1795 # 1. file: the protocol starts with "file:", and the following
1796 # string is the file's path.
1797 # 2. fd: the protocol starts with "fd:", and the following string
1800 # @begin: #optional if specified, the starting physical address.
1802 # @length: #optional if specified, the memory size, in bytes. If you don't
1803 # want to dump all guest's memory, please specify the start @begin
1806 # @format: #optional if specified, the format of guest memory dump. But non-elf
1807 # format is conflict with paging and filter, ie. @paging, @begin and
1808 # @length is not allowed to be specified with non-elf @format at the
1809 # same time (since 2.0)
1811 # Returns: nothing on success
1815 { 'command': 'dump-guest-memory',
1816 'data': { 'paging': 'bool', 'protocol': 'str', '*begin': 'int',
1817 '*length': 'int', '*format': 'DumpGuestMemoryFormat' } }
1820 # @DumpGuestMemoryCapability:
1822 # A list of the available formats for dump-guest-memory
1826 { 'type': 'DumpGuestMemoryCapability',
1828 'formats': ['DumpGuestMemoryFormat'] } }
1831 # @query-dump-guest-memory-capability:
1833 # Returns the available formats for dump-guest-memory
1835 # Returns: A @DumpGuestMemoryCapability object listing available formats for
1840 { 'command': 'query-dump-guest-memory-capability',
1841 'returns': 'DumpGuestMemoryCapability' }
1846 # Add a network backend.
1848 # @type: the type of network backend. Current valid values are 'user', 'tap',
1849 # 'vde', 'socket', 'dump' and 'bridge'
1851 # @id: the name of the new network backend
1853 # @props: #optional a list of properties to be passed to the backend in
1854 # the format 'name=value', like 'ifname=tap0,script=no'
1856 # Notes: The semantics of @props is not well defined. Future commands will be
1857 # introduced that provide stronger typing for backend creation.
1861 # Returns: Nothing on success
1862 # If @type is not a valid network backend, DeviceNotFound
1864 { 'command': 'netdev_add',
1865 'data': {'type': 'str', 'id': 'str', '*props': '**'},
1871 # Remove a network backend.
1873 # @id: the name of the network backend to remove
1875 # Returns: Nothing on success
1876 # If @id is not a valid network backend, DeviceNotFound
1880 { 'command': 'netdev_del', 'data': {'id': 'str'} }
1885 # Create a QOM object.
1887 # @qom-type: the class name for the object to be created
1889 # @id: the name of the new object
1891 # @props: #optional a dictionary of properties to be passed to the backend
1893 # Returns: Nothing on success
1894 # Error if @qom-type is not a valid class name
1898 { 'command': 'object-add',
1899 'data': {'qom-type': 'str', 'id': 'str', '*props': 'dict'},
1905 # Remove a QOM object.
1907 # @id: the name of the QOM object to remove
1909 # Returns: Nothing on success
1910 # Error if @id is not a valid id for a QOM object
1914 { 'command': 'object-del', 'data': {'id': 'str'} }
1917 # @NetdevNoneOptions
1919 # Use it alone to have zero network devices.
1923 { 'type': 'NetdevNoneOptions',
1927 # @NetLegacyNicOptions
1929 # Create a new Network Interface Card.
1931 # @netdev: #optional id of -netdev to connect to
1933 # @macaddr: #optional MAC address
1935 # @model: #optional device model (e1000, rtl8139, virtio etc.)
1937 # @addr: #optional PCI device address
1939 # @vectors: #optional number of MSI-x vectors, 0 to disable MSI-X
1943 { 'type': 'NetLegacyNicOptions',
1949 '*vectors': 'uint32' } }
1954 # A fat type wrapping 'str', to be embedded in lists.
1963 # @NetdevUserOptions
1965 # Use the user mode network stack which requires no administrator privilege to
1968 # @hostname: #optional client hostname reported by the builtin DHCP server
1970 # @restrict: #optional isolate the guest from the host
1972 # @ip: #optional legacy parameter, use net= instead
1974 # @net: #optional IP address and optional netmask
1976 # @host: #optional guest-visible address of the host
1978 # @tftp: #optional root directory of the built-in TFTP server
1980 # @bootfile: #optional BOOTP filename, for use with tftp=
1982 # @dhcpstart: #optional the first of the 16 IPs the built-in DHCP server can
1985 # @dns: #optional guest-visible address of the virtual nameserver
1987 # @dnssearch: #optional list of DNS suffixes to search, passed as DHCP option
1990 # @smb: #optional root directory of the built-in SMB server
1992 # @smbserver: #optional IP address of the built-in SMB server
1994 # @hostfwd: #optional redirect incoming TCP or UDP host connections to guest
1997 # @guestfwd: #optional forward guest TCP connections
2001 { 'type': 'NetdevUserOptions',
2004 '*restrict': 'bool',
2010 '*dhcpstart': 'str',
2012 '*dnssearch': ['String'],
2014 '*smbserver': 'str',
2015 '*hostfwd': ['String'],
2016 '*guestfwd': ['String'] } }
2021 # Connect the host TAP network interface name to the VLAN.
2023 # @ifname: #optional interface name
2025 # @fd: #optional file descriptor of an already opened tap
2027 # @fds: #optional multiple file descriptors of already opened multiqueue capable
2030 # @script: #optional script to initialize the interface
2032 # @downscript: #optional script to shut down the interface
2034 # @helper: #optional command to execute to configure bridge
2036 # @sndbuf: #optional send buffer limit. Understands [TGMKkb] suffixes.
2038 # @vnet_hdr: #optional enable the IFF_VNET_HDR flag on the tap interface
2040 # @vhost: #optional enable vhost-net network accelerator
2042 # @vhostfd: #optional file descriptor of an already opened vhost net device
2044 # @vhostfds: #optional file descriptors of multiple already opened vhost net
2047 # @vhostforce: #optional vhost on for non-MSIX virtio guests
2049 # @queues: #optional number of queues to be created for multiqueue capable tap
2053 { 'type': 'NetdevTapOptions',
2059 '*downscript': 'str',
2062 '*vnet_hdr': 'bool',
2066 '*vhostforce': 'bool',
2067 '*queues': 'uint32'} }
2070 # @NetdevSocketOptions
2072 # Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP
2073 # socket connection.
2075 # @fd: #optional file descriptor of an already opened socket
2077 # @listen: #optional port number, and optional hostname, to listen on
2079 # @connect: #optional port number, and optional hostname, to connect to
2081 # @mcast: #optional UDP multicast address and port number
2083 # @localaddr: #optional source address and port for multicast and udp packets
2085 # @udp: #optional UDP unicast address and port number
2089 { 'type': 'NetdevSocketOptions',
2095 '*localaddr': 'str',
2101 # Connect the VLAN to a vde switch running on the host.
2103 # @sock: #optional socket path
2105 # @port: #optional port number
2107 # @group: #optional group owner of socket
2109 # @mode: #optional permissions for socket
2113 { 'type': 'NetdevVdeOptions',
2118 '*mode': 'uint16' } }
2121 # @NetdevDumpOptions
2123 # Dump VLAN network traffic to a file.
2125 # @len: #optional per-packet size limit (64k default). Understands [TGMKkb]
2128 # @file: #optional dump file path (default is qemu-vlan0.pcap)
2132 { 'type': 'NetdevDumpOptions',
2138 # @NetdevBridgeOptions
2140 # Connect a host TAP network interface to a host bridge device.
2142 # @br: #optional bridge name
2144 # @helper: #optional command to execute to configure bridge
2148 { 'type': 'NetdevBridgeOptions',
2151 '*helper': 'str' } }
2154 # @NetdevHubPortOptions
2156 # Connect two or more net clients through a software hub.
2158 # @hubid: hub identifier number
2162 { 'type': 'NetdevHubPortOptions',
2164 'hubid': 'int32' } }
2167 # @NetdevNetmapOptions
2169 # Connect a client to a netmap-enabled NIC or to a VALE switch port
2171 # @ifname: Either the name of an existing network interface supported by
2172 # netmap, or the name of a VALE port (created on the fly).
2173 # A VALE port name is in the form 'valeXXX:YYY', where XXX and
2174 # YYY are non-negative integers. XXX identifies a switch and
2175 # YYY identifies a port of the switch. VALE ports having the
2176 # same XXX are therefore connected to the same switch.
2178 # @devname: #optional path of the netmap device (default: '/dev/netmap').
2182 { 'type': 'NetdevNetmapOptions',
2185 '*devname': 'str' } }
2190 # A discriminated record of network device traits.
2194 { 'union': 'NetClientOptions',
2196 'none': 'NetdevNoneOptions',
2197 'nic': 'NetLegacyNicOptions',
2198 'user': 'NetdevUserOptions',
2199 'tap': 'NetdevTapOptions',
2200 'socket': 'NetdevSocketOptions',
2201 'vde': 'NetdevVdeOptions',
2202 'dump': 'NetdevDumpOptions',
2203 'bridge': 'NetdevBridgeOptions',
2204 'hubport': 'NetdevHubPortOptions',
2205 'netmap': 'NetdevNetmapOptions' } }
2210 # Captures the configuration of a network device; legacy.
2212 # @vlan: #optional vlan number
2214 # @id: #optional identifier for monitor commands
2216 # @name: #optional identifier for monitor commands, ignored if @id is present
2218 # @opts: device type specific properties (legacy)
2222 { 'type': 'NetLegacy',
2227 'opts': 'NetClientOptions' } }
2232 # Captures the configuration of a network device.
2234 # @id: identifier for monitor commands.
2236 # @opts: device type specific properties
2243 'opts': 'NetClientOptions' } }
2246 # @InetSocketAddress
2248 # Captures a socket address or address range in the Internet namespace.
2250 # @host: host part of the address
2252 # @port: port part of the address, or lowest port if @to is present
2254 # @to: highest port to try
2256 # @ipv4: whether to accept IPv4 addresses, default try both IPv4 and IPv6
2259 # @ipv6: whether to accept IPv6 addresses, default try both IPv4 and IPv6
2264 { 'type': 'InetSocketAddress',
2273 # @UnixSocketAddress
2275 # Captures a socket address in the local ("Unix socket") namespace.
2277 # @path: filesystem path to use
2281 { 'type': 'UnixSocketAddress',
2288 # Captures the address of a socket, which could also be a named file descriptor
2292 { 'union': 'SocketAddress',
2294 'inet': 'InetSocketAddress',
2295 'unix': 'UnixSocketAddress',
2301 # Receive a file descriptor via SCM rights and assign it a name
2303 # @fdname: file descriptor name
2305 # Returns: Nothing on success
2309 # Notes: If @fdname already exists, the file descriptor assigned to
2310 # it will be closed and replaced by the received file
2312 # The 'closefd' command can be used to explicitly close the
2313 # file descriptor when it is no longer needed.
2315 { 'command': 'getfd', 'data': {'fdname': 'str'} }
2320 # Close a file descriptor previously passed via SCM rights
2322 # @fdname: file descriptor name
2324 # Returns: Nothing on success
2328 { 'command': 'closefd', 'data': {'fdname': 'str'} }
2333 # Information describing a machine.
2335 # @name: the name of the machine
2337 # @alias: #optional an alias for the machine name
2339 # @default: #optional whether the machine is default
2341 # @cpu-max: maximum number of CPUs supported by the machine type
2346 { 'type': 'MachineInfo',
2347 'data': { 'name': 'str', '*alias': 'str',
2348 '*is-default': 'bool', 'cpu-max': 'int' } }
2353 # Return a list of supported machines
2355 # Returns: a list of MachineInfo
2359 { 'command': 'query-machines', 'returns': ['MachineInfo'] }
2362 # @CpuDefinitionInfo:
2364 # Virtual CPU definition.
2366 # @name: the name of the CPU definition
2370 { 'type': 'CpuDefinitionInfo',
2371 'data': { 'name': 'str' } }
2374 # @query-cpu-definitions:
2376 # Return a list of supported virtual CPU definitions
2378 # Returns: a list of CpuDefInfo
2382 { 'command': 'query-cpu-definitions', 'returns': ['CpuDefinitionInfo'] }
2386 # Information about a file descriptor that was added to an fd set.
2388 # @fdset-id: The ID of the fd set that @fd was added to.
2390 # @fd: The file descriptor that was received via SCM rights and
2391 # added to the fd set.
2395 { 'type': 'AddfdInfo', 'data': {'fdset-id': 'int', 'fd': 'int'} }
2400 # Add a file descriptor, that was passed via SCM rights, to an fd set.
2402 # @fdset-id: #optional The ID of the fd set to add the file descriptor to.
2404 # @opaque: #optional A free-form string that can be used to describe the fd.
2406 # Returns: @AddfdInfo on success
2407 # If file descriptor was not received, FdNotSupplied
2408 # If @fdset-id is a negative value, InvalidParameterValue
2410 # Notes: The list of fd sets is shared by all monitor connections.
2412 # If @fdset-id is not specified, a new fd set will be created.
2416 { 'command': 'add-fd', 'data': {'*fdset-id': 'int', '*opaque': 'str'},
2417 'returns': 'AddfdInfo' }
2422 # Remove a file descriptor from an fd set.
2424 # @fdset-id: The ID of the fd set that the file descriptor belongs to.
2426 # @fd: #optional The file descriptor that is to be removed.
2428 # Returns: Nothing on success
2429 # If @fdset-id or @fd is not found, FdNotFound
2433 # Notes: The list of fd sets is shared by all monitor connections.
2435 # If @fd is not specified, all file descriptors in @fdset-id
2438 { 'command': 'remove-fd', 'data': {'fdset-id': 'int', '*fd': 'int'} }
2443 # Information about a file descriptor that belongs to an fd set.
2445 # @fd: The file descriptor value.
2447 # @opaque: #optional A free-form string that can be used to describe the fd.
2451 { 'type': 'FdsetFdInfo',
2452 'data': {'fd': 'int', '*opaque': 'str'} }
2457 # Information about an fd set.
2459 # @fdset-id: The ID of the fd set.
2461 # @fds: A list of file descriptors that belong to this fd set.
2465 { 'type': 'FdsetInfo',
2466 'data': {'fdset-id': 'int', 'fds': ['FdsetFdInfo']} }
2471 # Return information describing all fd sets.
2473 # Returns: A list of @FdsetInfo
2477 # Note: The list of fd sets is shared by all monitor connections.
2480 { 'command': 'query-fdsets', 'returns': ['FdsetInfo'] }
2485 # Information describing the QEMU target.
2487 # @arch: the target architecture (eg "x86_64", "i386", etc)
2491 { 'type': 'TargetInfo',
2492 'data': { 'arch': 'str' } }
2497 # Return information about the target for this QEMU
2499 # Returns: TargetInfo
2503 { 'command': 'query-target', 'returns': 'TargetInfo' }
2508 # An enumeration of key name.
2510 # This is used by the send-key command.
2514 # 'unmapped' and 'pause' since 2.0
2516 { 'enum': 'QKeyCode',
2517 'data': [ 'unmapped',
2518 'shift', 'shift_r', 'alt', 'alt_r', 'altgr', 'altgr_r', 'ctrl',
2519 'ctrl_r', 'menu', 'esc', '1', '2', '3', '4', '5', '6', '7', '8',
2520 '9', '0', 'minus', 'equal', 'backspace', 'tab', 'q', 'w', 'e',
2521 'r', 't', 'y', 'u', 'i', 'o', 'p', 'bracket_left', 'bracket_right',
2522 'ret', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'semicolon',
2523 'apostrophe', 'grave_accent', 'backslash', 'z', 'x', 'c', 'v', 'b',
2524 'n', 'm', 'comma', 'dot', 'slash', 'asterisk', 'spc', 'caps_lock',
2525 'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'f10',
2526 'num_lock', 'scroll_lock', 'kp_divide', 'kp_multiply',
2527 'kp_subtract', 'kp_add', 'kp_enter', 'kp_decimal', 'sysrq', 'kp_0',
2528 'kp_1', 'kp_2', 'kp_3', 'kp_4', 'kp_5', 'kp_6', 'kp_7', 'kp_8',
2529 'kp_9', 'less', 'f11', 'f12', 'print', 'home', 'pgup', 'pgdn', 'end',
2530 'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again',
2531 'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut',
2532 'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause' ] }
2537 # Represents a keyboard key.
2541 { 'union': 'KeyValue',
2544 'qcode': 'QKeyCode' } }
2549 # Send keys to guest.
2551 # @keys: An array of @KeyValue elements. All @KeyValues in this array are
2552 # simultaneously sent to the guest. A @KeyValue.number value is sent
2553 # directly to the guest, while @KeyValue.qcode must be a valid
2556 # @hold-time: #optional time to delay key up events, milliseconds. Defaults
2559 # Returns: Nothing on success
2560 # If key is unknown or redundant, InvalidParameter
2565 { 'command': 'send-key',
2566 'data': { 'keys': ['KeyValue'], '*hold-time': 'int' } }
2571 # Write a PPM of the VGA screen to a file.
2573 # @filename: the path of a new PPM file to store the image
2575 # Returns: Nothing on success
2579 { 'command': 'screendump', 'data': {'filename': 'str'} }
2582 # @nbd-server-start:
2584 # Start an NBD server listening on the given host and port. Block
2585 # devices can then be exported using @nbd-server-add. The NBD
2586 # server will present them as named exports; for example, another
2587 # QEMU instance could refer to them as "nbd:HOST:PORT:exportname=NAME".
2589 # @addr: Address on which to listen.
2591 # Returns: error if the server is already running.
2595 { 'command': 'nbd-server-start',
2596 'data': { 'addr': 'SocketAddress' } }
2601 # Export a device to QEMU's embedded NBD server.
2603 # @device: Block device to be exported
2605 # @writable: Whether clients should be able to write to the device via the
2606 # NBD connection (default false). #optional
2608 # Returns: error if the device is already marked for export.
2612 { 'command': 'nbd-server-add', 'data': {'device': 'str', '*writable': 'bool'} }
2617 # Stop QEMU's embedded NBD server, and unregister all devices previously
2618 # added via @nbd-server-add.
2622 { 'command': 'nbd-server-stop' }
2627 # Configuration info for file chardevs.
2629 # @in: #optional The name of the input file
2630 # @out: The name of the output file
2634 { 'type': 'ChardevFile', 'data': { '*in' : 'str',
2640 # Configuration info for device and pipe chardevs.
2642 # @device: The name of the special file for the device,
2643 # i.e. /dev/ttyS0 on Unix or COM1: on Windows
2644 # @type: What kind of device this is.
2648 { 'type': 'ChardevHostdev', 'data': { 'device' : 'str' } }
2653 # Configuration info for (stream) socket chardevs.
2655 # @addr: socket address to listen on (server=true)
2656 # or connect to (server=false)
2657 # @server: #optional create server socket (default: true)
2658 # @wait: #optional wait for incoming connection on server
2659 # sockets (default: false).
2660 # @nodelay: #optional set TCP_NODELAY socket option (default: false)
2661 # @telnet: #optional enable telnet protocol on server
2662 # sockets (default: false)
2666 { 'type': 'ChardevSocket', 'data': { 'addr' : 'SocketAddress',
2669 '*nodelay' : 'bool',
2670 '*telnet' : 'bool' } }
2675 # Configuration info for datagram socket chardevs.
2677 # @remote: remote address
2678 # @local: #optional local address
2682 { 'type': 'ChardevUdp', 'data': { 'remote' : 'SocketAddress',
2683 '*local' : 'SocketAddress' } }
2688 # Configuration info for mux chardevs.
2690 # @chardev: name of the base chardev.
2694 { 'type': 'ChardevMux', 'data': { 'chardev' : 'str' } }
2699 # Configuration info for stdio chardevs.
2701 # @signal: #optional Allow signals (such as SIGINT triggered by ^C)
2702 # be delivered to qemu. Default: true in -nographic mode,
2707 { 'type': 'ChardevStdio', 'data': { '*signal' : 'bool' } }
2710 # @ChardevSpiceChannel:
2712 # Configuration info for spice vm channel chardevs.
2714 # @type: kind of channel (for example vdagent).
2718 { 'type': 'ChardevSpiceChannel', 'data': { 'type' : 'str' } }
2721 # @ChardevSpicePort:
2723 # Configuration info for spice port chardevs.
2725 # @fqdn: name of the channel (see docs/spice-port-fqdn.txt)
2729 { 'type': 'ChardevSpicePort', 'data': { 'fqdn' : 'str' } }
2734 # Configuration info for virtual console chardevs.
2736 # @width: console width, in pixels
2737 # @height: console height, in pixels
2738 # @cols: console width, in chars
2739 # @rows: console height, in chars
2743 { 'type': 'ChardevVC', 'data': { '*width' : 'int',
2751 # Configuration info for ring buffer chardevs.
2753 # @size: #optional ring buffer size, must be power of two, default is 65536
2757 { 'type': 'ChardevRingbuf', 'data': { '*size' : 'int' } }
2762 # Configuration info for the new chardev backend.
2766 { 'type': 'ChardevDummy', 'data': { } }
2768 { 'union': 'ChardevBackend', 'data': { 'file' : 'ChardevFile',
2769 'serial' : 'ChardevHostdev',
2770 'parallel': 'ChardevHostdev',
2771 'pipe' : 'ChardevHostdev',
2772 'socket' : 'ChardevSocket',
2773 'udp' : 'ChardevUdp',
2774 'pty' : 'ChardevDummy',
2775 'null' : 'ChardevDummy',
2776 'mux' : 'ChardevMux',
2777 'msmouse': 'ChardevDummy',
2778 'braille': 'ChardevDummy',
2779 'stdio' : 'ChardevStdio',
2780 'console': 'ChardevDummy',
2781 'spicevmc' : 'ChardevSpiceChannel',
2782 'spiceport' : 'ChardevSpicePort',
2784 'ringbuf': 'ChardevRingbuf',
2785 # next one is just for compatibility
2786 'memory' : 'ChardevRingbuf' } }
2791 # Return info about the chardev backend just created.
2793 # @pty: #optional name of the slave pseudoterminal device, present if
2794 # and only if a chardev of type 'pty' was created
2798 { 'type' : 'ChardevReturn', 'data': { '*pty' : 'str' } }
2803 # Add a character device backend
2805 # @id: the chardev's ID, must be unique
2806 # @backend: backend type and parameters
2808 # Returns: ChardevReturn.
2812 { 'command': 'chardev-add', 'data': {'id' : 'str',
2813 'backend' : 'ChardevBackend' },
2814 'returns': 'ChardevReturn' }
2819 # Remove a character device backend
2821 # @id: the chardev's ID, must exist and not be in use
2823 # Returns: Nothing on success
2827 { 'command': 'chardev-remove', 'data': {'id': 'str'} }
2832 # An enumeration of TPM models
2834 # @tpm-tis: TPM TIS model
2838 { 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
2841 # @query-tpm-models:
2843 # Return a list of supported TPM models
2845 # Returns: a list of TpmModel
2849 { 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
2854 # An enumeration of TPM types
2856 # @passthrough: TPM passthrough type
2860 { 'enum': 'TpmType', 'data': [ 'passthrough' ] }
2865 # Return a list of supported TPM types
2867 # Returns: a list of TpmType
2871 { 'command': 'query-tpm-types', 'returns': ['TpmType'] }
2874 # @TPMPassthroughOptions:
2876 # Information about the TPM passthrough type
2878 # @path: #optional string describing the path used for accessing the TPM device
2880 # @cancel-path: #optional string showing the TPM's sysfs cancel file
2881 # for cancellation of TPM commands while they are executing
2885 { 'type': 'TPMPassthroughOptions', 'data': { '*path' : 'str',
2886 '*cancel-path' : 'str'} }
2891 # A union referencing different TPM backend types' configuration options
2893 # @passthrough: The configuration options for the TPM passthrough type
2897 { 'union': 'TpmTypeOptions',
2898 'data': { 'passthrough' : 'TPMPassthroughOptions' } }
2903 # Information about the TPM
2905 # @id: The Id of the TPM
2907 # @model: The TPM frontend model
2909 # @options: The TPM (backend) type configuration options
2913 { 'type': 'TPMInfo',
2914 'data': {'id': 'str',
2915 'model': 'TpmModel',
2916 'options': 'TpmTypeOptions' } }
2921 # Return information about the TPM device
2923 # Returns: @TPMInfo on success
2927 { 'command': 'query-tpm', 'returns': ['TPMInfo'] }
2932 # Specify an ACPI table on the command line to load.
2934 # At most one of @file and @data can be specified. The list of files specified
2935 # by any one of them is loaded and concatenated in order. If both are omitted,
2938 # Other fields / optargs can be used to override fields of the generic ACPI
2939 # table header; refer to the ACPI specification 5.0, section 5.2.6 System
2940 # Description Table Header. If a header field is not overridden, then the
2941 # corresponding value from the concatenated blob is used (in case of @file), or
2942 # it is filled in with a hard-coded value (in case of @data).
2944 # String fields are copied into the matching ACPI member from lowest address
2945 # upwards, and silently truncated / NUL-padded to length.
2947 # @sig: #optional table signature / identifier (4 bytes)
2949 # @rev: #optional table revision number (dependent on signature, 1 byte)
2951 # @oem_id: #optional OEM identifier (6 bytes)
2953 # @oem_table_id: #optional OEM table identifier (8 bytes)
2955 # @oem_rev: #optional OEM-supplied revision number (4 bytes)
2957 # @asl_compiler_id: #optional identifier of the utility that created the table
2960 # @asl_compiler_rev: #optional revision number of the utility that created the
2963 # @file: #optional colon (:) separated list of pathnames to load and
2964 # concatenate as table data. The resultant binary blob is expected to
2965 # have an ACPI table header. At least one file is required. This field
2968 # @data: #optional colon (:) separated list of pathnames to load and
2969 # concatenate as table data. The resultant binary blob must not have an
2970 # ACPI table header. At least one file is required. This field excludes
2975 { 'type': 'AcpiTableOptions',
2980 '*oem_table_id': 'str',
2981 '*oem_rev': 'uint32',
2982 '*asl_compiler_id': 'str',
2983 '*asl_compiler_rev': 'uint32',
2988 # @CommandLineParameterType:
2990 # Possible types for an option parameter.
2992 # @string: accepts a character string
2994 # @boolean: accepts "on" or "off"
2996 # @number: accepts a number
2998 # @size: accepts a number followed by an optional suffix (K)ilo,
2999 # (M)ega, (G)iga, (T)era
3003 { 'enum': 'CommandLineParameterType',
3004 'data': ['string', 'boolean', 'number', 'size'] }
3007 # @CommandLineParameterInfo:
3009 # Details about a single parameter of a command line option.
3011 # @name: parameter name
3013 # @type: parameter @CommandLineParameterType
3015 # @help: #optional human readable text string, not suitable for parsing.
3019 { 'type': 'CommandLineParameterInfo',
3020 'data': { 'name': 'str',
3021 'type': 'CommandLineParameterType',
3025 # @CommandLineOptionInfo:
3027 # Details about a command line option, including its list of parameter details
3029 # @option: option name
3031 # @parameters: an array of @CommandLineParameterInfo
3035 { 'type': 'CommandLineOptionInfo',
3036 'data': { 'option': 'str', 'parameters': ['CommandLineParameterInfo'] } }
3039 # @query-command-line-options:
3041 # Query command line option schema.
3043 # @option: #optional option name
3045 # Returns: list of @CommandLineOptionInfo for all options (or for the given
3046 # @option). Returns an error if the given @option doesn't exist.
3050 {'command': 'query-command-line-options', 'data': { '*option': 'str' },
3051 'returns': ['CommandLineOptionInfo'] }
3056 # A X86 32-bit register
3060 { 'enum': 'X86CPURegister32',
3061 'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
3064 # @X86CPUFeatureWordInfo
3066 # Information about a X86 CPU feature word
3068 # @cpuid-input-eax: Input EAX value for CPUID instruction for that feature word
3070 # @cpuid-input-ecx: #optional Input ECX value for CPUID instruction for that
3073 # @cpuid-register: Output register containing the feature bits
3075 # @features: value of output register, containing the feature bits
3079 { 'type': 'X86CPUFeatureWordInfo',
3080 'data': { 'cpuid-input-eax': 'int',
3081 '*cpuid-input-ecx': 'int',
3082 'cpuid-register': 'X86CPURegister32',
3083 'features': 'int' } }
3088 # Packets receiving state
3090 # @normal: filter assigned packets according to the mac-table
3092 # @none: don't receive any assigned packet
3094 # @all: receive all assigned packets
3098 { 'enum': 'RxState', 'data': [ 'normal', 'none', 'all' ] }
3103 # Rx-filter information for a NIC.
3105 # @name: net client name
3107 # @promiscuous: whether promiscuous mode is enabled
3109 # @multicast: multicast receive state
3111 # @unicast: unicast receive state
3113 # @vlan: vlan receive state (Since 2.0)
3115 # @broadcast-allowed: whether to receive broadcast
3117 # @multicast-overflow: multicast table is overflowed or not
3119 # @unicast-overflow: unicast table is overflowed or not
3121 # @main-mac: the main macaddr string
3123 # @vlan-table: a list of active vlan id
3125 # @unicast-table: a list of unicast macaddr string
3127 # @multicast-table: a list of multicast macaddr string
3132 { 'type': 'RxFilterInfo',
3135 'promiscuous': 'bool',
3136 'multicast': 'RxState',
3137 'unicast': 'RxState',
3139 'broadcast-allowed': 'bool',
3140 'multicast-overflow': 'bool',
3141 'unicast-overflow': 'bool',
3143 'vlan-table': ['int'],
3144 'unicast-table': ['str'],
3145 'multicast-table': ['str'] }}
3150 # Return rx-filter information for all NICs (or for the given NIC).
3152 # @name: #optional net client name
3154 # Returns: list of @RxFilterInfo for all NICs (or for the given NIC).
3155 # Returns an error if the given @name doesn't exist, or given
3156 # NIC doesn't support rx-filter querying, or given net client
3161 { 'command': 'query-rx-filter', 'data': { '*name': 'str' },
3162 'returns': ['RxFilterInfo'] }
3167 # Button of a pointer input device (mouse, tablet).
3171 { 'enum' : 'InputButton',
3172 'data' : [ 'Left', 'Middle', 'Right', 'WheelUp', 'WheelDown' ] }
3177 # Position axis of a pointer input device (mouse, tablet).
3181 { 'enum' : 'InputAxis',
3182 'data' : [ 'X', 'Y' ] }
3187 # Keyboard input event.
3189 # @key: Which key this event is for.
3190 # @down: True for key-down and false for key-up events.
3194 { 'type' : 'InputKeyEvent',
3195 'data' : { 'key' : 'KeyValue',
3201 # Pointer button input event.
3203 # @button: Which button this event is for.
3204 # @down: True for key-down and false for key-up events.
3208 { 'type' : 'InputBtnEvent',
3209 'data' : { 'button' : 'InputButton',
3215 # Pointer motion input event.
3217 # @axis: Which axis is referenced by @value.
3218 # @value: Pointer position. For absolute coordinates the
3219 # valid range is 0 -> 0x7ffff
3223 { 'type' : 'InputMoveEvent',
3224 'data' : { 'axis' : 'InputAxis',
3230 # Input event union.
3234 { 'union' : 'InputEvent',
3235 'data' : { 'key' : 'InputKeyEvent',
3236 'btn' : 'InputBtnEvent',
3237 'rel' : 'InputMoveEvent',
3238 'abs' : 'InputMoveEvent' } }