|
| 1 | +package server |
| 2 | + |
| 3 | +import ( |
| 4 | + "encoding/json" |
| 5 | + "fmt" |
| 6 | + "path" |
| 7 | + |
| 8 | + "github.com/docker/distribution" |
| 9 | + "github.com/docker/distribution/context" |
| 10 | + "github.com/docker/distribution/manifest/schema1" |
| 11 | + "github.com/docker/distribution/reference" |
| 12 | + "github.com/docker/libtrust" |
| 13 | + |
| 14 | + "k8s.io/kubernetes/pkg/util/sets" |
| 15 | + |
| 16 | + imageapi "github.com/openshift/origin/pkg/image/api" |
| 17 | +) |
| 18 | + |
| 19 | +func unmarshalManifestSchema1(content []byte, signatures [][]byte) (distribution.Manifest, error) { |
| 20 | + // prefer signatures from the manifest |
| 21 | + if _, err := libtrust.ParsePrettySignature(content, "signatures"); err == nil { |
| 22 | + sm := schema1.SignedManifest{Canonical: content} |
| 23 | + if err = json.Unmarshal(content, &sm); err == nil { |
| 24 | + return &sm, nil |
| 25 | + } |
| 26 | + } |
| 27 | + |
| 28 | + jsig, err := libtrust.NewJSONSignature(content, signatures...) |
| 29 | + if err != nil { |
| 30 | + return nil, err |
| 31 | + } |
| 32 | + |
| 33 | + // Extract the pretty JWS |
| 34 | + content, err = jsig.PrettySignature("signatures") |
| 35 | + if err != nil { |
| 36 | + return nil, err |
| 37 | + } |
| 38 | + |
| 39 | + var sm schema1.SignedManifest |
| 40 | + if err = json.Unmarshal(content, &sm); err != nil { |
| 41 | + return nil, err |
| 42 | + } |
| 43 | + return &sm, err |
| 44 | +} |
| 45 | + |
| 46 | +type manifestSchema1Handler struct { |
| 47 | + repo *repository |
| 48 | + manifest *schema1.SignedManifest |
| 49 | +} |
| 50 | + |
| 51 | +var _ ManifestHandler = &manifestSchema1Handler{} |
| 52 | + |
| 53 | +func (h *manifestSchema1Handler) FillImageMetadata(ctx context.Context, image *imageapi.Image) error { |
| 54 | + signatures, err := h.manifest.Signatures() |
| 55 | + if err != nil { |
| 56 | + return err |
| 57 | + } |
| 58 | + |
| 59 | + for _, signDigest := range signatures { |
| 60 | + image.DockerImageSignatures = append(image.DockerImageSignatures, signDigest) |
| 61 | + } |
| 62 | + |
| 63 | + if err := imageapi.ImageWithMetadata(image); err != nil { |
| 64 | + return err |
| 65 | + } |
| 66 | + |
| 67 | + refs := h.manifest.References() |
| 68 | + |
| 69 | + blobSet := sets.NewString() |
| 70 | + image.DockerImageMetadata.Size = int64(0) |
| 71 | + |
| 72 | + blobs := h.repo.Blobs(ctx) |
| 73 | + for i := range image.DockerImageLayers { |
| 74 | + layer := &image.DockerImageLayers[i] |
| 75 | + // DockerImageLayers represents h.manifest.Manifest.FSLayers in reversed order |
| 76 | + desc, err := blobs.Stat(ctx, refs[len(image.DockerImageLayers)-i-1].Digest) |
| 77 | + if err != nil { |
| 78 | + context.GetLogger(ctx).Errorf("failed to stat blob %s of image %s", layer.Name, image.DockerImageReference) |
| 79 | + return err |
| 80 | + } |
| 81 | + if layer.MediaType == "" { |
| 82 | + if desc.MediaType != "" { |
| 83 | + layer.MediaType = desc.MediaType |
| 84 | + } else { |
| 85 | + layer.MediaType = schema1.MediaTypeManifestLayer |
| 86 | + } |
| 87 | + } |
| 88 | + layer.LayerSize = desc.Size |
| 89 | + // count empty layer just once (empty layer may actually have non-zero size) |
| 90 | + if !blobSet.Has(layer.Name) { |
| 91 | + image.DockerImageMetadata.Size += desc.Size |
| 92 | + blobSet.Insert(layer.Name) |
| 93 | + } |
| 94 | + } |
| 95 | + |
| 96 | + return nil |
| 97 | +} |
| 98 | + |
| 99 | +func (h *manifestSchema1Handler) Manifest() distribution.Manifest { |
| 100 | + return h.manifest |
| 101 | +} |
| 102 | + |
| 103 | +func (h *manifestSchema1Handler) Payload() (mediaType string, payload []byte, canonical []byte, err error) { |
| 104 | + mt, payload, err := h.manifest.Payload() |
| 105 | + return mt, payload, h.manifest.Canonical, err |
| 106 | +} |
| 107 | + |
| 108 | +func (h *manifestSchema1Handler) Verify(ctx context.Context, skipDependencyVerification bool) error { |
| 109 | + var errs distribution.ErrManifestVerification |
| 110 | + |
| 111 | + // we want to verify that referenced blobs exist locally - thus using upstream repository object directly |
| 112 | + repo := h.repo.Repository |
| 113 | + |
| 114 | + if len(path.Join(h.repo.registryAddr, h.manifest.Name)) > reference.NameTotalLengthMax { |
| 115 | + errs = append(errs, |
| 116 | + distribution.ErrManifestNameInvalid{ |
| 117 | + Name: h.manifest.Name, |
| 118 | + Reason: fmt.Errorf("<registry-host>/<manifest-name> must not be more than %d characters", reference.NameTotalLengthMax), |
| 119 | + }) |
| 120 | + } |
| 121 | + |
| 122 | + if !reference.NameRegexp.MatchString(h.manifest.Name) { |
| 123 | + errs = append(errs, |
| 124 | + distribution.ErrManifestNameInvalid{ |
| 125 | + Name: h.manifest.Name, |
| 126 | + Reason: fmt.Errorf("invalid manifest name format"), |
| 127 | + }) |
| 128 | + } |
| 129 | + |
| 130 | + if len(h.manifest.History) != len(h.manifest.FSLayers) { |
| 131 | + errs = append(errs, fmt.Errorf("mismatched history and fslayer cardinality %d != %d", |
| 132 | + len(h.manifest.History), len(h.manifest.FSLayers))) |
| 133 | + } |
| 134 | + |
| 135 | + if _, err := schema1.Verify(h.manifest); err != nil { |
| 136 | + switch err { |
| 137 | + case libtrust.ErrMissingSignatureKey, libtrust.ErrInvalidJSONContent, libtrust.ErrMissingSignatureKey: |
| 138 | + errs = append(errs, distribution.ErrManifestUnverified{}) |
| 139 | + default: |
| 140 | + if err.Error() == "invalid signature" { |
| 141 | + errs = append(errs, distribution.ErrManifestUnverified{}) |
| 142 | + } else { |
| 143 | + errs = append(errs, err) |
| 144 | + } |
| 145 | + } |
| 146 | + } |
| 147 | + |
| 148 | + if skipDependencyVerification { |
| 149 | + if len(errs) > 0 { |
| 150 | + return errs |
| 151 | + } |
| 152 | + return nil |
| 153 | + } |
| 154 | + |
| 155 | + for _, fsLayer := range h.manifest.References() { |
| 156 | + _, err := repo.Blobs(ctx).Stat(ctx, fsLayer.Digest) |
| 157 | + if err != nil { |
| 158 | + if err != distribution.ErrBlobUnknown { |
| 159 | + errs = append(errs, err) |
| 160 | + } |
| 161 | + |
| 162 | + // On error here, we always append unknown blob errors. |
| 163 | + errs = append(errs, distribution.ErrManifestBlobUnknown{Digest: fsLayer.Digest}) |
| 164 | + } |
| 165 | + } |
| 166 | + |
| 167 | + if len(errs) > 0 { |
| 168 | + return errs |
| 169 | + } |
| 170 | + return nil |
| 171 | +} |
0 commit comments