With distribution source label in content store, select the longest common prefix components as condidate mount blob source and try to push with mount blob. Fix #2964 Signed-off-by: Wei Fu <fuweid89@gmail.com>
		
			
				
	
	
		
			92 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
   Copyright The containerd Authors.
 | 
						|
 | 
						|
   Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
   you may not use this file except in compliance with the License.
 | 
						|
   You may obtain a copy of the License at
 | 
						|
 | 
						|
       http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
   Unless required by applicable law or agreed to in writing, software
 | 
						|
   distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
   See the License for the specific language governing permissions and
 | 
						|
   limitations under the License.
 | 
						|
*/
 | 
						|
 | 
						|
package docker
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"fmt"
 | 
						|
	"net/url"
 | 
						|
	"sort"
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"github.com/containerd/containerd/reference"
 | 
						|
)
 | 
						|
 | 
						|
// repositoryScope returns a repository scope string such as "repository:foo/bar:pull"
 | 
						|
// for "host/foo/bar:baz".
 | 
						|
// When push is true, both pull and push are added to the scope.
 | 
						|
func repositoryScope(refspec reference.Spec, push bool) (string, error) {
 | 
						|
	u, err := url.Parse("dummy://" + refspec.Locator)
 | 
						|
	if err != nil {
 | 
						|
		return "", err
 | 
						|
	}
 | 
						|
	s := "repository:" + strings.TrimPrefix(u.Path, "/") + ":pull"
 | 
						|
	if push {
 | 
						|
		s += ",push"
 | 
						|
	}
 | 
						|
	return s, nil
 | 
						|
}
 | 
						|
 | 
						|
// tokenScopesKey is used for the key for context.WithValue().
 | 
						|
// value: []string (e.g. {"registry:foo/bar:pull"})
 | 
						|
type tokenScopesKey struct{}
 | 
						|
 | 
						|
// contextWithRepositoryScope returns a context with tokenScopesKey{} and the repository scope value.
 | 
						|
func contextWithRepositoryScope(ctx context.Context, refspec reference.Spec, push bool) (context.Context, error) {
 | 
						|
	s, err := repositoryScope(refspec, push)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return context.WithValue(ctx, tokenScopesKey{}, []string{s}), nil
 | 
						|
}
 | 
						|
 | 
						|
// contextWithAppendPullRepositoryScope is used to append repository pull
 | 
						|
// scope into existing scopes indexed by the tokenScopesKey{}.
 | 
						|
func contextWithAppendPullRepositoryScope(ctx context.Context, repo string) context.Context {
 | 
						|
	var scopes []string
 | 
						|
 | 
						|
	if v := ctx.Value(tokenScopesKey{}); v != nil {
 | 
						|
		scopes = append(scopes, v.([]string)...)
 | 
						|
	}
 | 
						|
	scopes = append(scopes, fmt.Sprintf("repository:%s:pull", repo))
 | 
						|
	return context.WithValue(ctx, tokenScopesKey{}, scopes)
 | 
						|
}
 | 
						|
 | 
						|
// getTokenScopes returns deduplicated and sorted scopes from ctx.Value(tokenScopesKey{}) and common scopes.
 | 
						|
func getTokenScopes(ctx context.Context, common []string) []string {
 | 
						|
	var scopes []string
 | 
						|
	if x := ctx.Value(tokenScopesKey{}); x != nil {
 | 
						|
		scopes = append(scopes, x.([]string)...)
 | 
						|
	}
 | 
						|
 | 
						|
	scopes = append(scopes, common...)
 | 
						|
	sort.Strings(scopes)
 | 
						|
 | 
						|
	l := 0
 | 
						|
	for idx := 1; idx < len(scopes); idx++ {
 | 
						|
		// Note: this comparison is unaware of the scope grammar (https://docs.docker.com/registry/spec/auth/scope/)
 | 
						|
		// So, "repository:foo/bar:pull,push" != "repository:foo/bar:push,pull", although semantically they are equal.
 | 
						|
		if scopes[l] == scopes[idx] {
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		l++
 | 
						|
		scopes[l] = scopes[idx]
 | 
						|
	}
 | 
						|
	return scopes[:l+1]
 | 
						|
}
 |