forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmirror.go
678 lines (594 loc) · 23.2 KB
/
mirror.go
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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
package mirror
import (
"fmt"
"io"
"regexp"
"strings"
"github.com/docker/distribution"
"github.com/docker/distribution/manifest/manifestlist"
"github.com/docker/distribution/manifest/schema2"
"github.com/docker/distribution/reference"
"github.com/docker/distribution/registry/client"
"github.com/docker/distribution/registry/client/auth"
units "github.com/docker/go-units"
"github.com/golang/glog"
godigest "github.com/opencontainers/go-digest"
"github.com/spf13/cobra"
"k8s.io/client-go/rest"
kerrors "k8s.io/apimachinery/pkg/util/errors"
apirequest "k8s.io/apiserver/pkg/endpoints/request"
"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
imageapi "github.com/openshift/origin/pkg/image/apis/image"
"github.com/openshift/origin/pkg/image/registryclient"
"github.com/openshift/origin/pkg/image/registryclient/dockercredentials"
)
var (
mirrorDesc = templates.LongDesc(`
Mirror images from one image repository to another.
Accepts a list of arguments defining source images that should be pushed to the provided
destination image tag. The images are streamed from registry to registry without being stored
locally. The default docker credentials are used for authenticating to the registries.
When using S3 mirroring the region and bucket must be the first two segments after the host.
Mirroring will create the necessary metadata so that images can be pulled via tag or digest,
but listing manifests and tags will not be possible. You may also specify one or more
--s3-source-bucket parameters (as <bucket>/<path>) to designate buckets to look in to find
blobs (instead of uploading). The source bucket also supports the suffix "/[store]", which
will transform blob identifiers into the form the Docker registry uses on disk, allowing
you to mirror directly from an existing S3-backed Docker registry. Credentials for S3
may be stored in your docker credential file and looked up by host.
Images in manifest list format will be copied as-is unless you use --filter-by-os to restrict
the allowed images to copy in a manifest list. This flag has no effect on regular images.
Experimental: This command is under active development and may change without notice.`)
mirrorExample = templates.Examples(`
# Copy image to another tag
%[1]s myregistry.com/myimage:latest myregistry.com/myimage:stable
# Copy image to another registry
%[1]s myregistry.com/myimage:latest docker.io/myrepository/myimage:stable
# Copy image to S3 (pull from <bucket>.s3.amazonaws.com/image:latest)
%[1]s myregistry.com/myimage:latest s3://s3.amazonaws.com/<region>/<bucket>/image:latest
# Copy image to S3 without setting a tag (pull via @<digest>)
%[1]s myregistry.com/myimage:latest s3://s3.amazonaws.com/<region>/<bucket>/image
# Copy image to multiple locations
%[1]s myregistry.com/myimage:latest docker.io/myrepository/myimage:stable \
docker.io/myrepository/myimage:dev
# Copy multiple images
%[1]s myregistry.com/myimage:latest=myregistry.com/other:test \
myregistry.com/myimage:new=myregistry.com/other:target
`)
)
type DestinationType string
var (
DestinationRegistry DestinationType = "docker"
DestinationS3 DestinationType = "s3"
)
type Mapping struct {
Source imageapi.DockerImageReference
Destination imageapi.DockerImageReference
Type DestinationType
}
type pushOptions struct {
Out, ErrOut io.Writer
Mappings []Mapping
OSFilter *regexp.Regexp
FilterByOS string
Insecure bool
SkipMount bool
Force bool
AttemptS3BucketCopy []string
}
// schema2ManifestOnly specifically requests a manifest list first
var schema2ManifestOnly = distribution.WithManifestMediaTypes([]string{
manifestlist.MediaTypeManifestList,
schema2.MediaTypeManifest,
})
// NewCommandMirrorImage copies images from one location to another.
func NewCmdMirrorImage(name string, out, errOut io.Writer) *cobra.Command {
o := &pushOptions{}
cmd := &cobra.Command{
Use: "mirror SRC DST [DST ...]",
Short: "Mirror images from one repository to another",
Long: mirrorDesc,
Example: fmt.Sprintf(mirrorExample, name+" mirror"),
Run: func(c *cobra.Command, args []string) {
o.Out = out
o.ErrOut = errOut
kcmdutil.CheckErr(o.Complete(args))
kcmdutil.CheckErr(o.Run())
},
}
flag := cmd.Flags()
flag.BoolVar(&o.Insecure, "insecure", o.Insecure, "If true, connections may be made over HTTP")
flag.BoolVar(&o.SkipMount, "skip-mount", o.SkipMount, "If true, always push layers instead of cross-mounting them")
flag.StringVar(&o.FilterByOS, "filter-by-os", o.FilterByOS, "A regular expression to control which images are mirrored. Images will be passed as '<platform>/<architecture>[/<variant>]'.")
flag.BoolVar(&o.Force, "force", o.Force, "If true, attempt to write all contents.")
flag.StringSliceVar(&o.AttemptS3BucketCopy, "s3-source-bucket", o.AttemptS3BucketCopy, "A list of bucket/path locations on S3 that may contain already uploaded blobs. Add [store] to the end to use the Docker registry path convention.")
return cmd
}
func parseSource(ref string) (imageapi.DockerImageReference, error) {
src, err := imageapi.ParseDockerImageReference(ref)
if err != nil {
return src, fmt.Errorf("%q is not a valid image reference: %v", ref, err)
}
if len(src.Tag) == 0 && len(src.ID) == 0 {
return src, fmt.Errorf("you must specify a tag or digest for SRC")
}
return src, nil
}
func parseDestination(ref string) (imageapi.DockerImageReference, DestinationType, error) {
dstType := DestinationRegistry
switch {
case strings.HasPrefix(ref, "s3://"):
dstType = DestinationS3
ref = strings.TrimPrefix(ref, "s3://")
}
dst, err := imageapi.ParseDockerImageReference(ref)
if err != nil {
return dst, dstType, fmt.Errorf("%q is not a valid image reference: %v", ref, err)
}
if len(dst.ID) != 0 {
return dst, dstType, fmt.Errorf("you must specify a tag for DST or leave it blank to only push by digest")
}
return dst, dstType, nil
}
func (o *pushOptions) Complete(args []string) error {
var remainingArgs []string
overlap := make(map[string]string)
for _, s := range args {
parts := strings.SplitN(s, "=", 2)
if len(parts) != 2 {
remainingArgs = append(remainingArgs, s)
continue
}
if len(parts[0]) == 0 || len(parts[1]) == 0 {
return fmt.Errorf("all arguments must be valid SRC=DST mappings")
}
src, err := parseSource(parts[0])
if err != nil {
return err
}
dst, dstType, err := parseDestination(parts[1])
if err != nil {
return err
}
if _, ok := overlap[dst.String()]; ok {
return fmt.Errorf("each destination tag may only be specified once: %s", dst.String())
}
overlap[dst.String()] = src.String()
o.Mappings = append(o.Mappings, Mapping{Source: src, Destination: dst, Type: dstType})
}
switch {
case len(remainingArgs) == 0 && len(o.Mappings) > 0:
// user has input arguments
case len(remainingArgs) > 1 && len(o.Mappings) == 0:
src, err := parseSource(remainingArgs[0])
if err != nil {
return err
}
for i := 1; i < len(remainingArgs); i++ {
dst, dstType, err := parseDestination(remainingArgs[i])
if err != nil {
return err
}
if _, ok := overlap[dst.String()]; ok {
return fmt.Errorf("each destination tag may only be specified once: %s", dst.String())
}
overlap[dst.String()] = src.String()
o.Mappings = append(o.Mappings, Mapping{Source: src, Destination: dst, Type: dstType})
}
case len(remainingArgs) == 1 && len(o.Mappings) == 0:
return fmt.Errorf("all arguments must be valid SRC=DST mappings, or you must specify one SRC argument and one or more DST arguments")
default:
return fmt.Errorf("you must specify at least one source image to pull and the destination to push to as SRC=DST or SRC DST [DST2 DST3 ...]")
}
for _, mapping := range o.Mappings {
if mapping.Source.Equal(mapping.Destination) {
return fmt.Errorf("SRC and DST may not be the same")
}
}
pattern := o.FilterByOS
if len(pattern) > 0 {
re, err := regexp.Compile(pattern)
if err != nil {
return fmt.Errorf("--filter-by-os was not a valid regular expression: %v", err)
}
o.OSFilter = re
}
return nil
}
type key struct {
registry string
repository string
}
type destination struct {
t DestinationType
ref imageapi.DockerImageReference
tags []string
}
type pushTargets map[key]destination
type destinations struct {
ref imageapi.DockerImageReference
tags map[string]pushTargets
digests map[string]pushTargets
}
func (d destinations) mergeIntoDigests(srcDigest godigest.Digest, target pushTargets) {
srcKey := srcDigest.String()
current, ok := d.digests[srcKey]
if !ok {
d.digests[srcKey] = target
return
}
for repo, dst := range target {
existing, ok := current[repo]
if !ok {
current[repo] = dst
continue
}
existing.tags = append(existing.tags, dst.tags...)
}
}
type targetTree map[key]destinations
func buildTargetTree(mappings []Mapping) targetTree {
tree := make(targetTree)
for _, m := range mappings {
srcKey := key{registry: m.Source.Registry, repository: m.Source.RepositoryName()}
dstKey := key{registry: m.Destination.Registry, repository: m.Destination.RepositoryName()}
src, ok := tree[srcKey]
if !ok {
src.ref = m.Source.AsRepository()
src.digests = make(map[string]pushTargets)
src.tags = make(map[string]pushTargets)
tree[srcKey] = src
}
var current pushTargets
if tag := m.Source.Tag; len(tag) != 0 {
current = src.tags[tag]
if current == nil {
current = make(pushTargets)
src.tags[tag] = current
}
} else {
current = src.digests[m.Source.ID]
if current == nil {
current = make(pushTargets)
src.digests[m.Source.ID] = current
}
}
dst, ok := current[dstKey]
if !ok {
dst.ref = m.Destination.AsRepository()
dst.t = m.Type
}
if len(m.Destination.Tag) > 0 {
dst.tags = append(dst.tags, m.Destination.Tag)
}
current[dstKey] = dst
}
return tree
}
type retrieverError struct {
src, dst imageapi.DockerImageReference
err error
}
func (e retrieverError) Error() string {
return e.err.Error()
}
func (o *pushOptions) Repository(ctx apirequest.Context, context *registryclient.Context, creds auth.CredentialStore, t DestinationType, ref imageapi.DockerImageReference) (distribution.Repository, error) {
switch t {
case DestinationRegistry:
toClient := context.WithCredentials(creds)
return toClient.Repository(ctx, ref.DockerClientDefaults().RegistryURL(), ref.RepositoryName(), o.Insecure)
case DestinationS3:
driver := &s3Driver{
Creds: creds,
CopyFrom: o.AttemptS3BucketCopy,
}
url := ref.DockerClientDefaults().RegistryURL()
return driver.Repository(ctx, url, ref.RepositoryName(), o.Insecure)
default:
return nil, fmt.Errorf("unrecognized destination type %s", t)
}
}
// includeDescriptor returns true if the provided manifest should be included.
func (o *pushOptions) includeDescriptor(d *manifestlist.ManifestDescriptor) bool {
if o.OSFilter == nil {
return true
}
if len(d.Platform.Variant) > 0 {
return o.OSFilter.MatchString(fmt.Sprintf("%s/%s/%s", d.Platform.OS, d.Platform.Architecture, d.Platform.Variant))
}
return o.OSFilter.MatchString(fmt.Sprintf("%s/%s", d.Platform.OS, d.Platform.Architecture))
}
// ErrAlreadyExists may be returned by the blob Create function to indicate that the blob already exists.
var ErrAlreadyExists = fmt.Errorf("blob already exists in the target location")
func (o *pushOptions) Run() error {
tree := buildTargetTree(o.Mappings)
creds := dockercredentials.NewLocal()
ctx := apirequest.NewContext()
rt, err := rest.TransportFor(&rest.Config{})
if err != nil {
return err
}
insecureRT, err := rest.TransportFor(&rest.Config{TLSClientConfig: rest.TLSClientConfig{Insecure: true}})
if err != nil {
return err
}
srcClient := registryclient.NewContext(rt, insecureRT).WithCredentials(creds)
toContext := registryclient.NewContext(rt, insecureRT).WithActions("pull", "push")
var errs []error
for _, src := range tree {
srcRepo, err := srcClient.Repository(ctx, src.ref.DockerClientDefaults().RegistryURL(), src.ref.RepositoryName(), o.Insecure)
if err != nil {
errs = append(errs, retrieverError{err: fmt.Errorf("unable to connect to %s: %v", src.ref, err), src: src.ref})
continue
}
manifests, err := srcRepo.Manifests(ctx)
if err != nil {
errs = append(errs, retrieverError{src: src.ref, err: fmt.Errorf("unable to access source image %s manifests: %v", src.ref, err)})
continue
}
var tagErrs []retrieverError
var digestErrs []retrieverError
// convert source tags to digests
for srcTag, pushTargets := range src.tags {
desc, err := srcRepo.Tags(ctx).Get(ctx, srcTag)
if err != nil {
tagErrs = append(tagErrs, retrieverError{src: src.ref, err: fmt.Errorf("unable to retrieve source image %s by tag: %v", src.ref, err)})
continue
}
srcDigest := desc.Digest
glog.V(3).Infof("Resolved source image %s:%s to %s\n", src.ref, srcTag, srcDigest)
src.mergeIntoDigests(srcDigest, pushTargets)
}
canonicalFrom := srcRepo.Named()
for srcDigestString, pushTargets := range src.digests {
// load the manifest
srcDigest := godigest.Digest(srcDigestString)
srcManifest, err := manifests.Get(ctx, godigest.Digest(srcDigest), schema2ManifestOnly)
if err != nil {
digestErrs = append(digestErrs, retrieverError{src: src.ref, err: fmt.Errorf("unable to retrieve source image %s manifest: %v", src.ref, err)})
continue
}
// filter or load manifest list as appropriate
srcManifests, srcManifest, srcDigest, err := processManifestList(ctx, srcDigest, srcManifest, manifests, src.ref, o.includeDescriptor)
if err != nil {
digestErrs = append(digestErrs, retrieverError{src: src.ref, err: err})
continue
}
if len(srcManifests) == 0 {
fmt.Fprintf(o.ErrOut, "info: Filtered all images from %s, skipping\n", src.ref)
continue
}
for _, dst := range pushTargets {
// if we are going to be using cross repository mount, get a token that covers the src
if src.ref.Registry == dst.ref.Registry {
toContext = toContext.WithScopes(auth.RepositoryScope{Repository: src.ref.RepositoryName(), Actions: []string{"pull"}})
}
toRepo, err := o.Repository(ctx, toContext, creds, dst.t, dst.ref)
if err != nil {
digestErrs = append(digestErrs, retrieverError{src: src.ref, dst: dst.ref, err: fmt.Errorf("unable to connect to %s: %v", dst.ref, err)})
continue
}
canonicalTo := toRepo.Named()
toManifests, err := toRepo.Manifests(ctx)
if err != nil {
digestErrs = append(digestErrs, retrieverError{src: src.ref, dst: dst.ref, err: fmt.Errorf("unable to access destination image %s manifests: %v", src.ref, err)})
continue
}
var mustCopyLayers bool
switch {
case o.Force:
mustCopyLayers = true
case src.ref.Registry == dst.ref.Registry && canonicalFrom.String() == canonicalTo.String():
// if the source and destination repos are the same, we don't need to copy layers unless forced
default:
if _, err := toManifests.Get(ctx, srcDigest); err != nil {
mustCopyLayers = true
} else {
glog.V(4).Infof("Manifest exists in %s, no need to copy layers without --force", dst.ref)
}
}
if mustCopyLayers {
// upload all the blobs
toBlobs := toRepo.Blobs(ctx)
srcBlobs := srcRepo.Blobs(ctx)
// upload the each manifest
for _, srcManifest := range srcManifests {
switch srcManifest.(type) {
case *schema2.DeserializedManifest:
case *manifestlist.DeserializedManifestList:
// we do not need to upload layers in a manifestlist
continue
default:
digestErrs = append(digestErrs, retrieverError{src: src.ref, dst: dst.ref, err: fmt.Errorf("the manifest type %T is not supported", srcManifest)})
continue
}
for _, blob := range srcManifest.References() {
blobSource, err := reference.WithDigest(canonicalFrom, blob.Digest)
if err != nil {
digestErrs = append(digestErrs, retrieverError{src: src.ref, dst: dst.ref, err: fmt.Errorf("unexpected error building named digest: %v", err)})
continue
}
// if we aren't forcing upload, skip the blob copy
if !o.Force {
_, err := toBlobs.Stat(ctx, blob.Digest)
if err == nil {
// blob exists, skip
glog.V(5).Infof("Server reports blob exists %#v", blob)
continue
}
if err != distribution.ErrBlobUnknown {
glog.V(5).Infof("Server was unable to check whether blob exists %s: %v", blob.Digest, err)
}
}
var options []distribution.BlobCreateOption
if !o.SkipMount {
options = append(options, client.WithMountFrom(blobSource), WithDescriptor(blob))
}
w, err := toBlobs.Create(ctx, options...)
// no-op
if err == ErrAlreadyExists {
glog.V(5).Infof("Blob already exists %#v", blob)
continue
}
// mount successful
if ebm, ok := err.(distribution.ErrBlobMounted); ok {
glog.V(5).Infof("Blob mounted %#v", blob)
if ebm.From.Digest() != blob.Digest {
digestErrs = append(digestErrs, retrieverError{src: src.ref, dst: dst.ref, err: fmt.Errorf("unable to push %s: tried to mount blob %s src source and got back a different digest %s", src.ref, blob.Digest, ebm.From.Digest())})
break
}
continue
}
if err != nil {
digestErrs = append(digestErrs, retrieverError{src: src.ref, dst: dst.ref, err: fmt.Errorf("unable to upload blob %s to %s: %v", blob.Digest, dst.ref, err)})
break
}
err = func() error {
glog.V(5).Infof("Uploading blob %s", blob.Digest)
defer w.Cancel(ctx)
r, err := srcBlobs.Open(ctx, blob.Digest)
if err != nil {
return fmt.Errorf("unable to open source layer %s to copy to %s: %v", blob.Digest, dst.ref, err)
}
defer r.Close()
switch dst.t {
case DestinationS3:
fmt.Fprintf(o.ErrOut, "uploading: s3://%s %s %s\n", dst.ref, blob.Digest, units.BytesSize(float64(blob.Size)))
default:
fmt.Fprintf(o.ErrOut, "uploading: %s %s %s\n", dst.ref, blob.Digest, units.BytesSize(float64(blob.Size)))
}
n, err := w.ReadFrom(r)
if err != nil {
return fmt.Errorf("unable to copy layer %s to %s: %v", blob.Digest, dst.ref, err)
}
if n != blob.Size {
fmt.Fprintf(o.ErrOut, "warning: Layer size mismatch for %s: had %d, wrote %d\n", blob.Digest, blob.Size, n)
}
_, err = w.Commit(ctx, blob)
return err
}()
if err != nil {
_, srcBody, _ := srcManifest.Payload()
srcManifestDigest := godigest.Canonical.FromBytes(srcBody)
if srcManifestDigest == srcDigest {
digestErrs = append(digestErrs, retrieverError{src: src.ref, dst: dst.ref, err: fmt.Errorf("failed to commit blob %s from manifest %s to %s: %v", blob.Digest, srcManifestDigest, dst.ref, err)})
} else {
digestErrs = append(digestErrs, retrieverError{src: src.ref, dst: dst.ref, err: fmt.Errorf("failed to commit blob %s from manifest %s in manifest list %s to %s: %v", blob.Digest, srcManifestDigest, srcDigest, dst.ref, err)})
}
break
}
}
}
}
if len(digestErrs) > 0 {
continue
}
// upload and tag the manifest
for _, tag := range dst.tags {
toDigest, err := toManifests.Put(ctx, srcManifest, distribution.WithTag(tag))
if err != nil {
digestErrs = append(digestErrs, retrieverError{src: src.ref, dst: dst.ref, err: fmt.Errorf("unable to push manifest to %s: %v", dst.ref, err)})
continue
}
switch dst.t {
case DestinationS3:
fmt.Fprintf(o.Out, "%s s3://%s:%s\n", toDigest, dst.ref, tag)
default:
fmt.Fprintf(o.Out, "%s %s:%s\n", toDigest, dst.ref, tag)
}
}
if len(dst.tags) == 0 {
toDigest, err := toManifests.Put(ctx, srcManifest)
if err != nil {
digestErrs = append(digestErrs, retrieverError{src: src.ref, dst: dst.ref, err: fmt.Errorf("unable to push manifest to %s: %v", dst.ref, err)})
continue
}
switch dst.t {
case DestinationS3:
fmt.Fprintf(o.Out, "%s s3://%s\n", toDigest, dst.ref)
default:
fmt.Fprintf(o.Out, "%s %s\n", toDigest, dst.ref)
}
}
}
}
for _, err := range append(tagErrs, digestErrs...) {
errs = append(errs, err)
}
}
return kerrors.NewAggregate(errs)
}
func processManifestList(ctx apirequest.Context, srcDigest godigest.Digest, srcManifest distribution.Manifest, manifests distribution.ManifestService, ref imageapi.DockerImageReference, filterFn func(*manifestlist.ManifestDescriptor) bool) ([]distribution.Manifest, distribution.Manifest, godigest.Digest, error) {
var srcManifests []distribution.Manifest
switch t := srcManifest.(type) {
case *manifestlist.DeserializedManifestList:
manifestDigest := srcDigest
manifestList := t
filtered := make([]manifestlist.ManifestDescriptor, 0, len(t.Manifests))
for _, manifest := range t.Manifests {
if !filterFn(&manifest) {
glog.V(5).Infof("Skipping image for %#v from %s", manifest.Platform, ref)
continue
}
glog.V(5).Infof("Including image for %#v from %s", manifest.Platform, ref)
filtered = append(filtered, manifest)
}
if len(filtered) == 0 {
return nil, nil, "", nil
}
// if we're filtering the manifest list, update the source manifest and digest
if len(filtered) != len(t.Manifests) {
var err error
t, err = manifestlist.FromDescriptors(filtered)
if err != nil {
return nil, nil, "", fmt.Errorf("unable to filter source image %s manifest list: %v", ref, err)
}
_, body, err := t.Payload()
if err != nil {
return nil, nil, "", fmt.Errorf("unable to filter source image %s manifest list (bad payload): %v", ref, err)
}
manifestList = t
manifestDigest = srcDigest.Algorithm().FromBytes(body)
glog.V(5).Infof("Filtered manifest list to new digest %s:\n%s", manifestDigest, body)
}
for i, manifest := range t.Manifests {
childManifest, err := manifests.Get(ctx, manifest.Digest, distribution.WithTag(manifestlist.MediaTypeManifestList), distribution.WithTag(schema2.MediaTypeManifest))
if err != nil {
return nil, nil, "", fmt.Errorf("unable to retrieve source image %s manifest #%d from manifest list: %v", ref, i+1, err)
}
srcManifests = append(srcManifests, childManifest)
}
switch {
case len(srcManifests) == 1:
_, body, err := srcManifests[0].Payload()
if err != nil {
return nil, nil, "", fmt.Errorf("unable to convert source image %s manifest list to single manifest: %v", ref, err)
}
manifestDigest := srcDigest.Algorithm().FromBytes(body)
glog.V(5).Infof("Used only one manifest from the list %s:\n%s", manifestDigest, body)
return srcManifests, srcManifests[0], manifestDigest, nil
default:
return append(srcManifests, manifestList), manifestList, manifestDigest, nil
}
default:
return []distribution.Manifest{srcManifest}, srcManifest, srcDigest, nil
}
}
type optionFunc func(interface{}) error
func (f optionFunc) Apply(v interface{}) error {
return f(v)
}
// WithDescriptor returns a BlobCreateOption which provides the expected blob metadata.
func WithDescriptor(desc distribution.Descriptor) distribution.BlobCreateOption {
return optionFunc(func(v interface{}) error {
opts, ok := v.(*distribution.CreateOptions)
if !ok {
return fmt.Errorf("unexpected options type: %T", v)
}
if opts.Mount.Stat == nil {
opts.Mount.Stat = &desc
}
return nil
})
}