qdev: ignore GlobalProperty.errp for hotplugged devices
[qemu.git] / qga / qapi-schema.json
blobc21f3084dcafb9039e9139d9d169d268a3806bb1
1 # *-*- Mode: Python -*-*
3 ##
5 # General note concerning the use of guest agent interfaces:
7 # "unsupported" is a higher-level error than the errors that individual
8 # commands might document. The caller should always be prepared to receive
9 # QERR_UNSUPPORTED, even if the given command doesn't specify it, or doesn't
10 # document any failure mode at all.
15 # @guest-sync-delimited:
17 # Echo back a unique integer value, and prepend to response a
18 # leading sentinel byte (0xFF) the client can check scan for.
20 # This is used by clients talking to the guest agent over the
21 # wire to ensure the stream is in sync and doesn't contain stale
22 # data from previous client. It must be issued upon initial
23 # connection, and after any client-side timeouts (including
24 # timeouts on receiving a response to this command).
26 # After issuing this request, all guest agent responses should be
27 # ignored until the response containing the unique integer value
28 # the client passed in is returned. Receival of the 0xFF sentinel
29 # byte must be handled as an indication that the client's
30 # lexer/tokenizer/parser state should be flushed/reset in
31 # preparation for reliably receiving the subsequent response. As
32 # an optimization, clients may opt to ignore all data until a
33 # sentinel value is receiving to avoid unnecessary processing of
34 # stale data.
36 # Similarly, clients should also precede this *request*
37 # with a 0xFF byte to make sure the guest agent flushes any
38 # partially read JSON data from a previous client connection.
40 # @id: randomly generated 64-bit integer
42 # Returns: The unique integer id passed in by the client
44 # Since: 1.1
46 { 'command': 'guest-sync-delimited',
47   'data':    { 'id': 'int' },
48   'returns': 'int' }
51 # @guest-sync:
53 # Echo back a unique integer value
55 # This is used by clients talking to the guest agent over the
56 # wire to ensure the stream is in sync and doesn't contain stale
57 # data from previous client. All guest agent responses should be
58 # ignored until the provided unique integer value is returned,
59 # and it is up to the client to handle stale whole or
60 # partially-delivered JSON text in such a way that this response
61 # can be obtained.
63 # In cases where a partial stale response was previously
64 # received by the client, this cannot always be done reliably.
65 # One particular scenario being if qemu-ga responses are fed
66 # character-by-character into a JSON parser. In these situations,
67 # using guest-sync-delimited may be optimal.
69 # For clients that fetch responses line by line and convert them
70 # to JSON objects, guest-sync should be sufficient, but note that
71 # in cases where the channel is dirty some attempts at parsing the
72 # response may result in a parser error.
74 # Such clients should also precede this command
75 # with a 0xFF byte to make sure the guest agent flushes any
76 # partially read JSON data from a previous session.
78 # @id: randomly generated 64-bit integer
80 # Returns: The unique integer id passed in by the client
82 # Since: 0.15.0
84 { 'command': 'guest-sync',
85   'data':    { 'id': 'int' },
86   'returns': 'int' }
89 # @guest-ping:
91 # Ping the guest agent, a non-error return implies success
93 # Since: 0.15.0
95 { 'command': 'guest-ping' }
98 # @guest-get-time:
100 # Get the information about guest's System Time relative to
101 # the Epoch of 1970-01-01 in UTC.
103 # Returns: Time in nanoseconds.
105 # Since 1.5
107 { 'command': 'guest-get-time',
108   'returns': 'int' }
111 # @guest-set-time:
113 # Set guest time.
115 # When a guest is paused or migrated to a file then loaded
116 # from that file, the guest OS has no idea that there
117 # was a big gap in the time. Depending on how long the
118 # gap was, NTP might not be able to resynchronize the
119 # guest.
121 # This command tries to set guest's System Time to the
122 # given value, then sets the Hardware Clock (RTC) to the
123 # current System Time. This will make it easier for a guest
124 # to resynchronize without waiting for NTP. If no @time is
125 # specified, then the time to set is read from RTC. However,
126 # this may not be supported on all platforms (i.e. Windows).
127 # If that's the case users are advised to always pass a
128 # value.
130 # @time: #optional time of nanoseconds, relative to the Epoch
131 #        of 1970-01-01 in UTC.
133 # Returns: Nothing on success.
135 # Since: 1.5
137 { 'command': 'guest-set-time',
138   'data': { '*time': 'int' } }
141 # @GuestAgentCommandInfo:
143 # Information about guest agent commands.
145 # @name: name of the command
147 # @enabled: whether command is currently enabled by guest admin
149 # @success-response: whether command returns a response on success
150 #                    (since 1.7)
152 # Since 1.1.0
154 { 'struct': 'GuestAgentCommandInfo',
155   'data': { 'name': 'str', 'enabled': 'bool', 'success-response': 'bool' } }
158 # @GuestAgentInfo
160 # Information about guest agent.
162 # @version: guest agent version
164 # @supported_commands: Information about guest agent commands
166 # Since 0.15.0
168 { 'struct': 'GuestAgentInfo',
169   'data': { 'version': 'str',
170             'supported_commands': ['GuestAgentCommandInfo'] } }
172 # @guest-info:
174 # Get some information about the guest agent.
176 # Returns: @GuestAgentInfo
178 # Since: 0.15.0
180 { 'command': 'guest-info',
181   'returns': 'GuestAgentInfo' }
184 # @guest-shutdown:
186 # Initiate guest-activated shutdown. Note: this is an asynchronous
187 # shutdown request, with no guarantee of successful shutdown.
189 # @mode: #optional "halt", "powerdown" (default), or "reboot"
191 # This command does NOT return a response on success. Success condition
192 # is indicated by the VM exiting with a zero exit status or, when
193 # running with --no-shutdown, by issuing the query-status QMP command
194 # to confirm the VM status is "shutdown".
196 # Since: 0.15.0
198 { 'command': 'guest-shutdown', 'data': { '*mode': 'str' },
199   'success-response': false }
202 # @guest-file-open:
204 # Open a file in the guest and retrieve a file handle for it
206 # @filepath: Full path to the file in the guest to open.
208 # @mode: #optional open mode, as per fopen(), "r" is the default.
210 # Returns: Guest file handle on success.
212 # Since: 0.15.0
214 { 'command': 'guest-file-open',
215   'data':    { 'path': 'str', '*mode': 'str' },
216   'returns': 'int' }
219 # @guest-file-close:
221 # Close an open file in the guest
223 # @handle: filehandle returned by guest-file-open
225 # Returns: Nothing on success.
227 # Since: 0.15.0
229 { 'command': 'guest-file-close',
230   'data': { 'handle': 'int' } }
233 # @GuestFileRead
235 # Result of guest agent file-read operation
237 # @count: number of bytes read (note: count is *before*
238 #         base64-encoding is applied)
240 # @buf-b64: base64-encoded bytes read
242 # @eof: whether EOF was encountered during read operation.
244 # Since: 0.15.0
246 { 'struct': 'GuestFileRead',
247   'data': { 'count': 'int', 'buf-b64': 'str', 'eof': 'bool' } }
250 # @guest-file-read:
252 # Read from an open file in the guest. Data will be base64-encoded
254 # @handle: filehandle returned by guest-file-open
256 # @count: #optional maximum number of bytes to read (default is 4KB)
258 # Returns: @GuestFileRead on success.
260 # Since: 0.15.0
262 { 'command': 'guest-file-read',
263   'data':    { 'handle': 'int', '*count': 'int' },
264   'returns': 'GuestFileRead' }
267 # @GuestFileWrite
269 # Result of guest agent file-write operation
271 # @count: number of bytes written (note: count is actual bytes
272 #         written, after base64-decoding of provided buffer)
274 # @eof: whether EOF was encountered during write operation.
276 # Since: 0.15.0
278 { 'struct': 'GuestFileWrite',
279   'data': { 'count': 'int', 'eof': 'bool' } }
282 # @guest-file-write:
284 # Write to an open file in the guest.
286 # @handle: filehandle returned by guest-file-open
288 # @buf-b64: base64-encoded string representing data to be written
290 # @count: #optional bytes to write (actual bytes, after base64-decode),
291 #         default is all content in buf-b64 buffer after base64 decoding
293 # Returns: @GuestFileWrite on success.
295 # Since: 0.15.0
297 { 'command': 'guest-file-write',
298   'data':    { 'handle': 'int', 'buf-b64': 'str', '*count': 'int' },
299   'returns': 'GuestFileWrite' }
303 # @GuestFileSeek
305 # Result of guest agent file-seek operation
307 # @position: current file position
309 # @eof: whether EOF was encountered during file seek
311 # Since: 0.15.0
313 { 'struct': 'GuestFileSeek',
314   'data': { 'position': 'int', 'eof': 'bool' } }
317 # @QGASeek:
319 # Symbolic names for use in @guest-file-seek
321 # @set: Set to the specified offset (same effect as 'whence':0)
322 # @cur: Add offset to the current location (same effect as 'whence':1)
323 # @end: Add offset to the end of the file (same effect as 'whence':2)
325 # Since: 2.6
327 { 'enum': 'QGASeek', 'data': [ 'set', 'cur', 'end' ] }
330 # @GuestFileWhence:
332 # Controls the meaning of offset to @guest-file-seek.
334 # @value: Integral value (0 for set, 1 for cur, 2 for end), available
335 #         for historical reasons, and might differ from the host's or
336 #         guest's SEEK_* values (since: 0.15)
337 # @name: Symbolic name, and preferred interface
339 # Since: 2.6
341 { 'alternate': 'GuestFileWhence',
342   'data': { 'value': 'int', 'name': 'QGASeek' } }
345 # @guest-file-seek:
347 # Seek to a position in the file, as with fseek(), and return the
348 # current file position afterward. Also encapsulates ftell()'s
349 # functionality, with offset=0 and whence=1.
351 # @handle: filehandle returned by guest-file-open
353 # @offset: bytes to skip over in the file stream
355 # @whence: Symbolic or numeric code for interpreting offset
357 # Returns: @GuestFileSeek on success.
359 # Since: 0.15.0
361 { 'command': 'guest-file-seek',
362   'data':    { 'handle': 'int', 'offset': 'int',
363                'whence': 'GuestFileWhence' },
364   'returns': 'GuestFileSeek' }
367 # @guest-file-flush:
369 # Write file changes bufferred in userspace to disk/kernel buffers
371 # @handle: filehandle returned by guest-file-open
373 # Returns: Nothing on success.
375 # Since: 0.15.0
377 { 'command': 'guest-file-flush',
378   'data': { 'handle': 'int' } }
381 # @GuestFsFreezeStatus
383 # An enumeration of filesystem freeze states
385 # @thawed: filesystems thawed/unfrozen
387 # @frozen: all non-network guest filesystems frozen
389 # Since: 0.15.0
391 { 'enum': 'GuestFsfreezeStatus',
392   'data': [ 'thawed', 'frozen' ] }
395 # @guest-fsfreeze-status:
397 # Get guest fsfreeze state. error state indicates
399 # Returns: GuestFsfreezeStatus ("thawed", "frozen", etc., as defined below)
401 # Note: This may fail to properly report the current state as a result of
402 # some other guest processes having issued an fs freeze/thaw.
404 # Since: 0.15.0
406 { 'command': 'guest-fsfreeze-status',
407   'returns': 'GuestFsfreezeStatus' }
410 # @guest-fsfreeze-freeze:
412 # Sync and freeze all freezable, local guest filesystems
414 # Returns: Number of file systems currently frozen. On error, all filesystems
415 # will be thawed.
417 # Since: 0.15.0
419 { 'command': 'guest-fsfreeze-freeze',
420   'returns': 'int' }
423 # @guest-fsfreeze-freeze-list:
425 # Sync and freeze specified guest filesystems
427 # @mountpoints: #optional an array of mountpoints of filesystems to be frozen.
428 #               If omitted, every mounted filesystem is frozen.
430 # Returns: Number of file systems currently frozen. On error, all filesystems
431 # will be thawed.
433 # Since: 2.2
435 { 'command': 'guest-fsfreeze-freeze-list',
436   'data':    { '*mountpoints': ['str'] },
437   'returns': 'int' }
440 # @guest-fsfreeze-thaw:
442 # Unfreeze all frozen guest filesystems
444 # Returns: Number of file systems thawed by this call
446 # Note: if return value does not match the previous call to
447 #       guest-fsfreeze-freeze, this likely means some freezable
448 #       filesystems were unfrozen before this call, and that the
449 #       filesystem state may have changed before issuing this
450 #       command.
452 # Since: 0.15.0
454 { 'command': 'guest-fsfreeze-thaw',
455   'returns': 'int' }
458 # @GuestFilesystemTrimResult
460 # @path: path that was trimmed
461 # @error: an error message when trim failed
462 # @trimmed: bytes trimmed for this path
463 # @minimum: reported effective minimum for this path
465 # Since: 2.4
467 { 'struct': 'GuestFilesystemTrimResult',
468   'data': {'path': 'str',
469            '*trimmed': 'int', '*minimum': 'int', '*error': 'str'} }
472 # @GuestFilesystemTrimResponse
474 # @paths: list of @GuestFilesystemTrimResult per path that was trimmed
476 # Since: 2.4
478 { 'struct': 'GuestFilesystemTrimResponse',
479   'data': {'paths': ['GuestFilesystemTrimResult']} }
482 # @guest-fstrim:
484 # Discard (or "trim") blocks which are not in use by the filesystem.
486 # @minimum:
487 #       Minimum contiguous free range to discard, in bytes. Free ranges
488 #       smaller than this may be ignored (this is a hint and the guest
489 #       may not respect it).  By increasing this value, the fstrim
490 #       operation will complete more quickly for filesystems with badly
491 #       fragmented free space, although not all blocks will be discarded.
492 #       The default value is zero, meaning "discard every free block".
494 # Returns: A @GuestFilesystemTrimResponse which contains the
495 #          status of all trimmed paths. (since 2.4)
497 # Since: 1.2
499 { 'command': 'guest-fstrim',
500   'data': { '*minimum': 'int' },
501   'returns': 'GuestFilesystemTrimResponse' }
504 # @guest-suspend-disk
506 # Suspend guest to disk.
508 # This command tries to execute the scripts provided by the pm-utils package.
509 # If it's not available, the suspend operation will be performed by manually
510 # writing to a sysfs file.
512 # For the best results it's strongly recommended to have the pm-utils
513 # package installed in the guest.
515 # This command does NOT return a response on success. There is a high chance
516 # the command succeeded if the VM exits with a zero exit status or, when
517 # running with --no-shutdown, by issuing the query-status QMP command to
518 # to confirm the VM status is "shutdown". However, the VM could also exit
519 # (or set its status to "shutdown") due to other reasons.
521 # The following errors may be returned:
522 #          If suspend to disk is not supported, Unsupported
524 # Notes: It's strongly recommended to issue the guest-sync command before
525 #        sending commands when the guest resumes
527 # Since: 1.1
529 { 'command': 'guest-suspend-disk', 'success-response': false }
532 # @guest-suspend-ram
534 # Suspend guest to ram.
536 # This command tries to execute the scripts provided by the pm-utils package.
537 # If it's not available, the suspend operation will be performed by manually
538 # writing to a sysfs file.
540 # For the best results it's strongly recommended to have the pm-utils
541 # package installed in the guest.
543 # IMPORTANT: guest-suspend-ram requires QEMU to support the 'system_wakeup'
544 # command.  Thus, it's *required* to query QEMU for the presence of the
545 # 'system_wakeup' command before issuing guest-suspend-ram.
547 # This command does NOT return a response on success. There are two options
548 # to check for success:
549 #   1. Wait for the SUSPEND QMP event from QEMU
550 #   2. Issue the query-status QMP command to confirm the VM status is
551 #      "suspended"
553 # The following errors may be returned:
554 #          If suspend to ram is not supported, Unsupported
556 # Notes: It's strongly recommended to issue the guest-sync command before
557 #        sending commands when the guest resumes
559 # Since: 1.1
561 { 'command': 'guest-suspend-ram', 'success-response': false }
564 # @guest-suspend-hybrid
566 # Save guest state to disk and suspend to ram.
568 # This command requires the pm-utils package to be installed in the guest.
570 # IMPORTANT: guest-suspend-hybrid requires QEMU to support the 'system_wakeup'
571 # command.  Thus, it's *required* to query QEMU for the presence of the
572 # 'system_wakeup' command before issuing guest-suspend-hybrid.
574 # This command does NOT return a response on success. There are two options
575 # to check for success:
576 #   1. Wait for the SUSPEND QMP event from QEMU
577 #   2. Issue the query-status QMP command to confirm the VM status is
578 #      "suspended"
580 # The following errors may be returned:
581 #          If hybrid suspend is not supported, Unsupported
583 # Notes: It's strongly recommended to issue the guest-sync command before
584 #        sending commands when the guest resumes
586 # Since: 1.1
588 { 'command': 'guest-suspend-hybrid', 'success-response': false }
591 # @GuestIpAddressType:
593 # An enumeration of supported IP address types
595 # @ipv4: IP version 4
597 # @ipv6: IP version 6
599 # Since: 1.1
601 { 'enum': 'GuestIpAddressType',
602   'data': [ 'ipv4', 'ipv6' ] }
605 # @GuestIpAddress:
607 # @ip-address: IP address
609 # @ip-address-type: Type of @ip-address (e.g. ipv4, ipv6)
611 # @prefix: Network prefix length of @ip-address
613 # Since: 1.1
615 { 'struct': 'GuestIpAddress',
616   'data': {'ip-address': 'str',
617            'ip-address-type': 'GuestIpAddressType',
618            'prefix': 'int'} }
621 # @GuestNetworkInterface:
623 # @name: The name of interface for which info are being delivered
625 # @hardware-address: Hardware address of @name
627 # @ip-addresses: List of addresses assigned to @name
629 # Since: 1.1
631 { 'struct': 'GuestNetworkInterface',
632   'data': {'name': 'str',
633            '*hardware-address': 'str',
634            '*ip-addresses': ['GuestIpAddress'] } }
637 # @guest-network-get-interfaces:
639 # Get list of guest IP addresses, MAC addresses
640 # and netmasks.
642 # Returns: List of GuestNetworkInfo on success.
644 # Since: 1.1
646 { 'command': 'guest-network-get-interfaces',
647   'returns': ['GuestNetworkInterface'] }
650 # @GuestLogicalProcessor:
652 # @logical-id: Arbitrary guest-specific unique identifier of the VCPU.
654 # @online: Whether the VCPU is enabled.
656 # @can-offline: #optional Whether offlining the VCPU is possible. This member
657 #               is always filled in by the guest agent when the structure is
658 #               returned, and always ignored on input (hence it can be omitted
659 #               then).
661 # Since: 1.5
663 { 'struct': 'GuestLogicalProcessor',
664   'data': {'logical-id': 'int',
665            'online': 'bool',
666            '*can-offline': 'bool'} }
669 # @guest-get-vcpus:
671 # Retrieve the list of the guest's logical processors.
673 # This is a read-only operation.
675 # Returns: The list of all VCPUs the guest knows about. Each VCPU is put on the
676 # list exactly once, but their order is unspecified.
678 # Since: 1.5
680 { 'command': 'guest-get-vcpus',
681   'returns': ['GuestLogicalProcessor'] }
684 # @guest-set-vcpus:
686 # Attempt to reconfigure (currently: enable/disable) logical processors inside
687 # the guest.
689 # The input list is processed node by node in order. In each node @logical-id
690 # is used to look up the guest VCPU, for which @online specifies the requested
691 # state. The set of distinct @logical-id's is only required to be a subset of
692 # the guest-supported identifiers. There's no restriction on list length or on
693 # repeating the same @logical-id (with possibly different @online field).
694 # Preferably the input list should describe a modified subset of
695 # @guest-get-vcpus' return value.
697 # Returns: The length of the initial sublist that has been successfully
698 #          processed. The guest agent maximizes this value. Possible cases:
700 #          0:                if the @vcpus list was empty on input. Guest state
701 #                            has not been changed. Otherwise,
703 #          Error:            processing the first node of @vcpus failed for the
704 #                            reason returned. Guest state has not been changed.
705 #                            Otherwise,
707 #          < length(@vcpus): more than zero initial nodes have been processed,
708 #                            but not the entire @vcpus list. Guest state has
709 #                            changed accordingly. To retrieve the error
710 #                            (assuming it persists), repeat the call with the
711 #                            successfully processed initial sublist removed.
712 #                            Otherwise,
714 #          length(@vcpus):   call successful.
716 # Since: 1.5
718 { 'command': 'guest-set-vcpus',
719   'data':    {'vcpus': ['GuestLogicalProcessor'] },
720   'returns': 'int' }
723 # @GuestDiskBusType
725 # An enumeration of bus type of disks
727 # @ide: IDE disks
728 # @fdc: floppy disks
729 # @scsi: SCSI disks
730 # @virtio: virtio disks
731 # @xen: Xen disks
732 # @usb: USB disks
733 # @uml: UML disks
734 # @sata: SATA disks
735 # @sd: SD cards
736 # @unknown: Unknown bus type
737 # @ieee1394: Win IEEE 1394 bus type
738 # @ssa: Win SSA bus type
739 # @fibre: Win fiber channel bus type
740 # @raid: Win RAID bus type
741 # @iscsi: Win iScsi bus type
742 # @sas: Win serial-attaches SCSI bus type
743 # @mmc: Win multimedia card (MMC) bus type
744 # @virtual: Win virtual bus type
745 # @file-backed virtual: Win file-backed bus type
747 # Since: 2.2; 'Unknown' and all entries below since 2.4
749 { 'enum': 'GuestDiskBusType',
750   'data': [ 'ide', 'fdc', 'scsi', 'virtio', 'xen', 'usb', 'uml', 'sata',
751             'sd', 'unknown', 'ieee1394', 'ssa', 'fibre', 'raid', 'iscsi',
752             'sas', 'mmc', 'virtual', 'file-backed-virtual' ] }
756 # @GuestPCIAddress:
758 # @domain: domain id
759 # @bus: bus id
760 # @slot: slot id
761 # @function: function id
763 # Since: 2.2
765 { 'struct': 'GuestPCIAddress',
766   'data': {'domain': 'int', 'bus': 'int',
767            'slot': 'int', 'function': 'int'} }
770 # @GuestDiskAddress:
772 # @pci-controller: controller's PCI address
773 # @type: bus type
774 # @bus: bus id
775 # @target: target id
776 # @unit: unit id
778 # Since: 2.2
780 { 'struct': 'GuestDiskAddress',
781   'data': {'pci-controller': 'GuestPCIAddress',
782            'bus-type': 'GuestDiskBusType',
783            'bus': 'int', 'target': 'int', 'unit': 'int'} }
786 # @GuestFilesystemInfo
788 # @name: disk name
789 # @mountpoint: mount point path
790 # @type: file system type string
791 # @disk: an array of disk hardware information that the volume lies on,
792 #        which may be empty if the disk type is not supported
794 # Since: 2.2
796 { 'struct': 'GuestFilesystemInfo',
797   'data': {'name': 'str', 'mountpoint': 'str', 'type': 'str',
798            'disk': ['GuestDiskAddress']} }
801 # @guest-get-fsinfo:
803 # Returns: The list of filesystems information mounted in the guest.
804 #          The returned mountpoints may be specified to
805 #          @guest-fsfreeze-freeze-list.
806 #          Network filesystems (such as CIFS and NFS) are not listed.
808 # Since: 2.2
810 { 'command': 'guest-get-fsinfo',
811   'returns': ['GuestFilesystemInfo'] }
814 # @guest-set-user-password
816 # @username: the user account whose password to change
817 # @password: the new password entry string, base64 encoded
818 # @crypted: true if password is already crypt()d, false if raw
820 # If the @crypted flag is true, it is the caller's responsibility
821 # to ensure the correct crypt() encryption scheme is used. This
822 # command does not attempt to interpret or report on the encryption
823 # scheme. Refer to the documentation of the guest operating system
824 # in question to determine what is supported.
826 # Not all guest operating systems will support use of the
827 # @crypted flag, as they may require the clear-text password
829 # The @password parameter must always be base64 encoded before
830 # transmission, even if already crypt()d, to ensure it is 8-bit
831 # safe when passed as JSON.
833 # Returns: Nothing on success.
835 # Since 2.3
837 { 'command': 'guest-set-user-password',
838   'data': { 'username': 'str', 'password': 'str', 'crypted': 'bool' } }
840 # @GuestMemoryBlock:
842 # @phys-index: Arbitrary guest-specific unique identifier of the MEMORY BLOCK.
844 # @online: Whether the MEMORY BLOCK is enabled in guest.
846 # @can-offline: #optional Whether offlining the MEMORY BLOCK is possible.
847 #               This member is always filled in by the guest agent when the
848 #               structure is returned, and always ignored on input (hence it
849 #               can be omitted then).
851 # Since: 2.3
853 { 'struct': 'GuestMemoryBlock',
854   'data': {'phys-index': 'uint64',
855            'online': 'bool',
856            '*can-offline': 'bool'} }
859 # @guest-get-memory-blocks:
861 # Retrieve the list of the guest's memory blocks.
863 # This is a read-only operation.
865 # Returns: The list of all memory blocks the guest knows about.
866 # Each memory block is put on the list exactly once, but their order
867 # is unspecified.
869 # Since: 2.3
871 { 'command': 'guest-get-memory-blocks',
872   'returns': ['GuestMemoryBlock'] }
875 # @GuestMemoryBlockResponseType
877 # An enumeration of memory block operation result.
879 # @success: the operation of online/offline memory block is successful.
880 # @not-found: can't find the corresponding memoryXXX directory in sysfs.
881 # @operation-not-supported: for some old kernels, it does not support
882 #                           online or offline memory block.
883 # @operation-failed: the operation of online/offline memory block fails,
884 #                    because of some errors happen.
886 # Since: 2.3
888 { 'enum': 'GuestMemoryBlockResponseType',
889   'data': ['success', 'not-found', 'operation-not-supported',
890            'operation-failed'] }
893 # @GuestMemoryBlockResponse:
895 # @phys-index: same with the 'phys-index' member of @GuestMemoryBlock.
897 # @response: the result of memory block operation.
899 # @error-code: #optional the error number.
900 #               When memory block operation fails, we assign the value of
901 #               'errno' to this member, it indicates what goes wrong.
902 #               When the operation succeeds, it will be omitted.
904 # Since: 2.3
906 { 'struct': 'GuestMemoryBlockResponse',
907   'data': { 'phys-index': 'uint64',
908             'response': 'GuestMemoryBlockResponseType',
909             '*error-code': 'int' }}
912 # @guest-set-memory-blocks:
914 # Attempt to reconfigure (currently: enable/disable) state of memory blocks
915 # inside the guest.
917 # The input list is processed node by node in order. In each node @phys-index
918 # is used to look up the guest MEMORY BLOCK, for which @online specifies the
919 # requested state. The set of distinct @phys-index's is only required to be a
920 # subset of the guest-supported identifiers. There's no restriction on list
921 # length or on repeating the same @phys-index (with possibly different @online
922 # field).
923 # Preferably the input list should describe a modified subset of
924 # @guest-get-memory-blocks' return value.
926 # Returns: The operation results, it is a list of @GuestMemoryBlockResponse,
927 #          which is corresponding to the input list.
929 #          Note: it will return NULL if the @mem-blks list was empty on input,
930 #          or there is an error, and in this case, guest state will not be
931 #          changed.
933 # Since: 2.3
935 { 'command': 'guest-set-memory-blocks',
936   'data':    {'mem-blks': ['GuestMemoryBlock'] },
937   'returns': ['GuestMemoryBlockResponse'] }
939 # @GuestMemoryBlockInfo:
941 # @size: the size (in bytes) of the guest memory blocks,
942 #        which are the minimal units of memory block online/offline
943 #        operations (also called Logical Memory Hotplug).
945 # Since: 2.3
947 { 'struct': 'GuestMemoryBlockInfo',
948   'data': {'size': 'uint64'} }
951 # @guest-get-memory-block-info:
953 # Get information relating to guest memory blocks.
955 # Returns: memory block size in bytes.
956 # Returns: @GuestMemoryBlockInfo
958 # Since 2.3
960 { 'command': 'guest-get-memory-block-info',
961   'returns': 'GuestMemoryBlockInfo' }
963 # @GuestExecStatus:
965 # @exited: true if process has already terminated.
966 # @exitcode: #optional process exit code if it was normally terminated.
967 # @signal: #optional signal number (linux) or unhandled exception code
968 #       (windows) if the process was abnormally terminated.
969 # @out-data: #optional base64-encoded stdout of the process
970 # @err-data: #optional base64-encoded stderr of the process
971 #       Note: @out-data and @err-data are present only
972 #       if 'capture-output' was specified for 'guest-exec'
973 # @out-truncated: #optional true if stdout was not fully captured
974 #       due to size limitation.
975 # @err-truncated: #optional true if stderr was not fully captured
976 #       due to size limitation.
978 # Since: 2.5
980 { 'struct': 'GuestExecStatus',
981   'data': { 'exited': 'bool', '*exitcode': 'int', '*signal': 'int',
982             '*out-data': 'str', '*err-data': 'str',
983             '*out-truncated': 'bool', '*err-truncated': 'bool' }}
985 # @guest-exec-status
987 # Check status of process associated with PID retrieved via guest-exec.
988 # Reap the process and associated metadata if it has exited.
990 # @pid: pid returned from guest-exec
992 # Returns: GuestExecStatus on success.
994 # Since 2.5
996 { 'command': 'guest-exec-status',
997   'data':    { 'pid': 'int' },
998   'returns': 'GuestExecStatus' }
1001 # @GuestExec:
1002 # @pid: pid of child process in guest OS
1004 #Since: 2.5
1006 { 'struct': 'GuestExec',
1007   'data': { 'pid': 'int'} }
1010 # @guest-exec:
1012 # Execute a command in the guest
1014 # @path: path or executable name to execute
1015 # @arg: #optional argument list to pass to executable
1016 # @env: #optional environment variables to pass to executable
1017 # @input-data: #optional data to be passed to process stdin (base64 encoded)
1018 # @capture-output: #optional bool flag to enable capture of
1019 #                  stdout/stderr of running process. defaults to false.
1021 # Returns: PID on success.
1023 # Since: 2.5
1025 { 'command': 'guest-exec',
1026   'data':    { 'path': 'str', '*arg': ['str'], '*env': ['str'],
1027                '*input-data': 'str', '*capture-output': 'bool' },
1028   'returns': 'GuestExec' }