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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2019-2022 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 (
"bytes"
"encoding/json"
"fmt"
"io"
"os"
"path/filepath"
"reflect"
"sort"
"strconv"
"strings"
"github.com/mvo5/goconfigparser"
"github.com/snapcore/snapd/asserts"
"github.com/snapcore/snapd/dirs"
"github.com/snapcore/snapd/osutil"
"github.com/snapcore/snapd/release"
"github.com/snapcore/snapd/secboot"
"github.com/snapcore/snapd/snapdenv"
)
type bootAssetsMap map[string][]string
// bootCommandLines is a list of kernel command lines. The command lines are
// marshalled as JSON as a comma can be present in the module parameters.
type bootCommandLines []string
// Modeenv is a file on UC20 that provides additional information
// about the current mode (run,recover,install)
type Modeenv struct {
Mode string `key:"mode"`
RecoverySystem string `key:"recovery_system"`
// CurrentRecoverySystems is a list of labels corresponding to recovery
// systems that have been tested or are in the process of being tried,
// thus only the run key is resealed for these systems.
CurrentRecoverySystems []string `key:"current_recovery_systems"`
// GoodRecoverySystems is a list of labels corresponding to recovery
// systems that were tested and are prepared to use for recovering.
// The fallback keys are resealed for these systems.
GoodRecoverySystems []string `key:"good_recovery_systems"`
Base string `key:"base"`
TryBase string `key:"try_base"`
BaseStatus string `key:"base_status"`
// Gadget is the currently active gadget snap
Gadget string `key:"gadget"`
CurrentKernels []string `key:"current_kernels"`
// Model, BrandID, Grade, SignKeyID describe the properties of current
// device model.
Model string `key:"model"`
BrandID string `key:"model,secondary"`
Classic bool `key:"classic"`
Grade string `key:"grade"`
ModelSignKeyID string `key:"model_sign_key_id"`
// TryModel, TryBrandID, TryGrade, TrySignKeyID describe the properties
// of the candidate model.
TryModel string `key:"try_model"`
TryBrandID string `key:"try_model,secondary"`
TryGrade string `key:"try_grade"`
TryModelSignKeyID string `key:"try_model_sign_key_id"`
// BootFlags is the set of boot flags. Whether this applies for the current
// or next boot is not indicated in the modeenv. When the modeenv is read in
// the initramfs these flags apply to the current boot and are copied into
// a file in /run that userspace should read instead of reading from this
// key. When setting boot flags for the next boot, then this key will be
// written to and used by the initramfs after rebooting.
BootFlags []string `key:"boot_flags"`
// CurrentTrustedBootAssets is a map of a run bootloader's asset names to
// a list of hashes of the asset contents. Typically the first entry in
// the list is a hash of an asset the system currently boots with (or is
// expected to have booted with). The second entry, if present, is the
// hash of an entry added when an update of the asset was being applied
// and will become the sole entry after a successful boot.
CurrentTrustedBootAssets bootAssetsMap `key:"current_trusted_boot_assets"`
// CurrentTrustedRecoveryBootAssetsMap is a map of a recovery bootloader's
// asset names to a list of hashes of the asset contents. Used similarly
// to CurrentTrustedBootAssets.
CurrentTrustedRecoveryBootAssets bootAssetsMap `key:"current_trusted_recovery_boot_assets"`
// CurrentKernelCommandLines is a list of the expected kernel command
// lines when booting into run mode. It will typically only be one
// element for normal operations, but may contain two elements during
// update scenarios.
CurrentKernelCommandLines bootCommandLines `key:"current_kernel_command_lines"`
// TODO:UC20 add a per recovery system list of kernel command lines
// read is set to true when a modenv was read successfully
read bool
// originRootdir is set to the root whence the modeenv was
// read from, and where it will be written back to
originRootdir string
// extrakeys is all the keys in the modeenv we read from the file but don't
// understand, we keep track of this so that if we read a new modeenv with
// extra keys and need to rewrite it, we will write those new keys as well
extrakeys map[string]string
}
var modeenvKnownKeys = make(map[string]bool)
func init() {
st := reflect.TypeOf(Modeenv{})
num := st.NumField()
for i := 0; i < num; i++ {
f := st.Field(i)
if f.PkgPath != "" {
// unexported
continue
}
key := f.Tag.Get("key")
if key == "" {
panic(fmt.Sprintf("modeenv %s field has no key tag", f.Name))
}
const secondaryModifier = ",secondary"
if strings.HasSuffix(key, secondaryModifier) {
// secondary field in a group fields
// corresponding to one file key
key := key[:len(key)-len(secondaryModifier)]
if !modeenvKnownKeys[key] {
panic(fmt.Sprintf("modeenv %s field marked as secondary for not yet defined key %q", f.Name, key))
}
continue
}
if modeenvKnownKeys[key] {
panic(fmt.Sprintf("modeenv key %q repeated on %s", key, f.Name))
}
modeenvKnownKeys[key] = true
}
}
func modeenvFile(rootdir string) string {
if rootdir == "" {
rootdir = dirs.GlobalRootDir
}
return dirs.SnapModeenvFileUnder(rootdir)
}
// ReadModeenv attempts to read the modeenv file at
// <rootdir>/var/lib/snapd/modeenv.
func ReadModeenv(rootdir string) (*Modeenv, error) {
if snapdenv.Preseeding() {
return nil, fmt.Errorf("internal error: modeenv cannot be read during preseeding")
}
modeenvPath := modeenvFile(rootdir)
cfg := goconfigparser.New()
cfg.AllowNoSectionHeader = true
if err := cfg.ReadFile(modeenvPath); err != nil {
return nil, err
}
// TODO:UC20: should we check these errors and try to do something?
m := Modeenv{
read: true,
originRootdir: rootdir,
extrakeys: make(map[string]string),
}
unmarshalModeenvValueFromCfg(cfg, "recovery_system", &m.RecoverySystem)
unmarshalModeenvValueFromCfg(cfg, "current_recovery_systems", &m.CurrentRecoverySystems)
unmarshalModeenvValueFromCfg(cfg, "good_recovery_systems", &m.GoodRecoverySystems)
unmarshalModeenvValueFromCfg(cfg, "boot_flags", &m.BootFlags)
unmarshalModeenvValueFromCfg(cfg, "mode", &m.Mode)
if m.Mode == "" {
return nil, fmt.Errorf("internal error: mode is unset")
}
unmarshalModeenvValueFromCfg(cfg, "base", &m.Base)
unmarshalModeenvValueFromCfg(cfg, "base_status", &m.BaseStatus)
unmarshalModeenvValueFromCfg(cfg, "gadget", &m.Gadget)
unmarshalModeenvValueFromCfg(cfg, "try_base", &m.TryBase)
// current_kernels is a comma-delimited list in a string
unmarshalModeenvValueFromCfg(cfg, "current_kernels", &m.CurrentKernels)
var bm modeenvModel
unmarshalModeenvValueFromCfg(cfg, "model", &bm)
m.BrandID = bm.brandID
m.Model = bm.model
unmarshalModeenvValueFromCfg(cfg, "classic", &m.Classic)
// expect the caller to validate the grade
unmarshalModeenvValueFromCfg(cfg, "grade", &m.Grade)
unmarshalModeenvValueFromCfg(cfg, "model_sign_key_id", &m.ModelSignKeyID)
var tryBm modeenvModel
unmarshalModeenvValueFromCfg(cfg, "try_model", &tryBm)
m.TryBrandID = tryBm.brandID
m.TryModel = tryBm.model
unmarshalModeenvValueFromCfg(cfg, "try_grade", &m.TryGrade)
unmarshalModeenvValueFromCfg(cfg, "try_model_sign_key_id", &m.TryModelSignKeyID)
unmarshalModeenvValueFromCfg(cfg, "current_trusted_boot_assets", &m.CurrentTrustedBootAssets)
unmarshalModeenvValueFromCfg(cfg, "current_trusted_recovery_boot_assets", &m.CurrentTrustedRecoveryBootAssets)
unmarshalModeenvValueFromCfg(cfg, "current_kernel_command_lines", &m.CurrentKernelCommandLines)
// save all the rest of the keys we don't understand
keys, err := cfg.Options("")
if err != nil {
return nil, err
}
for _, k := range keys {
if !modeenvKnownKeys[k] {
val, err := cfg.Get("", k)
if err != nil {
return nil, err
}
m.extrakeys[k] = val
}
}
return &m, nil
}
// deepEqual compares two modeenvs to ensure they are textually the same. It
// does not consider whether the modeenvs were read from disk or created purely
// in memory. It also does not sort or otherwise mutate any sub-objects,
// performing simple strict verification of sub-objects.
func (m *Modeenv) deepEqual(m2 *Modeenv) bool {
b, err := json.Marshal(m)
if err != nil {
return false
}
b2, err := json.Marshal(m2)
if err != nil {
return false
}
return bytes.Equal(b, b2)
}
// Copy will make a deep copy of a Modeenv.
func (m *Modeenv) Copy() (*Modeenv, error) {
// to avoid hard-coding all fields here and manually copying everything, we
// take the easy way out and serialize to json then re-import into a
// empty Modeenv
b, err := json.Marshal(m)
if err != nil {
return nil, err
}
m2 := &Modeenv{}
err = json.Unmarshal(b, m2)
if err != nil {
return nil, err
}
// manually copy the unexported fields as they won't be in the JSON
m2.read = m.read
m2.originRootdir = m.originRootdir
return m2, nil
}
// Write outputs the modeenv to the file where it was read, only valid on
// modeenv that has been read.
func (m *Modeenv) Write() error {
if m.read {
return m.WriteTo(m.originRootdir)
}
return fmt.Errorf("internal error: must use WriteTo with modeenv not read from disk")
}
// WriteTo outputs the modeenv to the file at <rootdir>/var/lib/snapd/modeenv.
func (m *Modeenv) WriteTo(rootdir string) error {
if snapdenv.Preseeding() {
return fmt.Errorf("internal error: modeenv cannot be written during preseeding")
}
modeenvPath := modeenvFile(rootdir)
if err := os.MkdirAll(filepath.Dir(modeenvPath), 0755); err != nil {
return err
}
buf := bytes.NewBuffer(nil)
if m.Mode == "" {
return fmt.Errorf("internal error: mode is unset")
}
marshalModeenvEntryTo(buf, "mode", m.Mode)
marshalModeenvEntryTo(buf, "recovery_system", m.RecoverySystem)
marshalModeenvEntryTo(buf, "current_recovery_systems", m.CurrentRecoverySystems)
marshalModeenvEntryTo(buf, "good_recovery_systems", m.GoodRecoverySystems)
marshalModeenvEntryTo(buf, "boot_flags", m.BootFlags)
marshalModeenvEntryTo(buf, "base", m.Base)
marshalModeenvEntryTo(buf, "try_base", m.TryBase)
marshalModeenvEntryTo(buf, "base_status", m.BaseStatus)
marshalModeenvEntryTo(buf, "gadget", m.Gadget)
marshalModeenvEntryTo(buf, "current_kernels", strings.Join(m.CurrentKernels, ","))
if m.Model != "" || m.Grade != "" {
if m.Model == "" {
return fmt.Errorf("internal error: model is unset")
}
if m.BrandID == "" {
return fmt.Errorf("internal error: brand is unset")
}
marshalModeenvEntryTo(buf, "model", &modeenvModel{brandID: m.BrandID, model: m.Model})
}
if m.Classic {
marshalModeenvEntryTo(buf, "classic", true)
}
// TODO: complain when grade or key are unset
marshalModeenvEntryTo(buf, "grade", m.Grade)
marshalModeenvEntryTo(buf, "model_sign_key_id", m.ModelSignKeyID)
if m.TryModel != "" || m.TryGrade != "" {
if m.TryModel == "" {
return fmt.Errorf("internal error: try model is unset")
}
if m.TryBrandID == "" {
return fmt.Errorf("internal error: try brand is unset")
}
marshalModeenvEntryTo(buf, "try_model", &modeenvModel{brandID: m.TryBrandID, model: m.TryModel})
}
marshalModeenvEntryTo(buf, "try_grade", m.TryGrade)
marshalModeenvEntryTo(buf, "try_model_sign_key_id", m.TryModelSignKeyID)
marshalModeenvEntryTo(buf, "current_trusted_boot_assets", m.CurrentTrustedBootAssets)
marshalModeenvEntryTo(buf, "current_trusted_recovery_boot_assets", m.CurrentTrustedRecoveryBootAssets)
marshalModeenvEntryTo(buf, "current_kernel_command_lines", m.CurrentKernelCommandLines)
// write all the extra keys at the end
// sort them for test convenience
extraKeys := make([]string, 0, len(m.extrakeys))
for k := range m.extrakeys {
extraKeys = append(extraKeys, k)
}
sort.Strings(extraKeys)
for _, k := range extraKeys {
marshalModeenvEntryTo(buf, k, m.extrakeys[k])
}
if err := osutil.AtomicWriteFile(modeenvPath, buf.Bytes(), 0644, 0); err != nil {
return err
}
return nil
}
// modelForSealing is a helper type that implements
// github.com/snapcore/secboot.SnapModel interface.
type modelForSealing struct {
brandID string
model string
classic bool
grade asserts.ModelGrade
modelSignKeyID string
}
// verify interface match
var _ secboot.ModelForSealing = (*modelForSealing)(nil)
func (m *modelForSealing) BrandID() string { return m.brandID }
func (m *modelForSealing) SignKeyID() string { return m.modelSignKeyID }
func (m *modelForSealing) Model() string { return m.model }
func (m *modelForSealing) Classic() bool { return m.classic }
func (m *modelForSealing) Grade() asserts.ModelGrade { return m.grade }
func (m *modelForSealing) Series() string { return release.Series }
// modelUniqueID returns a unique ID which can be used as a map index of the
// provided model.
func modelUniqueID(m secboot.ModelForSealing) string {
return fmt.Sprintf("%s/%s,%s,%s", m.BrandID(), m.Model(), m.Grade(), m.SignKeyID())
}
// ModelForSealing returns a wrapper implementing
// github.com/snapcore/secboot.SnapModel interface which describes the current
// model.
func (m *Modeenv) ModelForSealing() secboot.ModelForSealing {
return &modelForSealing{
brandID: m.BrandID,
model: m.Model,
classic: m.Classic,
grade: asserts.ModelGrade(m.Grade),
modelSignKeyID: m.ModelSignKeyID,
}
}
// TryModelForSealing returns a wrapper implementing
// github.com/snapcore/secboot.SnapModel interface which describes the candidate
// or try model.
func (m *Modeenv) TryModelForSealing() secboot.ModelForSealing {
return &modelForSealing{
brandID: m.TryBrandID,
model: m.TryModel,
classic: m.Classic,
grade: asserts.ModelGrade(m.TryGrade),
modelSignKeyID: m.TryModelSignKeyID,
}
}
func (m *Modeenv) setModel(model *asserts.Model) {
m.Model = model.Model()
m.BrandID = model.BrandID()
m.Grade = string(model.Grade())
m.ModelSignKeyID = model.SignKeyID()
}
func (m *Modeenv) setTryModel(model *asserts.Model) {
m.TryModel = model.Model()
m.TryBrandID = model.BrandID()
m.TryGrade = string(model.Grade())
m.TryModelSignKeyID = model.SignKeyID()
}
func (m *Modeenv) clearTryModel() {
m.TryModel = ""
m.TryBrandID = ""
m.TryGrade = ""
m.TryModelSignKeyID = ""
}
type modeenvValueMarshaller interface {
MarshalModeenvValue() (string, error)
}
type modeenvValueUnmarshaller interface {
UnmarshalModeenvValue(value string) error
}
// marshalModeenvEntryTo marshals to out what as value for an entry
// with the given key. If what is empty this is a no-op.
func marshalModeenvEntryTo(out io.Writer, key string, what any) error {
var asString string
switch v := what.(type) {
case string:
if v == "" {
return nil
}
asString = v
case []string:
if len(v) == 0 {
return nil
}
asString = asModeenvStringList(v)
case bool:
asString = strconv.FormatBool(v)
default:
if vm, ok := what.(modeenvValueMarshaller); ok {
marshalled, err := vm.MarshalModeenvValue()
if err != nil {
return fmt.Errorf("cannot marshal value for key %q: %v", key, err)
}
asString = marshalled
} else if jm, ok := what.(json.Marshaler); ok {
marshalled, err := jm.MarshalJSON()
if err != nil {
return fmt.Errorf("cannot marshal value for key %q as JSON: %v", key, err)
}
asString = string(marshalled)
if asString == "null" {
// no need to keep nulls in the modeenv
return nil
}
} else {
return fmt.Errorf("internal error: cannot marshal unsupported type %T value %v for key %q", what, what, key)
}
}
_, err := fmt.Fprintf(out, "%s=%s\n", key, asString)
return err
}
// unmarshalModeenvValueFromCfg unmarshals the value of the entry with
// the given key to dest. If there's no such entry dest might be left
// empty.
func unmarshalModeenvValueFromCfg(cfg *goconfigparser.ConfigParser, key string, dest any) error {
if dest == nil {
return fmt.Errorf("internal error: cannot unmarshal to nil")
}
kv, _ := cfg.Get("", key)
switch v := dest.(type) {
case *string:
*v = kv
case *[]string:
*v = splitModeenvStringList(kv)
case *bool:
if kv == "" {
*v = false
return nil
}
var err error
*v, err = strconv.ParseBool(kv)
if err != nil {
return fmt.Errorf("cannot parse modeenv value %q to bool: %v", kv, err)
}
default:
if vm, ok := v.(modeenvValueUnmarshaller); ok {
if err := vm.UnmarshalModeenvValue(kv); err != nil {
return fmt.Errorf("cannot unmarshal modeenv value %q to %T: %v", kv, dest, err)
}
return nil
} else if jm, ok := v.(json.Unmarshaler); ok {
if len(kv) == 0 {
// leave jm empty
return nil
}
if err := jm.UnmarshalJSON([]byte(kv)); err != nil {
return fmt.Errorf("cannot unmarshal modeenv value %q as JSON to %T: %v", kv, dest, err)
}
return nil
}
return fmt.Errorf("internal error: cannot unmarshal value %q for unsupported type %T", kv, dest)
}
return nil
}
func splitModeenvStringList(v string) []string {
if v == "" {
return nil
}
split := strings.Split(v, ",")
// drop empty strings
nonEmpty := make([]string, 0, len(split))
for _, one := range split {
if one != "" {
nonEmpty = append(nonEmpty, one)
}
}
if len(nonEmpty) == 0 {
return nil
}
return nonEmpty
}
func asModeenvStringList(v []string) string {
return strings.Join(v, ",")
}
type modeenvModel struct {
brandID, model string
}
func (m *modeenvModel) MarshalModeenvValue() (string, error) {
return fmt.Sprintf("%s/%s", m.brandID, m.model), nil
}
func (m *modeenvModel) UnmarshalModeenvValue(brandSlashModel string) error {
if bsmSplit := strings.SplitN(brandSlashModel, "/", 2); len(bsmSplit) == 2 {
if bsmSplit[0] != "" && bsmSplit[1] != "" {
m.brandID = bsmSplit[0]
m.model = bsmSplit[1]
}
}
return nil
}
func (b bootAssetsMap) MarshalJSON() ([]byte, error) {
asMap := map[string][]string(b)
return json.Marshal(asMap)
}
func (b *bootAssetsMap) UnmarshalJSON(data []byte) error {
var asMap map[string][]string
if err := json.Unmarshal(data, &asMap); err != nil {
return err
}
*b = bootAssetsMap(asMap)
return nil
}
func (s bootCommandLines) MarshalJSON() ([]byte, error) {
return json.Marshal([]string(s))
}
func (s *bootCommandLines) UnmarshalJSON(data []byte) error {
var asList []string
if err := json.Unmarshal(data, &asList); err != nil {
return err
}
*s = bootCommandLines(asList)
return nil
}
// MaybeReadModeenv uses ReadModeenv() with the default root directory, but
// ignores ENOENT errors and returns a nil, but no error.
func MaybeReadModeenv() (*Modeenv, error) {
modeenv, err := ReadModeenv("")
if err != nil && !os.IsNotExist(err) {
return nil, fmt.Errorf("cannot read modeenv: %v", err)
}
return modeenv, nil
}
// SystemMode returns the current mode of the system and a flag indicating
// whether the mode is explicitly set through modeenv. When the mode is not set
// epxlicitly through modeenv, caller provided fallback is returned.
func SystemMode(fallback string) (mode string, explicit bool, err error) {
modeenv, err := MaybeReadModeenv()
if err != nil {
return "", false, err
}
if modeenv != nil {
// we have the modeenv, making the system mode explicit
return modeenv.Mode, true, nil
}
// lacking the modeenv, system is implicitly in "run" mode
return fallback, false, nil
}
|