-
Notifications
You must be signed in to change notification settings - Fork 601
/
Copy pathseed.go
166 lines (138 loc) · 5.23 KB
/
seed.go
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
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* 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 seed implements loading and validating of seed data.
package seed
import (
"errors"
"fmt"
"path/filepath"
"github.com/snapcore/snapd/asserts"
"github.com/snapcore/snapd/seed/internal"
"github.com/snapcore/snapd/snap"
"github.com/snapcore/snapd/timings"
)
var (
ErrNoAssertions = errors.New("no seed assertions")
ErrNoMeta = errors.New("no seed metadata")
)
// Snap holds the details of a snap in a seed.
type Snap struct {
Path string
SideInfo *snap.SideInfo
// EssentialType is the type of the snap as specified by the model.
// Provided only for essential snaps (Essential = true).
EssentialType snap.Type
Essential bool
Required bool
// options
Channel string
DevMode bool
Classic bool
}
func (s *Snap) SnapName() string {
return s.SideInfo.RealName
}
func (s *Snap) ID() string {
return s.SideInfo.SnapID
}
// PlaceInfo returns a PlaceInfo for the seed snap.
func (s *Snap) PlaceInfo() snap.PlaceInfo {
return &snap.Info{SideInfo: *s.SideInfo}
}
// Seed supports loading assertions and seed snaps' metadata.
type Seed interface {
// LoadAssertions loads all assertions from the seed with
// cross-checks. A read-only view on an assertions database
// can be passed in together with a commitTo function which
// will be used to commit the assertions to the underlying
// database. If db is nil an internal temporary database will
// be setup instead. ErrNoAssertions will be returned if there
// is no assertions directory in the seed, this is legitimate
// only on classic.
LoadAssertions(db asserts.RODatabase, commitTo func(*asserts.Batch) error) error
// Model returns the seed provided model assertion.
// It will panic if called before LoadAssertions.
Model() *asserts.Model
// Brand returns the brand information of the seed.
// It will panic if called before LoadAssertions.
Brand() (*asserts.Account, error)
// LoadMeta loads the seed and seed's snaps metadata while
// verifying the underlying snaps against assertions. It can
// return ErrNoMeta if there is no metadata nor snaps in the
// seed, this is legitimate only on classic.
// It will panic if called before LoadAssertions.
LoadMeta(tm timings.Measurer) error
// UsesSnapdSnap returns whether the system as defined by the
// seed will use the snapd snap, after LoadMeta.
UsesSnapdSnap() bool
// EssentialSnaps returns the essential snaps as defined by
// the seed, after LoadMeta.
EssentialSnaps() []*Snap
// ModeSnaps returns the snaps that should be available
// in the given mode as defined by the seed, after LoadMeta.
ModeSnaps(mode string) ([]*Snap, error)
}
// EssentialMetaLoaderSeed is a Seed that can be asked to load and verify
// only a subset of the essential model snaps via LoadEssentialMeta.
type EssentialMetaLoaderSeed interface {
Seed
// LoadEssentialMeta loads the seed's snaps metadata for the
// essential snaps with types in the essentialTypes set while
// verifying them against assertions. It can return ErrNoMeta
// if there is no metadata nor snaps in the seed, this is
// legitimate only on classic. It is an error to mix it with
// LoadMeta.
// It will panic if called before LoadAssertions.
LoadEssentialMeta(essentialTypes []snap.Type, tm timings.Measurer) error
}
// Open returns a Seed implementation for the seed at seedDir.
// label if not empty is used to identify a Core 20 recovery system seed.
func Open(seedDir, label string) (Seed, error) {
if label != "" {
if err := internal.ValidateUC20SeedSystemLabel(label); err != nil {
return nil, err
}
return &seed20{systemDir: filepath.Join(seedDir, "systems", label)}, nil
}
return &seed16{seedDir: seedDir}, nil
}
// ReadSystemEssential retrieves in one go information about the model
// and essential snaps of the given types for the Core 20 recovery
// system seed specified by seedDir and label (which cannot be empty).
func ReadSystemEssential(seedDir, label string, essentialTypes []snap.Type, tm timings.Measurer) (*asserts.Model, []*Snap, error) {
if label == "" {
return nil, nil, fmt.Errorf("system label cannot be empty")
}
seed, err := Open(seedDir, label)
if err != nil {
return nil, nil, err
}
seed20, ok := seed.(EssentialMetaLoaderSeed)
if !ok {
return nil, nil, fmt.Errorf("internal error: UC20 seed must implement EssentialMetaLoaderSeed")
}
// load assertions into a temporary database
if err := seed20.LoadAssertions(nil, nil); err != nil {
return nil, nil, err
}
// load and verify info about essential snaps
if err := seed20.LoadEssentialMeta(essentialTypes, tm); err != nil {
return nil, nil, err
}
return seed20.Model(), seed20.EssentialSnaps(), nil
}