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