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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
//go:build !nosecboot
/*
* Copyright (C) 2019-2020 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 install
import (
"fmt"
"os"
"path/filepath"
"sort"
"github.com/snapcore/snapd/asserts"
"github.com/snapcore/snapd/boot"
"github.com/snapcore/snapd/dirs"
"github.com/snapcore/snapd/gadget"
"github.com/snapcore/snapd/gadget/device"
"github.com/snapcore/snapd/gadget/quantity"
"github.com/snapcore/snapd/kernel"
"github.com/snapcore/snapd/logger"
"github.com/snapcore/snapd/osutil/disks"
"github.com/snapcore/snapd/secboot"
"github.com/snapcore/snapd/secboot/keys"
"github.com/snapcore/snapd/strutil"
"github.com/snapcore/snapd/timings"
)
// diskWithSystemSeed will locate a disk that has the partition corresponding
// to a structure with SystemSeed role of the specified gadget volume and return
// the device node.
func diskWithSystemSeed(gv *gadget.Volume) (device string, err error) {
for _, gs := range gv.Structure {
// XXX: this part of the finding maybe should be a
// method on gadget.*Volume
if gs.Role == gadget.SystemSeed {
device, err = gadget.FindDeviceForStructure(&gs)
if err != nil {
return "", fmt.Errorf("cannot find device for role system-seed: %v", err)
}
disk, err := disks.DiskFromPartitionDeviceNode(device)
if err != nil {
return "", err
}
return disk.KernelDeviceNode(), nil
}
}
return "", fmt.Errorf("cannot find role system-seed in gadget")
}
func roleOrLabelOrName(role string, part *gadget.OnDiskStructure) string {
switch {
case role != "":
return role
case part.PartitionFSLabel != "":
return part.PartitionFSLabel
case part.Name != "":
return part.Name
default:
return "unknown"
}
}
func roleNeedsEncryption(role string) bool {
return role == gadget.SystemData || role == gadget.SystemSave
}
func saveStorageTraits(mod gadget.Model, allVols map[string]*gadget.Volume, optsPerVol map[string]*gadget.DiskVolumeValidationOptions, hasSavePartition bool) error {
allVolTraits, err := gadget.AllDiskVolumeDeviceTraits(allVols, optsPerVol)
if err != nil {
return err
}
// save the traits to ubuntu-data host
if err := gadget.SaveDiskVolumesDeviceTraits(dirs.SnapDeviceDirUnder(boot.InstallHostWritableDir(mod)), allVolTraits); err != nil {
return fmt.Errorf("cannot save disk to volume device traits: %v", err)
}
// and also to ubuntu-save if it exists
if hasSavePartition {
if err := gadget.SaveDiskVolumesDeviceTraits(boot.InstallHostDeviceSaveDir, allVolTraits); err != nil {
return fmt.Errorf("cannot save disk to volume device traits: %v", err)
}
}
return nil
}
func maybeEncryptPartition(
dgpair *gadget.OnDiskAndGadgetStructurePair,
encryptionType device.EncryptionType,
sectorSize quantity.Size,
perfTimings timings.Measurer,
) (fsParams *mkfsParams, diskEncryptionKey secboot.DiskUnlockKey, err error) {
diskPart := dgpair.DiskStructure
volStruct := dgpair.GadgetStructure
mustEncrypt := (encryptionType != device.EncryptionTypeNone)
// fsParams.Device is the kernel device that carries the
// filesystem, which is either the raw /dev/<partition>, or
// the mapped LUKS device if the structure is encrypted (if
// the latter, it will be filled below in this function).
fsParams = &mkfsParams{
// Filesystem and label are as specified in the gadget
Type: volStruct.Filesystem,
Label: volStruct.Label,
// Rest come from disk data
Device: diskPart.Node,
Size: diskPart.Size,
SectorSize: sectorSize,
}
if mustEncrypt && roleNeedsEncryption(volStruct.Role) {
timings.Run(perfTimings, fmt.Sprintf("make-key-set[%s]", volStruct.Role),
fmt.Sprintf("Create encryption key set for %s", volStruct.Role),
func(timings.Measurer) {
encryptionKey, errk := keys.NewEncryptionKey()
if errk != nil {
err = fmt.Errorf("cannot create encryption key: %v", errk)
return
}
diskEncryptionKey = secboot.DiskUnlockKey(encryptionKey)
})
if err != nil {
return nil, nil, err
}
logger.Noticef("encrypting partition device %v", diskPart.Node)
var dataPart encryptedDevice
switch encryptionType {
case device.EncryptionTypeLUKS, device.EncryptionTypeLUKSWithICE:
timings.Run(perfTimings, fmt.Sprintf("new-encrypted-device[%s] (%v)", volStruct.Role, encryptionType),
fmt.Sprintf("Create encryption device for %s (%s)", volStruct.Role, encryptionType),
func(timings.Measurer) {
dataPart, err = newEncryptedDeviceLUKS(diskPart.Node, encryptionType, diskEncryptionKey, volStruct.Label, volStruct.Name)
// TODO close device???
})
if err != nil {
return nil, nil, err
}
default:
return nil, nil, fmt.Errorf("internal error: unknown encryption type: %v", encryptionType)
}
// update the encrypted device node, such that subsequent steps
// operate on the right device
fsParams.Device = dataPart.Node()
logger.Noticef("encrypted filesystem device %v", fsParams.Device)
fsSectorSizeInt, err := disks.SectorSize(fsParams.Device)
if err != nil {
return nil, nil, err
}
fsParams.SectorSize = quantity.Size(fsSectorSizeInt)
}
return fsParams, diskEncryptionKey, nil
}
// TODO probably we won't need to pass partDisp when we include storage in laidOut
func createFilesystem(fsParams *mkfsParams, partDisp string, perfTimings timings.Measurer) error {
var err error
timings.Run(perfTimings, fmt.Sprintf("make-filesystem[%s]", partDisp),
fmt.Sprintf("Create filesystem for %s", fsParams.Device),
func(timings.Measurer) {
err = makeFilesystem(*fsParams)
})
if err != nil {
return fmt.Errorf("cannot make filesystem for partition %s: %v", partDisp, err)
}
return nil
}
// TODO probably we won't need to pass partDisp when we include storage in laidOut
func writePartitionContent(laidOut *gadget.LaidOutStructure, kSnapInfo *KernelSnapInfo, fsDevice string, observer gadget.ContentObserver, partDisp string, perfTimings timings.Measurer) error {
var err error
timings.Run(perfTimings, fmt.Sprintf("write-content[%s]", partDisp),
fmt.Sprintf("Write content for %s", partDisp),
func(timings.Measurer) {
err = writeFilesystemContent(laidOut, kSnapInfo, fsDevice, observer)
})
if err != nil {
return err
}
return nil
}
func installOnePartition(dgpair *gadget.OnDiskAndGadgetStructurePair,
kernelInfo *kernel.Info, kernelSnapInfo *KernelSnapInfo, gadgetRoot string,
encryptionType device.EncryptionType, sectorSize quantity.Size,
observer gadget.ContentObserver, perfTimings timings.Measurer,
) (fsDevice string, encryptionKey secboot.DiskUnlockKey, err error) {
// 1. Encrypt
vs := dgpair.GadgetStructure
role := vs.Role
fsParams, encryptionKey, err := maybeEncryptPartition(dgpair, encryptionType, sectorSize, perfTimings)
if err != nil {
return "", nil, fmt.Errorf("cannot encrypt partition %s: %v", role, err)
}
fsDevice = fsParams.Device
// 2. Create filesystem
if err := createFilesystem(fsParams, role, perfTimings); err != nil {
return "", nil, err
}
// 3. Write content
opts := &gadget.LayoutOptions{
GadgetRootDir: gadgetRoot,
KernelRootDir: kernelSnapInfo.MountPoint,
EncType: encryptionType,
}
los, err := gadget.LayoutVolumeStructure(dgpair, kernelInfo, opts)
if err != nil {
return "", nil, err
}
if err := writePartitionContent(los, kernelSnapInfo, fsDevice, observer, role, perfTimings); err != nil {
return "", nil, err
}
return fsDevice, encryptionKey, nil
}
// resolveBootDevice auto-detects the boot device
// bootDevice forces the device. Device forcing is used for (spread) testing only.
func resolveBootDevice(bootDevice string, bootVol *gadget.Volume) (string, error) {
if bootDevice != "" {
return bootDevice, nil
}
// XXX: It makes no sense to handle bootVol.DeviceAssignment here and
// force the assignment there, as current constraints dictate the boot
// device must be on the same disk as ubuntu-seed. Therefore we should
// just ensure that the two disk paths don't differ if assigned
foundDisk, err := disks.DiskFromMountPoint("/run/mnt/ubuntu-seed", nil)
if err != nil {
logger.Noticef("Warning: cannot find disk from mounted seed: %s", err)
} else {
return foundDisk.KernelDeviceNode(), nil
}
bootDevice, err = diskWithSystemSeed(bootVol)
if err != nil {
return "", fmt.Errorf("cannot find device to create partitions on: %v", err)
}
if bootVol.AssignedDevice != "" {
// disk is assigned for this volume, then it must match the one
// that is assigned to system-seed
bootDisk, err := disks.DiskFromDeviceName(bootVol.AssignedDevice)
if err != nil {
return "", err
}
logger.Noticef("volume %s has been assigned disk %s", bootVol.Name, bootDisk.KernelDeviceNode())
if bootDevice != bootDisk.KernelDeviceNode() {
return "", fmt.Errorf("volume %s was assigned disk %s, but this does not match the disk for ubuntu-seed %s",
bootVol.Name, bootDisk.KernelDeviceNode(), bootDevice)
}
}
return bootDevice, nil
}
// createPartitions creates partitions on the disk and returns the
// volume name where partitions have been created, the on disk
// structures after that, the laidout volumes, and the disk sector
// size.
func createPartitions(volumes map[string]*gadget.Volume, gadgetRoot, bootDevice string, perfTimings timings.Measurer) (
bootVolGadgetName string, created []*gadget.OnDiskAndGadgetStructurePair, bootVolSectorSize quantity.Size, err error) {
// Find boot volume
bootVol, err := gadget.FindBootVolume(volumes)
if err != nil {
return "", nil, 0, err
}
bootDevice, err = resolveBootDevice(bootDevice, bootVol)
if err != nil {
return "", nil, 0, err
}
diskVolume, err := gadget.OnDiskVolumeFromDevice(bootDevice)
if err != nil {
return "", nil, 0, fmt.Errorf("cannot read %v partitions: %v", bootDevice, err)
}
// check if the current partition table is compatible with the gadget,
// ignoring partitions added by the installer (will be removed later)
if _, err := gadget.EnsureVolumeCompatibility(bootVol, diskVolume, nil); err != nil {
return "", nil, 0, fmt.Errorf("gadget and system-boot device %v partition table not compatible: %v", bootDevice, err)
}
// remove partitions added during a previous install attempt
// TODO we probably do not need to do this, as we are re-creating the
// partitions with the same sizes as the ones removed. We even check
// that labels are the same in gadget.EnsureVolumeCompatibility, so no
// data for the partition will actually change.
deletedOffsetSize, err := removeCreatedPartitions(gadgetRoot, bootVol, diskVolume)
if err != nil {
return "", nil, 0, fmt.Errorf("cannot remove partitions from previous install: %v", err)
}
// at this point we removed any existing partition, nuke any
// of the existing sealed key files placed outside of the
// encrypted partitions (LP: #1879338)
sealedKeyFiles, _ := filepath.Glob(filepath.Join(boot.InitramfsSeedEncryptionKeyDir, "*.sealed-key"))
for _, keyFile := range sealedKeyFiles {
if err := os.Remove(keyFile); err != nil && !os.IsNotExist(err) {
return "", nil, 0, fmt.Errorf("cannot cleanup obsolete key file: %v", keyFile)
}
}
timings.Run(perfTimings, "create-partitions", "Create partitions", func(timings.Measurer) {
opts := &CreateOptions{
GadgetRootDir: gadgetRoot,
}
created, err = createMissingPartitions(diskVolume, bootVol, opts, deletedOffsetSize)
})
if err != nil {
return "", nil, 0, fmt.Errorf("cannot create the partitions: %v", err)
}
bootVolGadgetName = bootVol.Name
bootVolSectorSize = diskVolume.SectorSize
return bootVolGadgetName, created, bootVolSectorSize, nil
}
func createEncryptionParams(encTyp device.EncryptionType) gadget.StructureEncryptionParameters {
switch encTyp {
case device.EncryptionTypeLUKS, device.EncryptionTypeLUKSWithICE:
return gadget.StructureEncryptionParameters{
// TODO:ICE: remove "Method" entirely, there is only LUKS
Method: gadget.EncryptionLUKS,
}
}
logger.Noticef("internal error: unknown encryption parameter %q", encTyp)
return gadget.StructureEncryptionParameters{}
}
func onDiskStructsSortedIdx(vss map[int]*gadget.OnDiskStructure) []int {
yamlIdxSl := []int{}
for idx := range vss {
yamlIdxSl = append(yamlIdxSl, idx)
}
sort.Ints(yamlIdxSl)
return yamlIdxSl
}
// Run creates partitions, encrypts them when expected, creates
// filesystems, and finally writes content on them.
func Run(model gadget.Model, gadgetRoot string, kernelSnapInfo *KernelSnapInfo, bootDevice string, options Options, observer gadget.ContentObserver, perfTimings timings.Measurer) (*InstalledSystemSideData, error) {
logger.Noticef("installing a new system")
logger.Noticef(" gadget data from: %v", gadgetRoot)
logger.Noticef(" encryption: %v", options.EncryptionType)
if gadgetRoot == "" {
return nil, fmt.Errorf("cannot use empty gadget root directory")
}
if model.Grade() == asserts.ModelGradeUnset {
return nil, fmt.Errorf("cannot run install mode on pre-UC20 system")
}
info, err := gadget.ReadInfoAndValidate(gadgetRoot, model, nil)
if err != nil {
return nil, err
}
volumes, explicitAssignment, err := gadget.VolumesForCurrentDevice(info)
if err != nil {
return nil, err
}
if explicitAssignment {
// in case of volume assignments let us list those for
// information
logger.Noticef("volume assignments:")
for name, vol := range volumes {
logger.Noticef(" %s => %s", name, vol.AssignedDevice)
}
}
// Step 1: create partitions
kernelRoot := kernelSnapInfo.MountPoint
bootVolumeName, created, bootVolSectorSize, err :=
createPartitions(volumes, gadgetRoot, bootDevice, perfTimings)
if err != nil {
return nil, err
}
// Step 2: layout content in the created partitions
var installKeyForRole map[string]secboot.BootstrappedContainer
devicesForRoles := map[string]string{}
partsEncrypted := map[string]gadget.StructureEncryptionParameters{}
kernelInfo, err := kernel.ReadInfo(kernelRoot)
if err != nil {
return nil, err
}
hasSavePartition := false
// Note that all partitions here will have a role (see
// gadget.IsCreatableAtInstall() which defines the list). We do it in
// the order in which partitions were specified in the gadget.
for _, dgpair := range created {
diskPart := dgpair.DiskStructure
vs := dgpair.GadgetStructure
logger.Noticef("created new partition %v for structure %v (size %v) with role %s",
diskPart.Node, vs, diskPart.Size.IECString(), vs.Role)
if vs.Role == gadget.SystemSave {
hasSavePartition = true
}
// keep track of the /dev/<partition> (actual raw
// device) for each role
devicesForRoles[vs.Role] = diskPart.Node
// use the diskLayout.SectorSize here instead of lv.SectorSize, we check
// that if there is a sector-size specified in the gadget that it
// matches what is on the disk, but sometimes there may not be a sector
// size specified in the gadget.yaml, but we will always have the sector
// size from the physical disk device
// for encrypted device the filesystem device it will point to
// the mapper device otherwise it's the raw device node
fsDevice, encryptionKey, err := installOnePartition(dgpair,
kernelInfo, kernelSnapInfo, gadgetRoot, options.EncryptionType,
bootVolSectorSize, observer, perfTimings)
if err != nil {
return nil, err
}
if encryptionKey != nil {
if installKeyForRole == nil {
installKeyForRole = map[string]secboot.BootstrappedContainer{}
}
installKeyForRole[vs.Role] = secboot.CreateBootstrappedContainer(encryptionKey, diskPart.Node)
partsEncrypted[vs.Name] = createEncryptionParams(options.EncryptionType)
}
if options.Mount && vs.Label != "" && vs.HasFilesystem() {
// fs is taken from gadget, as on disk one might be displayed as
// crypto_LUKS, which is not useful for formatting.
if err := mountFilesystem(fsDevice, vs.LinuxFilesystem(), getMntPointForPart(vs), mntParamsForPartRole(vs.Role)); err != nil {
return nil, err
}
}
}
// after we have created all partitions, build up the mapping of volumes
// to disk device traits and save it to disk for later usage
optsPerVol := map[string]*gadget.DiskVolumeValidationOptions{
// this assumes that the encrypted partitions above are always only on the
// system-boot volume, this assumption may change
bootVolumeName: {
ExpectedStructureEncryption: partsEncrypted,
},
}
// save the traits to ubuntu-data host and optionally to ubuntu-save if it exists
if err := saveStorageTraits(model, volumes, optsPerVol, hasSavePartition); err != nil {
return nil, err
}
return &InstalledSystemSideData{
BootstrappedContainerForRole: installKeyForRole,
DeviceForRole: devicesForRoles,
}, nil
}
// structureFromPartDevice returns the OnDiskStructure for a partition
// node.
func structureFromPartDevice(diskVol *gadget.OnDiskVolume, partNode string) (*gadget.OnDiskStructure, error) {
for _, p := range diskVol.Structure {
if p.Node == partNode {
return &p, nil
}
}
return nil, fmt.Errorf("cannot find partition %q", partNode)
}
// laidOutStructureForDiskStructure searches for the laid out structure that
// matches a given OnDiskStructure.
func laidOutStructureForDiskStructure(laidVols map[string]*gadget.LaidOutVolume, gadgetVolName string, onDiskStruct *gadget.OnDiskStructure) (*gadget.LaidOutStructure, error) {
for _, laidVol := range laidVols {
// Check that this is the right volume
if laidVol.Name != gadgetVolName {
continue
}
for _, laidStruct := range laidVol.LaidOutStructure {
if onDiskStruct.Name == laidStruct.Name() {
return &laidStruct, nil
}
}
}
return nil, fmt.Errorf("cannot find laid out structure for %q", onDiskStruct.Name)
}
// applyOnDiskStructureToLaidOut finds the on disk structure from a
// partition node and takes the laid out information from laidOutVols
// and inserts it there.
func applyOnDiskStructureToLaidOut(onDiskVol *gadget.OnDiskVolume, partNode string, laidOutVols map[string]*gadget.LaidOutVolume, gadgetVolName string, creatingPart bool) (*gadget.LaidOutStructure, error) {
onDiskStruct, err := structureFromPartDevice(onDiskVol, partNode)
if err != nil {
return nil, fmt.Errorf("cannot find partition %q: %v", partNode, err)
}
laidOutStruct, err := laidOutStructureForDiskStructure(laidOutVols, gadgetVolName, onDiskStruct)
if err != nil {
return nil, err
}
logger.Debugf("when applying layout to disk structure: laidOutStruct.OnDiskStructure: %+v, *onDiskStruct: %+v",
laidOutStruct.OnDiskStructure, *onDiskStruct)
// Keep wanted filesystem label and type, as that is what we actually want
// on the disk.
if creatingPart {
onDiskStruct.PartitionFSType = laidOutStruct.PartitionFSType
onDiskStruct.PartitionFSLabel = laidOutStruct.PartitionFSLabel
}
// This fills LaidOutStructure, including (importantly) the ResolvedContent field
laidOutStruct.OnDiskStructure = *onDiskStruct
return laidOutStruct, nil
}
func deviceForMaybeEncryptedVolume(volStruct *gadget.VolumeStructure, encSetupData *EncryptionSetupData) string {
device := volStruct.Device
// Device might have been encrypted
if encSetupData != nil {
if encryptDataPart, ok := encSetupData.parts[volStruct.Name]; ok {
device = encryptDataPart.encryptedDevice
}
}
return device
}
// WriteContent writes gadget content to the devices specified in
// onVolumes. It returns the resolved on disk volumes.
func WriteContent(onVolumes map[string]*gadget.Volume, allLaidOutVols map[string]*gadget.LaidOutVolume, encSetupData *EncryptionSetupData, kSnapInfo *KernelSnapInfo, observer gadget.ContentObserver, perfTimings timings.Measurer) ([]*gadget.OnDiskVolume, error) {
// TODO this taking onVolumes and allLaidOutVols is odd,
// we should try to avoid this when we have partial
var onDiskVols []*gadget.OnDiskVolume
for volName, vol := range onVolumes {
onDiskVol, err := gadget.OnDiskVolumeFromGadgetVol(vol)
if err != nil {
return nil, err
}
onDiskVols = append(onDiskVols, onDiskVol)
for _, volStruct := range vol.Structure {
// TODO write mbr?
if volStruct.Role == "mbr" {
continue
}
// TODO write raw content?
if volStruct.Filesystem == "" {
continue
}
logger.Debugf("finding layout for %q", volStruct.Device)
// Obtain partition data and link with laid out information
// TODO: do we need to consider different
// sector sizes for the encrypted/unencrypted
// cases here?
const creatingPart = false
laidOut, err := applyOnDiskStructureToLaidOut(onDiskVol, volStruct.Device, allLaidOutVols, volName, creatingPart)
if err != nil {
return nil, fmt.Errorf("cannot retrieve on disk info for %q: %v", volStruct.Device, err)
}
device := deviceForMaybeEncryptedVolume(&volStruct, encSetupData)
logger.Debugf("writing content on partition %s", device)
partDisp := roleOrLabelOrName(laidOut.Role(), &laidOut.OnDiskStructure)
if err := writePartitionContent(laidOut, kSnapInfo, device, observer, partDisp, perfTimings); err != nil {
return nil, err
}
}
}
return onDiskVols, nil
}
// mntParamsForPartRole decides mount flags for a given structure role.
func mntParamsForPartRole(role string) (mntParams mntfsParams) {
var p mntfsParams
switch role {
case gadget.SystemSeed, gadget.SystemSave:
p.NoDev = true
p.NoExec = true
p.NoSuid = true
}
return p
}
// getMntPointForPart tells us where to mount a given structure so we
// match what the functions that write something expect.
func getMntPointForPart(part *gadget.VolumeStructure) (mntPt string) {
switch part.Role {
case gadget.SystemSeed, gadget.SystemSeedNull:
mntPt = boot.InitramfsUbuntuSeedDir
case gadget.SystemBoot:
mntPt = boot.InitramfsUbuntuBootDir
case gadget.SystemSave:
mntPt = boot.InitramfsUbuntuSaveDir
case gadget.SystemData:
mntPt = boot.InstallUbuntuDataDir
default:
mntPt = filepath.Join(boot.InitramfsRunMntDir, part.Name)
}
return mntPt
}
// MountVolumes mounts partitions for the volumes specified by
// onVolumes. It returns the partition with the system-seed{,-null}
// role and a function that needs to be called for unmounting them.
func MountVolumes(onVolumes map[string]*gadget.Volume, encSetupData *EncryptionSetupData) (seedMntDir string, unmount func() error, err error) {
var mountPoints []string
numSeedPart := 0
unmount = func() (err error) {
for _, mntPt := range mountPoints {
errUnmount := unmountWithFallbackToLazy(mntPt, "mounting volumes")
// Make sure we do not set err to nil if it had already an error
if errUnmount != nil {
err = errUnmount
}
}
return err
}
for _, vol := range onVolumes {
for _, part := range vol.Structure {
if part.Filesystem == "" {
continue
}
mntPt := getMntPointForPart(&part)
switch part.Role {
case gadget.SystemSeed, gadget.SystemSeedNull:
seedMntDir = mntPt
numSeedPart++
}
// Device might have been encrypted
device := deviceForMaybeEncryptedVolume(&part, encSetupData)
if err := mountFilesystem(device, part.LinuxFilesystem(), mntPt, mntParamsForPartRole(part.Role)); err != nil {
defer unmount()
return "", nil, fmt.Errorf("cannot mount %q at %q: %v", device, mntPt, err)
}
mountPoints = append(mountPoints, mntPt)
}
}
if numSeedPart != 1 {
defer unmount()
return "", nil, fmt.Errorf("there are %d system-seed{,-null} partitions, expected one", numSeedPart)
}
return seedMntDir, unmount, nil
}
func SaveStorageTraits(model gadget.Model, vols map[string]*gadget.Volume, encryptSetupData *EncryptionSetupData) error {
optsPerVol := map[string]*gadget.DiskVolumeValidationOptions{}
if encryptSetupData != nil {
for name, p := range encryptSetupData.parts {
if optsPerVol[p.volName] == nil {
optsPerVol[p.volName] = &gadget.DiskVolumeValidationOptions{
ExpectedStructureEncryption: map[string]gadget.StructureEncryptionParameters{}}
}
optsPerVol[p.volName].ExpectedStructureEncryption[name] = p.encryptionParams
}
}
// save the traits to ubuntu-data and ubuntu-save partitions
if err := saveStorageTraits(model, vols, optsPerVol, true); err != nil {
return err
}
return nil
}
func EncryptPartitions(
onVolumes map[string]*gadget.Volume,
volumesAuth *device.VolumesAuthOptions,
encryptionType device.EncryptionType,
checkContext *secboot.PreinstallCheckContext,
model *asserts.Model,
gadgetRoot,
kernelRoot string,
perfTimings timings.Measurer,
) (*EncryptionSetupData, error) {
setupData := &EncryptionSetupData{
parts: make(map[string]partEncryptionData),
volumesAuth: volumesAuth,
preinstallCheckContext: checkContext,
}
for volName, vol := range onVolumes {
onDiskVol, err := gadget.OnDiskVolumeFromGadgetVol(vol)
if err != nil {
return nil, err
}
for _, volStruct := range vol.Structure {
// We will only encrypt save or data roles
if volStruct.Role != gadget.SystemSave && volStruct.Role != gadget.SystemData {
continue
}
if volStruct.Device == "" {
return nil, fmt.Errorf("device field for volume struct %+v cannot be empty", volStruct)
}
device := volStruct.Device
onDiskStruct, err := structureFromPartDevice(onDiskVol, device)
if err != nil {
return nil, fmt.Errorf("cannot find partition %q: %v", device, err)
}
logger.Debugf("encrypting partition %s", device)
fsParams, encryptionKey, err := maybeEncryptPartition(
&gadget.OnDiskAndGadgetStructurePair{
DiskStructure: onDiskStruct,
GadgetStructure: &volStruct},
encryptionType, onDiskVol.SectorSize, perfTimings)
if err != nil {
return nil, fmt.Errorf("cannot encrypt %q: %v", device, err)
}
setupData.parts[volStruct.Name] = partEncryptionData{
role: volStruct.Role,
device: device,
// EncryptedDevice will be /dev/mapper/ubuntu-data, etc.
encryptedDevice: fsParams.Device,
volName: volName,
installKey: secboot.CreateBootstrappedContainer(encryptionKey, device),
encryptedSectorSize: fsParams.SectorSize,
encryptionParams: createEncryptionParams(encryptionType),
}
}
}
return setupData, nil
}
func BootstrappedContainersForRole(setupData *EncryptionSetupData) map[string]secboot.BootstrappedContainer {
installKeyForRole := make(map[string]secboot.BootstrappedContainer)
for _, p := range setupData.parts {
installKeyForRole[p.role] = p.installKey
}
return installKeyForRole
}
func FactoryReset(model gadget.Model, gadgetRoot string, kernelSnapInfo *KernelSnapInfo, bootDevice string, options Options, observer gadget.ContentObserver, perfTimings timings.Measurer) (*InstalledSystemSideData, error) {
logger.Noticef("performing factory reset on an installed system")
logger.Noticef(" gadget data from: %v", gadgetRoot)
logger.Noticef(" encryption: %v", options.EncryptionType)
if gadgetRoot == "" {
return nil, fmt.Errorf("cannot use empty gadget root directory")
}
if model.Grade() == asserts.ModelGradeUnset {
return nil, fmt.Errorf("cannot run factory-reset mode on pre-UC20 system")
}
// Find boot volume
info, err := gadget.ReadInfoAndValidate(gadgetRoot, model, nil)
if err != nil {
return nil, err
}
volumes, explicitAssignment, err := gadget.VolumesForCurrentDevice(info)
if err != nil {
return nil, err
}
if explicitAssignment {
// in case of volume assignments let us list those for
// information
logger.Noticef("volume assignments:")
for name, vol := range volumes {
logger.Noticef(" %s => %s", name, vol.AssignedDevice)
}
}
bootVol, err := gadget.FindBootVolume(volumes)
if err != nil {
return nil, err
}
bootDevice, err = resolveBootDevice(bootDevice, bootVol)
if err != nil {
return nil, err
}
diskLayout, err := gadget.OnDiskVolumeFromDevice(bootDevice)
if err != nil {
return nil, fmt.Errorf("cannot read %v partitions: %v", bootDevice, err)
}
volCompatOps := &gadget.VolumeCompatibilityOptions{
AssumeCreatablePartitionsCreated: true,
ExpectedStructureEncryption: map[string]gadget.StructureEncryptionParameters{},
}
if options.EncryptionType != device.EncryptionTypeNone {
var encryptionParam gadget.StructureEncryptionParameters
switch options.EncryptionType {
case device.EncryptionTypeLUKS, device.EncryptionTypeLUKSWithICE:
encryptionParam = gadget.StructureEncryptionParameters{Method: gadget.EncryptionLUKS}
default:
// XXX what about ICE?
return nil, fmt.Errorf("unsupported encryption type %v", options.EncryptionType)
}
for _, volStruct := range bootVol.Structure {
if !roleNeedsEncryption(volStruct.Role) {
continue
}
volCompatOps.ExpectedStructureEncryption[volStruct.Name] = encryptionParam
}
}
// factory reset is done on a system that was once installed, so this
// should be always successful unless the partition table has changed
yamlIdxToOnDistStruct, err := gadget.EnsureVolumeCompatibility(bootVol, diskLayout, volCompatOps)
if err != nil {
return nil, fmt.Errorf("gadget and system-boot device %v partition table not compatible: %v", bootDevice, err)
}
kernelInfo, err := kernel.ReadInfo(kernelSnapInfo.MountPoint)
if err != nil {
return nil, err
}
var installKeyForRole map[string]secboot.BootstrappedContainer
deviceForRole := map[string]string{}
var hasSavePartition bool
rolesToReset := []string{gadget.SystemBoot, gadget.SystemData}
for _, yamlIdx := range onDiskStructsSortedIdx(yamlIdxToOnDistStruct) {
onDiskStruct := yamlIdxToOnDistStruct[yamlIdx]
vs := bootVol.StructFromYamlIndex(yamlIdx)
if vs == nil {
continue
}
if vs.Role == gadget.SystemSave {
hasSavePartition = true
deviceForRole[gadget.SystemSave] = onDiskStruct.Node
continue
}
if !strutil.ListContains(rolesToReset, vs.Role) {
continue
}
logger.Noticef("resetting %v structure %v (size %v) role %v",
onDiskStruct.Node, vs, onDiskStruct.Size.IECString(), vs.Role)
// keep track of the /dev/<partition> (actual raw
// device) for each role
deviceForRole[vs.Role] = onDiskStruct.Node
fsDevice, encryptionKey, err := installOnePartition(
&gadget.OnDiskAndGadgetStructurePair{
DiskStructure: onDiskStruct, GadgetStructure: vs},
kernelInfo, kernelSnapInfo, gadgetRoot, options.EncryptionType,
diskLayout.SectorSize, observer, perfTimings)
if err != nil {
return nil, err
}
if encryptionKey != nil {
if installKeyForRole == nil {
installKeyForRole = map[string]secboot.BootstrappedContainer{}
}
installKeyForRole[vs.Role] = secboot.CreateBootstrappedContainer(encryptionKey, onDiskStruct.Node)
}
if options.Mount && vs.Label != "" && vs.HasFilesystem() {
// fs is taken from gadget, as on disk one might be displayed as
// crypto_LUKS, which is not useful for formatting.
if err := mountFilesystem(fsDevice, vs.LinuxFilesystem(), getMntPointForPart(vs), mntParamsForPartRole(vs.Role)); err != nil {
return nil, err
}
}
}
// after we have created all partitions, build up the mapping of volumes
// to disk device traits and save it to disk for later usage
optsPerVol := map[string]*gadget.DiskVolumeValidationOptions{
// this assumes that the encrypted partitions above are always only on the
// system-boot volume, this assumption may change
bootVol.Name: {
ExpectedStructureEncryption: volCompatOps.ExpectedStructureEncryption,
},
}
// save the traits to ubuntu-data host and optionally to ubuntu-save if it exists
if err := saveStorageTraits(model, volumes, optsPerVol, hasSavePartition); err != nil {
return nil, err
}
return &InstalledSystemSideData{
BootstrappedContainerForRole: installKeyForRole,
DeviceForRole: deviceForRole,
}, nil
}
// MatchDisksToGadgetVolumes matches gadget volumes with disks present
// in the system, taking into account the provided compatibility
// options. It returns a map of volume names to maps of gadget
// structure yaml indices to real disk structures.
func MatchDisksToGadgetVolumes(gVols map[string]*gadget.Volume,
volCompatOpts *gadget.VolumeCompatibilityOptions) (map[string]map[int]*gadget.OnDiskStructure, error) {
volToGadgetToDiskStruct := map[string]map[int]*gadget.OnDiskStructure{}
for name, vol := range gVols {
diskVolume, err := gadget.OnDiskVolumeFromGadgetVol(vol)
if err != nil {
return nil, err
}
gadgetToDiskMap, err := gadget.EnsureVolumeCompatibility(vol, diskVolume, volCompatOpts)
if err != nil {
return nil, err
}
volToGadgetToDiskStruct[name] = gadgetToDiskMap
}
return volToGadgetToDiskStruct, nil
}
|