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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2014-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 boot
import (
"fmt"
"sync/atomic"
"github.com/snapcore/snapd/asserts"
"github.com/snapcore/snapd/bootloader"
"github.com/snapcore/snapd/gadget/device"
"github.com/snapcore/snapd/secboot"
"github.com/snapcore/snapd/snap"
"github.com/snapcore/snapd/testutil"
)
func NewCoreBootParticipant(s snap.PlaceInfo, t snap.Type, dev snap.Device) *coreBootParticipant {
bs, err := bootStateFor(t, dev)
if err != nil {
panic(err)
}
return &coreBootParticipant{s: s, bs: bs}
}
func NewCoreKernel(s snap.PlaceInfo, d snap.Device) *coreKernel {
return &coreKernel{s, bootloaderOptionsForDeviceKernel(d)}
}
type Trivial = trivial
func (m *Modeenv) WasRead() bool {
return m.read
}
func (m *Modeenv) DeepEqual(m2 *Modeenv) bool {
return m.deepEqual(m2)
}
var (
ModeenvKnownKeys = modeenvKnownKeys
MarshalModeenvEntryTo = marshalModeenvEntryTo
UnmarshalModeenvValueFromCfg = unmarshalModeenvValueFromCfg
NewTrustedAssetsCache = newTrustedAssetsCache
ObserveSuccessfulBootWithAssets = observeSuccessfulBootAssets
SealKeyToModeenv = sealKeyToModeenvImpl
ResealKeyToModeenv = resealKeyToModeenv
RecoveryBootChainsForSystems = recoveryBootChainsForSystems
RunModeBootChains = runModeBootChains
BootVarsForTrustedCommandLineFromGadget = bootVarsForTrustedCommandLineFromGadget
WriteModelToUbuntuBoot = writeModelToUbuntuBoot
)
type BootAssetsMap = bootAssetsMap
type BootCommandLines = bootCommandLines
type TrackedAsset = trackedAsset
func (t *TrackedAsset) Equals(blName, name, hash string) error {
equal := t.hash == hash &&
t.name == name &&
t.blName == blName
if !equal {
return fmt.Errorf("not equal to bootloader %q tracked asset %v:%v", t.blName, t.name, t.hash)
}
return nil
}
func (t *TrackedAsset) GetHash() string {
return t.hash
}
type TrustedAssetsInstallObserverImpl = trustedAssetsInstallObserverImpl
func (o *trustedAssetsInstallObserverImpl) CurrentTrustedBootAssetsMap() BootAssetsMap {
return o.currentTrustedBootAssetsMap()
}
func (o *trustedAssetsInstallObserverImpl) CurrentTrustedRecoveryBootAssetsMap() BootAssetsMap {
return o.currentTrustedRecoveryBootAssetsMap()
}
func (o *trustedAssetsInstallObserverImpl) CurrentDataBootstrappedContainer() secboot.BootstrappedContainer {
return o.dataBootstrappedContainer
}
func (o *trustedAssetsInstallObserverImpl) CurrentSaveBootstrappedContainer() secboot.BootstrappedContainer {
return o.saveBootstrappedContainer
}
func (o *trustedAssetsInstallObserverImpl) CurrentVolumesAuth() *device.VolumesAuthOptions {
return o.volumesAuth
}
func (o *TrustedAssetsUpdateObserver) InjectChangedAsset(blName, assetName, hash string, recovery bool) {
ta := &trackedAsset{
blName: blName,
name: assetName,
hash: hash,
}
if !recovery {
o.changedAssets = append(o.changedAssets, ta)
} else {
o.seedChangedAssets = append(o.seedChangedAssets, ta)
}
}
const (
BootChainEquivalent = bootChainEquivalent
BootChainDifferent = bootChainDifferent
BootChainUnrevisioned = bootChainUnrevisioned
)
var (
ToPredictableBootChain = toPredictableBootChain
PredictableBootChainsEqualForReseal = predictableBootChainsEqualForReseal
BootAssetsToLoadChains = bootAssetsToLoadChains
BootAssetLess = bootAssetLess
SetImageBootFlags = setImageBootFlags
NextBootFlags = nextBootFlags
SetNextBootFlags = setNextBootFlags
ModelUniqueID = modelUniqueID
)
func SetBootFlagsInBootloader(flags []string, rootDir string) error {
blVars := make(map[string]string, 1)
if err := setImageBootFlags(flags, blVars); err != nil {
return err
}
// now find the recovery bootloader in the system dir and set the value on
// it
opts := &bootloader.Options{
Role: bootloader.RoleRecovery,
}
bl, err := bootloader.Find(rootDir, opts)
if err != nil {
return err
}
return bl.SetBootVars(blVars)
}
func (b *BootChain) SecbootModelForSealing() secboot.ModelForSealing {
return b.ModelForSealing()
}
func (b *BootChain) SetKernelBootFile(kbf bootloader.BootFile) {
b.KernelBootFile = kbf
}
func MockRebootArgsPath(argsPath string) (restore func()) {
oldRebootArgsPath := rebootArgsPath
rebootArgsPath = argsPath
return func() { rebootArgsPath = oldRebootArgsPath }
}
func MockBootloaderFind(f func(rootdir string, opts *bootloader.Options) (bootloader.Bootloader, error)) (restore func()) {
r := testutil.Backup(&bootloaderFind)
bootloaderFind = f
return r
}
func MockHasFDESetupHook(f func(*snap.Info) (bool, error)) (restore func()) {
oldHasFDESetupHook := HasFDESetupHook
HasFDESetupHook = f
return func() {
HasFDESetupHook = oldHasFDESetupHook
}
}
func MockModeenvLocked() (restore func()) {
atomic.AddInt32(&modeenvLocked, 1)
return func() {
atomic.AddInt32(&modeenvLocked, -1)
}
}
func MockSealModeenvLocked() (restore func()) {
atomic.AddInt32(&sealModeenvLocked, 1)
return func() {
atomic.AddInt32(&sealModeenvLocked, -1)
}
}
func MockAdditionalBootFlags(bootFlags []string) (restore func()) {
old := understoodBootFlags
understoodBootFlags = append(understoodBootFlags, bootFlags...)
return func() {
understoodBootFlags = old
}
}
func MockWriteModelToUbuntuBoot(mock func(*asserts.Model) error) (restore func()) {
old := writeModelToUbuntuBoot
writeModelToUbuntuBoot = mock
return func() {
writeModelToUbuntuBoot = old
}
}
func EnableTestingRebootFunction() (restore func()) {
testingRebootItself = true
return func() { testingRebootItself = false }
}
func MockResealKeyForBootChains(f func(unlocker Unlocker, method device.SealingMethod, rootdir string, params *ResealKeyForBootChainsParams) error) (restore func()) {
old := ResealKeyForBootChains
ResealKeyForBootChains = f
return func() {
ResealKeyForBootChains = old
}
}
func MockSealKeyForBootChains(f func(method device.SealingMethod, key, saveKey secboot.BootstrappedContainer, primaryKey []byte, volumesAuth *device.VolumesAuthOptions, params *SealKeyForBootChainsParams) error) (restore func()) {
old := SealKeyForBootChains
SealKeyForBootChains = f
return func() {
SealKeyForBootChains = old
}
}
func MockCryptsetupSupportsTokenReplace(support bool) (restore func()) {
return testutil.Mock(&cryptsetupSupportsTokenReplace, func() bool {
return support
})
}
|