Revert "display: move display functionality to Qt5 GUI"
[sdk/emulator/qemu.git] / qapi-schema.json
1 # -*- Mode: Python -*-
2 #
3 # QAPI Schema
4
5 # QAPI common definitions
6 { 'include': 'qapi/common.json' }
7
8 # QAPI crypto definitions
9 { 'include': 'qapi/crypto.json' }
10
11 # QAPI block definitions
12 { 'include': 'qapi/block.json' }
13
14 # QAPI event definitions
15 { 'include': 'qapi/event.json' }
16
17 # Tracing commands
18 { 'include': 'qapi/trace.json' }
19
20 # QAPI introspection
21 { 'include': 'qapi/introspect.json' }
22
23 ##
24 # @LostTickPolicy:
25 #
26 # Policy for handling lost ticks in timer devices.
27 #
28 # @discard: throw away the missed tick(s) and continue with future injection
29 #           normally.  Guest time may be delayed, unless the OS has explicit
30 #           handling of lost ticks
31 #
32 # @delay: continue to deliver ticks at the normal rate.  Guest time will be
33 #         delayed due to the late tick
34 #
35 # @merge: merge the missed tick(s) into one tick and inject.  Guest time
36 #         may be delayed, depending on how the OS reacts to the merging
37 #         of ticks
38 #
39 # @slew: deliver ticks at a higher rate to catch up with the missed tick. The
40 #        guest time should not be delayed once catchup is complete.
41 #
42 # Since: 2.0
43 ##
44 { 'enum': 'LostTickPolicy',
45   'data': ['discard', 'delay', 'merge', 'slew' ] }
46
47 # @add_client
48 #
49 # Allow client connections for VNC, Spice and socket based
50 # character devices to be passed in to QEMU via SCM_RIGHTS.
51 #
52 # @protocol: protocol name. Valid names are "vnc", "spice" or the
53 #            name of a character device (eg. from -chardev id=XXXX)
54 #
55 # @fdname: file descriptor name previously passed via 'getfd' command
56 #
57 # @skipauth: #optional whether to skip authentication. Only applies
58 #            to "vnc" and "spice" protocols
59 #
60 # @tls: #optional whether to perform TLS. Only applies to the "spice"
61 #       protocol
62 #
63 # Returns: nothing on success.
64 #
65 # Since: 0.14.0
66 ##
67 { 'command': 'add_client',
68   'data': { 'protocol': 'str', 'fdname': 'str', '*skipauth': 'bool',
69             '*tls': 'bool' } }
70
71 ##
72 # @NameInfo:
73 #
74 # Guest name information.
75 #
76 # @name: #optional The name of the guest
77 #
78 # Since 0.14.0
79 ##
80 { 'struct': 'NameInfo', 'data': {'*name': 'str'} }
81
82 ##
83 # @query-name:
84 #
85 # Return the name information of a guest.
86 #
87 # Returns: @NameInfo of the guest
88 #
89 # Since 0.14.0
90 ##
91 { 'command': 'query-name', 'returns': 'NameInfo' }
92
93 ##
94 # @KvmInfo:
95 #
96 # Information about support for KVM acceleration
97 #
98 # @enabled: true if KVM acceleration is active
99 #
100 # @present: true if KVM acceleration is built into this executable
101 #
102 # Since: 0.14.0
103 ##
104 { 'struct': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} }
105
106 ##
107 # @query-kvm:
108 #
109 # Returns information about KVM acceleration
110 #
111 # Returns: @KvmInfo
112 #
113 # Since: 0.14.0
114 ##
115 { 'command': 'query-kvm', 'returns': 'KvmInfo' }
116
117 ##
118 # @RunState
119 #
120 # An enumeration of VM run states.
121 #
122 # @debug: QEMU is running on a debugger
123 #
124 # @finish-migrate: guest is paused to finish the migration process
125 #
126 # @inmigrate: guest is paused waiting for an incoming migration.  Note
127 # that this state does not tell whether the machine will start at the
128 # end of the migration.  This depends on the command-line -S option and
129 # any invocation of 'stop' or 'cont' that has happened since QEMU was
130 # started.
131 #
132 # @internal-error: An internal error that prevents further guest execution
133 # has occurred
134 #
135 # @io-error: the last IOP has failed and the device is configured to pause
136 # on I/O errors
137 #
138 # @paused: guest has been paused via the 'stop' command
139 #
140 # @postmigrate: guest is paused following a successful 'migrate'
141 #
142 # @prelaunch: QEMU was started with -S and guest has not started
143 #
144 # @restore-vm: guest is paused to restore VM state
145 #
146 # @running: guest is actively running
147 #
148 # @save-vm: guest is paused to save the VM state
149 #
150 # @shutdown: guest is shut down (and -no-shutdown is in use)
151 #
152 # @suspended: guest is suspended (ACPI S3)
153 #
154 # @watchdog: the watchdog action is configured to pause and has been triggered
155 #
156 # @guest-panicked: guest has been panicked as a result of guest OS panic
157 ##
158 { 'enum': 'RunState',
159   'data': [ 'debug', 'inmigrate', 'internal-error', 'io-error', 'paused',
160             'postmigrate', 'prelaunch', 'finish-migrate', 'restore-vm',
161             'running', 'save-vm', 'shutdown', 'suspended', 'watchdog',
162             'guest-panicked' ] }
163
164 ##
165 # @StatusInfo:
166 #
167 # Information about VCPU run state
168 #
169 # @running: true if all VCPUs are runnable, false if not runnable
170 #
171 # @singlestep: true if VCPUs are in single-step mode
172 #
173 # @status: the virtual machine @RunState
174 #
175 # Since:  0.14.0
176 #
177 # Notes: @singlestep is enabled through the GDB stub
178 ##
179 { 'struct': 'StatusInfo',
180   'data': {'running': 'bool', 'singlestep': 'bool', 'status': 'RunState'} }
181
182 ##
183 # @query-status:
184 #
185 # Query the run status of all VCPUs
186 #
187 # Returns: @StatusInfo reflecting all VCPUs
188 #
189 # Since:  0.14.0
190 ##
191 { 'command': 'query-status', 'returns': 'StatusInfo' }
192
193 ##
194 # @UuidInfo:
195 #
196 # Guest UUID information.
197 #
198 # @UUID: the UUID of the guest
199 #
200 # Since: 0.14.0
201 #
202 # Notes: If no UUID was specified for the guest, a null UUID is returned.
203 ##
204 { 'struct': 'UuidInfo', 'data': {'UUID': 'str'} }
205
206 ##
207 # @query-uuid:
208 #
209 # Query the guest UUID information.
210 #
211 # Returns: The @UuidInfo for the guest
212 #
213 # Since 0.14.0
214 ##
215 { 'command': 'query-uuid', 'returns': 'UuidInfo' }
216
217 ##
218 # @ChardevInfo:
219 #
220 # Information about a character device.
221 #
222 # @label: the label of the character device
223 #
224 # @filename: the filename of the character device
225 #
226 # @frontend-open: shows whether the frontend device attached to this backend
227 #                 (eg. with the chardev=... option) is in open or closed state
228 #                 (since 2.1)
229 #
230 # Notes: @filename is encoded using the QEMU command line character device
231 #        encoding.  See the QEMU man page for details.
232 #
233 # Since: 0.14.0
234 ##
235 { 'struct': 'ChardevInfo', 'data': {'label': 'str',
236                                   'filename': 'str',
237                                   'frontend-open': 'bool'} }
238
239 ##
240 # @query-chardev:
241 #
242 # Returns information about current character devices.
243 #
244 # Returns: a list of @ChardevInfo
245 #
246 # Since: 0.14.0
247 ##
248 { 'command': 'query-chardev', 'returns': ['ChardevInfo'] }
249
250 ##
251 # @ChardevBackendInfo:
252 #
253 # Information about a character device backend
254 #
255 # @name: The backend name
256 #
257 # Since: 2.0
258 ##
259 { 'struct': 'ChardevBackendInfo', 'data': {'name': 'str'} }
260
261 ##
262 # @query-chardev-backends:
263 #
264 # Returns information about character device backends.
265 #
266 # Returns: a list of @ChardevBackendInfo
267 #
268 # Since: 2.0
269 ##
270 { 'command': 'query-chardev-backends', 'returns': ['ChardevBackendInfo'] }
271
272 ##
273 # @DataFormat:
274 #
275 # An enumeration of data format.
276 #
277 # @utf8: Data is a UTF-8 string (RFC 3629)
278 #
279 # @base64: Data is Base64 encoded binary (RFC 3548)
280 #
281 # Since: 1.4
282 ##
283 { 'enum': 'DataFormat',
284   'data': [ 'utf8', 'base64' ] }
285
286 ##
287 # @ringbuf-write:
288 #
289 # Write to a ring buffer character device.
290 #
291 # @device: the ring buffer character device name
292 #
293 # @data: data to write
294 #
295 # @format: #optional data encoding (default 'utf8').
296 #          - base64: data must be base64 encoded text.  Its binary
297 #            decoding gets written.
298 #          - utf8: data's UTF-8 encoding is written
299 #          - data itself is always Unicode regardless of format, like
300 #            any other string.
301 #
302 # Returns: Nothing on success
303 #
304 # Since: 1.4
305 ##
306 { 'command': 'ringbuf-write',
307   'data': {'device': 'str', 'data': 'str',
308            '*format': 'DataFormat'} }
309
310 ##
311 # @ringbuf-read:
312 #
313 # Read from a ring buffer character device.
314 #
315 # @device: the ring buffer character device name
316 #
317 # @size: how many bytes to read at most
318 #
319 # @format: #optional data encoding (default 'utf8').
320 #          - base64: the data read is returned in base64 encoding.
321 #          - utf8: the data read is interpreted as UTF-8.
322 #            Bug: can screw up when the buffer contains invalid UTF-8
323 #            sequences, NUL characters, after the ring buffer lost
324 #            data, and when reading stops because the size limit is
325 #            reached.
326 #          - The return value is always Unicode regardless of format,
327 #            like any other string.
328 #
329 # Returns: data read from the device
330 #
331 # Since: 1.4
332 ##
333 { 'command': 'ringbuf-read',
334   'data': {'device': 'str', 'size': 'int', '*format': 'DataFormat'},
335   'returns': 'str' }
336
337 ##
338 # @EventInfo:
339 #
340 # Information about a QMP event
341 #
342 # @name: The event name
343 #
344 # Since: 1.2.0
345 ##
346 { 'struct': 'EventInfo', 'data': {'name': 'str'} }
347
348 ##
349 # @query-events:
350 #
351 # Return a list of supported QMP events by this server
352 #
353 # Returns: A list of @EventInfo for all supported events
354 #
355 # Since: 1.2.0
356 ##
357 { 'command': 'query-events', 'returns': ['EventInfo'] }
358
359 ##
360 # @MigrationStats
361 #
362 # Detailed migration status.
363 #
364 # @transferred: amount of bytes already transferred to the target VM
365 #
366 # @remaining: amount of bytes remaining to be transferred to the target VM
367 #
368 # @total: total amount of bytes involved in the migration process
369 #
370 # @duplicate: number of duplicate (zero) pages (since 1.2)
371 #
372 # @skipped: number of skipped zero pages (since 1.5)
373 #
374 # @normal : number of normal pages (since 1.2)
375 #
376 # @normal-bytes: number of normal bytes sent (since 1.2)
377 #
378 # @dirty-pages-rate: number of pages dirtied by second by the
379 #        guest (since 1.3)
380 #
381 # @mbps: throughput in megabits/sec. (since 1.6)
382 #
383 # @dirty-sync-count: number of times that dirty ram was synchronized (since 2.1)
384 #
385 # Since: 0.14.0
386 ##
387 { 'struct': 'MigrationStats',
388   'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' ,
389            'duplicate': 'int', 'skipped': 'int', 'normal': 'int',
390            'normal-bytes': 'int', 'dirty-pages-rate' : 'int',
391            'mbps' : 'number', 'dirty-sync-count' : 'int' } }
392
393 ##
394 # @XBZRLECacheStats
395 #
396 # Detailed XBZRLE migration cache statistics
397 #
398 # @cache-size: XBZRLE cache size
399 #
400 # @bytes: amount of bytes already transferred to the target VM
401 #
402 # @pages: amount of pages transferred to the target VM
403 #
404 # @cache-miss: number of cache miss
405 #
406 # @cache-miss-rate: rate of cache miss (since 2.1)
407 #
408 # @overflow: number of overflows
409 #
410 # Since: 1.2
411 ##
412 { 'struct': 'XBZRLECacheStats',
413   'data': {'cache-size': 'int', 'bytes': 'int', 'pages': 'int',
414            'cache-miss': 'int', 'cache-miss-rate': 'number',
415            'overflow': 'int' } }
416
417 # @MigrationStatus:
418 #
419 # An enumeration of migration status.
420 #
421 # @none: no migration has ever happened.
422 #
423 # @setup: migration process has been initiated.
424 #
425 # @cancelling: in the process of cancelling migration.
426 #
427 # @cancelled: cancelling migration is finished.
428 #
429 # @active: in the process of doing migration.
430 #
431 # @postcopy-active: like active, but now in postcopy mode. (since 2.5)
432 #
433 # @completed: migration is finished.
434 #
435 # @failed: some error occurred during migration process.
436 #
437 # Since: 2.3
438 #
439 ##
440 { 'enum': 'MigrationStatus',
441   'data': [ 'none', 'setup', 'cancelling', 'cancelled',
442             'active', 'postcopy-active', 'completed', 'failed' ] }
443
444 ##
445 # @MigrationInfo
446 #
447 # Information about current migration process.
448 #
449 # @status: #optional @MigrationStatus describing the current migration status.
450 #          If this field is not returned, no migration process
451 #          has been initiated
452 #
453 # @ram: #optional @MigrationStats containing detailed migration
454 #       status, only returned if status is 'active' or
455 #       'completed'(since 1.2)
456 #
457 # @disk: #optional @MigrationStats containing detailed disk migration
458 #        status, only returned if status is 'active' and it is a block
459 #        migration
460 #
461 # @xbzrle-cache: #optional @XBZRLECacheStats containing detailed XBZRLE
462 #                migration statistics, only returned if XBZRLE feature is on and
463 #                status is 'active' or 'completed' (since 1.2)
464 #
465 # @total-time: #optional total amount of milliseconds since migration started.
466 #        If migration has ended, it returns the total migration
467 #        time. (since 1.2)
468 #
469 # @downtime: #optional only present when migration finishes correctly
470 #        total downtime in milliseconds for the guest.
471 #        (since 1.3)
472 #
473 # @expected-downtime: #optional only present while migration is active
474 #        expected downtime in milliseconds for the guest in last walk
475 #        of the dirty bitmap. (since 1.3)
476 #
477 # @setup-time: #optional amount of setup time in milliseconds _before_ the
478 #        iterations begin but _after_ the QMP command is issued. This is designed
479 #        to provide an accounting of any activities (such as RDMA pinning) which
480 #        may be expensive, but do not actually occur during the iterative
481 #        migration rounds themselves. (since 1.6)
482 #
483 # @x-cpu-throttle-percentage: #optional percentage of time guest cpus are being
484 #       throttled during auto-converge. This is only present when auto-converge
485 #       has started throttling guest cpus. (Since 2.5)
486 #
487 # Since: 0.14.0
488 ##
489 { 'struct': 'MigrationInfo',
490   'data': {'*status': 'MigrationStatus', '*ram': 'MigrationStats',
491            '*disk': 'MigrationStats',
492            '*xbzrle-cache': 'XBZRLECacheStats',
493            '*total-time': 'int',
494            '*expected-downtime': 'int',
495            '*downtime': 'int',
496            '*setup-time': 'int',
497            '*x-cpu-throttle-percentage': 'int'} }
498
499 ##
500 # @query-migrate
501 #
502 # Returns information about current migration process.
503 #
504 # Returns: @MigrationInfo
505 #
506 # Since: 0.14.0
507 ##
508 { 'command': 'query-migrate', 'returns': 'MigrationInfo' }
509
510 ##
511 # @MigrationCapability
512 #
513 # Migration capabilities enumeration
514 #
515 # @xbzrle: Migration supports xbzrle (Xor Based Zero Run Length Encoding).
516 #          This feature allows us to minimize migration traffic for certain work
517 #          loads, by sending compressed difference of the pages
518 #
519 # @rdma-pin-all: Controls whether or not the entire VM memory footprint is
520 #          mlock()'d on demand or all at once. Refer to docs/rdma.txt for usage.
521 #          Disabled by default. (since 2.0)
522 #
523 # @zero-blocks: During storage migration encode blocks of zeroes efficiently. This
524 #          essentially saves 1MB of zeroes per block on the wire. Enabling requires
525 #          source and target VM to support this feature. To enable it is sufficient
526 #          to enable the capability on the source VM. The feature is disabled by
527 #          default. (since 1.6)
528 #
529 # @compress: Use multiple compression threads to accelerate live migration.
530 #          This feature can help to reduce the migration traffic, by sending
531 #          compressed pages. Please note that if compress and xbzrle are both
532 #          on, compress only takes effect in the ram bulk stage, after that,
533 #          it will be disabled and only xbzrle takes effect, this can help to
534 #          minimize migration traffic. The feature is disabled by default.
535 #          (since 2.4 )
536 #
537 # @events: generate events for each migration state change
538 #          (since 2.4 )
539 #
540 # @auto-converge: If enabled, QEMU will automatically throttle down the guest
541 #          to speed up convergence of RAM migration. (since 1.6)
542 #
543 # @postcopy-ram: Start executing on the migration target before all of RAM has
544 #          been migrated, pulling the remaining pages along as needed. NOTE: If
545 #          the migration fails during postcopy the VM will fail.  (since 2.6)
546 #
547 # Since: 1.2
548 ##
549 { 'enum': 'MigrationCapability',
550   'data': ['xbzrle', 'rdma-pin-all', 'auto-converge', 'zero-blocks',
551            'compress', 'events', 'postcopy-ram'] }
552
553 ##
554 # @MigrationCapabilityStatus
555 #
556 # Migration capability information
557 #
558 # @capability: capability enum
559 #
560 # @state: capability state bool
561 #
562 # Since: 1.2
563 ##
564 { 'struct': 'MigrationCapabilityStatus',
565   'data': { 'capability' : 'MigrationCapability', 'state' : 'bool' } }
566
567 ##
568 # @migrate-set-capabilities
569 #
570 # Enable/Disable the following migration capabilities (like xbzrle)
571 #
572 # @capabilities: json array of capability modifications to make
573 #
574 # Since: 1.2
575 ##
576 { 'command': 'migrate-set-capabilities',
577   'data': { 'capabilities': ['MigrationCapabilityStatus'] } }
578
579 ##
580 # @query-migrate-capabilities
581 #
582 # Returns information about the current migration capabilities status
583 #
584 # Returns: @MigrationCapabilitiesStatus
585 #
586 # Since: 1.2
587 ##
588 { 'command': 'query-migrate-capabilities', 'returns':   ['MigrationCapabilityStatus']}
589
590 # @MigrationParameter
591 #
592 # Migration parameters enumeration
593 #
594 # @compress-level: Set the compression level to be used in live migration,
595 #          the compression level is an integer between 0 and 9, where 0 means
596 #          no compression, 1 means the best compression speed, and 9 means best
597 #          compression ratio which will consume more CPU.
598 #
599 # @compress-threads: Set compression thread count to be used in live migration,
600 #          the compression thread count is an integer between 1 and 255.
601 #
602 # @decompress-threads: Set decompression thread count to be used in live
603 #          migration, the decompression thread count is an integer between 1
604 #          and 255. Usually, decompression is at least 4 times as fast as
605 #          compression, so set the decompress-threads to the number about 1/4
606 #          of compress-threads is adequate.
607 #
608 # @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled
609 #                          when migration auto-converge is activated. The
610 #                          default value is 20. (Since 2.5)
611 #
612 # @x-cpu-throttle-increment: throttle percentage increase each time
613 #                            auto-converge detects that migration is not making
614 #                            progress. The default value is 10. (Since 2.5)
615 # Since: 2.4
616 ##
617 { 'enum': 'MigrationParameter',
618   'data': ['compress-level', 'compress-threads', 'decompress-threads',
619            'x-cpu-throttle-initial', 'x-cpu-throttle-increment'] }
620
621 #
622 # @migrate-set-parameters
623 #
624 # Set the following migration parameters
625 #
626 # @compress-level: compression level
627 #
628 # @compress-threads: compression thread count
629 #
630 # @decompress-threads: decompression thread count
631 #
632 # @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled
633 #                          when migration auto-converge is activated. The
634 #                          default value is 20. (Since 2.5)
635 #
636 # @x-cpu-throttle-increment: throttle percentage increase each time
637 #                            auto-converge detects that migration is not making
638 #                            progress. The default value is 10. (Since 2.5)
639 # Since: 2.4
640 ##
641 { 'command': 'migrate-set-parameters',
642   'data': { '*compress-level': 'int',
643             '*compress-threads': 'int',
644             '*decompress-threads': 'int',
645             '*x-cpu-throttle-initial': 'int',
646             '*x-cpu-throttle-increment': 'int'} }
647
648 #
649 # @MigrationParameters
650 #
651 # @compress-level: compression level
652 #
653 # @compress-threads: compression thread count
654 #
655 # @decompress-threads: decompression thread count
656 #
657 # @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled
658 #                          when migration auto-converge is activated. The
659 #                          default value is 20. (Since 2.5)
660 #
661 # @x-cpu-throttle-increment: throttle percentage increase each time
662 #                            auto-converge detects that migration is not making
663 #                            progress. The default value is 10. (Since 2.5)
664 #
665 # Since: 2.4
666 ##
667 { 'struct': 'MigrationParameters',
668   'data': { 'compress-level': 'int',
669             'compress-threads': 'int',
670             'decompress-threads': 'int',
671             'x-cpu-throttle-initial': 'int',
672             'x-cpu-throttle-increment': 'int'} }
673 ##
674 # @query-migrate-parameters
675 #
676 # Returns information about the current migration parameters
677 #
678 # Returns: @MigrationParameters
679 #
680 # Since: 2.4
681 ##
682 { 'command': 'query-migrate-parameters',
683   'returns': 'MigrationParameters' }
684
685 ##
686 # @client_migrate_info
687 #
688 # Set migration information for remote display.  This makes the server
689 # ask the client to automatically reconnect using the new parameters
690 # once migration finished successfully.  Only implemented for SPICE.
691 #
692 # @protocol:     must be "spice"
693 # @hostname:     migration target hostname
694 # @port:         #optional spice tcp port for plaintext channels
695 # @tls-port:     #optional spice tcp port for tls-secured channels
696 # @cert-subject: #optional server certificate subject
697 #
698 # Since: 0.14.0
699 ##
700 { 'command': 'client_migrate_info',
701   'data': { 'protocol': 'str', 'hostname': 'str', '*port': 'int',
702             '*tls-port': 'int', '*cert-subject': 'str' } }
703
704 ##
705 # @migrate-start-postcopy
706 #
707 # Followup to a migration command to switch the migration to postcopy mode.
708 # The postcopy-ram capability must be set before the original migration
709 # command.
710 #
711 # Since: 2.5
712 { 'command': 'migrate-start-postcopy' }
713
714 ##
715 # @MouseInfo:
716 #
717 # Information about a mouse device.
718 #
719 # @name: the name of the mouse device
720 #
721 # @index: the index of the mouse device
722 #
723 # @current: true if this device is currently receiving mouse events
724 #
725 # @absolute: true if this device supports absolute coordinates as input
726 #
727 # Since: 0.14.0
728 ##
729 { 'struct': 'MouseInfo',
730   'data': {'name': 'str', 'index': 'int', 'current': 'bool',
731            'absolute': 'bool'} }
732
733 ##
734 # @query-mice:
735 #
736 # Returns information about each active mouse device
737 #
738 # Returns: a list of @MouseInfo for each device
739 #
740 # Since: 0.14.0
741 ##
742 { 'command': 'query-mice', 'returns': ['MouseInfo'] }
743
744 ##
745 # @CpuInfoArch:
746 #
747 # An enumeration of cpu types that enable additional information during
748 # @query-cpus.
749 #
750 # Since: 2.6
751 ##
752 { 'enum': 'CpuInfoArch',
753   'data': ['x86', 'sparc', 'ppc', 'mips', 'tricore', 'other' ] }
754
755 ##
756 # @CpuInfo:
757 #
758 # Information about a virtual CPU
759 #
760 # @CPU: the index of the virtual CPU
761 #
762 # @current: this only exists for backwards compatibility and should be ignored
763 #
764 # @halted: true if the virtual CPU is in the halt state.  Halt usually refers
765 #          to a processor specific low power mode.
766 #
767 # @qom_path: path to the CPU object in the QOM tree (since 2.4)
768 #
769 # @thread_id: ID of the underlying host thread
770 #
771 # @arch: architecture of the cpu, which determines which additional fields
772 #        will be listed (since 2.6)
773 #
774 # Since: 0.14.0
775 #
776 # Notes: @halted is a transient state that changes frequently.  By the time the
777 #        data is sent to the client, the guest may no longer be halted.
778 ##
779 { 'union': 'CpuInfo',
780   'base': {'CPU': 'int', 'current': 'bool', 'halted': 'bool',
781            'qom_path': 'str', 'thread_id': 'int', 'arch': 'CpuInfoArch' },
782   'discriminator': 'arch',
783   'data': { 'x86': 'CpuInfoX86',
784             'sparc': 'CpuInfoSPARC',
785             'ppc': 'CpuInfoPPC',
786             'mips': 'CpuInfoMIPS',
787             'tricore': 'CpuInfoTricore',
788             'other': 'CpuInfoOther' } }
789
790 ##
791 # @CpuInfoX86:
792 #
793 # Additional information about a virtual i386 or x86_64 CPU
794 #
795 # @pc: the 64-bit instruction pointer
796 #
797 # Since 2.6
798 ##
799 { 'struct': 'CpuInfoX86', 'data': { 'pc': 'int' } }
800
801 ##
802 # @CpuInfoSPARC:
803 #
804 # Additional information about a virtual SPARC CPU
805 #
806 # @pc: the PC component of the instruction pointer
807 #
808 # @npc: the NPC component of the instruction pointer
809 #
810 # Since 2.6
811 ##
812 { 'struct': 'CpuInfoSPARC', 'data': { 'pc': 'int', 'npc': 'int' } }
813
814 ##
815 # @CpuInfoPPC:
816 #
817 # Additional information about a virtual PPC CPU
818 #
819 # @nip: the instruction pointer
820 #
821 # Since 2.6
822 ##
823 { 'struct': 'CpuInfoPPC', 'data': { 'nip': 'int' } }
824
825 ##
826 # @CpuInfoMIPS:
827 #
828 # Additional information about a virtual MIPS CPU
829 #
830 # @PC: the instruction pointer
831 #
832 # Since 2.6
833 ##
834 { 'struct': 'CpuInfoMIPS', 'data': { 'PC': 'int' } }
835
836 ##
837 # @CpuInfoTricore:
838 #
839 # Additional information about a virtual Tricore CPU
840 #
841 # @PC: the instruction pointer
842 #
843 # Since 2.6
844 ##
845 { 'struct': 'CpuInfoTricore', 'data': { 'PC': 'int' } }
846
847 ##
848 # @CpuInfoOther:
849 #
850 # No additional information is available about the virtual CPU
851 #
852 # Since 2.6
853 #
854 ##
855 { 'struct': 'CpuInfoOther', 'data': { } }
856
857 ##
858 # @query-cpus:
859 #
860 # Returns a list of information about each virtual CPU.
861 #
862 # Returns: a list of @CpuInfo for each virtual CPU
863 #
864 # Since: 0.14.0
865 ##
866 { 'command': 'query-cpus', 'returns': ['CpuInfo'] }
867
868 ##
869 # @IOThreadInfo:
870 #
871 # Information about an iothread
872 #
873 # @id: the identifier of the iothread
874 #
875 # @thread-id: ID of the underlying host thread
876 #
877 # Since: 2.0
878 ##
879 { 'struct': 'IOThreadInfo',
880   'data': {'id': 'str', 'thread-id': 'int'} }
881
882 ##
883 # @query-iothreads:
884 #
885 # Returns a list of information about each iothread.
886 #
887 # Note this list excludes the QEMU main loop thread, which is not declared
888 # using the -object iothread command-line option.  It is always the main thread
889 # of the process.
890 #
891 # Returns: a list of @IOThreadInfo for each iothread
892 #
893 # Since: 2.0
894 ##
895 { 'command': 'query-iothreads', 'returns': ['IOThreadInfo'] }
896
897 ##
898 # @NetworkAddressFamily
899 #
900 # The network address family
901 #
902 # @ipv4: IPV4 family
903 #
904 # @ipv6: IPV6 family
905 #
906 # @unix: unix socket
907 #
908 # @unknown: otherwise
909 #
910 # Since: 2.1
911 ##
912 { 'enum': 'NetworkAddressFamily',
913   'data': [ 'ipv4', 'ipv6', 'unix', 'unknown' ] }
914
915 ##
916 # @VncBasicInfo
917 #
918 # The basic information for vnc network connection
919 #
920 # @host: IP address
921 #
922 # @service: The service name of the vnc port. This may depend on the host
923 #           system's service database so symbolic names should not be relied
924 #           on.
925 #
926 # @family: address family
927 #
928 # @websocket: true in case the socket is a websocket (since 2.3).
929 #
930 # Since: 2.1
931 ##
932 { 'struct': 'VncBasicInfo',
933   'data': { 'host': 'str',
934             'service': 'str',
935             'family': 'NetworkAddressFamily',
936             'websocket': 'bool' } }
937
938 ##
939 # @VncServerInfo
940 #
941 # The network connection information for server
942 #
943 # @auth: #optional, authentication method
944 #
945 # Since: 2.1
946 ##
947 { 'struct': 'VncServerInfo',
948   'base': 'VncBasicInfo',
949   'data': { '*auth': 'str' } }
950
951 ##
952 # @VncClientInfo:
953 #
954 # Information about a connected VNC client.
955 #
956 # @x509_dname: #optional If x509 authentication is in use, the Distinguished
957 #              Name of the client.
958 #
959 # @sasl_username: #optional If SASL authentication is in use, the SASL username
960 #                 used for authentication.
961 #
962 # Since: 0.14.0
963 ##
964 { 'struct': 'VncClientInfo',
965   'base': 'VncBasicInfo',
966   'data': { '*x509_dname': 'str', '*sasl_username': 'str' } }
967
968 ##
969 # @VncInfo:
970 #
971 # Information about the VNC session.
972 #
973 # @enabled: true if the VNC server is enabled, false otherwise
974 #
975 # @host: #optional The hostname the VNC server is bound to.  This depends on
976 #        the name resolution on the host and may be an IP address.
977 #
978 # @family: #optional 'ipv6' if the host is listening for IPv6 connections
979 #                    'ipv4' if the host is listening for IPv4 connections
980 #                    'unix' if the host is listening on a unix domain socket
981 #                    'unknown' otherwise
982 #
983 # @service: #optional The service name of the server's port.  This may depends
984 #           on the host system's service database so symbolic names should not
985 #           be relied on.
986 #
987 # @auth: #optional the current authentication type used by the server
988 #        'none' if no authentication is being used
989 #        'vnc' if VNC authentication is being used
990 #        'vencrypt+plain' if VEncrypt is used with plain text authentication
991 #        'vencrypt+tls+none' if VEncrypt is used with TLS and no authentication
992 #        'vencrypt+tls+vnc' if VEncrypt is used with TLS and VNC authentication
993 #        'vencrypt+tls+plain' if VEncrypt is used with TLS and plain text auth
994 #        'vencrypt+x509+none' if VEncrypt is used with x509 and no auth
995 #        'vencrypt+x509+vnc' if VEncrypt is used with x509 and VNC auth
996 #        'vencrypt+x509+plain' if VEncrypt is used with x509 and plain text auth
997 #        'vencrypt+tls+sasl' if VEncrypt is used with TLS and SASL auth
998 #        'vencrypt+x509+sasl' if VEncrypt is used with x509 and SASL auth
999 #
1000 # @clients: a list of @VncClientInfo of all currently connected clients
1001 #
1002 # Since: 0.14.0
1003 ##
1004 { 'struct': 'VncInfo',
1005   'data': {'enabled': 'bool', '*host': 'str',
1006            '*family': 'NetworkAddressFamily',
1007            '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']} }
1008
1009 ##
1010 # @VncPriAuth:
1011 #
1012 # vnc primary authentication method.
1013 #
1014 # Since: 2.3
1015 ##
1016 { 'enum': 'VncPrimaryAuth',
1017   'data': [ 'none', 'vnc', 'ra2', 'ra2ne', 'tight', 'ultra',
1018             'tls', 'vencrypt', 'sasl' ] }
1019
1020 ##
1021 # @VncVencryptSubAuth:
1022 #
1023 # vnc sub authentication method with vencrypt.
1024 #
1025 # Since: 2.3
1026 ##
1027 { 'enum': 'VncVencryptSubAuth',
1028   'data': [ 'plain',
1029             'tls-none',  'x509-none',
1030             'tls-vnc',   'x509-vnc',
1031             'tls-plain', 'x509-plain',
1032             'tls-sasl',  'x509-sasl' ] }
1033
1034 ##
1035 # @VncInfo2:
1036 #
1037 # Information about a vnc server
1038 #
1039 # @id: vnc server name.
1040 #
1041 # @server: A list of @VncBasincInfo describing all listening sockets.
1042 #          The list can be empty (in case the vnc server is disabled).
1043 #          It also may have multiple entries: normal + websocket,
1044 #          possibly also ipv4 + ipv6 in the future.
1045 #
1046 # @clients: A list of @VncClientInfo of all currently connected clients.
1047 #           The list can be empty, for obvious reasons.
1048 #
1049 # @auth: The current authentication type used by the server
1050 #
1051 # @vencrypt: #optional The vencrypt sub authentication type used by the server,
1052 #            only specified in case auth == vencrypt.
1053 #
1054 # @display: #optional The display device the vnc server is linked to.
1055 #
1056 # Since: 2.3
1057 ##
1058 { 'struct': 'VncInfo2',
1059   'data': { 'id'        : 'str',
1060             'server'    : ['VncBasicInfo'],
1061             'clients'   : ['VncClientInfo'],
1062             'auth'      : 'VncPrimaryAuth',
1063             '*vencrypt' : 'VncVencryptSubAuth',
1064             '*display'  : 'str' } }
1065
1066 ##
1067 # @query-vnc:
1068 #
1069 # Returns information about the current VNC server
1070 #
1071 # Returns: @VncInfo
1072 #
1073 # Since: 0.14.0
1074 ##
1075 { 'command': 'query-vnc', 'returns': 'VncInfo' }
1076
1077 ##
1078 # @query-vnc-servers:
1079 #
1080 # Returns a list of vnc servers.  The list can be empty.
1081 #
1082 # Returns: a list of @VncInfo2
1083 #
1084 # Since: 2.3
1085 ##
1086 { 'command': 'query-vnc-servers', 'returns': ['VncInfo2'] }
1087
1088 ##
1089 # @SpiceBasicInfo
1090 #
1091 # The basic information for SPICE network connection
1092 #
1093 # @host: IP address
1094 #
1095 # @port: port number
1096 #
1097 # @family: address family
1098 #
1099 # Since: 2.1
1100 ##
1101 { 'struct': 'SpiceBasicInfo',
1102   'data': { 'host': 'str',
1103             'port': 'str',
1104             'family': 'NetworkAddressFamily' } }
1105
1106 ##
1107 # @SpiceServerInfo
1108 #
1109 # Information about a SPICE server
1110 #
1111 # @auth: #optional, authentication method
1112 #
1113 # Since: 2.1
1114 ##
1115 { 'struct': 'SpiceServerInfo',
1116   'base': 'SpiceBasicInfo',
1117   'data': { '*auth': 'str' } }
1118
1119 ##
1120 # @SpiceChannel
1121 #
1122 # Information about a SPICE client channel.
1123 #
1124 # @connection-id: SPICE connection id number.  All channels with the same id
1125 #                 belong to the same SPICE session.
1126 #
1127 # @channel-type: SPICE channel type number.  "1" is the main control
1128 #                channel, filter for this one if you want to track spice
1129 #                sessions only
1130 #
1131 # @channel-id: SPICE channel ID number.  Usually "0", might be different when
1132 #              multiple channels of the same type exist, such as multiple
1133 #              display channels in a multihead setup
1134 #
1135 # @tls: true if the channel is encrypted, false otherwise.
1136 #
1137 # Since: 0.14.0
1138 ##
1139 { 'struct': 'SpiceChannel',
1140   'base': 'SpiceBasicInfo',
1141   'data': {'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int',
1142            'tls': 'bool'} }
1143
1144 ##
1145 # @SpiceQueryMouseMode
1146 #
1147 # An enumeration of Spice mouse states.
1148 #
1149 # @client: Mouse cursor position is determined by the client.
1150 #
1151 # @server: Mouse cursor position is determined by the server.
1152 #
1153 # @unknown: No information is available about mouse mode used by
1154 #           the spice server.
1155 #
1156 # Note: spice/enums.h has a SpiceMouseMode already, hence the name.
1157 #
1158 # Since: 1.1
1159 ##
1160 { 'enum': 'SpiceQueryMouseMode',
1161   'data': [ 'client', 'server', 'unknown' ] }
1162
1163 ##
1164 # @SpiceInfo
1165 #
1166 # Information about the SPICE session.
1167 #
1168 # @enabled: true if the SPICE server is enabled, false otherwise
1169 #
1170 # @migrated: true if the last guest migration completed and spice
1171 #            migration had completed as well. false otherwise.
1172 #
1173 # @host: #optional The hostname the SPICE server is bound to.  This depends on
1174 #        the name resolution on the host and may be an IP address.
1175 #
1176 # @port: #optional The SPICE server's port number.
1177 #
1178 # @compiled-version: #optional SPICE server version.
1179 #
1180 # @tls-port: #optional The SPICE server's TLS port number.
1181 #
1182 # @auth: #optional the current authentication type used by the server
1183 #        'none'  if no authentication is being used
1184 #        'spice' uses SASL or direct TLS authentication, depending on command
1185 #                line options
1186 #
1187 # @mouse-mode: The mode in which the mouse cursor is displayed currently. Can
1188 #              be determined by the client or the server, or unknown if spice
1189 #              server doesn't provide this information.
1190 #
1191 #              Since: 1.1
1192 #
1193 # @channels: a list of @SpiceChannel for each active spice channel
1194 #
1195 # Since: 0.14.0
1196 ##
1197 { 'struct': 'SpiceInfo',
1198   'data': {'enabled': 'bool', 'migrated': 'bool', '*host': 'str', '*port': 'int',
1199            '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
1200            'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} }
1201
1202 ##
1203 # @query-spice
1204 #
1205 # Returns information about the current SPICE server
1206 #
1207 # Returns: @SpiceInfo
1208 #
1209 # Since: 0.14.0
1210 ##
1211 { 'command': 'query-spice', 'returns': 'SpiceInfo' }
1212
1213 ##
1214 # @BalloonInfo:
1215 #
1216 # Information about the guest balloon device.
1217 #
1218 # @actual: the number of bytes the balloon currently contains
1219 #
1220 # Since: 0.14.0
1221 #
1222 ##
1223 { 'struct': 'BalloonInfo', 'data': {'actual': 'int' } }
1224
1225 ##
1226 # @query-balloon:
1227 #
1228 # Return information about the balloon device.
1229 #
1230 # Returns: @BalloonInfo on success
1231 #          If the balloon driver is enabled but not functional because the KVM
1232 #          kernel module cannot support it, KvmMissingCap
1233 #          If no balloon device is present, DeviceNotActive
1234 #
1235 # Since: 0.14.0
1236 ##
1237 { 'command': 'query-balloon', 'returns': 'BalloonInfo' }
1238
1239 ##
1240 # @PciMemoryRange:
1241 #
1242 # A PCI device memory region
1243 #
1244 # @base: the starting address (guest physical)
1245 #
1246 # @limit: the ending address (guest physical)
1247 #
1248 # Since: 0.14.0
1249 ##
1250 { 'struct': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} }
1251
1252 ##
1253 # @PciMemoryRegion
1254 #
1255 # Information about a PCI device I/O region.
1256 #
1257 # @bar: the index of the Base Address Register for this region
1258 #
1259 # @type: 'io' if the region is a PIO region
1260 #        'memory' if the region is a MMIO region
1261 #
1262 # @prefetch: #optional if @type is 'memory', true if the memory is prefetchable
1263 #
1264 # @mem_type_64: #optional if @type is 'memory', true if the BAR is 64-bit
1265 #
1266 # Since: 0.14.0
1267 ##
1268 { 'struct': 'PciMemoryRegion',
1269   'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int',
1270            '*prefetch': 'bool', '*mem_type_64': 'bool' } }
1271
1272 ##
1273 # @PciBusInfo:
1274 #
1275 # Information about a bus of a PCI Bridge device
1276 #
1277 # @number: primary bus interface number.  This should be the number of the
1278 #          bus the device resides on.
1279 #
1280 # @secondary: secondary bus interface number.  This is the number of the
1281 #             main bus for the bridge
1282 #
1283 # @subordinate: This is the highest number bus that resides below the
1284 #               bridge.
1285 #
1286 # @io_range: The PIO range for all devices on this bridge
1287 #
1288 # @memory_range: The MMIO range for all devices on this bridge
1289 #
1290 # @prefetchable_range: The range of prefetchable MMIO for all devices on
1291 #                      this bridge
1292 #
1293 # Since: 2.4
1294 ##
1295 { 'struct': 'PciBusInfo',
1296   'data': {'number': 'int', 'secondary': 'int', 'subordinate': 'int',
1297            'io_range': 'PciMemoryRange',
1298            'memory_range': 'PciMemoryRange',
1299            'prefetchable_range': 'PciMemoryRange' } }
1300
1301 ##
1302 # @PciBridgeInfo:
1303 #
1304 # Information about a PCI Bridge device
1305 #
1306 # @bus: information about the bus the device resides on
1307 #
1308 # @devices: a list of @PciDeviceInfo for each device on this bridge
1309 #
1310 # Since: 0.14.0
1311 ##
1312 { 'struct': 'PciBridgeInfo',
1313   'data': {'bus': 'PciBusInfo', '*devices': ['PciDeviceInfo']} }
1314
1315 ##
1316 # @PciDeviceClass:
1317 #
1318 # Information about the Class of a PCI device
1319 #
1320 # @desc: #optional a string description of the device's class
1321 #
1322 # @class: the class code of the device
1323 #
1324 # Since: 2.4
1325 ##
1326 { 'struct': 'PciDeviceClass',
1327   'data': {'*desc': 'str', 'class': 'int'} }
1328
1329 ##
1330 # @PciDeviceId:
1331 #
1332 # Information about the Id of a PCI device
1333 #
1334 # @device: the PCI device id
1335 #
1336 # @vendor: the PCI vendor id
1337 #
1338 # Since: 2.4
1339 ##
1340 { 'struct': 'PciDeviceId',
1341   'data': {'device': 'int', 'vendor': 'int'} }
1342
1343 ##
1344 # @PciDeviceInfo:
1345 #
1346 # Information about a PCI device
1347 #
1348 # @bus: the bus number of the device
1349 #
1350 # @slot: the slot the device is located in
1351 #
1352 # @function: the function of the slot used by the device
1353 #
1354 # @class_info: the class of the device
1355 #
1356 # @id: the PCI device id
1357 #
1358 # @irq: #optional if an IRQ is assigned to the device, the IRQ number
1359 #
1360 # @qdev_id: the device name of the PCI device
1361 #
1362 # @pci_bridge: if the device is a PCI bridge, the bridge information
1363 #
1364 # @regions: a list of the PCI I/O regions associated with the device
1365 #
1366 # Notes: the contents of @class_info.desc are not stable and should only be
1367 #        treated as informational.
1368 #
1369 # Since: 0.14.0
1370 ##
1371 { 'struct': 'PciDeviceInfo',
1372   'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
1373            'class_info': 'PciDeviceClass', 'id': 'PciDeviceId',
1374            '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
1375            'regions': ['PciMemoryRegion']} }
1376
1377 ##
1378 # @PciInfo:
1379 #
1380 # Information about a PCI bus
1381 #
1382 # @bus: the bus index
1383 #
1384 # @devices: a list of devices on this bus
1385 #
1386 # Since: 0.14.0
1387 ##
1388 { 'struct': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} }
1389
1390 ##
1391 # @query-pci:
1392 #
1393 # Return information about the PCI bus topology of the guest.
1394 #
1395 # Returns: a list of @PciInfo for each PCI bus
1396 #
1397 # Since: 0.14.0
1398 ##
1399 { 'command': 'query-pci', 'returns': ['PciInfo'] }
1400
1401 ##
1402 # @quit:
1403 #
1404 # This command will cause the QEMU process to exit gracefully.  While every
1405 # attempt is made to send the QMP response before terminating, this is not
1406 # guaranteed.  When using this interface, a premature EOF would not be
1407 # unexpected.
1408 #
1409 # Since: 0.14.0
1410 ##
1411 { 'command': 'quit' }
1412
1413 ##
1414 # @stop:
1415 #
1416 # Stop all guest VCPU execution.
1417 #
1418 # Since:  0.14.0
1419 #
1420 # Notes:  This function will succeed even if the guest is already in the stopped
1421 #         state.  In "inmigrate" state, it will ensure that the guest
1422 #         remains paused once migration finishes, as if the -S option was
1423 #         passed on the command line.
1424 ##
1425 { 'command': 'stop' }
1426
1427 ##
1428 # @system_reset:
1429 #
1430 # Performs a hard reset of a guest.
1431 #
1432 # Since: 0.14.0
1433 ##
1434 { 'command': 'system_reset' }
1435
1436 ##
1437 # @system_powerdown:
1438 #
1439 # Requests that a guest perform a powerdown operation.
1440 #
1441 # Since: 0.14.0
1442 #
1443 # Notes: A guest may or may not respond to this command.  This command
1444 #        returning does not indicate that a guest has accepted the request or
1445 #        that it has shut down.  Many guests will respond to this command by
1446 #        prompting the user in some way.
1447 ##
1448 { 'command': 'system_powerdown' }
1449
1450 ##
1451 # @cpu:
1452 #
1453 # This command is a nop that is only provided for the purposes of compatibility.
1454 #
1455 # Since: 0.14.0
1456 #
1457 # Notes: Do not use this command.
1458 ##
1459 { 'command': 'cpu', 'data': {'index': 'int'} }
1460
1461 ##
1462 # @cpu-add
1463 #
1464 # Adds CPU with specified ID
1465 #
1466 # @id: ID of CPU to be created, valid values [0..max_cpus)
1467 #
1468 # Returns: Nothing on success
1469 #
1470 # Since 1.5
1471 ##
1472 { 'command': 'cpu-add', 'data': {'id': 'int'} }
1473
1474 ##
1475 # @memsave:
1476 #
1477 # Save a portion of guest memory to a file.
1478 #
1479 # @val: the virtual address of the guest to start from
1480 #
1481 # @size: the size of memory region to save
1482 #
1483 # @filename: the file to save the memory to as binary data
1484 #
1485 # @cpu-index: #optional the index of the virtual CPU to use for translating the
1486 #                       virtual address (defaults to CPU 0)
1487 #
1488 # Returns: Nothing on success
1489 #
1490 # Since: 0.14.0
1491 #
1492 # Notes: Errors were not reliably returned until 1.1
1493 ##
1494 { 'command': 'memsave',
1495   'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
1496
1497 ##
1498 # @pmemsave:
1499 #
1500 # Save a portion of guest physical memory to a file.
1501 #
1502 # @val: the physical address of the guest to start from
1503 #
1504 # @size: the size of memory region to save
1505 #
1506 # @filename: the file to save the memory to as binary data
1507 #
1508 # Returns: Nothing on success
1509 #
1510 # Since: 0.14.0
1511 #
1512 # Notes: Errors were not reliably returned until 1.1
1513 ##
1514 { 'command': 'pmemsave',
1515   'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
1516
1517 ##
1518 # @cont:
1519 #
1520 # Resume guest VCPU execution.
1521 #
1522 # Since:  0.14.0
1523 #
1524 # Returns:  If successful, nothing
1525 #           If QEMU was started with an encrypted block device and a key has
1526 #              not yet been set, DeviceEncrypted.
1527 #
1528 # Notes:  This command will succeed if the guest is currently running.  It
1529 #         will also succeed if the guest is in the "inmigrate" state; in
1530 #         this case, the effect of the command is to make sure the guest
1531 #         starts once migration finishes, removing the effect of the -S
1532 #         command line option if it was passed.
1533 ##
1534 { 'command': 'cont' }
1535
1536 ##
1537 # @system_wakeup:
1538 #
1539 # Wakeup guest from suspend.  Does nothing in case the guest isn't suspended.
1540 #
1541 # Since:  1.1
1542 #
1543 # Returns:  nothing.
1544 ##
1545 { 'command': 'system_wakeup' }
1546
1547 ##
1548 # @inject-nmi:
1549 #
1550 # Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or all CPUs (ppc64).
1551 #
1552 # Returns:  If successful, nothing
1553 #
1554 # Since:  0.14.0
1555 #
1556 # Note: prior to 2.1, this command was only supported for x86 and s390 VMs
1557 ##
1558 { 'command': 'inject-nmi' }
1559
1560 ##
1561 # @set_link:
1562 #
1563 # Sets the link status of a virtual network adapter.
1564 #
1565 # @name: the device name of the virtual network adapter
1566 #
1567 # @up: true to set the link status to be up
1568 #
1569 # Returns: Nothing on success
1570 #          If @name is not a valid network device, DeviceNotFound
1571 #
1572 # Since: 0.14.0
1573 #
1574 # Notes: Not all network adapters support setting link status.  This command
1575 #        will succeed even if the network adapter does not support link status
1576 #        notification.
1577 ##
1578 { 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} }
1579
1580 ##
1581 # @get_link:
1582 #
1583 # Gets the link status of a virtual network adapter.
1584 #
1585 # @name: the device name of the virtual network adapter
1586 #
1587 # Returns: on|off on success
1588 #          If @name is not a valid network device, DeviceNotFound
1589 #
1590 # Since: 2.0.0
1591 #
1592 # Notes: Not all network adapters support setting link status.  This command
1593 #        will succeed even if the network adapter does not support link status
1594 #        notification.
1595 ##
1596
1597 { 'struct': 'LinkInfo', 'data': {'is_up': 'bool'} }
1598 { 'command': 'get_link', 'data': {'name': 'str'}, 'returns': 'LinkInfo' }
1599
1600 ##
1601 # @balloon:
1602 #
1603 # Request the balloon driver to change its balloon size.
1604 #
1605 # @value: the target size of the balloon in bytes
1606 #
1607 # Returns: Nothing on success
1608 #          If the balloon driver is enabled but not functional because the KVM
1609 #            kernel module cannot support it, KvmMissingCap
1610 #          If no balloon device is present, DeviceNotActive
1611 #
1612 # Notes: This command just issues a request to the guest.  When it returns,
1613 #        the balloon size may not have changed.  A guest can change the balloon
1614 #        size independent of this command.
1615 #
1616 # Since: 0.14.0
1617 ##
1618 { 'command': 'balloon', 'data': {'value': 'int'} }
1619
1620 ##
1621 # @Abort
1622 #
1623 # This action can be used to test transaction failure.
1624 #
1625 # Since: 1.6
1626 ###
1627 { 'struct': 'Abort',
1628   'data': { } }
1629
1630 ##
1631 # @ActionCompletionMode
1632 #
1633 # An enumeration of Transactional completion modes.
1634 #
1635 # @individual: Do not attempt to cancel any other Actions if any Actions fail
1636 #              after the Transaction request succeeds. All Actions that
1637 #              can complete successfully will do so without waiting on others.
1638 #              This is the default.
1639 #
1640 # @grouped: If any Action fails after the Transaction succeeds, cancel all
1641 #           Actions. Actions do not complete until all Actions are ready to
1642 #           complete. May be rejected by Actions that do not support this
1643 #           completion mode.
1644 #
1645 # Since: 2.5
1646 ##
1647 { 'enum': 'ActionCompletionMode',
1648   'data': [ 'individual', 'grouped' ] }
1649
1650 ##
1651 # @TransactionAction
1652 #
1653 # A discriminated record of operations that can be performed with
1654 # @transaction.
1655 #
1656 # Since 1.1
1657 #
1658 # drive-backup since 1.6
1659 # abort since 1.6
1660 # blockdev-snapshot-internal-sync since 1.7
1661 # blockdev-backup since 2.3
1662 # blockdev-snapshot since 2.5
1663 # block-dirty-bitmap-add since 2.5
1664 # block-dirty-bitmap-clear since 2.5
1665 ##
1666 { 'union': 'TransactionAction',
1667   'data': {
1668        'blockdev-snapshot': 'BlockdevSnapshot',
1669        'blockdev-snapshot-sync': 'BlockdevSnapshotSync',
1670        'drive-backup': 'DriveBackup',
1671        'blockdev-backup': 'BlockdevBackup',
1672        'abort': 'Abort',
1673        'blockdev-snapshot-internal-sync': 'BlockdevSnapshotInternal',
1674        'block-dirty-bitmap-add': 'BlockDirtyBitmapAdd',
1675        'block-dirty-bitmap-clear': 'BlockDirtyBitmap'
1676    } }
1677
1678 ##
1679 # @TransactionProperties
1680 #
1681 # Optional arguments to modify the behavior of a Transaction.
1682 #
1683 # @completion-mode: #optional Controls how jobs launched asynchronously by
1684 #                   Actions will complete or fail as a group.
1685 #                   See @ActionCompletionMode for details.
1686 #
1687 # Since: 2.5
1688 ##
1689 { 'struct': 'TransactionProperties',
1690   'data': {
1691        '*completion-mode': 'ActionCompletionMode'
1692   }
1693 }
1694
1695 ##
1696 # @transaction
1697 #
1698 # Executes a number of transactionable QMP commands atomically. If any
1699 # operation fails, then the entire set of actions will be abandoned and the
1700 # appropriate error returned.
1701 #
1702 # @actions: List of @TransactionAction;
1703 #           information needed for the respective operations.
1704 #
1705 # @properties: #optional structure of additional options to control the
1706 #              execution of the transaction. See @TransactionProperties
1707 #              for additional detail.
1708 #
1709 # Returns: nothing on success
1710 #          Errors depend on the operations of the transaction
1711 #
1712 # Note: The transaction aborts on the first failure.  Therefore, there will be
1713 # information on only one failed operation returned in an error condition, and
1714 # subsequent actions will not have been attempted.
1715 #
1716 # Since 1.1
1717 ##
1718 { 'command': 'transaction',
1719   'data': { 'actions': [ 'TransactionAction' ],
1720             '*properties': 'TransactionProperties'
1721           }
1722 }
1723
1724 ##
1725 # @human-monitor-command:
1726 #
1727 # Execute a command on the human monitor and return the output.
1728 #
1729 # @command-line: the command to execute in the human monitor
1730 #
1731 # @cpu-index: #optional The CPU to use for commands that require an implicit CPU
1732 #
1733 # Returns: the output of the command as a string
1734 #
1735 # Since: 0.14.0
1736 #
1737 # Notes: This command only exists as a stop-gap.  Its use is highly
1738 #        discouraged.  The semantics of this command are not guaranteed.
1739 #
1740 #        Known limitations:
1741 #
1742 #        o This command is stateless, this means that commands that depend
1743 #          on state information (such as getfd) might not work
1744 #
1745 #       o Commands that prompt the user for data (eg. 'cont' when the block
1746 #         device is encrypted) don't currently work
1747 ##
1748 { 'command': 'human-monitor-command',
1749   'data': {'command-line': 'str', '*cpu-index': 'int'},
1750   'returns': 'str' }
1751
1752 ##
1753 # @migrate_cancel
1754 #
1755 # Cancel the current executing migration process.
1756 #
1757 # Returns: nothing on success
1758 #
1759 # Notes: This command succeeds even if there is no migration process running.
1760 #
1761 # Since: 0.14.0
1762 ##
1763 { 'command': 'migrate_cancel' }
1764
1765 ##
1766 # @migrate_set_downtime
1767 #
1768 # Set maximum tolerated downtime for migration.
1769 #
1770 # @value: maximum downtime in seconds
1771 #
1772 # Returns: nothing on success
1773 #
1774 # Since: 0.14.0
1775 ##
1776 { 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
1777
1778 ##
1779 # @migrate_set_speed
1780 #
1781 # Set maximum speed for migration.
1782 #
1783 # @value: maximum speed in bytes.
1784 #
1785 # Returns: nothing on success
1786 #
1787 # Notes: A value lesser than zero will be automatically round up to zero.
1788 #
1789 # Since: 0.14.0
1790 ##
1791 { 'command': 'migrate_set_speed', 'data': {'value': 'int'} }
1792
1793 ##
1794 # @migrate-set-cache-size
1795 #
1796 # Set XBZRLE cache size
1797 #
1798 # @value: cache size in bytes
1799 #
1800 # The size will be rounded down to the nearest power of 2.
1801 # The cache size can be modified before and during ongoing migration
1802 #
1803 # Returns: nothing on success
1804 #
1805 # Since: 1.2
1806 ##
1807 { 'command': 'migrate-set-cache-size', 'data': {'value': 'int'} }
1808
1809 ##
1810 # @query-migrate-cache-size
1811 #
1812 # query XBZRLE cache size
1813 #
1814 # Returns: XBZRLE cache size in bytes
1815 #
1816 # Since: 1.2
1817 ##
1818 { 'command': 'query-migrate-cache-size', 'returns': 'int' }
1819
1820 ##
1821 # @ObjectPropertyInfo:
1822 #
1823 # @name: the name of the property
1824 #
1825 # @type: the type of the property.  This will typically come in one of four
1826 #        forms:
1827 #
1828 #        1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
1829 #           These types are mapped to the appropriate JSON type.
1830 #
1831 #        2) A child type in the form 'child<subtype>' where subtype is a qdev
1832 #           device type name.  Child properties create the composition tree.
1833 #
1834 #        3) A link type in the form 'link<subtype>' where subtype is a qdev
1835 #           device type name.  Link properties form the device model graph.
1836 #
1837 # Since: 1.2
1838 ##
1839 { 'struct': 'ObjectPropertyInfo',
1840   'data': { 'name': 'str', 'type': 'str' } }
1841
1842 ##
1843 # @qom-list:
1844 #
1845 # This command will list any properties of a object given a path in the object
1846 # model.
1847 #
1848 # @path: the path within the object model.  See @qom-get for a description of
1849 #        this parameter.
1850 #
1851 # Returns: a list of @ObjectPropertyInfo that describe the properties of the
1852 #          object.
1853 #
1854 # Since: 1.2
1855 ##
1856 { 'command': 'qom-list',
1857   'data': { 'path': 'str' },
1858   'returns': [ 'ObjectPropertyInfo' ] }
1859
1860 ##
1861 # @qom-get:
1862 #
1863 # This command will get a property from a object model path and return the
1864 # value.
1865 #
1866 # @path: The path within the object model.  There are two forms of supported
1867 #        paths--absolute and partial paths.
1868 #
1869 #        Absolute paths are derived from the root object and can follow child<>
1870 #        or link<> properties.  Since they can follow link<> properties, they
1871 #        can be arbitrarily long.  Absolute paths look like absolute filenames
1872 #        and are prefixed  with a leading slash.
1873 #
1874 #        Partial paths look like relative filenames.  They do not begin
1875 #        with a prefix.  The matching rules for partial paths are subtle but
1876 #        designed to make specifying objects easy.  At each level of the
1877 #        composition tree, the partial path is matched as an absolute path.
1878 #        The first match is not returned.  At least two matches are searched
1879 #        for.  A successful result is only returned if only one match is
1880 #        found.  If more than one match is found, a flag is return to
1881 #        indicate that the match was ambiguous.
1882 #
1883 # @property: The property name to read
1884 #
1885 # Returns: The property value.  The type depends on the property
1886 #          type. child<> and link<> properties are returned as #str
1887 #          pathnames.  All integer property types (u8, u16, etc) are
1888 #          returned as #int.
1889 #
1890 # Since: 1.2
1891 ##
1892 { 'command': 'qom-get',
1893   'data': { 'path': 'str', 'property': 'str' },
1894   'returns': 'any' }
1895
1896 ##
1897 # @qom-set:
1898 #
1899 # This command will set a property from a object model path.
1900 #
1901 # @path: see @qom-get for a description of this parameter
1902 #
1903 # @property: the property name to set
1904 #
1905 # @value: a value who's type is appropriate for the property type.  See @qom-get
1906 #         for a description of type mapping.
1907 #
1908 # Since: 1.2
1909 ##
1910 { 'command': 'qom-set',
1911   'data': { 'path': 'str', 'property': 'str', 'value': 'any' } }
1912
1913 ##
1914 # @set_password:
1915 #
1916 # Sets the password of a remote display session.
1917 #
1918 # @protocol: `vnc' to modify the VNC server password
1919 #            `spice' to modify the Spice server password
1920 #
1921 # @password: the new password
1922 #
1923 # @connected: #optional how to handle existing clients when changing the
1924 #                       password.  If nothing is specified, defaults to `keep'
1925 #                       `fail' to fail the command if clients are connected
1926 #                       `disconnect' to disconnect existing clients
1927 #                       `keep' to maintain existing clients
1928 #
1929 # Returns: Nothing on success
1930 #          If Spice is not enabled, DeviceNotFound
1931 #
1932 # Since: 0.14.0
1933 ##
1934 { 'command': 'set_password',
1935   'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} }
1936
1937 ##
1938 # @expire_password:
1939 #
1940 # Expire the password of a remote display server.
1941 #
1942 # @protocol: the name of the remote display protocol `vnc' or `spice'
1943 #
1944 # @time: when to expire the password.
1945 #        `now' to expire the password immediately
1946 #        `never' to cancel password expiration
1947 #        `+INT' where INT is the number of seconds from now (integer)
1948 #        `INT' where INT is the absolute time in seconds
1949 #
1950 # Returns: Nothing on success
1951 #          If @protocol is `spice' and Spice is not active, DeviceNotFound
1952 #
1953 # Since: 0.14.0
1954 #
1955 # Notes: Time is relative to the server and currently there is no way to
1956 #        coordinate server time with client time.  It is not recommended to
1957 #        use the absolute time version of the @time parameter unless you're
1958 #        sure you are on the same machine as the QEMU instance.
1959 ##
1960 { 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} }
1961
1962 ##
1963 # @change-vnc-password:
1964 #
1965 # Change the VNC server password.
1966 #
1967 # @password:  the new password to use with VNC authentication
1968 #
1969 # Since: 1.1
1970 #
1971 # Notes:  An empty password in this command will set the password to the empty
1972 #         string.  Existing clients are unaffected by executing this command.
1973 ##
1974 { 'command': 'change-vnc-password', 'data': {'password': 'str'} }
1975
1976 ##
1977 # @change:
1978 #
1979 # This command is multiple commands multiplexed together.
1980 #
1981 # @device: This is normally the name of a block device but it may also be 'vnc'.
1982 #          when it's 'vnc', then sub command depends on @target
1983 #
1984 # @target: If @device is a block device, then this is the new filename.
1985 #          If @device is 'vnc', then if the value 'password' selects the vnc
1986 #          change password command.   Otherwise, this specifies a new server URI
1987 #          address to listen to for VNC connections.
1988 #
1989 # @arg:    If @device is a block device, then this is an optional format to open
1990 #          the device with.
1991 #          If @device is 'vnc' and @target is 'password', this is the new VNC
1992 #          password to set.  If this argument is an empty string, then no future
1993 #          logins will be allowed.
1994 #
1995 # Returns: Nothing on success.
1996 #          If @device is not a valid block device, DeviceNotFound
1997 #          If the new block device is encrypted, DeviceEncrypted.  Note that
1998 #          if this error is returned, the device has been opened successfully
1999 #          and an additional call to @block_passwd is required to set the
2000 #          device's password.  The behavior of reads and writes to the block
2001 #          device between when these calls are executed is undefined.
2002 #
2003 # Notes:  This interface is deprecated, and it is strongly recommended that you
2004 #         avoid using it.  For changing block devices, use
2005 #         blockdev-change-medium; for changing VNC parameters, use
2006 #         change-vnc-password.
2007 #
2008 # Since: 0.14.0
2009 ##
2010 { 'command': 'change',
2011   'data': {'device': 'str', 'target': 'str', '*arg': 'str'} }
2012
2013 ##
2014 # @ObjectTypeInfo:
2015 #
2016 # This structure describes a search result from @qom-list-types
2017 #
2018 # @name: the type name found in the search
2019 #
2020 # Since: 1.1
2021 #
2022 # Notes: This command is experimental and may change syntax in future releases.
2023 ##
2024 { 'struct': 'ObjectTypeInfo',
2025   'data': { 'name': 'str' } }
2026
2027 ##
2028 # @qom-list-types:
2029 #
2030 # This command will return a list of types given search parameters
2031 #
2032 # @implements: if specified, only return types that implement this type name
2033 #
2034 # @abstract: if true, include abstract types in the results
2035 #
2036 # Returns: a list of @ObjectTypeInfo or an empty list if no results are found
2037 #
2038 # Since: 1.1
2039 ##
2040 { 'command': 'qom-list-types',
2041   'data': { '*implements': 'str', '*abstract': 'bool' },
2042   'returns': [ 'ObjectTypeInfo' ] }
2043
2044 ##
2045 # @DevicePropertyInfo:
2046 #
2047 # Information about device properties.
2048 #
2049 # @name: the name of the property
2050 # @type: the typename of the property
2051 # @description: #optional if specified, the description of the property.
2052 #               (since 2.2)
2053 #
2054 # Since: 1.2
2055 ##
2056 { 'struct': 'DevicePropertyInfo',
2057   'data': { 'name': 'str', 'type': 'str', '*description': 'str' } }
2058
2059 ##
2060 # @device-list-properties:
2061 #
2062 # List properties associated with a device.
2063 #
2064 # @typename: the type name of a device
2065 #
2066 # Returns: a list of DevicePropertyInfo describing a devices properties
2067 #
2068 # Since: 1.2
2069 ##
2070 { 'command': 'device-list-properties',
2071   'data': { 'typename': 'str'},
2072   'returns': [ 'DevicePropertyInfo' ] }
2073
2074 ##
2075 # @migrate
2076 #
2077 # Migrates the current running guest to another Virtual Machine.
2078 #
2079 # @uri: the Uniform Resource Identifier of the destination VM
2080 #
2081 # @blk: #optional do block migration (full disk copy)
2082 #
2083 # @inc: #optional incremental disk copy migration
2084 #
2085 # @detach: this argument exists only for compatibility reasons and
2086 #          is ignored by QEMU
2087 #
2088 # Returns: nothing on success
2089 #
2090 # Since: 0.14.0
2091 ##
2092 { 'command': 'migrate',
2093   'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
2094
2095 ##
2096 # @migrate-incoming
2097 #
2098 # Start an incoming migration, the qemu must have been started
2099 # with -incoming defer
2100 #
2101 # @uri: The Uniform Resource Identifier identifying the source or
2102 #       address to listen on
2103 #
2104 # Returns: nothing on success
2105 #
2106 # Since: 2.3
2107 # Note: It's a bad idea to use a string for the uri, but it needs to stay
2108 # compatible with -incoming and the format of the uri is already exposed
2109 # above libvirt
2110 ##
2111 { 'command': 'migrate-incoming', 'data': {'uri': 'str' } }
2112
2113 # @xen-save-devices-state:
2114 #
2115 # Save the state of all devices to file. The RAM and the block devices
2116 # of the VM are not saved by this command.
2117 #
2118 # @filename: the file to save the state of the devices to as binary
2119 # data. See xen-save-devices-state.txt for a description of the binary
2120 # format.
2121 #
2122 # Returns: Nothing on success
2123 #
2124 # Since: 1.1
2125 ##
2126 { 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} }
2127
2128 ##
2129 # @xen-set-global-dirty-log
2130 #
2131 # Enable or disable the global dirty log mode.
2132 #
2133 # @enable: true to enable, false to disable.
2134 #
2135 # Returns: nothing
2136 #
2137 # Since: 1.3
2138 ##
2139 { 'command': 'xen-set-global-dirty-log', 'data': { 'enable': 'bool' } }
2140
2141 ##
2142 # @device_del:
2143 #
2144 # Remove a device from a guest
2145 #
2146 # @id: the name or QOM path of the device
2147 #
2148 # Returns: Nothing on success
2149 #          If @id is not a valid device, DeviceNotFound
2150 #
2151 # Notes: When this command completes, the device may not be removed from the
2152 #        guest.  Hot removal is an operation that requires guest cooperation.
2153 #        This command merely requests that the guest begin the hot removal
2154 #        process.  Completion of the device removal process is signaled with a
2155 #        DEVICE_DELETED event. Guest reset will automatically complete removal
2156 #        for all devices.
2157 #
2158 # Since: 0.14.0
2159 ##
2160 { 'command': 'device_del', 'data': {'id': 'str'} }
2161
2162 ##
2163 # @DumpGuestMemoryFormat:
2164 #
2165 # An enumeration of guest-memory-dump's format.
2166 #
2167 # @elf: elf format
2168 #
2169 # @kdump-zlib: kdump-compressed format with zlib-compressed
2170 #
2171 # @kdump-lzo: kdump-compressed format with lzo-compressed
2172 #
2173 # @kdump-snappy: kdump-compressed format with snappy-compressed
2174 #
2175 # Since: 2.0
2176 ##
2177 { 'enum': 'DumpGuestMemoryFormat',
2178   'data': [ 'elf', 'kdump-zlib', 'kdump-lzo', 'kdump-snappy' ] }
2179
2180 ##
2181 # @dump-guest-memory
2182 #
2183 # Dump guest's memory to vmcore. It is a synchronous operation that can take
2184 # very long depending on the amount of guest memory.
2185 #
2186 # @paging: if true, do paging to get guest's memory mapping. This allows
2187 #          using gdb to process the core file.
2188 #
2189 #          IMPORTANT: this option can make QEMU allocate several gigabytes
2190 #                     of RAM. This can happen for a large guest, or a
2191 #                     malicious guest pretending to be large.
2192 #
2193 #          Also, paging=true has the following limitations:
2194 #
2195 #             1. The guest may be in a catastrophic state or can have corrupted
2196 #                memory, which cannot be trusted
2197 #             2. The guest can be in real-mode even if paging is enabled. For
2198 #                example, the guest uses ACPI to sleep, and ACPI sleep state
2199 #                goes in real-mode
2200 #             3. Currently only supported on i386 and x86_64.
2201 #
2202 # @protocol: the filename or file descriptor of the vmcore. The supported
2203 #            protocols are:
2204 #
2205 #            1. file: the protocol starts with "file:", and the following
2206 #               string is the file's path.
2207 #            2. fd: the protocol starts with "fd:", and the following string
2208 #               is the fd's name.
2209 #
2210 # @detach: #optional if true, QMP will return immediately rather than
2211 #          waiting for the dump to finish. The user can track progress
2212 #          using "query-dump". (since 2.6).
2213 #
2214 # @begin: #optional if specified, the starting physical address.
2215 #
2216 # @length: #optional if specified, the memory size, in bytes. If you don't
2217 #          want to dump all guest's memory, please specify the start @begin
2218 #          and @length
2219 #
2220 # @format: #optional if specified, the format of guest memory dump. But non-elf
2221 #          format is conflict with paging and filter, ie. @paging, @begin and
2222 #          @length is not allowed to be specified with non-elf @format at the
2223 #          same time (since 2.0)
2224 #
2225 # Returns: nothing on success
2226 #
2227 # Since: 1.2
2228 ##
2229 { 'command': 'dump-guest-memory',
2230   'data': { 'paging': 'bool', 'protocol': 'str', '*detach': 'bool',
2231             '*begin': 'int', '*length': 'int',
2232             '*format': 'DumpGuestMemoryFormat'} }
2233
2234 ##
2235 # @DumpStatus
2236 #
2237 # Describe the status of a long-running background guest memory dump.
2238 #
2239 # @none: no dump-guest-memory has started yet.
2240 #
2241 # @active: there is one dump running in background.
2242 #
2243 # @completed: the last dump has finished successfully.
2244 #
2245 # @failed: the last dump has failed.
2246 #
2247 # Since 2.6
2248 ##
2249 { 'enum': 'DumpStatus',
2250   'data': [ 'none', 'active', 'completed', 'failed' ] }
2251
2252 ##
2253 # @DumpQueryResult
2254 #
2255 # The result format for 'query-dump'.
2256 #
2257 # @status: enum of @DumpStatus, which shows current dump status
2258 #
2259 # @completed: bytes written in latest dump (uncompressed)
2260 #
2261 # @total: total bytes to be written in latest dump (uncompressed)
2262 #
2263 # Since 2.6
2264 ##
2265 { 'struct': 'DumpQueryResult',
2266   'data': { 'status': 'DumpStatus',
2267             'completed': 'int',
2268             'total': 'int' } }
2269
2270 ##
2271 # @query-dump
2272 #
2273 # Query latest dump status.
2274 #
2275 # Returns: A @DumpStatus object showing the dump status.
2276 #
2277 # Since: 2.6
2278 ##
2279 { 'command': 'query-dump', 'returns': 'DumpQueryResult' }
2280
2281 ##
2282 # @DumpGuestMemoryCapability:
2283 #
2284 # A list of the available formats for dump-guest-memory
2285 #
2286 # Since: 2.0
2287 ##
2288 { 'struct': 'DumpGuestMemoryCapability',
2289   'data': {
2290       'formats': ['DumpGuestMemoryFormat'] } }
2291
2292 ##
2293 # @query-dump-guest-memory-capability:
2294 #
2295 # Returns the available formats for dump-guest-memory
2296 #
2297 # Returns:  A @DumpGuestMemoryCapability object listing available formats for
2298 #           dump-guest-memory
2299 #
2300 # Since: 2.0
2301 ##
2302 { 'command': 'query-dump-guest-memory-capability',
2303   'returns': 'DumpGuestMemoryCapability' }
2304
2305 ##
2306 # @dump-skeys
2307 #
2308 # Dump guest's storage keys
2309 #
2310 # @filename: the path to the file to dump to
2311 #
2312 # This command is only supported on s390 architecture.
2313 #
2314 # Since: 2.5
2315 ##
2316 { 'command': 'dump-skeys',
2317   'data': { 'filename': 'str' } }
2318
2319 ##
2320 # @netdev_add:
2321 #
2322 # Add a network backend.
2323 #
2324 # @type: the type of network backend.  Current valid values are 'user', 'tap',
2325 #        'vde', 'socket', 'dump' and 'bridge'
2326 #
2327 # @id: the name of the new network backend
2328 #
2329 # Additional arguments depend on the type.
2330 #
2331 # TODO This command effectively bypasses QAPI completely due to its
2332 # "additional arguments" business.  It shouldn't have been added to
2333 # the schema in this form.  It should be qapified properly, or
2334 # replaced by a properly qapified command.
2335 #
2336 # Since: 0.14.0
2337 #
2338 # Returns: Nothing on success
2339 #          If @type is not a valid network backend, DeviceNotFound
2340 ##
2341 { 'command': 'netdev_add',
2342   'data': {'type': 'str', 'id': 'str'},
2343   'gen': false }                # so we can get the additional arguments
2344
2345 ##
2346 # @netdev_del:
2347 #
2348 # Remove a network backend.
2349 #
2350 # @id: the name of the network backend to remove
2351 #
2352 # Returns: Nothing on success
2353 #          If @id is not a valid network backend, DeviceNotFound
2354 #
2355 # Since: 0.14.0
2356 ##
2357 { 'command': 'netdev_del', 'data': {'id': 'str'} }
2358
2359 ##
2360 # @object-add:
2361 #
2362 # Create a QOM object.
2363 #
2364 # @qom-type: the class name for the object to be created
2365 #
2366 # @id: the name of the new object
2367 #
2368 # @props: #optional a dictionary of properties to be passed to the backend
2369 #
2370 # Returns: Nothing on success
2371 #          Error if @qom-type is not a valid class name
2372 #
2373 # Since: 2.0
2374 ##
2375 { 'command': 'object-add',
2376   'data': {'qom-type': 'str', 'id': 'str', '*props': 'any'} }
2377
2378 ##
2379 # @object-del:
2380 #
2381 # Remove a QOM object.
2382 #
2383 # @id: the name of the QOM object to remove
2384 #
2385 # Returns: Nothing on success
2386 #          Error if @id is not a valid id for a QOM object
2387 #
2388 # Since: 2.0
2389 ##
2390 { 'command': 'object-del', 'data': {'id': 'str'} }
2391
2392 ##
2393 # @NetdevNoneOptions
2394 #
2395 # Use it alone to have zero network devices.
2396 #
2397 # Since 1.2
2398 ##
2399 { 'struct': 'NetdevNoneOptions',
2400   'data': { } }
2401
2402 ##
2403 # @NetLegacyNicOptions
2404 #
2405 # Create a new Network Interface Card.
2406 #
2407 # @netdev: #optional id of -netdev to connect to
2408 #
2409 # @macaddr: #optional MAC address
2410 #
2411 # @model: #optional device model (e1000, rtl8139, virtio etc.)
2412 #
2413 # @addr: #optional PCI device address
2414 #
2415 # @vectors: #optional number of MSI-x vectors, 0 to disable MSI-X
2416 #
2417 # Since 1.2
2418 ##
2419 { 'struct': 'NetLegacyNicOptions',
2420   'data': {
2421     '*netdev':  'str',
2422     '*macaddr': 'str',
2423     '*model':   'str',
2424     '*addr':    'str',
2425     '*vectors': 'uint32' } }
2426
2427 ##
2428 # @String
2429 #
2430 # A fat type wrapping 'str', to be embedded in lists.
2431 #
2432 # Since 1.2
2433 ##
2434 { 'struct': 'String',
2435   'data': {
2436     'str': 'str' } }
2437
2438 ##
2439 # @NetdevUserOptions
2440 #
2441 # Use the user mode network stack which requires no administrator privilege to
2442 # run.
2443 #
2444 # @hostname: #optional client hostname reported by the builtin DHCP server
2445 #
2446 # @restrict: #optional isolate the guest from the host
2447 #
2448 # @ipv4: #optional whether to support IPv4, default true for enabled
2449 #        (since 2.6)
2450 #
2451 # @ipv6: #optional whether to support IPv6, default true for enabled
2452 #        (since 2.6)
2453 #
2454 # @ip: #optional legacy parameter, use net= instead
2455 #
2456 # @net: #optional IP network address that the guest will see, in the
2457 #       form addr[/netmask] The netmask is optional, and can be
2458 #       either in the form a.b.c.d or as a number of valid top-most
2459 #       bits. Default is 10.0.2.0/24.
2460 #
2461 # @host: #optional guest-visible address of the host
2462 #
2463 # @tftp: #optional root directory of the built-in TFTP server
2464 #
2465 # @bootfile: #optional BOOTP filename, for use with tftp=
2466 #
2467 # @dhcpstart: #optional the first of the 16 IPs the built-in DHCP server can
2468 #             assign
2469 #
2470 # @dns: #optional guest-visible address of the virtual nameserver
2471 #
2472 # @dnssearch: #optional list of DNS suffixes to search, passed as DHCP option
2473 #             to the guest
2474 #
2475 # @ipv6-prefix: #optional IPv6 network prefix (default is fec0::) (since
2476 #               2.6). The network prefix is given in the usual
2477 #               hexadecimal IPv6 address notation.
2478 #
2479 # @ipv6-prefixlen: #optional IPv6 network prefix length (default is 64)
2480 #                  (since 2.6)
2481 #
2482 # @ipv6-host: #optional guest-visible IPv6 address of the host (since 2.6)
2483 #
2484 # @ipv6-dns: #optional guest-visible IPv6 address of the virtual
2485 #            nameserver (since 2.6)
2486 #
2487 # @smb: #optional root directory of the built-in SMB server
2488 #
2489 # @smbserver: #optional IP address of the built-in SMB server
2490 #
2491 # @hostfwd: #optional redirect incoming TCP or UDP host connections to guest
2492 #           endpoints
2493 #
2494 # @guestfwd: #optional forward guest TCP connections
2495 #
2496 # Since 1.2
2497 ##
2498 { 'struct': 'NetdevUserOptions',
2499   'data': {
2500     '*hostname':  'str',
2501     '*restrict':  'bool',
2502     '*ipv4':      'bool',
2503     '*ipv6':      'bool',
2504     '*ip':        'str',
2505     '*net':       'str',
2506     '*host':      'str',
2507     '*tftp':      'str',
2508     '*bootfile':  'str',
2509     '*dhcpstart': 'str',
2510     '*dns':       'str',
2511     '*dnssearch': ['String'],
2512     '*ipv6-prefix':      'str',
2513     '*ipv6-prefixlen':   'int',
2514     '*ipv6-host':        'str',
2515     '*ipv6-dns':         'str',
2516     '*smb':       'str',
2517     '*smbserver': 'str',
2518     '*hostfwd':   ['String'],
2519     '*guestfwd':  ['String'] } }
2520
2521 ##
2522 # @NetdevTapOptions
2523 #
2524 # Connect the host TAP network interface name to the VLAN.
2525 #
2526 # @ifname: #optional interface name
2527 #
2528 # @fd: #optional file descriptor of an already opened tap
2529 #
2530 # @fds: #optional multiple file descriptors of already opened multiqueue capable
2531 # tap
2532 #
2533 # @script: #optional script to initialize the interface
2534 #
2535 # @downscript: #optional script to shut down the interface
2536 #
2537 # @helper: #optional command to execute to configure bridge
2538 #
2539 # @sndbuf: #optional send buffer limit. Understands [TGMKkb] suffixes.
2540 #
2541 # @vnet_hdr: #optional enable the IFF_VNET_HDR flag on the tap interface
2542 #
2543 # @vhost: #optional enable vhost-net network accelerator
2544 #
2545 # @vhostfd: #optional file descriptor of an already opened vhost net device
2546 #
2547 # @vhostfds: #optional file descriptors of multiple already opened vhost net
2548 # devices
2549 #
2550 # @vhostforce: #optional vhost on for non-MSIX virtio guests
2551 #
2552 # @queues: #optional number of queues to be created for multiqueue capable tap
2553 #
2554 # Since 1.2
2555 ##
2556 { 'struct': 'NetdevTapOptions',
2557   'data': {
2558     '*ifname':     'str',
2559     '*fd':         'str',
2560     '*fds':        'str',
2561     '*script':     'str',
2562     '*downscript': 'str',
2563     '*helper':     'str',
2564     '*sndbuf':     'size',
2565     '*vnet_hdr':   'bool',
2566     '*vhost':      'bool',
2567     '*vhostfd':    'str',
2568     '*vhostfds':   'str',
2569     '*vhostforce': 'bool',
2570     '*queues':     'uint32'} }
2571
2572 ##
2573 # @NetdevSocketOptions
2574 #
2575 # Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP
2576 # socket connection.
2577 #
2578 # @fd: #optional file descriptor of an already opened socket
2579 #
2580 # @listen: #optional port number, and optional hostname, to listen on
2581 #
2582 # @connect: #optional port number, and optional hostname, to connect to
2583 #
2584 # @mcast: #optional UDP multicast address and port number
2585 #
2586 # @localaddr: #optional source address and port for multicast and udp packets
2587 #
2588 # @udp: #optional UDP unicast address and port number
2589 #
2590 # Since 1.2
2591 ##
2592 { 'struct': 'NetdevSocketOptions',
2593   'data': {
2594     '*fd':        'str',
2595     '*listen':    'str',
2596     '*connect':   'str',
2597     '*mcast':     'str',
2598     '*localaddr': 'str',
2599     '*udp':       'str' } }
2600
2601 ##
2602 # @NetdevL2TPv3Options
2603 #
2604 # Connect the VLAN to Ethernet over L2TPv3 Static tunnel
2605 #
2606 # @src: source address
2607 #
2608 # @dst: destination address
2609 #
2610 # @srcport: #optional source port - mandatory for udp, optional for ip
2611 #
2612 # @dstport: #optional destination port - mandatory for udp, optional for ip
2613 #
2614 # @ipv6: #optional - force the use of ipv6
2615 #
2616 # @udp: #optional - use the udp version of l2tpv3 encapsulation
2617 #
2618 # @cookie64: #optional - use 64 bit coookies
2619 #
2620 # @counter: #optional have sequence counter
2621 #
2622 # @pincounter: #optional pin sequence counter to zero -
2623 #              workaround for buggy implementations or
2624 #              networks with packet reorder
2625 #
2626 # @txcookie: #optional 32 or 64 bit transmit cookie
2627 #
2628 # @rxcookie: #optional 32 or 64 bit receive cookie
2629 #
2630 # @txsession: 32 bit transmit session
2631 #
2632 # @rxsession: #optional 32 bit receive session - if not specified
2633 #             set to the same value as transmit
2634 #
2635 # @offset: #optional additional offset - allows the insertion of
2636 #          additional application-specific data before the packet payload
2637 #
2638 # Since 2.1
2639 ##
2640 { 'struct': 'NetdevL2TPv3Options',
2641   'data': {
2642     'src':          'str',
2643     'dst':          'str',
2644     '*srcport':     'str',
2645     '*dstport':     'str',
2646     '*ipv6':        'bool',
2647     '*udp':         'bool',
2648     '*cookie64':    'bool',
2649     '*counter':     'bool',
2650     '*pincounter':  'bool',
2651     '*txcookie':    'uint64',
2652     '*rxcookie':    'uint64',
2653     'txsession':    'uint32',
2654     '*rxsession':   'uint32',
2655     '*offset':      'uint32' } }
2656
2657 ##
2658 # @NetdevVdeOptions
2659 #
2660 # Connect the VLAN to a vde switch running on the host.
2661 #
2662 # @sock: #optional socket path
2663 #
2664 # @port: #optional port number
2665 #
2666 # @group: #optional group owner of socket
2667 #
2668 # @mode: #optional permissions for socket
2669 #
2670 # Since 1.2
2671 ##
2672 { 'struct': 'NetdevVdeOptions',
2673   'data': {
2674     '*sock':  'str',
2675     '*port':  'uint16',
2676     '*group': 'str',
2677     '*mode':  'uint16' } }
2678
2679 ##
2680 # @NetdevDumpOptions
2681 #
2682 # Dump VLAN network traffic to a file.
2683 #
2684 # @len: #optional per-packet size limit (64k default). Understands [TGMKkb]
2685 # suffixes.
2686 #
2687 # @file: #optional dump file path (default is qemu-vlan0.pcap)
2688 #
2689 # Since 1.2
2690 ##
2691 { 'struct': 'NetdevDumpOptions',
2692   'data': {
2693     '*len':  'size',
2694     '*file': 'str' } }
2695
2696 ##
2697 # @NetdevBridgeOptions
2698 #
2699 # Connect a host TAP network interface to a host bridge device.
2700 #
2701 # @br: #optional bridge name
2702 #
2703 # @helper: #optional command to execute to configure bridge
2704 #
2705 # Since 1.2
2706 ##
2707 { 'struct': 'NetdevBridgeOptions',
2708   'data': {
2709     '*br':     'str',
2710     '*helper': 'str' } }
2711
2712 ##
2713 # @NetdevHubPortOptions
2714 #
2715 # Connect two or more net clients through a software hub.
2716 #
2717 # @hubid: hub identifier number
2718 #
2719 # Since 1.2
2720 ##
2721 { 'struct': 'NetdevHubPortOptions',
2722   'data': {
2723     'hubid':     'int32' } }
2724
2725 ##
2726 # @NetdevNetmapOptions
2727 #
2728 # Connect a client to a netmap-enabled NIC or to a VALE switch port
2729 #
2730 # @ifname: Either the name of an existing network interface supported by
2731 #          netmap, or the name of a VALE port (created on the fly).
2732 #          A VALE port name is in the form 'valeXXX:YYY', where XXX and
2733 #          YYY are non-negative integers. XXX identifies a switch and
2734 #          YYY identifies a port of the switch. VALE ports having the
2735 #          same XXX are therefore connected to the same switch.
2736 #
2737 # @devname: #optional path of the netmap device (default: '/dev/netmap').
2738 #
2739 # Since 2.0
2740 ##
2741 { 'struct': 'NetdevNetmapOptions',
2742   'data': {
2743     'ifname':     'str',
2744     '*devname':    'str' } }
2745
2746 ##
2747 # @NetdevVhostUserOptions
2748 #
2749 # Vhost-user network backend
2750 #
2751 # @chardev: name of a unix socket chardev
2752 #
2753 # @vhostforce: #optional vhost on for non-MSIX virtio guests (default: false).
2754 #
2755 # @queues: #optional number of queues to be created for multiqueue vhost-user
2756 #          (default: 1) (Since 2.5)
2757 #
2758 # Since 2.1
2759 ##
2760 { 'struct': 'NetdevVhostUserOptions',
2761   'data': {
2762     'chardev':        'str',
2763     '*vhostforce':    'bool',
2764     '*queues':        'int' } }
2765
2766 ##
2767 # @NetClientOptions
2768 #
2769 # A discriminated record of network device traits.
2770 #
2771 # Since 1.2
2772 #
2773 # 'l2tpv3' - since 2.1
2774 #
2775 ##
2776 { 'union': 'NetClientOptions',
2777   'data': {
2778     'none':     'NetdevNoneOptions',
2779     'nic':      'NetLegacyNicOptions',
2780     'user':     'NetdevUserOptions',
2781     'tap':      'NetdevTapOptions',
2782     'l2tpv3':   'NetdevL2TPv3Options',
2783     'socket':   'NetdevSocketOptions',
2784     'vde':      'NetdevVdeOptions',
2785     'dump':     'NetdevDumpOptions',
2786     'bridge':   'NetdevBridgeOptions',
2787     'hubport':  'NetdevHubPortOptions',
2788     'netmap':   'NetdevNetmapOptions',
2789     'vhost-user': 'NetdevVhostUserOptions' } }
2790
2791 ##
2792 # @NetLegacy
2793 #
2794 # Captures the configuration of a network device; legacy.
2795 #
2796 # @vlan: #optional vlan number
2797 #
2798 # @id: #optional identifier for monitor commands
2799 #
2800 # @name: #optional identifier for monitor commands, ignored if @id is present
2801 #
2802 # @opts: device type specific properties (legacy)
2803 #
2804 # Since 1.2
2805 ##
2806 { 'struct': 'NetLegacy',
2807   'data': {
2808     '*vlan': 'int32',
2809     '*id':   'str',
2810     '*name': 'str',
2811     'opts':  'NetClientOptions' } }
2812
2813 ##
2814 # @Netdev
2815 #
2816 # Captures the configuration of a network device.
2817 #
2818 # @id: identifier for monitor commands.
2819 #
2820 # @opts: device type specific properties
2821 #
2822 # Since 1.2
2823 ##
2824 { 'struct': 'Netdev',
2825   'data': {
2826     'id':   'str',
2827     'opts': 'NetClientOptions' } }
2828
2829 ##
2830 # @NetFilterDirection
2831 #
2832 # Indicates whether a netfilter is attached to a netdev's transmit queue or
2833 # receive queue or both.
2834 #
2835 # @all: the filter is attached both to the receive and the transmit
2836 #       queue of the netdev (default).
2837 #
2838 # @rx: the filter is attached to the receive queue of the netdev,
2839 #      where it will receive packets sent to the netdev.
2840 #
2841 # @tx: the filter is attached to the transmit queue of the netdev,
2842 #      where it will receive packets sent by the netdev.
2843 #
2844 # Since 2.5
2845 ##
2846 { 'enum': 'NetFilterDirection',
2847   'data': [ 'all', 'rx', 'tx' ] }
2848
2849 ##
2850 # @InetSocketAddress
2851 #
2852 # Captures a socket address or address range in the Internet namespace.
2853 #
2854 # @host: host part of the address
2855 #
2856 # @port: port part of the address, or lowest port if @to is present
2857 #
2858 # @to: highest port to try
2859 #
2860 # @ipv4: whether to accept IPv4 addresses, default try both IPv4 and IPv6
2861 #        #optional
2862 #
2863 # @ipv6: whether to accept IPv6 addresses, default try both IPv4 and IPv6
2864 #        #optional
2865 #
2866 # Since 1.3
2867 ##
2868 { 'struct': 'InetSocketAddress',
2869   'data': {
2870     'host': 'str',
2871     'port': 'str',
2872     '*to': 'uint16',
2873     '*ipv4': 'bool',
2874     '*ipv6': 'bool' } }
2875
2876 ##
2877 # @UnixSocketAddress
2878 #
2879 # Captures a socket address in the local ("Unix socket") namespace.
2880 #
2881 # @path: filesystem path to use
2882 #
2883 # Since 1.3
2884 ##
2885 { 'struct': 'UnixSocketAddress',
2886   'data': {
2887     'path': 'str' } }
2888
2889 ##
2890 # @SocketAddress
2891 #
2892 # Captures the address of a socket, which could also be a named file descriptor
2893 #
2894 # Since 1.3
2895 ##
2896 { 'union': 'SocketAddress',
2897   'data': {
2898     'inet': 'InetSocketAddress',
2899     'unix': 'UnixSocketAddress',
2900     'fd': 'String' } }
2901
2902 ##
2903 # @getfd:
2904 #
2905 # Receive a file descriptor via SCM rights and assign it a name
2906 #
2907 # @fdname: file descriptor name
2908 #
2909 # Returns: Nothing on success
2910 #
2911 # Since: 0.14.0
2912 #
2913 # Notes: If @fdname already exists, the file descriptor assigned to
2914 #        it will be closed and replaced by the received file
2915 #        descriptor.
2916 #        The 'closefd' command can be used to explicitly close the
2917 #        file descriptor when it is no longer needed.
2918 ##
2919 { 'command': 'getfd', 'data': {'fdname': 'str'} }
2920
2921 ##
2922 # @closefd:
2923 #
2924 # Close a file descriptor previously passed via SCM rights
2925 #
2926 # @fdname: file descriptor name
2927 #
2928 # Returns: Nothing on success
2929 #
2930 # Since: 0.14.0
2931 ##
2932 { 'command': 'closefd', 'data': {'fdname': 'str'} }
2933
2934 ##
2935 # @MachineInfo:
2936 #
2937 # Information describing a machine.
2938 #
2939 # @name: the name of the machine
2940 #
2941 # @alias: #optional an alias for the machine name
2942 #
2943 # @default: #optional whether the machine is default
2944 #
2945 # @cpu-max: maximum number of CPUs supported by the machine type
2946 #           (since 1.5.0)
2947 #
2948 # Since: 1.2.0
2949 ##
2950 { 'struct': 'MachineInfo',
2951   'data': { 'name': 'str', '*alias': 'str',
2952             '*is-default': 'bool', 'cpu-max': 'int' } }
2953
2954 ##
2955 # @query-machines:
2956 #
2957 # Return a list of supported machines
2958 #
2959 # Returns: a list of MachineInfo
2960 #
2961 # Since: 1.2.0
2962 ##
2963 { 'command': 'query-machines', 'returns': ['MachineInfo'] }
2964
2965 ##
2966 # @CpuDefinitionInfo:
2967 #
2968 # Virtual CPU definition.
2969 #
2970 # @name: the name of the CPU definition
2971 #
2972 # Since: 1.2.0
2973 ##
2974 { 'struct': 'CpuDefinitionInfo',
2975   'data': { 'name': 'str' } }
2976
2977 ##
2978 # @query-cpu-definitions:
2979 #
2980 # Return a list of supported virtual CPU definitions
2981 #
2982 # Returns: a list of CpuDefInfo
2983 #
2984 # Since: 1.2.0
2985 ##
2986 { 'command': 'query-cpu-definitions', 'returns': ['CpuDefinitionInfo'] }
2987
2988 # @AddfdInfo:
2989 #
2990 # Information about a file descriptor that was added to an fd set.
2991 #
2992 # @fdset-id: The ID of the fd set that @fd was added to.
2993 #
2994 # @fd: The file descriptor that was received via SCM rights and
2995 #      added to the fd set.
2996 #
2997 # Since: 1.2.0
2998 ##
2999 { 'struct': 'AddfdInfo', 'data': {'fdset-id': 'int', 'fd': 'int'} }
3000
3001 ##
3002 # @add-fd:
3003 #
3004 # Add a file descriptor, that was passed via SCM rights, to an fd set.
3005 #
3006 # @fdset-id: #optional The ID of the fd set to add the file descriptor to.
3007 #
3008 # @opaque: #optional A free-form string that can be used to describe the fd.
3009 #
3010 # Returns: @AddfdInfo on success
3011 #          If file descriptor was not received, FdNotSupplied
3012 #          If @fdset-id is a negative value, InvalidParameterValue
3013 #
3014 # Notes: The list of fd sets is shared by all monitor connections.
3015 #
3016 #        If @fdset-id is not specified, a new fd set will be created.
3017 #
3018 # Since: 1.2.0
3019 ##
3020 { 'command': 'add-fd', 'data': {'*fdset-id': 'int', '*opaque': 'str'},
3021   'returns': 'AddfdInfo' }
3022
3023 ##
3024 # @remove-fd:
3025 #
3026 # Remove a file descriptor from an fd set.
3027 #
3028 # @fdset-id: The ID of the fd set that the file descriptor belongs to.
3029 #
3030 # @fd: #optional The file descriptor that is to be removed.
3031 #
3032 # Returns: Nothing on success
3033 #          If @fdset-id or @fd is not found, FdNotFound
3034 #
3035 # Since: 1.2.0
3036 #
3037 # Notes: The list of fd sets is shared by all monitor connections.
3038 #
3039 #        If @fd is not specified, all file descriptors in @fdset-id
3040 #        will be removed.
3041 ##
3042 { 'command': 'remove-fd', 'data': {'fdset-id': 'int', '*fd': 'int'} }
3043
3044 ##
3045 # @FdsetFdInfo:
3046 #
3047 # Information about a file descriptor that belongs to an fd set.
3048 #
3049 # @fd: The file descriptor value.
3050 #
3051 # @opaque: #optional A free-form string that can be used to describe the fd.
3052 #
3053 # Since: 1.2.0
3054 ##
3055 { 'struct': 'FdsetFdInfo',
3056   'data': {'fd': 'int', '*opaque': 'str'} }
3057
3058 ##
3059 # @FdsetInfo:
3060 #
3061 # Information about an fd set.
3062 #
3063 # @fdset-id: The ID of the fd set.
3064 #
3065 # @fds: A list of file descriptors that belong to this fd set.
3066 #
3067 # Since: 1.2.0
3068 ##
3069 { 'struct': 'FdsetInfo',
3070   'data': {'fdset-id': 'int', 'fds': ['FdsetFdInfo']} }
3071
3072 ##
3073 # @query-fdsets:
3074 #
3075 # Return information describing all fd sets.
3076 #
3077 # Returns: A list of @FdsetInfo
3078 #
3079 # Since: 1.2.0
3080 #
3081 # Note: The list of fd sets is shared by all monitor connections.
3082 #
3083 ##
3084 { 'command': 'query-fdsets', 'returns': ['FdsetInfo'] }
3085
3086 ##
3087 # @TargetInfo:
3088 #
3089 # Information describing the QEMU target.
3090 #
3091 # @arch: the target architecture (eg "x86_64", "i386", etc)
3092 #
3093 # Since: 1.2.0
3094 ##
3095 { 'struct': 'TargetInfo',
3096   'data': { 'arch': 'str' } }
3097
3098 ##
3099 # @query-target:
3100 #
3101 # Return information about the target for this QEMU
3102 #
3103 # Returns: TargetInfo
3104 #
3105 # Since: 1.2.0
3106 ##
3107 { 'command': 'query-target', 'returns': 'TargetInfo' }
3108
3109 ##
3110 # @QKeyCode:
3111 #
3112 # An enumeration of key name.
3113 #
3114 # This is used by the send-key command.
3115 #
3116 # Since: 1.3.0
3117 #
3118 # 'unmapped' and 'pause' since 2.0
3119 # 'ro' and 'kp_comma' since 2.4
3120 # 'kp_equals' and 'power' since 2.6
3121 ##
3122 { 'enum': 'QKeyCode',
3123   'data': [ 'unmapped',
3124             'shift', 'shift_r', 'alt', 'alt_r', 'altgr', 'altgr_r', 'ctrl',
3125             'ctrl_r', 'menu', 'esc', '1', '2', '3', '4', '5', '6', '7', '8',
3126             '9', '0', 'minus', 'equal', 'backspace', 'tab', 'q', 'w', 'e',
3127             'r', 't', 'y', 'u', 'i', 'o', 'p', 'bracket_left', 'bracket_right',
3128             'ret', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'semicolon',
3129             'apostrophe', 'grave_accent', 'backslash', 'z', 'x', 'c', 'v', 'b',
3130             'n', 'm', 'comma', 'dot', 'slash', 'asterisk', 'spc', 'caps_lock',
3131             'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'f10',
3132             'num_lock', 'scroll_lock', 'kp_divide', 'kp_multiply',
3133             'kp_subtract', 'kp_add', 'kp_enter', 'kp_decimal', 'sysrq', 'kp_0',
3134             'kp_1', 'kp_2', 'kp_3', 'kp_4', 'kp_5', 'kp_6', 'kp_7', 'kp_8',
3135             'kp_9', 'less', 'f11', 'f12', 'print', 'home', 'pgup', 'pgdn', 'end',
3136             'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again',
3137             'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut',
3138             'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause', 'ro',
3139             'kp_comma', 'kp_equals', 'power' ] }
3140
3141 ##
3142 # @KeyValue
3143 #
3144 # Represents a keyboard key.
3145 #
3146 # Since: 1.3.0
3147 ##
3148 { 'union': 'KeyValue',
3149   'data': {
3150     'number': 'int',
3151     'qcode': 'QKeyCode' } }
3152
3153 ##
3154 # @send-key:
3155 #
3156 # Send keys to guest.
3157 #
3158 # @keys: An array of @KeyValue elements. All @KeyValues in this array are
3159 #        simultaneously sent to the guest. A @KeyValue.number value is sent
3160 #        directly to the guest, while @KeyValue.qcode must be a valid
3161 #        @QKeyCode value
3162 #
3163 # @hold-time: #optional time to delay key up events, milliseconds. Defaults
3164 #             to 100
3165 #
3166 # Returns: Nothing on success
3167 #          If key is unknown or redundant, InvalidParameter
3168 #
3169 # Since: 1.3.0
3170 #
3171 ##
3172 { 'command': 'send-key',
3173   'data': { 'keys': ['KeyValue'], '*hold-time': 'int' } }
3174
3175 ##
3176 # @screendump:
3177 #
3178 # Write a PPM of the VGA screen to a file.
3179 #
3180 # @filename: the path of a new PPM file to store the image
3181 #
3182 # Returns: Nothing on success
3183 #
3184 # Since: 0.14.0
3185 ##
3186 { 'command': 'screendump', 'data': {'filename': 'str'} }
3187
3188
3189 ##
3190 # @ChardevCommon:
3191 #
3192 # Configuration shared across all chardev backends
3193 #
3194 # @logfile: #optional The name of a logfile to save output
3195 # @logappend: #optional true to append instead of truncate
3196 #             (default to false to truncate)
3197 #
3198 # Since: 2.6
3199 ##
3200 { 'struct': 'ChardevCommon', 'data': { '*logfile': 'str',
3201                                        '*logappend': 'bool' } }
3202
3203 ##
3204 # @ChardevFile:
3205 #
3206 # Configuration info for file chardevs.
3207 #
3208 # @in:  #optional The name of the input file
3209 # @out: The name of the output file
3210 # @append: #optional Open the file in append mode (default false to
3211 #          truncate) (Since 2.6)
3212 #
3213 # Since: 1.4
3214 ##
3215 { 'struct': 'ChardevFile', 'data': { '*in' : 'str',
3216                                    'out' : 'str',
3217                                    '*append': 'bool' },
3218   'base': 'ChardevCommon' }
3219
3220 ##
3221 # @ChardevHostdev:
3222 #
3223 # Configuration info for device and pipe chardevs.
3224 #
3225 # @device: The name of the special file for the device,
3226 #          i.e. /dev/ttyS0 on Unix or COM1: on Windows
3227 # @type: What kind of device this is.
3228 #
3229 # Since: 1.4
3230 ##
3231 { 'struct': 'ChardevHostdev', 'data': { 'device' : 'str' },
3232   'base': 'ChardevCommon' }
3233
3234 ##
3235 # @ChardevSocket:
3236 #
3237 # Configuration info for (stream) socket chardevs.
3238 #
3239 # @addr: socket address to listen on (server=true)
3240 #        or connect to (server=false)
3241 # @tls-creds: #optional the ID of the TLS credentials object (since 2.6)
3242 # @server: #optional create server socket (default: true)
3243 # @wait: #optional wait for incoming connection on server
3244 #        sockets (default: false).
3245 # @nodelay: #optional set TCP_NODELAY socket option (default: false)
3246 # @telnet: #optional enable telnet protocol on server
3247 #          sockets (default: false)
3248 # @reconnect: #optional For a client socket, if a socket is disconnected,
3249 #          then attempt a reconnect after the given number of seconds.
3250 #          Setting this to zero disables this function. (default: 0)
3251 #          (Since: 2.2)
3252 #
3253 # Since: 1.4
3254 ##
3255 { 'struct': 'ChardevSocket', 'data': { 'addr'       : 'SocketAddress',
3256                                      '*tls-creds'  : 'str',
3257                                      '*server'    : 'bool',
3258                                      '*wait'      : 'bool',
3259                                      '*nodelay'   : 'bool',
3260                                      '*telnet'    : 'bool',
3261                                      '*reconnect' : 'int' },
3262   'base': 'ChardevCommon' }
3263
3264 ##
3265 # @ChardevUdp:
3266 #
3267 # Configuration info for datagram socket chardevs.
3268 #
3269 # @remote: remote address
3270 # @local: #optional local address
3271 #
3272 # Since: 1.5
3273 ##
3274 { 'struct': 'ChardevUdp', 'data': { 'remote' : 'SocketAddress',
3275                                   '*local' : 'SocketAddress' },
3276   'base': 'ChardevCommon' }
3277
3278 ##
3279 # @ChardevMux:
3280 #
3281 # Configuration info for mux chardevs.
3282 #
3283 # @chardev: name of the base chardev.
3284 #
3285 # Since: 1.5
3286 ##
3287 { 'struct': 'ChardevMux', 'data': { 'chardev' : 'str' },
3288   'base': 'ChardevCommon' }
3289
3290 ##
3291 # @ChardevStdio:
3292 #
3293 # Configuration info for stdio chardevs.
3294 #
3295 # @signal: #optional Allow signals (such as SIGINT triggered by ^C)
3296 #          be delivered to qemu.  Default: true in -nographic mode,
3297 #          false otherwise.
3298 #
3299 # Since: 1.5
3300 ##
3301 { 'struct': 'ChardevStdio', 'data': { '*signal' : 'bool' },
3302   'base': 'ChardevCommon' }
3303
3304
3305 ##
3306 # @ChardevSpiceChannel:
3307 #
3308 # Configuration info for spice vm channel chardevs.
3309 #
3310 # @type: kind of channel (for example vdagent).
3311 #
3312 # Since: 1.5
3313 ##
3314 { 'struct': 'ChardevSpiceChannel', 'data': { 'type'  : 'str' },
3315   'base': 'ChardevCommon' }
3316
3317 ##
3318 # @ChardevSpicePort:
3319 #
3320 # Configuration info for spice port chardevs.
3321 #
3322 # @fqdn: name of the channel (see docs/spice-port-fqdn.txt)
3323 #
3324 # Since: 1.5
3325 ##
3326 { 'struct': 'ChardevSpicePort', 'data': { 'fqdn'  : 'str' },
3327   'base': 'ChardevCommon' }
3328
3329 ##
3330 # @ChardevVC:
3331 #
3332 # Configuration info for virtual console chardevs.
3333 #
3334 # @width:  console width,  in pixels
3335 # @height: console height, in pixels
3336 # @cols:   console width,  in chars
3337 # @rows:   console height, in chars
3338 #
3339 # Since: 1.5
3340 ##
3341 { 'struct': 'ChardevVC', 'data': { '*width'  : 'int',
3342                                  '*height' : 'int',
3343                                  '*cols'   : 'int',
3344                                  '*rows'   : 'int' },
3345   'base': 'ChardevCommon' }
3346
3347 ##
3348 # @ChardevRingbuf:
3349 #
3350 # Configuration info for ring buffer chardevs.
3351 #
3352 # @size: #optional ring buffer size, must be power of two, default is 65536
3353 #
3354 # Since: 1.5
3355 ##
3356 { 'struct': 'ChardevRingbuf', 'data': { '*size'  : 'int' },
3357   'base': 'ChardevCommon' }
3358
3359 ##
3360 # @ChardevBackend:
3361 #
3362 # Configuration info for the new chardev backend.
3363 #
3364 # Since: 1.4 (testdev since 2.2)
3365 ##
3366 { 'union': 'ChardevBackend', 'data': { 'file'   : 'ChardevFile',
3367                                        'serial' : 'ChardevHostdev',
3368                                        'parallel': 'ChardevHostdev',
3369                                        'pipe'   : 'ChardevHostdev',
3370                                        'socket' : 'ChardevSocket',
3371                                        'udp'    : 'ChardevUdp',
3372                                        'pty'    : 'ChardevCommon',
3373                                        'null'   : 'ChardevCommon',
3374                                        'mux'    : 'ChardevMux',
3375                                        'msmouse': 'ChardevCommon',
3376                                        'braille': 'ChardevCommon',
3377                                        'testdev': 'ChardevCommon',
3378                                        'stdio'  : 'ChardevStdio',
3379                                        'console': 'ChardevCommon',
3380                                        'spicevmc' : 'ChardevSpiceChannel',
3381                                        'spiceport' : 'ChardevSpicePort',
3382                                        'vc'     : 'ChardevVC',
3383                                        'ringbuf': 'ChardevRingbuf',
3384                                        # next one is just for compatibility
3385                                        'memory' : 'ChardevRingbuf' } }
3386
3387 ##
3388 # @ChardevReturn:
3389 #
3390 # Return info about the chardev backend just created.
3391 #
3392 # @pty: #optional name of the slave pseudoterminal device, present if
3393 #       and only if a chardev of type 'pty' was created
3394 #
3395 # Since: 1.4
3396 ##
3397 { 'struct' : 'ChardevReturn', 'data': { '*pty' : 'str' } }
3398
3399 ##
3400 # @chardev-add:
3401 #
3402 # Add a character device backend
3403 #
3404 # @id: the chardev's ID, must be unique
3405 # @backend: backend type and parameters
3406 #
3407 # Returns: ChardevReturn.
3408 #
3409 # Since: 1.4
3410 ##
3411 { 'command': 'chardev-add', 'data': {'id'      : 'str',
3412                                      'backend' : 'ChardevBackend' },
3413   'returns': 'ChardevReturn' }
3414
3415 ##
3416 # @chardev-remove:
3417 #
3418 # Remove a character device backend
3419 #
3420 # @id: the chardev's ID, must exist and not be in use
3421 #
3422 # Returns: Nothing on success
3423 #
3424 # Since: 1.4
3425 ##
3426 { 'command': 'chardev-remove', 'data': {'id': 'str'} }
3427
3428 ##
3429 # @TpmModel:
3430 #
3431 # An enumeration of TPM models
3432 #
3433 # @tpm-tis: TPM TIS model
3434 #
3435 # Since: 1.5
3436 ##
3437 { 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
3438
3439 ##
3440 # @query-tpm-models:
3441 #
3442 # Return a list of supported TPM models
3443 #
3444 # Returns: a list of TpmModel
3445 #
3446 # Since: 1.5
3447 ##
3448 { 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
3449
3450 ##
3451 # @TpmType:
3452 #
3453 # An enumeration of TPM types
3454 #
3455 # @passthrough: TPM passthrough type
3456 #
3457 # Since: 1.5
3458 ##
3459 { 'enum': 'TpmType', 'data': [ 'passthrough' ] }
3460
3461 ##
3462 # @query-tpm-types:
3463 #
3464 # Return a list of supported TPM types
3465 #
3466 # Returns: a list of TpmType
3467 #
3468 # Since: 1.5
3469 ##
3470 { 'command': 'query-tpm-types', 'returns': ['TpmType'] }
3471
3472 ##
3473 # @TPMPassthroughOptions:
3474 #
3475 # Information about the TPM passthrough type
3476 #
3477 # @path: #optional string describing the path used for accessing the TPM device
3478 #
3479 # @cancel-path: #optional string showing the TPM's sysfs cancel file
3480 #               for cancellation of TPM commands while they are executing
3481 #
3482 # Since: 1.5
3483 ##
3484 { 'struct': 'TPMPassthroughOptions', 'data': { '*path' : 'str',
3485                                              '*cancel-path' : 'str'} }
3486
3487 ##
3488 # @TpmTypeOptions:
3489 #
3490 # A union referencing different TPM backend types' configuration options
3491 #
3492 # @passthrough: The configuration options for the TPM passthrough type
3493 #
3494 # Since: 1.5
3495 ##
3496 { 'union': 'TpmTypeOptions',
3497    'data': { 'passthrough' : 'TPMPassthroughOptions' } }
3498
3499 ##
3500 # @TpmInfo:
3501 #
3502 # Information about the TPM
3503 #
3504 # @id: The Id of the TPM
3505 #
3506 # @model: The TPM frontend model
3507 #
3508 # @options: The TPM (backend) type configuration options
3509 #
3510 # Since: 1.5
3511 ##
3512 { 'struct': 'TPMInfo',
3513   'data': {'id': 'str',
3514            'model': 'TpmModel',
3515            'options': 'TpmTypeOptions' } }
3516
3517 ##
3518 # @query-tpm:
3519 #
3520 # Return information about the TPM device
3521 #
3522 # Returns: @TPMInfo on success
3523 #
3524 # Since: 1.5
3525 ##
3526 { 'command': 'query-tpm', 'returns': ['TPMInfo'] }
3527
3528 ##
3529 # @AcpiTableOptions
3530 #
3531 # Specify an ACPI table on the command line to load.
3532 #
3533 # At most one of @file and @data can be specified. The list of files specified
3534 # by any one of them is loaded and concatenated in order. If both are omitted,
3535 # @data is implied.
3536 #
3537 # Other fields / optargs can be used to override fields of the generic ACPI
3538 # table header; refer to the ACPI specification 5.0, section 5.2.6 System
3539 # Description Table Header. If a header field is not overridden, then the
3540 # corresponding value from the concatenated blob is used (in case of @file), or
3541 # it is filled in with a hard-coded value (in case of @data).
3542 #
3543 # String fields are copied into the matching ACPI member from lowest address
3544 # upwards, and silently truncated / NUL-padded to length.
3545 #
3546 # @sig: #optional table signature / identifier (4 bytes)
3547 #
3548 # @rev: #optional table revision number (dependent on signature, 1 byte)
3549 #
3550 # @oem_id: #optional OEM identifier (6 bytes)
3551 #
3552 # @oem_table_id: #optional OEM table identifier (8 bytes)
3553 #
3554 # @oem_rev: #optional OEM-supplied revision number (4 bytes)
3555 #
3556 # @asl_compiler_id: #optional identifier of the utility that created the table
3557 #                   (4 bytes)
3558 #
3559 # @asl_compiler_rev: #optional revision number of the utility that created the
3560 #                    table (4 bytes)
3561 #
3562 # @file: #optional colon (:) separated list of pathnames to load and
3563 #        concatenate as table data. The resultant binary blob is expected to
3564 #        have an ACPI table header. At least one file is required. This field
3565 #        excludes @data.
3566 #
3567 # @data: #optional colon (:) separated list of pathnames to load and
3568 #        concatenate as table data. The resultant binary blob must not have an
3569 #        ACPI table header. At least one file is required. This field excludes
3570 #        @file.
3571 #
3572 # Since 1.5
3573 ##
3574 { 'struct': 'AcpiTableOptions',
3575   'data': {
3576     '*sig':               'str',
3577     '*rev':               'uint8',
3578     '*oem_id':            'str',
3579     '*oem_table_id':      'str',
3580     '*oem_rev':           'uint32',
3581     '*asl_compiler_id':   'str',
3582     '*asl_compiler_rev':  'uint32',
3583     '*file':              'str',
3584     '*data':              'str' }}
3585
3586 ##
3587 # @CommandLineParameterType:
3588 #
3589 # Possible types for an option parameter.
3590 #
3591 # @string: accepts a character string
3592 #
3593 # @boolean: accepts "on" or "off"
3594 #
3595 # @number: accepts a number
3596 #
3597 # @size: accepts a number followed by an optional suffix (K)ilo,
3598 #        (M)ega, (G)iga, (T)era
3599 #
3600 # Since 1.5
3601 ##
3602 { 'enum': 'CommandLineParameterType',
3603   'data': ['string', 'boolean', 'number', 'size'] }
3604
3605 ##
3606 # @CommandLineParameterInfo:
3607 #
3608 # Details about a single parameter of a command line option.
3609 #
3610 # @name: parameter name
3611 #
3612 # @type: parameter @CommandLineParameterType
3613 #
3614 # @help: #optional human readable text string, not suitable for parsing.
3615 #
3616 # @default: #optional default value string (since 2.1)
3617 #
3618 # Since 1.5
3619 ##
3620 { 'struct': 'CommandLineParameterInfo',
3621   'data': { 'name': 'str',
3622             'type': 'CommandLineParameterType',
3623             '*help': 'str',
3624             '*default': 'str' } }
3625
3626 ##
3627 # @CommandLineOptionInfo:
3628 #
3629 # Details about a command line option, including its list of parameter details
3630 #
3631 # @option: option name
3632 #
3633 # @parameters: an array of @CommandLineParameterInfo
3634 #
3635 # Since 1.5
3636 ##
3637 { 'struct': 'CommandLineOptionInfo',
3638   'data': { 'option': 'str', 'parameters': ['CommandLineParameterInfo'] } }
3639
3640 ##
3641 # @query-command-line-options:
3642 #
3643 # Query command line option schema.
3644 #
3645 # @option: #optional option name
3646 #
3647 # Returns: list of @CommandLineOptionInfo for all options (or for the given
3648 #          @option).  Returns an error if the given @option doesn't exist.
3649 #
3650 # Since 1.5
3651 ##
3652 {'command': 'query-command-line-options', 'data': { '*option': 'str' },
3653  'returns': ['CommandLineOptionInfo'] }
3654
3655 ##
3656 # @X86CPURegister32
3657 #
3658 # A X86 32-bit register
3659 #
3660 # Since: 1.5
3661 ##
3662 { 'enum': 'X86CPURegister32',
3663   'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
3664
3665 ##
3666 # @X86CPUFeatureWordInfo
3667 #
3668 # Information about a X86 CPU feature word
3669 #
3670 # @cpuid-input-eax: Input EAX value for CPUID instruction for that feature word
3671 #
3672 # @cpuid-input-ecx: #optional Input ECX value for CPUID instruction for that
3673 #                   feature word
3674 #
3675 # @cpuid-register: Output register containing the feature bits
3676 #
3677 # @features: value of output register, containing the feature bits
3678 #
3679 # Since: 1.5
3680 ##
3681 { 'struct': 'X86CPUFeatureWordInfo',
3682   'data': { 'cpuid-input-eax': 'int',
3683             '*cpuid-input-ecx': 'int',
3684             'cpuid-register': 'X86CPURegister32',
3685             'features': 'int' } }
3686
3687 ##
3688 # @DummyForceArrays
3689 #
3690 # Not used by QMP; hack to let us use X86CPUFeatureWordInfoList internally
3691 #
3692 # Since 2.5
3693 ##
3694 { 'struct': 'DummyForceArrays',
3695   'data': { 'unused': ['X86CPUFeatureWordInfo'] } }
3696
3697
3698 ##
3699 # @RxState:
3700 #
3701 # Packets receiving state
3702 #
3703 # @normal: filter assigned packets according to the mac-table
3704 #
3705 # @none: don't receive any assigned packet
3706 #
3707 # @all: receive all assigned packets
3708 #
3709 # Since: 1.6
3710 ##
3711 { 'enum': 'RxState', 'data': [ 'normal', 'none', 'all' ] }
3712
3713 ##
3714 # @RxFilterInfo:
3715 #
3716 # Rx-filter information for a NIC.
3717 #
3718 # @name: net client name
3719 #
3720 # @promiscuous: whether promiscuous mode is enabled
3721 #
3722 # @multicast: multicast receive state
3723 #
3724 # @unicast: unicast receive state
3725 #
3726 # @vlan: vlan receive state (Since 2.0)
3727 #
3728 # @broadcast-allowed: whether to receive broadcast
3729 #
3730 # @multicast-overflow: multicast table is overflowed or not
3731 #
3732 # @unicast-overflow: unicast table is overflowed or not
3733 #
3734 # @main-mac: the main macaddr string
3735 #
3736 # @vlan-table: a list of active vlan id
3737 #
3738 # @unicast-table: a list of unicast macaddr string
3739 #
3740 # @multicast-table: a list of multicast macaddr string
3741 #
3742 # Since 1.6
3743 ##
3744
3745 { 'struct': 'RxFilterInfo',
3746   'data': {
3747     'name':               'str',
3748     'promiscuous':        'bool',
3749     'multicast':          'RxState',
3750     'unicast':            'RxState',
3751     'vlan':               'RxState',
3752     'broadcast-allowed':  'bool',
3753     'multicast-overflow': 'bool',
3754     'unicast-overflow':   'bool',
3755     'main-mac':           'str',
3756     'vlan-table':         ['int'],
3757     'unicast-table':      ['str'],
3758     'multicast-table':    ['str'] }}
3759
3760 ##
3761 # @query-rx-filter:
3762 #
3763 # Return rx-filter information for all NICs (or for the given NIC).
3764 #
3765 # @name: #optional net client name
3766 #
3767 # Returns: list of @RxFilterInfo for all NICs (or for the given NIC).
3768 #          Returns an error if the given @name doesn't exist, or given
3769 #          NIC doesn't support rx-filter querying, or given net client
3770 #          isn't a NIC.
3771 #
3772 # Since: 1.6
3773 ##
3774 { 'command': 'query-rx-filter', 'data': { '*name': 'str' },
3775   'returns': ['RxFilterInfo'] }
3776
3777 ##
3778 # @InputButton
3779 #
3780 # Button of a pointer input device (mouse, tablet).
3781 #
3782 # Since: 2.0
3783 ##
3784 { 'enum'  : 'InputButton',
3785   'data'  : [ 'left', 'middle', 'right', 'wheel-up', 'wheel-down' ] }
3786
3787 ##
3788 # @InputAxis
3789 #
3790 # Position axis of a pointer input device (mouse, tablet).
3791 #
3792 # Since: 2.0
3793 ##
3794 { 'enum'  : 'InputAxis',
3795   'data'  : [ 'x', 'y' ] }
3796
3797 ##
3798 # @InputKeyEvent
3799 #
3800 # Keyboard input event.
3801 #
3802 # @key:    Which key this event is for.
3803 # @down:   True for key-down and false for key-up events.
3804 #
3805 # Since: 2.0
3806 ##
3807 { 'struct'  : 'InputKeyEvent',
3808   'data'  : { 'key'     : 'KeyValue',
3809               'down'    : 'bool' } }
3810
3811 ##
3812 # @InputBtnEvent
3813 #
3814 # Pointer button input event.
3815 #
3816 # @button: Which button this event is for.
3817 # @down:   True for key-down and false for key-up events.
3818 #
3819 # Since: 2.0
3820 ##
3821 { 'struct'  : 'InputBtnEvent',
3822   'data'  : { 'button'  : 'InputButton',
3823               'down'    : 'bool' } }
3824
3825 ##
3826 # @InputMoveEvent
3827 #
3828 # Pointer motion input event.
3829 #
3830 # @axis:   Which axis is referenced by @value.
3831 # @value:  Pointer position.  For absolute coordinates the
3832 #          valid range is 0 -> 0x7ffff
3833 #
3834 # Since: 2.0
3835 ##
3836 { 'struct'  : 'InputMoveEvent',
3837   'data'  : { 'axis'    : 'InputAxis',
3838               'value'   : 'int' } }
3839
3840 ##
3841 # @InputEvent
3842 #
3843 # Input event union.
3844 #
3845 # @key: Input event of Keyboard
3846 # @btn: Input event of pointer buttons
3847 # @rel: Input event of relative pointer motion
3848 # @abs: Input event of absolute pointer motion
3849 #
3850 # Since: 2.0
3851 ##
3852 { 'union' : 'InputEvent',
3853   'data'  : { 'key'     : 'InputKeyEvent',
3854               'btn'     : 'InputBtnEvent',
3855               'rel'     : 'InputMoveEvent',
3856               'abs'     : 'InputMoveEvent' } }
3857
3858 ##
3859 # @input-send-event
3860 #
3861 # Send input event(s) to guest.
3862 #
3863 # @device: #optional display device to send event(s) to.
3864 # @head: #optional head to send event(s) to, in case the
3865 #        display device supports multiple scanouts.
3866 # @events: List of InputEvent union.
3867 #
3868 # Returns: Nothing on success.
3869 #
3870 # The @display and @head parameters can be used to send the input
3871 # event to specific input devices in case (a) multiple input devices
3872 # of the same kind are added to the virtual machine and (b) you have
3873 # configured input routing (see docs/multiseat.txt) for those input
3874 # devices.  The parameters work exactly like the device and head
3875 # properties of input devices.  If @device is missing, only devices
3876 # that have no input routing config are admissible.  If @device is
3877 # specified, both input devices with and without input routing config
3878 # are admissible, but devices with input routing config take
3879 # precedence.
3880 #
3881 # Since: 2.6
3882 ##
3883 { 'command': 'input-send-event',
3884   'data': { '*device': 'str',
3885             '*head'  : 'int',
3886             'events' : [ 'InputEvent' ] } }
3887
3888 ##
3889 # @NumaOptions
3890 #
3891 # A discriminated record of NUMA options. (for OptsVisitor)
3892 #
3893 # Since 2.1
3894 ##
3895 { 'union': 'NumaOptions',
3896   'data': {
3897     'node': 'NumaNodeOptions' }}
3898
3899 ##
3900 # @NumaNodeOptions
3901 #
3902 # Create a guest NUMA node. (for OptsVisitor)
3903 #
3904 # @nodeid: #optional NUMA node ID (increase by 1 from 0 if omitted)
3905 #
3906 # @cpus: #optional VCPUs belonging to this node (assign VCPUS round-robin
3907 #         if omitted)
3908 #
3909 # @mem: #optional memory size of this node; mutually exclusive with @memdev.
3910 #       Equally divide total memory among nodes if both @mem and @memdev are
3911 #       omitted.
3912 #
3913 # @memdev: #optional memory backend object.  If specified for one node,
3914 #          it must be specified for all nodes.
3915 #
3916 # Since: 2.1
3917 ##
3918 { 'struct': 'NumaNodeOptions',
3919   'data': {
3920    '*nodeid': 'uint16',
3921    '*cpus':   ['uint16'],
3922    '*mem':    'size',
3923    '*memdev': 'str' }}
3924
3925 ##
3926 # @HostMemPolicy
3927 #
3928 # Host memory policy types
3929 #
3930 # @default: restore default policy, remove any nondefault policy
3931 #
3932 # @preferred: set the preferred host nodes for allocation
3933 #
3934 # @bind: a strict policy that restricts memory allocation to the
3935 #        host nodes specified
3936 #
3937 # @interleave: memory allocations are interleaved across the set
3938 #              of host nodes specified
3939 #
3940 # Since 2.1
3941 ##
3942 { 'enum': 'HostMemPolicy',
3943   'data': [ 'default', 'preferred', 'bind', 'interleave' ] }
3944
3945 ##
3946 # @Memdev:
3947 #
3948 # Information about memory backend
3949 #
3950 # @size: memory backend size
3951 #
3952 # @merge: enables or disables memory merge support
3953 #
3954 # @dump: includes memory backend's memory in a core dump or not
3955 #
3956 # @prealloc: enables or disables memory preallocation
3957 #
3958 # @host-nodes: host nodes for its memory policy
3959 #
3960 # @policy: memory policy of memory backend
3961 #
3962 # Since: 2.1
3963 ##
3964
3965 { 'struct': 'Memdev',
3966   'data': {
3967     'size':       'size',
3968     'merge':      'bool',
3969     'dump':       'bool',
3970     'prealloc':   'bool',
3971     'host-nodes': ['uint16'],
3972     'policy':     'HostMemPolicy' }}
3973
3974 ##
3975 # @query-memdev:
3976 #
3977 # Returns information for all memory backends.
3978 #
3979 # Returns: a list of @Memdev.
3980 #
3981 # Since: 2.1
3982 ##
3983 { 'command': 'query-memdev', 'returns': ['Memdev'] }
3984
3985 ##
3986 # @PCDIMMDeviceInfo:
3987 #
3988 # PCDIMMDevice state information
3989 #
3990 # @id: #optional device's ID
3991 #
3992 # @addr: physical address, where device is mapped
3993 #
3994 # @size: size of memory that the device provides
3995 #
3996 # @slot: slot number at which device is plugged in
3997 #
3998 # @node: NUMA node number where device is plugged in
3999 #
4000 # @memdev: memory backend linked with device
4001 #
4002 # @hotplugged: true if device was hotplugged
4003 #
4004 # @hotpluggable: true if device if could be added/removed while machine is running
4005 #
4006 # Since: 2.1
4007 ##
4008 { 'struct': 'PCDIMMDeviceInfo',
4009   'data': { '*id': 'str',
4010             'addr': 'int',
4011             'size': 'int',
4012             'slot': 'int',
4013             'node': 'int',
4014             'memdev': 'str',
4015             'hotplugged': 'bool',
4016             'hotpluggable': 'bool'
4017           }
4018 }
4019
4020 ##
4021 # @MemoryDeviceInfo:
4022 #
4023 # Union containing information about a memory device
4024 #
4025 # Since: 2.1
4026 ##
4027 { 'union': 'MemoryDeviceInfo', 'data': {'dimm': 'PCDIMMDeviceInfo'} }
4028
4029 ##
4030 # @query-memory-devices
4031 #
4032 # Lists available memory devices and their state
4033 #
4034 # Since: 2.1
4035 ##
4036 { 'command': 'query-memory-devices', 'returns': ['MemoryDeviceInfo'] }
4037
4038 ## @ACPISlotType
4039 #
4040 # @DIMM: memory slot
4041 #
4042 { 'enum': 'ACPISlotType', 'data': [ 'DIMM' ] }
4043
4044 ## @ACPIOSTInfo
4045 #
4046 # OSPM Status Indication for a device
4047 # For description of possible values of @source and @status fields
4048 # see "_OST (OSPM Status Indication)" chapter of ACPI5.0 spec.
4049 #
4050 # @device: #optional device ID associated with slot
4051 #
4052 # @slot: slot ID, unique per slot of a given @slot-type
4053 #
4054 # @slot-type: type of the slot
4055 #
4056 # @source: an integer containing the source event
4057 #
4058 # @status: an integer containing the status code
4059 #
4060 # Since: 2.1
4061 ##
4062 { 'struct': 'ACPIOSTInfo',
4063   'data'  : { '*device': 'str',
4064               'slot': 'str',
4065               'slot-type': 'ACPISlotType',
4066               'source': 'int',
4067               'status': 'int' } }
4068
4069 ##
4070 # @query-acpi-ospm-status
4071 #
4072 # Lists ACPI OSPM status of ACPI device objects,
4073 # which might be reported via _OST method
4074 #
4075 # Since: 2.1
4076 ##
4077 { 'command': 'query-acpi-ospm-status', 'returns': ['ACPIOSTInfo'] }
4078
4079 ##
4080 # @WatchdogExpirationAction
4081 #
4082 # An enumeration of the actions taken when the watchdog device's timer is
4083 # expired
4084 #
4085 # @reset: system resets
4086 #
4087 # @shutdown: system shutdown, note that it is similar to @powerdown, which
4088 #            tries to set to system status and notify guest
4089 #
4090 # @poweroff: system poweroff, the emulator program exits
4091 #
4092 # @pause: system pauses, similar to @stop
4093 #
4094 # @debug: system enters debug state
4095 #
4096 # @none: nothing is done
4097 #
4098 # @inject-nmi: a non-maskable interrupt is injected into the first VCPU (all
4099 #              VCPUS on x86) (since 2.4)
4100 #
4101 # Since: 2.1
4102 ##
4103 { 'enum': 'WatchdogExpirationAction',
4104   'data': [ 'reset', 'shutdown', 'poweroff', 'pause', 'debug', 'none',
4105             'inject-nmi' ] }
4106
4107 ##
4108 # @IoOperationType
4109 #
4110 # An enumeration of the I/O operation types
4111 #
4112 # @read: read operation
4113 #
4114 # @write: write operation
4115 #
4116 # Since: 2.1
4117 ##
4118 { 'enum': 'IoOperationType',
4119   'data': [ 'read', 'write' ] }
4120
4121 ##
4122 # @GuestPanicAction
4123 #
4124 # An enumeration of the actions taken when guest OS panic is detected
4125 #
4126 # @pause: system pauses
4127 #
4128 # Since: 2.1
4129 ##
4130 { 'enum': 'GuestPanicAction',
4131   'data': [ 'pause' ] }
4132
4133 ##
4134 # @rtc-reset-reinjection
4135 #
4136 # This command will reset the RTC interrupt reinjection backlog.
4137 # Can be used if another mechanism to synchronize guest time
4138 # is in effect, for example QEMU guest agent's guest-set-time
4139 # command.
4140 #
4141 # Since: 2.1
4142 ##
4143 { 'command': 'rtc-reset-reinjection' }
4144
4145 # Rocker ethernet network switch
4146 { 'include': 'qapi/rocker.json' }
4147
4148 ##
4149 # ReplayMode:
4150 #
4151 # Mode of the replay subsystem.
4152 #
4153 # @none: normal execution mode. Replay or record are not enabled.
4154 #
4155 # @record: record mode. All non-deterministic data is written into the
4156 #          replay log.
4157 #
4158 # @play: replay mode. Non-deterministic data required for system execution
4159 #        is read from the log.
4160 #
4161 # Since: 2.5
4162 ##
4163 { 'enum': 'ReplayMode',
4164   'data': [ 'none', 'record', 'play' ] }
4165
4166 ##
4167 # @GICCapability:
4168 #
4169 # The struct describes capability for a specific GIC (Generic
4170 # Interrupt Controller) version. These bits are not only decided by
4171 # QEMU/KVM software version, but also decided by the hardware that
4172 # the program is running upon.
4173 #
4174 # @version:  version of GIC to be described. Currently, only 2 and 3
4175 #            are supported.
4176 #
4177 # @emulated: whether current QEMU/hardware supports emulated GIC
4178 #            device in user space.
4179 #
4180 # @kernel:   whether current QEMU/hardware supports hardware
4181 #            accelerated GIC device in kernel.
4182 #
4183 # Since: 2.6
4184 ##
4185 { 'struct': 'GICCapability',
4186   'data': { 'version': 'int',
4187             'emulated': 'bool',
4188             'kernel': 'bool' } }
4189
4190 ##
4191 # @query-gic-capabilities:
4192 #
4193 # This command is ARM-only. It will return a list of GICCapability
4194 # objects that describe its capability bits.
4195 #
4196 # Returns: a list of GICCapability objects.
4197 #
4198 # Since: 2.6
4199 ##
4200 { 'command': 'query-gic-capabilities', 'returns': ['GICCapability'] }