Sophie

Sophie

distrib > Momonga > development > i686 > media > os > by-pkgid > ebaa2ee905d6df590c05ae2846832b3e > files > 230

xen-doc-4.5.0-1m.mo8.i686.rpm

Xen PV Console notes
------------------------------------------------------------------------
                                                      Stefano Stabellini
                                        stefano.stabellini@eu.citrix.com


Xen traditionally provided a single pv console to pv guests, storing the
relevant information in xenstore under /local/domain/$DOMID/console.

Now many years after the introduction of the pv console we have
multiple pv consoles support for pv and hvm guests; multiple pv
console backends (qemu and xenconsoled, see limitations below) and
emulated serial cards too.

This document tries to describe how the whole system works and how the
different components interact with each other.

The first PV console path in xenstore remains:

/local/domain/$DOMID/console

the other PV consoles follow the conventional xenstore device path and
live in:

/local/domain/$DOMID/device/console/$DEVID.

PV consoles have
* (optional) string names;
* 'connection' information describing to what they should be
  connected; and
* a 'type' indicating which daemon should process the data.

We call a PV console with a name a "channel", in reference to the libvirt
concept with the same name and purpose. The file "channels.txt" describes
how to use channels and includes a registry of well-known channel names.

If the PV console has a name (i.e. it is a "channel") then the name
is written to the frontend directory:

name = <name>

If the PV console has no name (i.e. it is a regular console) then the "name"
key is omitted.

The toolstack writes 'connection' information in the xenstore backend in
the keys
* connection: either 'pty' or 'socket'
* path: only present if connection = 'socket', the path of the socket to
  glue the channel to

An artifact of the current implementation, the toolstack will write an
extra backend key
* output: an identifier only meaningful for qemu/xenconsoled

If the toolstack wants the console to be connected to a pty, it will write
to the backend:

connection = pty
output = pty

The backend will write the pty device name to the "tty" node in the
console frontend.

If the toolstack wants a listening Unix domain socket to be created at path
<path>, a connection accepted and data proxied to the console, it will write:

connection = socket
path = <path>
output = chardev:<some internal identifier>

where chardev:<some internal identifier> matches a qemu character device
configured on the qemu command-line.

The backend implementation daemon chosen for a particular console is specified
by the toolstack in the "type" node in the xenstore frontend.
For example:

# xenstore-read /local/domain/26/console/1/type
ioemu

The supported values are only xenconsoled or ioemu; xenconsoled has
several limitations: it can only be used for the first PV console and it
can only connect to a pty.

Emulated serials are provided by qemu-dm only to hvm guests; the number
of emulated serials depends on how many "-serial" command line options
are given to qemu. The output of a serial is specified as argument to
the -serial command line option to qemu. Qemu writes the tty name to
xenstore in the following path:

/local/domain/$DOMID/serial/$SERIAL_NUM/tty

xenconsole is the tool to connect to a PV console or an emulated serial
that has a pty as output. Xenconsole takes a domid as parameter plus an
optional console type (pv for PV consoles or serial for emulated
serials) and console number. Depending on the type and console
number, xenconsole will look for the tty node in different xenstore
paths, as described above.  If the user doesn't specify the console type
xenconsole will try to guess: if the guest is a pv guest it defaults to
PV console, if the guest is an hvm guest it defaults to emulated serial.

By default xl creates a pv console for hvm guests, plus an emulated
serial if the user specified 'serial = "pty"' in the VM config file.
Considering that xenconsole defaults to emulated serials for hvm guests,
executing xl create -c "domain" causes xenconsole to attach to the
emulated serial tty. This is most probably what the user wanted because
currently no bootloaders support xen pv consoles so the only way to
interact with a bootloader like grub over a console is to use the
emulated serial.
However the pv console is still easy to use with Linux PV on HVM guests:
the user just need to pass "console=hvc0" to the kernel command line and
then execute "xl console -t pv <domain>" to connect to it.

When using stubdoms the serial cards are still emulated by qemu (this
time running in the stubdom), the number of serial cards and where the
output goes is still specified using qemu command line options.
The difference is that for each emulated serial card there must be a pv
console connection between the stubdom and dom0 to export the serial
output from the stubdom to dom0. The pv console backend for stubdom's pv
consoles is always ioemu because multiple pv consoles support is a
requirement in this case, considering that minios has its own pv console
too. In order to simplify the setup when using stubdoms the hvm guest
can only have one pv console with xenstored as backend (the stubdom
could provide pv console backends to the hvm guest but then it would
need another pv console connection for each console backend to export
the pty to dom0).