mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
chardev: add path option for pty backend
Add path option to the pty char backend which will create a symbolic link to the given path that points to the allocated PTY. This avoids having to make QMP or HMP monitor queries to find out what the new PTY device path is. Based on patch from Paulo Neves: https://patchew.org/QEMU/1548509635-15776-1-git-send-email-ptsneves@gmail.com/ Tested with the following invocations that the link is created and removed when qemu stops: qemu-system-x86_64 -nodefaults -mon chardev=compat_monitor \ -chardev pty,path=test,id=compat_monitor0 qemu-system-x86_64 -nodefaults -monitor pty:test # check QMP invocation with path set qemu-system-x86_64 -nodefaults -qmp tcp:localhost:4444,server=on,wait=off nc localhost 4444 > {"execute": "qmp_capabilities"} > {"execute": "chardev-add", "arguments": {"id": "bar", "backend": { "type": "pty", "data": {"path": "test" }}}} # check QMP invocation with path not set qemu-system-x86_64 -nodefaults -qmp tcp:localhost:4444,server=on,wait=off nc localhost 4444 > {"execute": "qmp_capabilities"} > {"execute": "chardev-add", "arguments": {"id": "bar", "backend": { "type": "pty", "data": {}}}} Also tested that when a link path is not passed invocations still work, e.g.: qemu-system-x86_64 -monitor pty Co-authored-by: Paulo Neves <ptsneves@gmail.com> Signed-off-by: Paulo Neves <ptsneves@gmail.com> [OP: rebase and address original patch review comments] Signed-off-by: Octavian Purdila <tavip@google.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-ID: <20240806010735.2450555-1-tavip@google.com>
This commit is contained in:
parent
c8e2b6b4d7
commit
b74cb8761c
4 changed files with 91 additions and 7 deletions
|
@ -444,6 +444,20 @@
|
|||
'base': 'ChardevCommon',
|
||||
'if': 'CONFIG_SPICE_PROTOCOL' }
|
||||
|
||||
##
|
||||
# @ChardevPty:
|
||||
#
|
||||
# Configuration info for pty implementation.
|
||||
#
|
||||
# @path: optional path to create a symbolic link that points to the
|
||||
# allocated PTY
|
||||
#
|
||||
# Since: 9.2
|
||||
##
|
||||
{ 'struct': 'ChardevPty',
|
||||
'data': { '*path': 'str' },
|
||||
'base': 'ChardevCommon' }
|
||||
|
||||
##
|
||||
# @ChardevBackendKind:
|
||||
#
|
||||
|
@ -655,6 +669,17 @@
|
|||
{ 'struct': 'ChardevRingbufWrapper',
|
||||
'data': { 'data': 'ChardevRingbuf' } }
|
||||
|
||||
|
||||
##
|
||||
# @ChardevPtyWrapper:
|
||||
#
|
||||
# @data: Configuration info for pty chardevs
|
||||
#
|
||||
# Since: 9.2
|
||||
##
|
||||
{ 'struct': 'ChardevPtyWrapper',
|
||||
'data': { 'data': 'ChardevPty' } }
|
||||
|
||||
##
|
||||
# @ChardevBackend:
|
||||
#
|
||||
|
@ -675,7 +700,7 @@
|
|||
'pipe': 'ChardevHostdevWrapper',
|
||||
'socket': 'ChardevSocketWrapper',
|
||||
'udp': 'ChardevUdpWrapper',
|
||||
'pty': 'ChardevCommonWrapper',
|
||||
'pty': 'ChardevPtyWrapper',
|
||||
'null': 'ChardevCommonWrapper',
|
||||
'mux': 'ChardevMuxWrapper',
|
||||
'msmouse': 'ChardevCommonWrapper',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue