ES1370: QOMify
[qemu/ar7.git] / qga / qapi-schema.json
blob01c9ee48d86a35dd4db1c557d6896160d118d910
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 # @guest-file-seek:
319 # Seek to a position in the file, as with fseek(), and return the
320 # current file position afterward. Also encapsulates ftell()'s
321 # functionality, with offset=0 and whence=1.
323 # @handle: filehandle returned by guest-file-open
325 # @offset: bytes to skip over in the file stream
327 # @whence: 0 for SEEK_SET, 1 for SEEK_CUR, or 2 for SEEK_END
329 # Returns: @GuestFileSeek on success.
331 # Since: 0.15.0
333 { 'command': 'guest-file-seek',
334   'data':    { 'handle': 'int', 'offset': 'int', 'whence': 'int' },
335   'returns': 'GuestFileSeek' }
338 # @guest-file-flush:
340 # Write file changes bufferred in userspace to disk/kernel buffers
342 # @handle: filehandle returned by guest-file-open
344 # Returns: Nothing on success.
346 # Since: 0.15.0
348 { 'command': 'guest-file-flush',
349   'data': { 'handle': 'int' } }
352 # @GuestFsFreezeStatus
354 # An enumeration of filesystem freeze states
356 # @thawed: filesystems thawed/unfrozen
358 # @frozen: all non-network guest filesystems frozen
360 # Since: 0.15.0
362 { 'enum': 'GuestFsfreezeStatus',
363   'data': [ 'thawed', 'frozen' ] }
366 # @guest-fsfreeze-status:
368 # Get guest fsfreeze state. error state indicates
370 # Returns: GuestFsfreezeStatus ("thawed", "frozen", etc., as defined below)
372 # Note: This may fail to properly report the current state as a result of
373 # some other guest processes having issued an fs freeze/thaw.
375 # Since: 0.15.0
377 { 'command': 'guest-fsfreeze-status',
378   'returns': 'GuestFsfreezeStatus' }
381 # @guest-fsfreeze-freeze:
383 # Sync and freeze all freezable, local guest filesystems
385 # Returns: Number of file systems currently frozen. On error, all filesystems
386 # will be thawed.
388 # Since: 0.15.0
390 { 'command': 'guest-fsfreeze-freeze',
391   'returns': 'int' }
394 # @guest-fsfreeze-freeze-list:
396 # Sync and freeze specified guest filesystems
398 # @mountpoints: #optional an array of mountpoints of filesystems to be frozen.
399 #               If omitted, every mounted filesystem is frozen.
401 # Returns: Number of file systems currently frozen. On error, all filesystems
402 # will be thawed.
404 # Since: 2.2
406 { 'command': 'guest-fsfreeze-freeze-list',
407   'data':    { '*mountpoints': ['str'] },
408   'returns': 'int' }
411 # @guest-fsfreeze-thaw:
413 # Unfreeze all frozen guest filesystems
415 # Returns: Number of file systems thawed by this call
417 # Note: if return value does not match the previous call to
418 #       guest-fsfreeze-freeze, this likely means some freezable
419 #       filesystems were unfrozen before this call, and that the
420 #       filesystem state may have changed before issuing this
421 #       command.
423 # Since: 0.15.0
425 { 'command': 'guest-fsfreeze-thaw',
426   'returns': 'int' }
429 # @GuestFilesystemTrimResult
431 # @path: path that was trimmed
432 # @error: an error message when trim failed
433 # @trimmed: bytes trimmed for this path
434 # @minimum: reported effective minimum for this path
436 # Since: 2.4
438 { 'struct': 'GuestFilesystemTrimResult',
439   'data': {'path': 'str',
440            '*trimmed': 'int', '*minimum': 'int', '*error': 'str'} }
443 # @GuestFilesystemTrimResponse
445 # @paths: list of @GuestFilesystemTrimResult per path that was trimmed
447 # Since: 2.4
449 { 'struct': 'GuestFilesystemTrimResponse',
450   'data': {'paths': ['GuestFilesystemTrimResult']} }
453 # @guest-fstrim:
455 # Discard (or "trim") blocks which are not in use by the filesystem.
457 # @minimum:
458 #       Minimum contiguous free range to discard, in bytes. Free ranges
459 #       smaller than this may be ignored (this is a hint and the guest
460 #       may not respect it).  By increasing this value, the fstrim
461 #       operation will complete more quickly for filesystems with badly
462 #       fragmented free space, although not all blocks will be discarded.
463 #       The default value is zero, meaning "discard every free block".
465 # Returns: A @GuestFilesystemTrimResponse which contains the
466 #          status of all trimmed paths. (since 2.4)
468 # Since: 1.2
470 { 'command': 'guest-fstrim',
471   'data': { '*minimum': 'int' },
472   'returns': 'GuestFilesystemTrimResponse' }
475 # @guest-suspend-disk
477 # Suspend guest to disk.
479 # This command tries to execute the scripts provided by the pm-utils package.
480 # If it's not available, the suspend operation will be performed by manually
481 # writing to a sysfs file.
483 # For the best results it's strongly recommended to have the pm-utils
484 # package installed in the guest.
486 # This command does NOT return a response on success. There is a high chance
487 # the command succeeded if the VM exits with a zero exit status or, when
488 # running with --no-shutdown, by issuing the query-status QMP command to
489 # to confirm the VM status is "shutdown". However, the VM could also exit
490 # (or set its status to "shutdown") due to other reasons.
492 # The following errors may be returned:
493 #          If suspend to disk is not supported, Unsupported
495 # Notes: It's strongly recommended to issue the guest-sync command before
496 #        sending commands when the guest resumes
498 # Since: 1.1
500 { 'command': 'guest-suspend-disk', 'success-response': false }
503 # @guest-suspend-ram
505 # Suspend guest to ram.
507 # This command tries to execute the scripts provided by the pm-utils package.
508 # If it's not available, the suspend operation will be performed by manually
509 # writing to a sysfs file.
511 # For the best results it's strongly recommended to have the pm-utils
512 # package installed in the guest.
514 # IMPORTANT: guest-suspend-ram requires QEMU to support the 'system_wakeup'
515 # command.  Thus, it's *required* to query QEMU for the presence of the
516 # 'system_wakeup' command before issuing guest-suspend-ram.
518 # This command does NOT return a response on success. There are two options
519 # to check for success:
520 #   1. Wait for the SUSPEND QMP event from QEMU
521 #   2. Issue the query-status QMP command to confirm the VM status is
522 #      "suspended"
524 # The following errors may be returned:
525 #          If suspend to ram is not supported, Unsupported
527 # Notes: It's strongly recommended to issue the guest-sync command before
528 #        sending commands when the guest resumes
530 # Since: 1.1
532 { 'command': 'guest-suspend-ram', 'success-response': false }
535 # @guest-suspend-hybrid
537 # Save guest state to disk and suspend to ram.
539 # This command requires the pm-utils package to be installed in the guest.
541 # IMPORTANT: guest-suspend-hybrid requires QEMU to support the 'system_wakeup'
542 # command.  Thus, it's *required* to query QEMU for the presence of the
543 # 'system_wakeup' command before issuing guest-suspend-hybrid.
545 # This command does NOT return a response on success. There are two options
546 # to check for success:
547 #   1. Wait for the SUSPEND QMP event from QEMU
548 #   2. Issue the query-status QMP command to confirm the VM status is
549 #      "suspended"
551 # The following errors may be returned:
552 #          If hybrid suspend is not supported, Unsupported
554 # Notes: It's strongly recommended to issue the guest-sync command before
555 #        sending commands when the guest resumes
557 # Since: 1.1
559 { 'command': 'guest-suspend-hybrid', 'success-response': false }
562 # @GuestIpAddressType:
564 # An enumeration of supported IP address types
566 # @ipv4: IP version 4
568 # @ipv6: IP version 6
570 # Since: 1.1
572 { 'enum': 'GuestIpAddressType',
573   'data': [ 'ipv4', 'ipv6' ] }
576 # @GuestIpAddress:
578 # @ip-address: IP address
580 # @ip-address-type: Type of @ip-address (e.g. ipv4, ipv6)
582 # @prefix: Network prefix length of @ip-address
584 # Since: 1.1
586 { 'struct': 'GuestIpAddress',
587   'data': {'ip-address': 'str',
588            'ip-address-type': 'GuestIpAddressType',
589            'prefix': 'int'} }
592 # @GuestNetworkInterface:
594 # @name: The name of interface for which info are being delivered
596 # @hardware-address: Hardware address of @name
598 # @ip-addresses: List of addresses assigned to @name
600 # Since: 1.1
602 { 'struct': 'GuestNetworkInterface',
603   'data': {'name': 'str',
604            '*hardware-address': 'str',
605            '*ip-addresses': ['GuestIpAddress'] } }
608 # @guest-network-get-interfaces:
610 # Get list of guest IP addresses, MAC addresses
611 # and netmasks.
613 # Returns: List of GuestNetworkInfo on success.
615 # Since: 1.1
617 { 'command': 'guest-network-get-interfaces',
618   'returns': ['GuestNetworkInterface'] }
621 # @GuestLogicalProcessor:
623 # @logical-id: Arbitrary guest-specific unique identifier of the VCPU.
625 # @online: Whether the VCPU is enabled.
627 # @can-offline: #optional Whether offlining the VCPU is possible. This member
628 #               is always filled in by the guest agent when the structure is
629 #               returned, and always ignored on input (hence it can be omitted
630 #               then).
632 # Since: 1.5
634 { 'struct': 'GuestLogicalProcessor',
635   'data': {'logical-id': 'int',
636            'online': 'bool',
637            '*can-offline': 'bool'} }
640 # @guest-get-vcpus:
642 # Retrieve the list of the guest's logical processors.
644 # This is a read-only operation.
646 # Returns: The list of all VCPUs the guest knows about. Each VCPU is put on the
647 # list exactly once, but their order is unspecified.
649 # Since: 1.5
651 { 'command': 'guest-get-vcpus',
652   'returns': ['GuestLogicalProcessor'] }
655 # @guest-set-vcpus:
657 # Attempt to reconfigure (currently: enable/disable) logical processors inside
658 # the guest.
660 # The input list is processed node by node in order. In each node @logical-id
661 # is used to look up the guest VCPU, for which @online specifies the requested
662 # state. The set of distinct @logical-id's is only required to be a subset of
663 # the guest-supported identifiers. There's no restriction on list length or on
664 # repeating the same @logical-id (with possibly different @online field).
665 # Preferably the input list should describe a modified subset of
666 # @guest-get-vcpus' return value.
668 # Returns: The length of the initial sublist that has been successfully
669 #          processed. The guest agent maximizes this value. Possible cases:
671 #          0:                if the @vcpus list was empty on input. Guest state
672 #                            has not been changed. Otherwise,
674 #          Error:            processing the first node of @vcpus failed for the
675 #                            reason returned. Guest state has not been changed.
676 #                            Otherwise,
678 #          < length(@vcpus): more than zero initial nodes have been processed,
679 #                            but not the entire @vcpus list. Guest state has
680 #                            changed accordingly. To retrieve the error
681 #                            (assuming it persists), repeat the call with the
682 #                            successfully processed initial sublist removed.
683 #                            Otherwise,
685 #          length(@vcpus):   call successful.
687 # Since: 1.5
689 { 'command': 'guest-set-vcpus',
690   'data':    {'vcpus': ['GuestLogicalProcessor'] },
691   'returns': 'int' }
694 # @GuestDiskBusType
696 # An enumeration of bus type of disks
698 # @ide: IDE disks
699 # @fdc: floppy disks
700 # @scsi: SCSI disks
701 # @virtio: virtio disks
702 # @xen: Xen disks
703 # @usb: USB disks
704 # @uml: UML disks
705 # @sata: SATA disks
706 # @sd: SD cards
707 # @unknown: Unknown bus type
708 # @ieee1394: Win IEEE 1394 bus type
709 # @ssa: Win SSA bus type
710 # @fibre: Win fiber channel bus type
711 # @raid: Win RAID bus type
712 # @iscsi: Win iScsi bus type
713 # @sas: Win serial-attaches SCSI bus type
714 # @mmc: Win multimedia card (MMC) bus type
715 # @virtual: Win virtual bus type
716 # @file-backed virtual: Win file-backed bus type
718 # Since: 2.2; 'Unknown' and all entries below since 2.4
720 { 'enum': 'GuestDiskBusType',
721   'data': [ 'ide', 'fdc', 'scsi', 'virtio', 'xen', 'usb', 'uml', 'sata',
722             'sd', 'unknown', 'ieee1394', 'ssa', 'fibre', 'raid', 'iscsi',
723             'sas', 'mmc', 'virtual', 'file-backed-virtual' ] }
727 # @GuestPCIAddress:
729 # @domain: domain id
730 # @bus: bus id
731 # @slot: slot id
732 # @function: function id
734 # Since: 2.2
736 { 'struct': 'GuestPCIAddress',
737   'data': {'domain': 'int', 'bus': 'int',
738            'slot': 'int', 'function': 'int'} }
741 # @GuestDiskAddress:
743 # @pci-controller: controller's PCI address
744 # @type: bus type
745 # @bus: bus id
746 # @target: target id
747 # @unit: unit id
749 # Since: 2.2
751 { 'struct': 'GuestDiskAddress',
752   'data': {'pci-controller': 'GuestPCIAddress',
753            'bus-type': 'GuestDiskBusType',
754            'bus': 'int', 'target': 'int', 'unit': 'int'} }
757 # @GuestFilesystemInfo
759 # @name: disk name
760 # @mountpoint: mount point path
761 # @type: file system type string
762 # @disk: an array of disk hardware information that the volume lies on,
763 #        which may be empty if the disk type is not supported
765 # Since: 2.2
767 { 'struct': 'GuestFilesystemInfo',
768   'data': {'name': 'str', 'mountpoint': 'str', 'type': 'str',
769            'disk': ['GuestDiskAddress']} }
772 # @guest-get-fsinfo:
774 # Returns: The list of filesystems information mounted in the guest.
775 #          The returned mountpoints may be specified to
776 #          @guest-fsfreeze-freeze-list.
777 #          Network filesystems (such as CIFS and NFS) are not listed.
779 # Since: 2.2
781 { 'command': 'guest-get-fsinfo',
782   'returns': ['GuestFilesystemInfo'] }
785 # @guest-set-user-password
787 # @username: the user account whose password to change
788 # @password: the new password entry string, base64 encoded
789 # @crypted: true if password is already crypt()d, false if raw
791 # If the @crypted flag is true, it is the caller's responsibility
792 # to ensure the correct crypt() encryption scheme is used. This
793 # command does not attempt to interpret or report on the encryption
794 # scheme. Refer to the documentation of the guest operating system
795 # in question to determine what is supported.
797 # Not all guest operating systems will support use of the
798 # @crypted flag, as they may require the clear-text password
800 # The @password parameter must always be base64 encoded before
801 # transmission, even if already crypt()d, to ensure it is 8-bit
802 # safe when passed as JSON.
804 # Returns: Nothing on success.
806 # Since 2.3
808 { 'command': 'guest-set-user-password',
809   'data': { 'username': 'str', 'password': 'str', 'crypted': 'bool' } }
811 # @GuestMemoryBlock:
813 # @phys-index: Arbitrary guest-specific unique identifier of the MEMORY BLOCK.
815 # @online: Whether the MEMORY BLOCK is enabled in guest.
817 # @can-offline: #optional Whether offlining the MEMORY BLOCK is possible.
818 #               This member is always filled in by the guest agent when the
819 #               structure is returned, and always ignored on input (hence it
820 #               can be omitted then).
822 # Since: 2.3
824 { 'struct': 'GuestMemoryBlock',
825   'data': {'phys-index': 'uint64',
826            'online': 'bool',
827            '*can-offline': 'bool'} }
830 # @guest-get-memory-blocks:
832 # Retrieve the list of the guest's memory blocks.
834 # This is a read-only operation.
836 # Returns: The list of all memory blocks the guest knows about.
837 # Each memory block is put on the list exactly once, but their order
838 # is unspecified.
840 # Since: 2.3
842 { 'command': 'guest-get-memory-blocks',
843   'returns': ['GuestMemoryBlock'] }
846 # @GuestMemoryBlockResponseType
848 # An enumeration of memory block operation result.
850 # @success: the operation of online/offline memory block is successful.
851 # @not-found: can't find the corresponding memoryXXX directory in sysfs.
852 # @operation-not-supported: for some old kernels, it does not support
853 #                           online or offline memory block.
854 # @operation-failed: the operation of online/offline memory block fails,
855 #                    because of some errors happen.
857 # Since: 2.3
859 { 'enum': 'GuestMemoryBlockResponseType',
860   'data': ['success', 'not-found', 'operation-not-supported',
861            'operation-failed'] }
864 # @GuestMemoryBlockResponse:
866 # @phys-index: same with the 'phys-index' member of @GuestMemoryBlock.
868 # @response: the result of memory block operation.
870 # @error-code: #optional the error number.
871 #               When memory block operation fails, we assign the value of
872 #               'errno' to this member, it indicates what goes wrong.
873 #               When the operation succeeds, it will be omitted.
875 # Since: 2.3
877 { 'struct': 'GuestMemoryBlockResponse',
878   'data': { 'phys-index': 'uint64',
879             'response': 'GuestMemoryBlockResponseType',
880             '*error-code': 'int' }}
883 # @guest-set-memory-blocks:
885 # Attempt to reconfigure (currently: enable/disable) state of memory blocks
886 # inside the guest.
888 # The input list is processed node by node in order. In each node @phys-index
889 # is used to look up the guest MEMORY BLOCK, for which @online specifies the
890 # requested state. The set of distinct @phys-index's is only required to be a
891 # subset of the guest-supported identifiers. There's no restriction on list
892 # length or on repeating the same @phys-index (with possibly different @online
893 # field).
894 # Preferably the input list should describe a modified subset of
895 # @guest-get-memory-blocks' return value.
897 # Returns: The operation results, it is a list of @GuestMemoryBlockResponse,
898 #          which is corresponding to the input list.
900 #          Note: it will return NULL if the @mem-blks list was empty on input,
901 #          or there is an error, and in this case, guest state will not be
902 #          changed.
904 # Since: 2.3
906 { 'command': 'guest-set-memory-blocks',
907   'data':    {'mem-blks': ['GuestMemoryBlock'] },
908   'returns': ['GuestMemoryBlockResponse'] }
910 # @GuestMemoryBlockInfo:
912 # @size: the size (in bytes) of the guest memory blocks,
913 #        which are the minimal units of memory block online/offline
914 #        operations (also called Logical Memory Hotplug).
916 # Since: 2.3
918 { 'struct': 'GuestMemoryBlockInfo',
919   'data': {'size': 'uint64'} }
922 # @guest-get-memory-block-info:
924 # Get information relating to guest memory blocks.
926 # Returns: memory block size in bytes.
927 # Returns: @GuestMemoryBlockInfo
929 # Since 2.3
931 { 'command': 'guest-get-memory-block-info',
932   'returns': 'GuestMemoryBlockInfo' }
934 # @GuestExecStatus:
936 # @exited: true if process has already terminated.
937 # @exitcode: #optional process exit code if it was normally terminated.
938 # @signal: #optional signal number (linux) or unhandled exception code
939 #       (windows) if the process was abnormally terminated.
940 # @out-data: #optional base64-encoded stdout of the process
941 # @err-data: #optional base64-encoded stderr of the process
942 #       Note: @out-data and @err-data are present only
943 #       if 'capture-output' was specified for 'guest-exec'
944 # @out-truncated: #optional true if stdout was not fully captured
945 #       due to size limitation.
946 # @err-truncated: #optional true if stderr was not fully captured
947 #       due to size limitation.
949 # Since: 2.5
951 { 'struct': 'GuestExecStatus',
952   'data': { 'exited': 'bool', '*exitcode': 'int', '*signal': 'int',
953             '*out-data': 'str', '*err-data': 'str',
954             '*out-truncated': 'bool', '*err-truncated': 'bool' }}
956 # @guest-exec-status
958 # Check status of process associated with PID retrieved via guest-exec.
959 # Reap the process and associated metadata if it has exited.
961 # @pid: pid returned from guest-exec
963 # Returns: GuestExecStatus on success.
965 # Since 2.5
967 { 'command': 'guest-exec-status',
968   'data':    { 'pid': 'int' },
969   'returns': 'GuestExecStatus' }
972 # @GuestExec:
973 # @pid: pid of child process in guest OS
975 #Since: 2.5
977 { 'struct': 'GuestExec',
978   'data': { 'pid': 'int'} }
981 # @guest-exec:
983 # Execute a command in the guest
985 # @path: path or executable name to execute
986 # @arg: #optional argument list to pass to executable
987 # @env: #optional environment variables to pass to executable
988 # @input-data: #optional data to be passed to process stdin (base64 encoded)
989 # @capture-output: #optional bool flag to enable capture of
990 #                  stdout/stderr of running process. defaults to false.
992 # Returns: PID on success.
994 # Since: 2.5
996 { 'command': 'guest-exec',
997   'data':    { 'path': 'str', '*arg': ['str'], '*env': ['str'],
998                '*input-data': 'str', '*capture-output': 'bool' },
999   'returns': 'GuestExec' }