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