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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2015-2022 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 (
"fmt"
"reflect"
"regexp"
"strconv"
"strings"
"github.com/snapcore/snapd/strutil"
)
const (
// feature label for $SLOT()/$PLUG()/$MISSING
dollarAttrConstraintsFeature = "dollar-attr-constraints"
// feature label for alt attribute matcher usage
altAttrMatcherFeature = "alt-attr-matcher"
// feature label for $PLUG_PUBLISHER_ID/$SLOT_PUBLISHER_ID
publisherIDConstraintsFeature = "publisher-id-constraints"
)
type attrMatchingContext struct {
// attrWord is the usage context word for "attribute", mainly
// useful in errors
attrWord string
helper AttrMatchContext
}
type attrMatcher interface {
match(apath string, v any, ctx *attrMatchingContext) error
feature(flabel string) bool
}
func chain(path, k string) string {
if path == "" {
return k
}
return fmt.Sprintf("%s.%s", path, k)
}
type compileAttrMatcherOptions struct {
allowedOperations []string
allowedRefs []string
}
type compileContext struct {
dotted string
hadMap bool
wasAlt bool
opts *compileAttrMatcherOptions
}
func (cc compileContext) String() string {
return cc.dotted
}
func (cc compileContext) keyEntry(k string) compileContext {
return compileContext{
dotted: chain(cc.dotted, k),
hadMap: true,
wasAlt: false,
opts: cc.opts,
}
}
func (cc compileContext) alt(alt int) compileContext {
return compileContext{
dotted: fmt.Sprintf("%s/alt#%d/", cc.dotted, alt+1),
hadMap: cc.hadMap,
wasAlt: true,
opts: cc.opts,
}
}
// compileAttrMatcher compiles an attrMatcher derived from constraints,
func compileAttrMatcher(cc compileContext, constraints any) (attrMatcher, error) {
switch x := constraints.(type) {
case map[string]any:
return compileMapAttrMatcher(cc, x)
case []any:
if cc.wasAlt {
return nil, fmt.Errorf("cannot nest alternative constraints directly at %q", cc)
}
return compileAltAttrMatcher(cc, x)
case string:
if !cc.hadMap {
return nil, fmt.Errorf("first level of non alternative constraints must be a set of key-value constraints")
}
if strings.HasPrefix(x, "$") {
if x == "$MISSING" {
return missingAttrMatcher{}, nil
}
return compileEvalOrRefAttrMatcher(cc, x)
}
return compileRegexpAttrMatcher(cc, x)
default:
c := cc.String()
if c == "" {
c = "top constraint"
} else {
c = fmt.Sprintf("constraint %q", c)
}
return nil, fmt.Errorf("%s must be a key-value map, regexp or a list of alternative constraints: %v", c, x)
}
}
type mapAttrMatcher map[string]attrMatcher
func compileMapAttrMatcher(cc compileContext, m map[string]any) (attrMatcher, error) {
matcher := make(mapAttrMatcher)
for k, constraint := range m {
matcher1, err := compileAttrMatcher(cc.keyEntry(k), constraint)
if err != nil {
return nil, err
}
matcher[k] = matcher1
}
return matcher, nil
}
func matchEntry(apath, k string, matcher1 attrMatcher, v any, ctx *attrMatchingContext) error {
apath = chain(apath, k)
// every entry matcher expects the attribute to be set except for $MISSING
if _, ok := matcher1.(missingAttrMatcher); !ok && v == nil {
return fmt.Errorf("%s %q has constraints but is unset", ctx.attrWord, apath)
}
if err := matcher1.match(apath, v, ctx); err != nil {
return err
}
return nil
}
func matchList(apath string, matcher attrMatcher, l []any, ctx *attrMatchingContext) error {
for i, elem := range l {
if err := matcher.match(chain(apath, strconv.Itoa(i)), elem, ctx); err != nil {
return err
}
}
return nil
}
func (matcher mapAttrMatcher) feature(flabel string) bool {
for _, matcher1 := range matcher {
if matcher1.feature(flabel) {
return true
}
}
return false
}
func (matcher mapAttrMatcher) match(apath string, v any, ctx *attrMatchingContext) error {
switch x := v.(type) {
case Attrer:
// we get Atter from root-level Check (apath is "")
for k, matcher1 := range matcher {
v, _ := x.Lookup(k)
if err := matchEntry("", k, matcher1, v, ctx); err != nil {
return err
}
}
case map[string]any: // maps in attributes look like this
for k, matcher1 := range matcher {
if err := matchEntry(apath, k, matcher1, x[k], ctx); err != nil {
return err
}
}
case []any:
return matchList(apath, matcher, x, ctx)
default:
return fmt.Errorf("%s %q must be a map", ctx.attrWord, apath)
}
return nil
}
type missingAttrMatcher struct{}
func (matcher missingAttrMatcher) feature(flabel string) bool {
return flabel == dollarAttrConstraintsFeature
}
func (matcher missingAttrMatcher) match(apath string, v any, ctx *attrMatchingContext) error {
if v != nil {
return fmt.Errorf("%s %q is constrained to be missing but is set", ctx.attrWord, apath)
}
return nil
}
type evalAttrMatcher struct {
// first iteration supports just $(SLOT|PLUG)(arg)
op string
arg string
}
var (
validEvalAttrMatcher = regexp.MustCompile(`^\$([A-Z]+)\(([^,]+)(?:,([^,]+))?\)$`)
validEvalAttrMatcherOps = map[string]bool{
"PLUG": true,
"SLOT": true,
}
)
func compileEvalOrRefAttrMatcher(cc compileContext, s string) (attrMatcher, error) {
if len(cc.opts.allowedOperations) == 0 && len(cc.opts.allowedRefs) == 0 {
return nil, fmt.Errorf("cannot compile %q constraint %q: no $OP() or $REF constraints supported", cc, s)
}
// check if constraint matches an allowed $REF constraint since the regexp
// below only matches $OP(...) strings
if strutil.ListContains(cc.opts.allowedRefs, s[1:]) {
return refAttrMatcher{ref: s[1:]}, nil
}
ops := validEvalAttrMatcher.FindStringSubmatch(s)
if len(ops) == 0 || !validEvalAttrMatcherOps[ops[1]] || !strutil.ListContains(cc.opts.allowedOperations, ops[1]) {
// attribute doesn't match any allowed $OP() constraint, build err message
oplst := make([]string, 0, len(cc.opts.allowedOperations)+len(cc.opts.allowedRefs))
for _, op := range cc.opts.allowedOperations {
oplst = append(oplst, fmt.Sprintf("$%s()", op))
}
for _, ref := range cc.opts.allowedRefs {
oplst = append(oplst, fmt.Sprintf("$%s", ref))
}
return nil, fmt.Errorf("cannot compile %q constraint %q: not a valid %s constraint", cc, s, strings.Join(oplst, "/"))
}
if ops[3] != "" {
return nil, fmt.Errorf("cannot compile %q constraint %q: $%s() constraint expects 1 argument", cc, s, ops[1])
}
return evalAttrMatcher{
op: ops[1],
arg: ops[2],
}, nil
}
func (matcher evalAttrMatcher) feature(flabel string) bool {
return flabel == dollarAttrConstraintsFeature
}
func (matcher evalAttrMatcher) match(apath string, v any, ctx *attrMatchingContext) error {
if ctx.helper == nil {
return fmt.Errorf("%s %q cannot be matched without context", ctx.attrWord, apath)
}
var comp func(string) (any, error)
switch matcher.op {
case "SLOT":
comp = ctx.helper.SlotAttr
case "PLUG":
comp = ctx.helper.PlugAttr
}
v1, err := comp(matcher.arg)
if err != nil {
return fmt.Errorf("%s %q constraint $%s(%s) cannot be evaluated: %v", ctx.attrWord, apath, matcher.op, matcher.arg, err)
}
if !reflect.DeepEqual(v, v1) {
return fmt.Errorf("%s %q does not match $%s(%s): %v != %v", ctx.attrWord, apath, matcher.op, matcher.arg, v, v1)
}
return nil
}
type refAttrMatcher struct {
// supports $PLUG_PUBLISHER_ID and $SLOT_PUBLISHER_ID
ref string
}
func (m refAttrMatcher) feature(flabel string) bool {
return flabel == publisherIDConstraintsFeature
}
func (m refAttrMatcher) match(apath string, v any, ctx *attrMatchingContext) error {
if ctx.helper == nil {
return fmt.Errorf("%s %q cannot be matched without context", ctx.attrWord, apath)
}
var getRef func() string
switch m.ref {
case "PLUG_PUBLISHER_ID":
getRef = ctx.helper.PlugPublisherID
case "SLOT_PUBLISHER_ID":
getRef = ctx.helper.SlotPublisherID
}
attrVal, ok := v.(string)
if !ok {
return fmt.Errorf("%s %q is not expected string type: %T", ctx.attrWord, apath, v)
}
refVal := getRef()
if attrVal != refVal {
return fmt.Errorf("%s %q does not match $%s: %v != %v", ctx.attrWord, apath, m.ref, attrVal, refVal)
}
return nil
}
type regexpAttrMatcher struct {
*regexp.Regexp
}
func compileRegexpAttrMatcher(cc compileContext, s string) (attrMatcher, error) {
rx, err := regexp.Compile("^(" + s + ")$")
if err != nil {
return nil, fmt.Errorf("cannot compile %q constraint %q: %v", cc, s, err)
}
return regexpAttrMatcher{rx}, nil
}
func (matcher regexpAttrMatcher) feature(flabel string) bool {
return false
}
func (matcher regexpAttrMatcher) match(apath string, v any, ctx *attrMatchingContext) error {
var s string
switch x := v.(type) {
case string:
s = x
case bool:
s = strconv.FormatBool(x)
case int64:
s = strconv.FormatInt(x, 10)
case []any:
return matchList(apath, matcher, x, ctx)
default:
return fmt.Errorf("%s %q must be a scalar or list", ctx.attrWord, apath)
}
if !matcher.Regexp.MatchString(s) {
return fmt.Errorf("%s %q value %q does not match %v", ctx.attrWord, apath, s, matcher.Regexp)
}
return nil
}
type altAttrMatcher struct {
alts []attrMatcher
}
func compileAltAttrMatcher(cc compileContext, l []any) (attrMatcher, error) {
alts := make([]attrMatcher, len(l))
for i, constraint := range l {
matcher1, err := compileAttrMatcher(cc.alt(i), constraint)
if err != nil {
return nil, err
}
alts[i] = matcher1
}
return altAttrMatcher{alts}, nil
}
func (matcher altAttrMatcher) feature(flabel string) bool {
if flabel == altAttrMatcherFeature {
return true
}
for _, alt := range matcher.alts {
if alt.feature(flabel) {
return true
}
}
return false
}
func (matcher altAttrMatcher) match(apath string, v any, ctx *attrMatchingContext) error {
// if the value is a list apply the alternative matcher to each element
// like we do for other matchers
switch x := v.(type) {
case []any:
return matchList(apath, matcher, x, ctx)
default:
}
var firstErr error
for _, alt := range matcher.alts {
err := alt.match(apath, v, ctx)
if err == nil {
return nil
}
if firstErr == nil {
firstErr = err
}
}
apathDescr := ""
if apath != "" {
apathDescr = fmt.Sprintf(" for %s %q", ctx.attrWord, apath)
}
return fmt.Errorf("no alternative%s matches: %v", apathDescr, firstErr)
}
// DeviceScopeConstraint specifies a constraint based on which brand
// store, brand or model the device belongs to.
type DeviceScopeConstraint struct {
Store []string
Brand []string
// Model is a list of precise "<brand>/<model>" constraints
Model []string
}
var (
validStoreID = regexp.MustCompile("^[-A-Z0-9a-z_]+$")
validBrandSlashModel = regexp.MustCompile("^(" +
strings.Trim(validAccountID.String(), "^$") +
")/(" +
strings.Trim(validModel.String(), "^$") +
")$")
deviceScopeConstraints = map[string]*regexp.Regexp{
"on-store": validStoreID,
"on-brand": validAccountID,
// on-model constraints are of the form list of
// <brand>/<model> strings where <brand> are account
// IDs as they appear in the respective model assertion
"on-model": validBrandSlashModel,
}
)
func detectDeviceScopeConstraint(cMap map[string]any) bool {
// for consistency and simplicity we support all of on-store,
// on-brand, and on-model to appear together. The interpretation
// layer will AND them as usual
for field := range deviceScopeConstraints {
if cMap[field] != nil {
return true
}
}
return false
}
// compileDeviceScopeConstraint compiles a DeviceScopeConstraint out of cMap,
// it returns nil and no error if there are no on-store/on-brand/on-model
// constraints in cMap
func compileDeviceScopeConstraint(cMap map[string]any, context string) (constr *DeviceScopeConstraint, err error) {
if !detectDeviceScopeConstraint(cMap) {
return nil, nil
}
// initial map size of 2: we expect usual cases to have just one of the
// constraints or rarely 2
deviceConstr := make(map[string][]string, 2)
for field, validRegexp := range deviceScopeConstraints {
vals, err := checkStringListInMap(cMap, field, fmt.Sprintf("%s in %s", field, context), validRegexp)
if err != nil {
return nil, err
}
deviceConstr[field] = vals
}
return &DeviceScopeConstraint{
Store: deviceConstr["on-store"],
Brand: deviceConstr["on-brand"],
Model: deviceConstr["on-model"],
}, nil
}
type DeviceScopeConstraintCheckOptions struct {
UseFriendlyStores bool
}
// Check tests whether the model and the optional store match the constraints.
func (c *DeviceScopeConstraint) Check(model *Model, store *Store, opts *DeviceScopeConstraintCheckOptions) error {
if model == nil {
return fmt.Errorf("cannot match on-store/on-brand/on-model without model")
}
if store != nil && store.Store() != model.Store() {
return fmt.Errorf("store assertion and model store must match")
}
if opts == nil {
opts = &DeviceScopeConstraintCheckOptions{}
}
if len(c.Store) != 0 {
if !strutil.ListContains(c.Store, model.Store()) {
mismatch := true
if store != nil && opts.UseFriendlyStores {
for _, sto := range c.Store {
if strutil.ListContains(store.FriendlyStores(), sto) {
mismatch = false
break
}
}
}
if mismatch {
return fmt.Errorf("on-store mismatch")
}
}
}
if len(c.Brand) != 0 {
if !strutil.ListContains(c.Brand, model.BrandID()) {
return fmt.Errorf("on-brand mismatch")
}
}
if len(c.Model) != 0 {
brandModel := fmt.Sprintf("%s/%s", model.BrandID(), model.Model())
if !strutil.ListContains(c.Model, brandModel) {
return fmt.Errorf("on-model mismatch")
}
}
return nil
}
|