2015-12-17 01:26:13 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2017-08-11 22:31:16 +00:00
|
|
|
"context"
|
|
|
|
"encoding/json"
|
2015-12-17 01:26:13 +00:00
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/docker/distribution"
|
2017-08-11 22:31:16 +00:00
|
|
|
dcontext "github.com/docker/distribution/context"
|
2015-12-17 01:26:13 +00:00
|
|
|
"github.com/docker/distribution/manifest/manifestlist"
|
2016-12-17 00:28:34 +00:00
|
|
|
"github.com/opencontainers/go-digest"
|
2015-12-17 01:26:13 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// manifestListHandler is a ManifestHandler that covers schema2 manifest lists.
|
|
|
|
type manifestListHandler struct {
|
2016-07-20 22:09:11 +00:00
|
|
|
repository distribution.Repository
|
|
|
|
blobStore distribution.BlobStore
|
2015-12-17 01:26:13 +00:00
|
|
|
ctx context.Context
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ ManifestHandler = &manifestListHandler{}
|
|
|
|
|
|
|
|
func (ms *manifestListHandler) Unmarshal(ctx context.Context, dgst digest.Digest, content []byte) (distribution.Manifest, error) {
|
2017-08-11 22:31:16 +00:00
|
|
|
dcontext.GetLogger(ms.ctx).Debug("(*manifestListHandler).Unmarshal")
|
2015-12-17 01:26:13 +00:00
|
|
|
|
|
|
|
var m manifestlist.DeserializedManifestList
|
|
|
|
if err := json.Unmarshal(content, &m); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &m, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ms *manifestListHandler) Put(ctx context.Context, manifestList distribution.Manifest, skipDependencyVerification bool) (digest.Digest, error) {
|
2017-08-11 22:31:16 +00:00
|
|
|
dcontext.GetLogger(ms.ctx).Debug("(*manifestListHandler).Put")
|
2015-12-17 01:26:13 +00:00
|
|
|
|
|
|
|
m, ok := manifestList.(*manifestlist.DeserializedManifestList)
|
|
|
|
if !ok {
|
|
|
|
return "", fmt.Errorf("wrong type put to manifestListHandler: %T", manifestList)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ms.verifyManifest(ms.ctx, *m, skipDependencyVerification); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
mt, payload, err := m.Payload()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
revision, err := ms.blobStore.Put(ctx, mt, payload)
|
|
|
|
if err != nil {
|
2017-08-11 22:31:16 +00:00
|
|
|
dcontext.GetLogger(ctx).Errorf("error putting payload into blobstore: %v", err)
|
2015-12-17 01:26:13 +00:00
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return revision.Digest, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// verifyManifest ensures that the manifest content is valid from the
|
|
|
|
// perspective of the registry. As a policy, the registry only tries to
|
|
|
|
// store valid content, leaving trust policies of that content up to
|
|
|
|
// consumers.
|
|
|
|
func (ms *manifestListHandler) verifyManifest(ctx context.Context, mnfst manifestlist.DeserializedManifestList, skipDependencyVerification bool) error {
|
|
|
|
var errs distribution.ErrManifestVerification
|
|
|
|
|
|
|
|
if !skipDependencyVerification {
|
|
|
|
// This manifest service is different from the blob service
|
|
|
|
// returned by Blob. It uses a linked blob store to ensure that
|
|
|
|
// only manifests are accessible.
|
2016-07-20 22:09:11 +00:00
|
|
|
|
2015-12-17 01:26:13 +00:00
|
|
|
manifestService, err := ms.repository.Manifests(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, manifestDescriptor := range mnfst.References() {
|
|
|
|
exists, err := manifestService.Exists(ctx, manifestDescriptor.Digest)
|
|
|
|
if err != nil && err != distribution.ErrBlobUnknown {
|
|
|
|
errs = append(errs, err)
|
|
|
|
}
|
|
|
|
if err != nil || !exists {
|
|
|
|
// On error here, we always append unknown blob errors.
|
|
|
|
errs = append(errs, distribution.ErrManifestBlobUnknown{Digest: manifestDescriptor.Digest})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(errs) != 0 {
|
|
|
|
return errs
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|