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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2019 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 gadget
import (
"fmt"
"path/filepath"
"github.com/snapcore/snapd/dirs"
"github.com/snapcore/snapd/logger"
"github.com/snapcore/snapd/osutil"
"github.com/snapcore/snapd/osutil/disks"
)
var evalSymlinks = filepath.EvalSymlinks
// FindDeviceForStructure attempts to find an existing block device matching
// given volume structure, by inspecting its name and, optionally, the
// filesystem label. Assumes that the host's udev has set up device symlinks
// correctly.
func FindDeviceForStructure(vs *VolumeStructure) (string, error) {
var candidates []string
if vs.Name != "" {
byPartlabel := filepath.Join(dirs.GlobalRootDir, "/dev/disk/by-partlabel/", disks.BlkIDEncodeLabel(vs.Name))
candidates = append(candidates, byPartlabel)
}
if vs.HasFilesystem() {
fsLabel := vs.Label
if fsLabel == "" && vs.Name != "" {
// when image is built and the structure has no
// filesystem label, the structure name will be used by
// default as the label
fsLabel = vs.Name
}
if fsLabel != "" {
candLabel, err := disks.CandidateByLabelPath(fsLabel)
if err == nil {
candidates = append(candidates, candLabel)
} else {
logger.Debugf("no by-label candidate for %q: %v", fsLabel, err)
}
}
}
var found string
var match string
for _, candidate := range candidates {
if !osutil.FileExists(candidate) {
continue
}
if !osutil.IsSymlink(candidate) {
// /dev/disk/by-label/* and /dev/disk/by-partlabel/* are
// expected to be symlink
return "", fmt.Errorf("candidate %v is not a symlink", candidate)
}
target, err := evalSymlinks(candidate)
if err != nil {
return "", fmt.Errorf("cannot read device link: %v", err)
}
if found != "" && target != found {
// partition and filesystem label links point to
// different devices
return "", fmt.Errorf("conflicting device match, %q points to %q, previous match %q points to %q",
candidate, target, match, found)
}
found = target
match = candidate
}
if found == "" {
return "", ErrDeviceNotFound
}
return found, nil
}
|