]> Git Repo - qemu.git/blob - qapi-schema.json
block: introduce block job error
[qemu.git] / qapi-schema.json
1 # -*- Mode: Python -*-
2 #
3 # QAPI Schema
4
5 ##
6 # @ErrorClass
7 #
8 # QEMU error classes
9 #
10 # @GenericError: this is used for errors that don't require a specific error
11 #                class. This should be the default case for most errors
12 #
13 # @CommandNotFound: the requested command has not been found
14 #
15 # @DeviceEncrypted: the requested operation can't be fulfilled because the
16 #                   selected device is encrypted
17 #
18 # @DeviceNotActive: a device has failed to be become active
19 #
20 # @DeviceNotFound: the requested device has not been found
21 #
22 # @KVMMissingCap: the requested operation can't be fulfilled because a
23 #                 required KVM capability is missing
24 #
25 # @MigrationExpected: the requested operation can't be fulfilled because a
26 #                     migration process is expected
27 #
28 # Since: 1.2
29 ##
30 { 'enum': 'ErrorClass',
31   'data': [ 'GenericError', 'CommandNotFound', 'DeviceEncrypted',
32             'DeviceNotActive', 'DeviceNotFound', 'KVMMissingCap',
33             'MigrationExpected' ] }
34
35 ##
36 # @NameInfo:
37 #
38 # Guest name information.
39 #
40 # @name: #optional The name of the guest
41 #
42 # Since 0.14.0
43 ##
44 { 'type': 'NameInfo', 'data': {'*name': 'str'} }
45
46 ##
47 # @query-name:
48 #
49 # Return the name information of a guest.
50 #
51 # Returns: @NameInfo of the guest
52 #
53 # Since 0.14.0
54 ##
55 { 'command': 'query-name', 'returns': 'NameInfo' }
56
57 ##
58 # @VersionInfo:
59 #
60 # A description of QEMU's version.
61 #
62 # @qemu.major:  The major version of QEMU
63 #
64 # @qemu.minor:  The minor version of QEMU
65 #
66 # @qemu.micro:  The micro version of QEMU.  By current convention, a micro
67 #               version of 50 signifies a development branch.  A micro version
68 #               greater than or equal to 90 signifies a release candidate for
69 #               the next minor version.  A micro version of less than 50
70 #               signifies a stable release.
71 #
72 # @package:     QEMU will always set this field to an empty string.  Downstream
73 #               versions of QEMU should set this to a non-empty string.  The
74 #               exact format depends on the downstream however it highly
75 #               recommended that a unique name is used.
76 #
77 # Since: 0.14.0
78 ##
79 { 'type': 'VersionInfo',
80   'data': {'qemu': {'major': 'int', 'minor': 'int', 'micro': 'int'},
81            'package': 'str'} }
82
83 ##
84 # @query-version:
85 #
86 # Returns the current version of QEMU.
87 #
88 # Returns:  A @VersionInfo object describing the current version of QEMU.
89 #
90 # Since: 0.14.0
91 ##
92 { 'command': 'query-version', 'returns': 'VersionInfo' }
93
94 ##
95 # @KvmInfo:
96 #
97 # Information about support for KVM acceleration
98 #
99 # @enabled: true if KVM acceleration is active
100 #
101 # @present: true if KVM acceleration is built into this executable
102 #
103 # Since: 0.14.0
104 ##
105 { 'type': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} }
106
107 ##
108 # @query-kvm:
109 #
110 # Returns information about KVM acceleration
111 #
112 # Returns: @KvmInfo
113 #
114 # Since: 0.14.0
115 ##
116 { 'command': 'query-kvm', 'returns': 'KvmInfo' }
117
118 ##
119 # @RunState
120 #
121 # An enumeration of VM run states.
122 #
123 # @debug: QEMU is running on a debugger
124 #
125 # @finish-migrate: guest is paused to finish the migration process
126 #
127 # @inmigrate: guest is paused waiting for an incoming migration
128 #
129 # @internal-error: An internal error that prevents further guest execution
130 # has occurred
131 #
132 # @io-error: the last IOP has failed and the device is configured to pause
133 # on I/O errors
134 #
135 # @paused: guest has been paused via the 'stop' command
136 #
137 # @postmigrate: guest is paused following a successful 'migrate'
138 #
139 # @prelaunch: QEMU was started with -S and guest has not started
140 #
141 # @restore-vm: guest is paused to restore VM state
142 #
143 # @running: guest is actively running
144 #
145 # @save-vm: guest is paused to save the VM state
146 #
147 # @shutdown: guest is shut down (and -no-shutdown is in use)
148 #
149 # @suspended: guest is suspended (ACPI S3)
150 #
151 # @watchdog: the watchdog action is configured to pause and has been triggered
152 ##
153 { 'enum': 'RunState',
154   'data': [ 'debug', 'inmigrate', 'internal-error', 'io-error', 'paused',
155             'postmigrate', 'prelaunch', 'finish-migrate', 'restore-vm',
156             'running', 'save-vm', 'shutdown', 'suspended', 'watchdog' ] }
157
158 ##
159 # @SnapshotInfo
160 #
161 # @id: unique snapshot id
162 #
163 # @name: user chosen name
164 #
165 # @vm-state-size: size of the VM state
166 #
167 # @date-sec: UTC date of the snapshot in seconds
168 #
169 # @date-nsec: fractional part in nano seconds to be used with date-sec
170 #
171 # @vm-clock-sec: VM clock relative to boot in seconds
172 #
173 # @vm-clock-nsec: fractional part in nano seconds to be used with vm-clock-sec
174 #
175 # Since: 1.3
176 #
177 ##
178
179 { 'type': 'SnapshotInfo',
180   'data': { 'id': 'str', 'name': 'str', 'vm-state-size': 'int',
181             'date-sec': 'int', 'date-nsec': 'int',
182             'vm-clock-sec': 'int', 'vm-clock-nsec': 'int' } }
183
184 ##
185 # @ImageInfo:
186 #
187 # Information about a QEMU image file
188 #
189 # @filename: name of the image file
190 #
191 # @format: format of the image file
192 #
193 # @virtual-size: maximum capacity in bytes of the image
194 #
195 # @actual-size: #optional actual size on disk in bytes of the image
196 #
197 # @dirty-flag: #optional true if image is not cleanly closed
198 #
199 # @cluster-size: #optional size of a cluster in bytes
200 #
201 # @encrypted: #optional true if the image is encrypted
202 #
203 # @backing-filename: #optional name of the backing file
204 #
205 # @full-backing-filename: #optional full path of the backing file
206 #
207 # @backing-filename-format: #optional the format of the backing file
208 #
209 # @snapshots: #optional list of VM snapshots
210 #
211 # Since: 1.3
212 #
213 ##
214
215 { 'type': 'ImageInfo',
216   'data': {'filename': 'str', 'format': 'str', '*dirty-flag': 'bool',
217            '*actual-size': 'int', 'virtual-size': 'int',
218            '*cluster-size': 'int', '*encrypted': 'bool',
219            '*backing-filename': 'str', '*full-backing-filename': 'str',
220            '*backing-filename-format': 'str', '*snapshots': ['SnapshotInfo'] } }
221
222 ##
223 # @StatusInfo:
224 #
225 # Information about VCPU run state
226 #
227 # @running: true if all VCPUs are runnable, false if not runnable
228 #
229 # @singlestep: true if VCPUs are in single-step mode
230 #
231 # @status: the virtual machine @RunState
232 #
233 # Since:  0.14.0
234 #
235 # Notes: @singlestep is enabled through the GDB stub
236 ##
237 { 'type': 'StatusInfo',
238   'data': {'running': 'bool', 'singlestep': 'bool', 'status': 'RunState'} }
239
240 ##
241 # @query-status:
242 #
243 # Query the run status of all VCPUs
244 #
245 # Returns: @StatusInfo reflecting all VCPUs
246 #
247 # Since:  0.14.0
248 ##
249 { 'command': 'query-status', 'returns': 'StatusInfo' }
250
251 ##
252 # @UuidInfo:
253 #
254 # Guest UUID information.
255 #
256 # @UUID: the UUID of the guest
257 #
258 # Since: 0.14.0
259 #
260 # Notes: If no UUID was specified for the guest, a null UUID is returned.
261 ##
262 { 'type': 'UuidInfo', 'data': {'UUID': 'str'} }
263
264 ##
265 # @query-uuid:
266 #
267 # Query the guest UUID information.
268 #
269 # Returns: The @UuidInfo for the guest
270 #
271 # Since 0.14.0
272 ##
273 { 'command': 'query-uuid', 'returns': 'UuidInfo' }
274
275 ##
276 # @ChardevInfo:
277 #
278 # Information about a character device.
279 #
280 # @label: the label of the character device
281 #
282 # @filename: the filename of the character device
283 #
284 # Notes: @filename is encoded using the QEMU command line character device
285 #        encoding.  See the QEMU man page for details.
286 #
287 # Since: 0.14.0
288 ##
289 { 'type': 'ChardevInfo', 'data': {'label': 'str', 'filename': 'str'} }
290
291 ##
292 # @query-chardev:
293 #
294 # Returns information about current character devices.
295 #
296 # Returns: a list of @ChardevInfo
297 #
298 # Since: 0.14.0
299 ##
300 { 'command': 'query-chardev', 'returns': ['ChardevInfo'] }
301
302 ##
303 # @CommandInfo:
304 #
305 # Information about a QMP command
306 #
307 # @name: The command name
308 #
309 # Since: 0.14.0
310 ##
311 { 'type': 'CommandInfo', 'data': {'name': 'str'} }
312
313 ##
314 # @query-commands:
315 #
316 # Return a list of supported QMP commands by this server
317 #
318 # Returns: A list of @CommandInfo for all supported commands
319 #
320 # Since: 0.14.0
321 ##
322 { 'command': 'query-commands', 'returns': ['CommandInfo'] }
323
324 ##
325 # @EventInfo:
326 #
327 # Information about a QMP event
328 #
329 # @name: The event name
330 #
331 # Since: 1.2.0
332 ##
333 { 'type': 'EventInfo', 'data': {'name': 'str'} }
334
335 ##
336 # @query-events:
337 #
338 # Return a list of supported QMP events by this server
339 #
340 # Returns: A list of @EventInfo for all supported events
341 #
342 # Since: 1.2.0
343 ##
344 { 'command': 'query-events', 'returns': ['EventInfo'] }
345
346 ##
347 # @MigrationStats
348 #
349 # Detailed migration status.
350 #
351 # @transferred: amount of bytes already transferred to the target VM
352 #
353 # @remaining: amount of bytes remaining to be transferred to the target VM
354 #
355 # @total: total amount of bytes involved in the migration process
356 #
357 # @duplicate: number of duplicate pages (since 1.2)
358 #
359 # @normal : number of normal pages (since 1.2)
360 #
361 # @normal-bytes : number of normal bytes sent (since 1.2)
362 #
363 # Since: 0.14.0
364 ##
365 { 'type': 'MigrationStats',
366   'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' ,
367            'duplicate': 'int', 'normal': 'int', 'normal-bytes': 'int' } }
368
369 ##
370 # @XBZRLECacheStats
371 #
372 # Detailed XBZRLE migration cache statistics
373 #
374 # @cache-size: XBZRLE cache size
375 #
376 # @bytes: amount of bytes already transferred to the target VM
377 #
378 # @pages: amount of pages transferred to the target VM
379 #
380 # @cache-miss: number of cache miss
381 #
382 # @overflow: number of overflows
383 #
384 # Since: 1.2
385 ##
386 { 'type': 'XBZRLECacheStats',
387   'data': {'cache-size': 'int', 'bytes': 'int', 'pages': 'int',
388            'cache-miss': 'int', 'overflow': 'int' } }
389
390 ##
391 # @MigrationInfo
392 #
393 # Information about current migration process.
394 #
395 # @status: #optional string describing the current migration status.
396 #          As of 0.14.0 this can be 'active', 'completed', 'failed' or
397 #          'cancelled'. If this field is not returned, no migration process
398 #          has been initiated
399 #
400 # @ram: #optional @MigrationStats containing detailed migration
401 #       status, only returned if status is 'active' or
402 #       'completed'. 'comppleted' (since 1.2)
403 #
404 # @disk: #optional @MigrationStats containing detailed disk migration
405 #        status, only returned if status is 'active' and it is a block
406 #        migration
407 #
408 # @xbzrle-cache: #optional @XBZRLECacheStats containing detailed XBZRLE
409 #                migration statistics, only returned if XBZRLE feature is on and
410 #                status is 'active' or 'completed' (since 1.2)
411 #
412 # @total-time: #optional total amount of milliseconds since migration started.
413 #        If migration has ended, it returns the total migration
414 #        time. (since 1.2)
415 #
416 # Since: 0.14.0
417 ##
418 { 'type': 'MigrationInfo',
419   'data': {'*status': 'str', '*ram': 'MigrationStats',
420            '*disk': 'MigrationStats',
421            '*xbzrle-cache': 'XBZRLECacheStats',
422            '*total-time': 'int'} }
423
424 ##
425 # @query-migrate
426 #
427 # Returns information about current migration process.
428 #
429 # Returns: @MigrationInfo
430 #
431 # Since: 0.14.0
432 ##
433 { 'command': 'query-migrate', 'returns': 'MigrationInfo' }
434
435 ##
436 # @MigrationCapability
437 #
438 # Migration capabilities enumeration
439 #
440 # @xbzrle: Migration supports xbzrle (Xor Based Zero Run Length Encoding).
441 #          This feature allows us to minimize migration traffic for certain work
442 #          loads, by sending compressed difference of the pages
443 #
444 # Since: 1.2
445 ##
446 { 'enum': 'MigrationCapability',
447   'data': ['xbzrle'] }
448
449 ##
450 # @MigrationCapabilityStatus
451 #
452 # Migration capability information
453 #
454 # @capability: capability enum
455 #
456 # @state: capability state bool
457 #
458 # Since: 1.2
459 ##
460 { 'type': 'MigrationCapabilityStatus',
461   'data': { 'capability' : 'MigrationCapability', 'state' : 'bool' } }
462
463 ##
464 # @migrate-set-capabilities
465 #
466 # Enable/Disable the following migration capabilities (like xbzrle)
467 #
468 # @capabilities: json array of capability modifications to make
469 #
470 # Since: 1.2
471 ##
472 { 'command': 'migrate-set-capabilities',
473   'data': { 'capabilities': ['MigrationCapabilityStatus'] } }
474
475 ##
476 # @query-migrate-capabilities
477 #
478 # Returns information about the current migration capabilities status
479 #
480 # Returns: @MigrationCapabilitiesStatus
481 #
482 # Since: 1.2
483 ##
484 { 'command': 'query-migrate-capabilities', 'returns':   ['MigrationCapabilityStatus']}
485
486 ##
487 # @MouseInfo:
488 #
489 # Information about a mouse device.
490 #
491 # @name: the name of the mouse device
492 #
493 # @index: the index of the mouse device
494 #
495 # @current: true if this device is currently receiving mouse events
496 #
497 # @absolute: true if this device supports absolute coordinates as input
498 #
499 # Since: 0.14.0
500 ##
501 { 'type': 'MouseInfo',
502   'data': {'name': 'str', 'index': 'int', 'current': 'bool',
503            'absolute': 'bool'} }
504
505 ##
506 # @query-mice:
507 #
508 # Returns information about each active mouse device
509 #
510 # Returns: a list of @MouseInfo for each device
511 #
512 # Since: 0.14.0
513 ##
514 { 'command': 'query-mice', 'returns': ['MouseInfo'] }
515
516 ##
517 # @CpuInfo:
518 #
519 # Information about a virtual CPU
520 #
521 # @CPU: the index of the virtual CPU
522 #
523 # @current: this only exists for backwards compatible and should be ignored
524 #
525 # @halted: true if the virtual CPU is in the halt state.  Halt usually refers
526 #          to a processor specific low power mode.
527 #
528 # @pc: #optional If the target is i386 or x86_64, this is the 64-bit instruction
529 #                pointer.
530 #                If the target is Sparc, this is the PC component of the
531 #                instruction pointer.
532 #
533 # @nip: #optional If the target is PPC, the instruction pointer
534 #
535 # @npc: #optional If the target is Sparc, the NPC component of the instruction
536 #                 pointer
537 #
538 # @PC: #optional If the target is MIPS, the instruction pointer
539 #
540 # @thread_id: ID of the underlying host thread
541 #
542 # Since: 0.14.0
543 #
544 # Notes: @halted is a transient state that changes frequently.  By the time the
545 #        data is sent to the client, the guest may no longer be halted.
546 ##
547 { 'type': 'CpuInfo',
548   'data': {'CPU': 'int', 'current': 'bool', 'halted': 'bool', '*pc': 'int',
549            '*nip': 'int', '*npc': 'int', '*PC': 'int', 'thread_id': 'int'} }
550
551 ##
552 # @query-cpus:
553 #
554 # Returns a list of information about each virtual CPU.
555 #
556 # Returns: a list of @CpuInfo for each virtual CPU
557 #
558 # Since: 0.14.0
559 ##
560 { 'command': 'query-cpus', 'returns': ['CpuInfo'] }
561
562 ##
563 # @BlockDeviceInfo:
564 #
565 # Information about the backing device for a block device.
566 #
567 # @file: the filename of the backing device
568 #
569 # @ro: true if the backing device was open read-only
570 #
571 # @drv: the name of the block format used to open the backing device. As of
572 #       0.14.0 this can be: 'blkdebug', 'bochs', 'cloop', 'cow', 'dmg',
573 #       'file', 'file', 'ftp', 'ftps', 'host_cdrom', 'host_device',
574 #       'host_floppy', 'http', 'https', 'nbd', 'parallels', 'qcow',
575 #       'qcow2', 'raw', 'tftp', 'vdi', 'vmdk', 'vpc', 'vvfat'
576 #
577 # @backing_file: #optional the name of the backing file (for copy-on-write)
578 #
579 # @backing_file_depth: number of files in the backing file chain (since: 1.2)
580 #
581 # @encrypted: true if the backing device is encrypted
582 #
583 # @encryption_key_missing: true if the backing device is encrypted but an
584 #                          valid encryption key is missing
585 #
586 # @bps: total throughput limit in bytes per second is specified
587 #
588 # @bps_rd: read throughput limit in bytes per second is specified
589 #
590 # @bps_wr: write throughput limit in bytes per second is specified
591 #
592 # @iops: total I/O operations per second is specified
593 #
594 # @iops_rd: read I/O operations per second is specified
595 #
596 # @iops_wr: write I/O operations per second is specified
597 #
598 # Since: 0.14.0
599 #
600 # Notes: This interface is only found in @BlockInfo.
601 ##
602 { 'type': 'BlockDeviceInfo',
603   'data': { 'file': 'str', 'ro': 'bool', 'drv': 'str',
604             '*backing_file': 'str', 'backing_file_depth': 'int',
605             'encrypted': 'bool', 'encryption_key_missing': 'bool',
606             'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
607             'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int'} }
608
609 ##
610 # @BlockDeviceIoStatus:
611 #
612 # An enumeration of block device I/O status.
613 #
614 # @ok: The last I/O operation has succeeded
615 #
616 # @failed: The last I/O operation has failed
617 #
618 # @nospace: The last I/O operation has failed due to a no-space condition
619 #
620 # Since: 1.0
621 ##
622 { 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
623
624 ##
625 # @BlockInfo:
626 #
627 # Block device information.  This structure describes a virtual device and
628 # the backing device associated with it.
629 #
630 # @device: The device name associated with the virtual device.
631 #
632 # @type: This field is returned only for compatibility reasons, it should
633 #        not be used (always returns 'unknown')
634 #
635 # @removable: True if the device supports removable media.
636 #
637 # @locked: True if the guest has locked this device from having its media
638 #          removed
639 #
640 # @tray_open: #optional True if the device has a tray and it is open
641 #             (only present if removable is true)
642 #
643 # @io-status: #optional @BlockDeviceIoStatus. Only present if the device
644 #             supports it and the VM is configured to stop on errors
645 #
646 # @inserted: #optional @BlockDeviceInfo describing the device if media is
647 #            present
648 #
649 # Since:  0.14.0
650 ##
651 { 'type': 'BlockInfo',
652   'data': {'device': 'str', 'type': 'str', 'removable': 'bool',
653            'locked': 'bool', '*inserted': 'BlockDeviceInfo',
654            '*tray_open': 'bool', '*io-status': 'BlockDeviceIoStatus'} }
655
656 ##
657 # @query-block:
658 #
659 # Get a list of BlockInfo for all virtual block devices.
660 #
661 # Returns: a list of @BlockInfo describing each virtual block device
662 #
663 # Since: 0.14.0
664 ##
665 { 'command': 'query-block', 'returns': ['BlockInfo'] }
666
667 ##
668 # @BlockDeviceStats:
669 #
670 # Statistics of a virtual block device or a block backing device.
671 #
672 # @rd_bytes:      The number of bytes read by the device.
673 #
674 # @wr_bytes:      The number of bytes written by the device.
675 #
676 # @rd_operations: The number of read operations performed by the device.
677 #
678 # @wr_operations: The number of write operations performed by the device.
679 #
680 # @flush_operations: The number of cache flush operations performed by the
681 #                    device (since 0.15.0)
682 #
683 # @flush_total_time_ns: Total time spend on cache flushes in nano-seconds
684 #                       (since 0.15.0).
685 #
686 # @wr_total_time_ns: Total time spend on writes in nano-seconds (since 0.15.0).
687 #
688 # @rd_total_time_ns: Total_time_spend on reads in nano-seconds (since 0.15.0).
689 #
690 # @wr_highest_offset: The offset after the greatest byte written to the
691 #                     device.  The intended use of this information is for
692 #                     growable sparse files (like qcow2) that are used on top
693 #                     of a physical device.
694 #
695 # Since: 0.14.0
696 ##
697 { 'type': 'BlockDeviceStats',
698   'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'rd_operations': 'int',
699            'wr_operations': 'int', 'flush_operations': 'int',
700            'flush_total_time_ns': 'int', 'wr_total_time_ns': 'int',
701            'rd_total_time_ns': 'int', 'wr_highest_offset': 'int' } }
702
703 ##
704 # @BlockStats:
705 #
706 # Statistics of a virtual block device or a block backing device.
707 #
708 # @device: #optional If the stats are for a virtual block device, the name
709 #          corresponding to the virtual block device.
710 #
711 # @stats:  A @BlockDeviceStats for the device.
712 #
713 # @parent: #optional This may point to the backing block device if this is a
714 #          a virtual block device.  If it's a backing block, this will point
715 #          to the backing file is one is present.
716 #
717 # Since: 0.14.0
718 ##
719 { 'type': 'BlockStats',
720   'data': {'*device': 'str', 'stats': 'BlockDeviceStats',
721            '*parent': 'BlockStats'} }
722
723 ##
724 # @query-blockstats:
725 #
726 # Query the @BlockStats for all virtual block devices.
727 #
728 # Returns: A list of @BlockStats for each virtual block devices.
729 #
730 # Since: 0.14.0
731 ##
732 { 'command': 'query-blockstats', 'returns': ['BlockStats'] }
733
734 ##
735 # @VncClientInfo:
736 #
737 # Information about a connected VNC client.
738 #
739 # @host: The host name of the client.  QEMU tries to resolve this to a DNS name
740 #        when possible.
741 #
742 # @family: 'ipv6' if the client is connected via IPv6 and TCP
743 #          'ipv4' if the client is connected via IPv4 and TCP
744 #          'unix' if the client is connected via a unix domain socket
745 #          'unknown' otherwise
746 #
747 # @service: The service name of the client's port.  This may depends on the
748 #           host system's service database so symbolic names should not be
749 #           relied on.
750 #
751 # @x509_dname: #optional If x509 authentication is in use, the Distinguished
752 #              Name of the client.
753 #
754 # @sasl_username: #optional If SASL authentication is in use, the SASL username
755 #                 used for authentication.
756 #
757 # Since: 0.14.0
758 ##
759 { 'type': 'VncClientInfo',
760   'data': {'host': 'str', 'family': 'str', 'service': 'str',
761            '*x509_dname': 'str', '*sasl_username': 'str'} }
762
763 ##
764 # @VncInfo:
765 #
766 # Information about the VNC session.
767 #
768 # @enabled: true if the VNC server is enabled, false otherwise
769 #
770 # @host: #optional The hostname the VNC server is bound to.  This depends on
771 #        the name resolution on the host and may be an IP address.
772 #
773 # @family: #optional 'ipv6' if the host is listening for IPv6 connections
774 #                    'ipv4' if the host is listening for IPv4 connections
775 #                    'unix' if the host is listening on a unix domain socket
776 #                    'unknown' otherwise
777 #
778 # @service: #optional The service name of the server's port.  This may depends
779 #           on the host system's service database so symbolic names should not
780 #           be relied on.
781 #
782 # @auth: #optional the current authentication type used by the server
783 #        'none' if no authentication is being used
784 #        'vnc' if VNC authentication is being used
785 #        'vencrypt+plain' if VEncrypt is used with plain text authentication
786 #        'vencrypt+tls+none' if VEncrypt is used with TLS and no authentication
787 #        'vencrypt+tls+vnc' if VEncrypt is used with TLS and VNC authentication
788 #        'vencrypt+tls+plain' if VEncrypt is used with TLS and plain text auth
789 #        'vencrypt+x509+none' if VEncrypt is used with x509 and no auth
790 #        'vencrypt+x509+vnc' if VEncrypt is used with x509 and VNC auth
791 #        'vencrypt+x509+plain' if VEncrypt is used with x509 and plain text auth
792 #        'vencrypt+tls+sasl' if VEncrypt is used with TLS and SASL auth
793 #        'vencrypt+x509+sasl' if VEncrypt is used with x509 and SASL auth
794 #
795 # @clients: a list of @VncClientInfo of all currently connected clients
796 #
797 # Since: 0.14.0
798 ##
799 { 'type': 'VncInfo',
800   'data': {'enabled': 'bool', '*host': 'str', '*family': 'str',
801            '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']} }
802
803 ##
804 # @query-vnc:
805 #
806 # Returns information about the current VNC server
807 #
808 # Returns: @VncInfo
809 #
810 # Since: 0.14.0
811 ##
812 { 'command': 'query-vnc', 'returns': 'VncInfo' }
813
814 ##
815 # @SpiceChannel
816 #
817 # Information about a SPICE client channel.
818 #
819 # @host: The host name of the client.  QEMU tries to resolve this to a DNS name
820 #        when possible.
821 #
822 # @family: 'ipv6' if the client is connected via IPv6 and TCP
823 #          'ipv4' if the client is connected via IPv4 and TCP
824 #          'unix' if the client is connected via a unix domain socket
825 #          'unknown' otherwise
826 #
827 # @port: The client's port number.
828 #
829 # @connection-id: SPICE connection id number.  All channels with the same id
830 #                 belong to the same SPICE session.
831 #
832 # @connection-type: SPICE channel type number.  "1" is the main control
833 #                   channel, filter for this one if you want to track spice
834 #                   sessions only
835 #
836 # @channel-id: SPICE channel ID number.  Usually "0", might be different when
837 #              multiple channels of the same type exist, such as multiple
838 #              display channels in a multihead setup
839 #
840 # @tls: true if the channel is encrypted, false otherwise.
841 #
842 # Since: 0.14.0
843 ##
844 { 'type': 'SpiceChannel',
845   'data': {'host': 'str', 'family': 'str', 'port': 'str',
846            'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int',
847            'tls': 'bool'} }
848
849 ##
850 # @SpiceQueryMouseMode
851 #
852 # An enumeration of Spice mouse states.
853 #
854 # @client: Mouse cursor position is determined by the client.
855 #
856 # @server: Mouse cursor position is determined by the server.
857 #
858 # @unknown: No information is available about mouse mode used by
859 #           the spice server.
860 #
861 # Note: spice/enums.h has a SpiceMouseMode already, hence the name.
862 #
863 # Since: 1.1
864 ##
865 { 'enum': 'SpiceQueryMouseMode',
866   'data': [ 'client', 'server', 'unknown' ] }
867
868 ##
869 # @SpiceInfo
870 #
871 # Information about the SPICE session.
872 #
873 # @enabled: true if the SPICE server is enabled, false otherwise
874 #
875 # @migrated: true if the last guest migration completed and spice
876 #            migration had completed as well. false otherwise.
877 #
878 # @host: #optional The hostname the SPICE server is bound to.  This depends on
879 #        the name resolution on the host and may be an IP address.
880 #
881 # @port: #optional The SPICE server's port number.
882 #
883 # @compiled-version: #optional SPICE server version.
884 #
885 # @tls-port: #optional The SPICE server's TLS port number.
886 #
887 # @auth: #optional the current authentication type used by the server
888 #        'none'  if no authentication is being used
889 #        'spice' uses SASL or direct TLS authentication, depending on command
890 #                line options
891 #
892 # @mouse-mode: The mode in which the mouse cursor is displayed currently. Can
893 #              be determined by the client or the server, or unknown if spice
894 #              server doesn't provide this information.
895 #
896 #              Since: 1.1
897 #
898 # @channels: a list of @SpiceChannel for each active spice channel
899 #
900 # Since: 0.14.0
901 ##
902 { 'type': 'SpiceInfo',
903   'data': {'enabled': 'bool', 'migrated': 'bool', '*host': 'str', '*port': 'int',
904            '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
905            'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} }
906
907 ##
908 # @query-spice
909 #
910 # Returns information about the current SPICE server
911 #
912 # Returns: @SpiceInfo
913 #
914 # Since: 0.14.0
915 ##
916 { 'command': 'query-spice', 'returns': 'SpiceInfo' }
917
918 ##
919 # @BalloonInfo:
920 #
921 # Information about the guest balloon device.
922 #
923 # @actual: the number of bytes the balloon currently contains
924 #
925 # @mem_swapped_in: #optional number of pages swapped in within the guest
926 #
927 # @mem_swapped_out: #optional number of pages swapped out within the guest
928 #
929 # @major_page_faults: #optional number of major page faults within the guest
930 #
931 # @minor_page_faults: #optional number of minor page faults within the guest
932 #
933 # @free_mem: #optional amount of memory (in bytes) free in the guest
934 #
935 # @total_mem: #optional amount of memory (in bytes) visible to the guest
936 #
937 # Since: 0.14.0
938 #
939 # Notes: all current versions of QEMU do not fill out optional information in
940 #        this structure.
941 ##
942 { 'type': 'BalloonInfo',
943   'data': {'actual': 'int', '*mem_swapped_in': 'int',
944            '*mem_swapped_out': 'int', '*major_page_faults': 'int',
945            '*minor_page_faults': 'int', '*free_mem': 'int',
946            '*total_mem': 'int'} }
947
948 ##
949 # @query-balloon:
950 #
951 # Return information about the balloon device.
952 #
953 # Returns: @BalloonInfo on success
954 #          If the balloon driver is enabled but not functional because the KVM
955 #          kernel module cannot support it, KvmMissingCap
956 #          If no balloon device is present, DeviceNotActive
957 #
958 # Since: 0.14.0
959 ##
960 { 'command': 'query-balloon', 'returns': 'BalloonInfo' }
961
962 ##
963 # @PciMemoryRange:
964 #
965 # A PCI device memory region
966 #
967 # @base: the starting address (guest physical)
968 #
969 # @limit: the ending address (guest physical)
970 #
971 # Since: 0.14.0
972 ##
973 { 'type': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} }
974
975 ##
976 # @PciMemoryRegion
977 #
978 # Information about a PCI device I/O region.
979 #
980 # @bar: the index of the Base Address Register for this region
981 #
982 # @type: 'io' if the region is a PIO region
983 #        'memory' if the region is a MMIO region
984 #
985 # @prefetch: #optional if @type is 'memory', true if the memory is prefetchable
986 #
987 # @mem_type_64: #optional if @type is 'memory', true if the BAR is 64-bit
988 #
989 # Since: 0.14.0
990 ##
991 { 'type': 'PciMemoryRegion',
992   'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int',
993            '*prefetch': 'bool', '*mem_type_64': 'bool' } }
994
995 ##
996 # @PciBridgeInfo:
997 #
998 # Information about a PCI Bridge device
999 #
1000 # @bus.number: primary bus interface number.  This should be the number of the
1001 #              bus the device resides on.
1002 #
1003 # @bus.secondary: secondary bus interface number.  This is the number of the
1004 #                 main bus for the bridge
1005 #
1006 # @bus.subordinate: This is the highest number bus that resides below the
1007 #                   bridge.
1008 #
1009 # @bus.io_range: The PIO range for all devices on this bridge
1010 #
1011 # @bus.memory_range: The MMIO range for all devices on this bridge
1012 #
1013 # @bus.prefetchable_range: The range of prefetchable MMIO for all devices on
1014 #                          this bridge
1015 #
1016 # @devices: a list of @PciDeviceInfo for each device on this bridge
1017 #
1018 # Since: 0.14.0
1019 ##
1020 { 'type': 'PciBridgeInfo',
1021   'data': {'bus': { 'number': 'int', 'secondary': 'int', 'subordinate': 'int',
1022                     'io_range': 'PciMemoryRange',
1023                     'memory_range': 'PciMemoryRange',
1024                     'prefetchable_range': 'PciMemoryRange' },
1025            '*devices': ['PciDeviceInfo']} }
1026
1027 ##
1028 # @PciDeviceInfo:
1029 #
1030 # Information about a PCI device
1031 #
1032 # @bus: the bus number of the device
1033 #
1034 # @slot: the slot the device is located in
1035 #
1036 # @function: the function of the slot used by the device
1037 #
1038 # @class_info.desc: #optional a string description of the device's class
1039 #
1040 # @class_info.class: the class code of the device
1041 #
1042 # @id.device: the PCI device id
1043 #
1044 # @id.vendor: the PCI vendor id
1045 #
1046 # @irq: #optional if an IRQ is assigned to the device, the IRQ number
1047 #
1048 # @qdev_id: the device name of the PCI device
1049 #
1050 # @pci_bridge: if the device is a PCI bridge, the bridge information
1051 #
1052 # @regions: a list of the PCI I/O regions associated with the device
1053 #
1054 # Notes: the contents of @class_info.desc are not stable and should only be
1055 #        treated as informational.
1056 #
1057 # Since: 0.14.0
1058 ##
1059 { 'type': 'PciDeviceInfo',
1060   'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
1061            'class_info': {'*desc': 'str', 'class': 'int'},
1062            'id': {'device': 'int', 'vendor': 'int'},
1063            '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
1064            'regions': ['PciMemoryRegion']} }
1065
1066 ##
1067 # @PciInfo:
1068 #
1069 # Information about a PCI bus
1070 #
1071 # @bus: the bus index
1072 #
1073 # @devices: a list of devices on this bus
1074 #
1075 # Since: 0.14.0
1076 ##
1077 { 'type': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} }
1078
1079 ##
1080 # @query-pci:
1081 #
1082 # Return information about the PCI bus topology of the guest.
1083 #
1084 # Returns: a list of @PciInfo for each PCI bus
1085 #
1086 # Since: 0.14.0
1087 ##
1088 { 'command': 'query-pci', 'returns': ['PciInfo'] }
1089
1090 ##
1091 # @BlockdevOnError:
1092 #
1093 # An enumeration of possible behaviors for errors on I/O operations.
1094 # The exact meaning depends on whether the I/O was initiated by a guest
1095 # or by a block job
1096 #
1097 # @report: for guest operations, report the error to the guest;
1098 #          for jobs, cancel the job
1099 #
1100 # @ignore: ignore the error, only report a QMP event (BLOCK_IO_ERROR
1101 #          or BLOCK_JOB_ERROR)
1102 #
1103 # @enospc: same as @stop on ENOSPC, same as @report otherwise.
1104 #
1105 # @stop: for guest operations, stop the virtual machine;
1106 #        for jobs, pause the job
1107 #
1108 # Since: 1.3
1109 ##
1110 { 'enum': 'BlockdevOnError',
1111   'data': ['report', 'ignore', 'enospc', 'stop'] }
1112
1113 ##
1114 # @BlockJobInfo:
1115 #
1116 # Information about a long-running block device operation.
1117 #
1118 # @type: the job type ('stream' for image streaming)
1119 #
1120 # @device: the block device name
1121 #
1122 # @len: the maximum progress value
1123 #
1124 # @busy: false if the job is known to be in a quiescent state, with
1125 #        no pending I/O.  Since 1.3.
1126 #
1127 # @paused: whether the job is paused or, if @busy is true, will
1128 #          pause itself as soon as possible.  Since 1.3.
1129 #
1130 # @offset: the current progress value
1131 #
1132 # @speed: the rate limit, bytes per second
1133 #
1134 # @io-status: the status of the job (since 1.3)
1135 #
1136 # Since: 1.1
1137 ##
1138 { 'type': 'BlockJobInfo',
1139   'data': {'type': 'str', 'device': 'str', 'len': 'int',
1140            'offset': 'int', 'busy': 'bool', 'paused': 'bool', 'speed': 'int',
1141            'io-status': 'BlockDeviceIoStatus'} }
1142
1143 ##
1144 # @query-block-jobs:
1145 #
1146 # Return information about long-running block device operations.
1147 #
1148 # Returns: a list of @BlockJobInfo for each active block job
1149 #
1150 # Since: 1.1
1151 ##
1152 { 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'] }
1153
1154 ##
1155 # @quit:
1156 #
1157 # This command will cause the QEMU process to exit gracefully.  While every
1158 # attempt is made to send the QMP response before terminating, this is not
1159 # guaranteed.  When using this interface, a premature EOF would not be
1160 # unexpected.
1161 #
1162 # Since: 0.14.0
1163 ##
1164 { 'command': 'quit' }
1165
1166 ##
1167 # @stop:
1168 #
1169 # Stop all guest VCPU execution.
1170 #
1171 # Since:  0.14.0
1172 #
1173 # Notes:  This function will succeed even if the guest is already in the stopped
1174 #         state
1175 ##
1176 { 'command': 'stop' }
1177
1178 ##
1179 # @system_reset:
1180 #
1181 # Performs a hard reset of a guest.
1182 #
1183 # Since: 0.14.0
1184 ##
1185 { 'command': 'system_reset' }
1186
1187 ##
1188 # @system_powerdown:
1189 #
1190 # Requests that a guest perform a powerdown operation.
1191 #
1192 # Since: 0.14.0
1193 #
1194 # Notes: A guest may or may not respond to this command.  This command
1195 #        returning does not indicate that a guest has accepted the request or
1196 #        that it has shut down.  Many guests will respond to this command by
1197 #        prompting the user in some way.
1198 ##
1199 { 'command': 'system_powerdown' }
1200
1201 ##
1202 # @cpu:
1203 #
1204 # This command is a nop that is only provided for the purposes of compatibility.
1205 #
1206 # Since: 0.14.0
1207 #
1208 # Notes: Do not use this command.
1209 ##
1210 { 'command': 'cpu', 'data': {'index': 'int'} }
1211
1212 ##
1213 # @memsave:
1214 #
1215 # Save a portion of guest memory to a file.
1216 #
1217 # @val: the virtual address of the guest to start from
1218 #
1219 # @size: the size of memory region to save
1220 #
1221 # @filename: the file to save the memory to as binary data
1222 #
1223 # @cpu-index: #optional the index of the virtual CPU to use for translating the
1224 #                       virtual address (defaults to CPU 0)
1225 #
1226 # Returns: Nothing on success
1227 #
1228 # Since: 0.14.0
1229 #
1230 # Notes: Errors were not reliably returned until 1.1
1231 ##
1232 { 'command': 'memsave',
1233   'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
1234
1235 ##
1236 # @pmemsave:
1237 #
1238 # Save a portion of guest physical memory to a file.
1239 #
1240 # @val: the physical address of the guest to start from
1241 #
1242 # @size: the size of memory region to save
1243 #
1244 # @filename: the file to save the memory to as binary data
1245 #
1246 # Returns: Nothing on success
1247 #
1248 # Since: 0.14.0
1249 #
1250 # Notes: Errors were not reliably returned until 1.1
1251 ##
1252 { 'command': 'pmemsave',
1253   'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
1254
1255 ##
1256 # @cont:
1257 #
1258 # Resume guest VCPU execution.
1259 #
1260 # Since:  0.14.0
1261 #
1262 # Returns:  If successful, nothing
1263 #           If the QEMU is waiting for an incoming migration, MigrationExpected
1264 #           If QEMU was started with an encrypted block device and a key has
1265 #              not yet been set, DeviceEncrypted.
1266 #
1267 # Notes:  This command will succeed if the guest is currently running.
1268 ##
1269 { 'command': 'cont' }
1270
1271 ##
1272 # @system_wakeup:
1273 #
1274 # Wakeup guest from suspend.  Does nothing in case the guest isn't suspended.
1275 #
1276 # Since:  1.1
1277 #
1278 # Returns:  nothing.
1279 ##
1280 { 'command': 'system_wakeup' }
1281
1282 ##
1283 # @inject-nmi:
1284 #
1285 # Injects an Non-Maskable Interrupt into all guest's VCPUs.
1286 #
1287 # Returns:  If successful, nothing
1288 #
1289 # Since:  0.14.0
1290 #
1291 # Notes: Only x86 Virtual Machines support this command.
1292 ##
1293 { 'command': 'inject-nmi' }
1294
1295 ##
1296 # @set_link:
1297 #
1298 # Sets the link status of a virtual network adapter.
1299 #
1300 # @name: the device name of the virtual network adapter
1301 #
1302 # @up: true to set the link status to be up
1303 #
1304 # Returns: Nothing on success
1305 #          If @name is not a valid network device, DeviceNotFound
1306 #
1307 # Since: 0.14.0
1308 #
1309 # Notes: Not all network adapters support setting link status.  This command
1310 #        will succeed even if the network adapter does not support link status
1311 #        notification.
1312 ##
1313 { 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} }
1314
1315 ##
1316 # @block_passwd:
1317 #
1318 # This command sets the password of a block device that has not been open
1319 # with a password and requires one.
1320 #
1321 # The two cases where this can happen are a block device is created through
1322 # QEMU's initial command line or a block device is changed through the legacy
1323 # @change interface.
1324 #
1325 # In the event that the block device is created through the initial command
1326 # line, the VM will start in the stopped state regardless of whether '-S' is
1327 # used.  The intention is for a management tool to query the block devices to
1328 # determine which ones are encrypted, set the passwords with this command, and
1329 # then start the guest with the @cont command.
1330 #
1331 # @device:   the name of the device to set the password on
1332 #
1333 # @password: the password to use for the device
1334 #
1335 # Returns: nothing on success
1336 #          If @device is not a valid block device, DeviceNotFound
1337 #          If @device is not encrypted, DeviceNotEncrypted
1338 #
1339 # Notes:  Not all block formats support encryption and some that do are not
1340 #         able to validate that a password is correct.  Disk corruption may
1341 #         occur if an invalid password is specified.
1342 #
1343 # Since: 0.14.0
1344 ##
1345 { 'command': 'block_passwd', 'data': {'device': 'str', 'password': 'str'} }
1346
1347 ##
1348 # @balloon:
1349 #
1350 # Request the balloon driver to change its balloon size.
1351 #
1352 # @value: the target size of the balloon in bytes
1353 #
1354 # Returns: Nothing on success
1355 #          If the balloon driver is enabled but not functional because the KVM
1356 #            kernel module cannot support it, KvmMissingCap
1357 #          If no balloon device is present, DeviceNotActive
1358 #
1359 # Notes: This command just issues a request to the guest.  When it returns,
1360 #        the balloon size may not have changed.  A guest can change the balloon
1361 #        size independent of this command.
1362 #
1363 # Since: 0.14.0
1364 ##
1365 { 'command': 'balloon', 'data': {'value': 'int'} }
1366
1367 ##
1368 # @block_resize
1369 #
1370 # Resize a block image while a guest is running.
1371 #
1372 # @device:  the name of the device to get the image resized
1373 #
1374 # @size:  new image size in bytes
1375 #
1376 # Returns: nothing on success
1377 #          If @device is not a valid block device, DeviceNotFound
1378 #
1379 # Since: 0.14.0
1380 ##
1381 { 'command': 'block_resize', 'data': { 'device': 'str', 'size': 'int' }}
1382
1383 ##
1384 # @NewImageMode
1385 #
1386 # An enumeration that tells QEMU how to set the backing file path in
1387 # a new image file.
1388 #
1389 # @existing: QEMU should look for an existing image file.
1390 #
1391 # @absolute-paths: QEMU should create a new image with absolute paths
1392 # for the backing file.
1393 #
1394 # Since: 1.1
1395 ##
1396 { 'enum': 'NewImageMode'
1397   'data': [ 'existing', 'absolute-paths' ] }
1398
1399 ##
1400 # @BlockdevSnapshot
1401 #
1402 # @device:  the name of the device to generate the snapshot from.
1403 #
1404 # @snapshot-file: the target of the new image. A new file will be created.
1405 #
1406 # @format: #optional the format of the snapshot image, default is 'qcow2'.
1407 #
1408 # @mode: #optional whether and how QEMU should create a new image, default is
1409 # 'absolute-paths'.
1410 ##
1411 { 'type': 'BlockdevSnapshot',
1412   'data': { 'device': 'str', 'snapshot-file': 'str', '*format': 'str',
1413             '*mode': 'NewImageMode' } }
1414
1415 ##
1416 # @BlockdevAction
1417 #
1418 # A discriminated record of operations that can be performed with
1419 # @transaction.
1420 ##
1421 { 'union': 'BlockdevAction',
1422   'data': {
1423        'blockdev-snapshot-sync': 'BlockdevSnapshot',
1424    } }
1425
1426 ##
1427 # @transaction
1428 #
1429 # Atomically operate on a group of one or more block devices.  If
1430 # any operation fails, then the entire set of actions will be
1431 # abandoned and the appropriate error returned.  The only operation
1432 # supported is currently blockdev-snapshot-sync.
1433 #
1434 #  List of:
1435 #  @BlockdevAction: information needed for the device snapshot
1436 #
1437 # Returns: nothing on success
1438 #          If @device is not a valid block device, DeviceNotFound
1439 #
1440 # Note: The transaction aborts on the first failure.  Therefore, there will
1441 # be only one device or snapshot file returned in an error condition, and
1442 # subsequent actions will not have been attempted.
1443 #
1444 # Since 1.1
1445 ##
1446 { 'command': 'transaction',
1447   'data': { 'actions': [ 'BlockdevAction' ] } }
1448
1449 ##
1450 # @blockdev-snapshot-sync
1451 #
1452 # Generates a synchronous snapshot of a block device.
1453 #
1454 # @device:  the name of the device to generate the snapshot from.
1455 #
1456 # @snapshot-file: the target of the new image. If the file exists, or if it
1457 #                 is a device, the snapshot will be created in the existing
1458 #                 file/device. If does not exist, a new file will be created.
1459 #
1460 # @format: #optional the format of the snapshot image, default is 'qcow2'.
1461 #
1462 # @mode: #optional whether and how QEMU should create a new image, default is
1463 # 'absolute-paths'.
1464 #
1465 # Returns: nothing on success
1466 #          If @device is not a valid block device, DeviceNotFound
1467 #
1468 # Since 0.14.0
1469 ##
1470 { 'command': 'blockdev-snapshot-sync',
1471   'data': { 'device': 'str', 'snapshot-file': 'str', '*format': 'str',
1472             '*mode': 'NewImageMode'} }
1473
1474 ##
1475 # @human-monitor-command:
1476 #
1477 # Execute a command on the human monitor and return the output.
1478 #
1479 # @command-line: the command to execute in the human monitor
1480 #
1481 # @cpu-index: #optional The CPU to use for commands that require an implicit CPU
1482 #
1483 # Returns: the output of the command as a string
1484 #
1485 # Since: 0.14.0
1486 #
1487 # Notes: This command only exists as a stop-gap.  It's use is highly
1488 #        discouraged.  The semantics of this command are not guaranteed.
1489 #
1490 #        Known limitations:
1491 #
1492 #        o This command is stateless, this means that commands that depend
1493 #          on state information (such as getfd) might not work
1494 #
1495 #       o Commands that prompt the user for data (eg. 'cont' when the block
1496 #         device is encrypted) don't currently work
1497 ##
1498 { 'command': 'human-monitor-command',
1499   'data': {'command-line': 'str', '*cpu-index': 'int'},
1500   'returns': 'str' }
1501
1502 ##
1503 # @block-commit
1504 #
1505 # Live commit of data from overlay image nodes into backing nodes - i.e.,
1506 # writes data between 'top' and 'base' into 'base'.
1507 #
1508 # @device:  the name of the device
1509 #
1510 # @base:   #optional The file name of the backing image to write data into.
1511 #                    If not specified, this is the deepest backing image
1512 #
1513 # @top:              The file name of the backing image within the image chain,
1514 #                    which contains the topmost data to be committed down.
1515 #                    Note, the active layer as 'top' is currently unsupported.
1516 #
1517 #                    If top == base, that is an error.
1518 #
1519 #
1520 # @speed:  #optional the maximum speed, in bytes per second
1521 #
1522 # Returns: Nothing on success
1523 #          If commit or stream is already active on this device, DeviceInUse
1524 #          If @device does not exist, DeviceNotFound
1525 #          If image commit is not supported by this device, NotSupported
1526 #          If @base or @top is invalid, a generic error is returned
1527 #          If @top is the active layer, or omitted, a generic error is returned
1528 #          If @speed is invalid, InvalidParameter
1529 #
1530 # Since: 1.3
1531 #
1532 ##
1533 { 'command': 'block-commit',
1534   'data': { 'device': 'str', '*base': 'str', 'top': 'str',
1535             '*speed': 'int' } }
1536
1537 # @migrate_cancel
1538 #
1539 # Cancel the current executing migration process.
1540 #
1541 # Returns: nothing on success
1542 #
1543 # Notes: This command succeeds even if there is no migration process running.
1544 #
1545 # Since: 0.14.0
1546 ##
1547 { 'command': 'migrate_cancel' }
1548
1549 ##
1550 # @migrate_set_downtime
1551 #
1552 # Set maximum tolerated downtime for migration.
1553 #
1554 # @value: maximum downtime in seconds
1555 #
1556 # Returns: nothing on success
1557 #
1558 # Since: 0.14.0
1559 ##
1560 { 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
1561
1562 ##
1563 # @migrate_set_speed
1564 #
1565 # Set maximum speed for migration.
1566 #
1567 # @value: maximum speed in bytes.
1568 #
1569 # Returns: nothing on success
1570 #
1571 # Notes: A value lesser than zero will be automatically round up to zero.
1572 #
1573 # Since: 0.14.0
1574 ##
1575 { 'command': 'migrate_set_speed', 'data': {'value': 'int'} }
1576
1577 ##
1578 # @migrate-set-cache-size
1579 #
1580 # Set XBZRLE cache size
1581 #
1582 # @value: cache size in bytes
1583 #
1584 # The size will be rounded down to the nearest power of 2.
1585 # The cache size can be modified before and during ongoing migration
1586 #
1587 # Returns: nothing on success
1588 #
1589 # Since: 1.2
1590 ##
1591 { 'command': 'migrate-set-cache-size', 'data': {'value': 'int'} }
1592
1593 ##
1594 # @query-migrate-cache-size
1595 #
1596 # query XBZRLE cache size
1597 #
1598 # Returns: XBZRLE cache size in bytes
1599 #
1600 # Since: 1.2
1601 ##
1602 { 'command': 'query-migrate-cache-size', 'returns': 'int' }
1603
1604 ##
1605 # @ObjectPropertyInfo:
1606 #
1607 # @name: the name of the property
1608 #
1609 # @type: the type of the property.  This will typically come in one of four
1610 #        forms:
1611 #
1612 #        1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
1613 #           These types are mapped to the appropriate JSON type.
1614 #
1615 #        2) A legacy type in the form 'legacy<subtype>' where subtype is the
1616 #           legacy qdev typename.  These types are always treated as strings.
1617 #
1618 #        3) A child type in the form 'child<subtype>' where subtype is a qdev
1619 #           device type name.  Child properties create the composition tree.
1620 #
1621 #        4) A link type in the form 'link<subtype>' where subtype is a qdev
1622 #           device type name.  Link properties form the device model graph.
1623 #
1624 # Since: 1.2
1625 ##
1626 { 'type': 'ObjectPropertyInfo',
1627   'data': { 'name': 'str', 'type': 'str' } }
1628
1629 ##
1630 # @qom-list:
1631 #
1632 # This command will list any properties of a object given a path in the object
1633 # model.
1634 #
1635 # @path: the path within the object model.  See @qom-get for a description of
1636 #        this parameter.
1637 #
1638 # Returns: a list of @ObjectPropertyInfo that describe the properties of the
1639 #          object.
1640 #
1641 # Since: 1.2
1642 ##
1643 { 'command': 'qom-list',
1644   'data': { 'path': 'str' },
1645   'returns': [ 'ObjectPropertyInfo' ] }
1646
1647 ##
1648 # @qom-get:
1649 #
1650 # This command will get a property from a object model path and return the
1651 # value.
1652 #
1653 # @path: The path within the object model.  There are two forms of supported
1654 #        paths--absolute and partial paths.
1655 #
1656 #        Absolute paths are derived from the root object and can follow child<>
1657 #        or link<> properties.  Since they can follow link<> properties, they
1658 #        can be arbitrarily long.  Absolute paths look like absolute filenames
1659 #        and are prefixed  with a leading slash.
1660 #
1661 #        Partial paths look like relative filenames.  They do not begin
1662 #        with a prefix.  The matching rules for partial paths are subtle but
1663 #        designed to make specifying objects easy.  At each level of the
1664 #        composition tree, the partial path is matched as an absolute path.
1665 #        The first match is not returned.  At least two matches are searched
1666 #        for.  A successful result is only returned if only one match is
1667 #        found.  If more than one match is found, a flag is return to
1668 #        indicate that the match was ambiguous.
1669 #
1670 # @property: The property name to read
1671 #
1672 # Returns: The property value.  The type depends on the property type.  legacy<>
1673 #          properties are returned as #str.  child<> and link<> properties are
1674 #          returns as #str pathnames.  All integer property types (u8, u16, etc)
1675 #          are returned as #int.
1676 #
1677 # Since: 1.2
1678 ##
1679 { 'command': 'qom-get',
1680   'data': { 'path': 'str', 'property': 'str' },
1681   'returns': 'visitor',
1682   'gen': 'no' }
1683
1684 ##
1685 # @qom-set:
1686 #
1687 # This command will set a property from a object model path.
1688 #
1689 # @path: see @qom-get for a description of this parameter
1690 #
1691 # @property: the property name to set
1692 #
1693 # @value: a value who's type is appropriate for the property type.  See @qom-get
1694 #         for a description of type mapping.
1695 #
1696 # Since: 1.2
1697 ##
1698 { 'command': 'qom-set',
1699   'data': { 'path': 'str', 'property': 'str', 'value': 'visitor' },
1700   'gen': 'no' }
1701
1702 ##
1703 # @set_password:
1704 #
1705 # Sets the password of a remote display session.
1706 #
1707 # @protocol: `vnc' to modify the VNC server password
1708 #            `spice' to modify the Spice server password
1709 #
1710 # @password: the new password
1711 #
1712 # @connected: #optional how to handle existing clients when changing the
1713 #                       password.  If nothing is specified, defaults to `keep'
1714 #                       `fail' to fail the command if clients are connected
1715 #                       `disconnect' to disconnect existing clients
1716 #                       `keep' to maintain existing clients
1717 #
1718 # Returns: Nothing on success
1719 #          If Spice is not enabled, DeviceNotFound
1720 #
1721 # Since: 0.14.0
1722 ##
1723 { 'command': 'set_password',
1724   'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} }
1725
1726 ##
1727 # @expire_password:
1728 #
1729 # Expire the password of a remote display server.
1730 #
1731 # @protocol: the name of the remote display protocol `vnc' or `spice'
1732 #
1733 # @time: when to expire the password.
1734 #        `now' to expire the password immediately
1735 #        `never' to cancel password expiration
1736 #        `+INT' where INT is the number of seconds from now (integer)
1737 #        `INT' where INT is the absolute time in seconds
1738 #
1739 # Returns: Nothing on success
1740 #          If @protocol is `spice' and Spice is not active, DeviceNotFound
1741 #
1742 # Since: 0.14.0
1743 #
1744 # Notes: Time is relative to the server and currently there is no way to
1745 #        coordinate server time with client time.  It is not recommended to
1746 #        use the absolute time version of the @time parameter unless you're
1747 #        sure you are on the same machine as the QEMU instance.
1748 ##
1749 { 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} }
1750
1751 ##
1752 # @eject:
1753 #
1754 # Ejects a device from a removable drive.
1755 #
1756 # @device:  The name of the device
1757 #
1758 # @force:   @optional If true, eject regardless of whether the drive is locked.
1759 #           If not specified, the default value is false.
1760 #
1761 # Returns:  Nothing on success
1762 #           If @device is not a valid block device, DeviceNotFound
1763 #
1764 # Notes:    Ejecting a device will no media results in success
1765 #
1766 # Since: 0.14.0
1767 ##
1768 { 'command': 'eject', 'data': {'device': 'str', '*force': 'bool'} }
1769
1770 ##
1771 # @change-vnc-password:
1772 #
1773 # Change the VNC server password.
1774 #
1775 # @target:  the new password to use with VNC authentication
1776 #
1777 # Since: 1.1
1778 #
1779 # Notes:  An empty password in this command will set the password to the empty
1780 #         string.  Existing clients are unaffected by executing this command.
1781 ##
1782 { 'command': 'change-vnc-password', 'data': {'password': 'str'} }
1783
1784 ##
1785 # @change:
1786 #
1787 # This command is multiple commands multiplexed together.
1788 #
1789 # @device: This is normally the name of a block device but it may also be 'vnc'.
1790 #          when it's 'vnc', then sub command depends on @target
1791 #
1792 # @target: If @device is a block device, then this is the new filename.
1793 #          If @device is 'vnc', then if the value 'password' selects the vnc
1794 #          change password command.   Otherwise, this specifies a new server URI
1795 #          address to listen to for VNC connections.
1796 #
1797 # @arg:    If @device is a block device, then this is an optional format to open
1798 #          the device with.
1799 #          If @device is 'vnc' and @target is 'password', this is the new VNC
1800 #          password to set.  If this argument is an empty string, then no future
1801 #          logins will be allowed.
1802 #
1803 # Returns: Nothing on success.
1804 #          If @device is not a valid block device, DeviceNotFound
1805 #          If the new block device is encrypted, DeviceEncrypted.  Note that
1806 #          if this error is returned, the device has been opened successfully
1807 #          and an additional call to @block_passwd is required to set the
1808 #          device's password.  The behavior of reads and writes to the block
1809 #          device between when these calls are executed is undefined.
1810 #
1811 # Notes:  It is strongly recommended that this interface is not used especially
1812 #         for changing block devices.
1813 #
1814 # Since: 0.14.0
1815 ##
1816 { 'command': 'change',
1817   'data': {'device': 'str', 'target': 'str', '*arg': 'str'} }
1818
1819 ##
1820 # @block_set_io_throttle:
1821 #
1822 # Change I/O throttle limits for a block drive.
1823 #
1824 # @device: The name of the device
1825 #
1826 # @bps: total throughput limit in bytes per second
1827 #
1828 # @bps_rd: read throughput limit in bytes per second
1829 #
1830 # @bps_wr: write throughput limit in bytes per second
1831 #
1832 # @iops: total I/O operations per second
1833 #
1834 # @ops_rd: read I/O operations per second
1835 #
1836 # @iops_wr: write I/O operations per second
1837 #
1838 # Returns: Nothing on success
1839 #          If @device is not a valid block device, DeviceNotFound
1840 #
1841 # Since: 1.1
1842 ##
1843 { 'command': 'block_set_io_throttle',
1844   'data': { 'device': 'str', 'bps': 'int', 'bps_rd': 'int', 'bps_wr': 'int',
1845             'iops': 'int', 'iops_rd': 'int', 'iops_wr': 'int' } }
1846
1847 ##
1848 # @block-stream:
1849 #
1850 # Copy data from a backing file into a block device.
1851 #
1852 # The block streaming operation is performed in the background until the entire
1853 # backing file has been copied.  This command returns immediately once streaming
1854 # has started.  The status of ongoing block streaming operations can be checked
1855 # with query-block-jobs.  The operation can be stopped before it has completed
1856 # using the block-job-cancel command.
1857 #
1858 # If a base file is specified then sectors are not copied from that base file and
1859 # its backing chain.  When streaming completes the image file will have the base
1860 # file as its backing file.  This can be used to stream a subset of the backing
1861 # file chain instead of flattening the entire image.
1862 #
1863 # On successful completion the image file is updated to drop the backing file
1864 # and the BLOCK_JOB_COMPLETED event is emitted.
1865 #
1866 # @device: the device name
1867 #
1868 # @base:   #optional the common backing file name
1869 #
1870 # @speed:  #optional the maximum speed, in bytes per second
1871 #
1872 # Returns: Nothing on success
1873 #          If @device does not exist, DeviceNotFound
1874 #
1875 # Since: 1.1
1876 ##
1877 { 'command': 'block-stream', 'data': { 'device': 'str', '*base': 'str',
1878                                        '*speed': 'int' } }
1879
1880 ##
1881 # @block-job-set-speed:
1882 #
1883 # Set maximum speed for a background block operation.
1884 #
1885 # This command can only be issued when there is an active block job.
1886 #
1887 # Throttling can be disabled by setting the speed to 0.
1888 #
1889 # @device: the device name
1890 #
1891 # @speed:  the maximum speed, in bytes per second, or 0 for unlimited.
1892 #          Defaults to 0.
1893 #
1894 # Returns: Nothing on success
1895 #          If no background operation is active on this device, DeviceNotActive
1896 #
1897 # Since: 1.1
1898 ##
1899 { 'command': 'block-job-set-speed',
1900   'data': { 'device': 'str', 'speed': 'int' } }
1901
1902 ##
1903 # @block-job-cancel:
1904 #
1905 # Stop an active background block operation.
1906 #
1907 # This command returns immediately after marking the active background block
1908 # operation for cancellation.  It is an error to call this command if no
1909 # operation is in progress.
1910 #
1911 # The operation will cancel as soon as possible and then emit the
1912 # BLOCK_JOB_CANCELLED event.  Before that happens the job is still visible when
1913 # enumerated using query-block-jobs.
1914 #
1915 # For streaming, the image file retains its backing file unless the streaming
1916 # operation happens to complete just as it is being cancelled.  A new streaming
1917 # operation can be started at a later time to finish copying all data from the
1918 # backing file.
1919 #
1920 # @device: the device name
1921 #
1922 # @force: #optional whether to allow cancellation of a paused job (default
1923 #         false).  Since 1.3.
1924 #
1925 # Returns: Nothing on success
1926 #          If no background operation is active on this device, DeviceNotActive
1927 #
1928 # Since: 1.1
1929 ##
1930 { 'command': 'block-job-cancel', 'data': { 'device': 'str', '*force': 'bool' } }
1931
1932 ##
1933 # @block-job-pause:
1934 #
1935 # Pause an active background block operation.
1936 #
1937 # This command returns immediately after marking the active background block
1938 # operation for pausing.  It is an error to call this command if no
1939 # operation is in progress.  Pausing an already paused job has no cumulative
1940 # effect; a single block-job-resume command will resume the job.
1941 #
1942 # The operation will pause as soon as possible.  No event is emitted when
1943 # the operation is actually paused.  Cancelling a paused job automatically
1944 # resumes it.
1945 #
1946 # @device: the device name
1947 #
1948 # Returns: Nothing on success
1949 #          If no background operation is active on this device, DeviceNotActive
1950 #
1951 # Since: 1.3
1952 ##
1953 { 'command': 'block-job-pause', 'data': { 'device': 'str' } }
1954
1955 ##
1956 # @block-job-resume:
1957 #
1958 # Resume an active background block operation.
1959 #
1960 # This command returns immediately after resuming a paused background block
1961 # operation.  It is an error to call this command if no operation is in
1962 # progress.  Resuming an already running job is not an error.
1963 #
1964 # This command also clears the error status of the job.
1965 #
1966 # @device: the device name
1967 #
1968 # Returns: Nothing on success
1969 #          If no background operation is active on this device, DeviceNotActive
1970 #
1971 # Since: 1.3
1972 ##
1973 { 'command': 'block-job-resume', 'data': { 'device': 'str' } }
1974
1975 ##
1976 # @ObjectTypeInfo:
1977 #
1978 # This structure describes a search result from @qom-list-types
1979 #
1980 # @name: the type name found in the search
1981 #
1982 # Since: 1.1
1983 #
1984 # Notes: This command is experimental and may change syntax in future releases.
1985 ##
1986 { 'type': 'ObjectTypeInfo',
1987   'data': { 'name': 'str' } }
1988
1989 ##
1990 # @qom-list-types:
1991 #
1992 # This command will return a list of types given search parameters
1993 #
1994 # @implements: if specified, only return types that implement this type name
1995 #
1996 # @abstract: if true, include abstract types in the results
1997 #
1998 # Returns: a list of @ObjectTypeInfo or an empty list if no results are found
1999 #
2000 # Since: 1.1
2001 ##
2002 { 'command': 'qom-list-types',
2003   'data': { '*implements': 'str', '*abstract': 'bool' },
2004   'returns': [ 'ObjectTypeInfo' ] }
2005
2006 ##
2007 # @DevicePropertyInfo:
2008 #
2009 # Information about device properties.
2010 #
2011 # @name: the name of the property
2012 # @type: the typename of the property
2013 #
2014 # Since: 1.2
2015 ##
2016 { 'type': 'DevicePropertyInfo',
2017   'data': { 'name': 'str', 'type': 'str' } }
2018
2019 ##
2020 # @device-list-properties:
2021 #
2022 # List properties associated with a device.
2023 #
2024 # @typename: the type name of a device
2025 #
2026 # Returns: a list of DevicePropertyInfo describing a devices properties
2027 #
2028 # Since: 1.2
2029 ##
2030 { 'command': 'device-list-properties',
2031   'data': { 'typename': 'str'},
2032   'returns': [ 'DevicePropertyInfo' ] }
2033
2034 ##
2035 # @migrate
2036 #
2037 # Migrates the current running guest to another Virtual Machine.
2038 #
2039 # @uri: the Uniform Resource Identifier of the destination VM
2040 #
2041 # @blk: #optional do block migration (full disk copy)
2042 #
2043 # @inc: #optional incremental disk copy migration
2044 #
2045 # @detach: this argument exists only for compatibility reasons and
2046 #          is ignored by QEMU
2047 #
2048 # Returns: nothing on success
2049 #
2050 # Since: 0.14.0
2051 ##
2052 { 'command': 'migrate',
2053   'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
2054
2055 # @xen-save-devices-state:
2056 #
2057 # Save the state of all devices to file. The RAM and the block devices
2058 # of the VM are not saved by this command.
2059 #
2060 # @filename: the file to save the state of the devices to as binary
2061 # data. See xen-save-devices-state.txt for a description of the binary
2062 # format.
2063 #
2064 # Returns: Nothing on success
2065 #
2066 # Since: 1.1
2067 ##
2068 { 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} }
2069
2070 ##
2071 # @device_del:
2072 #
2073 # Remove a device from a guest
2074 #
2075 # @id: the name of the device
2076 #
2077 # Returns: Nothing on success
2078 #          If @id is not a valid device, DeviceNotFound
2079 #
2080 # Notes: When this command completes, the device may not be removed from the
2081 #        guest.  Hot removal is an operation that requires guest cooperation.
2082 #        This command merely requests that the guest begin the hot removal
2083 #        process.
2084 #
2085 # Since: 0.14.0
2086 ##
2087 { 'command': 'device_del', 'data': {'id': 'str'} }
2088
2089 ##
2090 # @dump-guest-memory
2091 #
2092 # Dump guest's memory to vmcore. It is a synchronous operation that can take
2093 # very long depending on the amount of guest memory. This command is only
2094 # supported on i386 and x86_64.
2095 #
2096 # @paging: if true, do paging to get guest's memory mapping. This allows
2097 # using gdb to process the core file. However, setting @paging to false
2098 # may be desirable because of two reasons:
2099 #
2100 #   1. The guest may be in a catastrophic state or can have corrupted
2101 #      memory, which cannot be trusted
2102 #   2. The guest can be in real-mode even if paging is enabled. For example,
2103 #      the guest uses ACPI to sleep, and ACPI sleep state goes in real-mode
2104 #
2105 # @protocol: the filename or file descriptor of the vmcore. The supported
2106 # protocols are:
2107 #
2108 #   1. file: the protocol starts with "file:", and the following string is
2109 #      the file's path.
2110 #   2. fd: the protocol starts with "fd:", and the following string is the
2111 #      fd's name.
2112 #
2113 # @begin: #optional if specified, the starting physical address.
2114 #
2115 # @length: #optional if specified, the memory size, in bytes. If you don't
2116 # want to dump all guest's memory, please specify the start @begin and @length
2117 #
2118 # Returns: nothing on success
2119 #
2120 # Since: 1.2
2121 ##
2122 { 'command': 'dump-guest-memory',
2123   'data': { 'paging': 'bool', 'protocol': 'str', '*begin': 'int',
2124             '*length': 'int' } }
2125 ##
2126 # @netdev_add:
2127 #
2128 # Add a network backend.
2129 #
2130 # @type: the type of network backend.  Current valid values are 'user', 'tap',
2131 #        'vde', 'socket', 'dump' and 'bridge'
2132 #
2133 # @id: the name of the new network backend
2134 #
2135 # @props: #optional a list of properties to be passed to the backend in
2136 #         the format 'name=value', like 'ifname=tap0,script=no'
2137 #
2138 # Notes: The semantics of @props is not well defined.  Future commands will be
2139 #        introduced that provide stronger typing for backend creation.
2140 #
2141 # Since: 0.14.0
2142 #
2143 # Returns: Nothing on success
2144 #          If @type is not a valid network backend, DeviceNotFound
2145 ##
2146 { 'command': 'netdev_add',
2147   'data': {'type': 'str', 'id': 'str', '*props': '**'},
2148   'gen': 'no' }
2149
2150 ##
2151 # @netdev_del:
2152 #
2153 # Remove a network backend.
2154 #
2155 # @id: the name of the network backend to remove
2156 #
2157 # Returns: Nothing on success
2158 #          If @id is not a valid network backend, DeviceNotFound
2159 #
2160 # Since: 0.14.0
2161 ##
2162 { 'command': 'netdev_del', 'data': {'id': 'str'} }
2163
2164 ##
2165 # @NetdevNoneOptions
2166 #
2167 # Use it alone to have zero network devices.
2168 #
2169 # Since 1.2
2170 ##
2171 { 'type': 'NetdevNoneOptions',
2172   'data': { } }
2173
2174 ##
2175 # @NetLegacyNicOptions
2176 #
2177 # Create a new Network Interface Card.
2178 #
2179 # @netdev: #optional id of -netdev to connect to
2180 #
2181 # @macaddr: #optional MAC address
2182 #
2183 # @model: #optional device model (e1000, rtl8139, virtio etc.)
2184 #
2185 # @addr: #optional PCI device address
2186 #
2187 # @vectors: #optional number of MSI-x vectors, 0 to disable MSI-X
2188 #
2189 # Since 1.2
2190 ##
2191 { 'type': 'NetLegacyNicOptions',
2192   'data': {
2193     '*netdev':  'str',
2194     '*macaddr': 'str',
2195     '*model':   'str',
2196     '*addr':    'str',
2197     '*vectors': 'uint32' } }
2198
2199 ##
2200 # @String
2201 #
2202 # A fat type wrapping 'str', to be embedded in lists.
2203 #
2204 # Since 1.2
2205 ##
2206 { 'type': 'String',
2207   'data': {
2208     'str': 'str' } }
2209
2210 ##
2211 # @NetdevUserOptions
2212 #
2213 # Use the user mode network stack which requires no administrator privilege to
2214 # run.
2215 #
2216 # @hostname: #optional client hostname reported by the builtin DHCP server
2217 #
2218 # @restrict: #optional isolate the guest from the host
2219 #
2220 # @ip: #optional legacy parameter, use net= instead
2221 #
2222 # @net: #optional IP address and optional netmask
2223 #
2224 # @host: #optional guest-visible address of the host
2225 #
2226 # @tftp: #optional root directory of the built-in TFTP server
2227 #
2228 # @bootfile: #optional BOOTP filename, for use with tftp=
2229 #
2230 # @dhcpstart: #optional the first of the 16 IPs the built-in DHCP server can
2231 #             assign
2232 #
2233 # @dns: #optional guest-visible address of the virtual nameserver
2234 #
2235 # @smb: #optional root directory of the built-in SMB server
2236 #
2237 # @smbserver: #optional IP address of the built-in SMB server
2238 #
2239 # @hostfwd: #optional redirect incoming TCP or UDP host connections to guest
2240 #           endpoints
2241 #
2242 # @guestfwd: #optional forward guest TCP connections
2243 #
2244 # Since 1.2
2245 ##
2246 { 'type': 'NetdevUserOptions',
2247   'data': {
2248     '*hostname':  'str',
2249     '*restrict':  'bool',
2250     '*ip':        'str',
2251     '*net':       'str',
2252     '*host':      'str',
2253     '*tftp':      'str',
2254     '*bootfile':  'str',
2255     '*dhcpstart': 'str',
2256     '*dns':       'str',
2257     '*smb':       'str',
2258     '*smbserver': 'str',
2259     '*hostfwd':   ['String'],
2260     '*guestfwd':  ['String'] } }
2261
2262 ##
2263 # @NetdevTapOptions
2264 #
2265 # Connect the host TAP network interface name to the VLAN.
2266 #
2267 # @ifname: #optional interface name
2268 #
2269 # @fd: #optional file descriptor of an already opened tap
2270 #
2271 # @script: #optional script to initialize the interface
2272 #
2273 # @downscript: #optional script to shut down the interface
2274 #
2275 # @helper: #optional command to execute to configure bridge
2276 #
2277 # @sndbuf: #optional send buffer limit. Understands [TGMKkb] suffixes.
2278 #
2279 # @vnet_hdr: #optional enable the IFF_VNET_HDR flag on the tap interface
2280 #
2281 # @vhost: #optional enable vhost-net network accelerator
2282 #
2283 # @vhostfd: #optional file descriptor of an already opened vhost net device
2284 #
2285 # @vhostforce: #optional vhost on for non-MSIX virtio guests
2286 #
2287 # Since 1.2
2288 ##
2289 { 'type': 'NetdevTapOptions',
2290   'data': {
2291     '*ifname':     'str',
2292     '*fd':         'str',
2293     '*script':     'str',
2294     '*downscript': 'str',
2295     '*helper':     'str',
2296     '*sndbuf':     'size',
2297     '*vnet_hdr':   'bool',
2298     '*vhost':      'bool',
2299     '*vhostfd':    'str',
2300     '*vhostforce': 'bool' } }
2301
2302 ##
2303 # @NetdevSocketOptions
2304 #
2305 # Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP
2306 # socket connection.
2307 #
2308 # @fd: #optional file descriptor of an already opened socket
2309 #
2310 # @listen: #optional port number, and optional hostname, to listen on
2311 #
2312 # @connect: #optional port number, and optional hostname, to connect to
2313 #
2314 # @mcast: #optional UDP multicast address and port number
2315 #
2316 # @localaddr: #optional source address and port for multicast and udp packets
2317 #
2318 # @udp: #optional UDP unicast address and port number
2319 #
2320 # Since 1.2
2321 ##
2322 { 'type': 'NetdevSocketOptions',
2323   'data': {
2324     '*fd':        'str',
2325     '*listen':    'str',
2326     '*connect':   'str',
2327     '*mcast':     'str',
2328     '*localaddr': 'str',
2329     '*udp':       'str' } }
2330
2331 ##
2332 # @NetdevVdeOptions
2333 #
2334 # Connect the VLAN to a vde switch running on the host.
2335 #
2336 # @sock: #optional socket path
2337 #
2338 # @port: #optional port number
2339 #
2340 # @group: #optional group owner of socket
2341 #
2342 # @mode: #optional permissions for socket
2343 #
2344 # Since 1.2
2345 ##
2346 { 'type': 'NetdevVdeOptions',
2347   'data': {
2348     '*sock':  'str',
2349     '*port':  'uint16',
2350     '*group': 'str',
2351     '*mode':  'uint16' } }
2352
2353 ##
2354 # @NetdevDumpOptions
2355 #
2356 # Dump VLAN network traffic to a file.
2357 #
2358 # @len: #optional per-packet size limit (64k default). Understands [TGMKkb]
2359 # suffixes.
2360 #
2361 # @file: #optional dump file path (default is qemu-vlan0.pcap)
2362 #
2363 # Since 1.2
2364 ##
2365 { 'type': 'NetdevDumpOptions',
2366   'data': {
2367     '*len':  'size',
2368     '*file': 'str' } }
2369
2370 ##
2371 # @NetdevBridgeOptions
2372 #
2373 # Connect a host TAP network interface to a host bridge device.
2374 #
2375 # @br: #optional bridge name
2376 #
2377 # @helper: #optional command to execute to configure bridge
2378 #
2379 # Since 1.2
2380 ##
2381 { 'type': 'NetdevBridgeOptions',
2382   'data': {
2383     '*br':     'str',
2384     '*helper': 'str' } }
2385
2386 ##
2387 # @NetdevHubPortOptions
2388 #
2389 # Connect two or more net clients through a software hub.
2390 #
2391 # @hubid: hub identifier number
2392 #
2393 # Since 1.2
2394 ##
2395 { 'type': 'NetdevHubPortOptions',
2396   'data': {
2397     'hubid':     'int32' } }
2398
2399 ##
2400 # @NetClientOptions
2401 #
2402 # A discriminated record of network device traits.
2403 #
2404 # Since 1.2
2405 ##
2406 { 'union': 'NetClientOptions',
2407   'data': {
2408     'none':     'NetdevNoneOptions',
2409     'nic':      'NetLegacyNicOptions',
2410     'user':     'NetdevUserOptions',
2411     'tap':      'NetdevTapOptions',
2412     'socket':   'NetdevSocketOptions',
2413     'vde':      'NetdevVdeOptions',
2414     'dump':     'NetdevDumpOptions',
2415     'bridge':   'NetdevBridgeOptions',
2416     'hubport':  'NetdevHubPortOptions' } }
2417
2418 ##
2419 # @NetLegacy
2420 #
2421 # Captures the configuration of a network device; legacy.
2422 #
2423 # @vlan: #optional vlan number
2424 #
2425 # @id: #optional identifier for monitor commands
2426 #
2427 # @name: #optional identifier for monitor commands, ignored if @id is present
2428 #
2429 # @opts: device type specific properties (legacy)
2430 #
2431 # Since 1.2
2432 ##
2433 { 'type': 'NetLegacy',
2434   'data': {
2435     '*vlan': 'int32',
2436     '*id':   'str',
2437     '*name': 'str',
2438     'opts':  'NetClientOptions' } }
2439
2440 ##
2441 # @Netdev
2442 #
2443 # Captures the configuration of a network device.
2444 #
2445 # @id: identifier for monitor commands.
2446 #
2447 # @opts: device type specific properties
2448 #
2449 # Since 1.2
2450 ##
2451 { 'type': 'Netdev',
2452   'data': {
2453     'id':   'str',
2454     'opts': 'NetClientOptions' } }
2455
2456 ##
2457 # @getfd:
2458 #
2459 # Receive a file descriptor via SCM rights and assign it a name
2460 #
2461 # @fdname: file descriptor name
2462 #
2463 # Returns: Nothing on success
2464 #
2465 # Since: 0.14.0
2466 #
2467 # Notes: If @fdname already exists, the file descriptor assigned to
2468 #        it will be closed and replaced by the received file
2469 #        descriptor.
2470 #        The 'closefd' command can be used to explicitly close the
2471 #        file descriptor when it is no longer needed.
2472 ##
2473 { 'command': 'getfd', 'data': {'fdname': 'str'} }
2474
2475 ##
2476 # @closefd:
2477 #
2478 # Close a file descriptor previously passed via SCM rights
2479 #
2480 # @fdname: file descriptor name
2481 #
2482 # Returns: Nothing on success
2483 #
2484 # Since: 0.14.0
2485 ##
2486 { 'command': 'closefd', 'data': {'fdname': 'str'} }
2487
2488 ##
2489 # @MachineInfo:
2490 #
2491 # Information describing a machine.
2492 #
2493 # @name: the name of the machine
2494 #
2495 # @alias: #optional an alias for the machine name
2496 #
2497 # @default: #optional whether the machine is default
2498 #
2499 # Since: 1.2.0
2500 ##
2501 { 'type': 'MachineInfo',
2502   'data': { 'name': 'str', '*alias': 'str',
2503             '*is-default': 'bool' } }
2504
2505 ##
2506 # @query-machines:
2507 #
2508 # Return a list of supported machines
2509 #
2510 # Returns: a list of MachineInfo
2511 #
2512 # Since: 1.2.0
2513 ##
2514 { 'command': 'query-machines', 'returns': ['MachineInfo'] }
2515
2516 ##
2517 # @CpuDefinitionInfo:
2518 #
2519 # Virtual CPU definition.
2520 #
2521 # @name: the name of the CPU definition
2522 #
2523 # Since: 1.2.0
2524 ##
2525 { 'type': 'CpuDefinitionInfo',
2526   'data': { 'name': 'str' } }
2527
2528 ##
2529 # @query-cpu-definitions:
2530 #
2531 # Return a list of supported virtual CPU definitions
2532 #
2533 # Returns: a list of CpuDefInfo
2534 #
2535 # Since: 1.2.0
2536 ##
2537 { 'command': 'query-cpu-definitions', 'returns': ['CpuDefinitionInfo'] }
2538
2539 # @AddfdInfo:
2540 #
2541 # Information about a file descriptor that was added to an fd set.
2542 #
2543 # @fdset-id: The ID of the fd set that @fd was added to.
2544 #
2545 # @fd: The file descriptor that was received via SCM rights and
2546 #      added to the fd set.
2547 #
2548 # Since: 1.2.0
2549 ##
2550 { 'type': 'AddfdInfo', 'data': {'fdset-id': 'int', 'fd': 'int'} }
2551
2552 ##
2553 # @add-fd:
2554 #
2555 # Add a file descriptor, that was passed via SCM rights, to an fd set.
2556 #
2557 # @fdset-id: #optional The ID of the fd set to add the file descriptor to.
2558 #
2559 # @opaque: #optional A free-form string that can be used to describe the fd.
2560 #
2561 # Returns: @AddfdInfo on success
2562 #          If file descriptor was not received, FdNotSupplied
2563 #          If @fdset-id does not exist, InvalidParameterValue
2564 #
2565 # Notes: The list of fd sets is shared by all monitor connections.
2566 #
2567 #        If @fdset-id is not specified, a new fd set will be created.
2568 #
2569 # Since: 1.2.0
2570 ##
2571 { 'command': 'add-fd', 'data': {'*fdset-id': 'int', '*opaque': 'str'},
2572   'returns': 'AddfdInfo' }
2573
2574 ##
2575 # @remove-fd:
2576 #
2577 # Remove a file descriptor from an fd set.
2578 #
2579 # @fdset-id: The ID of the fd set that the file descriptor belongs to.
2580 #
2581 # @fd: #optional The file descriptor that is to be removed.
2582 #
2583 # Returns: Nothing on success
2584 #          If @fdset-id or @fd is not found, FdNotFound
2585 #
2586 # Since: 1.2.0
2587 #
2588 # Notes: The list of fd sets is shared by all monitor connections.
2589 #
2590 #        If @fd is not specified, all file descriptors in @fdset-id
2591 #        will be removed.
2592 ##
2593 { 'command': 'remove-fd', 'data': {'fdset-id': 'int', '*fd': 'int'} }
2594
2595 ##
2596 # @FdsetFdInfo:
2597 #
2598 # Information about a file descriptor that belongs to an fd set.
2599 #
2600 # @fd: The file descriptor value.
2601 #
2602 # @opaque: #optional A free-form string that can be used to describe the fd.
2603 #
2604 # Since: 1.2.0
2605 ##
2606 { 'type': 'FdsetFdInfo',
2607   'data': {'fd': 'int', '*opaque': 'str'} }
2608
2609 ##
2610 # @FdsetInfo:
2611 #
2612 # Information about an fd set.
2613 #
2614 # @fdset-id: The ID of the fd set.
2615 #
2616 # @fds: A list of file descriptors that belong to this fd set.
2617 #
2618 # Since: 1.2.0
2619 ##
2620 { 'type': 'FdsetInfo',
2621   'data': {'fdset-id': 'int', 'fds': ['FdsetFdInfo']} }
2622
2623 ##
2624 # @query-fdsets:
2625 #
2626 # Return information describing all fd sets.
2627 #
2628 # Returns: A list of @FdsetInfo
2629 #
2630 # Since: 1.2.0
2631 #
2632 # Note: The list of fd sets is shared by all monitor connections.
2633 #
2634 ##
2635 { 'command': 'query-fdsets', 'returns': ['FdsetInfo'] }
2636
2637 ##
2638 # @TargetType
2639 #
2640 # Target CPU emulation type
2641 #
2642 # These parameters correspond to the softmmu binary CPU name that is currently
2643 # running.
2644 #
2645 # Since: 1.2.0
2646 ##
2647 { 'enum': 'TargetType',
2648   'data': [ 'alpha', 'arm', 'cris', 'i386', 'lm32', 'm68k', 'microblazeel',
2649             'microblaze', 'mips64el', 'mips64', 'mipsel', 'mips', 'or32',
2650             'ppc64', 'ppcemb', 'ppc', 's390x', 'sh4eb', 'sh4', 'sparc64',
2651             'sparc', 'unicore32', 'x86_64', 'xtensaeb', 'xtensa' ] }
2652
2653 ##
2654 # @TargetInfo:
2655 #
2656 # Information describing the QEMU target.
2657 #
2658 # @arch: the target architecture (eg "x86_64", "i386", etc)
2659 #
2660 # Since: 1.2.0
2661 ##
2662 { 'type': 'TargetInfo',
2663   'data': { 'arch': 'TargetType' } }
2664
2665 ##
2666 # @query-target:
2667 #
2668 # Return information about the target for this QEMU
2669 #
2670 # Returns: TargetInfo
2671 #
2672 # Since: 1.2.0
2673 ##
2674 { 'command': 'query-target', 'returns': 'TargetInfo' }
2675
2676 ##
2677 # @QKeyCode:
2678 #
2679 # An enumeration of key name.
2680 #
2681 # This is used by the send-key command.
2682 #
2683 # Since: 1.3.0
2684 ##
2685 { 'enum': 'QKeyCode',
2686   'data': [ 'shift', 'shift_r', 'alt', 'alt_r', 'altgr', 'altgr_r', 'ctrl',
2687             'ctrl_r', 'menu', 'esc', '1', '2', '3', '4', '5', '6', '7', '8',
2688             '9', '0', 'minus', 'equal', 'backspace', 'tab', 'q', 'w', 'e',
2689             'r', 't', 'y', 'u', 'i', 'o', 'p', 'bracket_left', 'bracket_right',
2690             'ret', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'semicolon',
2691             'apostrophe', 'grave_accent', 'backslash', 'z', 'x', 'c', 'v', 'b',
2692             'n', 'm', 'comma', 'dot', 'slash', 'asterisk', 'spc', 'caps_lock',
2693             'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'f10',
2694             'num_lock', 'scroll_lock', 'kp_divide', 'kp_multiply',
2695             'kp_subtract', 'kp_add', 'kp_enter', 'kp_decimal', 'sysrq', 'kp_0',
2696             'kp_1', 'kp_2', 'kp_3', 'kp_4', 'kp_5', 'kp_6', 'kp_7', 'kp_8',
2697             'kp_9', 'less', 'f11', 'f12', 'print', 'home', 'pgup', 'pgdn', 'end',
2698             'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again',
2699             'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut',
2700              'lf', 'help', 'meta_l', 'meta_r', 'compose' ] }
2701
2702 ##
2703 # @send-key:
2704 #
2705 # Send keys to guest.
2706 #
2707 # @keys: key sequence. 'keys' is the name of the key. Use a JSON array to
2708 #        press several keys simultaneously.
2709 #
2710 # @hold-time: #optional time to delay key up events, milliseconds. Defaults
2711 #             to 100
2712 #
2713 # Returns: Nothing on success
2714 #          If key is unknown or redundant, InvalidParameter
2715 #
2716 # Since: 1.3.0
2717 #
2718 ##
2719 { 'command': 'send-key',
2720   'data': { 'keys': ['QKeyCode'], '*hold-time': 'int' } }
2721
2722 ##
2723 # @screendump:
2724 #
2725 # Write a PPM of the VGA screen to a file.
2726 #
2727 # @filename: the path of a new PPM file to store the image
2728 #
2729 # Returns: Nothing on success
2730 #
2731 # Since: 0.14.0
2732 ##
2733 { 'command': 'screendump', 'data': {'filename': 'str'} }
This page took 0.176422 seconds and 4 git commands to generate.