Merge pull request #44958 from laurazard/c8d-docker-commit
containerd integration: `docker commit`
This commit is contained in:
commit
6f719c74a9
8 changed files with 345 additions and 9 deletions
|
@ -39,6 +39,7 @@ import (
|
|||
agentexec "github.com/moby/swarmkit/v2/agent/exec"
|
||||
"github.com/moby/sys/signal"
|
||||
"github.com/moby/sys/symlink"
|
||||
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
"github.com/pkg/errors"
|
||||
"github.com/sirupsen/logrus"
|
||||
)
|
||||
|
@ -72,6 +73,7 @@ type Container struct {
|
|||
Args []string
|
||||
Config *containertypes.Config
|
||||
ImageID image.ID `json:"Image"`
|
||||
ImageManifest *ocispec.Descriptor
|
||||
NetworkSettings *network.Settings
|
||||
LogPath string
|
||||
Name string
|
||||
|
|
|
@ -122,6 +122,44 @@ func (i *ImageService) GetImage(ctx context.Context, refOrID string, options ima
|
|||
return img, nil
|
||||
}
|
||||
|
||||
func (i *ImageService) GetImageManifest(ctx context.Context, refOrID string, options imagetype.GetImageOpts) (*ocispec.Descriptor, error) {
|
||||
cs := i.client.ContentStore()
|
||||
|
||||
desc, err := i.resolveDescriptor(ctx, refOrID)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
if containerdimages.IsManifestType(desc.MediaType) {
|
||||
return &desc, nil
|
||||
}
|
||||
|
||||
if containerdimages.IsIndexType(desc.MediaType) {
|
||||
platform := platforms.AllPlatformsWithPreference(cplatforms.Default())
|
||||
if options.Platform != nil {
|
||||
platform = cplatforms.Only(*options.Platform)
|
||||
}
|
||||
|
||||
childManifests, err := containerdimages.LimitManifests(containerdimages.ChildrenHandler(cs), platform, 1)(ctx, desc)
|
||||
if err != nil {
|
||||
if cerrdefs.IsNotFound(err) {
|
||||
return nil, errdefs.NotFound(err)
|
||||
}
|
||||
return nil, errdefs.System(err)
|
||||
}
|
||||
|
||||
// len(childManifests) == 1 since we requested 1 and if none
|
||||
// were found LimitManifests would have thrown an error
|
||||
if !containerdimages.IsManifestType(childManifests[0].MediaType) {
|
||||
return nil, errdefs.NotFound(fmt.Errorf("manifest has incorrect mediatype: %s", childManifests[0].MediaType))
|
||||
}
|
||||
|
||||
return &childManifests[0], nil
|
||||
}
|
||||
|
||||
return nil, errdefs.NotFound(errors.New("failed to find manifest"))
|
||||
}
|
||||
|
||||
// size returns the total size of the image's packed resources.
|
||||
func (i *ImageService) size(ctx context.Context, desc ocispec.Descriptor, platform cplatforms.MatchComparer) (int64, error) {
|
||||
var size int64
|
||||
|
|
|
@ -1,17 +1,294 @@
|
|||
package containerd
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"context"
|
||||
"crypto/rand"
|
||||
"encoding/base64"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"runtime"
|
||||
"time"
|
||||
|
||||
"github.com/containerd/containerd/content"
|
||||
"github.com/containerd/containerd/diff"
|
||||
cerrdefs "github.com/containerd/containerd/errdefs"
|
||||
"github.com/containerd/containerd/images"
|
||||
"github.com/containerd/containerd/leases"
|
||||
"github.com/containerd/containerd/rootfs"
|
||||
"github.com/containerd/containerd/snapshots"
|
||||
"github.com/docker/docker/api/types/backend"
|
||||
containerapi "github.com/docker/docker/api/types/container"
|
||||
"github.com/docker/docker/errdefs"
|
||||
"github.com/docker/docker/image"
|
||||
"github.com/opencontainers/go-digest"
|
||||
"github.com/opencontainers/image-spec/identity"
|
||||
"github.com/opencontainers/image-spec/specs-go"
|
||||
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
"github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
/*
|
||||
This code is based on `commit` support in nerdctl, under Apache License
|
||||
https://github.com/containerd/nerdctl/blob/master/pkg/imgutil/commit/commit.go
|
||||
with adaptations to match the Moby data model and services.
|
||||
*/
|
||||
|
||||
// CommitImage creates a new image from a commit config.
|
||||
func (i *ImageService) CommitImage(ctx context.Context, c backend.CommitConfig) (image.ID, error) {
|
||||
return "", errdefs.NotImplemented(errors.New("not implemented"))
|
||||
func (i *ImageService) CommitImage(ctx context.Context, cc backend.CommitConfig) (image.ID, error) {
|
||||
container := i.containers.Get(cc.ContainerID)
|
||||
cs := i.client.ContentStore()
|
||||
|
||||
imageManifestBytes, err := content.ReadBlob(ctx, cs, *container.ImageManifest)
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
var manifest ocispec.Manifest
|
||||
if err := json.Unmarshal(imageManifestBytes, &manifest); err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
imageConfigBytes, err := content.ReadBlob(ctx, cs, manifest.Config)
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
var ociimage ocispec.Image
|
||||
if err := json.Unmarshal(imageConfigBytes, &ociimage); err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
var (
|
||||
differ = i.client.DiffService()
|
||||
sn = i.client.SnapshotService(i.snapshotter)
|
||||
)
|
||||
|
||||
// Don't gc me and clean the dirty data after 1 hour!
|
||||
ctx, done, err := i.client.WithLease(ctx, leases.WithRandomID(), leases.WithExpiration(1*time.Hour))
|
||||
if err != nil {
|
||||
return "", fmt.Errorf("failed to create lease for commit: %w", err)
|
||||
}
|
||||
defer done(ctx)
|
||||
|
||||
diffLayerDesc, diffID, err := createDiff(ctx, cc.ContainerID, sn, cs, differ)
|
||||
if err != nil {
|
||||
return "", fmt.Errorf("failed to export layer: %w", err)
|
||||
}
|
||||
|
||||
imageConfig, err := generateCommitImageConfig(ctx, container.Config, ociimage, diffID, cc)
|
||||
if err != nil {
|
||||
return "", fmt.Errorf("failed to generate commit image config: %w", err)
|
||||
}
|
||||
|
||||
rootfsID := identity.ChainID(imageConfig.RootFS.DiffIDs).String()
|
||||
if err := applyDiffLayer(ctx, rootfsID, ociimage, sn, differ, diffLayerDesc); err != nil {
|
||||
return "", fmt.Errorf("failed to apply diff: %w", err)
|
||||
}
|
||||
|
||||
layers := append(manifest.Layers, diffLayerDesc)
|
||||
commitManifestDesc, configDigest, err := writeContentsForImage(ctx, i.snapshotter, cs, imageConfig, layers)
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
// image create
|
||||
img := images.Image{
|
||||
Name: danglingImageName(configDigest.Digest()),
|
||||
Target: commitManifestDesc,
|
||||
CreatedAt: time.Now(),
|
||||
}
|
||||
|
||||
if _, err := i.client.ImageService().Update(ctx, img); err != nil {
|
||||
if !cerrdefs.IsNotFound(err) {
|
||||
return "", err
|
||||
}
|
||||
|
||||
if _, err := i.client.ImageService().Create(ctx, img); err != nil {
|
||||
return "", fmt.Errorf("failed to create new image: %w", err)
|
||||
}
|
||||
}
|
||||
return image.ID(img.Target.Digest), nil
|
||||
}
|
||||
|
||||
// generateCommitImageConfig returns commit oci image config based on the container's image.
|
||||
func generateCommitImageConfig(ctx context.Context, container *containerapi.Config, baseConfig ocispec.Image, diffID digest.Digest, opts backend.CommitConfig) (ocispec.Image, error) {
|
||||
if opts.Config.Cmd != nil {
|
||||
baseConfig.Config.Cmd = opts.Config.Cmd
|
||||
}
|
||||
if opts.Config.Entrypoint != nil {
|
||||
baseConfig.Config.Entrypoint = opts.Config.Entrypoint
|
||||
}
|
||||
if opts.Author == "" {
|
||||
opts.Author = baseConfig.Author
|
||||
}
|
||||
|
||||
createdTime := time.Now()
|
||||
arch := baseConfig.Architecture
|
||||
if arch == "" {
|
||||
arch = runtime.GOARCH
|
||||
logrus.Warnf("assuming arch=%q", arch)
|
||||
}
|
||||
os := baseConfig.OS
|
||||
if os == "" {
|
||||
os = runtime.GOOS
|
||||
logrus.Warnf("assuming os=%q", os)
|
||||
}
|
||||
logrus.Debugf("generateCommitImageConfig(): arch=%q, os=%q", arch, os)
|
||||
return ocispec.Image{
|
||||
Architecture: arch,
|
||||
OS: os,
|
||||
Created: &createdTime,
|
||||
Author: opts.Author,
|
||||
Config: baseConfig.Config,
|
||||
RootFS: ocispec.RootFS{
|
||||
Type: "layers",
|
||||
DiffIDs: append(baseConfig.RootFS.DiffIDs, diffID),
|
||||
},
|
||||
History: append(baseConfig.History, ocispec.History{
|
||||
Created: &createdTime,
|
||||
CreatedBy: "", // FIXME(ndeloof) ?
|
||||
Author: opts.Author,
|
||||
Comment: opts.Comment,
|
||||
EmptyLayer: diffID == "",
|
||||
}),
|
||||
}, nil
|
||||
}
|
||||
|
||||
// writeContentsForImage will commit oci image config and manifest into containerd's content store.
|
||||
func writeContentsForImage(ctx context.Context, snName string, cs content.Store, newConfig ocispec.Image, layers []ocispec.Descriptor) (ocispec.Descriptor, image.ID, error) {
|
||||
newConfigJSON, err := json.Marshal(newConfig)
|
||||
if err != nil {
|
||||
return ocispec.Descriptor{}, "", err
|
||||
}
|
||||
|
||||
configDesc := ocispec.Descriptor{
|
||||
MediaType: ocispec.MediaTypeImageConfig,
|
||||
Digest: digest.FromBytes(newConfigJSON),
|
||||
Size: int64(len(newConfigJSON)),
|
||||
}
|
||||
|
||||
newMfst := struct {
|
||||
MediaType string `json:"mediaType,omitempty"`
|
||||
ocispec.Manifest
|
||||
}{
|
||||
MediaType: ocispec.MediaTypeImageManifest,
|
||||
Manifest: ocispec.Manifest{
|
||||
Versioned: specs.Versioned{
|
||||
SchemaVersion: 2,
|
||||
},
|
||||
Config: configDesc,
|
||||
Layers: layers,
|
||||
},
|
||||
}
|
||||
|
||||
newMfstJSON, err := json.MarshalIndent(newMfst, "", " ")
|
||||
if err != nil {
|
||||
return ocispec.Descriptor{}, "", err
|
||||
}
|
||||
|
||||
newMfstDesc := ocispec.Descriptor{
|
||||
MediaType: ocispec.MediaTypeImageManifest,
|
||||
Digest: digest.FromBytes(newMfstJSON),
|
||||
Size: int64(len(newMfstJSON)),
|
||||
}
|
||||
|
||||
// new manifest should reference the layers and config content
|
||||
labels := map[string]string{
|
||||
"containerd.io/gc.ref.content.0": configDesc.Digest.String(),
|
||||
}
|
||||
for i, l := range layers {
|
||||
labels[fmt.Sprintf("containerd.io/gc.ref.content.%d", i+1)] = l.Digest.String()
|
||||
}
|
||||
|
||||
err = content.WriteBlob(ctx, cs, newMfstDesc.Digest.String(), bytes.NewReader(newMfstJSON), newMfstDesc, content.WithLabels(labels))
|
||||
if err != nil {
|
||||
return ocispec.Descriptor{}, "", err
|
||||
}
|
||||
|
||||
// config should reference to snapshotter
|
||||
labelOpt := content.WithLabels(map[string]string{
|
||||
fmt.Sprintf("containerd.io/gc.ref.snapshot.%s", snName): identity.ChainID(newConfig.RootFS.DiffIDs).String(),
|
||||
})
|
||||
err = content.WriteBlob(ctx, cs, configDesc.Digest.String(), bytes.NewReader(newConfigJSON), configDesc, labelOpt)
|
||||
if err != nil {
|
||||
return ocispec.Descriptor{}, "", err
|
||||
}
|
||||
|
||||
return newMfstDesc, image.ID(configDesc.Digest), nil
|
||||
}
|
||||
|
||||
// createDiff creates a layer diff into containerd's content store.
|
||||
func createDiff(ctx context.Context, name string, sn snapshots.Snapshotter, cs content.Store, comparer diff.Comparer) (ocispec.Descriptor, digest.Digest, error) {
|
||||
newDesc, err := rootfs.CreateDiff(ctx, name, sn, comparer)
|
||||
if err != nil {
|
||||
return ocispec.Descriptor{}, "", err
|
||||
}
|
||||
|
||||
info, err := cs.Info(ctx, newDesc.Digest)
|
||||
if err != nil {
|
||||
return ocispec.Descriptor{}, "", err
|
||||
}
|
||||
|
||||
diffIDStr, ok := info.Labels["containerd.io/uncompressed"]
|
||||
if !ok {
|
||||
return ocispec.Descriptor{}, "", fmt.Errorf("invalid differ response with no diffID")
|
||||
}
|
||||
|
||||
diffID, err := digest.Parse(diffIDStr)
|
||||
if err != nil {
|
||||
return ocispec.Descriptor{}, "", err
|
||||
}
|
||||
|
||||
return ocispec.Descriptor{
|
||||
MediaType: ocispec.MediaTypeImageLayerGzip,
|
||||
Digest: newDesc.Digest,
|
||||
Size: info.Size,
|
||||
}, diffID, nil
|
||||
}
|
||||
|
||||
// applyDiffLayer will apply diff layer content created by createDiff into the snapshotter.
|
||||
func applyDiffLayer(ctx context.Context, name string, baseImg ocispec.Image, sn snapshots.Snapshotter, differ diff.Applier, diffDesc ocispec.Descriptor) (retErr error) {
|
||||
var (
|
||||
key = uniquePart() + "-" + name
|
||||
parent = identity.ChainID(baseImg.RootFS.DiffIDs).String()
|
||||
)
|
||||
|
||||
mount, err := sn.Prepare(ctx, key, parent)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
defer func() {
|
||||
if retErr != nil {
|
||||
// NOTE: the snapshotter should be hold by lease. Even
|
||||
// if the cleanup fails, the containerd gc can delete it.
|
||||
if err := sn.Remove(ctx, key); err != nil {
|
||||
logrus.Warnf("failed to cleanup aborted apply %s: %s", key, err)
|
||||
}
|
||||
}
|
||||
}()
|
||||
|
||||
if _, err = differ.Apply(ctx, diffDesc, mount); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if err = sn.Commit(ctx, name, key); err != nil {
|
||||
if cerrdefs.IsAlreadyExists(err) {
|
||||
return nil
|
||||
}
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// copied from github.com/containerd/containerd/rootfs/apply.go
|
||||
func uniquePart() string {
|
||||
t := time.Now()
|
||||
var b [3]byte
|
||||
// Ignore read failures, just decreases uniqueness
|
||||
rand.Read(b[:])
|
||||
return fmt.Sprintf("%d-%s", t.Nanosecond(), base64.URLEncoding.EncodeToString(b[:]))
|
||||
}
|
||||
|
||||
// CommitBuildStep is used by the builder to create an image for each step in
|
||||
|
|
|
@ -19,6 +19,7 @@ import (
|
|||
// ImageService implements daemon.ImageService
|
||||
type ImageService struct {
|
||||
client *containerd.Client
|
||||
containers container.Store
|
||||
snapshotter string
|
||||
registryHosts RegistryHostsProvider
|
||||
registryService registry.Service
|
||||
|
@ -29,9 +30,10 @@ type RegistryHostsProvider interface {
|
|||
}
|
||||
|
||||
// NewService creates a new ImageService.
|
||||
func NewService(c *containerd.Client, snapshotter string, hostsProvider RegistryHostsProvider, registry registry.Service) *ImageService {
|
||||
func NewService(c *containerd.Client, containers container.Store, snapshotter string, hostsProvider RegistryHostsProvider, registry registry.Service) *ImageService {
|
||||
return &ImageService{
|
||||
client: c,
|
||||
containers: containers,
|
||||
snapshotter: snapshotter,
|
||||
registryHosts: hostsProvider,
|
||||
registryService: registry,
|
||||
|
|
|
@ -115,11 +115,12 @@ func (daemon *Daemon) containerCreate(ctx context.Context, opts createOpts) (con
|
|||
// Create creates a new container from the given configuration with a given name.
|
||||
func (daemon *Daemon) create(ctx context.Context, opts createOpts) (retC *container.Container, retErr error) {
|
||||
var (
|
||||
ctr *container.Container
|
||||
img *image.Image
|
||||
imgID image.ID
|
||||
err error
|
||||
os = runtime.GOOS
|
||||
ctr *container.Container
|
||||
img *image.Image
|
||||
imgManifest *v1.Descriptor
|
||||
imgID image.ID
|
||||
err error
|
||||
os = runtime.GOOS
|
||||
)
|
||||
|
||||
if opts.params.Config.Image != "" {
|
||||
|
@ -127,6 +128,16 @@ func (daemon *Daemon) create(ctx context.Context, opts createOpts) (retC *contai
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
// when using the containerd store, we need to get the actual
|
||||
// image manifest so we can store it and later deterministically
|
||||
// resolve the specific image the container is running
|
||||
if daemon.UsesSnapshotter() {
|
||||
imgManifest, err = daemon.imageService.GetImageManifest(ctx, opts.params.Config.Image, imagetypes.GetImageOpts{Platform: opts.params.Platform})
|
||||
if err != nil {
|
||||
logrus.WithError(err).Error("failed to find image manifest")
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
os = img.OperatingSystem()
|
||||
imgID = img.ID()
|
||||
} else if isWindows {
|
||||
|
@ -169,6 +180,7 @@ func (daemon *Daemon) create(ctx context.Context, opts createOpts) (retC *contai
|
|||
}
|
||||
|
||||
ctr.HostConfig.StorageOpt = opts.params.HostConfig.StorageOpt
|
||||
ctr.ImageManifest = imgManifest
|
||||
|
||||
if daemon.UsesSnapshotter() {
|
||||
if err := daemon.imageService.PrepareSnapshot(ctx, ctr.ID, opts.params.Config.Image, opts.params.Platform); err != nil {
|
||||
|
|
|
@ -1005,7 +1005,7 @@ func NewDaemon(ctx context.Context, config *config.Config, pluginStore *plugin.S
|
|||
if err := configureKernelSecuritySupport(config, driverName); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
d.imageService = ctrd.NewService(d.containerdCli, driverName, d, d.registryService)
|
||||
d.imageService = ctrd.NewService(d.containerdCli, d.containers, driverName, d, d.registryService)
|
||||
} else {
|
||||
layerStore, err := layer.NewStoreFromOptions(layer.StoreOptions{
|
||||
Root: config.Root,
|
||||
|
|
|
@ -46,6 +46,7 @@ type ImageService interface {
|
|||
// Containerd related methods
|
||||
|
||||
PrepareSnapshot(ctx context.Context, id string, image string, platform *v1.Platform) error
|
||||
GetImageManifest(ctx context.Context, refOrID string, options imagetype.GetImageOpts) (*v1.Descriptor, error)
|
||||
|
||||
// Layers
|
||||
|
||||
|
|
|
@ -192,6 +192,10 @@ func (i *ImageService) GetImage(ctx context.Context, refOrID string, options ima
|
|||
return img, nil
|
||||
}
|
||||
|
||||
func (i *ImageService) GetImageManifest(ctx context.Context, refOrID string, options imagetypes.GetImageOpts) (*v1.Descriptor, error) {
|
||||
panic("not implemented")
|
||||
}
|
||||
|
||||
func (i *ImageService) getImage(ctx context.Context, refOrID string, options imagetypes.GetImageOpts) (retImg *image.Image, retErr error) {
|
||||
defer func() {
|
||||
if retErr != nil || retImg == nil || options.Platform == nil {
|
||||
|
|
Loading…
Reference in a new issue