| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- /*
- Copyright The containerd Authors.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package containerd
- import (
- "context"
- "errors"
- "fmt"
- "github.com/containerd/containerd/containers"
- "github.com/containerd/containerd/content"
- "github.com/containerd/containerd/images"
- "github.com/containerd/containerd/protobuf/proto"
- ptypes "github.com/containerd/containerd/protobuf/types"
- "github.com/opencontainers/image-spec/identity"
- imagespec "github.com/opencontainers/image-spec/specs-go/v1"
- )
- var (
- // ErrImageNameNotFoundInIndex is returned when the image name is not found in the index
- ErrImageNameNotFoundInIndex = errors.New("image name not found in index")
- // ErrRuntimeNameNotFoundInIndex is returned when the runtime is not found in the index
- ErrRuntimeNameNotFoundInIndex = errors.New("runtime not found in index")
- // ErrSnapshotterNameNotFoundInIndex is returned when the snapshotter is not found in the index
- ErrSnapshotterNameNotFoundInIndex = errors.New("snapshotter not found in index")
- )
- // RestoreOpts are options to manage the restore operation
- type RestoreOpts func(context.Context, string, *Client, Image, *imagespec.Index) NewContainerOpts
- // WithRestoreImage restores the image for the container
- func WithRestoreImage(ctx context.Context, id string, client *Client, checkpoint Image, index *imagespec.Index) NewContainerOpts {
- return func(ctx context.Context, client *Client, c *containers.Container) error {
- name, ok := index.Annotations[checkpointImageNameLabel]
- if !ok || name == "" {
- return ErrImageNameNotFoundInIndex
- }
- snapshotter, ok := index.Annotations[checkpointSnapshotterNameLabel]
- if !ok || name == "" {
- return ErrSnapshotterNameNotFoundInIndex
- }
- i, err := client.GetImage(ctx, name)
- if err != nil {
- return err
- }
- diffIDs, err := i.(*image).i.RootFS(ctx, client.ContentStore(), client.platform)
- if err != nil {
- return err
- }
- parent := identity.ChainID(diffIDs).String()
- if _, err := client.SnapshotService(snapshotter).Prepare(ctx, id, parent); err != nil {
- return err
- }
- c.Image = i.Name()
- c.SnapshotKey = id
- c.Snapshotter = snapshotter
- return nil
- }
- }
- // WithRestoreRuntime restores the runtime for the container
- func WithRestoreRuntime(ctx context.Context, id string, client *Client, checkpoint Image, index *imagespec.Index) NewContainerOpts {
- return func(ctx context.Context, client *Client, c *containers.Container) error {
- name, ok := index.Annotations[checkpointRuntimeNameLabel]
- if !ok {
- return ErrRuntimeNameNotFoundInIndex
- }
- // restore options if present
- m, err := GetIndexByMediaType(index, images.MediaTypeContainerd1CheckpointRuntimeOptions)
- if err != nil {
- if err != ErrMediaTypeNotFound {
- return err
- }
- }
- var options ptypes.Any
- if m != nil {
- store := client.ContentStore()
- data, err := content.ReadBlob(ctx, store, *m)
- if err != nil {
- return fmt.Errorf("unable to read checkpoint runtime: %w", err)
- }
- if err := proto.Unmarshal(data, &options); err != nil {
- return err
- }
- }
- c.Runtime = containers.RuntimeInfo{
- Name: name,
- Options: &options,
- }
- return nil
- }
- }
- // WithRestoreSpec restores the spec from the checkpoint for the container
- func WithRestoreSpec(ctx context.Context, id string, client *Client, checkpoint Image, index *imagespec.Index) NewContainerOpts {
- return func(ctx context.Context, client *Client, c *containers.Container) error {
- m, err := GetIndexByMediaType(index, images.MediaTypeContainerd1CheckpointConfig)
- if err != nil {
- return err
- }
- store := client.ContentStore()
- data, err := content.ReadBlob(ctx, store, *m)
- if err != nil {
- return fmt.Errorf("unable to read checkpoint config: %w", err)
- }
- var any ptypes.Any
- if err := proto.Unmarshal(data, &any); err != nil {
- return err
- }
- c.Spec = &any
- return nil
- }
- }
- // WithRestoreRW restores the rw layer from the checkpoint for the container
- func WithRestoreRW(ctx context.Context, id string, client *Client, checkpoint Image, index *imagespec.Index) NewContainerOpts {
- return func(ctx context.Context, client *Client, c *containers.Container) error {
- // apply rw layer
- rw, err := GetIndexByMediaType(index, imagespec.MediaTypeImageLayerGzip)
- if err != nil {
- return err
- }
- mounts, err := client.SnapshotService(c.Snapshotter).Mounts(ctx, c.SnapshotKey)
- if err != nil {
- return err
- }
- if _, err := client.DiffService().Apply(ctx, *rw, mounts); err != nil {
- return err
- }
- return nil
- }
- }
|