xref: /qemu/tests/vm/netbsd (revision 12b35405)
1#!/usr/bin/env python3
2#
3# NetBSD VM image
4#
5# Copyright 2017-2019 Red Hat Inc.
6#
7# Authors:
8#  Fam Zheng <famz@redhat.com>
9#  Gerd Hoffmann <kraxel@redhat.com>
10#
11# This code is licensed under the GPL version 2 or later.  See
12# the COPYING file in the top-level directory.
13#
14
15import os
16import sys
17import time
18import subprocess
19import basevm
20
21class NetBSDVM(basevm.BaseVM):
22    name = "netbsd"
23    arch = "x86_64"
24
25    link = "https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.0/images/NetBSD-9.0-amd64.iso"
26    csum = "34da4882ee61bdbf69f241195a8933dc800949d30b43fc6988da853d57fc2b8cac50cf97a0d2adaf93250b4e329d189c1a8b83c33bd515226f37745d50c33369"
27    size = "20G"
28    pkgs = [
29        # tools
30        "git-base",
31        "pkgconf",
32        "xz",
33        "python37",
34
35        # gnu tools
36        "bash",
37        "gmake",
38        "gsed",
39
40        # libs: crypto
41        "gnutls",
42
43        # libs: images
44        "jpeg",
45        "png",
46
47	# libs: ui
48        "SDL2",
49        "gtk3+",
50        "libxkbcommon",
51
52        # libs: migration
53        "zstd",
54    ]
55
56    BUILD_SCRIPT = """
57        set -e;
58        rm -rf /home/qemu/qemu-test.*
59        cd $(mktemp -d /home/qemu/qemu-test.XXXXXX);
60        mkdir src build; cd src;
61        tar -xf /dev/rld1a;
62        cd ../build
63        ../src/configure --python=python3.7 --disable-opengl {configure_opts};
64        gmake --output-sync -j{jobs} {target} {verbose};
65    """
66    poweroff = "/sbin/poweroff"
67
68    # Workaround for NetBSD + IPv6 + slirp issues.
69    # NetBSD seems to ignore the ICMPv6 Destination Unreachable
70    # messages generated by slirp.  When the host has no IPv6
71    # connectivity, this causes every connection to ftp.NetBSD.org
72    # take more than a minute to be established.
73    ipv6 = False
74
75    def build_image(self, img):
76        cimg = self._download_with_cache(self.link, sha512sum=self.csum)
77        img_tmp = img + ".tmp"
78        iso = img + ".install.iso"
79
80        self.print_step("Preparing iso and disk image")
81        subprocess.check_call(["ln", "-f", cimg, iso])
82        self.exec_qemu_img("create", "-f", "qcow2", img_tmp, self.size)
83
84        self.print_step("Booting installer")
85        self.boot(img_tmp, extra_args = [
86            "-bios", "pc-bios/bios-256k.bin",
87            "-machine", "graphics=off",
88            "-cdrom", iso
89        ])
90        self.console_init()
91        self.console_wait_send("3. Drop to boot prompt", "3")
92        self.console_wait_send("> ", "consdev com0\n")
93        self.console_wait_send("> ", "boot\n")
94
95        self.console_wait_send("Terminal type",            "xterm\n")
96        self.console_wait_send("a: Installation messages", "a\n")
97        self.console_wait_send("a: Install NetBSD",        "a\n")
98        self.console_wait("Shall we continue?")
99        self.console_wait_send("b: Yes",                   "b\n")
100
101        self.console_wait_send("a: ld0",                   "a\n")
102        self.console_wait_send("a: Guid Partition Table",  "a\n")
103        self.console_wait_send("a: This is the correct",   "a\n")
104        self.console_wait_send("b: Use default part",      "b\n")
105        self.console_wait_send("x: Partition sizes ok",    "x\n")
106        self.console_wait("Shall we continue?")
107        self.console_wait_send("b: Yes",                   "b\n")
108
109        self.console_wait_send("b: Use serial port com0",  "b\n")
110        self.console_wait_send("f: Set serial baud rate",  "f\n")
111        self.console_wait_send("a: 9600",                  "a\n")
112        self.console_wait_send("x: Continue",              "x\n")
113
114        self.console_wait_send("a: Full installation",     "a\n")
115        self.console_wait_send("a: CD-ROM",                "a\n")
116
117        self.print_step("Installation started now, this will take a while")
118        self.console_wait_send("Hit enter to continue",    "\n")
119
120        self.console_wait_send("d: Change root password",  "d\n")
121        self.console_wait_send("a: Yes",                   "a\n")
122        self.console_wait("New password:")
123        self.console_send("%s\n" % self.ROOT_PASS)
124        self.console_wait("New password:")
125        self.console_send("%s\n" % self.ROOT_PASS)
126        self.console_wait("Retype new password:")
127        self.console_send("%s\n" % self.ROOT_PASS)
128
129        self.console_wait_send("o: Add a user",            "o\n")
130        self.console_wait("username")
131        self.console_send("%s\n" % self.GUEST_USER)
132        self.console_wait("to group wheel")
133        self.console_wait_send("a: Yes",                   "a\n")
134        self.console_wait_send("a: /bin/sh",               "a\n")
135        self.console_wait("New password:")
136        self.console_send("%s\n" % self.GUEST_PASS)
137        self.console_wait("New password:")
138        self.console_send("%s\n" % self.GUEST_PASS)
139        self.console_wait("Retype new password:")
140        self.console_send("%s\n" % self.GUEST_PASS)
141
142        self.console_wait_send("a: Configure network",     "a\n")
143        self.console_wait_send("a: vioif0",                "a\n")
144        self.console_wait_send("Network media type",       "\n")
145        self.console_wait("autoconfiguration")
146        self.console_wait_send("a: Yes",                   "a\n")
147        self.console_wait_send("DNS domain",               "localnet\n")
148        self.console_wait("Are they OK?")
149        self.console_wait_send("a: Yes",                   "a\n")
150        self.console_wait("installed in /etc")
151        self.console_wait_send("a: Yes",                   "a\n")
152
153        self.console_wait_send("e: Enable install",        "e\n")
154        proxy = os.environ.get("http_proxy")
155        if not proxy is None:
156            self.console_wait_send("f: Proxy",             "f\n")
157            self.console_wait("Proxy")
158            self.console_send("%s\n" % proxy)
159        self.console_wait_send("x: Install pkgin",         "x\n")
160        self.console_init(1200)
161        self.console_wait_send("Hit enter to continue", "\n")
162        self.console_init()
163
164        self.console_wait_send("g: Enable sshd",           "g\n")
165        self.console_wait_send("x: Finished conf",         "x\n")
166        self.console_wait_send("Hit enter to continue",    "\n")
167
168        self.print_step("Installation finished, rebooting")
169        self.console_wait_send("d: Reboot the computer",   "d\n")
170
171        # setup qemu user
172        prompt = "localhost$"
173        self.console_ssh_init(prompt, self.GUEST_USER, self.GUEST_PASS)
174        self.console_wait_send(prompt, "exit\n")
175
176        # setup root user
177        prompt = "localhost#"
178        self.console_ssh_init(prompt, "root", self.ROOT_PASS)
179        self.console_sshd_config(prompt)
180
181        # setup virtio-blk #1 (tarfile)
182        self.console_wait(prompt)
183        self.console_send("echo 'chmod 666 /dev/rld1a' >> /etc/rc.local\n")
184
185        # turn off mprotect (conflicts with tcg)
186        self.console_wait(prompt)
187        self.console_send("echo security.pax.mprotect.enabled=0 >> /etc/sysctl.conf\n")
188
189        self.print_step("Configuration finished, rebooting")
190        self.console_wait_send(prompt, "reboot\n")
191        self.console_wait("login:")
192        self.wait_ssh()
193
194        self.print_step("Installing packages")
195        self.ssh_root_check("pkgin update\n")
196        self.ssh_root_check("pkgin -y install %s\n" % " ".join(self.pkgs))
197
198        # shutdown
199        self.ssh_root(self.poweroff)
200        self.console_wait("entering state S5")
201        self.wait()
202
203        os.rename(img_tmp, img)
204        os.remove(iso)
205        self.print_step("All done")
206
207if __name__ == "__main__":
208    sys.exit(basevm.main(NetBSDVM))
209