| 
									
										
										
										
											2009-08-31 13:40:57 +00:00
										 |  |  | # This module allows the test driver to connect to the virtual machine | 
					
						
							|  |  |  | # via a root shell attached to port 514. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-14 16:26:48 +02:00
										 |  |  | { config, lib, pkgs, ... }: | 
					
						
							| 
									
										
										
										
											2009-08-31 13:40:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-14 16:26:48 +02:00
										 |  |  | with lib; | 
					
						
							| 
									
										
										
										
											2018-01-30 11:28:26 +02:00
										 |  |  | with import ../../lib/qemu-flags.nix { inherit pkgs; }; | 
					
						
							| 
									
										
										
										
											2009-08-31 13:40:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-08 17:03:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-31 13:40:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-15 21:00:21 +01:00
										 |  |  |   # This option is a dummy that if used in conjunction with | 
					
						
							|  |  |  |   # modules/virtualisation/qemu-vm.nix gets merged with the same option defined | 
					
						
							|  |  |  |   # there and only is declared here because some modules use | 
					
						
							|  |  |  |   # test-instrumentation.nix but not qemu-vm.nix. | 
					
						
							|  |  |  |   # | 
					
						
							|  |  |  |   # One particular example are the boot tests where we want instrumentation | 
					
						
							|  |  |  |   # within the images but not other stuff like setting up 9p filesystems. | 
					
						
							| 
									
										
										
										
											2019-06-23 19:20:14 +02:00
										 |  |  |   options.virtualisation.qemu = { }; | 
					
						
							| 
									
										
										
										
											2016-12-15 21:00:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-19 17:36:02 -04:00
										 |  |  |   config = { | 
					
						
							| 
									
										
										
										
											2009-08-31 13:40:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-16 12:33:18 +01:00
										 |  |  |     systemd.services.backdoor = | 
					
						
							| 
									
										
										
										
											2012-06-19 17:36:02 -04:00
										 |  |  |       { wantedBy = [ "multi-user.target" ]; | 
					
						
							| 
									
										
										
										
											2018-01-30 11:28:26 +02:00
										 |  |  |         requires = [ "dev-hvc0.device" "dev-${qemuSerialDevice}.device" ]; | 
					
						
							|  |  |  |         after = [ "dev-hvc0.device" "dev-${qemuSerialDevice}.device" ]; | 
					
						
							| 
									
										
										
										
											2010-01-05 23:59:29 +00:00
										 |  |  |         script = | 
					
						
							|  |  |  |           ''
 | 
					
						
							| 
									
										
										
										
											2010-01-06 18:03:31 +00:00
										 |  |  |             export USER=root | 
					
						
							| 
									
										
										
										
											2010-01-05 23:59:29 +00:00
										 |  |  |             export HOME=/root | 
					
						
							| 
									
										
										
										
											2017-11-08 17:03:59 +00:00
										 |  |  |             export DISPLAY=:0.0 | 
					
						
							| 
									
										
										
										
											2016-02-23 11:53:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-06 18:03:31 +00:00
										 |  |  |             source /etc/profile | 
					
						
							| 
									
										
										
										
											2016-02-23 11:53:08 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |             # Don't use a pager when executing backdoor | 
					
						
							|  |  |  |             # actions. Because we use a tty, commands like systemctl | 
					
						
							|  |  |  |             # or nix-store get confused into thinking they're running | 
					
						
							|  |  |  |             # interactively. | 
					
						
							|  |  |  |             export PAGER= | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-05 23:59:29 +00:00
										 |  |  |             cd /tmp | 
					
						
							| 
									
										
										
										
											2013-07-16 15:04:32 +02:00
										 |  |  |             exec < /dev/hvc0 > /dev/hvc0 | 
					
						
							| 
									
										
										
										
											2018-01-30 11:28:26 +02:00
										 |  |  |             while ! exec 2> /dev/${qemuSerialDevice}; do sleep 0.1; done | 
					
						
							| 
									
										
										
										
											2011-03-18 12:38:22 +00:00
										 |  |  |             echo "connecting to host..." >&2 | 
					
						
							| 
									
										
										
										
											2011-03-18 13:16:40 +00:00
										 |  |  |             stty -F /dev/hvc0 raw -echo # prevent nl -> cr/nl conversion | 
					
						
							| 
									
										
										
										
											2012-06-22 15:37:22 -04:00
										 |  |  |             echo | 
					
						
							| 
									
										
										
										
											2012-10-29 21:01:36 +01:00
										 |  |  |             PS1= exec /bin/sh | 
					
						
							| 
									
										
										
										
											2010-01-05 23:59:29 +00:00
										 |  |  |           '';
 | 
					
						
							| 
									
										
										
										
											2012-10-30 16:42:05 +01:00
										 |  |  |         serviceConfig.KillSignal = "SIGHUP"; | 
					
						
							| 
									
										
										
										
											2009-08-31 13:40:57 +00:00
										 |  |  |       }; | 
					
						
							| 
									
										
										
										
											2010-06-20 15:33:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-30 11:28:26 +02:00
										 |  |  |     # Prevent agetty from being instantiated on the serial device, since it | 
					
						
							|  |  |  |     # interferes with the backdoor (writes to it will randomly fail | 
					
						
							| 
									
										
										
										
											2012-11-09 11:45:37 +01:00
										 |  |  |     # with EIO).  Likewise for hvc0. | 
					
						
							| 
									
										
										
										
											2018-01-30 11:28:26 +02:00
										 |  |  |     systemd.services."serial-getty@${qemuSerialDevice}".enable = false; | 
					
						
							| 
									
										
										
										
											2013-01-16 12:33:18 +01:00
										 |  |  |     systemd.services."serial-getty@hvc0".enable = false; | 
					
						
							| 
									
										
										
										
											2012-10-29 21:01:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-10 08:10:19 +02:00
										 |  |  |     # Only use a serial console, no TTY. | 
					
						
							| 
									
										
										
										
											2019-01-19 13:06:48 -05:00
										 |  |  |     virtualisation.qemu.consoles = [ qemuSerialDevice ]; | 
					
						
							| 
									
										
										
										
											2018-05-10 08:10:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-04 16:53:42 +01:00
										 |  |  |     boot.initrd.preDeviceCommands = | 
					
						
							|  |  |  |       ''
 | 
					
						
							|  |  |  |         echo 600 > /proc/sys/kernel/hung_task_timeout_secs | 
					
						
							|  |  |  |       '';
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-10 14:22:38 +00: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 18:20:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-31 13:40:57 +00:00
										 |  |  |     boot.postBootCommands = | 
					
						
							|  |  |  |       ''
 | 
					
						
							| 
									
										
										
										
											2010-01-04 09:51:57 +00: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 14:07:44 +00:00
										 |  |  |         # Coverage data is written into /tmp/coverage-data. | 
					
						
							|  |  |  |         mkdir -p /tmp/xchg/coverage-data | 
					
						
							| 
									
										
										
										
											2009-08-31 13:40:57 +00:00
										 |  |  |       '';
 | 
					
						
							| 
									
										
										
										
											2009-09-01 22:50:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # If the kernel has been built with coverage instrumentation, make | 
					
						
							|  |  |  |     # it available under /proc/gcov. | 
					
						
							|  |  |  |     boot.kernelModules = [ "gcov-proc" ]; | 
					
						
							| 
									
										
										
										
											2010-01-04 18:04:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Panic if an error occurs in stage 1 (rather than waiting for | 
					
						
							| 
									
										
										
										
											2011-09-14 18:20:50 +00:00
										 |  |  |     # user intervention). | 
					
						
							| 
									
										
										
										
											2010-01-06 21:16:57 +00:00
										 |  |  |     boot.kernelParams = | 
					
						
							| 
									
										
										
										
											2018-01-30 11:28:26 +02:00
										 |  |  |       [ "console=${qemuSerialDevice}" "panic=1" "boot.panic_on_fail" ]; | 
					
						
							| 
									
										
										
										
											2010-01-05 23:38:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # `xwininfo' is used by the test driver to query open windows. | 
					
						
							|  |  |  |     environment.systemPackages = [ pkgs.xorg.xwininfo ]; | 
					
						
							| 
									
										
										
										
											2010-03-09 13:31:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-19 17:32:50 -04:00
										 |  |  |     # Log everything to the serial console. | 
					
						
							| 
									
										
										
										
											2014-08-06 13:54:17 +02:00
										 |  |  |     services.journald.extraConfig = | 
					
						
							|  |  |  |       ''
 | 
					
						
							|  |  |  |         ForwardToConsole=yes | 
					
						
							|  |  |  |         MaxLevelConsole=debug | 
					
						
							|  |  |  |       '';
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-29 12:12:12 +02:00
										 |  |  |     systemd.extraConfig = ''
 | 
					
						
							|  |  |  |       # Don't clobber the console with duplicate systemd messages. | 
					
						
							|  |  |  |       ShowStatus=no | 
					
						
							|  |  |  |       # Allow very slow start | 
					
						
							|  |  |  |       DefaultTimeoutStartSec=300 | 
					
						
							|  |  |  |     '';
 | 
					
						
							| 
									
										
										
										
											2014-08-06 13:54:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     boot.consoleLogLevel = 7; | 
					
						
							| 
									
										
										
										
											2010-09-13 17:36:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-18 13:21:01 +00:00
										 |  |  |     # Prevent tests from accessing the Internet. | 
					
						
							| 
									
										
										
										
											2010-09-13 18:19:15 +00:00
										 |  |  |     networking.defaultGateway = mkOverride 150 ""; | 
					
						
							|  |  |  |     networking.nameservers = mkOverride 150 [ ]; | 
					
						
							| 
									
										
										
										
											2010-06-18 13:21:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-16 12:33:18 +01:00
										 |  |  |     systemd.globalEnvironment.GCOV_PREFIX = "/tmp/xchg/coverage-data"; | 
					
						
							| 
									
										
										
										
											2011-09-14 18:20:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-06 08:13:06 -04:00
										 |  |  |     system.requiredKernelConfig = with config.lib.kernelConfig; [ | 
					
						
							|  |  |  |       (isYes "SERIAL_8250_CONSOLE") | 
					
						
							|  |  |  |       (isYes "SERIAL_8250") | 
					
						
							| 
									
										
										
										
											2012-08-07 17:04:00 -04:00
										 |  |  |       (isEnabled "VIRTIO_CONSOLE") | 
					
						
							| 
									
										
										
										
											2012-08-06 08:13:06 -04:00
										 |  |  |     ]; | 
					
						
							| 
									
										
										
										
											2012-08-20 11:27:38 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-20 01:56:11 +02:00
										 |  |  |     networking.usePredictableInterfaceNames = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-06 13:55:02 +02:00
										 |  |  |     # Make it easy to log in as root when running the test interactively. | 
					
						
							| 
									
										
										
										
											2018-06-30 01:58:35 +02:00
										 |  |  |     users.users.root.initialHashedPassword = mkOverride 150 ""; | 
					
						
							| 
									
										
										
										
											2014-08-06 13:55:02 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-06 17:44:52 +08:00
										 |  |  |     services.xserver.displayManager.job.logToJournal = true; | 
					
						
							| 
									
										
										
										
											2009-08-31 13:40:57 +00:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |