2018-02-05 16:05:59 -05:00
|
|
|
package v1 // import "github.com/docker/docker/migrate/v1"
|
2015-11-18 17:19:45 -05:00
|
|
|
|
|
|
|
import (
|
2018-05-19 07:38:54 -04:00
|
|
|
"encoding/json"
|
2015-11-18 17:19:45 -05:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2015-11-29 22:55:22 -05:00
|
|
|
"runtime"
|
|
|
|
"strconv"
|
|
|
|
"sync"
|
|
|
|
"time"
|
2015-11-18 17:19:45 -05:00
|
|
|
|
2017-01-25 19:54:18 -05:00
|
|
|
"github.com/docker/distribution/reference"
|
2015-11-18 17:19:45 -05:00
|
|
|
"github.com/docker/docker/distribution/metadata"
|
|
|
|
"github.com/docker/docker/image"
|
|
|
|
imagev1 "github.com/docker/docker/image/v1"
|
|
|
|
"github.com/docker/docker/layer"
|
2016-04-20 20:08:47 -04:00
|
|
|
"github.com/docker/docker/pkg/ioutils"
|
2017-01-25 19:54:18 -05:00
|
|
|
refstore "github.com/docker/docker/reference"
|
2017-01-06 20:23:18 -05:00
|
|
|
"github.com/opencontainers/go-digest"
|
2017-07-26 17:42:13 -04:00
|
|
|
"github.com/sirupsen/logrus"
|
2015-11-18 17:19:45 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type graphIDRegistrar interface {
|
2015-11-29 22:55:22 -05:00
|
|
|
RegisterByGraphID(string, layer.ChainID, layer.DiffID, string, int64) (layer.Layer, error)
|
2015-11-18 17:19:45 -05:00
|
|
|
Release(layer.Layer) ([]layer.Metadata, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type graphIDMounter interface {
|
2015-12-16 17:13:50 -05:00
|
|
|
CreateRWLayerByGraphID(string, string, layer.ChainID) error
|
2015-11-18 17:19:45 -05:00
|
|
|
}
|
|
|
|
|
2015-11-29 22:55:22 -05:00
|
|
|
type checksumCalculator interface {
|
|
|
|
ChecksumForGraphID(id, parent, oldTarDataPath, newTarDataPath string) (diffID layer.DiffID, size int64, err error)
|
|
|
|
}
|
|
|
|
|
2015-11-18 17:19:45 -05:00
|
|
|
const (
|
|
|
|
graphDirName = "graph"
|
|
|
|
tarDataFileName = "tar-data.json.gz"
|
|
|
|
migrationFileName = ".migration-v1-images.json"
|
|
|
|
migrationTagsFileName = ".migration-v1-tags"
|
2015-11-29 22:55:22 -05:00
|
|
|
migrationDiffIDFileName = ".migration-diffid"
|
|
|
|
migrationSizeFileName = ".migration-size"
|
|
|
|
migrationTarDataFileName = ".migration-tardata"
|
2015-11-18 17:19:45 -05:00
|
|
|
containersDirName = "containers"
|
|
|
|
configFileNameLegacy = "config.json"
|
|
|
|
configFileName = "config.v2.json"
|
|
|
|
repositoriesFilePrefixLegacy = "repositories-"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
errUnsupported = errors.New("migration is not supported")
|
|
|
|
)
|
|
|
|
|
|
|
|
// Migrate takes an old graph directory and transforms the metadata into the
|
|
|
|
// new format.
|
2017-01-25 19:54:18 -05:00
|
|
|
func Migrate(root, driverName string, ls layer.Store, is image.Store, rs refstore.Store, ms metadata.Store) error {
|
2015-11-29 22:55:22 -05:00
|
|
|
graphDir := filepath.Join(root, graphDirName)
|
|
|
|
if _, err := os.Lstat(graphDir); os.IsNotExist(err) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
mappings, err := restoreMappings(root)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if cc, ok := ls.(checksumCalculator); ok {
|
|
|
|
CalculateLayerChecksums(root, cc, mappings)
|
|
|
|
}
|
2015-11-18 17:19:45 -05:00
|
|
|
|
|
|
|
if registrar, ok := ls.(graphIDRegistrar); !ok {
|
|
|
|
return errUnsupported
|
|
|
|
} else if err := migrateImages(root, registrar, is, ms, mappings); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-11-29 22:55:22 -05:00
|
|
|
err = saveMappings(root, mappings)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-11-18 17:19:45 -05:00
|
|
|
if mounter, ok := ls.(graphIDMounter); !ok {
|
|
|
|
return errUnsupported
|
|
|
|
} else if err := migrateContainers(root, mounter, is, mappings); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-01-14 18:42:25 -05:00
|
|
|
return migrateRefs(root, driverName, rs, mappings)
|
2015-11-18 17:19:45 -05:00
|
|
|
}
|
|
|
|
|
2015-11-29 22:55:22 -05:00
|
|
|
// CalculateLayerChecksums walks an old graph directory and calculates checksums
|
|
|
|
// for each layer. These checksums are later used for migration.
|
|
|
|
func CalculateLayerChecksums(root string, ls checksumCalculator, mappings map[string]image.ID) {
|
2015-11-18 17:19:45 -05:00
|
|
|
graphDir := filepath.Join(root, graphDirName)
|
2015-11-29 22:55:22 -05:00
|
|
|
// spawn some extra workers also for maximum performance because the process is bounded by both cpu and io
|
|
|
|
workers := runtime.NumCPU() * 3
|
|
|
|
workQueue := make(chan string, workers)
|
|
|
|
|
|
|
|
wg := sync.WaitGroup{}
|
|
|
|
|
|
|
|
for i := 0; i < workers; i++ {
|
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
for id := range workQueue {
|
|
|
|
start := time.Now()
|
|
|
|
if err := calculateLayerChecksum(graphDir, id, ls); err != nil {
|
|
|
|
logrus.Errorf("could not calculate checksum for %q, %q", id, err)
|
|
|
|
}
|
|
|
|
elapsed := time.Since(start)
|
|
|
|
logrus.Debugf("layer %s took %.2f seconds", id, elapsed.Seconds())
|
|
|
|
}
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
dir, err := ioutil.ReadDir(graphDir)
|
|
|
|
if err != nil {
|
|
|
|
logrus.Errorf("could not read directory %q", graphDir)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for _, v := range dir {
|
|
|
|
v1ID := v.Name()
|
|
|
|
if err := imagev1.ValidateID(v1ID); err != nil {
|
|
|
|
continue
|
2015-11-18 17:19:45 -05:00
|
|
|
}
|
2015-11-29 22:55:22 -05:00
|
|
|
if _, ok := mappings[v1ID]; ok { // support old migrations without helper files
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
workQueue <- v1ID
|
|
|
|
}
|
|
|
|
close(workQueue)
|
|
|
|
wg.Wait()
|
|
|
|
}
|
|
|
|
|
|
|
|
func calculateLayerChecksum(graphDir, id string, ls checksumCalculator) error {
|
|
|
|
diffIDFile := filepath.Join(graphDir, id, migrationDiffIDFileName)
|
|
|
|
if _, err := os.Lstat(diffIDFile); err == nil {
|
|
|
|
return nil
|
|
|
|
} else if !os.IsNotExist(err) {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
parent, err := getParent(filepath.Join(graphDir, id))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
diffID, size, err := ls.ChecksumForGraphID(id, parent, filepath.Join(graphDir, id, tarDataFileName), filepath.Join(graphDir, id, migrationTarDataFileName))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ioutil.WriteFile(filepath.Join(graphDir, id, migrationSizeFileName), []byte(strconv.Itoa(int(size))), 0600); err != nil {
|
2015-11-18 17:19:45 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-04-20 20:08:47 -04:00
|
|
|
if err := ioutils.AtomicWriteFile(filepath.Join(graphDir, id, migrationDiffIDFileName), []byte(diffID), 0600); err != nil {
|
2015-11-29 22:55:22 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
logrus.Infof("calculated checksum for layer %s: %s", id, diffID)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func restoreMappings(root string) (map[string]image.ID, error) {
|
|
|
|
mappings := make(map[string]image.ID)
|
|
|
|
|
2015-11-18 17:19:45 -05:00
|
|
|
mfile := filepath.Join(root, migrationFileName)
|
|
|
|
f, err := os.Open(mfile)
|
|
|
|
if err != nil && !os.IsNotExist(err) {
|
2015-11-29 22:55:22 -05:00
|
|
|
return nil, err
|
2015-11-18 17:19:45 -05:00
|
|
|
} else if err == nil {
|
|
|
|
err := json.NewDecoder(f).Decode(&mappings)
|
|
|
|
if err != nil {
|
|
|
|
f.Close()
|
2015-11-29 22:55:22 -05:00
|
|
|
return nil, err
|
2015-11-18 17:19:45 -05:00
|
|
|
}
|
|
|
|
f.Close()
|
|
|
|
}
|
|
|
|
|
2015-11-29 22:55:22 -05:00
|
|
|
return mappings, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func saveMappings(root string, mappings map[string]image.ID) error {
|
|
|
|
mfile := filepath.Join(root, migrationFileName)
|
|
|
|
f, err := os.OpenFile(mfile, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
2016-12-14 16:16:12 -05:00
|
|
|
return json.NewEncoder(f).Encode(mappings)
|
2015-11-29 22:55:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func migrateImages(root string, ls graphIDRegistrar, is image.Store, ms metadata.Store, mappings map[string]image.ID) error {
|
|
|
|
graphDir := filepath.Join(root, graphDirName)
|
|
|
|
|
2015-11-18 17:19:45 -05:00
|
|
|
dir, err := ioutil.ReadDir(graphDir)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, v := range dir {
|
|
|
|
v1ID := v.Name()
|
|
|
|
if err := imagev1.ValidateID(v1ID); err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if _, exists := mappings[v1ID]; exists {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if err := migrateImage(v1ID, root, ls, is, ms, mappings); err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func migrateContainers(root string, ls graphIDMounter, is image.Store, imageMappings map[string]image.ID) error {
|
|
|
|
containersDir := filepath.Join(root, containersDirName)
|
|
|
|
dir, err := ioutil.ReadDir(containersDir)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, v := range dir {
|
|
|
|
id := v.Name()
|
|
|
|
|
|
|
|
if _, err := os.Stat(filepath.Join(containersDir, id, configFileName)); err == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
containerJSON, err := ioutil.ReadFile(filepath.Join(containersDir, id, configFileNameLegacy))
|
|
|
|
if err != nil {
|
2016-01-07 19:32:32 -05:00
|
|
|
logrus.Errorf("migrate container error: %v", err)
|
|
|
|
continue
|
2015-11-18 17:19:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
var c map[string]*json.RawMessage
|
|
|
|
if err := json.Unmarshal(containerJSON, &c); err != nil {
|
2016-01-07 19:32:32 -05:00
|
|
|
logrus.Errorf("migrate container error: %v", err)
|
|
|
|
continue
|
2015-11-18 17:19:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
imageStrJSON, ok := c["Image"]
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("invalid container configuration for %v", id)
|
|
|
|
}
|
|
|
|
|
|
|
|
var image string
|
|
|
|
if err := json.Unmarshal([]byte(*imageStrJSON), &image); err != nil {
|
2016-01-07 19:32:32 -05:00
|
|
|
logrus.Errorf("migrate container error: %v", err)
|
|
|
|
continue
|
2015-11-18 17:19:45 -05:00
|
|
|
}
|
2016-01-07 19:32:32 -05:00
|
|
|
|
2015-11-18 17:19:45 -05:00
|
|
|
imageID, ok := imageMappings[image]
|
|
|
|
if !ok {
|
|
|
|
logrus.Errorf("image not migrated %v", imageID) // non-fatal error
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
c["Image"] = rawJSON(imageID)
|
|
|
|
|
|
|
|
containerJSON, err = json.Marshal(c)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ioutil.WriteFile(filepath.Join(containersDir, id, configFileName), containerJSON, 0600); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
img, err := is.Get(imageID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-12-16 17:13:50 -05:00
|
|
|
if err := ls.CreateRWLayerByGraphID(id, id, img.RootFS.ChainID()); err != nil {
|
2016-02-09 12:44:33 -05:00
|
|
|
logrus.Errorf("migrate container error: %v", err)
|
|
|
|
continue
|
2015-11-18 17:19:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
logrus.Infof("migrated container %s to point to %s", id, imageID)
|
|
|
|
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-12-04 16:55:15 -05:00
|
|
|
type refAdder interface {
|
2016-09-15 19:37:32 -04:00
|
|
|
AddTag(ref reference.Named, id digest.Digest, force bool) error
|
|
|
|
AddDigest(ref reference.Canonical, id digest.Digest, force bool) error
|
2015-11-18 17:19:45 -05:00
|
|
|
}
|
|
|
|
|
2015-12-04 16:55:15 -05:00
|
|
|
func migrateRefs(root, driverName string, rs refAdder, mappings map[string]image.ID) error {
|
2015-11-18 17:19:45 -05:00
|
|
|
migrationFile := filepath.Join(root, migrationTagsFileName)
|
|
|
|
if _, err := os.Lstat(migrationFile); !os.IsNotExist(err) {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
type repositories struct {
|
|
|
|
Repositories map[string]map[string]string
|
|
|
|
}
|
|
|
|
|
|
|
|
var repos repositories
|
|
|
|
|
|
|
|
f, err := os.Open(filepath.Join(root, repositoriesFilePrefixLegacy+driverName))
|
|
|
|
if err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
if err := json.NewDecoder(f).Decode(&repos); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for name, repo := range repos.Repositories {
|
|
|
|
for tag, id := range repo {
|
|
|
|
if strongID, exists := mappings[id]; exists {
|
2017-01-25 19:54:18 -05:00
|
|
|
ref, err := reference.ParseNormalizedNamed(name)
|
2015-11-18 17:19:45 -05:00
|
|
|
if err != nil {
|
|
|
|
logrus.Errorf("migrate tags: invalid name %q, %q", name, err)
|
|
|
|
continue
|
|
|
|
}
|
2017-01-25 19:54:18 -05:00
|
|
|
if !reference.IsNameOnly(ref) {
|
|
|
|
logrus.Errorf("migrate tags: invalid name %q, unexpected tag or digest", name)
|
|
|
|
continue
|
|
|
|
}
|
2017-01-06 20:23:18 -05:00
|
|
|
if dgst, err := digest.Parse(tag); err == nil {
|
2016-11-10 18:59:02 -05:00
|
|
|
canonical, err := reference.WithDigest(reference.TrimNamed(ref), dgst)
|
2015-11-18 17:19:45 -05:00
|
|
|
if err != nil {
|
|
|
|
logrus.Errorf("migrate tags: invalid digest %q, %q", dgst, err)
|
|
|
|
continue
|
|
|
|
}
|
2016-09-15 19:37:32 -04:00
|
|
|
if err := rs.AddDigest(canonical, strongID.Digest(), false); err != nil {
|
2017-01-25 19:54:18 -05:00
|
|
|
logrus.Errorf("can't migrate digest %q for %q, err: %q", reference.FamiliarString(ref), strongID, err)
|
2015-11-25 15:42:40 -05:00
|
|
|
}
|
2015-11-18 17:19:45 -05:00
|
|
|
} else {
|
2015-11-25 15:42:40 -05:00
|
|
|
tagRef, err := reference.WithTag(ref, tag)
|
2015-11-18 17:19:45 -05:00
|
|
|
if err != nil {
|
|
|
|
logrus.Errorf("migrate tags: invalid tag %q, %q", tag, err)
|
|
|
|
continue
|
|
|
|
}
|
2016-09-15 19:37:32 -04:00
|
|
|
if err := rs.AddTag(tagRef, strongID.Digest(), false); err != nil {
|
2017-01-25 19:54:18 -05:00
|
|
|
logrus.Errorf("can't migrate tag %q for %q, err: %q", reference.FamiliarString(ref), strongID, err)
|
2015-11-25 15:42:40 -05:00
|
|
|
}
|
2015-11-18 17:19:45 -05:00
|
|
|
}
|
|
|
|
logrus.Infof("migrated tag %s:%s to point to %s", name, tag, strongID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mf, err := os.Create(migrationFile)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
mf.Close()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-11-29 22:55:22 -05:00
|
|
|
func getParent(confDir string) (string, error) {
|
|
|
|
jsonFile := filepath.Join(confDir, "json")
|
2015-11-18 17:19:45 -05:00
|
|
|
imageJSON, err := ioutil.ReadFile(jsonFile)
|
|
|
|
if err != nil {
|
2015-11-29 22:55:22 -05:00
|
|
|
return "", err
|
2015-11-18 17:19:45 -05:00
|
|
|
}
|
|
|
|
var parent struct {
|
|
|
|
Parent string
|
|
|
|
ParentID digest.Digest `json:"parent_id"`
|
|
|
|
}
|
|
|
|
if err := json.Unmarshal(imageJSON, &parent); err != nil {
|
2015-11-29 22:55:22 -05:00
|
|
|
return "", err
|
2015-11-18 17:19:45 -05:00
|
|
|
}
|
|
|
|
if parent.Parent == "" && parent.ParentID != "" { // v1.9
|
|
|
|
parent.Parent = parent.ParentID.Hex()
|
|
|
|
}
|
|
|
|
// compatibilityID for parent
|
2015-11-29 22:55:22 -05:00
|
|
|
parentCompatibilityID, err := ioutil.ReadFile(filepath.Join(confDir, "parent"))
|
2015-11-18 17:19:45 -05:00
|
|
|
if err == nil && len(parentCompatibilityID) > 0 {
|
|
|
|
parent.Parent = string(parentCompatibilityID)
|
|
|
|
}
|
2015-11-29 22:55:22 -05:00
|
|
|
return parent.Parent, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func migrateImage(id, root string, ls graphIDRegistrar, is image.Store, ms metadata.Store, mappings map[string]image.ID) (err error) {
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
logrus.Errorf("migration failed for %v, err: %v", id, err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
parent, err := getParent(filepath.Join(root, graphDirName, id))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-11-18 17:19:45 -05:00
|
|
|
|
|
|
|
var parentID image.ID
|
2015-11-29 22:55:22 -05:00
|
|
|
if parent != "" {
|
2015-11-18 17:19:45 -05:00
|
|
|
var exists bool
|
2015-11-29 22:55:22 -05:00
|
|
|
if parentID, exists = mappings[parent]; !exists {
|
|
|
|
if err := migrateImage(parent, root, ls, is, ms, mappings); err != nil {
|
2015-11-18 17:19:45 -05:00
|
|
|
// todo: fail or allow broken chains?
|
|
|
|
return err
|
|
|
|
}
|
2015-11-29 22:55:22 -05:00
|
|
|
parentID = mappings[parent]
|
2015-11-18 17:19:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootFS := image.NewRootFS()
|
|
|
|
var history []image.History
|
|
|
|
|
|
|
|
if parentID != "" {
|
|
|
|
parentImg, err := is.Get(parentID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
rootFS = parentImg.RootFS
|
|
|
|
history = parentImg.History
|
|
|
|
}
|
|
|
|
|
2016-02-16 14:43:23 -05:00
|
|
|
diffIDData, err := ioutil.ReadFile(filepath.Join(root, graphDirName, id, migrationDiffIDFileName))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-01-06 20:23:18 -05:00
|
|
|
diffID, err := digest.Parse(string(diffIDData))
|
2015-11-29 22:55:22 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
sizeStr, err := ioutil.ReadFile(filepath.Join(root, graphDirName, id, migrationSizeFileName))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
size, err := strconv.ParseInt(string(sizeStr), 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
layer, err := ls.RegisterByGraphID(id, rootFS.ChainID(), layer.DiffID(diffID), filepath.Join(root, graphDirName, id, migrationTarDataFileName), size)
|
2015-11-18 17:19:45 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
logrus.Infof("migrated layer %s to %s", id, layer.DiffID())
|
|
|
|
|
2015-11-29 22:55:22 -05:00
|
|
|
jsonFile := filepath.Join(root, graphDirName, id, "json")
|
|
|
|
imageJSON, err := ioutil.ReadFile(jsonFile)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-11-18 17:19:45 -05:00
|
|
|
h, err := imagev1.HistoryFromConfig(imageJSON, false)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
history = append(history, h)
|
|
|
|
|
|
|
|
rootFS.Append(layer.DiffID())
|
|
|
|
|
|
|
|
config, err := imagev1.MakeConfigFromV1Config(imageJSON, rootFS, history)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
strongID, err := is.Create(config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
logrus.Infof("migrated image %s to %s", id, strongID)
|
|
|
|
|
|
|
|
if parentID != "" {
|
|
|
|
if err := is.SetParent(strongID, parentID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
checksum, err := ioutil.ReadFile(filepath.Join(root, graphDirName, id, "checksum"))
|
|
|
|
if err == nil { // best effort
|
2017-01-06 20:23:18 -05:00
|
|
|
dgst, err := digest.Parse(string(checksum))
|
2015-11-18 17:19:45 -05:00
|
|
|
if err == nil {
|
2016-01-13 22:34:27 -05:00
|
|
|
V2MetadataService := metadata.NewV2MetadataService(ms)
|
|
|
|
V2MetadataService.Add(layer.DiffID(), metadata.V2Metadata{Digest: dgst})
|
2015-11-18 17:19:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_, err = ls.Release(layer)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
mappings[id] = strongID
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func rawJSON(value interface{}) *json.RawMessage {
|
|
|
|
jsonval, err := json.Marshal(value)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return (*json.RawMessage)(&jsonval)
|
|
|
|
}
|