Skip to main content.

NetBSD/xen Howto

BSD daemon

Introduction

[Xen screenshot]

Xen is a virtual machine monitor for x86 hardware (requires i686-class CPUs), which supports running multiple guest operating systems on a single machine. Guest OSes (also called “domains”) require a modified kernel which supports Xen hypercalls in replacement to access to the physical hardware. At boot, the Xen kernel (also known as the Xen hypervisor) is loaded (via grub) along with the guest kernel for the first domain (called domain0). domain0 has special privileges to access the physical hardware (PCI and ISA devices), administrate other domains and provide virtual devices (disks and network) to other domains that lack those privileges. For more details, see http://www.xen.org/.

NetBSD can be used for both domain0 (Dom0) and other, unprivileged (DomU) domains. (Actually there can be multiple privileged domains accessing different parts of the hardware, all providing virtual devices to unprivileged domains. We will only talk about the case of a single privileged domain, domain0). domain0 will see physical devices much like a regular i386 or amd64 kernel, and will own the physical console (VGA or serial). Unprivileged domains will only see a character-only virtual console, virtual disks (xbd) and virtual network interfaces (xennet) provided by a privileged domain (usually domain0). xbd devices are connected to a block device (i.e. a partition of a disk, raid, ccd, ... device) in the privileged domain. xennet devices are connected to virtual devices in the privileged domain, named xvif<domain number>.<if number for this domain> (e.g. xvif1.0). Both xennet and xvif devices are seen as regular Ethernet devices (they can be seen as a crossover cable between 2 PCs) and can be assigned addresses (and be routed or NATed, filtered using IPF, etc ...) or be added as part of a bridge.


Installing NetBSD as privileged domain (Dom0)

