8 # Guest name information.
10 # @name: #optional The name of the guest
14 { 'type': 'NameInfo', 'data': {'*name': 'str'} }
19 # Return the name information of a guest.
21 # Returns: @NameInfo of the guest
25 { 'command': 'query-name', 'returns': 'NameInfo' }
30 # A description of QEMU's version.
32 # @qemu.major: The major version of QEMU
34 # @qemu.minor: The minor version of QEMU
36 # @qemu.micro: The micro version of QEMU. By current convention, a micro
37 # version of 50 signifies a development branch. A micro version
38 # greater than or equal to 90 signifies a release candidate for
39 # the next minor version. A micro version of less than 50
40 # signifies a stable release.
42 # @package: QEMU will always set this field to an empty string. Downstream
43 # versions of QEMU should set this to a non-empty string. The
44 # exact format depends on the downstream however it highly
45 # recommended that a unique name is used.
49 { 'type': 'VersionInfo',
50 'data': {'qemu': {'major': 'int', 'minor': 'int', 'micro': 'int'},
56 # Returns the current version of QEMU.
58 # Returns: A @VersionInfo object describing the current version of QEMU.
62 { 'command': 'query-version', 'returns': 'VersionInfo' }
67 # Information about support for KVM acceleration
69 # @enabled: true if KVM acceleration is active
71 # @present: true if KVM acceleration is built into this executable
75 { 'type': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} }
80 # Returns information about KVM acceleration
86 { 'command': 'query-kvm', 'returns': 'KvmInfo' }
91 # An enumation of VM run states.
93 # @debug: QEMU is running on a debugger
95 # @finish-migrate: guest is paused to finish the migration process
97 # @inmigrate: guest is paused waiting for an incoming migration
99 # @internal-error: An internal error that prevents further guest execution
102 # @io-error: the last IOP has failed and the device is configured to pause
105 # @paused: guest has been paused via the 'stop' command
107 # @postmigrate: guest is paused following a successful 'migrate'
109 # @prelaunch: QEMU was started with -S and guest has not started
111 # @restore-vm: guest is paused to restore VM state
113 # @running: guest is actively running
115 # @save-vm: guest is paused to save the VM state
117 # @shutdown: guest is shut down (and -no-shutdown is in use)
119 # @suspended: guest is suspended (ACPI S3)
121 # @watchdog: the watchdog action is configured to pause and has been triggered
123 { 'enum': 'RunState',
124 'data': [ 'debug', 'inmigrate', 'internal-error', 'io-error', 'paused',
125 'postmigrate', 'prelaunch', 'finish-migrate', 'restore-vm',
126 'running', 'save-vm', 'shutdown', 'suspended', 'watchdog' ] }
131 # Information about VCPU run state
133 # @running: true if all VCPUs are runnable, false if not runnable
135 # @singlestep: true if VCPUs are in single-step mode
137 # @status: the virtual machine @RunState
141 # Notes: @singlestep is enabled through the GDB stub
143 { 'type': 'StatusInfo',
144 'data': {'running': 'bool', 'singlestep': 'bool', 'status': 'RunState'} }
149 # Query the run status of all VCPUs
151 # Returns: @StatusInfo reflecting all VCPUs
155 { 'command': 'query-status', 'returns': 'StatusInfo' }
160 # Guest UUID information.
162 # @UUID: the UUID of the guest
166 # Notes: If no UUID was specified for the guest, a null UUID is returned.
168 { 'type': 'UuidInfo', 'data': {'UUID': 'str'} }
173 # Query the guest UUID information.
175 # Returns: The @UuidInfo for the guest
179 { 'command': 'query-uuid', 'returns': 'UuidInfo' }
184 # Information about a character device.
186 # @label: the label of the character device
188 # @filename: the filename of the character device
190 # Notes: @filename is encoded using the QEMU command line character device
191 # encoding. See the QEMU man page for details.
195 { 'type': 'ChardevInfo', 'data': {'label': 'str', 'filename': 'str'} }
200 # Returns information about current character devices.
202 # Returns: a list of @ChardevInfo
206 { 'command': 'query-chardev', 'returns': ['ChardevInfo'] }
211 # Information about a QMP command
213 # @name: The command name
217 { 'type': 'CommandInfo', 'data': {'name': 'str'} }
222 # Return a list of supported QMP commands by this server
224 # Returns: A list of @CommandInfo for all supported commands
228 { 'command': 'query-commands', 'returns': ['CommandInfo'] }
233 # Information about a QMP event
235 # @name: The event name
239 { 'type': 'EventInfo', 'data': {'name': 'str'} }
244 # Return a list of supported QMP events by this server
246 # Returns: A list of @EventInfo for all supported events
250 { 'command': 'query-events', 'returns': ['EventInfo'] }
255 # Detailed migration status.
257 # @transferred: amount of bytes already transferred to the target VM
259 # @remaining: amount of bytes remaining to be transferred to the target VM
261 # @total: total amount of bytes involved in the migration process
263 # @total_time: tota0l amount of ms since migration started. If
264 # migration has ended, it returns the total migration
269 { 'type': 'MigrationStats',
270 'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' ,
271 'total_time': 'int' } }
276 # Information about current migration process.
278 # @status: #optional string describing the current migration status.
279 # As of 0.14.0 this can be 'active', 'completed', 'failed' or
280 # 'cancelled'. If this field is not returned, no migration process
283 # @ram: #optional @MigrationStats containing detailed migration
284 # status, only returned if status is 'active' or
285 # 'completed'. 'comppleted' (since 1.2)
287 # @disk: #optional @MigrationStats containing detailed disk migration
288 # status, only returned if status is 'active' and it is a block
293 { 'type': 'MigrationInfo',
294 'data': {'*status': 'str', '*ram': 'MigrationStats',
295 '*disk': 'MigrationStats'} }
300 # Returns information about current migration process.
302 # Returns: @MigrationInfo
306 { 'command': 'query-migrate', 'returns': 'MigrationInfo' }
311 # Information about a mouse device.
313 # @name: the name of the mouse device
315 # @index: the index of the mouse device
317 # @current: true if this device is currently receiving mouse events
319 # @absolute: true if this device supports absolute coordinates as input
323 { 'type': 'MouseInfo',
324 'data': {'name': 'str', 'index': 'int', 'current': 'bool',
325 'absolute': 'bool'} }
330 # Returns information about each active mouse device
332 # Returns: a list of @MouseInfo for each device
336 { 'command': 'query-mice', 'returns': ['MouseInfo'] }
341 # Information about a virtual CPU
343 # @CPU: the index of the virtual CPU
345 # @current: this only exists for backwards compatible and should be ignored
347 # @halted: true if the virtual CPU is in the halt state. Halt usually refers
348 # to a processor specific low power mode.
350 # @pc: #optional If the target is i386 or x86_64, this is the 64-bit instruction
352 # If the target is Sparc, this is the PC component of the
353 # instruction pointer.
355 # @nip: #optional If the target is PPC, the instruction pointer
357 # @npc: #optional If the target is Sparc, the NPC component of the instruction
360 # @PC: #optional If the target is MIPS, the instruction pointer
362 # @thread_id: ID of the underlying host thread
366 # Notes: @halted is a transient state that changes frequently. By the time the
367 # data is sent to the client, the guest may no longer be halted.
370 'data': {'CPU': 'int', 'current': 'bool', 'halted': 'bool', '*pc': 'int',
371 '*nip': 'int', '*npc': 'int', '*PC': 'int', 'thread_id': 'int'} }
376 # Returns a list of information about each virtual CPU.
378 # Returns: a list of @CpuInfo for each virtual CPU
382 { 'command': 'query-cpus', 'returns': ['CpuInfo'] }
387 # Information about the backing device for a block device.
389 # @file: the filename of the backing device
391 # @ro: true if the backing device was open read-only
393 # @drv: the name of the block format used to open the backing device. As of
394 # 0.14.0 this can be: 'blkdebug', 'bochs', 'cloop', 'cow', 'dmg',
395 # 'file', 'file', 'ftp', 'ftps', 'host_cdrom', 'host_device',
396 # 'host_floppy', 'http', 'https', 'nbd', 'parallels', 'qcow',
397 # 'qcow2', 'raw', 'tftp', 'vdi', 'vmdk', 'vpc', 'vvfat'
399 # @backing_file: #optional the name of the backing file (for copy-on-write)
401 # @backing_file_depth: number of files in the backing file chain (since: 1.2)
403 # @encrypted: true if the backing device is encrypted
405 # @bps: total throughput limit in bytes per second is specified
407 # @bps_rd: read throughput limit in bytes per second is specified
409 # @bps_wr: write throughput limit in bytes per second is specified
411 # @iops: total I/O operations per second is specified
413 # @iops_rd: read I/O operations per second is specified
415 # @iops_wr: write I/O operations per second is specified
419 # Notes: This interface is only found in @BlockInfo.
421 { 'type': 'BlockDeviceInfo',
422 'data': { 'file': 'str', 'ro': 'bool', 'drv': 'str',
423 '*backing_file': 'str', 'backing_file_depth': 'int',
424 'encrypted': 'bool', 'bps': 'int', 'bps_rd': 'int',
425 'bps_wr': 'int', 'iops': 'int', 'iops_rd': 'int',
429 # @BlockDeviceIoStatus:
431 # An enumeration of block device I/O status.
433 # @ok: The last I/O operation has succeeded
435 # @failed: The last I/O operation has failed
437 # @nospace: The last I/O operation has failed due to a no-space condition
441 { 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
446 # Block device information. This structure describes a virtual device and
447 # the backing device associated with it.
449 # @device: The device name associated with the virtual device.
451 # @type: This field is returned only for compatibility reasons, it should
452 # not be used (always returns 'unknown')
454 # @removable: True if the device supports removable media.
456 # @locked: True if the guest has locked this device from having its media
459 # @tray_open: #optional True if the device has a tray and it is open
460 # (only present if removable is true)
462 # @io-status: #optional @BlockDeviceIoStatus. Only present if the device
463 # supports it and the VM is configured to stop on errors
465 # @inserted: #optional @BlockDeviceInfo describing the device if media is
470 { 'type': 'BlockInfo',
471 'data': {'device': 'str', 'type': 'str', 'removable': 'bool',
472 'locked': 'bool', '*inserted': 'BlockDeviceInfo',
473 '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus'} }
478 # Get a list of BlockInfo for all virtual block devices.
480 # Returns: a list of @BlockInfo describing each virtual block device
484 { 'command': 'query-block', 'returns': ['BlockInfo'] }
489 # Statistics of a virtual block device or a block backing device.
491 # @rd_bytes: The number of bytes read by the device.
493 # @wr_bytes: The number of bytes written by the device.
495 # @rd_operations: The number of read operations performed by the device.
497 # @wr_operations: The number of write operations performed by the device.
499 # @flush_operations: The number of cache flush operations performed by the
500 # device (since 0.15.0)
502 # @flush_total_time_ns: Total time spend on cache flushes in nano-seconds
505 # @wr_total_time_ns: Total time spend on writes in nano-seconds (since 0.15.0).
507 # @rd_total_time_ns: Total_time_spend on reads in nano-seconds (since 0.15.0).
509 # @wr_highest_offset: The offset after the greatest byte written to the
510 # device. The intended use of this information is for
511 # growable sparse files (like qcow2) that are used on top
512 # of a physical device.
516 { 'type': 'BlockDeviceStats',
517 'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'rd_operations': 'int',
518 'wr_operations': 'int', 'flush_operations': 'int',
519 'flush_total_time_ns': 'int', 'wr_total_time_ns': 'int',
520 'rd_total_time_ns': 'int', 'wr_highest_offset': 'int' } }
525 # Statistics of a virtual block device or a block backing device.
527 # @device: #optional If the stats are for a virtual block device, the name
528 # corresponding to the virtual block device.
530 # @stats: A @BlockDeviceStats for the device.
532 # @parent: #optional This may point to the backing block device if this is a
533 # a virtual block device. If it's a backing block, this will point
534 # to the backing file is one is present.
538 { 'type': 'BlockStats',
539 'data': {'*device': 'str', 'stats': 'BlockDeviceStats',
540 '*parent': 'BlockStats'} }
545 # Query the @BlockStats for all virtual block devices.
547 # Returns: A list of @BlockStats for each virtual block devices.
551 { 'command': 'query-blockstats', 'returns': ['BlockStats'] }
556 # Information about a connected VNC client.
558 # @host: The host name of the client. QEMU tries to resolve this to a DNS name
561 # @family: 'ipv6' if the client is connected via IPv6 and TCP
562 # 'ipv4' if the client is connected via IPv4 and TCP
563 # 'unix' if the client is connected via a unix domain socket
564 # 'unknown' otherwise
566 # @service: The service name of the client's port. This may depends on the
567 # host system's service database so symbolic names should not be
570 # @x509_dname: #optional If x509 authentication is in use, the Distinguished
571 # Name of the client.
573 # @sasl_username: #optional If SASL authentication is in use, the SASL username
574 # used for authentication.
578 { 'type': 'VncClientInfo',
579 'data': {'host': 'str', 'family': 'str', 'service': 'str',
580 '*x509_dname': 'str', '*sasl_username': 'str'} }
585 # Information about the VNC session.
587 # @enabled: true if the VNC server is enabled, false otherwise
589 # @host: #optional The hostname the VNC server is bound to. This depends on
590 # the name resolution on the host and may be an IP address.
592 # @family: #optional 'ipv6' if the host is listening for IPv6 connections
593 # 'ipv4' if the host is listening for IPv4 connections
594 # 'unix' if the host is listening on a unix domain socket
595 # 'unknown' otherwise
597 # @service: #optional The service name of the server's port. This may depends
598 # on the host system's service database so symbolic names should not
601 # @auth: #optional the current authentication type used by the server
602 # 'none' if no authentication is being used
603 # 'vnc' if VNC authentication is being used
604 # 'vencrypt+plain' if VEncrypt is used with plain text authentication
605 # 'vencrypt+tls+none' if VEncrypt is used with TLS and no authentication
606 # 'vencrypt+tls+vnc' if VEncrypt is used with TLS and VNC authentication
607 # 'vencrypt+tls+plain' if VEncrypt is used with TLS and plain text auth
608 # 'vencrypt+x509+none' if VEncrypt is used with x509 and no auth
609 # 'vencrypt+x509+vnc' if VEncrypt is used with x509 and VNC auth
610 # 'vencrypt+x509+plain' if VEncrypt is used with x509 and plain text auth
611 # 'vencrypt+tls+sasl' if VEncrypt is used with TLS and SASL auth
612 # 'vencrypt+x509+sasl' if VEncrypt is used with x509 and SASL auth
614 # @clients: a list of @VncClientInfo of all currently connected clients
619 'data': {'enabled': 'bool', '*host': 'str', '*family': 'str',
620 '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']} }
625 # Returns information about the current VNC server
628 # If VNC support is not compiled in, FeatureDisabled
632 { 'command': 'query-vnc', 'returns': 'VncInfo' }
637 # Information about a SPICE client channel.
639 # @host: The host name of the client. QEMU tries to resolve this to a DNS name
642 # @family: 'ipv6' if the client is connected via IPv6 and TCP
643 # 'ipv4' if the client is connected via IPv4 and TCP
644 # 'unix' if the client is connected via a unix domain socket
645 # 'unknown' otherwise
647 # @port: The client's port number.
649 # @connection-id: SPICE connection id number. All channels with the same id
650 # belong to the same SPICE session.
652 # @connection-type: SPICE channel type number. "1" is the main control
653 # channel, filter for this one if you want to track spice
656 # @channel-id: SPICE channel ID number. Usually "0", might be different when
657 # multiple channels of the same type exist, such as multiple
658 # display channels in a multihead setup
660 # @tls: true if the channel is encrypted, false otherwise.
664 { 'type': 'SpiceChannel',
665 'data': {'host': 'str', 'family': 'str', 'port': 'str',
666 'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int',
670 # @SpiceQueryMouseMode
672 # An enumation of Spice mouse states.
674 # @client: Mouse cursor position is determined by the client.
676 # @server: Mouse cursor position is determined by the server.
678 # @unknown: No information is available about mouse mode used by
681 # Note: spice/enums.h has a SpiceMouseMode already, hence the name.
685 { 'enum': 'SpiceQueryMouseMode',
686 'data': [ 'client', 'server', 'unknown' ] }
691 # Information about the SPICE session.
693 # @enabled: true if the SPICE server is enabled, false otherwise
695 # @host: #optional The hostname the SPICE server is bound to. This depends on
696 # the name resolution on the host and may be an IP address.
698 # @port: #optional The SPICE server's port number.
700 # @compiled-version: #optional SPICE server version.
702 # @tls-port: #optional The SPICE server's TLS port number.
704 # @auth: #optional the current authentication type used by the server
705 # 'none' if no authentication is being used
706 # 'spice' uses SASL or direct TLS authentication, depending on command
709 # @mouse-mode: The mode in which the mouse cursor is displayed currently. Can
710 # be determined by the client or the server, or unknown if spice
711 # server doesn't provide this information.
715 # @channels: a list of @SpiceChannel for each active spice channel
719 { 'type': 'SpiceInfo',
720 'data': {'enabled': 'bool', '*host': 'str', '*port': 'int',
721 '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
722 'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} }
727 # Returns information about the current SPICE server
729 # Returns: @SpiceInfo
733 { 'command': 'query-spice', 'returns': 'SpiceInfo' }
738 # Information about the guest balloon device.
740 # @actual: the number of bytes the balloon currently contains
742 # @mem_swapped_in: #optional number of pages swapped in within the guest
744 # @mem_swapped_out: #optional number of pages swapped out within the guest
746 # @major_page_faults: #optional number of major page faults within the guest
748 # @minor_page_faults: #optional number of minor page faults within the guest
750 # @free_mem: #optional amount of memory (in bytes) free in the guest
752 # @total_mem: #optional amount of memory (in bytes) visible to the guest
756 # Notes: all current versions of QEMU do not fill out optional information in
759 { 'type': 'BalloonInfo',
760 'data': {'actual': 'int', '*mem_swapped_in': 'int',
761 '*mem_swapped_out': 'int', '*major_page_faults': 'int',
762 '*minor_page_faults': 'int', '*free_mem': 'int',
763 '*total_mem': 'int'} }
768 # Return information about the balloon device.
770 # Returns: @BalloonInfo on success
771 # If the balloon driver is enabled but not functional because the KVM
772 # kernel module cannot support it, KvmMissingCap
773 # If no balloon device is present, DeviceNotActive
777 { 'command': 'query-balloon', 'returns': 'BalloonInfo' }
782 # A PCI device memory region
784 # @base: the starting address (guest physical)
786 # @limit: the ending address (guest physical)
790 { 'type': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} }
795 # Information about a PCI device I/O region.
797 # @bar: the index of the Base Address Register for this region
799 # @type: 'io' if the region is a PIO region
800 # 'memory' if the region is a MMIO region
802 # @prefetch: #optional if @type is 'memory', true if the memory is prefetchable
804 # @mem_type_64: #optional if @type is 'memory', true if the BAR is 64-bit
808 { 'type': 'PciMemoryRegion',
809 'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int',
810 '*prefetch': 'bool', '*mem_type_64': 'bool' } }
815 # Information about a PCI Bridge device
817 # @bus.number: primary bus interface number. This should be the number of the
818 # bus the device resides on.
820 # @bus.secondary: secondary bus interface number. This is the number of the
821 # main bus for the bridge
823 # @bus.subordinate: This is the highest number bus that resides below the
826 # @bus.io_range: The PIO range for all devices on this bridge
828 # @bus.memory_range: The MMIO range for all devices on this bridge
830 # @bus.prefetchable_range: The range of prefetchable MMIO for all devices on
833 # @devices: a list of @PciDeviceInfo for each device on this bridge
837 { 'type': 'PciBridgeInfo',
838 'data': {'bus': { 'number': 'int', 'secondary': 'int', 'subordinate': 'int',
839 'io_range': 'PciMemoryRange',
840 'memory_range': 'PciMemoryRange',
841 'prefetchable_range': 'PciMemoryRange' },
842 '*devices': ['PciDeviceInfo']} }
847 # Information about a PCI device
849 # @bus: the bus number of the device
851 # @slot: the slot the device is located in
853 # @function: the function of the slot used by the device
855 # @class_info.desc: #optional a string description of the device's class
857 # @class_info.class: the class code of the device
859 # @id.device: the PCI device id
861 # @id.vendor: the PCI vendor id
863 # @irq: #optional if an IRQ is assigned to the device, the IRQ number
865 # @qdev_id: the device name of the PCI device
867 # @pci_bridge: if the device is a PCI bridge, the bridge information
869 # @regions: a list of the PCI I/O regions associated with the device
871 # Notes: the contents of @class_info.desc are not stable and should only be
872 # treated as informational.
876 { 'type': 'PciDeviceInfo',
877 'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
878 'class_info': {'*desc': 'str', 'class': 'int'},
879 'id': {'device': 'int', 'vendor': 'int'},
880 '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
881 'regions': ['PciMemoryRegion']} }
886 # Information about a PCI bus
888 # @bus: the bus index
890 # @devices: a list of devices on this bus
894 { 'type': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} }
899 # Return information about the PCI bus topology of the guest.
901 # Returns: a list of @PciInfo for each PCI bus
905 { 'command': 'query-pci', 'returns': ['PciInfo'] }
910 # Information about a long-running block device operation.
912 # @type: the job type ('stream' for image streaming)
914 # @device: the block device name
916 # @len: the maximum progress value
918 # @offset: the current progress value
920 # @speed: the rate limit, bytes per second
924 { 'type': 'BlockJobInfo',
925 'data': {'type': 'str', 'device': 'str', 'len': 'int',
926 'offset': 'int', 'speed': 'int'} }
931 # Return information about long-running block device operations.
933 # Returns: a list of @BlockJobInfo for each active block job
937 { 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }
942 # This command will cause the QEMU process to exit gracefully. While every
943 # attempt is made to send the QMP response before terminating, this is not
944 # guaranteed. When using this interface, a premature EOF would not be
949 { 'command': 'quit' }
954 # Stop all guest VCPU execution.
958 # Notes: This function will succeed even if the guest is already in the stopped
961 { 'command': 'stop' }
966 # Performs a hard reset of a guest.
970 { 'command': 'system_reset' }
975 # Requests that a guest perform a powerdown operation.
979 # Notes: A guest may or may not respond to this command. This command
980 # returning does not indicate that a guest has accepted the request or
981 # that it has shut down. Many guests will respond to this command by
982 # prompting the user in some way.
984 { 'command': 'system_powerdown' }
989 # This command is a nop that is only provided for the purposes of compatibility.
993 # Notes: Do not use this command.
995 { 'command': 'cpu', 'data': {'index': 'int'} }
1000 # Save a portion of guest memory to a file.
1002 # @val: the virtual address of the guest to start from
1004 # @size: the size of memory region to save
1006 # @filename: the file to save the memory to as binary data
1008 # @cpu-index: #optional the index of the virtual CPU to use for translating the
1009 # virtual address (defaults to CPU 0)
1011 # Returns: Nothing on success
1012 # If @cpu is not a valid VCPU, InvalidParameterValue
1013 # If @filename cannot be opened, OpenFileFailed
1014 # If an I/O error occurs while writing the file, IOError
1018 # Notes: Errors were not reliably returned until 1.1
1020 { 'command': 'memsave',
1021 'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
1026 # Save a portion of guest physical memory to a file.
1028 # @val: the physical address of the guest to start from
1030 # @size: the size of memory region to save
1032 # @filename: the file to save the memory to as binary data
1034 # Returns: Nothing on success
1035 # If @filename cannot be opened, OpenFileFailed
1036 # If an I/O error occurs while writing the file, IOError
1040 # Notes: Errors were not reliably returned until 1.1
1042 { 'command': 'pmemsave',
1043 'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
1048 # Resume guest VCPU execution.
1052 # Returns: If successful, nothing
1053 # If the QEMU is waiting for an incoming migration, MigrationExpected
1054 # If QEMU was started with an encrypted block device and a key has
1055 # not yet been set, DeviceEncrypted.
1057 # Notes: This command will succeed if the guest is currently running.
1059 { 'command': 'cont' }
1064 # Wakeup guest from suspend. Does nothing in case the guest isn't suspended.
1070 { 'command': 'system_wakeup' }
1075 # Injects an Non-Maskable Interrupt into all guest's VCPUs.
1077 # Returns: If successful, nothing
1078 # If the Virtual Machine doesn't support NMI injection, Unsupported
1082 # Notes: Only x86 Virtual Machines support this command.
1084 { 'command': 'inject-nmi' }
1089 # Sets the link status of a virtual network adapter.
1091 # @name: the device name of the virtual network adapter
1093 # @up: true to set the link status to be up
1095 # Returns: Nothing on success
1096 # If @name is not a valid network device, DeviceNotFound
1100 # Notes: Not all network adapters support setting link status. This command
1101 # will succeed even if the network adapter does not support link status
1104 { 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} }
1109 # This command sets the password of a block device that has not been open
1110 # with a password and requires one.
1112 # The two cases where this can happen are a block device is created through
1113 # QEMU's initial command line or a block device is changed through the legacy
1114 # @change interface.
1116 # In the event that the block device is created through the initial command
1117 # line, the VM will start in the stopped state regardless of whether '-S' is
1118 # used. The intention is for a management tool to query the block devices to
1119 # determine which ones are encrypted, set the passwords with this command, and
1120 # then start the guest with the @cont command.
1122 # @device: the name of the device to set the password on
1124 # @password: the password to use for the device
1126 # Returns: nothing on success
1127 # If @device is not a valid block device, DeviceNotFound
1128 # If @device is not encrypted, DeviceNotEncrypted
1129 # If @password is not valid for this device, InvalidPassword
1131 # Notes: Not all block formats support encryption and some that do are not
1132 # able to validate that a password is correct. Disk corruption may
1133 # occur if an invalid password is specified.
1137 { 'command': 'block_passwd', 'data': {'device': 'str', 'password': 'str'} }
1142 # Request the balloon driver to change its balloon size.
1144 # @value: the target size of the balloon in bytes
1146 # Returns: Nothing on success
1147 # If the balloon driver is enabled but not functional because the KVM
1148 # kernel module cannot support it, KvmMissingCap
1149 # If no balloon device is present, DeviceNotActive
1151 # Notes: This command just issues a request to the guest. When it returns,
1152 # the balloon size may not have changed. A guest can change the balloon
1153 # size independent of this command.
1157 { 'command': 'balloon', 'data': {'value': 'int'} }
1162 # Resize a block image while a guest is running.
1164 # @device: the name of the device to get the image resized
1166 # @size: new image size in bytes
1168 # Returns: nothing on success
1169 # If @device is not a valid block device, DeviceNotFound
1170 # If @size is negative, InvalidParameterValue
1171 # If the block device has no medium inserted, DeviceHasNoMedium
1172 # If the block device does not support resize, Unsupported
1173 # If the block device is read-only, DeviceIsReadOnly
1174 # If a long-running operation is using the device, DeviceInUse
1178 { 'command': 'block_resize', 'data': { 'device': 'str', 'size': 'int' }}
1183 # An enumeration that tells QEMU how to set the backing file path in
1186 # @existing: QEMU should look for an existing image file.
1188 # @absolute-paths: QEMU should create a new image with absolute paths
1189 # for the backing file.
1193 { 'enum': 'NewImageMode'
1194 'data': [ 'existing', 'absolute-paths' ] }
1199 # @device: the name of the device to generate the snapshot from.
1201 # @snapshot-file: the target of the new image. A new file will be created.
1203 # @format: #optional the format of the snapshot image, default is 'qcow2'.
1205 # @mode: #optional whether and how QEMU should create a new image, default is
1208 { 'type': 'BlockdevSnapshot',
1209 'data': { 'device': 'str', 'snapshot-file': 'str', '*format': 'str',
1210 '*mode': 'NewImageMode' } }
1215 # A discriminated record of operations that can be performed with
1218 { 'union': 'BlockdevAction',
1220 'blockdev-snapshot-sync': 'BlockdevSnapshot',
1226 # Atomically operate on a group of one or more block devices. If
1227 # any operation fails, then the entire set of actions will be
1228 # abandoned and the appropriate error returned. The only operation
1229 # supported is currently blockdev-snapshot-sync.
1232 # @BlockdevAction: information needed for the device snapshot
1234 # Returns: nothing on success
1235 # If @device is not a valid block device, DeviceNotFound
1236 # If @device is busy, DeviceInUse will be returned
1237 # If @snapshot-file can't be created, OpenFileFailed
1238 # If @snapshot-file can't be opened, OpenFileFailed
1239 # If @format is invalid, InvalidBlockFormat
1241 # Note: The transaction aborts on the first failure. Therefore, there will
1242 # be only one device or snapshot file returned in an error condition, and
1243 # subsequent actions will not have been attempted.
1247 { 'command': 'transaction',
1248 'data': { 'actions': [ 'BlockdevAction' ] } }
1251 # @blockdev-snapshot-sync
1253 # Generates a synchronous snapshot of a block device.
1255 # @device: the name of the device to generate the snapshot from.
1257 # @snapshot-file: the target of the new image. If the file exists, or if it
1258 # is a device, the snapshot will be created in the existing
1259 # file/device. If does not exist, a new file will be created.
1261 # @format: #optional the format of the snapshot image, default is 'qcow2'.
1263 # @mode: #optional whether and how QEMU should create a new image, default is
1266 # Returns: nothing on success
1267 # If @device is not a valid block device, DeviceNotFound
1268 # If @snapshot-file can't be opened, OpenFileFailed
1269 # If @format is invalid, InvalidBlockFormat
1273 { 'command': 'blockdev-snapshot-sync',
1274 'data': { 'device': 'str', 'snapshot-file': 'str', '*format': 'str',
1275 '*mode': 'NewImageMode'} }
1278 # @human-monitor-command:
1280 # Execute a command on the human monitor and return the output.
1282 # @command-line: the command to execute in the human monitor
1284 # @cpu-index: #optional The CPU to use for commands that require an implicit CPU
1286 # Returns: the output of the command as a string
1290 # Notes: This command only exists as a stop-gap. It's use is highly
1291 # discouraged. The semantics of this command are not guaranteed.
1293 # Known limitations:
1295 # o This command is stateless, this means that commands that depend
1296 # on state information (such as getfd) might not work
1298 # o Commands that prompt the user for data (eg. 'cont' when the block
1299 # device is encrypted) don't currently work
1301 { 'command': 'human-monitor-command',
1302 'data': {'command-line': 'str', '*cpu-index': 'int'},
1308 # Cancel the current executing migration process.
1310 # Returns: nothing on success
1312 # Notes: This command succeeds even if there is no migration process running.
1316 { 'command': 'migrate_cancel' }
1319 # @migrate_set_downtime
1321 # Set maximum tolerated downtime for migration.
1323 # @value: maximum downtime in seconds
1325 # Returns: nothing on success
1329 { 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
1332 # @migrate_set_speed
1334 # Set maximum speed for migration.
1336 # @value: maximum speed in bytes.
1338 # Returns: nothing on success
1340 # Notes: A value lesser than zero will be automatically round up to zero.
1344 { 'command': 'migrate_set_speed', 'data': {'value': 'int'} }
1347 # @ObjectPropertyInfo:
1349 # @name: the name of the property
1351 # @type: the type of the property. This will typically come in one of four
1354 # 1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
1355 # These types are mapped to the appropriate JSON type.
1357 # 2) A legacy type in the form 'legacy<subtype>' where subtype is the
1358 # legacy qdev typename. These types are always treated as strings.
1360 # 3) A child type in the form 'child<subtype>' where subtype is a qdev
1361 # device type name. Child properties create the composition tree.
1363 # 4) A link type in the form 'link<subtype>' where subtype is a qdev
1364 # device type name. Link properties form the device model graph.
1368 # Notes: This type is experimental. Its syntax may change in future releases.
1370 { 'type': 'ObjectPropertyInfo',
1371 'data': { 'name': 'str', 'type': 'str' } }
1376 # This command will list any properties of a object given a path in the object
1379 # @path: the path within the object model. See @qom-get for a description of
1382 # Returns: a list of @ObjectPropertyInfo that describe the properties of the
1387 # Notes: This command is experimental. It's syntax may change in future
1390 { 'command': 'qom-list',
1391 'data': { 'path': 'str' },
1392 'returns': [ 'ObjectPropertyInfo' ] }
1397 # This command will get a property from a object model path and return the
1400 # @path: The path within the object model. There are two forms of supported
1401 # paths--absolute and partial paths.
1403 # Absolute paths are derived from the root object and can follow child<>
1404 # or link<> properties. Since they can follow link<> properties, they
1405 # can be arbitrarily long. Absolute paths look like absolute filenames
1406 # and are prefixed with a leading slash.
1408 # Partial paths look like relative filenames. They do not begin
1409 # with a prefix. The matching rules for partial paths are subtle but
1410 # designed to make specifying objects easy. At each level of the
1411 # composition tree, the partial path is matched as an absolute path.
1412 # The first match is not returned. At least two matches are searched
1413 # for. A successful result is only returned if only one match is
1414 # found. If more than one match is found, a flag is return to
1415 # indicate that the match was ambiguous.
1417 # @property: The property name to read
1419 # Returns: The property value. The type depends on the property type. legacy<>
1420 # properties are returned as #str. child<> and link<> properties are
1421 # returns as #str pathnames. All integer property types (u8, u16, etc)
1422 # are returned as #int.
1426 # Notes: This command is experimental and may change syntax in future releases.
1428 { 'command': 'qom-get',
1429 'data': { 'path': 'str', 'property': 'str' },
1430 'returns': 'visitor',
1436 # This command will set a property from a object model path.
1438 # @path: see @qom-get for a description of this parameter
1440 # @property: the property name to set
1442 # @value: a value who's type is appropriate for the property type. See @qom-get
1443 # for a description of type mapping.
1447 # Notes: This command is experimental and may change syntax in future releases.
1449 { 'command': 'qom-set',
1450 'data': { 'path': 'str', 'property': 'str', 'value': 'visitor' },
1456 # Sets the password of a remote display session.
1458 # @protocol: `vnc' to modify the VNC server password
1459 # `spice' to modify the Spice server password
1461 # @password: the new password
1463 # @connected: #optional how to handle existing clients when changing the
1464 # password. If nothing is specified, defaults to `keep'
1465 # `fail' to fail the command if clients are connected
1466 # `disconnect' to disconnect existing clients
1467 # `keep' to maintain existing clients
1469 # Returns: Nothing on success
1470 # If Spice is not enabled, DeviceNotFound
1471 # If @protocol does not support connected, InvalidParameter
1472 # If @protocol is invalid, InvalidParameter
1473 # If any other error occurs, SetPasswdFailed
1475 # Notes: If VNC is not enabled, SetPasswdFailed is returned.
1479 { 'command': 'set_password',
1480 'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} }
1485 # Expire the password of a remote display server.
1487 # @protocol: the name of the remote display protocol `vnc' or `spice'
1489 # @time: when to expire the password.
1490 # `now' to expire the password immediately
1491 # `never' to cancel password expiration
1492 # `+INT' where INT is the number of seconds from now (integer)
1493 # `INT' where INT is the absolute time in seconds
1495 # Returns: Nothing on success
1496 # If @protocol is `spice' and Spice is not active, DeviceNotFound
1497 # If an error occurs setting password expiration, SetPasswdFailed
1498 # If @protocol is not `spice' or 'vnc', InvalidParameter
1502 # Notes: Time is relative to the server and currently there is no way to
1503 # coordinate server time with client time. It is not recommended to
1504 # use the absolute time version of the @time parameter unless you're
1505 # sure you are on the same machine as the QEMU instance.
1507 { 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} }
1512 # Ejects a device from a removable drive.
1514 # @device: The name of the device
1516 # @force: @optional If true, eject regardless of whether the drive is locked.
1517 # If not specified, the default value is false.
1519 # Returns: Nothing on success
1520 # If @device is not a valid block device, DeviceNotFound
1521 # If @device is not removable and @force is false, DeviceNotRemovable
1522 # If @force is false and @device is locked, DeviceLocked
1524 # Notes: Ejecting a device will no media results in success
1528 { 'command': 'eject', 'data': {'device': 'str', '*force': 'bool'} }
1531 # @change-vnc-password:
1533 # Change the VNC server password.
1535 # @target: the new password to use with VNC authentication
1539 # Notes: An empty password in this command will set the password to the empty
1540 # string. Existing clients are unaffected by executing this command.
1542 { 'command': 'change-vnc-password', 'data': {'password': 'str'} }
1547 # This command is multiple commands multiplexed together.
1549 # @device: This is normally the name of a block device but it may also be 'vnc'.
1550 # when it's 'vnc', then sub command depends on @target
1552 # @target: If @device is a block device, then this is the new filename.
1553 # If @device is 'vnc', then if the value 'password' selects the vnc
1554 # change password command. Otherwise, this specifies a new server URI
1555 # address to listen to for VNC connections.
1557 # @arg: If @device is a block device, then this is an optional format to open
1559 # If @device is 'vnc' and @target is 'password', this is the new VNC
1560 # password to set. If this argument is an empty string, then no future
1561 # logins will be allowed.
1563 # Returns: Nothing on success.
1564 # If @device is not a valid block device, DeviceNotFound
1565 # If @format is not a valid block format, InvalidBlockFormat
1566 # If the new block device is encrypted, DeviceEncrypted. Note that
1567 # if this error is returned, the device has been opened successfully
1568 # and an additional call to @block_passwd is required to set the
1569 # device's password. The behavior of reads and writes to the block
1570 # device between when these calls are executed is undefined.
1572 # Notes: It is strongly recommended that this interface is not used especially
1573 # for changing block devices.
1577 { 'command': 'change',
1578 'data': {'device': 'str', 'target': 'str', '*arg': 'str'} }
1581 # @block_set_io_throttle:
1583 # Change I/O throttle limits for a block drive.
1585 # @device: The name of the device
1587 # @bps: total throughput limit in bytes per second
1589 # @bps_rd: read throughput limit in bytes per second
1591 # @bps_wr: write throughput limit in bytes per second
1593 # @iops: total I/O operations per second
1595 # @ops_rd: read I/O operations per second
1597 # @iops_wr: write I/O operations per second
1599 # Returns: Nothing on success
1600 # If @device is not a valid block device, DeviceNotFound
1601 # If the argument combination is invalid, InvalidParameterCombination
1605 { 'command': 'block_set_io_throttle',
1606 'data': { 'device': 'str', 'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
1607 'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int' } }
1612 # Copy data from a backing file into a block device.
1614 # The block streaming operation is performed in the background until the entire
1615 # backing file has been copied. This command returns immediately once streaming
1616 # has started. The status of ongoing block streaming operations can be checked
1617 # with query-block-jobs. The operation can be stopped before it has completed
1618 # using the block-job-cancel command.
1620 # If a base file is specified then sectors are not copied from that base file and
1621 # its backing chain. When streaming completes the image file will have the base
1622 # file as its backing file. This can be used to stream a subset of the backing
1623 # file chain instead of flattening the entire image.
1625 # On successful completion the image file is updated to drop the backing file
1626 # and the BLOCK_JOB_COMPLETED event is emitted.
1628 # @device: the device name
1630 # @base: #optional the common backing file name
1632 # @speed: #optional the maximum speed, in bytes per second
1634 # Returns: Nothing on success
1635 # If streaming is already active on this device, DeviceInUse
1636 # If @device does not exist, DeviceNotFound
1637 # If image streaming is not supported by this device, NotSupported
1638 # If @base does not exist, BaseNotFound
1639 # If @speed is invalid, InvalidParameter
1643 { 'command': 'block-stream', 'data': { 'device': 'str', '*base': 'str',
1647 # @block-job-set-speed:
1649 # Set maximum speed for a background block operation.
1651 # This command can only be issued when there is an active block job.
1653 # Throttling can be disabled by setting the speed to 0.
1655 # @device: the device name
1657 # @speed: the maximum speed, in bytes per second, or 0 for unlimited.
1660 # Returns: Nothing on success
1661 # If the job type does not support throttling, NotSupported
1662 # If the speed value is invalid, InvalidParameter
1663 # If streaming is not active on this device, DeviceNotActive
1667 { 'command': 'block-job-set-speed',
1668 'data': { 'device': 'str', 'speed': 'int' } }
1671 # @block-job-cancel:
1673 # Stop an active block streaming operation.
1675 # This command returns immediately after marking the active block streaming
1676 # operation for cancellation. It is an error to call this command if no
1677 # operation is in progress.
1679 # The operation will cancel as soon as possible and then emit the
1680 # BLOCK_JOB_CANCELLED event. Before that happens the job is still visible when
1681 # enumerated using query-block-jobs.
1683 # The image file retains its backing file unless the streaming operation happens
1684 # to complete just as it is being cancelled.
1686 # A new block streaming operation can be started at a later time to finish
1687 # copying all data from the backing file.
1689 # @device: the device name
1691 # Returns: Nothing on success
1692 # If streaming is not active on this device, DeviceNotActive
1693 # If cancellation already in progress, DeviceInUse
1697 { 'command': 'block-job-cancel', 'data': { 'device': 'str' } }
1702 # This structure describes a search result from @qom-list-types
1704 # @name: the type name found in the search
1708 # Notes: This command is experimental and may change syntax in future releases.
1710 { 'type': 'ObjectTypeInfo',
1711 'data': { 'name': 'str' } }
1716 # This command will return a list of types given search parameters
1718 # @implements: if specified, only return types that implement this type name
1720 # @abstract: if true, include abstract types in the results
1722 # Returns: a list of @ObjectTypeInfo or an empty list if no results are found
1726 # Notes: This command is experimental and may change syntax in future releases.
1728 { 'command': 'qom-list-types',
1729 'data': { '*implements': 'str', '*abstract': 'bool' },
1730 'returns': [ 'ObjectTypeInfo' ] }
1735 # Migrates the current running guest to another Virtual Machine.
1737 # @uri: the Uniform Resource Identifier of the destination VM
1739 # @blk: #optional do block migration (full disk copy)
1741 # @inc: #optional incremental disk copy migration
1743 # @detach: this argument exists only for compatibility reasons and
1744 # is ignored by QEMU
1746 # Returns: nothing on success
1750 { 'command': 'migrate',
1751 'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
1753 # @xen-save-devices-state:
1755 # Save the state of all devices to file. The RAM and the block devices
1756 # of the VM are not saved by this command.
1758 # @filename: the file to save the state of the devices to as binary
1759 # data. See xen-save-devices-state.txt for a description of the binary
1762 # Returns: Nothing on success
1763 # If @filename cannot be opened, OpenFileFailed
1764 # If an I/O error occurs while writing the file, IOError
1768 { 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} }
1773 # Remove a device from a guest
1775 # @id: the name of the device
1777 # Returns: Nothing on success
1778 # If @id is not a valid device, DeviceNotFound
1779 # If the device does not support unplug, BusNoHotplug
1781 # Notes: When this command completes, the device may not be removed from the
1782 # guest. Hot removal is an operation that requires guest cooperation.
1783 # This command merely requests that the guest begin the hot removal
1788 { 'command': 'device_del', 'data': {'id': 'str'} }
1791 # @dump-guest-memory
1793 # Dump guest's memory to vmcore. It is a synchronous operation that can take
1794 # very long depending on the amount of guest memory. This command is only
1795 # supported on i386 and x86_64.
1797 # @paging: if true, do paging to get guest's memory mapping. This allows
1798 # using gdb to process the core file. However, setting @paging to false
1799 # may be desirable because of two reasons:
1801 # 1. The guest may be in a catastrophic state or can have corrupted
1802 # memory, which cannot be trusted
1803 # 2. The guest can be in real-mode even if paging is enabled. For example,
1804 # the guest uses ACPI to sleep, and ACPI sleep state goes in real-mode
1806 # @protocol: the filename or file descriptor of the vmcore. The supported
1809 # 1. file: the protocol starts with "file:", and the following string is
1811 # 2. fd: the protocol starts with "fd:", and the following string is the
1814 # @begin: #optional if specified, the starting physical address.
1816 # @length: #optional if specified, the memory size, in bytes. If you don't
1817 # want to dump all guest's memory, please specify the start @begin and @length
1819 # Returns: nothing on success
1820 # If @begin contains an invalid address, InvalidParameter
1821 # If only one of @begin and @length is specified, MissingParameter
1822 # If @protocol stats with "fd:", and the fd cannot be found, FdNotFound
1823 # If @protocol starts with "file:", and the file cannot be
1824 # opened, OpenFileFailed
1825 # If @protocol does not start with "fd:" or "file:", InvalidParameter
1826 # If an I/O error occurs while writing the file, IOError
1827 # If the target does not support this command, Unsupported
1831 { 'command': 'dump-guest-memory',
1832 'data': { 'paging': 'bool', 'protocol': 'str', '*begin': 'int',
1833 '*length': 'int' } }
1837 # Add a network backend.
1839 # @type: the type of network backend. Current valid values are 'user', 'tap',
1840 # 'vde', 'socket', 'dump' and 'bridge'
1842 # @id: the name of the new network backend
1844 # @props: #optional a list of properties to be passed to the backend in
1845 # the format 'name=value', like 'ifname=tap0,script=no'
1847 # Notes: The semantics of @props is not well defined. Future commands will be
1848 # introduced that provide stronger typing for backend creation.
1852 # Returns: Nothing on success
1853 # If @type is not a valid network backend, DeviceNotFound
1854 # If @id is not a valid identifier, InvalidParameterValue
1855 # if @id already exists, DuplicateId
1856 # If @props contains an invalid parameter for this backend,
1859 { 'command': 'netdev_add',
1860 'data': {'type': 'str', 'id': 'str', '*props': '**'},
1866 # Remove a network backend.
1868 # @id: the name of the network backend to remove
1870 # Returns: Nothing on success
1871 # If @id is not a valid network backend, DeviceNotFound
1875 { 'command': 'netdev_del', 'data': {'id': 'str'} }
1878 # @NetdevNoneOptions
1880 # Use it alone to have zero network devices.
1884 { 'type': 'NetdevNoneOptions',
1888 # @NetLegacyNicOptions
1890 # Create a new Network Interface Card.
1892 # @netdev: #optional id of -netdev to connect to
1894 # @macaddr: #optional MAC address
1896 # @model: #optional device model (e1000, rtl8139, virtio etc.)
1898 # @addr: #optional PCI device address
1900 # @vectors: #optional number of MSI-x vectors, 0 to disable MSI-X
1904 { 'type': 'NetLegacyNicOptions',
1910 '*vectors': 'uint32' } }
1915 # A fat type wrapping 'str', to be embedded in lists.
1924 # @NetdevUserOptions
1926 # Use the user mode network stack which requires no administrator privilege to
1929 # @hostname: #optional client hostname reported by the builtin DHCP server
1931 # @restrict: #optional isolate the guest from the host
1933 # @ip: #optional legacy parameter, use net= instead
1935 # @net: #optional IP address and optional netmask
1937 # @host: #optional guest-visible address of the host
1939 # @tftp: #optional root directory of the built-in TFTP server
1941 # @bootfile: #optional BOOTP filename, for use with tftp=
1943 # @dhcpstart: #optional the first of the 16 IPs the built-in DHCP server can
1946 # @dns: #optional guest-visible address of the virtual nameserver
1948 # @smb: #optional root directory of the built-in SMB server
1950 # @smbserver: #optional IP address of the built-in SMB server
1952 # @hostfwd: #optional redirect incoming TCP or UDP host connections to guest
1955 # @guestfwd: #optional forward guest TCP connections
1959 { 'type': 'NetdevUserOptions',
1962 '*restrict': 'bool',
1968 '*dhcpstart': 'str',
1971 '*smbserver': 'str',
1972 '*hostfwd': ['String'],
1973 '*guestfwd': ['String'] } }
1978 # Connect the host TAP network interface name to the VLAN.
1980 # @ifname: #optional interface name
1982 # @fd: #optional file descriptor of an already opened tap
1984 # @script: #optional script to initialize the interface
1986 # @downscript: #optional script to shut down the interface
1988 # @helper: #optional command to execute to configure bridge
1990 # @sndbuf: #optional send buffer limit. Understands [TGMKkb] suffixes.
1992 # @vnet_hdr: #optional enable the IFF_VNET_HDR flag on the tap interface
1994 # @vhost: #optional enable vhost-net network accelerator
1996 # @vhostfd: #optional file descriptor of an already opened vhost net device
1998 # @vhostforce: #optional vhost on for non-MSIX virtio guests
2002 { 'type': 'NetdevTapOptions',
2007 '*downscript': 'str',
2010 '*vnet_hdr': 'bool',
2013 '*vhostforce': 'bool' } }
2016 # @NetdevSocketOptions
2018 # Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP
2019 # socket connection.
2021 # @fd: #optional file descriptor of an already opened socket
2023 # @listen: #optional port number, and optional hostname, to listen on
2025 # @connect: #optional port number, and optional hostname, to connect to
2027 # @mcast: #optional UDP multicast address and port number
2029 # @localaddr: #optional source address and port for multicast and udp packets
2031 # @udp: #optional UDP unicast address and port number
2035 { 'type': 'NetdevSocketOptions',
2041 '*localaddr': 'str',
2047 # Connect the VLAN to a vde switch running on the host.
2049 # @sock: #optional socket path
2051 # @port: #optional port number
2053 # @group: #optional group owner of socket
2055 # @mode: #optional permissions for socket
2059 { 'type': 'NetdevVdeOptions',
2064 '*mode': 'uint16' } }
2067 # @NetdevDumpOptions
2069 # Dump VLAN network traffic to a file.
2071 # @len: #optional per-packet size limit (64k default). Understands [TGMKkb]
2074 # @file: #optional dump file path (default is qemu-vlan0.pcap)
2078 { 'type': 'NetdevDumpOptions',
2084 # @NetdevBridgeOptions
2086 # Connect a host TAP network interface to a host bridge device.
2088 # @br: #optional bridge name
2090 # @helper: #optional command to execute to configure bridge
2094 { 'type': 'NetdevBridgeOptions',
2097 '*helper': 'str' } }
2100 # @NetdevHubPortOptions
2102 # Connect two or more net clients through a software hub.
2104 # @hubid: hub identifier number
2108 { 'type': 'NetdevHubPortOptions',
2110 'hubid': 'int32' } }
2115 # A discriminated record of network device traits.
2119 { 'union': 'NetClientOptions',
2121 'none': 'NetdevNoneOptions',
2122 'nic': 'NetLegacyNicOptions',
2123 'user': 'NetdevUserOptions',
2124 'tap': 'NetdevTapOptions',
2125 'socket': 'NetdevSocketOptions',
2126 'vde': 'NetdevVdeOptions',
2127 'dump': 'NetdevDumpOptions',
2128 'bridge': 'NetdevBridgeOptions',
2129 'hubport': 'NetdevHubPortOptions' } }
2134 # Captures the configuration of a network device; legacy.
2136 # @vlan: #optional vlan number
2138 # @id: #optional identifier for monitor commands
2140 # @name: #optional identifier for monitor commands, ignored if @id is present
2142 # @opts: device type specific properties (legacy)
2146 { 'type': 'NetLegacy',
2151 'opts': 'NetClientOptions' } }
2156 # Captures the configuration of a network device.
2158 # @id: identifier for monitor commands.
2160 # @opts: device type specific properties
2167 'opts': 'NetClientOptions' } }
2172 # Receive a file descriptor via SCM rights and assign it a name
2174 # @fdname: file descriptor name
2176 # Returns: Nothing on success
2177 # If file descriptor was not received, FdNotSupplied
2178 # If @fdname is not valid, InvalidParameterType
2182 # Notes: If @fdname already exists, the file descriptor assigned to
2183 # it will be closed and replaced by the received file
2185 # The 'closefd' command can be used to explicitly close the
2186 # file descriptor when it is no longer needed.
2188 { 'command': 'getfd', 'data': {'fdname': 'str'} }
2193 # Close a file descriptor previously passed via SCM rights
2195 # @fdname: file descriptor name
2197 # Returns: Nothing on success
2198 # If @fdname is not found, FdNotFound
2202 { 'command': 'closefd', 'data': {'fdname': 'str'} }