1 unstable release
new 0.1.0 | Nov 15, 2024 |
---|
#140 in Network programming
59 downloads per month
74KB
1.5K
SLoC
vhost-device-console - Console emulation backend daemon
Description
This program is a vhost-user backend that emulates a VirtIO Console device. The device's binary takes as parameters a socket path, a socket number which is the number of connections, commonly used across all vhost-devices to communicate with the vhost-user frontend devices, and the backend type "nested" or "network".
The "nested" backend allows input/output to the guest console through the current terminal.
The "network" backend creates a local TCP port (specified on vhost-device-console arguments) and allows input/output to the guest console via that socket.
This program is tested with QEMU's vhost-user-device-pci
device.
Examples' section below.
Synopsis
vhost-device-console --socket-path=<SOCKET_PATH>
Options
.. program:: vhost-device-console
.. option:: -h, --help
Print help.
.. option:: -s, --socket-path=PATH
Location of vhost-user Unix domain sockets, this path will be suffixed with 0,1,2..socket_count-1.
.. option:: -p, --tcp-port=PORT_NUMBER
The localhost's port to be used for each guest, this part will be increased with 0,1,2..socket_count-1.
-- option:: -b, --backend=nested|network
The backend type vhost-device-console to be used. The current implementation supports two types of backends: "nested", "network" (described above). Note: The nested backend is selected by default and can be used only when socket_count equals 1.
Limitations
This device is still work-in-progress (WIP). The current version has been tested
with VIRTIO_CONSOLE_F_MULTIPORT, but only for one console (max_nr_ports = 1
).
Also it does not yet support the VIRTIO_CONSOLE_F_EMERG_WRITE and
VIRTIO_CONSOLE_F_SIZE features.
Features
The current device gives access to multiple QEMU guest by providing a login prompt either by connecting to a localhost server port (network backend) or by creating an nested command prompt in the current terminal (nested backend). This prompt appears as soon as the guest is fully booted and gives the ability to user run command as a in regular terminal.
Examples
Dependencies
For testing the device the required dependencies are:
- Linux:
- Set
CONFIG_VIRTIO_CONSOLE=y
- Set
- QEMU (optional):
- A new vhost-user-console device has been implemented in the following repo:
Test the device
The daemon should be started first:
host# vhost-device-console --socket-path=/tmp/console.sock --socket-count=1 \
--tcp-port=12345 --backend=network
Note: In case the backend is "nested" there is no need to provide "--socket-count" and "--tcp-port" parameters.
The QEMU invocation needs to create a chardev socket the device can use to communicate as well as share the guests memory over a memfd.
There are two option for running QEMU with vhost-device-console:
- Using
vhost-user-console-pci
:
host# qemu-system \
<normal QEMU options> \
-machine <machine options>,memory-backend=mem0 \
-object memory-backend-memfd,id=mem0,size=<Guest RAM size> \ # size == -m size
-chardev socket,path=/tmp/console.sock0,id=con \
-device vhost-user-console-pci,chardev=con0,id=console \
...
Note: For testing this scenario the reader needs to clone the QEMU version from the following repo which implements
vhost-user-console
device.
- Using
vhost-user-device-pci
:
host# qemu-system \
<normal QEMU options> \
-machine <machine options>,memory-backend=mem0 \
-object memory-backend-memfd,id=mem0,size=<Guest RAM size> \ # size == -m size
-chardev socket,id=con0,path=/tmp/console.sock0 \
-device vhost-user-device-pci,chardev=con0,virtio-id=3,num_vqs=4,config_size=12 \
...
Eventually, the user can connect to the console by running:
host# stty -icanon -echo && nc localhost 12345 && stty echo
Note:
stty -icanon -echo
is used to force the tty layer to disable buffering and send / receive each character individually. After closing the connection please runstty echo
so character are printed back on the local terminal console.
Note: In case the backend is "nested" a nested terminal will be shown into vhost-device-console terminal space.
License
This project is licensed under either of
- Apache License, Version 2.0
- BSD-3-Clause License
Dependencies
~7–16MB
~225K SLoC