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 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2019-2023 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 boot
import (
"fmt"
"os"
"path/filepath"
"sync"
"sync/atomic"
"github.com/snapcore/snapd/bootloader"
"github.com/snapcore/snapd/dirs"
"github.com/snapcore/snapd/logger"
"github.com/snapcore/snapd/osutil"
"github.com/snapcore/snapd/snap"
"github.com/snapcore/snapd/strutil"
)
func newBootState20(typ snap.Type, dev snap.Device) bootState {
switch typ {
case snap.TypeBase:
return &bootState20Base{}
case snap.TypeKernel:
return &bootState20Kernel{
dev: dev,
}
case snap.TypeGadget:
return &bootState20Gadget{}
default:
panic(fmt.Sprintf("cannot make a bootState20 for snap type %q", typ))
}
}
// modeenvMu is used to protect sections doing:
// - read moddeenv/modify it(/reseal from it)
//
// while we might want to release the global state lock as seal/reseal are slow
// (see Unlocker for that)
var (
modeenvMu sync.Mutex
modeenvLocked int32
)
// TODO: we need to rethink the modeenv mutexes as naively releasing the state
// lock while holding them can create deadlocks when we try to reacquire the
// former
func modeenvLock() {
modeenvMu.Lock()
atomic.AddInt32(&modeenvLocked, 1)
}
func modeenvUnlock() {
atomic.AddInt32(&modeenvLocked, -1)
modeenvMu.Unlock()
}
func isModeenvLocked() bool {
return atomic.LoadInt32(&modeenvLocked) == 1
}
func loadModeenv() (*Modeenv, error) {
if !isModeenvLocked() {
return nil, fmt.Errorf("internal error: cannot read modeenv without the lock")
}
modeenv, err := ReadModeenv("")
if err != nil {
return nil, fmt.Errorf("cannot read modeenv: %v", err)
}
return modeenv, nil
}
// selectGadgetSnap finds the currently active gadget snap
func selectGadgetSnap(modeenv *Modeenv, rootfsDir string) (snap.PlaceInfo, error) {
gadgetInfo, err := snap.ParsePlaceInfoFromSnapFileName(modeenv.Gadget)
if err != nil {
return nil, fmt.Errorf("cannot get snap revision: modeenv gadget boot variable is invalid: %v", err)
}
// check that the current snap actually exists
file := modeenv.Gadget
snapPath := filepath.Join(dirs.SnapBlobDirUnder(rootfsDir), file)
if !osutil.FileExists(snapPath) {
// somehow the gadget snap doesn't exist in ubuntu-data
// this could happen if the modeenv is manipulated
// out-of-band from snapd
return nil, fmt.Errorf("gadget snap %q does not exist on ubuntu-data", file)
}
return gadgetInfo, nil
}
//
// bootloaderKernelState20 methods
//
type bootloaderKernelState20 interface {
// load will setup any state / actors needed to use other methods
load() error
// kernelStatus returns the current status of the kernel, i.e. the
// kernel_status bootenv
kernelStatus() string
// kernel returns the current non-try kernel
kernel() snap.PlaceInfo
// kernel returns the current try kernel if it exists on the bootloader
tryKernel() (snap.PlaceInfo, error)
// setNextKernel marks the kernel as the next, if it's not the currently
// booted kernel, then the specified kernel is setup as a try-kernel
setNextKernel(sn snap.PlaceInfo, status string) error
// markSuccessfulKernel marks the specified kernel as having booted
// successfully, whether that kernel is the current kernel or the try-kernel
markSuccessfulKernel(sn snap.PlaceInfo) error
// setNextKernelNoTry changes boot configuration so the specified kernel will
// be the one used in next boot, without the "try" logic. This shall be
// used only when we have already booted to a new kernel but for some
// reason we need to revert to the previous kernel (for instance, in a
// transactional update when the failing snap is not the kernel).
setNextKernelNoTry(sn snap.PlaceInfo) error
}
//
// bootStateUpdate for 20 methods
//
type bootCommitTask func() error
// bootStateUpdate20 implements the bootStateUpdate interface for both kernel
// and base snaps on UC20.
type bootStateUpdate20 struct {
// tasks to run before the modeenv has been written
preModeenvTasks []bootCommitTask
// the modeenv that was read from disk
modeenv *Modeenv
// the modeenv that will be written out in commit
writeModeenv *Modeenv
// tasks to run after the modeenv has been written
postModeenvTasks []bootCommitTask
revokeOldKeys bool
}
func (u20 *bootStateUpdate20) preModeenv(task bootCommitTask) {
u20.preModeenvTasks = append(u20.preModeenvTasks, task)
}
func (u20 *bootStateUpdate20) postModeenv(task bootCommitTask) {
u20.postModeenvTasks = append(u20.postModeenvTasks, task)
}
func newBootStateUpdate20(m *Modeenv) (*bootStateUpdate20, error) {
u20 := &bootStateUpdate20{}
if m == nil {
var err error
m, err = loadModeenv()
if err != nil {
return nil, err
}
}
// copy the modeenv for the write object
u20.modeenv = m
var err error
u20.writeModeenv, err = m.Copy()
if err != nil {
return nil, err
}
return u20, nil
}
// commit will write out boot state persistently to disk.
func (u20 *bootStateUpdate20) commit(markedSuccessful bool) error {
if !isModeenvLocked() {
return fmt.Errorf("internal error: cannot commit modeenv without the lock")
}
// The actual actions taken here will depend on what things were called
// before commit(), either setNextBoot for a single type of kernel snap, or
// markSuccessful for kernel and/or base snaps.
// It is expected that the caller code is carefully analyzed to avoid
// critical points where a hard system reset during that critical point
// would brick a device or otherwise severely fail an update.
// There are three things that callers can do before calling commit(),
// 1. modify writeModeenv to specify new values for things that will be
// written to disk in the modeenv.
// 2. Add tasks to run before writing the modeenv.
// 3. Add tasks to run after writing the modeenv.
// first handle any pre-modeenv writing tasks
for _, t := range u20.preModeenvTasks {
if err := t(); err != nil {
return err
}
}
// None of the implementation of successfulBootState is expected to modify the model.
// So we can safely ignore FDE hooks.
resealOpts := ResealKeyToModeenvOptions{IgnoreFDEHooks: true, RevokeOldKeys: u20.revokeOldKeys}
// next write the modeenv if it changed
if !u20.writeModeenv.deepEqual(u20.modeenv) {
if err := u20.writeModeenv.Write(); err != nil {
return err
}
resealOpts.ExpectReseal = resealExpectedByModeenvChange(u20.writeModeenv, u20.modeenv)
}
if markedSuccessful {
autoRepair, err := IsUnlockedWithRecoveryKey()
if err != nil {
if !os.IsNotExist(err) {
return err
}
} else if autoRepair {
resealOpts.Force = true
resealOpts.EnsureProvisioned = true
}
}
// next reseal using the modeenv values, we do this before any
// post-modeenv tasks so if we are rebooted at any point after
// the reseal even before the post tasks are completed, we
// still boot properly
// if there is ambiguity whether the boot chains have
// changed because of unasserted kernels, then pass a
// flag as hint whether to reseal based on whether we
// wrote the modeenv
if err := resealKeyToModeenv(dirs.GlobalRootDir, u20.writeModeenv, resealOpts, nil); err != nil {
return err
}
// finally handle any post-modeenv writing tasks
for _, t := range u20.postModeenvTasks {
if err := t(); err != nil {
return err
}
}
return nil
}
//
// kernel snap methods
//
// bootState20Kernel implements the bootState interface for kernel snaps on
// UC20. It is used for both setNext() and markSuccessful(), with both of those
// methods returning bootStateUpdate20 to be used with bootStateUpdate.
type bootState20Kernel struct {
bks bootloaderKernelState20
rbl bootloader.RebootBootloader
// used to find the bootloader to manipulate the enabled kernel, etc.
blOpts *bootloader.Options
blDir string
dev snap.Device
}
func (ks20 *bootState20Kernel) bootloaderOptions() *bootloader.Options {
if ks20.blOpts != nil {
return ks20.blOpts
}
// find the run-mode bootloader
return &bootloader.Options{
Role: bootloader.RoleRunMode,
}
}
func (ks20 *bootState20Kernel) loadBootenv() error {
// don't setup multiple times
if ks20.bks != nil {
return nil
}
bl, err := bootloader.Find(ks20.blDir, ks20.bootloaderOptions())
if err != nil {
return err
}
ebl, ok := bl.(bootloader.ExtractedRunKernelImageBootloader)
if ok {
// use the new 20-style ExtractedRunKernelImage implementation
ks20.bks = &extractedRunKernelImageBootloaderKernelState{ebl: ebl}
} else {
// use fallback pure bootloader env implementation
ks20.bks = &envRefExtractedKernelBootloaderKernelState{bl: bl}
}
rbl, ok := bl.(bootloader.RebootBootloader)
if ok {
ks20.rbl = rbl
}
// setup the bootloaderKernelState20
if err := ks20.bks.load(); err != nil {
return err
}
return nil
}
func (ks20 *bootState20Kernel) revisions() (curSnap, trySnap snap.PlaceInfo, tryingStatus string, err error) {
var tryBootSn snap.PlaceInfo
err = ks20.loadBootenv()
if err != nil {
return nil, nil, "", err
}
status := ks20.bks.kernelStatus()
kern := ks20.bks.kernel()
tryKernel, err := ks20.bks.tryKernel()
// if err is ErrNoTryKernelRef, then we will just return nil as the trySnap
if err != nil && err != bootloader.ErrNoTryKernelRef {
return kern, nil, status, newTrySnapErrorf("cannot identify try kernel snap: %v", err)
}
if err == nil {
tryBootSn = tryKernel
}
return kern, tryBootSn, status, nil
}
func (ks20 *bootState20Kernel) revisionsFromModeenv(*Modeenv) (curSnap, trySnap snap.PlaceInfo, tryingStatus string, err error) {
// the kernel snap doesn't use modeenv at all for getting their revisions
return ks20.revisions()
}
func (ks20 *bootState20Kernel) markSuccessful(update bootStateUpdate) (bootStateUpdate, error) {
// call the generic method with this object to do most of the legwork
u20, sn, err := selectSuccessfulBootSnap(ks20, update)
if err != nil {
return nil, err
}
// XXX: this if arises because some unit tests rely on not setting up kernel
// details and just operating on the base snap but this situation would
// never happen in reality
if sn != nil {
// On commit, mark the kernel successful before rewriting the modeenv
// because if we first rewrote the modeenv then got rebooted before
// marking the kernel successful, the bootloader would see that the boot
// failed to mark it successful and then fall back to the original
// kernel, but that kernel would no longer be in the modeenv, so we
// would die in the initramfs
u20.preModeenv(func() error { return ks20.bks.markSuccessfulKernel(sn) })
// On commit, set CurrentKernels as just this kernel because that is the
// successful kernel we booted
u20.writeModeenv.CurrentKernels = []string{sn.Filename()}
}
return u20, nil
}
func (ks20 *bootState20Kernel) setNext(next snap.PlaceInfo, bootCtx NextBootContext) (rbi RebootInfo, u bootStateUpdate, err error) {
u20, rebootRequired, err := genericSetNext(ks20, next)
if err != nil {
return RebootInfo{RebootRequired: false}, nil, err
}
nextStatus := DefaultStatus
rbi.RebootRequired = rebootRequired
if rbi.RebootRequired {
// if we need to reboot and we are not undoing, we set the try status
if !bootCtx.BootWithoutTry {
nextStatus = TryStatus
}
// Kernels are usually loaded directly by the bootloader, for
// which we may need to pass additional data to make 'try'
// operation more robust. Set the bootloader options so the
// reboot code can find the relevant bootloader and get those
// arguments.
rbi.BootloaderOptions = ks20.bootloaderOptions()
}
currentKernel := ks20.bks.kernel()
if bootCtx.BootWithoutTry {
// When undoing, only next kernel will be available (which will
// be actually the old kernel). Depending on when the undo
// happens (before or after the reboot triggered by the update),
// current will be the same as next or different, so in both
// cases we need this.
u20.writeModeenv.CurrentKernels = []string{next.Filename()}
} else if next.Filename() != currentKernel.Filename() {
// We are trying a new kernel, add to the modeenv
u20.writeModeenv.CurrentKernels = append(
u20.writeModeenv.CurrentKernels,
next.Filename(),
)
}
logger.Debugf("available kernels (BootWithoutTry: %t): %v",
bootCtx.BootWithoutTry, u20.writeModeenv.CurrentKernels)
bootTask := func() error { return ks20.bks.setNextKernel(next, nextStatus) }
if bootCtx.BootWithoutTry {
// force revert to "next" kernel (actually it is the old one)
// and ignore the try status, that will be empty in this case.
bootTask = func() error { return ks20.bks.setNextKernelNoTry(next) }
}
// On commit, if we are about to try an update, and need to set the next
// kernel before rebooting, we need to do that after updating the modeenv,
// because if we did it before and got rebooted in between setting the next
// kernel and updating the modeenv, the initramfs would fail the boot
// because the modeenv doesn't "trust" or expect the new kernel that booted.
// As such, set the next kernel as a post modeenv task.
u20.postModeenv(bootTask)
return rbi, u20, nil
}
// selectAndCommitSnapInitramfsMount chooses which snap should be mounted
// during the initramfs, and commits that choice if it needs state updated.
// Choosing to boot/mount the base snap needs to be committed to the
// modeenv, but no state needs to be committed when choosing to mount a
// kernel snap.
func (ks20 *bootState20Kernel) selectAndCommitSnapInitramfsMount(modeenv *Modeenv, rootfsDir string) (sn snap.PlaceInfo, err error) {
// first do the generic choice of which snap to use
first, second, err := genericInitramfsSelectSnap(ks20, modeenv, rootfsDir, TryingStatus, "kernel")
if err != nil && err != errTrySnapFallback {
return nil, err
}
// If errTrySnapFallback it means that we are trying a new kernel
// but somewhat the status does not look correct of we cannot find
// the snap. Reboot so bootloader reverts to using the old kernel.
if err == errTrySnapFallback {
// this should not actually return, it should immediately reboot
return nil, initramfsReboot()
}
// now validate the chosen kernel snap against the modeenv CurrentKernel's
// setting
if strutil.ListContains(modeenv.CurrentKernels, first.Filename()) {
return first, nil
}
// if we didn't trust the first kernel in the modeenv, and second is set as
// a fallback, that means we booted a try kernel which is the first kernel,
// but we need to fallback to the second kernel, but we can't do that in the
// initramfs, we need to reboot so the bootloader boots the fallback kernel
// for us
if second != nil {
// this should not actually return, it should immediately reboot
return nil, initramfsReboot()
}
// no fallback expected, so first snap _is_ the only kernel and isn't
// trusted!
// since we have nothing to fallback to, we don't issue a reboot and will
// instead just fail the systemd unit in the initramfs for an operator to
// debug/fix
return nil, fmt.Errorf("fallback kernel snap %q is not trusted in the modeenv", first.Filename())
}
//
// gadget snap methods
//
// bootState20Gadget implements the bootState interface for gadget
// snaps on UC20+. It is used for both setNext() and markSuccessful(),
// with both of those methods returning bootStateUpdate20 to be used
// with bootStateUpdate.
type bootState20Gadget struct{}
func (bs20 *bootState20Gadget) revisions() (curSnap, trySnap snap.PlaceInfo, tryingStatus string, err error) {
return nil, nil, "", fmt.Errorf("internal error, revisions not implemented for gadget")
}
func (bs20 *bootState20Gadget) setNext(next snap.PlaceInfo, bootCtx NextBootContext) (rbi RebootInfo, u bootStateUpdate, err error) {
u20, err := newBootStateUpdate20(nil)
if err != nil {
return RebootInfo{RebootRequired: false}, nil, err
}
u20.writeModeenv.Gadget = next.Filename()
return RebootInfo{RebootRequired: false}, u20, err
}
func (bs20 *bootState20Gadget) markSuccessful(bootStateUpdate) (bootStateUpdate, error) {
return nil, fmt.Errorf("internal error, markSuccessful not implemented for gadget")
}
//
// base snap methods
//
// bootState20Base implements the bootState interface for base snaps on UC20.
// It is used for both setNext() and markSuccessful(), with both of those
// methods returning bootStateUpdate20 to be used with bootStateUpdate.
type bootState20Base struct{}
// revisions returns the current boot snap and optional try boot snap for the
// type specified in bsgeneric.
func (bs20 *bootState20Base) revisions() (curSnap, trySnap snap.PlaceInfo, tryingStatus string, err error) {
modeenv, err := loadModeenv()
if err != nil {
return nil, nil, "", fmt.Errorf("cannot get snap revision: %v", err)
}
return bs20.revisionsFromModeenv(modeenv)
}
func (bs20 *bootState20Base) revisionsFromModeenv(modeenv *Modeenv) (curSnap, trySnap snap.PlaceInfo, tryingStatus string, err error) {
var bootSn, tryBootSn snap.PlaceInfo
if modeenv.Base == "" {
return nil, nil, "", fmt.Errorf("cannot get snap revision: modeenv base boot variable is empty")
}
bootSn, err = snap.ParsePlaceInfoFromSnapFileName(modeenv.Base)
if err != nil {
return nil, nil, "", fmt.Errorf("cannot get snap revision: modeenv base boot variable is invalid: %v", err)
}
if modeenv.BaseStatus != DefaultStatus && modeenv.TryBase != "" {
tryBootSn, err = snap.ParsePlaceInfoFromSnapFileName(modeenv.TryBase)
if err != nil {
return bootSn, nil, "", newTrySnapErrorf("cannot get snap revision: modeenv try base boot variable is invalid: %v", err)
}
}
return bootSn, tryBootSn, modeenv.BaseStatus, nil
}
func (bs20 *bootState20Base) markSuccessful(update bootStateUpdate) (bootStateUpdate, error) {
// call the generic method with this object to do most of the legwork
u20, sn, err := selectSuccessfulBootSnap(bs20, update)
if err != nil {
return nil, err
}
// on commit, always clear the base_status and try_base when marking
// successful, this has the useful side-effect of cleaning up if we have
// base_status=trying but no try_base set, or if we had an issue with
// try_base being invalid
u20.writeModeenv.BaseStatus = DefaultStatus
u20.writeModeenv.TryBase = ""
// set the base
u20.writeModeenv.Base = sn.Filename()
return u20, nil
}
func (bs20 *bootState20Base) setNext(next snap.PlaceInfo, bootCtx NextBootContext) (rbi RebootInfo, u bootStateUpdate, err error) {
// bases are handled by snap-bootstrap, hence we are not interested in
// the bootloader's opinion (no need for rbi.RebootBootloader, so it is
// not filled anywhere in this method).
u20, rebootRequired, err := genericSetNext(bs20, next)
if err != nil {
return RebootInfo{RebootRequired: false}, nil, err
}
nextStatus := DefaultStatus
rbi.RebootRequired = rebootRequired
if rbi.RebootRequired {
if bootCtx.BootWithoutTry {
// we must make sure we boot with the base we revert to
u20.writeModeenv.Base = next.Filename()
u20.writeModeenv.TryBase = ""
} else {
// if we need to reboot and we are not undoing, we set the try status
// and set appropriately the base we want to try
nextStatus = TryStatus
u20.writeModeenv.TryBase = next.Filename()
}
}
// always update the base status
u20.writeModeenv.BaseStatus = nextStatus
return rbi, u20, nil
}
// selectAndCommitSnapInitramfsMount chooses which snap should be mounted
// during the early boot sequence, i.e. the initramfs, and commits that
// choice if it needs state updated.
// Choosing to boot/mount the base snap needs to be committed to the
// modeenv, but no state needs to be committed when choosing to mount a
// kernel snap.
func (bs20 *bootState20Base) selectAndCommitSnapInitramfsMount(modeenv *Modeenv, rootfsDir string) (sn snap.PlaceInfo, err error) {
// first do the generic choice of which snap to use
// the logic in that function is sufficient to pick the base snap entirely,
// so we don't ever need to look at the fallback snap, we just need to know
// whether the chosen snap is a try snap or not, if it is then we process
// the modeenv in the "try" -> "trying" case
first, second, err :=
genericInitramfsSelectSnap(bs20, modeenv, rootfsDir, TryStatus, "base")
// errTrySnapFallback is handled manually by inspecting second below
if err != nil && err != errTrySnapFallback {
return nil, err
}
modeenvChanged := false
// apply the update logic to the choices modeenv
switch modeenv.BaseStatus {
case TryStatus:
// if we were in try status and we have a fallback, then we are in a
// normal try state and we change status to TryingStatus now
// all other cleanup of state is left to user space snapd
if second != nil {
modeenv.BaseStatus = TryingStatus
modeenvChanged = true
}
case TryingStatus:
// we tried to boot a try base snap and failed, so we need to reset
// BaseStatus
modeenv.BaseStatus = DefaultStatus
modeenvChanged = true
case DefaultStatus:
// nothing to do
default:
// log a message about invalid setting
logger.Noticef("invalid setting for \"base_status\" in modeenv : %q", modeenv.BaseStatus)
}
if modeenvChanged {
err = modeenv.Write()
if err != nil {
return nil, err
}
}
return first, nil
}
//
// generic methods
//
type bootState20 interface {
bootState
// revisionsFromModeenv implements bootState.revisions but starting
// from an already loaded Modeenv.
revisionsFromModeenv(*Modeenv) (curSnap, trySnap snap.PlaceInfo, tryingStatus string, err error)
}
// genericSetNext implements the generic logic for setting up a snap to be tried
// for boot and works for both kernel and base snaps (though not
// simultaneously).
func genericSetNext(b bootState20, next snap.PlaceInfo) (u20 *bootStateUpdate20, rebootRequired bool, err error) {
u20, err = newBootStateUpdate20(nil)
if err != nil {
return nil, false, err
}
// get the current snap
current, _, _, err := b.revisionsFromModeenv(u20.modeenv)
if err != nil {
return nil, false, err
}
// check if the next snap is really the same as the current snap, in which
// case we either do nothing or just clear the status (and not reboot)
if current.SnapName() == next.SnapName() && next.SnapRevision() == current.SnapRevision() {
// if we are setting the next snap as the current snap, don't need to
// change any snaps, just reset the status to default
return u20, false, nil
}
// next != current so we need to reboot
return u20, true, nil
}
func toBootStateUpdate20(update bootStateUpdate) (u20 *bootStateUpdate20, err error) {
// try to extract bootStateUpdate20 out of update
if update != nil {
var ok bool
if u20, ok = update.(*bootStateUpdate20); !ok {
return nil, fmt.Errorf("internal error, cannot thread %T with update for UC20+", update)
}
}
if u20 == nil {
// make a new one, also loading modeenv
u20, err = newBootStateUpdate20(nil)
if err != nil {
return nil, err
}
}
return u20, nil
}
// selectSuccessfulBootSnap inspects the specified boot state to pick what
// boot snap should be marked as successful and use as a valid rollback target.
// If the first return value is non-nil, the second return value will be the
// snap that was booted and should be marked as successful.
func selectSuccessfulBootSnap(b bootState20, update bootStateUpdate) (
u20 *bootStateUpdate20,
bootedSnap snap.PlaceInfo,
err error,
) {
u20, err = toBootStateUpdate20(update)
if err != nil {
return nil, nil, err
}
// get the try snap and the current status
sn, trySnap, status, err := b.revisionsFromModeenv(u20.modeenv)
if err != nil {
return nil, nil, err
}
// kernel_status and base_status go from "" -> "try" (set by snapd), to
// "try" -> "trying" (set by the boot script)
// so if we are in "trying" mode, then we should choose the try snap
if status == TryingStatus && trySnap != nil {
return u20, trySnap, nil
}
// if we are not in trying then choose the normal snap
return u20, sn, nil
}
// genericInitramfsSelectSnap will run the logic to choose which snap should be
// mounted during the initramfs using the given bootState and the expected try
// status. The try status is needed because during the initramfs we will have
// different statuses for kernel vs base snaps, where base snap is expected to
// be in "try" mode, but kernel is expected to be in "trying" mode. It returns
// the first and second choice for what snaps to mount. If there is a second
// snap, then that snap is the fallback or non-trying snap and the first snap is
// the try snap.
func genericInitramfsSelectSnap(bs bootState20, modeenv *Modeenv, rootfsDir string, expectedTryStatus, typeString string) (
firstChoice, secondChoice snap.PlaceInfo,
err error,
) {
curSnap, trySnap, snapTryStatus, err := bs.revisionsFromModeenv(modeenv)
if err != nil {
if isTrySnapError(err) {
// We just log the error, if we are here and this is a
// kernel is either because try-kernel.efi is a dangling
// link or because it points to a bad file. Most
// possibly the try kernel has not been used to start
// the system, so we just go on and wait to see what the
// try_status says - otherwise we could enter a boot
// loop. If it is a base, we have bad format in the
// modeenv for it, log and move on, we still want to
// boot.
logger.Noticef("unable to process try %s snap: %v", typeString, err)
} else {
// No current snap information found in modeenv for base,
// or cannot get information from bootloader for kernel.
return nil, nil, fmt.Errorf("no currently usable %s snaps: %v", typeString, err)
}
}
// check that the current snap actually exists
file := curSnap.Filename()
snapPath := filepath.Join(dirs.SnapBlobDirUnder(rootfsDir), file)
if !osutil.FileExists(snapPath) {
// somehow the boot snap doesn't exist in ubuntu-data
// for a kernel, this could happen if we have some bug where ubuntu-boot
// isn't properly updated and never changes, but snapd thinks it was
// updated and eventually snapd garbage collects old revisions of
// the kernel snap as it is "refreshed"
// for a base, this could happen if the modeenv is manipulated
// out-of-band from snapd
return nil, nil, fmt.Errorf("%s snap %q does not exist on ubuntu-data", typeString, file)
}
if snapTryStatus != expectedTryStatus {
// status does not match what we would have if we were trying a
// snap (which is the normal path when no update is happening),
// log if its value is invalid and continue with the normal snap
fallbackErr := errTrySnapFallback
switch snapTryStatus {
case DefaultStatus:
// all good, no update is happening in this boot
fallbackErr = nil
case TryStatus, TryingStatus:
default:
// something is wrong, status is neither the default nor
// what we would see from the initramfs if we were
// trying a snap
logger.Noticef("\"%s_status\" has an invalid setting: %q", typeString, snapTryStatus)
}
return curSnap, nil, fallbackErr
}
// then we are trying a snap update and there should be a try snap
if trySnap == nil {
// it is unexpected when there isn't one
logger.Noticef("try-%[1]s snap is empty, but \"%[1]s_status\" is \"trying\"", typeString)
return curSnap, nil, errTrySnapFallback
}
trySnapPath := filepath.Join(dirs.SnapBlobDirUnder(rootfsDir), trySnap.Filename())
if !osutil.FileExists(trySnapPath) {
// or when the snap file does not exist
logger.Noticef("try-%s snap %q does not exist", typeString, trySnap.Filename())
return curSnap, nil, errTrySnapFallback
}
// we have a try snap and everything appears in order
return trySnap, curSnap, nil
}
//
// non snap boot resources
//
// bootState20BootAssets implements the successfulBootState interface for trusted
// boot assets UC20.
type bootState20BootAssets struct {
dev snap.Device
}
func (ba20 *bootState20BootAssets) markSuccessful(update bootStateUpdate) (bootStateUpdate, error) {
u20, err := toBootStateUpdate20(update)
if err != nil {
return nil, err
}
if len(u20.modeenv.CurrentTrustedBootAssets) == 0 && len(u20.modeenv.CurrentTrustedRecoveryBootAssets) == 0 {
// not using trusted boot assets, nothing more to do
return update, nil
}
newM, dropAssets, revokeOldKeys, err := observeSuccessfulBootAssets(u20.writeModeenv)
if revokeOldKeys {
u20.revokeOldKeys = true
}
if err != nil {
return nil, fmt.Errorf("cannot mark successful boot assets: %v", err)
}
// update modeenv
u20.writeModeenv = newM
if len(dropAssets) == 0 {
// nothing to drop, we're done
return u20, nil
}
u20.postModeenv(func() error {
cache := newTrustedAssetsCache(dirs.SnapBootAssetsDir)
// drop listed assets from cache
for _, ta := range dropAssets {
err := cache.Remove(ta.blName, ta.name, ta.hash)
if err != nil {
// XXX: should this be a log instead?
return fmt.Errorf("cannot remove unused boot asset %v:%v: %v", ta.name, ta.hash, err)
}
}
return nil
})
return u20, nil
}
func trustedAssetsBootState(dev snap.Device) *bootState20BootAssets {
return &bootState20BootAssets{
dev: dev,
}
}
// bootState20CommandLine implements the successfulBootState interface for
// kernel command line
type bootState20CommandLine struct {
dev snap.Device
}
func (bcl20 *bootState20CommandLine) markSuccessful(update bootStateUpdate) (bootStateUpdate, error) {
u20, err := toBootStateUpdate20(update)
if err != nil {
return nil, err
}
newM, err := observeSuccessfulCommandLine(bcl20.dev.Model(), u20.writeModeenv)
if err != nil {
return nil, fmt.Errorf("cannot mark successful boot command line: %v", err)
}
u20.writeModeenv = newM
return u20, nil
}
func trustedCommandLineBootState(dev snap.Device) *bootState20CommandLine {
return &bootState20CommandLine{
dev: dev,
}
}
// bootState20RecoverySystem implements the successfulBootState interface for
// tried recovery systems
type bootState20RecoverySystem struct {
dev snap.Device
}
func (brs20 *bootState20RecoverySystem) markSuccessful(update bootStateUpdate) (bootStateUpdate, error) {
u20, err := toBootStateUpdate20(update)
if err != nil {
return nil, err
}
newM, err := observeSuccessfulSystems(u20.writeModeenv)
if err != nil {
return nil, fmt.Errorf("cannot mark successful recovery system: %v", err)
}
u20.writeModeenv = newM
return u20, nil
}
func recoverySystemsBootState(dev snap.Device) *bootState20RecoverySystem {
return &bootState20RecoverySystem{dev: dev}
}
// bootState20Model implements the successfulBootState interface for device
// model related bookkeeping
type bootState20Model struct {
dev snap.Device
}
func (brs20 *bootState20Model) markSuccessful(update bootStateUpdate) (bootStateUpdate, error) {
u20, err := toBootStateUpdate20(update)
if err != nil {
return nil, err
}
// sign key ID was not being populated in earlier versions of snapd, try
// to remedy that
if u20.modeenv.ModelSignKeyID == "" {
u20.writeModeenv.ModelSignKeyID = brs20.dev.Model().SignKeyID()
}
return u20, nil
}
func modelBootState(dev snap.Device) *bootState20Model {
return &bootState20Model{dev: dev}
}
|