First do a NetBSD/i386 or NetBSD/amd64 installation of the 4.0 release (or newer: for Xen3 amd64 you'll need NetBSD-current from December 2007 or newer) as you usually do on x86 hardware. The i386 binary release is available from ftp://ftp.NetBSD.org/pub/NetBSD/NetBSD-4.0/i386/. Binary snapshots for current and the netbsd-4 branches are available from ftp://ftp.NetBSD.org/pub/NetBSD/NetBSD-daily/. When partitioning the disk, because of limitations/bugs in grub, you have to make the root partition smaller than 512Mb, and formatted as FFSv1, 8k block/1k fragments (If the partition is too large, use FFSv2 or different block/fragment sizes, grub may fail to load some files). Also keep in mind that you'll probably want to provide virtual disks to other domains, to reserve some partitions for these virtual domains. Alternatively, you can create large files in the file system, map them to vnd(4) devices and export theses vnd devices to other domains.

Next step is to install the sysutils/grub and sysutils/xentools3 packages. grub is needed to load the xen and domain0 kernels; xentools3 contains the utilities to control xen from domain0. sysutils/xentools3-hvm contains the utilities needed to run unmodified guests OSes using the HVM support.

Next you need the Xen 3.x kernel itself. You can install it via pkgsrc (sysutils/xenkernel3). The file you're looking for is xen.gz. Copy it to your root file system. xen-debug.gz is a kernel with more consistency checks and more details printed on the serial console, it's useful to debug guest crashing issues if you use a serial console. It's not useful with a VGA console.

You'll then need a NetBSD/Xen kernel for domain0 on your root file system. The XEN3_DOM0 kernel provided as part of the i386 or amd64 binaries is suitable for this, but you may want to customize it. Keep your native kernel around, it can be useful for recovery. Note: the domain0 kernel must support KERNFS and /kern must be mounted because xend needs access to /kern/xen/privcmd.

Next you need to install Grub to load the xen.gz kernel, and the NetBSD domain0 kernel as a module. On amd64 it's a bit tricky, because grub will definitively not build as a 64bit binary. First install emulators/netbsd32_compat30, then install an i386 grub binary using pkg_add -f from one of the binary packages in ftp://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/i386/.

In the grub config you'll also specify the memory allocated to domain0, the console to use, etc ...

Here is a commented /grub/menu.lst file:

#Grub config file for NetBSD/xen. Copy as /grub/menu.lst and run
# grub-install /dev/rwd0d (assuming your boot device is wd0).
#
# The default entry to load will be the first one
default=0

# boot after 10s the default entry if the user didn't hit keyboard
timeout=10

# Configure serial port to use as console. Ignore if you'll use VGA only
serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1

# Let the user select which console to use (serial or VGA), default
# to serial after 10s
terminal --timeout=10 serial console

# An entry for NetBSD/xen, using /netbsd as the domain0 kernel, and serial
# console. Domain0 will have 64MB RAM allocated.
# Assume NetBSD is installed in the first MBR partition.
title Xen 3.0 / NetBSD (hda0, serial)
  root(hd0,0)
  kernel (hd0,a)/xen.gz dom0_mem=65536 com1=115200,8n1
  module (hd0,a)/netbsd bootdev=/dev/wd0a ro console=ttyS0 

# Same as above, but using VGA console
# We can use console=tty0 (Linux syntax) or console=pc (NetBSD syntax)
title Xen 3.0 / NetBSD (hda0, vga)
  root(hd0,0)
  kernel (hd0,a)/xen.gz dom0_mem=65536 
  module (hd0,a)/netbsd bootdev=/dev/wd0a ro console=tty0 

# NetBSD/xen using a backup domain0 kernel (in case you installed a
# nonworking kernel as /netbsd
title Xen 3.0 / NetBSD (hda0, backup, serial)
  root(hd0,0)
  kernel (hd0,a)/xen.gz dom0_mem=65536 com1=115200,8n1
  module (hd0,a)/netbsd.backup bootdev=/dev/wd0a ro console=ttyS0
title Xen 3.0 / NetBSD (hda0, backup, VGA)
  root(hd0,0)
  kernel (hd0,a)/xen.gz dom0_mem=65536
  module (hd0,a)/netbsd.backup bootdev=/dev/wd0a ro console=tty0

#Load a regular NetBSD/i386 kernel. Can be useful if you end up with a
#nonworking /xen.gz
title NetBSD 4.0
  root (hd0,a)
  kernel --type=netbsd /netbsd-GENERIC

#Load the NetBSD bootloader, letting it load the NetBSD/i386 kernel.
#May be better than the above, as grub can't pass all required infos
#to the NetBSD/i386 kernel (e.g. console, root device, ...)
title NetBSD chain
  root        (hd0,0)
  chainloader +1

## end of grub config file.
      

Install grub with the following command:

# grub --no-floppy

grub> root (hd0,a)
 Filesystem type is ffs, partition type 0xa9

grub> setup (hd0)
 Checking if "/boot/grub/stage1" exists... no
 Checking if "/grub/stage1" exists... yes
 Checking if "/grub/stage2" exists... yes
 Checking if "/grub/ffs_stage1_5" exists... yes
 Running "embed /grub/ffs_stage1_5 (hd0)"...  14 sectors are embedded.
succeeded
 Running "install /grub/stage1 (hd0) (hd0)1+14 p (hd0,0,a)/grub/stage2 /grub/menu.lst"...
 succeeded
Done.
      

Creating an unprivileged NetBSD domain (DomU)

Once you have domain0 running, you need to start the xen tool daemon (/usr/pkg/share/examples/rc.d/xend start) and the xen backend daemon (/usr/pkg/share/examples/rc.d/xenbackendd start). Make sure that /dev/xencons and /dev/xenevt exist before starting xend, you can create them with this command:

# cd /dev && sh MAKEDEV xen

xend will write logs to /var/log/xend.log and /var/log/xend-debug.log. You can then control xen with the xm tool. 'xm list' you show something like:

# xm list
Name              Id  Mem(MB)  CPU  State  Time(s)  Console
Domain-0           0       64    0  r----     58.1

'xm create' allows you to create a new domain. It uses a config file for its parameters in PKG_SYSCONFDIR (by default /usr/pkg/etc/xen/). On creation, a kernel has to be specified, which will be executed in the new domain (this kernel is in the domain0 file system, not on the new domain virtual disk; but please note, you should install the same kernel into domainU as /netbsd in order to make your system tools, like savecore(8), work). A suitable kernel is provided as part of the i386 and amd64 binary sets: XEN3_DOMU.

Here is an /usr/pkg/etc/xen/nbsd example config file:

#  -*- mode: python; -*-
#============================================================================
# Python defaults setup for 'xm create'.
# Edit this file to reflect the configuration of your system.
#============================================================================

#----------------------------------------------------------------------------
# Kernel image file. This kernel will be loaded in the new domain.
kernel = "/home/bouyer/netbsd-XEN3_DOMU"
#kernel = "/home/bouyer/netbsd-INSTALL_XEN3_DOMU"

# Memory allocation (in megabytes) for the new domain.
memory = 128

# A handy name for your new domain. This will appear in 'xm list',
# and you can use this as parameters for xm in place of the domain
# number. All domains must have different names.
#
name = "nbsd"

# Which CPU to start domain on (only relevant for SMP hardware).  CPUs
# numbered starting from ``0''.
#
cpu = -1   # leave to Xen to pick

#----------------------------------------------------------------------------
# Define network interfaces for the new domain.

# Number of network interfaces (must be at least 1). Default is 1.
nics = 1

# Define MAC and/or bridge for the network interfaces.
#
# The MAC address specified in ``mac'' is the one used for the interface
# in the new domain. The interface in domain0 will use this address XOR'd
# with 00:00:00:01:00:00 (i.e. aa:00:00:51:02:f0 in our example). Random
# MACs are assigned if not given.
#
# ``bridge'' is a required parameter, which will be passed to the
# vif-script called by xend(8) when a new domain is created to configure
# the new xvif interface in domain0.
#
# In this example, the xvif is added to bridge0, which should have been
# set up prior to the new domain being created -- either in the
# ``network'' script or using a /etc/ifconfig.bridge0 file.
#
vif = [ 'mac=aa:00:00:50:02:f0, bridge=bridge0' ]

#----------------------------------------------------------------------------
# Define the disk devices you want the domain to have access to, and
# what you want them accessible as.
#
# Each disk entry is of the form:
#
#	phy:DEV,VDEV,MODE
#
# where DEV is the device, VDEV is the device name the domain will see,
# and MODE is r for read-only, w for read-write.  You can also create
# file-backed domains using disk entries of the form:
#
#	file:PATH,VDEV,MODE
#
# where PATH is the path to the file used as the virtual disk, and VDEV
# and MODE have the same meaning as for ``phy'' devices.
#
# VDEV doesn't really matter for a NetBSD guest OS (it's just used as an index),
# but it does for Linux.
# Worse, the device has to exist in /dev/ of domain0, because xm will
# try to stat() it. This means that in order to load a Linux guest OS
# from a NetBSD domain0, you'll have to create /dev/hda1, /dev/hda2, ...
# on domain0, with the major/minor from Linux :(
# Alternatively it's possible to specify the device number in hex,
# e.g. 0x301 for /dev/hda1, 0x302 for /dev/hda2, etc ...

disk = [ 'phy:/dev/wd0e,0x1,w' ]
#disk = [ 'file:/var/xen/nbsd-disk,0x01,w' ]
#disk = [ 'file:/var/xen/nbsd-disk,0x301,w' ]

#----------------------------------------------------------------------------
# Set the kernel command line for the new domain.

# Set root device. This one does matter for NetBSD
root = "xbd0"
# extra parameters passed to the kernel
# this is where you can set boot flags like -s, -a, etc ...
#extra = ""

#----------------------------------------------------------------------------
# Set according to whether you want the domain  restarted when it exits.
# The default is False.
#autorestart = True

# end of nbsd config file ====================================================

When a new domain is created, xen calls the /usr/pkg/etc/xen/vif-bridge script for each virtual network interface created in domain0. This can be used to configure automatically the xvif?.? interfaces in domain0. In our example, these will be bridged with the bridge0 device in domain0. But the bridge has to exist first. You can just create /etc/ifconfig.bridge0 file with:

create
!brconfig $int add ex0 up

(replace ex0 with the name of your physical interface). Then bridge0 will be created on boot. See the man page bridge(4) for details.

So, here is a suitable /usr/pkg/etc/xen/vif-bridge for xvif?.? (a working vif-bridge is also provided with xentools20) configuring:

#!/bin/sh
#============================================================================
# $NetBSD: vif-bridge-nbsd,v 1.3 2005/11/08 00:47:35 jlam Exp $
#
# /usr/pkg/etc/xen/vif-bridge
#
# Script for configuring a vif in bridged mode with a dom0 interface.
# The xend(8) daemon calls a vif script when bringing a vif up or down.
# The script name to use is defined in /usr/pkg/etc/xen/xend-config.sxp
# in the ``vif-script'' field.
#
# Usage: vif-bridge up|down [var=value ...]
#
# Actions:
#    up		Adds the vif interface to the bridge.
#    down	Removes the vif interface from the bridge.
#
# Variables:
#    domain	name of the domain the interface is on (required).
#    vifq	vif interface name (required).
#    mac	vif MAC address (required).
#    bridge	bridge to add the vif to (required).
#
# Example invocation:
#
# vif-bridge up domain=VM1 vif=xvif1.0 mac="ee:14:01:d0:ec:af" bridge=bridge0
#
#============================================================================

# Exit if anything goes wrong
set -e

echo "vif-bridge $*"

# Operation name.
OP=$1; shift

# Pull variables in args into environment
for arg ; do export "${arg}" ; done

# Required parameters. Fail if not set.
domain=${domain:?}
vif=${vif:?}
mac=${mac:?}
bridge=${bridge:?}

# Optional parameters. Set defaults.
ip=${ip:-''}   # default to null (do nothing)

# Are we going up or down?
case $OP in
up)	brcmd='add' ;;
down)	brcmd='delete' ;;
*)
	echo 'Invalid command: ' $OP
	echo 'Valid commands are: up, down'
	exit 1
	;;
