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 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2014-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 image
import (
"errors"
"fmt"
"io"
"os"
"path/filepath"
"sort"
"strings"
"syscall"
"time"
"github.com/snapcore/snapd/arch"
"github.com/snapcore/snapd/asserts"
"github.com/snapcore/snapd/asserts/snapasserts"
"github.com/snapcore/snapd/asserts/sysdb"
"github.com/snapcore/snapd/boot"
"github.com/snapcore/snapd/dirs"
"github.com/snapcore/snapd/gadget"
"github.com/snapcore/snapd/store/tooling"
"github.com/snapcore/snapd/strutil"
// to set sysconfig.ApplyFilesystemOnlyDefaults hook
"github.com/snapcore/snapd/image/preseed"
"github.com/snapcore/snapd/osutil"
_ "github.com/snapcore/snapd/overlord/configstate/configcore"
"github.com/snapcore/snapd/release"
"github.com/snapcore/snapd/seed/seedwriter"
"github.com/snapcore/snapd/snap"
"github.com/snapcore/snapd/snap/naming"
"github.com/snapcore/snapd/snap/snapfile"
"github.com/snapcore/snapd/snap/squashfs"
"github.com/snapcore/snapd/sysconfig"
)
var (
Stdout io.Writer = os.Stdout
Stderr io.Writer = os.Stderr
preseedCore20 = preseed.Core20
)
func (custo *Customizations) validate(model *asserts.Model) error {
hasModes := model.Grade() != asserts.ModelGradeUnset
var unsupported []string
unsupportedConsoleConfDisable := func() {
if custo.ConsoleConf == "disabled" {
unsupported = append(unsupported, "console-conf disable")
}
}
unsupportedBootFlags := func() {
if len(custo.BootFlags) != 0 {
unsupported = append(unsupported, fmt.Sprintf("boot flags (%s)", strings.Join(custo.BootFlags, " ")))
}
}
kind := "UC16/18"
switch {
case hasModes:
kind = "UC20+"
// TODO:UC20: consider supporting these with grade dangerous?
unsupportedConsoleConfDisable()
if custo.CloudInitUserData != "" {
unsupported = append(unsupported, "cloud-init user-data")
}
case model.Classic():
kind = "classic"
unsupportedConsoleConfDisable()
unsupportedBootFlags()
default:
// UC16/18
unsupportedBootFlags()
}
if len(unsupported) != 0 {
return fmt.Errorf("cannot support with %s model requested customizations: %s", kind, strings.Join(unsupported, ", "))
}
return nil
}
// classicHasSnaps returns whether the model or options specify any snaps for the classic case
func classicHasSnaps(model *asserts.Model, opts *Options) bool {
return model.Gadget() != "" || len(model.RequiredNoEssentialSnaps()) != 0 || len(opts.Snaps) != 0
}
var newToolingStoreFromModel = tooling.NewToolingStoreFromModel
func Prepare(opts *Options) error {
var model *asserts.Model
var err error
if opts.Classic && opts.ModelFile == "" {
// ubuntu-image has a use case for preseeding snaps in an arbitrary rootfs
// using its --filesystem flag. This rootfs may or may not already have
// snaps preseeded in it. In the case where the provided rootfs has no
// snaps seeded image.Prepare will be called with no model assertion,
// and we then use the GenericClassicModel.
model = sysdb.GenericClassicModel()
} else {
model, err = decodeModelAssertion(opts)
if err != nil {
return err
}
}
if model.Architecture() != "" && opts.Architecture != "" && model.Architecture() != opts.Architecture {
return fmt.Errorf("cannot override model architecture: %s", model.Architecture())
}
if !opts.Classic {
if model.Classic() {
return fmt.Errorf("--classic mode is required to prepare the image for a classic model")
}
} else {
if !model.Classic() {
return fmt.Errorf("cannot prepare the image for a core model with --classic mode specified")
}
if model.Architecture() == "" && classicHasSnaps(model, opts) && opts.Architecture == "" {
return fmt.Errorf("cannot have snaps for a classic image without an architecture in the model or from --arch")
}
}
tsto, err := newToolingStoreFromModel(model, opts.Architecture)
if err != nil {
return err
}
tsto.Stdout = Stdout
// FIXME: limitation until we can pass series parametrized much more
if model.Series() != release.Series {
return fmt.Errorf("model with series %q != %q unsupported", model.Series(), release.Series)
}
if err := opts.Customizations.validate(model); err != nil {
return err
}
for _, assertionsFilename := range opts.ExtraAssertionsFiles {
// Function reads the assertions from the file, decodes them and rejects
// assertion types that are not allowed
assertionsFile, err := os.Open(assertionsFilename)
if err != nil {
return fmt.Errorf("cannot read extra assertion: %s", err)
}
defer assertionsFile.Close()
extraAssertions, err := decodeExtraAssertions(assertionsFile, model.Grade())
if err != nil {
return err
}
opts.ExtraAssertions = append(opts.ExtraAssertions, extraAssertions...)
}
if err := setupSeed(tsto, model, opts); err != nil {
return err
}
if opts.Preseed {
// TODO: support UC22
if model.Classic() {
return fmt.Errorf("cannot preseed the image for a classic model")
}
coreVersion, err := naming.CoreVersion(model.Base())
if err != nil {
return fmt.Errorf("cannot preseed the image for %s: %v", model.Base(), err)
}
if coreVersion < 20 {
return fmt.Errorf("cannot preseed the image for older base than core20")
}
coreOpts := &preseed.CoreOptions{
PrepareImageDir: opts.PrepareDir,
PreseedSignKey: opts.PreseedSignKey,
AppArmorKernelFeaturesDir: opts.AppArmorKernelFeaturesDir,
SysfsOverlay: opts.SysfsOverlay,
}
return preseedCore20(coreOpts)
}
return nil
}
// these are postponed, not implemented or abandoned, not finalized,
// don't let them sneak in into a used model assertion
var reserved = []string{"core", "os", "class", "allowed-modes"}
func decodeModelAssertion(opts *Options) (*asserts.Model, error) {
fn := opts.ModelFile
rawAssert, err := os.ReadFile(fn)
if err != nil {
return nil, fmt.Errorf("cannot read model assertion: %s", err)
}
ass, err := asserts.Decode(rawAssert)
if err != nil {
return nil, fmt.Errorf("cannot decode model assertion %q: %s", fn, err)
}
modela, ok := ass.(*asserts.Model)
if !ok {
return nil, fmt.Errorf("assertion in %q is not a model assertion", fn)
}
for _, rsvd := range reserved {
if modela.Header(rsvd) != nil {
return nil, fmt.Errorf("model assertion cannot have reserved/unsupported header %q set", rsvd)
}
}
return modela, nil
}
func unpackSnap(gadgetFname, gadgetUnpackDir string) error {
// FIXME: jumping through layers here, we need to make
// unpack part of the container interface (again)
snap := squashfs.New(gadgetFname)
return snap.Unpack("*", gadgetUnpackDir)
}
func installCloudConfig(rootDir, gadgetDir string) error {
cloudConfig := filepath.Join(gadgetDir, "cloud.conf")
if !osutil.FileExists(cloudConfig) {
return nil
}
cloudDir := filepath.Join(rootDir, "/etc/cloud")
if err := os.MkdirAll(cloudDir, 0755); err != nil {
return err
}
dst := filepath.Join(cloudDir, "cloud.cfg")
return osutil.CopyFile(cloudConfig, dst, osutil.CopyFlagOverwrite)
}
func customizeImage(rootDir, defaultsDir string, custo *Customizations) error {
// customize with cloud-init user-data
if custo.CloudInitUserData != "" {
// See
// https://cloudinit.readthedocs.io/en/latest/topics/dir_layout.html
// https://cloudinit.readthedocs.io/en/latest/topics/datasources/nocloud.html
varCloudDir := filepath.Join(rootDir, "/var/lib/cloud/seed/nocloud-net")
if err := os.MkdirAll(varCloudDir, 0755); err != nil {
return err
}
if err := os.WriteFile(filepath.Join(varCloudDir, "meta-data"), []byte("instance-id: nocloud-static\n"), 0644); err != nil {
return err
}
dst := filepath.Join(varCloudDir, "user-data")
if err := osutil.CopyFile(custo.CloudInitUserData, dst, osutil.CopyFlagOverwrite); err != nil {
return err
}
}
if custo.ConsoleConf == "disabled" {
// TODO: maybe share code with configcore somehow
consoleConfDisabled := filepath.Join(defaultsDir, "/var/lib/console-conf/complete")
if err := os.MkdirAll(filepath.Dir(consoleConfDisabled), 0755); err != nil {
return err
}
if err := os.WriteFile(consoleConfDisabled, []byte("console-conf has been disabled by image customization\n"), 0644); err != nil {
return err
}
}
return nil
}
var trusted = sysdb.Trusted()
func MockTrusted(mockTrusted []asserts.Assertion) (restore func()) {
prevTrusted := trusted
trusted = mockTrusted
return func() {
trusted = prevTrusted
}
}
func makeLabel(now time.Time) string {
return now.UTC().Format("20060102")
}
type imageSeeder struct {
model *asserts.Model
tsto *tooling.ToolingStore
classic bool
prepareDir string
wideCohortKey string
customizations *Customizations
architecture string
allowSnapdKernelMismatch bool
hasModes bool
rootDir string
bootRootDir string
seedDir string
label string
db *asserts.Database
w *seedwriter.Writer
f seedwriter.SeedAssertionFetcher
}
func newImageSeeder(tsto *tooling.ToolingStore, model *asserts.Model, opts *Options) (*imageSeeder, error) {
if model.Classic() != opts.Classic {
return nil, fmt.Errorf("internal error: classic model but classic mode not set")
}
// Determine image seed paths, which can vary based on the type of image
// we are generating.
s := &imageSeeder{
classic: opts.Classic,
prepareDir: opts.PrepareDir,
wideCohortKey: opts.WideCohortKey,
// keep a pointer to the customization object in opts as the Validation
// member might be defaulted if not set.
customizations: &opts.Customizations,
architecture: determineImageArchitecture(model, opts),
allowSnapdKernelMismatch: opts.AllowSnapdKernelMismatch,
hasModes: model.Grade() != asserts.ModelGradeUnset,
model: model,
tsto: tsto,
}
if os.Getenv("SNAPD_ALLOW_SNAPD_KERNEL_MISMATCH") == "true" {
s.allowSnapdKernelMismatch = true
}
if !s.hasModes {
if err := s.setModelessDirs(); err != nil {
return nil, err
}
} else {
if err := s.setModesDirs(); err != nil {
return nil, err
}
}
// create directory for later unpacking the gadget in
if !s.classic {
gadgetUnpackDir := filepath.Join(s.prepareDir, "gadget")
kernelUnpackDir := filepath.Join(s.prepareDir, "kernel")
for _, unpackDir := range []string{gadgetUnpackDir, kernelUnpackDir} {
if err := os.MkdirAll(unpackDir, 0755); err != nil {
return nil, fmt.Errorf("cannot create unpack dir %q: %s", unpackDir, err)
}
}
}
wOpts := &seedwriter.Options{
SeedDir: s.seedDir,
Label: s.label,
DefaultChannel: opts.Channel,
Manifest: opts.SeedManifest,
ManifestPath: opts.SeedManifestPath,
TestSkipCopyUnverifiedModel: osutil.GetenvBool("UBUNTU_IMAGE_SKIP_COPY_UNVERIFIED_MODEL"),
ExtraAssertions: opts.ExtraAssertions,
}
w, err := seedwriter.New(model, wOpts)
if err != nil {
return nil, err
}
s.w = w
return s, nil
}
func determineImageArchitecture(model *asserts.Model, opts *Options) string {
// let the architecture supplied in opts take precedence
if opts.Architecture != "" {
// in theory we could check that this does not differ from the one
// specified in the model, but this check is done somewhere else.
return opts.Architecture
} else if model.Architecture() != "" {
return model.Architecture()
} else {
// if none had anything set, use the host architecture
return arch.DpkgArchitecture()
}
}
func (s *imageSeeder) setModelessDirs() error {
if s.classic {
// Classic, PrepareDir is the root dir itself
s.rootDir = s.prepareDir
} else {
// Core 16/18, writing for the writeable partition
s.rootDir = filepath.Join(s.prepareDir, "image")
s.bootRootDir = s.rootDir
}
s.seedDir = dirs.SnapSeedDirUnder(s.rootDir)
// validity check target
if osutil.FileExists(dirs.SnapStateFileUnder(s.rootDir)) {
return fmt.Errorf("cannot prepare seed over existing system or an already booted image, detected state file %s", dirs.SnapStateFileUnder(s.rootDir))
}
if snaps, _ := filepath.Glob(filepath.Join(dirs.SnapBlobDirUnder(s.rootDir), "*.snap")); len(snaps) > 0 {
return fmt.Errorf("expected empty snap dir in rootdir, got: %v", snaps)
}
return nil
}
func (s *imageSeeder) setModesDirs() error {
// Core 20, writing for the system-seed partition
s.seedDir = filepath.Join(s.prepareDir, "system-seed")
s.label = makeLabel(time.Now())
s.bootRootDir = s.seedDir
// validity check target
if systems, _ := filepath.Glob(filepath.Join(s.seedDir, "systems", "*")); len(systems) > 0 {
return fmt.Errorf("expected empty systems dir in system-seed, got: %v", systems)
}
return nil
}
func (s *imageSeeder) start(optSnaps []*seedwriter.OptionsSnap) error {
if err := s.w.SetOptionsSnaps(optSnaps); err != nil {
return err
}
// TODO: developer database in home or use snapd (but need
// a bit more API there, potential issues when crossing stores/series)
db, err := asserts.OpenDatabase(&asserts.DatabaseConfig{
Backstore: asserts.NewMemoryBackstore(),
Trusted: trusted,
})
if err != nil {
return err
}
newFetcher := func(save func(asserts.Assertion) error) asserts.Fetcher {
return s.tsto.AssertionSequenceFormingFetcher(db, save)
}
s.db = db
s.f = seedwriter.MakeSeedAssertionFetcher(newFetcher)
return s.w.Start(db, s.f)
}
func (s *imageSeeder) snapSupportsImageArch(sn *seedwriter.SeedSnap) bool {
for _, a := range sn.Info.Architectures {
if a == "all" || a == s.architecture {
return true
}
}
return false
}
func (s *imageSeeder) validateSnapArchs(snaps []*seedwriter.SeedSnap) error {
for _, sn := range snaps {
if !s.snapSupportsImageArch(sn) {
return fmt.Errorf("snap %q supported architectures (%s) are incompatible with the model architecture (%s)",
sn.Info.SnapName(), strings.Join(sn.Info.Architectures, ", "), s.architecture)
}
}
return nil
}
type localSnapRefs map[*seedwriter.SeedSnap][]*asserts.Ref
func (s *imageSeeder) deriveInfoForLocalSnaps(localCompsPaths []string, f seedwriter.SeedAssertionFetcher, db *asserts.Database) (localSnapRefs, error) {
localSnaps, err := s.w.LocalSnaps()
if err != nil {
return nil, err
}
cinfos := make(map[string]*snap.ComponentInfo, len(localCompsPaths))
for _, path := range localCompsPaths {
ci, err := readComponentInfoFromCont(path)
if err != nil {
return nil, err
}
cinfos[path] = ci
}
snaps := make(localSnapRefs)
for _, sn := range localSnaps {
assertedSnap := true
si, aRefs, err := seedwriter.DeriveSideInfo(sn.Path, s.model, f, db)
if err != nil {
if !errors.Is(err, &asserts.NotFoundError{}) {
return nil, err
}
assertedSnap = false
}
snapFile, err := snapfile.Open(sn.Path)
if err != nil {
return nil, err
}
info, err := snap.ReadInfoFromSnapFile(snapFile, si)
if err != nil {
return nil, err
}
// Assign components now that we know the snap name
seedComps := map[string]*seedwriter.SeedComponent{}
for path, ci := range cinfos {
if ci.Component.SnapName != info.SnapName() {
continue
}
if assertedSnap {
// Components for an asserted snap should have
// assertions too, error out otherwise
csi, crefs, err := seedwriter.DeriveComponentSideInfo(
path, ci, info, s.model, f, db)
if err != nil {
return nil, err
}
ci.ComponentSideInfo = *csi
aRefs = append(aRefs, crefs...)
}
seedComps[ci.Component.ComponentName] = &seedwriter.SeedComponent{
ComponentRef: naming.NewComponentRef(info.SnapName(),
ci.Component.ComponentName),
Path: path,
Info: ci,
}
delete(cinfos, path)
}
// For local snaps, the component information is set inside
// w.SetInfo by looking at the local components information set
// in the call to w.SetOptionsSnaps.
if err := s.w.SetInfo(sn, info, seedComps); err != nil {
return nil, err
}
snaps[sn] = aRefs
}
// Check if there are local components that did not belong to one
// of the local snaps
errMsg := ""
for path := range cinfos {
errMsg += fmt.Sprintf("\n%q local component does not have a matching local snap", path)
}
if errMsg != "" {
return nil, fmt.Errorf("missing local snaps:%s", errMsg)
}
// derive info first before verifying the arch
if err := s.validateSnapArchs(localSnaps); err != nil {
return nil, err
}
return snaps, s.w.InfoDerived()
}
func (s *imageSeeder) validationSetKeysAndRevisionForSnap(snapName string) ([]snapasserts.ValidationSetKey, snap.Revision, error) {
vsas, err := s.db.FindMany(asserts.ValidationSetType, nil)
if err != nil && !errors.Is(err, &asserts.NotFoundError{}) {
return nil, snap.Revision{}, err
}
allVss := snapasserts.NewValidationSets()
for _, a := range vsas {
if err := allVss.Add(a.(*asserts.ValidationSet)); err != nil {
return nil, snap.Revision{}, err
}
}
// Just for a good measure, perform a conflict check once we have the
// list of all validation-sets for the image seed.
if err := allVss.Conflict(); err != nil {
return nil, snap.Revision{}, err
}
pres, err := allVss.Presence(naming.Snap(snapName))
if err != nil {
return nil, snap.Revision{}, err
}
// TODO: figure out if this is needed
if pres.Presence == asserts.PresenceInvalid {
return nil, snap.Revision{}, fmt.Errorf("snap %q is invalid in validation sets: %v", snapName, pres.Sets.CommaSeparated())
}
if pres.Constrained() {
return pres.Sets, pres.Revision, nil
}
return nil, s.w.Manifest().AllowedSnapRevision(snapName), nil
}
func (s *imageSeeder) downloadSnaps(snapsToDownload []*seedwriter.SeedSnap, curSnaps []*tooling.CurrentSnap) (downloadedSnaps map[string]*tooling.DownloadedSnap, err error) {
byName := make(map[string]*seedwriter.SeedSnap, len(snapsToDownload))
revisions := make(map[string]snap.Revision)
beforeDownload := func(info *snap.Info, cinfos map[string]*snap.ComponentInfo) (string, map[string]string, error) {
sn := byName[info.SnapName()]
if sn == nil {
return "", nil, fmt.Errorf("internal error: downloading unexpected snap %q", info.SnapName())
}
rev := revisions[info.SnapName()]
if rev.Unset() {
rev = info.Revision
}
seedComps := make(map[string]*seedwriter.SeedComponent, len(cinfos))
for _, ci := range cinfos {
// No path as these are downloaded components
seedComps[ci.Component.ComponentName] = &seedwriter.SeedComponent{
ComponentRef: ci.Component,
Path: "",
Info: ci,
}
}
fmt.Fprintf(Stdout, "Fetching %s (%s)\n", sn.SnapName(), rev)
if err := s.w.SetInfo(sn, info, seedComps); err != nil {
return "", nil, err
}
if err := s.validateSnapArchs([]*seedwriter.SeedSnap{sn}); err != nil {
return "", nil, err
}
compPaths := make(map[string]string, len(cinfos))
for _, comp := range sn.Components {
compPaths[comp.ComponentName] = comp.Path
}
return sn.Path, compPaths, nil
}
snapToDownloadOptions := make([]tooling.SnapToDownload, len(snapsToDownload))
for i, sn := range snapsToDownload {
vss, rev, err := s.validationSetKeysAndRevisionForSnap(sn.SnapName())
if err != nil {
return nil, err
}
var channel string
switch {
case !rev.Unset():
// if we're setting a revision from a validation set, we don't want
// to send a channel, since we don't know if that revision is in
// that channel
channel = ""
case sn.Channel == "":
// otherwise, we want to make sure to set a default channel if
// possible. this case shouldn't ever really happen, since SeedSnaps
// should have a channel set
channel = "stable"
default:
channel = sn.Channel
}
byName[sn.SnapName()] = sn
revisions[sn.SnapName()] = rev
snapToDownloadOptions[i].Snap = sn
snapToDownloadOptions[i].Channel = channel
snapToDownloadOptions[i].Revision = rev
snapToDownloadOptions[i].CohortKey = s.wideCohortKey
snapToDownloadOptions[i].ValidationSets = vss
// Components
compsToDownload := make([]string, len(sn.Components))
for i, comp := range sn.Components {
compsToDownload[i] = comp.ComponentRef.ComponentName
}
snapToDownloadOptions[i].CompsToDownload = compsToDownload
}
// sort the curSnaps slice for test consistency
sort.Slice(curSnaps, func(i, j int) bool {
return curSnaps[i].SnapName < curSnaps[j].SnapName
})
downloadedSnaps, err = s.tsto.DownloadMany(snapToDownloadOptions, curSnaps, tooling.DownloadManyOptions{
BeforeDownloadFunc: beforeDownload,
EnforceValidation: s.customizations.Validation == "enforce",
})
if err != nil {
return nil, err
}
return downloadedSnaps, nil
}
func localSnapsWithID(snaps localSnapRefs) []*tooling.CurrentSnap {
var localSnaps []*tooling.CurrentSnap
for sn := range snaps {
if sn.Info.ID() == "" {
continue
}
localSnaps = append(localSnaps, &tooling.CurrentSnap{
SnapName: sn.Info.SnapName(),
SnapID: sn.Info.ID(),
Revision: sn.Info.Revision,
Epoch: sn.Info.Epoch,
})
}
return localSnaps
}
func (s *imageSeeder) downloadAllSnaps(localSnaps localSnapRefs, fetchAsserts seedwriter.AssertsFetchFunc) error {
curSnaps := localSnapsWithID(localSnaps)
for {
toDownload, err := s.w.SnapsToDownload()
if err != nil {
return err
}
downloadedSnaps, err := s.downloadSnaps(toDownload, curSnaps)
if err != nil {
return err
}
for _, sn := range toDownload {
dlsn := downloadedSnaps[sn.SnapName()]
if err := s.w.SetRedirectChannel(sn, dlsn.RedirectChannel); err != nil {
return err
}
curSnaps = append(curSnaps, &tooling.CurrentSnap{
SnapName: sn.Info.SnapName(),
SnapID: sn.Info.ID(),
Revision: sn.Info.Revision,
Epoch: sn.Info.Epoch,
Channel: sn.Channel,
})
}
complete, err := s.w.Downloaded(fetchAsserts)
if err != nil {
return err
}
if complete {
break
}
}
return nil
}
func (s *imageSeeder) finishSeedClassic() error {
var fpath string
if s.hasModes {
fpath = filepath.Join(s.seedDir, "systems")
} else {
fpath = filepath.Join(s.seedDir, "seed.yaml")
}
// warn about ownership if not root:root
fi, err := os.Stat(fpath)
if err != nil {
return fmt.Errorf("cannot stat %q: %s", fpath, err)
}
if st, ok := fi.Sys().(*syscall.Stat_t); ok {
if st.Uid != 0 || st.Gid != 0 {
fmt.Fprintf(Stderr, "WARNING: ensure that the contents under %s are owned by root:root in the (final) image\n", s.seedDir)
}
}
// done already
return nil
}
func (s *imageSeeder) finishSeedCore() error {
gadgetUnpackDir := filepath.Join(s.prepareDir, "gadget")
kernelUnpackDir := filepath.Join(s.prepareDir, "kernel")
bootSnaps, err := s.w.BootSnaps()
if err != nil {
return err
}
bootWith := &boot.BootableSet{
UnpackedGadgetDir: gadgetUnpackDir,
Recovery: s.hasModes,
}
if s.label != "" {
bootWith.RecoverySystemDir = filepath.Join("/systems/", s.label)
bootWith.RecoverySystemLabel = s.label
}
// find the snap.Info/path for kernel/os/base/gadget so
// that boot.MakeBootable can DTRT
kernelFname := ""
for _, sn := range bootSnaps {
switch sn.Info.Type() {
case snap.TypeGadget:
bootWith.Gadget = sn.Info
bootWith.GadgetPath = sn.Path
case snap.TypeOS, snap.TypeBase:
bootWith.Base = sn.Info
bootWith.BasePath = sn.Path
case snap.TypeKernel:
bootWith.Kernel = sn.Info
bootWith.KernelPath = sn.Path
kernelFname = sn.Path
}
}
// unpacking the gadget for core models
if err := unpackSnap(bootWith.GadgetPath, gadgetUnpackDir); err != nil {
return err
}
if err := unpackSnap(kernelFname, kernelUnpackDir); err != nil {
return err
}
gadgetInfo, err := gadget.ReadInfoAndValidate(gadgetUnpackDir, s.model, nil)
if err != nil {
return err
}
// validate content against the kernel as well
if err := gadget.ValidateContent(gadgetInfo, gadgetUnpackDir, kernelUnpackDir); err != nil {
return err
}
// write resolved content to structure root
if err := writeResolvedContent(s.prepareDir, gadgetInfo, gadgetUnpackDir, kernelUnpackDir); err != nil {
return err
}
if err := boot.MakeBootableImage(s.model, s.bootRootDir, bootWith, s.customizations.BootFlags); err != nil {
return err
}
// early config & cloud-init config (done at install for Core 20)
if !s.hasModes {
// and the cloud-init things
if err := installCloudConfig(s.rootDir, gadgetUnpackDir); err != nil {
return err
}
defaultsDir := sysconfig.WritableDefaultsDir(s.rootDir)
defaults := gadget.SystemDefaults(gadgetInfo.Defaults)
if len(defaults) > 0 {
if err := os.MkdirAll(sysconfig.WritableDefaultsDir(s.rootDir, "/etc"), 0755); err != nil {
return err
}
if err := sysconfig.ApplyFilesystemOnlyDefaults(s.model, defaultsDir, defaults); err != nil {
return err
}
}
customizeImage(s.rootDir, defaultsDir, s.customizations)
}
return nil
}
func (s *imageSeeder) warnOnUnassertedSnaps() error {
unassertedSnaps, err := s.w.UnassertedSnaps()
if err != nil {
return err
}
if len(unassertedSnaps) > 0 {
locals := make([]string, len(unassertedSnaps))
for i, sn := range unassertedSnaps {
locals[i] = sn.SnapName()
}
fmt.Fprintf(Stderr, "WARNING: %s installed from local snaps disconnected from a store cannot be refreshed subsequently!\n", strutil.Quoted(locals))
}
return nil
}
func (s *imageSeeder) finish() error {
// Ensure that the snapd snap is compatible with the snap-bootstrap
// contained within the kernel snap.
if err := s.w.VerifySnapBootstrapCompatibility(); err != nil {
if !s.allowSnapdKernelMismatch {
// If not, error out as there is no reason to allow
// this as the resulting image will be invalid.
return err
}
fmt.Fprintf(Stderr, "WARNING: %v\n", err)
}
// print any warnings that occurred during the download phase
for _, warn := range s.w.Warnings() {
fmt.Fprintf(Stderr, "WARNING: %s\n", warn)
}
// print warnings on unasserted snaps
if err := s.warnOnUnassertedSnaps(); err != nil {
return err
}
// run validation-set checks, this is also done by store but
// we double-check for the seed.
if s.customizations.Validation != "ignore" {
if err := s.w.CheckValidationSets(); err != nil {
return err
}
}
copySnap := func(name, src, dst string) error {
fmt.Fprintf(Stdout, "Copying %q (%s)\n", src, name)
return osutil.CopyFile(src, dst, 0)
}
if err := s.w.SeedSnaps(copySnap); err != nil {
return err
}
if err := s.w.WriteMeta(); err != nil {
return err
}
// TODO: There will be classic UC20+ model based systems
// that will have a bootable ubuntu-seed partition.
// This will need to be handled here eventually too.
if s.classic {
return s.finishSeedClassic()
}
return s.finishSeedCore()
}
func readComponentInfoFromCont(path string) (*snap.ComponentInfo, error) {
compf, err := snapfile.Open(path)
if err != nil {
return nil, fmt.Errorf("cannot open container: %w", err)
}
return snap.ReadComponentInfoFromContainer(compf, nil, nil)
}
func optionSnaps(opts *Options) ([]*seedwriter.OptionsSnap, []string, error) {
optSnaps := make([]*seedwriter.OptionsSnap, 0, len(opts.Snaps))
pathToLocalComp := map[string]*snap.ComponentInfo{}
localCompsPaths := []string{}
for _, snapName := range opts.Snaps {
var optSnap seedwriter.OptionsSnap
if strings.HasSuffix(snapName, ".snap") {
// local
optSnap.Path = snapName
} else {
optSnap.Name = snapName
}
optSnap.Channel = opts.SnapChannels[snapName]
optSnaps = append(optSnaps, &optSnap)
}
for _, compOpt := range opts.Components {
if strings.HasSuffix(compOpt, ".comp") {
// We need to look inside to know the owner snap, wait until
// that can be done for all local snaps/comps
cinfo, err := readComponentInfoFromCont(compOpt)
if err != nil {
return nil, nil, err
}
// Being a map, we ensure we do not get duplicates
pathToLocalComp[compOpt] = cinfo
localCompsPaths = append(localCompsPaths, compOpt)
} else {
snapName, compName, err := naming.SplitFullComponentName(compOpt)
if err != nil {
return nil, nil, err
}
optComp := seedwriter.OptionsComponent{Name: compName}
// Add the component to the matching snap, or create
// new otherwise (that is, assume that
// --comp <snap>+<comp> implicitly pulls also the snap)
snapFound := false
for _, optSn := range optSnaps {
if optSn.Name == snapName {
optSn.Components = append(optSn.Components, optComp)
snapFound = true
break
}
}
if !snapFound {
optSnaps = append(optSnaps, &seedwriter.OptionsSnap{
Name: snapName,
Components: []seedwriter.OptionsComponent{optComp},
})
}
}
}
return optSnaps, localCompsPaths, nil
}
func selectAssertionMaxFormats(tsto *tooling.ToolingStore, model *asserts.Model, sysSn, kernSn *seedwriter.SeedSnap) error {
if sysSn == nil {
// nothing to do
return nil
}
snapf, err := snapfile.Open(sysSn.Path)
if err != nil {
return err
}
maxFormats, _, err := snap.SnapdAssertionMaxFormatsFromSnapFile(snapf)
if err != nil {
return err
}
if model.Grade() != asserts.ModelGradeUnset && kernSn != nil {
// take also kernel into account
kf, err := snapfile.Open(kernSn.Path)
if err != nil {
return err
}
kMaxFormats, _, err := snap.SnapdAssertionMaxFormatsFromSnapFile(kf)
if err != nil {
return err
}
if kMaxFormats == nil {
fmt.Fprintf(Stderr, "WARNING: the kernel for the specified UC20+ model does not carry assertion max formats information, assuming possibly incorrectly the kernel revision can use the same formats as snapd\n")
} else {
for name, maxFormat := range maxFormats {
// pick the lowest format
if kMaxFormats[name] < maxFormat {
maxFormats[name] = kMaxFormats[name]
}
}
}
}
tsto.SetAssertionMaxFormats(maxFormats)
return nil
}
var setupSeed = func(tsto *tooling.ToolingStore, model *asserts.Model, opts *Options) error {
s, err := newImageSeeder(tsto, model, opts)
if err != nil {
return err
}
snapOpts, localCompsPaths, err := optionSnaps(opts)
if err != nil {
return err
}
if err := s.start(snapOpts); err != nil {
return err
}
// We need to use seedwriter.DeriveSideInfo earlier than
// we might possibly know the system and kernel snaps to
// know the correct assertion max format to use.
// Fetch assertions tentatively into a temporary database
// and later either copy them or fetch more appropriate ones.
tmpDb := s.db.WithStackedBackstore(asserts.NewMemoryBackstore())
tmpFetcher := seedwriter.MakeSeedAssertionFetcher(func(save func(asserts.Assertion) error) asserts.Fetcher {
return tsto.AssertionFetcher(tmpDb, save)
})
localSnaps, err := s.deriveInfoForLocalSnaps(localCompsPaths, tmpFetcher, tmpDb)
if err != nil {
return err
}
if opts.Customizations.Validation == "" {
if !opts.Classic {
fmt.Fprintf(Stderr, "WARNING: proceeding to download snaps ignoring validations, this default will change in the future. For now use --validation=enforce for validations to be taken into account, pass instead --validation=ignore to preserve current behavior going forward\n")
}
opts.Customizations.Validation = "ignore"
}
assertMaxFormatsSelected := false
var assertMaxFormats map[string]int
copyOrRefetchIfFormatTooNewIntoDb := func(aRefs []*asserts.Ref) error {
// copy or re-fetch assertions to replace if the format is too
// new; as the replacing is based on the primary key previous
// cross check on provenance will still be valid or db
// consistency checks will fail
for _, aRef := range aRefs {
a, err := aRef.Resolve(tmpDb.Find)
if err != nil {
return fmt.Errorf("internal error: lost saved assertion")
}
if assertMaxFormats != nil && a.Format() > assertMaxFormats[aRef.Type.Name] {
// format was too new, re-fetch to replace
if err := s.f.Fetch(aRef); err != nil {
return err
}
} else {
// copy
if err := s.f.Save(a); err != nil {
return err
}
}
}
return nil
}
fetchAsserts := func(sn, sysSn, kernSn *seedwriter.SeedSnap) ([]*asserts.Ref, error) {
if !assertMaxFormatsSelected {
if err := selectAssertionMaxFormats(tsto, model, sysSn, kernSn); err != nil {
return nil, err
}
assertMaxFormatsSelected = true
assertMaxFormats = tsto.AssertionMaxFormats()
}
prev := len(s.f.Refs())
if aRefs, ok := localSnaps[sn]; ok {
if err := copyOrRefetchIfFormatTooNewIntoDb(aRefs); err != nil {
return nil, err
}
} else {
// fetch snap and components assertions
compPaths := make([]CompInfoPath, len(sn.Components))
for i, comp := range sn.Components {
compPaths[i] = CompInfoPath{
Info: comp.Info,
Path: comp.Path,
}
}
if _, err = FetchAndCheckSnapAssertions(sn.Path, sn.Info, compPaths, model, s.f, s.db); err != nil {
return nil, err
}
}
return s.f.Refs()[prev:], nil
}
if err := s.downloadAllSnaps(localSnaps, fetchAsserts); err != nil {
return err
}
return s.finish()
}
func decodeExtraAssertions(r io.Reader, grade asserts.ModelGrade) ([]asserts.Assertion, error) {
var extraAssertions []asserts.Assertion
dec := asserts.NewDecoder(r)
for {
a, err := dec.Decode()
if err == io.EOF {
break
}
if err != nil {
return nil, fmt.Errorf("failed to decode extra assertion: %v", err)
}
switch a.Type() {
case asserts.SnapDeclarationType, asserts.SnapRevisionType, asserts.ModelType, asserts.SerialType, asserts.ValidationSetType:
return nil, fmt.Errorf("assertion type %v is not allowed for extra assertions", a.Type().Name)
case asserts.SystemUserType:
if grade != asserts.ModelDangerous {
return nil, fmt.Errorf("seeding system-user assertions is allowed for dangerous grade model only")
}
if a.HeaderString("password") != "" {
return nil, fmt.Errorf("seeded system-user assertions must not contain a password for security reasons, please use public key authentication instead")
}
fmt.Fprintf(Stderr, "INFO: the provided system-user assertion for user %s will be imported on first boot\n", a.HeaderString("username"))
}
extraAssertions = append(extraAssertions, a)
}
return extraAssertions, nil
}
|