This document attempts to define all the paths which are available in the Xen hypervisor file system (hypfs).
The hypervisor file system can be accessed via the xenhypfs tool.
The availability of the hypervisor file system depends on the hypervisor config option CONFIG_HYPFS, which is on per default.
The hypervisor file system is similar to the Linux kernel’s sysfs. In this document directories are always specified with a trailing “/”.
The following notation conventions apply:
DIRECTORY/
PATH = VALUES [TAGS]
The first syntax defines a directory. It normally contains related entries and the general scope of the directory is described.
The second syntax defines a file entry containing values which are either set by the hypervisor or, if the file is writable, can be set by the user.
PATH can contain simple regex constructs following the Perl compatible regexp syntax described in pcre(3) or perlre(1).
A hypervisor file system entry name can be any 0-delimited byte string not containing any ‘/’ character. The names “.” and “..” are reserved for file system internal use.
VALUES are strings and can take the following forms (note that this represents only the syntax used in this document):
Additional TAGS may follow as a comma separated set of the following tags enclosed in square brackets.
So an entry could look like this:
/cpu-bugs/active-pv/xpti = ("No"|{"dom0", "domU", "PCID-on"}) [w,X86,PV]
Possible values would be “No” or a list of “dom0”, “domU”, and “PCID-on” with the list elements separated by spaces, e.g. “dom0 PCID-on”. The entry would be writable and it would exist on X86 only and only if the hypervisor is configured to support PV guests.
Path presence is not stable, but path meaning is always stable: if a tool you write finds a path present, it can rely on behavior in future versions of the hypervisors, and in different configurations. Specifically:
A populated Xen hypervisor file system might look like the following example:
/
buildinfo/ directory containing build-time data
config contents of .config file used to build Xen
cpu-bugs/ x86: directory of cpu bug information
l1tf "Vulnerable" or "Not vulnerable"
mds "Vulnerable" or "Not vulnerable"
meltdown "Vulnerable" or "Not vulnerable"
spec-store-bypass "Vulnerable" or "Not vulnerable"
spectre-v1 "Vulnerable" or "Not vulnerable"
spectre-v2 "Vulnerable" or "Not vulnerable"
mitigations/ directory of mitigation settings
bti-thunk "N/A", "RETPOLINE", "LFENCE" or "JMP"
spec-ctrl "No", "IBRS+" or "IBRS-"
ibpb "No" or "Yes"
l1d-flush "No" or "Yes"
md-clear "No" or "VERW"
l1tf-barrier "No" or "Yes"
active-hvm/ directory for mitigations active in hvm doamins
msr-spec-ctrl "No" or "Yes"
rsb "No" or "Yes"
eager-fpu "No" or "Yes"
md-clear "No" or "Yes"
active-pv/ directory for mitigations active in pv doamins
msr-spec-ctrl "No" or "Yes"
rsb "No" or "Yes"
eager-fpu "No" or "Yes"
md-clear "No" or "Yes"
xpti "No" or list of "dom0", "domU", "PCID-on"
l1tf-shadow "No" or list of "dom0", "domU"
params/ directory with hypervisor parameter values
(boot/runtime parameters)
The root of the hypervisor file system.
A directory containing static information generated while building the hypervisor.
Git commit of the hypervisor.
A directory containing information about compilation of Xen.
Information who compiled the hypervisor.
Date of the hypervisor compilation.
Information about the compile domain.
The compiler used to build Xen.
The contents of the xen/.config
file at the time of the
hypervisor build.
A directory containing version information of the hypervisor.
Extra version information.
The major version of Xen.
The minor version of Xen.
A directory of all current cpupools.
The individual cpupools. Each entry is a directory with the name being the cpupool-id (e.g. /cpupool/0/).
The scheduling granularity of a cpupool.
Writing a value is allowed only for cpupools with no cpu assigned and if the architecture is supporting different scheduling granularities.
A directory of runtime parameters.
The individual parameters. The description of the different
parameters can be found in
docs/misc/xen-command-line.pandoc
.