2009-08-31 15:40:57 +02: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;
|
|
|
|
|
2010-01-06 19:03:31 +01:00
|
|
|
let
|
|
|
|
|
|
|
|
# Urgh, `socat' sets the SIGCHLD to ignore. This wreaks havoc with
|
|
|
|
# some programs.
|
|
|
|
rootShell = pkgs.writeScript "shell.pl"
|
|
|
|
''
|
|
|
|
#! ${pkgs.perl}/bin/perl
|
|
|
|
$SIG{CHLD} = 'DEFAULT';
|
2010-06-18 21:31:02 +02:00
|
|
|
print "\n";
|
2010-01-06 19:03:31 +01:00
|
|
|
exec "/bin/sh";
|
|
|
|
'';
|
|
|
|
|
|
|
|
in
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-08-31 15:40:57 +02:00
|
|
|
{
|
|
|
|
|
2012-06-19 23:36:02 +02:00
|
|
|
config = {
|
2009-08-31 15:40:57 +02:00
|
|
|
|
2012-06-19 23:36:02 +02:00
|
|
|
boot.systemd.services."backdoor.service" =
|
|
|
|
{ wantedBy = [ "multi-user.target" ];
|
|
|
|
requires = [ "dev-hvc0.device" ];
|
|
|
|
after = [ "dev-hvc0.device" ];
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2010-01-06 00:59:29 +01:00
|
|
|
script =
|
|
|
|
''
|
2010-01-06 19:03:31 +01:00
|
|
|
export USER=root
|
2010-01-06 00:59:29 +01:00
|
|
|
export HOME=/root
|
|
|
|
export DISPLAY=:0.0
|
2010-01-06 19:03:31 +01:00
|
|
|
source /etc/profile
|
2010-01-06 00:59:29 +01:00
|
|
|
cd /tmp
|
2011-03-18 13:38:22 +01:00
|
|
|
exec < /dev/hvc0 > /dev/hvc0 2> /dev/ttyS0
|
|
|
|
echo "connecting to host..." >&2
|
2011-03-18 14:16:40 +01:00
|
|
|
stty -F /dev/hvc0 raw -echo # prevent nl -> cr/nl conversion
|
2011-03-18 13:38:22 +01:00
|
|
|
${pkgs.socat}/bin/socat stdio exec:${rootShell}
|
2010-01-06 00:59:29 +01:00
|
|
|
'';
|
2009-08-31 15:40:57 +02:00
|
|
|
};
|
2010-06-20 17:33:44 +02:00
|
|
|
|
2011-01-10 15:22:38 +01: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 20:20:50 +02:00
|
|
|
|
2009-08-31 15:40:57 +02:00
|
|
|
boot.postBootCommands =
|
|
|
|
''
|
2010-01-04 10:51:57 +01: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 16:07:44 +02:00
|
|
|
# Coverage data is written into /tmp/coverage-data.
|
|
|
|
mkdir -p /tmp/xchg/coverage-data
|
2010-01-04 14:22:43 +01:00
|
|
|
|
|
|
|
# Mount debugfs to gain access to the kernel coverage data (if
|
|
|
|
# available).
|
|
|
|
mount -t debugfs none /sys/kernel/debug || true
|
2009-08-31 15:40:57 +02:00
|
|
|
'';
|
2009-09-02 00:50:46 +02:00
|
|
|
|
|
|
|
# If the kernel has been built with coverage instrumentation, make
|
|
|
|
# it available under /proc/gcov.
|
|
|
|
boot.kernelModules = [ "gcov-proc" ];
|
2010-01-04 19:04:57 +01:00
|
|
|
|
|
|
|
# Panic if an error occurs in stage 1 (rather than waiting for
|
2011-09-14 20:20:50 +02:00
|
|
|
# user intervention).
|
2010-01-06 22:16:57 +01:00
|
|
|
boot.kernelParams =
|
2011-04-08 16:42:35 +02:00
|
|
|
[ "console=tty1" "console=ttyS0" "panic=1" "stage1panic=1" ];
|
2010-01-06 00:38:13 +01:00
|
|
|
|
|
|
|
# `xwininfo' is used by the test driver to query open windows.
|
|
|
|
environment.systemPackages = [ pkgs.xorg.xwininfo ];
|
2010-03-09 14:31:20 +01:00
|
|
|
|
2010-06-20 21:22:23 +02:00
|
|
|
# Send all of /var/log/messages to the serial port.
|
|
|
|
services.syslogd.extraConfig = "*.* /dev/ttyS0";
|
2010-03-09 14:31:20 +01:00
|
|
|
|
2011-08-08 16:40:16 +02:00
|
|
|
# Disable "-- MARK --" messages. These prevent hanging tests from
|
|
|
|
# being killed after 1 hour of silence.
|
|
|
|
services.syslogd.extraParams = [ "-m 0" ];
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-03-11 13:56:04 +01:00
|
|
|
# Don't run klogd. Kernel messages appear on the serial console anyway.
|
|
|
|
jobs.klogd.startOn = mkOverride 50 "";
|
2010-09-13 19:36:01 +02:00
|
|
|
|
2010-06-18 15:21:01 +02:00
|
|
|
# Prevent tests from accessing the Internet.
|
2010-09-13 20:19:15 +02:00
|
|
|
networking.defaultGateway = mkOverride 150 "";
|
|
|
|
networking.nameservers = mkOverride 150 [ ];
|
2010-06-18 15:21:01 +02:00
|
|
|
|
2011-08-09 16:07:44 +02:00
|
|
|
system.upstartEnvironment.GCOV_PREFIX = "/tmp/xchg/coverage-data";
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-08-31 15:40:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|