2016-01-19 22:26:15 +00:00
|
|
|
package registry
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/docker/distribution"
|
|
|
|
"github.com/docker/distribution/context"
|
|
|
|
"github.com/docker/distribution/digest"
|
|
|
|
"github.com/docker/distribution/manifest/schema1"
|
|
|
|
"github.com/docker/distribution/manifest/schema2"
|
|
|
|
"github.com/docker/distribution/reference"
|
|
|
|
"github.com/docker/distribution/registry/storage"
|
|
|
|
"github.com/docker/distribution/registry/storage/driver"
|
|
|
|
"github.com/docker/distribution/registry/storage/driver/factory"
|
2016-03-24 23:03:25 +00:00
|
|
|
"github.com/docker/libtrust"
|
2016-01-19 22:26:15 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2016-03-24 23:03:25 +00:00
|
|
|
func emit(format string, a ...interface{}) {
|
2016-03-23 23:42:50 +00:00
|
|
|
if dryRun {
|
2016-03-29 17:47:22 +00:00
|
|
|
fmt.Printf(format+"\n", a...)
|
2016-03-23 23:42:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-24 23:03:25 +00:00
|
|
|
func markAndSweep(ctx context.Context, storageDriver driver.StorageDriver, registry distribution.Namespace) error {
|
2016-01-19 22:26:15 +00:00
|
|
|
|
|
|
|
repositoryEnumerator, ok := registry.(distribution.RepositoryEnumerator)
|
|
|
|
if !ok {
|
2016-03-30 18:35:24 +00:00
|
|
|
return fmt.Errorf("unable to convert Namespace to RepositoryEnumerator")
|
2016-01-19 22:26:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// mark
|
|
|
|
markSet := make(map[digest.Digest]struct{})
|
2016-03-24 23:03:25 +00:00
|
|
|
err := repositoryEnumerator.Enumerate(ctx, func(repoName string) error {
|
|
|
|
emit(repoName)
|
2016-03-23 23:42:50 +00:00
|
|
|
|
2016-01-19 22:26:15 +00:00
|
|
|
var err error
|
|
|
|
named, err := reference.ParseNamed(repoName)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to parse repo name %s: %v", repoName, err)
|
|
|
|
}
|
|
|
|
repository, err := registry.Repository(ctx, named)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to construct repository: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
manifestService, err := repository.Manifests(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to construct manifest service: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
manifestEnumerator, ok := manifestService.(distribution.ManifestEnumerator)
|
|
|
|
if !ok {
|
2016-03-30 18:35:24 +00:00
|
|
|
return fmt.Errorf("unable to convert ManifestService into ManifestEnumerator")
|
2016-01-19 22:26:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err = manifestEnumerator.Enumerate(ctx, func(dgst digest.Digest) error {
|
2016-03-24 23:03:25 +00:00
|
|
|
// Mark the manifest's blob
|
|
|
|
emit("%s: marking manifest %s ", repoName, dgst)
|
2016-01-19 22:26:15 +00:00
|
|
|
markSet[dgst] = struct{}{}
|
|
|
|
|
|
|
|
manifest, err := manifestService.Get(ctx, dgst)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to retrieve manifest for digest %v: %v", dgst, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
descriptors := manifest.References()
|
|
|
|
for _, descriptor := range descriptors {
|
|
|
|
markSet[descriptor.Digest] = struct{}{}
|
2016-03-24 23:03:25 +00:00
|
|
|
emit("%s: marking blob %s", repoName, descriptor.Digest)
|
2016-01-19 22:26:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch manifest.(type) {
|
|
|
|
case *schema1.SignedManifest:
|
|
|
|
signaturesGetter, ok := manifestService.(distribution.SignaturesGetter)
|
|
|
|
if !ok {
|
2016-03-30 18:35:24 +00:00
|
|
|
return fmt.Errorf("unable to convert ManifestService into SignaturesGetter")
|
2016-01-19 22:26:15 +00:00
|
|
|
}
|
|
|
|
signatures, err := signaturesGetter.GetSignatures(ctx, dgst)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to get signatures for signed manifest: %v", err)
|
|
|
|
}
|
|
|
|
for _, signatureDigest := range signatures {
|
2016-03-24 23:03:25 +00:00
|
|
|
emit("%s: marking signature %s", repoName, signatureDigest)
|
2016-01-19 22:26:15 +00:00
|
|
|
markSet[signatureDigest] = struct{}{}
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case *schema2.DeserializedManifest:
|
|
|
|
config := manifest.(*schema2.DeserializedManifest).Config
|
2016-03-24 23:03:25 +00:00
|
|
|
emit("%s: marking configuration %s", repoName, config.Digest)
|
2016-01-19 22:26:15 +00:00
|
|
|
markSet[config.Digest] = struct{}{}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2016-04-26 04:14:00 +00:00
|
|
|
if err != nil {
|
|
|
|
// In certain situations such as unfinished uploads, deleting all
|
|
|
|
// tags in S3 or removing the _manifests folder manually, this
|
|
|
|
// error may be of type PathNotFound.
|
|
|
|
//
|
|
|
|
// In these cases we can continue marking other manifests safely.
|
|
|
|
if _, ok := err.(driver.PathNotFoundError); ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-19 22:26:15 +00:00
|
|
|
return err
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to mark: %v\n", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// sweep
|
|
|
|
blobService := registry.Blobs()
|
|
|
|
deleteSet := make(map[digest.Digest]struct{})
|
|
|
|
err = blobService.Enumerate(ctx, func(dgst digest.Digest) error {
|
|
|
|
// check if digest is in markSet. If not, delete it!
|
|
|
|
if _, ok := markSet[dgst]; !ok {
|
|
|
|
deleteSet[dgst] = struct{}{}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
2016-03-30 18:35:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error enumerating blobs: %v", err)
|
|
|
|
}
|
2016-01-19 22:26:15 +00:00
|
|
|
|
2016-03-24 23:03:25 +00:00
|
|
|
emit("\n%d blobs marked, %d blobs eligible for deletion", len(markSet), len(deleteSet))
|
2016-01-19 22:26:15 +00:00
|
|
|
// Construct vacuum
|
|
|
|
vacuum := storage.NewVacuum(ctx, storageDriver)
|
|
|
|
for dgst := range deleteSet {
|
2016-03-29 17:47:22 +00:00
|
|
|
emit("blob eligible for deletion: %s", dgst)
|
2016-03-23 23:42:50 +00:00
|
|
|
if dryRun {
|
|
|
|
continue
|
|
|
|
}
|
2016-01-19 22:26:15 +00:00
|
|
|
err = vacuum.RemoveBlob(string(dgst))
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to delete blob %s: %v\n", dgst, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-03-23 23:42:50 +00:00
|
|
|
func init() {
|
2016-04-27 01:44:23 +00:00
|
|
|
GCCmd.Flags().BoolVarP(&dryRun, "dry-run", "d", false, "do everything except remove the blobs")
|
2016-03-23 23:42:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var dryRun bool
|
|
|
|
|
2016-01-19 22:26:15 +00:00
|
|
|
// GCCmd is the cobra command that corresponds to the garbage-collect subcommand
|
|
|
|
var GCCmd = &cobra.Command{
|
|
|
|
Use: "garbage-collect <config>",
|
2016-03-23 23:42:50 +00:00
|
|
|
Short: "`garbage-collect` deletes layers not referenced by any manifests",
|
|
|
|
Long: "`garbage-collect` deletes layers not referenced by any manifests",
|
2016-01-19 22:26:15 +00:00
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
config, err := resolveConfiguration(args)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "configuration error: %v\n", err)
|
|
|
|
cmd.Usage()
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
driver, err := factory.Create(config.Storage.Type(), config.Storage.Parameters())
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "failed to construct %s driver: %v", config.Storage.Type(), err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2016-03-24 18:33:01 +00:00
|
|
|
ctx := context.Background()
|
|
|
|
ctx, err = configureLogging(ctx, config)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "unable to configure logging with config: %s", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2016-03-24 23:03:25 +00:00
|
|
|
k, err := libtrust.GenerateECP256PrivateKey()
|
|
|
|
if err != nil {
|
2016-03-29 17:47:22 +00:00
|
|
|
fmt.Fprint(os.Stderr, err)
|
2016-03-24 23:03:25 +00:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
registry, err := storage.NewRegistry(ctx, driver, storage.DisableSchema1Signatures, storage.Schema1SigningKey(k))
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "failed to construct registry: %v", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = markAndSweep(ctx, driver, registry)
|
2016-01-19 22:26:15 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "failed to garbage collect: %v", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|