esac

# Don't do anything if the bridge is "null".
if [ "${bridge}" = "null" ] ; then
	exit
fi

# Don't do anything if the bridge doesn't exist.
if ! ifconfig -l | grep "${bridge}" >/dev/null; then
	exit
fi

# Add/remove vif to/from bridge.
ifconfig x${vif} $OP
brconfig ${bridge} ${brcmd} x${vif}

Now, running

xm create -c /usr/pkg/etc/xen/nbsd

(note: -c cause xm to connect to the domain's console once created) should create a domain and load a NetBSD kernel in it. But the kernel will try to find its root file system on xbd0 (i.e. wd0e) which hasn't been created yet. wd0e will be seen as a disk device in the new domain, so it will be 'sub-partitioned'. We could attach a ccd to wd0e in domain0 and partition it, newfs and extract the NetBSD/i386 or amd64 tarballs there, but there's an easier way: load the netbsd-INSTALL_XEN3_DOMU kernel provided in the NetBSD binary sets. Like others install kernels, it contains a ramdisk with sysinst, so you can install NetBSD using sysinst on your new domain.

If you want to install NetBSD/Xen with the CDROM image, the following line should be used in the /usr/pkg/etc/xen/nbsd file:

disk = [ 'phy:/dev/wd0e,0x1,w', phy:/dev/cd0a,0x2,r' ]

After booting the domain, the option to install via CDROM may be selected, finally the CDROM device should be changed to xbd1d.

Once done, halt -p the new domain (don't reboot or halt, it would reload the INSTALL_XEN3_DOMU kernel even if you changed the config file), switch the config file back to the XEN3_DOMU kernel, and start the new domain again. Now it should be able to use root on xbd0a and have a second, functional NetBSD system on your xen installation.

When the new domain is booting you'll see some warnings about wscons and the pseudo-terminals, these can be fixed by editing the files /etc/ttys and /etc/wscons.conf. You must disable all terminals on /etc/ttys, except console, like this:

console "/usr/libexec/getty Pc"         vt100   on secure
ttyE0   "/usr/libexec/getty Pc"         vt220   off secure
ttyE1   "/usr/libexec/getty Pc"         vt220   off secure
ttyE2   "/usr/libexec/getty Pc"         vt220   off secure
ttyE3   "/usr/libexec/getty Pc"         vt220   off secure

Finally, all screens must be commented out from /etc/wscons.conf.

It is also desireable to add

powerd=YES

in rc.conf. This way, the domain will be properly shut down if 'xm shutdown -R' or 'xm shutdown -H' is used on the domain0.

Your domain should be now ready to work, enjoy.


Creating an unprivileged Linux domain (DomU)

Creating unprivileged Linux domains isn't much different from unprivileged NetBSD domains, but there are some details to know.

First, the second parameter passed to the disk declaration (the '0x1' in the example below)

disk = [ 'phy:/dev/wd0e,0x1,w' ]

does matter to Linux. It wants a Linux device number here (e.g. 0x300 for hda). Linux builds device numbers as: (major << 8 + minor). So, hda1 which has major 3 and minor 1 on a Linux system will have device numer 0x301. Alternatively, the devices names can be used (hda, hdb, ...) as xentools has a table to map these names to devices numbers. To export a partition to a Linux guest we can use:

disk = [ 'phy:/dev/wd0e,0x300,w' ]
root = "/dev/hda1 ro"

and it will appear as /dev/hda on the Linux system, and be used as root partition.

To install the Linux system on the partition to be exported to the guest domain, the following method can be used: install sysutils/e2fsprogs from pkgsrc. Use mke2fs to format the partition that will be the root partition of your Linux domain, and mount it. Then copy the files from a working Linux system, make adjustments in etc (fstab, network config). It should also be possible to extract binary packages such as .rpm or .deb directly to the mounted partition, using the appropriate tool, possibly running under NetBSD's Linux emulation. Once the filesystem has been populated, umount it. If desirable, the filesystem can be converted to ext3 using tune2fs -j. It should now be possible to boot the Linux guest domain, using one of the vmlinuz-*-xenU kernels available in the Xen binary distribution.


Creating an unprivileged Solaris domain (DomU)

First you will need to obtain a recent Solaris installation DVD iso image, recommended is Solaris 11 or any version of Nevada after January 2008. Begin by extracting the kernel and installation filesystem from the dvd image:

# mkdir /root/solaris
# vnconfig /dev/vnd0 sol-nv-b78-x86-dvd.iso
# mount -t cd9660 /dev/vnd0a /mnt
# cp /mnt/boot/x86.miniroot /root/solaris
# cp /mnt/boot/platform/i86xpv/kernel/unix /root/solaris
# umount /mnt
# vnconfig -u vnd0
# cd /root/solaris
      

If you are using build 78 or earlier you must work around a bug in the Solaris xbd driver. Use this patch on dom0:

--- /usr/pkg/etc/xen/scripts/block.old	2008-02-06 12:41:13.000000000 +0100
+++ /usr/pkg/etc/xen/scripts/block	2008-02-06 12:41:43.000000000 +0100
@@ -80,6 +80,8 @@
 	xenstore-write $xpath/physical-device $physical_device
 	echo xenstore-write $xpath/hotplug-status connected
 	xenstore-write $xpath/hotplug-status connected
+	echo xenstore-write $xpath/feature-barrier 0
+	xenstore-write $xpath/feature-barrier 0
 	exit 0
 	;;
 *)
      

Now create an installation configuration for xen. This example installs to a physical disk.

name = 'solaris'
memory = '768'
disk =  [ 'phy:/dev/sd1a,0,w' ]
disk += [ 'file:/sol-nv-b78-x86-dvd.iso,6:cdrom,r' ]
kernel = '/root/solaris/unix'
ramdisk = '/root/solaris/x86.miniroot'
extra = '/platform/i86xpv/kernel/unix - nowin -B install_media=cdrom'
# Having an interface available during installation saves you trouble
# later, but you need to have the bridge configured first.
vif = [ 'bridge=bridge0' ]
      

Start the installation:

# xm create -c install.cfg
Using config file "./install.cfg".
Started domain solaris
                      v3.1.2 chgset 'unavailable'
SunOS Release 5.11 Version snv_78 32-bit
Copyright 1983-2007 Sun Microsystems, Inc.  All rights reserved.
Use is subject to license terms.
Configuring /dev
Solaris Interactive Text (Console session)
      

Now complete the interactive installation. If you plan to use pkgsrc on the domain, select Core System support and follow the guide linked at the bottom of this page to install supplemental development tools.

Transfer the files /platform/i86xpv/kernel/unix and /platform/i86pc/boot_archive from your domu to your dom0. Do this by booting the installation again. After configuring the network, press escape-5 to go to the shell.

To restart the Solaris installation program,
type "install-solaris".
Solaris installation program exited.
# mount /dev/dsk/c0d0s0 /mnt
# chroot /mnt /bin/ksh
# /usr/bin/ftp
# # Use ftp to transfer the files out of the domu.
      

Add this to your domu configuration:

kernel = 'unix'
ramdisk = 'boot_archive'
extra = '/platform/i86xpv/kernel/unix'
root = '/dev/dsk/c0d0s0'
      

Finally boot into your fresh installation by:

# mv install.cfg solaris.cfg
# xm create -c solaris.cfg
      

A caveat: Solaris expects you to enable checksum offloading on your virtual ethernet interface in dom0.

Links and further information


Back to  NetBSD/xen Port Page