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