mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-09 21:17:09 +08:00
vendor: github.com/moby/buildkit 6bd81372ad6f (v0.13.0-dev)
full diff: 6bd81372ad...d6e142600e
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
14
vendor/github.com/moby/buildkit/exporter/containerimage/exptypes/parse.go
generated
vendored
14
vendor/github.com/moby/buildkit/exporter/containerimage/exptypes/parse.go
generated
vendored
@ -17,6 +17,18 @@ func ParsePlatforms(meta map[string][]byte) (Platforms, error) {
|
||||
return Platforms{}, errors.Wrapf(err, "failed to parse platforms passed to provenance processor")
|
||||
}
|
||||
}
|
||||
if len(ps.Platforms) == 0 {
|
||||
return Platforms{}, errors.Errorf("invalid empty platforms index for exporter")
|
||||
}
|
||||
for i, p := range ps.Platforms {
|
||||
if p.ID == "" {
|
||||
return Platforms{}, errors.Errorf("invalid empty platform key for exporter")
|
||||
}
|
||||
if p.Platform.OS == "" || p.Platform.Architecture == "" {
|
||||
return Platforms{}, errors.Errorf("invalid platform value %v for exporter", p.Platform)
|
||||
}
|
||||
ps.Platforms[i].Platform = platforms.Normalize(p.Platform)
|
||||
}
|
||||
return ps, nil
|
||||
}
|
||||
|
||||
@ -36,6 +48,8 @@ func ParsePlatforms(meta map[string][]byte) (Platforms, error) {
|
||||
OSFeatures: img.OSFeatures,
|
||||
Variant: img.Variant,
|
||||
}
|
||||
} else if img.OS != "" || img.Architecture != "" {
|
||||
return Platforms{}, errors.Errorf("invalid image config: os and architecture must be specified together")
|
||||
}
|
||||
}
|
||||
p = platforms.Normalize(p)
|
||||
|
6
vendor/github.com/moby/buildkit/frontend/gateway/client/attestation.go
generated
vendored
6
vendor/github.com/moby/buildkit/frontend/gateway/client/attestation.go
generated
vendored
@ -30,8 +30,14 @@ func AttestationToPB[T any](a *result.Attestation[T]) (*pb.Attestation, error) {
|
||||
}
|
||||
|
||||
func AttestationFromPB[T any](a *pb.Attestation) (*result.Attestation[T], error) {
|
||||
if a == nil {
|
||||
return nil, errors.Errorf("invalid nil attestation")
|
||||
}
|
||||
subjects := make([]result.InTotoSubject, len(a.InTotoSubjects))
|
||||
for i, subject := range a.InTotoSubjects {
|
||||
if subject == nil {
|
||||
return nil, errors.Errorf("invalid nil attestation subject")
|
||||
}
|
||||
subjects[i] = result.InTotoSubject{
|
||||
Kind: subject.Kind,
|
||||
Name: subject.Name,
|
||||
|
3
vendor/github.com/moby/buildkit/sourcepolicy/matcher.go
generated
vendored
3
vendor/github.com/moby/buildkit/sourcepolicy/matcher.go
generated
vendored
@ -10,6 +10,9 @@ import (
|
||||
|
||||
func match(ctx context.Context, src *selectorCache, ref string, attrs map[string]string) (bool, error) {
|
||||
for _, c := range src.Constraints {
|
||||
if c == nil {
|
||||
return false, errors.Errorf("invalid nil constraint for %v", src)
|
||||
}
|
||||
switch c.Condition {
|
||||
case spb.AttrMatch_EQUAL:
|
||||
if attrs[c.Key] != c.Value {
|
||||
|
20
vendor/github.com/moby/buildkit/util/entitlements/entitlements.go
generated
vendored
20
vendor/github.com/moby/buildkit/util/entitlements/entitlements.go
generated
vendored
@ -58,3 +58,23 @@ func (s Set) Allowed(e Entitlement) bool {
|
||||
_, ok := s[e]
|
||||
return ok
|
||||
}
|
||||
|
||||
func (s Set) Check(v Values) error {
|
||||
if v.NetworkHost {
|
||||
if !s.Allowed(EntitlementNetworkHost) {
|
||||
return errors.Errorf("%s is not allowed", EntitlementNetworkHost)
|
||||
}
|
||||
}
|
||||
|
||||
if v.SecurityInsecure {
|
||||
if !s.Allowed(EntitlementSecurityInsecure) {
|
||||
return errors.Errorf("%s is not allowed", EntitlementSecurityInsecure)
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type Values struct {
|
||||
NetworkHost bool
|
||||
SecurityInsecure bool
|
||||
}
|
||||
|
9
vendor/github.com/moby/buildkit/util/gitutil/git_url.go
generated
vendored
9
vendor/github.com/moby/buildkit/util/gitutil/git_url.go
generated
vendored
@ -96,6 +96,15 @@ func ParseURL(remote string) (*GitURL, error) {
|
||||
return nil, ErrUnknownProtocol
|
||||
}
|
||||
|
||||
func IsGitTransport(remote string) bool {
|
||||
if proto := protoRegexp.FindString(remote); proto != "" {
|
||||
proto = strings.ToLower(strings.TrimSuffix(proto, "://"))
|
||||
_, ok := supportedProtos[proto]
|
||||
return ok
|
||||
}
|
||||
return sshutil.IsImplicitSSHTransport(remote)
|
||||
}
|
||||
|
||||
func fromURL(url *url.URL) *GitURL {
|
||||
withoutFragment := *url
|
||||
withoutFragment.Fragment = ""
|
||||
|
61
vendor/github.com/moby/buildkit/util/leaseutil/manager.go
generated
vendored
61
vendor/github.com/moby/buildkit/util/leaseutil/manager.go
generated
vendored
@ -2,10 +2,12 @@ package leaseutil
|
||||
|
||||
import (
|
||||
"context"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/containerd/containerd/leases"
|
||||
"github.com/containerd/containerd/namespaces"
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
func WithLease(ctx context.Context, ls leases.Manager, opts ...leases.Opt) (context.Context, func(context.Context) error, error) {
|
||||
@ -16,15 +18,66 @@ func WithLease(ctx context.Context, ls leases.Manager, opts ...leases.Opt) (cont
|
||||
}, nil
|
||||
}
|
||||
|
||||
l, err := ls.Create(ctx, append([]leases.Opt{leases.WithRandomID(), leases.WithExpiration(time.Hour)}, opts...)...)
|
||||
lr, ctx, err := NewLease(ctx, ls, opts...)
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
|
||||
return ctx, func(ctx context.Context) error {
|
||||
return ls.Delete(ctx, lr.l)
|
||||
}, nil
|
||||
}
|
||||
|
||||
func NewLease(ctx context.Context, lm leases.Manager, opts ...leases.Opt) (*LeaseRef, context.Context, error) {
|
||||
l, err := lm.Create(ctx, append([]leases.Opt{leases.WithRandomID(), leases.WithExpiration(time.Hour)}, opts...)...)
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
|
||||
ctx = leases.WithLease(ctx, l.ID)
|
||||
return ctx, func(ctx context.Context) error {
|
||||
return ls.Delete(ctx, l)
|
||||
}, nil
|
||||
return &LeaseRef{lm: lm, l: l}, ctx, nil
|
||||
}
|
||||
|
||||
type LeaseRef struct {
|
||||
lm leases.Manager
|
||||
l leases.Lease
|
||||
|
||||
once sync.Once
|
||||
resources []leases.Resource
|
||||
err error
|
||||
}
|
||||
|
||||
func (l *LeaseRef) Discard() error {
|
||||
return l.lm.Delete(context.Background(), l.l)
|
||||
}
|
||||
|
||||
func (l *LeaseRef) Adopt(ctx context.Context) error {
|
||||
l.once.Do(func() {
|
||||
resources, err := l.lm.ListResources(ctx, l.l)
|
||||
if err != nil {
|
||||
l.err = err
|
||||
return
|
||||
}
|
||||
l.resources = resources
|
||||
})
|
||||
if l.err != nil {
|
||||
return l.err
|
||||
}
|
||||
currentID, ok := leases.FromContext(ctx)
|
||||
if !ok {
|
||||
return errors.Errorf("missing lease requirement for adopt")
|
||||
}
|
||||
for _, r := range l.resources {
|
||||
if err := l.lm.AddResource(ctx, leases.Lease{ID: currentID}, r); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
if len(l.resources) == 0 {
|
||||
l.Discard()
|
||||
return nil
|
||||
}
|
||||
go l.Discard()
|
||||
return nil
|
||||
}
|
||||
|
||||
func MakeTemporary(l *leases.Lease) error {
|
||||
|
Reference in New Issue
Block a user