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 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2024 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* 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/>.
*
*/
package kernel
import (
"errors"
"fmt"
"io/fs"
"os"
"path/filepath"
"regexp"
"strings"
"syscall"
"github.com/snapcore/snapd/asserts"
"github.com/snapcore/snapd/dirs"
"github.com/snapcore/snapd/logger"
"github.com/snapcore/snapd/osutil"
"github.com/snapcore/snapd/release"
"github.com/snapcore/snapd/snap"
)
// For testing purposes
var osSymlink = os.Symlink
// We expect as a minimum something that starts with three numbers
// separated by dots for the kernel version.
var utsRelease = regexp.MustCompile(`^([0-9]+\.){2}[0-9]+`)
// KernelVersionFromModulesDir returns the kernel version for a mounted kernel
// snap (this would be the output if "uname -r" for a running kernel). It
// assumes that there is a folder named modules/$(uname -r) inside the snap.
func KernelVersionFromModulesDir(mountPoint string) (string, error) {
modsDir := filepath.Join(mountPoint, "modules")
entries, err := os.ReadDir(modsDir)
if err != nil {
return "", err
}
kversion := ""
for _, node := range entries {
if !node.Type().IsDir() {
continue
}
if !utsRelease.MatchString(node.Name()) {
continue
}
if kversion != "" {
return "", fmt.Errorf("more than one modules directory in %q", modsDir)
}
kversion = node.Name()
}
if kversion == "" {
return "", fmt.Errorf("no modules directory found in %q", modsDir)
}
return kversion, nil
}
func createFirmwareSymlinks(fwMount MountPoints, fwDest string) error {
fwOrig := fwMount.UnderCurrentPath("firmware")
if err := os.MkdirAll(fwDest, 0755); err != nil {
return err
}
// Symbolic links inside firmware folder - it cannot be directly a
// symlink to "firmware" as we will use firmware/updates/ subfolder for
// components.
entries, err := os.ReadDir(fwOrig)
if err != nil {
if os.IsNotExist(err) {
logger.Debugf("no firmware found in %q", fwOrig)
return nil
}
return err
}
fwTarget := fwMount.UnderTargetPath("firmware")
for _, node := range entries {
switch node.Type() {
case 0, fs.ModeDir:
// "updates" is included in (latest) kernel snaps but
// is empty, and we use if for firmware shipped in
// components, so we ignore it.
if node.Name() == "updates" {
continue
}
// Create link for regular files or directories
lpath := filepath.Join(fwDest, node.Name())
if err := os.Symlink(filepath.Join(fwTarget, node.Name()), lpath); err != nil {
return err
}
case fs.ModeSymlink:
// Replicate link (it should be relative)
// TODO check this in snap pack
lpath := filepath.Join(fwDest, node.Name())
dest, err := os.Readlink(filepath.Join(fwOrig, node.Name()))
if err != nil {
return err
}
if filepath.IsAbs(dest) {
return fmt.Errorf("symlink %q points to absolute path %q", lpath, dest)
}
if err := os.Symlink(dest, lpath); err != nil {
return err
}
default:
return fmt.Errorf("%q has unexpected file type: %s",
node.Name(), node.Type())
}
}
return nil
}
func createModulesSubtree(kMntPts MountPoints, kernelTree, kversion string, compsMntPts []ModulesCompMountPoints) error {
// Although empty we need "lib" because "depmod" always appends
// "/lib/modules/<kernel_version>" to the directory passed with option
// "-b".
modsRoot := filepath.Join(kernelTree, "lib", "modules", kversion)
if err := os.MkdirAll(modsRoot, 0755); err != nil {
return err
}
// Copy modinfo files from the snap (these might be overwritten if
// kernel-modules components are installed).
modsGlob := kMntPts.UnderCurrentPath("modules", kversion, "modules.*")
modFiles, err := filepath.Glob(modsGlob)
if err != nil {
// Should not really happen (only possible error is ErrBadPattern)
return err
}
for _, orig := range modFiles {
target := filepath.Join(modsRoot, filepath.Base(orig))
if err := osutil.CopyFile(orig, target, osutil.CopyFlagDefault); err != nil {
return err
}
}
// Symbolic links to current mount of the kernel snap
currentMntDir := kMntPts.UnderCurrentPath("modules", kversion)
if err := createKernelModulesSymlinks(modsRoot, currentMntDir); err != nil {
return err
}
// If necessary, add modules from components and run depmod
if err := setupModsFromComp(kernelTree, kversion, compsMntPts); err != nil {
return err
}
// Change symlinks to target ones when needed
if !kMntPts.CurrentEqualsTarget() {
targetMntDir := kMntPts.UnderTargetPath("modules", kversion)
if err := createKernelModulesSymlinks(modsRoot, targetMntDir); err != nil {
return err
}
}
return nil
}
func createKernelModulesSymlinks(modsRoot, kMntPt string) error {
for _, d := range []string{"kernel", "vdso"} {
lname := filepath.Join(modsRoot, d)
to := filepath.Join(kMntPt, d)
// We might be re-creating, first remove
os.Remove(lname)
if err := osSymlink(to, lname); err != nil {
return err
}
}
return nil
}
func setupModsFromComp(kernelTree, kversion string, compsMntPts []ModulesCompMountPoints) error {
// This folder needs to exist always to allow for directory swapping
// in the future, even if right now we don't have components.
compsRoot := filepath.Join(kernelTree, "lib", "modules", kversion, "updates")
if err := os.MkdirAll(compsRoot, 0755); err != nil {
return err
}
if len(compsMntPts) == 0 {
return nil
}
// Symbolic links to components
for _, cmp := range compsMntPts {
lname := filepath.Join(compsRoot, cmp.LinkName)
to := cmp.UnderCurrentPath("modules", kversion)
if err := osSymlink(to, lname); err != nil {
return err
}
}
// Run depmod
stdout, stderr, err := osutil.RunSplitOutput("depmod", "-b", kernelTree, kversion)
if err != nil {
return osutil.OutputErrCombine(stdout, stderr, err)
}
logger.Noticef("depmod output:\n%s\n", string(osutil.CombineStdOutErr(stdout, stderr)))
// Change symlinks to target ones when needed
for _, cmp := range compsMntPts {
if cmp.CurrentEqualsTarget() {
continue
}
lname := filepath.Join(compsRoot, cmp.LinkName)
to := cmp.UnderTargetPath("modules", kversion)
// remove old link
os.Remove(lname)
if err := osSymlink(to, lname); err != nil {
return err
}
}
return nil
}
// DriversTreeDir returns the directory for a given kernel and revision under
// rootdir.
func DriversTreeDir(rootdir, kernelName string, rev snap.Revision) string {
return filepath.Join(dirs.SnapKernelDriversTreesDirUnder(rootdir),
kernelName, rev.String())
}
// RemoveKernelDriversTree cleans-up the writable kernel tree in snapd data
// folder, under kernelSubdir/<rev> (kernelSubdir is usually the snap name).
// When called from the kernel package <rev> might be <rev>_tmp.
func RemoveKernelDriversTree(treeRoot string) (err error) {
return os.RemoveAll(treeRoot)
}
type KernelDriversTreeOptions struct {
// Set if we are building the tree for a kernel we are installing right now
KernelInstall bool
}
// MountPoints describes mount points for a snap or a component.
type MountPoints struct {
// Current is where the container to be installed is currently
// available
Current string
// Target is where the container will be found in a running system
Target string
}
func (mp *MountPoints) UnderCurrentPath(dirs ...string) string {
return filepath.Join(append([]string{mp.Current}, dirs...)...)
}
func (mp *MountPoints) UnderTargetPath(dirs ...string) string {
return filepath.Join(append([]string{mp.Target}, dirs...)...)
}
func (mp *MountPoints) CurrentEqualsTarget() bool {
return mp.Current == mp.Target
}
// ModulesCompMountPoints contains mount points for a component plus its name.
type ModulesCompMountPoints struct {
// LinkName is the name of the symlink in the drivers tree that will
// point to the component modules.
LinkName string
MountPoints
}
// EnsureKernelDriversTree creates a drivers tree that can include modules/fw
// from kernel-modules components. opts.KernelInstall tells the function if
// this is a kernel install (which might be installing components at the same
// time) or an only components install.
//
// For kernel installs, this function creates a tree in destDir (should be of
// the form <somedir>/var/lib/snapd/kernel/<ksnapName>/<rev>), which is
// bind-mounted after a reboot to /usr/lib/{modules,firmware} (the currently
// active kernel is using a different path as it has a different revision).
// This tree contains files from the kernel snap content in kSnapRoot, as well
// as symlinks to it. Information from modules is found by looking at
// comps slice.
//
// For components-only install, we want the components to be available without
// rebooting. For this, we work on a temporary tree, and after finishing it we
// swap atomically the affected modules/firmware folders with those of the
// currently active kernel drivers tree.
//
// To make this work in all cases we need to know the current mounts of the
// kernel snap / components to be installed and the final mounts when the
// system is run after installation (as the installing system might be classic
// while the installed system could be hybrid or UC, or we could be installing
// from the initramfs). To consider all cases, we need to run depmod with links
// to the currently available content, and then replace those links with the
// expected mounts in the running system.
func EnsureKernelDriversTree(kMntPts MountPoints, compsMntPts []ModulesCompMountPoints, destDir string, opts *KernelDriversTreeOptions) (err error) {
// The temporal dir when installing only components can be fixed as a
// task installing/updating a kernel-modules component must conflict
// with changes containing this same task. This helps with clean-ups if
// something goes wrong. Note that this folder needs to be in the same
// filesystem as the final one so we can atomically switch the folders.
destDir = strings.TrimSuffix(destDir, "/")
targetDir := destDir + "_tmp"
if opts.KernelInstall {
targetDir = destDir
exists, isDir, _ := osutil.DirExists(targetDir)
if exists && isDir {
logger.Debugf("device tree %q already created on installation, not re-creating",
targetDir)
return nil
}
}
// Initial clean-up to make the function idempotent
if rmErr := RemoveKernelDriversTree(targetDir); rmErr != nil &&
!errors.Is(err, fs.ErrNotExist) {
logger.Noticef("while removing old kernel tree: %v", rmErr)
}
defer func() {
// Remove on return if error or if temporary tree
if err == nil && opts.KernelInstall {
return
}
if rmErr := RemoveKernelDriversTree(targetDir); rmErr != nil &&
!errors.Is(err, fs.ErrNotExist) {
logger.Noticef("while cleaning up kernel tree: %v", rmErr)
}
}()
// Create drivers tree
kversion, err := KernelVersionFromModulesDir(kMntPts.Current)
if err == nil {
if err := createModulesSubtree(kMntPts, targetDir,
kversion, compsMntPts); err != nil {
return err
}
} else {
logger.Debugf("no modules found in %q", kMntPts.Current)
}
fwDir := filepath.Join(targetDir, "lib", "firmware")
if opts.KernelInstall {
// symlinks in /lib/firmware are not affected by components
if err := createFirmwareSymlinks(kMntPts, fwDir); err != nil {
return err
}
}
updateFwDir := filepath.Join(fwDir, "updates")
// This folder needs to exist always to allow for directory swapping
// in the future, even if right now we don't have components.
if err := os.MkdirAll(updateFwDir, 0755); err != nil {
return err
}
for _, cmp := range compsMntPts {
if err := createFirmwareSymlinks(cmp.MountPoints, updateFwDir); err != nil {
return err
}
}
// Sync before returning successfully (install kernel case) and also
// for swapping case so we have consistent content before swapping
// folder.
syscall.Sync()
if !opts.KernelInstall {
// There is a (very small) chance of a poweroff/reboot while
// having swapped only one of these two folders. If that
// happens, snapd will re-run the task on the next boot, but
// with mismatching modules/fw for the installed components. As
// modules shipped by components should not be that critical,
// in principle the system should recover.
// Swap modules directories
oldRoot := destDir
// Swap updates directory inside firmware dir
oldFwUpdates := filepath.Join(oldRoot, "lib", "firmware", "updates")
if err := osutil.SwapDirs(oldFwUpdates, updateFwDir); err != nil {
return fmt.Errorf("while swapping %q <-> %q: %w", oldFwUpdates, updateFwDir, err)
}
newMods := filepath.Join(targetDir, "lib", "modules", kversion)
oldMods := filepath.Join(oldRoot, "lib", "modules", kversion)
if err := osutil.SwapDirs(oldMods, newMods); err != nil {
// Undo firmware swap
if err := osutil.SwapDirs(oldFwUpdates, updateFwDir); err != nil {
logger.Noticef("while reverting modules swap: %v", err)
}
return fmt.Errorf("while swapping %q <-> %q: %w", newMods, oldMods, err)
}
// Make sure that changes are written
syscall.Sync()
}
return nil
}
// NeedsKernelDriversTree returns true if we need a kernel drivers tree for this model.
func NeedsKernelDriversTree(mod *asserts.Model) bool {
// Checking if it has modeenv - it must be UC20+ or hybrid
if mod.Grade() == asserts.ModelGradeUnset {
return false
}
// We assume core24/hybrid 24.04 onwards have the generator, for older
// boot bases we return false.
switch mod.Base() {
case "core22":
if mod.Classic() {
// This is a workaround for LP#2104933. The base should
// never have been core22 in 24.04/24.10.
return classic24ModelWithWrongBase()
}
return false
case "core20", "core22-desktop":
return false
default:
return true
}
}
// This is a workaround for LP#2104933. The base should never have been core22
// in classic 24.04/24.10.
func classic24ModelWithWrongBase() bool {
return release.ReleaseInfo.ID == "ubuntu" &&
(release.ReleaseInfo.VersionID == "24.04" || release.ReleaseInfo.VersionID == "24.10")
}
|