
This TODO was added in9e6db71954
, at which time the reference package was part of the docker/distribution (registry) repository. The reference package has moved to a standalone module, which has been in use since4923470902
, so this should no longer be a concern. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
115 lines
3.0 KiB
Go
115 lines
3.0 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 archive
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/containerd/containerd/v2/pkg/reference"
|
|
distref "github.com/distribution/reference"
|
|
"github.com/opencontainers/go-digest"
|
|
)
|
|
|
|
// FilterRefPrefix restricts references to having the given image
|
|
// prefix. Tag-only references will have the prefix prepended.
|
|
func FilterRefPrefix(image string) func(string) string {
|
|
return refTranslator(image, true)
|
|
}
|
|
|
|
// AddRefPrefix prepends the given image prefix to tag-only references,
|
|
// while leaving returning full references unmodified.
|
|
func AddRefPrefix(image string) func(string) string {
|
|
return refTranslator(image, false)
|
|
}
|
|
|
|
// refTranslator creates a reference which only has a tag or verifies
|
|
// a full reference.
|
|
func refTranslator(image string, checkPrefix bool) func(string) string {
|
|
return func(ref string) string {
|
|
if image == "" {
|
|
return ""
|
|
}
|
|
// Check if ref is full reference
|
|
if strings.ContainsAny(ref, "/:@") {
|
|
// If not prefixed, don't include image
|
|
if checkPrefix && !isImagePrefix(ref, image) {
|
|
return ""
|
|
}
|
|
return ref
|
|
}
|
|
return image + ":" + ref
|
|
}
|
|
}
|
|
|
|
func isImagePrefix(s, prefix string) bool {
|
|
if !strings.HasPrefix(s, prefix) {
|
|
return false
|
|
}
|
|
if len(s) > len(prefix) {
|
|
switch s[len(prefix)] {
|
|
case '/', ':', '@':
|
|
// Prevent matching partial namespaces
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func normalizeReference(ref string) (string, error) {
|
|
normalized, err := distref.ParseDockerRef(ref)
|
|
if err != nil {
|
|
return "", fmt.Errorf("normalize image ref %q: %w", ref, err)
|
|
}
|
|
|
|
return normalized.String(), nil
|
|
}
|
|
|
|
func familiarizeReference(ref string) (string, error) {
|
|
named, err := distref.ParseNormalizedNamed(ref)
|
|
if err != nil {
|
|
return "", fmt.Errorf("failed to parse %q: %w", ref, err)
|
|
}
|
|
named = distref.TagNameOnly(named)
|
|
|
|
return distref.FamiliarString(named), nil
|
|
}
|
|
|
|
func ociReferenceName(name string) string {
|
|
// OCI defines the reference name as only a tag excluding the
|
|
// repository. The containerd annotation contains the full image name
|
|
// since the tag is insufficient for correctly naming and referring to an
|
|
// image
|
|
var ociRef string
|
|
if spec, err := reference.Parse(name); err == nil {
|
|
ociRef = spec.Object
|
|
} else {
|
|
ociRef = name
|
|
}
|
|
|
|
return ociRef
|
|
}
|
|
|
|
// DigestTranslator creates a digest reference by adding the
|
|
// digest to an image name
|
|
func DigestTranslator(prefix string) func(digest.Digest) string {
|
|
return func(dgst digest.Digest) string {
|
|
return prefix + "@" + dgst.String()
|
|
}
|
|
}
|