1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
|
# Copyright 2017 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# =*= License: GPL-3+ =*=
# Installing GRUB onto a disk image is a bit of a black art. I haven't
# found any good documentation for it. This plugin is written based on
# de-ciphering the build_openstack_image script. Here is an explanation
# of what I _THINK_ is happening.
#
# The crucial command is grub-install. It needs a ton of options to
# work correctly: see below in the code for the list, and the manpage
# for an explanation of what each of them means. We will be running
# grub-install in a chroot so that we use the version in the Debian
# version we're installing, rather than the host system, which might
# be any Debian version.
#
# To run grub-install in a chroot, we need to set up the chroot in
# various ways. Firstly, we need to tell grub-install which device
# file the image has. We can't just give it the image file itself,
# since it isn't inside the chroot, so instead we arrange to have a
# loop block device that covers the whole image file, and we bind
# mount /dev into the chroot so the device is available.
#
# grub-install seems to also require /proc and /sys so we bind mount
# /sys into the chroot as well. /proc is already mounted otherwise.
#
# We install the UEFI version of GRUB, and for that we additionally
# bind mount the EFI partition in the image. Oh yeah, you MUST have
# one.
#
# We also make sure the right GRUB package is installed in the chroot,
# before we run grub-install.
#
# Further, there's some configuration tweaking we need to do. See the
# code. Don't ask me why they're necessary.
#
# For cleanliness, we also undo any bind mounts into the chroot. Don't
# want to leave them in case they cause trouble.
#
# Note that this is currently assuming that UEFI and either the amd64
# (a.k.a. x86_64) or arm64 (a.k.a. aarch64) architectures are being
# used. These should probably not be hardcoded. Patch welcome.
# To use this plugin: write steps to create a root filesystem, and an
# VFAT filesystem to be mounted as /boot/efi. Install Debian onto the
# root filesystem. Then install grub with a step like this:
#
# - grub: uefi
# tag: root-part
# efi: efi-part
#
# Here: "tag" is the tag for the root filesystem (and corresponding
# partition), and efi is tag for the EFI partition.
#
# The grub step will take of the rest.
import json
import logging
import os
import re
import vmdb
class GrubPlugin(vmdb.Plugin):
def enable(self):
self.app.step_runners.add(GrubStepRunner())
class GrubStepRunner(vmdb.StepRunnerInterface):
def get_key_spec(self):
return {
"grub": str,
"root-fs": "",
"efi": "",
"efi-part": "",
"prep": "",
"console": "",
"tag": "",
"image-dev": "",
"quiet": False,
"kernel-params": ["biosdevname=0", "net.ifnames=0", "consoleblank=0", "rw"],
"timeout": 0,
}
def run(self, values, settings, state):
state.grub_mounts = []
flavor = values["grub"]
if flavor == "uefi":
self.install_uefi(values, settings, state)
elif flavor == "bios":
self.install_bios(values, settings, state)
elif flavor == "ieee1275":
self.install_ieee1275(values, settings, state)
else:
raise Exception("Unknown GRUB flavor {}".format(flavor))
def grub_uefi_variant(self, state):
variants = {
"amd64": ("grub-efi-amd64", "x86_64-efi"),
"i386": ("grub-efi-ia32", "i386-efi"),
"arm64": ("grub-efi-arm64", "arm64-efi"),
"armhf": ("grub-efi-arm", "arm-efi"),
}
logging.debug(f"grub plugin: state.arch={state.arch!r}")
try:
return variants[state.arch]
except KeyError:
raise Exception(
'GRUB UEFI package and target for "{}" unknown'.format(state.arch)
)
def install_uefi(self, values, settings, state):
efi = values["efi"] or None
efi_part = values["efi-part"] or None
if efi is None and efi_part is None:
raise Exception('"efi" or "efi-part" required in UEFI GRUB installation')
vmdb.progress("Installing GRUB for UEFI")
(grub_package, grub_target) = self.grub_uefi_variant(state)
self.install_grub(values, settings, state, grub_package, grub_target)
def install_bios(self, values, settings, state):
vmdb.progress("Installing GRUB for BIOS")
grub_package = "grub-pc"
grub_target = "i386-pc"
self.install_grub(values, settings, state, grub_package, grub_target)
def grub_ieee1275_variant(self, state):
variants = {
"amd64": "i386",
"ppc64": "powerpc",
"ppc64el": "powerpc",
"sparc": "sparc64",
}
logging.debug(f"grub plugin: state.arch={state.arch!r}")
return variants.get(state.arch, state.arch)
def install_ieee1275(self, values, settings, state):
vmdb.progress("Installing GRUB for IEEE1275")
grub_package = "grub-ieee1275"
grub_target = f"{self.grub_ieee1275_variant(state)}-ieee1275"
self.install_grub(values, settings, state, grub_package, grub_target)
def install_grub(self, values, settings, state, grub_package, grub_target):
console = values["console"] or None
tag = values["tag"] or values["root-fs"] or None
root_dev = state.tags.get_dev(tag)
chroot = state.tags.get_builder_mount_point(tag)
self.bind_mount_many(chroot, ["/dev", "/sys", "/proc"], state)
image_dev = values["image-dev"] or None
if image_dev is None:
image_dev = self.get_image_loop_device(root_dev, chroot)
efi = values["efi"] or None
efi_part = values["efi-part"] or None
if efi is not None:
efi_dev = state.tags.get_dev(efi)
elif efi_part is not None:
efi_dev = state.tags.get_dev(efi_part)
else:
efi_dev = None
prep = values["prep"] or None
if prep:
prep_dev = state.tags.get_dev(prep)
else:
prep_dev = None
quiet = values["quiet"]
if efi_dev:
pn = efi_dev[-1]
vmdb.runcmd(["parted", "-s", image_dev, "set", pn, "esp", "on"])
self.mount(chroot, efi_dev, "/boot/efi", state)
elif prep_dev:
pn = prep_dev[-1]
vmdb.runcmd(["parted", "-s", image_dev, "set", pn, "prep", "on"])
image_dev = prep_dev
self.install_package(chroot, grub_package)
kernel_params = values["kernel-params"]
if console == "serial":
if "ppc64" in state.arch:
kernel_params.extend(
["loglevel=3", "console=tty0", "console=hvc0,115200n8"]
)
elif "arm" in state.arch:
kernel_params.extend(
["loglevel=3", "console=tty0", "console=ttyAMA0,115200n8"]
)
else:
kernel_params.extend(
["loglevel=3", "console=tty0", "console=ttyS0,115200n8"]
)
if quiet:
kernel_params.extend(
[
"quiet",
"systemd.show_status=false",
"rd.systemd.show_status=false",
]
)
else:
kernel_params.extend(
[
"systemd.show_status=true",
]
)
self.set_grub_cmdline_config(chroot, kernel_params)
self.add_grub_crypto_disk(chroot)
self.set_grub_timeout(chroot, values["timeout"])
if console == "serial":
self.add_grub_serial_console(chroot)
vmdb.runcmd_chroot(chroot, ["grub-mkconfig", "-o", "/boot/grub/grub.cfg"])
grub_cmd = [
"grub-install",
"--target=" + grub_target,
"--no-nvram",
"--no-floppy",
"--modules=part_msdos part_gpt",
"--grub-mkdevicemap=/boot/grub/device.map",
]
help_out = vmdb.runcmd_chroot(chroot, ["grub-install", "--help"])
if b"--force-extra-removable" in help_out:
grub_cmd.append("--force-extra-removable")
grub_cmd.append(image_dev)
vmdb.runcmd_chroot(chroot, grub_cmd)
# self.unmount(state)
def teardown(self, values, settings, state):
self.unmount(state)
def unmount(self, state):
mounts = getattr(state, "grub_mounts", [])
mounts.reverse()
while mounts:
mount_point = mounts.pop()
try:
vmdb.unmount(mount_point)
except vmdb.NotMounted as e:
logging.warning(str(e))
def get_image_loop_device(self, partition_device, chroot):
# We get /dev/mappers/loopXpY and return /dev/loopX
m = re.match(r"^/dev/mapper/(?P<loop>.*)p\d+$", partition_device)
if m is not None:
loop = m.group("loop")
return "/dev/{}".format(loop)
# Check if the rootfs is a LVM volume
m = re.match(r"^/dev/(?P<vgname>[^/]+)/.*$", partition_device)
if m is not None:
vgname = m.group("vgname")
logging.debug(f"extracted vgname={vgname} from {partition_device}")
env = dict(os.environ)
env["LVM_SUPPRESS_FD_WARNINGS"] = "1"
output = vmdb.runcmd_chroot(
chroot,
["lvs", "-o", "vg_name,devices", "--reportformat", "json"],
env=env,
)
# example "lvs" output:
# {
# "report": [
# {
# "lv": [
# {"vg_name":"lvm_volgroup0", "devices":"/dev/mapper/loop1p6(1024)"},
# {"vg_name":"lvm_volgroup0", "devices":"/dev/mapper/loop1p6(0)"}
# ]
# }
# ]
# }
report = json.loads(output.strip())
logging.debug(f"lvs report: {report}")
for report_item in report["report"]:
logging.debug(f"report_item: {report_item}")
for lv in report_item.get("lv", []):
logging.debug(f"lv: {lv}")
if lv.get("vg_name") == vgname:
devices = lv.get("devices", [])
if not isinstance(devices, list):
devices = [devices]
for device in devices:
logging.debug(f"device: {device}")
m = re.match(
r"^/dev/mapper/(?P<loop>.*)p\d+\(\d+\)$", device
)
if m is not None:
loop = m.group("loop")
return "/dev/{}".format(loop)
# Sometimes lvs gives us /dev/dm-X instead of a
# loop device, in which case we need to find the
# corresponding loop device ourselves
loop = self.get_loop_device_from_dm(device, chroot)
if loop is not None:
return loop
raise Exception(
"Do not understand partition device name {}".format(partition_device)
)
@staticmethod
def get_loop_device_from_dm(device, chroot):
# Returns the corresponding /dev/loopX device for a /dev/dm-Y device
m = re.match(r"^/dev/(?P<mapped>dm-\d+)\(\d+\)$", device)
if m is not None:
mapped = m.group("mapped")
logging.debug(f"mapped: {mapped}")
dmsetup_out = vmdb.runcmd_chroot(
chroot, ["dmsetup", "ls", "-o", "blkdevname"]
)
for line in dmsetup_out.decode().splitlines(keepends=False):
m = re.match(rf"^(?P<loop>loop\d+)p\d+\s+\({mapped}\)$", line)
if m is not None:
loop = m.group("loop")
return "/dev/{}".format(loop)
def bind_mount_many(self, chroot, paths, state):
for path in paths:
self.mount(chroot, path, path, state, mount_opts=["--bind"])
def mount(self, chroot, path, mount_point, state, mount_opts=None):
chroot_path = self.chroot_path(chroot, mount_point)
if os.path.ismount(chroot_path):
logging.debug("already mounted: %s", chroot_path)
else:
if not os.path.exists(chroot_path):
os.makedirs(chroot_path)
if mount_opts is None:
mount_opts = []
vmdb.runcmd(["mount"] + mount_opts + [path, chroot_path])
state.grub_mounts.append(chroot_path)
def chroot_path(self, chroot, path):
return os.path.normpath(os.path.join(chroot, "." + path))
def install_package(self, chroot, package):
env = os.environ.copy()
env["DEBIAN_FRONTEND"] = "noninteractive"
vmdb.runcmd_chroot(chroot, ["apt-get", "update"], env=env)
vmdb.runcmd_chroot(
chroot, ["apt-get", "-y", "--no-show-progress", "install", package], env=env
)
def set_grub_cmdline_config(self, chroot, kernel_params):
param_string = " ".join(kernel_params)
self.set_grub_default(
chroot, "GRUB_CMDLINE_LINUX_DEFAULT", '"' + param_string + '"'
)
def set_grub_default(self, chroot, param, value):
filename = self.chroot_path(chroot, "/etc/default/grub")
newdefault = param + "=" + str(value) + "\n"
found_param = False
newcontents = ""
with open(filename, "r+") as f:
for line in f:
if line.startswith(param + "="):
newcontents += newdefault
found_param = True
elif line.startswith("#" + param + "="):
newcontents += line
newcontents += newdefault
found_param = True
else:
newcontents += line
if found_param:
f.seek(0)
f.write(newcontents)
f.truncate()
else:
f.write(newdefault)
def add_grub_serial_console(self, chroot):
self.set_grub_default(chroot, "GRUB_TERMINAL", "serial")
self.set_grub_default(
chroot,
"GRUB_SERIAL_COMMAND",
'"serial ' '--speed=115200 --unit=0 --word=8 --parity=no --stop=1"',
)
def add_grub_crypto_disk(self, chroot):
self.set_grub_default(chroot, "GRUB_ENABLE_CRYPTODISK", "y")
def set_grub_timeout(self, chroot, timeout):
self.set_grub_default(chroot, "GRUB_TIMEOUT", timeout)
|