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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 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 asserts
import (
"crypto"
"errors"
"fmt"
"regexp"
"time"
"github.com/snapcore/snapd/snap/naming"
)
// validSystemLabel is the regex describing a valid system label. Typically
// system labels are expected to be date based, eg. 20201116, but for
// completeness follow the same rule as model names (incl. one letter model
// names and thus system labels), with the exception that uppercase letters are
// not allowed, as the systems will often be stored in a FAT filesystem.
var validSystemLabel = regexp.MustCompile("^[a-z0-9](?:-?[a-z0-9])*$")
// IsValidSystemLabel checks whether the string is a valid UC20 seed system
// label.
func IsValidSystemLabel(label string) error {
if !validSystemLabel.MatchString(label) {
return fmt.Errorf("invalid seed system label: %q", label)
}
return nil
}
// PreseedSnap holds the details about a snap constrained by a preseed assertion.
type PreseedSnap struct {
Name string
SnapID string
Revision int
Components []PreseedComponent
}
type PreseedComponent struct {
Name string
Revision int
}
// SnapName implements naming.SnapRef.
func (s *PreseedSnap) SnapName() string {
return s.Name
}
// ID implements naming.SnapRef.
func (s *PreseedSnap) ID() string {
return s.SnapID
}
// Preseed holds preseed assertion, which is a statement about system-label,
// model, set of snaps and preseed artifact used for preseeding of UC20 system.
type Preseed struct {
assertionBase
snaps []*PreseedSnap
timestamp time.Time
}
// Series returns the series that this assertion is valid for.
func (p *Preseed) Series() string {
return p.HeaderString("series")
}
// BrandID returns the brand identifier.
func (p *Preseed) BrandID() string {
return p.HeaderString("brand-id")
}
// Model returns the model name identifier.
func (p *Preseed) Model() string {
return p.HeaderString("model")
}
// SystemLabel returns the label of the seeded system.
func (p *Preseed) SystemLabel() string {
return p.HeaderString("system-label")
}
// Timestamp returns the time when the preseed assertion was issued.
func (p *Preseed) Timestamp() time.Time {
return p.timestamp
}
// ArtifactSHA3_384 returns the checksum of preseeding artifact.
func (p *Preseed) ArtifactSHA3_384() string {
return p.HeaderString("artifact-sha3-384")
}
// Snaps returns the snaps for preseeding.
func (p *Preseed) Snaps() []*PreseedSnap {
return p.snaps
}
func checkPreseedSnap(snap map[string]any) (*PreseedSnap, error) {
name, err := checkNotEmptyStringWhat(snap, "name", "of snap")
if err != nil {
return nil, err
}
if err := naming.ValidateSnap(name); err != nil {
return nil, fmt.Errorf("invalid snap name %q", name)
}
what := fmt.Sprintf("of snap %q", name)
// snap id can be omitted if the model allows for unasserted snaps
var snapID string
if _, ok := snap["id"]; ok {
snapID, err = checkStringMatchesWhat(snap, "id", what, naming.ValidSnapID)
if err != nil {
return nil, err
}
}
// Revision is x1 if unasserted, as that is what we will get on first installation
snapRevision := -1
if _, ok := snap["revision"]; ok {
var err error
snapRevision, err = checkSnapRevisionWhat(snap, "revision", what)
if err != nil {
return nil, err
}
}
if snapID != "" && snapRevision <= 0 {
return nil, fmt.Errorf("snap revision is required when snap id is set")
}
if snapID == "" && snapRevision > 0 {
return nil, fmt.Errorf("snap id is required when revision is set")
}
var components []PreseedComponent
if comps, ok := snap["components"]; ok {
components, err = checkPreseedComponents(comps, snapRevision)
if err != nil {
return nil, err
}
}
return &PreseedSnap{
Name: name,
SnapID: snapID,
Revision: snapRevision,
Components: components,
}, nil
}
func checkPreseedComponents(comps any, snapRevision int) ([]PreseedComponent, error) {
const wrongHeaderType = `"components" header must be a list of maps`
entries, ok := comps.([]any)
if !ok {
return nil, errors.New(wrongHeaderType)
}
seen := make(map[string]bool)
components := make([]PreseedComponent, 0, len(entries))
for _, entry := range entries {
comp, ok := entry.(map[string]any)
if !ok {
return nil, errors.New(wrongHeaderType)
}
preseedComp, err := checkPreseedComponent(comp, snapRevision)
if err != nil {
return nil, err
}
if _, ok := seen[preseedComp.Name]; ok {
return nil, fmt.Errorf("cannot list the same component %q multiple times", preseedComp.Name)
}
seen[preseedComp.Name] = true
components = append(components, preseedComp)
}
return components, nil
}
func checkPreseedComponent(comp map[string]any, snapRevision int) (PreseedComponent, error) {
name, err := checkNotEmptyStringWhat(comp, "name", "of component")
if err != nil {
return PreseedComponent{}, err
}
if err := naming.ValidateSnap(name); err != nil {
return PreseedComponent{}, err
}
what := fmt.Sprintf("of component %q", name)
// Revision is x1 if unasserted, as that is what we will get on first installation
revision := -1
if _, ok := comp["revision"]; ok {
revision, err = checkSnapRevisionWhat(comp, "revision", what)
if err != nil {
return PreseedComponent{}, err
}
}
if revision <= 0 && snapRevision > 0 {
return PreseedComponent{}, fmt.Errorf("component %q must have a revision since its snap has a revision", name)
}
if revision > 0 && snapRevision <= 0 {
return PreseedComponent{}, fmt.Errorf("component %q cannot have a revision since its snap has no revision", name)
}
return PreseedComponent{
Name: name,
Revision: revision,
}, nil
}
func checkPreseedSnaps(snapList any) ([]*PreseedSnap, error) {
const wrongHeaderType = `"snaps" header must be a list of maps`
entries, ok := snapList.([]any)
if !ok {
return nil, fmt.Errorf(wrongHeaderType)
}
seen := make(map[string]bool, len(entries))
seenIDs := make(map[string]string, len(entries))
snaps := make([]*PreseedSnap, 0, len(entries))
for _, entry := range entries {
snap, ok := entry.(map[string]any)
if !ok {
return nil, fmt.Errorf(wrongHeaderType)
}
preseedSnap, err := checkPreseedSnap(snap)
if err != nil {
return nil, err
}
if seen[preseedSnap.Name] {
return nil, fmt.Errorf("cannot list the same snap %q multiple times", preseedSnap.Name)
}
seen[preseedSnap.Name] = true
snapID := preseedSnap.SnapID
if snapID != "" {
if underName := seenIDs[snapID]; underName != "" {
return nil, fmt.Errorf("cannot specify the same snap id %q multiple times, specified for snaps %q and %q", snapID, underName, preseedSnap.Name)
}
seenIDs[snapID] = preseedSnap.Name
}
snaps = append(snaps, preseedSnap)
}
return snaps, nil
}
func assemblePreseed(assert assertionBase) (Assertion, error) {
// because the authority-id and model-id can differ (as per the model),
// authority-id should be validated against allowed IDs when the preseed
// blob is being checked
_, err := checkModel(assert.headers)
if err != nil {
return nil, err
}
_, err = checkStringMatches(assert.headers, "system-label", validSystemLabel)
if err != nil {
return nil, err
}
snapList, ok := assert.headers["snaps"]
if !ok {
return nil, fmt.Errorf(`"snaps" header is mandatory`)
}
snaps, err := checkPreseedSnaps(snapList)
if err != nil {
return nil, err
}
_, err = checkDigest(assert.headers, "artifact-sha3-384", crypto.SHA3_384)
if err != nil {
return nil, err
}
timestamp, err := checkRFC3339Date(assert.headers, "timestamp")
if err != nil {
return nil, err
}
return &Preseed{
assertionBase: assert,
snaps: snaps,
timestamp: timestamp,
}, nil
}
|