2009-08-31 06:40:57 -07:00
|
|
|
# This module allows the test driver to connect to the virtual machine
|
|
|
|
# via a root shell attached to port 514.
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
2012-08-20 08:27:38 -07:00
|
|
|
let kernel = config.boot.kernelPackages.kernel; in
|
2012-08-01 20:36:48 -07:00
|
|
|
|
2009-08-31 06:40:57 -07:00
|
|
|
{
|
|
|
|
|
2012-06-19 14:36:02 -07:00
|
|
|
config = {
|
2009-08-31 06:40:57 -07:00
|
|
|
|
2012-08-23 07:25:27 -07:00
|
|
|
boot.systemd.services.backdoor =
|
2012-06-19 14:36:02 -07:00
|
|
|
{ wantedBy = [ "multi-user.target" ];
|
2012-10-29 13:01:36 -07:00
|
|
|
requires = [ "dev-hvc0.device" "dev-ttyS0.device" ];
|
|
|
|
after = [ "dev-hvc0.device" "dev-ttyS0.device" ];
|
2010-01-05 15:59:29 -08:00
|
|
|
script =
|
|
|
|
''
|
2010-01-06 10:03:31 -08:00
|
|
|
export USER=root
|
2010-01-05 15:59:29 -08:00
|
|
|
export HOME=/root
|
|
|
|
export DISPLAY=:0.0
|
2010-01-06 10:03:31 -08:00
|
|
|
source /etc/profile
|
2010-01-05 15:59:29 -08:00
|
|
|
cd /tmp
|
2011-03-18 05:38:22 -07:00
|
|
|
exec < /dev/hvc0 > /dev/hvc0 2> /dev/ttyS0
|
|
|
|
echo "connecting to host..." >&2
|
2011-03-18 06:16:40 -07:00
|
|
|
stty -F /dev/hvc0 raw -echo # prevent nl -> cr/nl conversion
|
2012-06-22 12:37:22 -07:00
|
|
|
echo
|
2012-10-29 13:01:36 -07:00
|
|
|
PS1= exec /bin/sh
|
2010-01-05 15:59:29 -08:00
|
|
|
'';
|
2012-10-30 08:42:05 -07:00
|
|
|
serviceConfig.KillSignal = "SIGHUP";
|
2009-08-31 06:40:57 -07:00
|
|
|
};
|
2010-06-20 08:33:44 -07:00
|
|
|
|
2012-10-29 13:01:36 -07:00
|
|
|
# Prevent agetty from being instantiated on ttyS0, since it
|
|
|
|
# interferes with the backdoor (writes to ttyS0 will randomly fail
|
|
|
|
# with EIO).
|
|
|
|
boot.systemd.services."serial-getty@ttyS0".enable = false;
|
|
|
|
|
2011-01-10 06:22:38 -08:00
|
|
|
boot.initrd.postDeviceCommands =
|
|
|
|
''
|
|
|
|
# Using acpi_pm as a clock source causes the guest clock to
|
|
|
|
# slow down under high host load. This is usually a bad
|
|
|
|
# thing, but for VM tests it should provide a bit more
|
|
|
|
# determinism (e.g. if the VM runs at lower speed, then
|
|
|
|
# timeouts in the VM should also be delayed).
|
|
|
|
echo acpi_pm > /sys/devices/system/clocksource/clocksource0/current_clocksource
|
|
|
|
'';
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2009-08-31 06:40:57 -07:00
|
|
|
boot.postBootCommands =
|
|
|
|
''
|
2010-01-04 01:51:57 -08:00
|
|
|
# Panic on out-of-memory conditions rather than letting the
|
|
|
|
# OOM killer randomly get rid of processes, since this leads
|
|
|
|
# to failures that are hard to diagnose.
|
|
|
|
echo 2 > /proc/sys/vm/panic_on_oom
|
|
|
|
|
2011-08-09 07:07:44 -07:00
|
|
|
# Coverage data is written into /tmp/coverage-data.
|
|
|
|
mkdir -p /tmp/xchg/coverage-data
|
2009-08-31 06:40:57 -07:00
|
|
|
'';
|
2009-09-01 15:50:46 -07:00
|
|
|
|
|
|
|
# If the kernel has been built with coverage instrumentation, make
|
|
|
|
# it available under /proc/gcov.
|
|
|
|
boot.kernelModules = [ "gcov-proc" ];
|
2010-01-04 10:04:57 -08:00
|
|
|
|
|
|
|
# Panic if an error occurs in stage 1 (rather than waiting for
|
2011-09-14 11:20:50 -07:00
|
|
|
# user intervention).
|
2010-01-06 13:16:57 -08:00
|
|
|
boot.kernelParams =
|
2011-04-08 07:42:35 -07:00
|
|
|
[ "console=tty1" "console=ttyS0" "panic=1" "stage1panic=1" ];
|
2010-01-05 15:38:13 -08:00
|
|
|
|
|
|
|
# `xwininfo' is used by the test driver to query open windows.
|
|
|
|
environment.systemPackages = [ pkgs.xorg.xwininfo ];
|
2010-03-09 05:31:20 -08:00
|
|
|
|
2012-07-19 14:32:50 -07:00
|
|
|
# Log everything to the serial console.
|
|
|
|
services.journald.console = "/dev/console";
|
2010-09-13 10:36:01 -07:00
|
|
|
|
2010-06-18 06:21:01 -07:00
|
|
|
# Prevent tests from accessing the Internet.
|
2010-09-13 11:19:15 -07:00
|
|
|
networking.defaultGateway = mkOverride 150 "";
|
|
|
|
networking.nameservers = mkOverride 150 [ ];
|
2010-06-18 06:21:01 -07:00
|
|
|
|
2012-10-30 09:27:14 -07:00
|
|
|
boot.systemd.globalEnvironment.GCOV_PREFIX = "/tmp/xchg/coverage-data";
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2012-08-06 05:13:06 -07:00
|
|
|
system.requiredKernelConfig = with config.lib.kernelConfig; [
|
|
|
|
(isYes "SERIAL_8250_CONSOLE")
|
|
|
|
(isYes "SERIAL_8250")
|
2012-08-07 14:04:00 -07:00
|
|
|
(isEnabled "VIRTIO_CONSOLE")
|
2012-08-06 05:13:06 -07:00
|
|
|
];
|
2012-08-20 08:27:38 -07:00
|
|
|
|
2009-08-31 06:40:57 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|