Features/VirtioSerial

From FedoraProject

< Features(Redirected from VirtioSerial)
Jump to: navigation, search

Contents

Virtio-Serial

Summary

This feature adds a virtio-serial device to guests running on top of qemu and kvm. It exposes multiple ports to the guest in the form of simple char devices for simple IO between the guest and host userspaces.

Owner

Current status

Detailed Description

Also known as 'vmchannel', a transport mechanism is needed for communication between the host userspace and guest userspace for achieving things like making clipboard copy/paste work seamlessly across the host and guest, locking the guest screen in case the vnc session to the guest is closed and so on. This can be used in offline cases as well, for example with libguestfs to probe which file systems the guest uses, the apps installed, etc.

Virtio-serial is just the transport protocol that will enable such applications to be written. It has two parts: (a) device emulation in qemu that presents a virtio-pci device to the guest and (b) a guest driver that presents a char device interface to userspace applications.

Benefit to Fedora

Some benefits include:

Scope

Changes are required in QEMU and Linux. A few udev rules will have to be added to dynamically create ports for the device.

How To Test

There are quite a few ways to test the functionality:

Git repository for testsuite:

http://fedorapeople.org/gitweb?p=amitshah/public_git/test-virtserial.git

When starting qemu or kvm guests from the command line, add something like this:

-device virtio-serial-pci \
-chardev socket,path=/tmp/foo,id=foo \
-device virtserialport,chardev=foo,name=org.fedoraproject.port.0

This will create a device and expose one serial port to the guest. The guest kernel should load the virtio_console.ko module and expose a /dev/vcon1 port to guest userspace app developers. A sysfs attribute is placed in /sys/class/virtio-console/vcon1/name that contains the text "org.fedoraproject.port.0"

Data written into host's /tmp/foo (via a utility like socat) will then be relayed to the guest and a guest app should be able to read the data from /dev/vcon1.

/dev/vcon0 is reserved for the first virtio console.

User Experience

Virtio-serial is just the transport and by itself won't be user-visible. Applications written on top of virtio-serial to communicate data between the host and guest OSes will bring user-visible changes.

Dependencies

This feature depends on acceptance of the patches by the QEMU and Linux kernel communities.

Contingency Plan

QEMU currently contains an alternative implementation of vmchannel using userland networking which is slower but similar in feature set. Continue using that interface in case virtio-serial is not ready.

Documentation

http://www.linux-kvm.org/page/VMchannel_Requirements

Release Notes

Comments and Discussion