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
|
// -*- 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"
"time"
"github.com/snapcore/snapd/release"
"github.com/snapcore/snapd/snap/naming"
)
// SnapResourceRevision holds a snap-resource-revision assertion, which is a
// statement by the store acknowledging the receipt of data for a resource of a
// snap and labeling it with a resource revision.
type SnapResourceRevision struct {
assertionBase
resourceSize uint64
resourceRevision int
timestamp time.Time
// TODO: integrity when the format is stabilized again
}
// ResourceSHA3_384 returns the SHA3-384 digest of the snap resource.
func (resrev *SnapResourceRevision) ResourceSHA3_384() string {
return resrev.HeaderString("resource-sha3-384")
}
// Provenance returns the optional provenance of the snap (defaults to
// global-upload (naming.DefaultProvenance)).
func (resrev *SnapResourceRevision) Provenance() string {
return resrev.HeaderString("provenance")
}
// SnapID returns the snap id of the snap for the resource.
func (resrev *SnapResourceRevision) SnapID() string {
return resrev.HeaderString("snap-id")
}
// ResourceName returns the name of the snap resource.
func (resrev *SnapResourceRevision) ResourceName() string {
return resrev.HeaderString("resource-name")
}
// ResourceSize returns the size in bytes of the snap resource submitted to the store.
func (resrev *SnapResourceRevision) ResourceSize() uint64 {
return resrev.resourceSize
}
// ResourceRevision returns the revision assigned to this upload of the snap resource.
func (resrev *SnapResourceRevision) ResourceRevision() int {
return resrev.resourceRevision
}
// DeveloperID returns the id of the developer that submitted the snap resource.
func (resrev *SnapResourceRevision) DeveloperID() string {
return resrev.HeaderString("developer-id")
}
// Timestamp returns the time when the snap-resource-revision was issued.
func (resrev *SnapResourceRevision) Timestamp() time.Time {
return resrev.timestamp
}
// Implement further consistency checks.
func (resrev *SnapResourceRevision) checkConsistency(db RODatabase, acck *AccountKey) error {
otherProvenance := resrev.Provenance() != naming.DefaultProvenance
if !otherProvenance && !db.IsTrustedAccount(resrev.AuthorityID()) {
// delegating global-upload revisions is not allowed
return fmt.Errorf("snap-resource-revision assertion for snap id %q is not signed by a store: %s", resrev.SnapID(), resrev.AuthorityID())
}
_, err := db.Find(AccountType, map[string]string{
"account-id": resrev.DeveloperID(),
})
if errors.Is(err, &NotFoundError{}) {
return fmt.Errorf("snap-resource-revision assertion for snap id %q does not have a matching account assertion for the developer %q", resrev.SnapID(), resrev.DeveloperID())
}
if err != nil {
return err
}
a, err := db.Find(SnapDeclarationType, map[string]string{
"series": release.Series,
"snap-id": resrev.SnapID(),
})
if errors.Is(err, &NotFoundError{}) {
return fmt.Errorf("snap-resource-revision assertion for snap id %q does not have a matching snap-declaration assertion", resrev.SnapID())
}
if err != nil {
return err
}
if otherProvenance {
decl := a.(*SnapDeclaration)
ras := decl.RevisionAuthority(resrev.Provenance())
matchingRevAuthority := false
for _, ra := range ras {
// model==store==nil, we do not perform device-specific
// checks at this level, those are performed at
// higher-level guarding installing actual components
if err := ra.CheckResourceRevision(resrev, nil, nil); err == nil {
matchingRevAuthority = true
break
}
}
if !matchingRevAuthority {
return fmt.Errorf("snap-resource-revision assertion with provenance %q for snap id %q is not signed by an authorized authority: %s", resrev.Provenance(), resrev.SnapID(), resrev.AuthorityID())
}
}
return nil
}
// expected interface is implemented
var _ consistencyChecker = (*SnapResourceRevision)(nil)
// Prerequisites returns references to this snap-resource-revision's prerequisite assertions.
func (resrev *SnapResourceRevision) Prerequisites() []*Ref {
return []*Ref{
{Type: SnapDeclarationType, PrimaryKey: []string{release.Series, resrev.SnapID()}},
{Type: AccountType, PrimaryKey: []string{resrev.DeveloperID()}},
}
}
func checkResourceName(headers map[string]any) error {
resName, err := checkNotEmptyString(headers, "resource-name")
if err != nil {
return err
}
// same format as snap names
if err := naming.ValidateSnap(resName); err != nil {
return fmt.Errorf("invalid resource name %q", resName)
}
return nil
}
func assembleSnapResourceRevision(assert assertionBase) (Assertion, error) {
if err := checkResourceName(assert.headers); err != nil {
return nil, err
}
_, err := checkDigest(assert.headers, "resource-sha3-384", crypto.SHA3_384)
if err != nil {
return nil, err
}
_, err = checkStringMatches(assert.headers, "provenance", naming.ValidProvenance)
if err != nil {
return nil, err
}
resourceSize, err := checkUint(assert.headers, "resource-size", 64)
if err != nil {
return nil, err
}
resourceRevision, err := checkSnapRevisionWhat(assert.headers, "resource-revision", "header")
if err != nil {
return nil, err
}
_, err = checkNotEmptyString(assert.headers, "developer-id")
if err != nil {
return nil, err
}
timestamp, err := checkRFC3339Date(assert.headers, "timestamp")
if err != nil {
return nil, err
}
// TODO: implement integrity stanza when format is stabilized again
return &SnapResourceRevision{
assertionBase: assert,
resourceSize: resourceSize,
resourceRevision: resourceRevision,
timestamp: timestamp,
}, nil
}
// SnapResourcePair holds a snap-resource-pair assertion, which is a
// statement by the store acknowledging that it received indication
// that the given snap resource revision can work with the given
// snap revision.
type SnapResourcePair struct {
assertionBase
resourceRevision int
snapRevision int
timestamp time.Time
}
// SnapID returns the snap id of the snap for the resource.
func (respair *SnapResourcePair) SnapID() string {
return respair.HeaderString("snap-id")
}
// ResourceName returns the name of the snap resource.
func (respair *SnapResourcePair) ResourceName() string {
return respair.HeaderString("resource-name")
}
// ResourceRevision returns the snap resource revision being paired.
func (respair *SnapResourcePair) ResourceRevision() int {
return respair.resourceRevision
}
// SnapRevision returns the snap revision being paired with.
func (respair *SnapResourcePair) SnapRevision() int {
return respair.snapRevision
}
// Provenance returns the optional provenance of the snap (defaults to
// global-upload (naming.DefaultProvenance)).
func (respair *SnapResourcePair) Provenance() string {
return respair.HeaderString("provenance")
}
// DeveloperID returns the id of the developer that submitted the snap resource for the snap revision.
func (respair *SnapResourcePair) DeveloperID() string {
return respair.HeaderString("developer-id")
}
// Timestamp returns the time when the snap-resource-pair was issued.
func (respair *SnapResourcePair) Timestamp() time.Time {
return respair.timestamp
}
// Implement further consistency checks.
func (respair *SnapResourcePair) checkConsistency(db RODatabase, acck *AccountKey) error {
otherProvenance := respair.Provenance() != naming.DefaultProvenance
if !otherProvenance && !db.IsTrustedAccount(respair.AuthorityID()) {
// delegating global-upload revisions is not allowed
return fmt.Errorf("snap-resource-pair assertion for snap id %q is not signed by a store: %s", respair.SnapID(), respair.AuthorityID())
}
_, err := db.Find(AccountType, map[string]string{
"account-id": respair.DeveloperID(),
})
if errors.Is(err, &NotFoundError{}) {
return fmt.Errorf("snap-resource-pair assertion for snap id %q does not have a matching account assertion for the developer %q", respair.SnapID(), respair.DeveloperID())
}
if err != nil {
return err
}
a, err := db.Find(SnapDeclarationType, map[string]string{
"series": release.Series,
"snap-id": respair.SnapID(),
})
if errors.Is(err, &NotFoundError{}) {
return fmt.Errorf("snap-resource-pair assertion for snap id %q does not have a matching snap-declaration assertion", respair.SnapID())
}
if err != nil {
return err
}
if otherProvenance {
decl := a.(*SnapDeclaration)
ras := decl.RevisionAuthority(respair.Provenance())
// check that there's matching delegation using the snap-revision
matchingRevAuthority := false
for _, ra := range ras {
// model==store==nil, we do not perform device-specific
// checks at this level, those are performed at
// higher-level guarding installing actual components
if err := ra.checkProvenanceAndRevision(respair, "snap", respair.SnapRevision(), nil, nil); err == nil {
matchingRevAuthority = true
break
}
}
if !matchingRevAuthority {
return fmt.Errorf("snap-resource-pair assertion with provenance %q for snap id %q is not signed by an authorized authority: %s", respair.Provenance(), respair.SnapID(), respair.AuthorityID())
}
}
return nil
}
// expected interface is implemented
var _ consistencyChecker = (*SnapResourcePair)(nil)
// Prerequisites returns references to this snap-resource-pair's prerequisite assertions.
func (respair *SnapResourcePair) Prerequisites() []*Ref {
return []*Ref{
{Type: SnapDeclarationType, PrimaryKey: []string{release.Series, respair.SnapID()}},
}
}
func assembleSnapResourcePair(assert assertionBase) (Assertion, error) {
if err := checkResourceName(assert.headers); err != nil {
return nil, err
}
_, err := checkStringMatches(assert.headers, "provenance", naming.ValidProvenance)
if err != nil {
return nil, err
}
resourceRevision, err := checkSnapRevisionWhat(assert.headers, "resource-revision", "header")
if err != nil {
return nil, err
}
snapRevision, err := checkSnapRevisionWhat(assert.headers, "snap-revision", "header")
if err != nil {
return nil, err
}
_, err = checkNotEmptyString(assert.headers, "developer-id")
if err != nil {
return nil, err
}
timestamp, err := checkRFC3339Date(assert.headers, "timestamp")
if err != nil {
return nil, err
}
return &SnapResourcePair{
assertionBase: assert,
resourceRevision: resourceRevision,
snapRevision: snapRevision,
timestamp: timestamp,
}, nil
}
|