1# -*- Mode: Python -*- 2# vim: filetype=python 3# 4 5## 6# = Character devices 7## 8 9{ 'include': 'sockets.json' } 10 11## 12# @ChardevInfo: 13# 14# Information about a character device. 15# 16# @label: the label of the character device 17# 18# @filename: the filename of the character device 19# 20# @frontend-open: shows whether the frontend device attached to this 21# backend (e.g. with the chardev=... option) is in open or closed 22# state (since 2.1) 23# 24# .. note:: @filename is encoded using the QEMU command line character 25# device encoding. See the QEMU man page for details. 26# 27# Since: 0.14 28## 29{ 'struct': 'ChardevInfo', 30 'data': { 'label': 'str', 31 'filename': 'str', 32 'frontend-open': 'bool' } } 33 34## 35# @query-chardev: 36# 37# Returns information about current character devices. 38# 39# Returns: a list of @ChardevInfo 40# 41# Since: 0.14 42# 43# .. qmp-example:: 44# 45# -> { "execute": "query-chardev" } 46# <- { 47# "return": [ 48# { 49# "label": "charchannel0", 50# "filename": "unix:/var/lib/libvirt/qemu/seabios.rhel6.agent,server=on", 51# "frontend-open": false 52# }, 53# { 54# "label": "charmonitor", 55# "filename": "unix:/var/lib/libvirt/qemu/seabios.rhel6.monitor,server=on", 56# "frontend-open": true 57# }, 58# { 59# "label": "charserial0", 60# "filename": "pty:/dev/pts/2", 61# "frontend-open": true 62# } 63# ] 64# } 65## 66{ 'command': 'query-chardev', 'returns': ['ChardevInfo'], 67 'allow-preconfig': true } 68 69## 70# @ChardevBackendInfo: 71# 72# Information about a character device backend 73# 74# @name: The backend name 75# 76# Since: 2.0 77## 78{ 'struct': 'ChardevBackendInfo', 'data': {'name': 'str'} } 79 80## 81# @query-chardev-backends: 82# 83# Returns information about character device backends. 84# 85# Returns: a list of @ChardevBackendInfo 86# 87# Since: 2.0 88# 89# .. qmp-example:: 90# 91# -> { "execute": "query-chardev-backends" } 92# <- { 93# "return":[ 94# { 95# "name":"udp" 96# }, 97# { 98# "name":"tcp" 99# }, 100# { 101# "name":"unix" 102# }, 103# { 104# "name":"spiceport" 105# } 106# ] 107# } 108## 109{ 'command': 'query-chardev-backends', 'returns': ['ChardevBackendInfo'] } 110 111## 112# @DataFormat: 113# 114# An enumeration of data format. 115# 116# @utf8: Data is a UTF-8 string (RFC 3629) 117# 118# @base64: Data is Base64 encoded binary (RFC 3548) 119# 120# Since: 1.4 121## 122{ 'enum': 'DataFormat', 123 'data': [ 'utf8', 'base64' ] } 124 125## 126# @ringbuf-write: 127# 128# Write to a ring buffer character device. 129# 130# @device: the ring buffer character device name 131# 132# @data: data to write 133# 134# @format: data encoding (default 'utf8'). 135# 136# - base64: data must be base64 encoded text. Its binary decoding 137# gets written. 138# - utf8: data's UTF-8 encoding is written 139# - data itself is always Unicode regardless of format, like any 140# other string. 141# 142# Since: 1.4 143# 144# .. qmp-example:: 145# 146# -> { "execute": "ringbuf-write", 147# "arguments": { "device": "foo", 148# "data": "abcdefgh", 149# "format": "utf8" } } 150# <- { "return": {} } 151## 152{ 'command': 'ringbuf-write', 153 'data': { 'device': 'str', 154 'data': 'str', 155 '*format': 'DataFormat'} } 156 157## 158# @ringbuf-read: 159# 160# Read from a ring buffer character device. 161# 162# @device: the ring buffer character device name 163# 164# @size: how many bytes to read at most 165# 166# @format: data encoding (default 'utf8'). 167# 168# - base64: the data read is returned in base64 encoding. 169# - utf8: the data read is interpreted as UTF-8. 170# Bug: can screw up when the buffer contains invalid UTF-8 171# sequences, NUL characters, after the ring buffer lost data, 172# and when reading stops because the size limit is reached. 173# - The return value is always Unicode regardless of format, like 174# any other string. 175# 176# Returns: data read from the device 177# 178# Since: 1.4 179# 180# .. qmp-example:: 181# 182# -> { "execute": "ringbuf-read", 183# "arguments": { "device": "foo", 184# "size": 1000, 185# "format": "utf8" } } 186# <- { "return": "abcdefgh" } 187## 188{ 'command': 'ringbuf-read', 189 'data': {'device': 'str', 'size': 'int', '*format': 'DataFormat'}, 190 'returns': 'str' } 191 192## 193# @ChardevCommon: 194# 195# Configuration shared across all chardev backends 196# 197# @logfile: The name of a logfile to save output 198# 199# @logappend: true to append instead of truncate (default to false to 200# truncate) 201# 202# Since: 2.6 203## 204{ 'struct': 'ChardevCommon', 205 'data': { '*logfile': 'str', 206 '*logappend': 'bool' } } 207 208## 209# @ChardevFile: 210# 211# Configuration info for file chardevs. 212# 213# @in: The name of the input file 214# 215# @out: The name of the output file 216# 217# @append: Open the file in append mode (default false to truncate) 218# (Since 2.6) 219# 220# Since: 1.4 221## 222{ 'struct': 'ChardevFile', 223 'data': { '*in': 'str', 224 'out': 'str', 225 '*append': 'bool' }, 226 'base': 'ChardevCommon' } 227 228## 229# @ChardevHostdev: 230# 231# Configuration info for device and pipe chardevs. 232# 233# @device: The name of the special file for the device, i.e. 234# /dev/ttyS0 on Unix or COM1: on Windows 235# 236# Since: 1.4 237## 238{ 'struct': 'ChardevHostdev', 239 'data': { 'device': 'str' }, 240 'base': 'ChardevCommon' } 241 242## 243# @ChardevSocket: 244# 245# Configuration info for (stream) socket chardevs. 246# 247# @addr: socket address to listen on (server=true) or connect to 248# (server=false) 249# 250# @tls-creds: the ID of the TLS credentials object (since 2.6) 251# 252# @tls-authz: the ID of the QAuthZ authorization object against which 253# the client's x509 distinguished name will be validated. This 254# object is only resolved at time of use, so can be deleted and 255# recreated on the fly while the chardev server is active. If 256# missing, it will default to denying access (since 4.0) 257# 258# @server: create server socket (default: true) 259# 260# @wait: wait for incoming connection on server sockets (default: 261# false). Silently ignored with server: false. This use is 262# deprecated. 263# 264# @nodelay: set TCP_NODELAY socket option (default: false) 265# 266# @telnet: enable telnet protocol on server sockets (default: false) 267# 268# @tn3270: enable tn3270 protocol on server sockets (default: false) 269# (Since: 2.10) 270# 271# @websocket: enable websocket protocol on server sockets 272# (default: false) (Since: 3.1) 273# 274# @reconnect: For a client socket, if a socket is disconnected, then 275# attempt a reconnect after the given number of seconds. Setting 276# this to zero disables this function. The use of this member is 277# deprecated, use @reconnect-ms instead. (default: 0) (Since: 2.2) 278# 279# @reconnect-ms: For a client socket, if a socket is disconnected, 280# then attempt a reconnect after the given number of milliseconds. 281# Setting this to zero disables this function. This member is 282# mutually exclusive with @reconnect. 283# (default: 0) (Since: 9.2) 284# 285# Features: 286# 287# @deprecated: Member @reconnect is deprecated. Use @reconnect-ms 288# instead. 289# 290# Since: 1.4 291## 292{ 'struct': 'ChardevSocket', 293 'data': { 'addr': 'SocketAddressLegacy', 294 '*tls-creds': 'str', 295 '*tls-authz' : 'str', 296 '*server': 'bool', 297 '*wait': 'bool', 298 '*nodelay': 'bool', 299 '*telnet': 'bool', 300 '*tn3270': 'bool', 301 '*websocket': 'bool', 302 '*reconnect': { 'type': 'int', 'features': [ 'deprecated' ] }, 303 '*reconnect-ms': 'int' }, 304 'base': 'ChardevCommon' } 305 306## 307# @ChardevUdp: 308# 309# Configuration info for datagram socket chardevs. 310# 311# @remote: remote address 312# 313# @local: local address 314# 315# Since: 1.5 316## 317{ 'struct': 'ChardevUdp', 318 'data': { 'remote': 'SocketAddressLegacy', 319 '*local': 'SocketAddressLegacy' }, 320 'base': 'ChardevCommon' } 321 322## 323# @ChardevMux: 324# 325# Configuration info for mux chardevs. 326# 327# @chardev: name of the base chardev. 328# 329# Since: 1.5 330## 331{ 'struct': 'ChardevMux', 332 'data': { 'chardev': 'str' }, 333 'base': 'ChardevCommon' } 334 335## 336# @ChardevStdio: 337# 338# Configuration info for stdio chardevs. 339# 340# @signal: Allow signals (such as SIGINT triggered by ^C) be delivered 341# to qemu. Default: true. 342# 343# Since: 1.5 344## 345{ 'struct': 'ChardevStdio', 346 'data': { '*signal': 'bool' }, 347 'base': 'ChardevCommon' } 348 349## 350# @ChardevSpiceChannel: 351# 352# Configuration info for spice vm channel chardevs. 353# 354# @type: kind of channel (for example vdagent). 355# 356# Since: 1.5 357## 358{ 'struct': 'ChardevSpiceChannel', 359 'data': { 'type': 'str' }, 360 'base': 'ChardevCommon', 361 'if': 'CONFIG_SPICE' } 362 363## 364# @ChardevSpicePort: 365# 366# Configuration info for spice port chardevs. 367# 368# @fqdn: name of the channel (see docs/spice-port-fqdn.txt) 369# 370# Since: 1.5 371## 372{ 'struct': 'ChardevSpicePort', 373 'data': { 'fqdn': 'str' }, 374 'base': 'ChardevCommon', 375 'if': 'CONFIG_SPICE' } 376 377## 378# @ChardevDBus: 379# 380# Configuration info for DBus chardevs. 381# 382# @name: name of the channel (following docs/spice-port-fqdn.txt) 383# 384# Since: 7.0 385## 386{ 'struct': 'ChardevDBus', 387 'data': { 'name': 'str' }, 388 'base': 'ChardevCommon', 389 'if': 'CONFIG_DBUS_DISPLAY' } 390 391## 392# @ChardevVC: 393# 394# Configuration info for virtual console chardevs. 395# 396# @width: console width, in pixels 397# 398# @height: console height, in pixels 399# 400# @cols: console width, in chars 401# 402# @rows: console height, in chars 403# 404# .. note:: The options are only effective when the VNC or SDL 405# graphical display backend is active. They are ignored with the 406# GTK, Spice, VNC and D-Bus display backends. 407# 408# Since: 1.5 409## 410{ 'struct': 'ChardevVC', 411 'data': { '*width': 'int', 412 '*height': 'int', 413 '*cols': 'int', 414 '*rows': 'int' }, 415 'base': 'ChardevCommon' } 416 417## 418# @ChardevRingbuf: 419# 420# Configuration info for ring buffer chardevs. 421# 422# @size: ring buffer size, must be power of two, default is 65536 423# 424# Since: 1.5 425## 426{ 'struct': 'ChardevRingbuf', 427 'data': { '*size': 'int' }, 428 'base': 'ChardevCommon' } 429 430## 431# @ChardevQemuVDAgent: 432# 433# Configuration info for qemu vdagent implementation. 434# 435# @mouse: enable/disable mouse, default is enabled. 436# 437# @clipboard: enable/disable clipboard, default is disabled. 438# 439# Since: 6.1 440## 441{ 'struct': 'ChardevQemuVDAgent', 442 'data': { '*mouse': 'bool', 443 '*clipboard': 'bool' }, 444 'base': 'ChardevCommon', 445 'if': 'CONFIG_SPICE_PROTOCOL' } 446 447## 448# @ChardevBackendKind: 449# 450# @file: regular files 451# 452# @serial: serial host device 453# 454# @parallel: parallel host device 455# 456# @pipe: pipes (since 1.5) 457# 458# @socket: stream socket 459# 460# @udp: datagram socket (since 1.5) 461# 462# @pty: pseudo-terminal 463# 464# @null: provides no input, throws away output 465# 466# @mux: (since 1.5) 467# 468# @msmouse: emulated Microsoft serial mouse (since 1.5) 469# 470# @wctablet: emulated Wacom Penpartner serial tablet (since 2.9) 471# 472# @braille: Baum Braille device (since 1.5) 473# 474# @testdev: device for test-suite control (since 2.2) 475# 476# @stdio: standard I/O (since 1.5) 477# 478# @console: Windows console (since 1.5) 479# 480# @spicevmc: spice vm channel (since 1.5) 481# 482# @spiceport: Spice port channel (since 1.5) 483# 484# @qemu-vdagent: Spice vdagent (since 6.1) 485# 486# @dbus: D-Bus channel (since 7.0) 487# 488# @vc: virtual console (since 1.5) 489# 490# @ringbuf: memory ring buffer (since 1.6) 491# 492# @memory: synonym for @ringbuf (since 1.5) 493# 494# Features: 495# 496# @deprecated: Member @memory is deprecated. Use @ringbuf instead. 497# 498# Since: 1.4 499## 500{ 'enum': 'ChardevBackendKind', 501 'data': [ 'file', 502 { 'name': 'serial', 'if': 'HAVE_CHARDEV_SERIAL' }, 503 { 'name': 'parallel', 'if': 'HAVE_CHARDEV_PARALLEL' }, 504 'pipe', 505 'socket', 506 'udp', 507 'pty', 508 'null', 509 'mux', 510 'msmouse', 511 'wctablet', 512 { 'name': 'braille', 'if': 'CONFIG_BRLAPI' }, 513 'testdev', 514 'stdio', 515 { 'name': 'console', 'if': 'CONFIG_WIN32' }, 516 { 'name': 'spicevmc', 'if': 'CONFIG_SPICE' }, 517 { 'name': 'spiceport', 'if': 'CONFIG_SPICE' }, 518 { 'name': 'qemu-vdagent', 'if': 'CONFIG_SPICE_PROTOCOL' }, 519 { 'name': 'dbus', 'if': 'CONFIG_DBUS_DISPLAY' }, 520 'vc', 521 'ringbuf', 522 { 'name': 'memory', 'features': [ 'deprecated' ] } ] } 523 524## 525# @ChardevFileWrapper: 526# 527# @data: Configuration info for file chardevs 528# 529# Since: 1.4 530## 531{ 'struct': 'ChardevFileWrapper', 532 'data': { 'data': 'ChardevFile' } } 533 534## 535# @ChardevHostdevWrapper: 536# 537# @data: Configuration info for device and pipe chardevs 538# 539# Since: 1.4 540## 541{ 'struct': 'ChardevHostdevWrapper', 542 'data': { 'data': 'ChardevHostdev' } } 543 544## 545# @ChardevSocketWrapper: 546# 547# @data: Configuration info for (stream) socket chardevs 548# 549# Since: 1.4 550## 551{ 'struct': 'ChardevSocketWrapper', 552 'data': { 'data': 'ChardevSocket' } } 553 554## 555# @ChardevUdpWrapper: 556# 557# @data: Configuration info for datagram socket chardevs 558# 559# Since: 1.5 560## 561{ 'struct': 'ChardevUdpWrapper', 562 'data': { 'data': 'ChardevUdp' } } 563 564## 565# @ChardevCommonWrapper: 566# 567# @data: Configuration shared across all chardev backends 568# 569# Since: 2.6 570## 571{ 'struct': 'ChardevCommonWrapper', 572 'data': { 'data': 'ChardevCommon' } } 573 574## 575# @ChardevMuxWrapper: 576# 577# @data: Configuration info for mux chardevs 578# 579# Since: 1.5 580## 581{ 'struct': 'ChardevMuxWrapper', 582 'data': { 'data': 'ChardevMux' } } 583 584## 585# @ChardevStdioWrapper: 586# 587# @data: Configuration info for stdio chardevs 588# 589# Since: 1.5 590## 591{ 'struct': 'ChardevStdioWrapper', 592 'data': { 'data': 'ChardevStdio' } } 593 594## 595# @ChardevSpiceChannelWrapper: 596# 597# @data: Configuration info for spice vm channel chardevs 598# 599# Since: 1.5 600## 601{ 'struct': 'ChardevSpiceChannelWrapper', 602 'data': { 'data': 'ChardevSpiceChannel' }, 603 'if': 'CONFIG_SPICE' } 604 605## 606# @ChardevSpicePortWrapper: 607# 608# @data: Configuration info for spice port chardevs 609# 610# Since: 1.5 611## 612{ 'struct': 'ChardevSpicePortWrapper', 613 'data': { 'data': 'ChardevSpicePort' }, 614 'if': 'CONFIG_SPICE' } 615 616## 617# @ChardevQemuVDAgentWrapper: 618# 619# @data: Configuration info for qemu vdagent implementation 620# 621# Since: 6.1 622## 623{ 'struct': 'ChardevQemuVDAgentWrapper', 624 'data': { 'data': 'ChardevQemuVDAgent' }, 625 'if': 'CONFIG_SPICE_PROTOCOL' } 626 627## 628# @ChardevDBusWrapper: 629# 630# @data: Configuration info for DBus chardevs 631# 632# Since: 7.0 633## 634{ 'struct': 'ChardevDBusWrapper', 635 'data': { 'data': 'ChardevDBus' }, 636 'if': 'CONFIG_DBUS_DISPLAY' } 637 638## 639# @ChardevVCWrapper: 640# 641# @data: Configuration info for virtual console chardevs 642# 643# Since: 1.5 644## 645{ 'struct': 'ChardevVCWrapper', 646 'data': { 'data': 'ChardevVC' } } 647 648## 649# @ChardevRingbufWrapper: 650# 651# @data: Configuration info for ring buffer chardevs 652# 653# Since: 1.5 654## 655{ 'struct': 'ChardevRingbufWrapper', 656 'data': { 'data': 'ChardevRingbuf' } } 657 658## 659# @ChardevBackend: 660# 661# Configuration info for the new chardev backend. 662# 663# @type: backend type 664# 665# Since: 1.4 666## 667{ 'union': 'ChardevBackend', 668 'base': { 'type': 'ChardevBackendKind' }, 669 'discriminator': 'type', 670 'data': { 'file': 'ChardevFileWrapper', 671 'serial': { 'type': 'ChardevHostdevWrapper', 672 'if': 'HAVE_CHARDEV_SERIAL' }, 673 'parallel': { 'type': 'ChardevHostdevWrapper', 674 'if': 'HAVE_CHARDEV_PARALLEL' }, 675 'pipe': 'ChardevHostdevWrapper', 676 'socket': 'ChardevSocketWrapper', 677 'udp': 'ChardevUdpWrapper', 678 'pty': 'ChardevCommonWrapper', 679 'null': 'ChardevCommonWrapper', 680 'mux': 'ChardevMuxWrapper', 681 'msmouse': 'ChardevCommonWrapper', 682 'wctablet': 'ChardevCommonWrapper', 683 'braille': { 'type': 'ChardevCommonWrapper', 684 'if': 'CONFIG_BRLAPI' }, 685 'testdev': 'ChardevCommonWrapper', 686 'stdio': 'ChardevStdioWrapper', 687 'console': { 'type': 'ChardevCommonWrapper', 688 'if': 'CONFIG_WIN32' }, 689 'spicevmc': { 'type': 'ChardevSpiceChannelWrapper', 690 'if': 'CONFIG_SPICE' }, 691 'spiceport': { 'type': 'ChardevSpicePortWrapper', 692 'if': 'CONFIG_SPICE' }, 693 'qemu-vdagent': { 'type': 'ChardevQemuVDAgentWrapper', 694 'if': 'CONFIG_SPICE_PROTOCOL' }, 695 'dbus': { 'type': 'ChardevDBusWrapper', 696 'if': 'CONFIG_DBUS_DISPLAY' }, 697 'vc': 'ChardevVCWrapper', 698 'ringbuf': 'ChardevRingbufWrapper', 699 'memory': 'ChardevRingbufWrapper' } } 700 701## 702# @ChardevReturn: 703# 704# Return info about the chardev backend just created. 705# 706# @pty: name of the slave pseudoterminal device, present if and only 707# if a chardev of type 'pty' was created 708# 709# Since: 1.4 710## 711{ 'struct' : 'ChardevReturn', 712 'data': { '*pty': 'str' } } 713 714## 715# @chardev-add: 716# 717# Add a character device backend 718# 719# @id: the chardev's ID, must be unique 720# 721# @backend: backend type and parameters 722# 723# Returns: ChardevReturn. 724# 725# Since: 1.4 726# 727# .. qmp-example:: 728# 729# -> { "execute" : "chardev-add", 730# "arguments" : { "id" : "foo", 731# "backend" : { "type" : "null", "data" : {} } } } 732# <- { "return": {} } 733# 734# .. qmp-example:: 735# 736# -> { "execute" : "chardev-add", 737# "arguments" : { "id" : "bar", 738# "backend" : { "type" : "file", 739# "data" : { "out" : "/tmp/bar.log" } } } } 740# <- { "return": {} } 741# 742# .. qmp-example:: 743# 744# -> { "execute" : "chardev-add", 745# "arguments" : { "id" : "baz", 746# "backend" : { "type" : "pty", "data" : {} } } } 747# <- { "return": { "pty" : "/dev/pty/42" } } 748## 749{ 'command': 'chardev-add', 750 'data': { 'id': 'str', 751 'backend': 'ChardevBackend' }, 752 'returns': 'ChardevReturn' } 753 754## 755# @chardev-change: 756# 757# Change a character device backend 758# 759# @id: the chardev's ID, must exist 760# 761# @backend: new backend type and parameters 762# 763# Returns: ChardevReturn. 764# 765# Since: 2.10 766# 767# .. qmp-example:: 768# 769# -> { "execute" : "chardev-change", 770# "arguments" : { "id" : "baz", 771# "backend" : { "type" : "pty", "data" : {} } } } 772# <- { "return": { "pty" : "/dev/pty/42" } } 773# 774# .. qmp-example:: 775# 776# -> {"execute" : "chardev-change", 777# "arguments" : { 778# "id" : "charchannel2", 779# "backend" : { 780# "type" : "socket", 781# "data" : { 782# "addr" : { 783# "type" : "unix" , 784# "data" : { 785# "path" : "/tmp/charchannel2.socket" 786# } 787# }, 788# "server" : true, 789# "wait" : false }}}} 790# <- {"return": {}} 791## 792{ 'command': 'chardev-change', 793 'data': { 'id': 'str', 794 'backend': 'ChardevBackend' }, 795 'returns': 'ChardevReturn' } 796 797## 798# @chardev-remove: 799# 800# Remove a character device backend 801# 802# @id: the chardev's ID, must exist and not be in use 803# 804# Since: 1.4 805# 806# .. qmp-example:: 807# 808# -> { "execute": "chardev-remove", "arguments": { "id" : "foo" } } 809# <- { "return": {} } 810## 811{ 'command': 'chardev-remove', 812 'data': { 'id': 'str' } } 813 814## 815# @chardev-send-break: 816# 817# Send a break to a character device 818# 819# @id: the chardev's ID, must exist 820# 821# Since: 2.10 822# 823# .. qmp-example:: 824# 825# -> { "execute": "chardev-send-break", "arguments": { "id" : "foo" } } 826# <- { "return": {} } 827## 828{ 'command': 'chardev-send-break', 829 'data': { 'id': 'str' } } 830 831## 832# @VSERPORT_CHANGE: 833# 834# Emitted when the guest opens or closes a virtio-serial port. 835# 836# @id: device identifier of the virtio-serial port 837# 838# @open: true if the guest has opened the virtio-serial port 839# 840# .. note:: This event is rate-limited. 841# 842# Since: 2.1 843# 844# .. qmp-example:: 845# 846# <- { "event": "VSERPORT_CHANGE", 847# "data": { "id": "channel0", "open": true }, 848# "timestamp": { "seconds": 1401385907, "microseconds": 422329 } } 849## 850{ 'event': 'VSERPORT_CHANGE', 851 'data': { 'id': 'str', 852 'open': 'bool' } } 853