123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862 |
- // +build !windows
- package libcontainerd
- import (
- "context"
- "encoding/json"
- "fmt"
- "io"
- "os"
- "path/filepath"
- "reflect"
- "runtime"
- "strings"
- "sync"
- "syscall"
- "time"
- "google.golang.org/grpc"
- "google.golang.org/grpc/codes"
- "google.golang.org/grpc/status"
- "github.com/containerd/containerd"
- "github.com/containerd/containerd/api/events"
- eventsapi "github.com/containerd/containerd/api/services/events/v1"
- "github.com/containerd/containerd/api/types"
- "github.com/containerd/containerd/archive"
- "github.com/containerd/containerd/cio"
- "github.com/containerd/containerd/content"
- containerderrors "github.com/containerd/containerd/errdefs"
- "github.com/containerd/containerd/images"
- "github.com/containerd/containerd/linux/runctypes"
- "github.com/containerd/typeurl"
- "github.com/docker/docker/errdefs"
- "github.com/docker/docker/pkg/ioutils"
- "github.com/opencontainers/image-spec/specs-go/v1"
- specs "github.com/opencontainers/runtime-spec/specs-go"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- )
- // InitProcessName is the name given to the first process of a
- // container
- const InitProcessName = "init"
- type container struct {
- mu sync.Mutex
- bundleDir string
- ctr containerd.Container
- task containerd.Task
- execs map[string]containerd.Process
- oomKilled bool
- }
- func (c *container) setTask(t containerd.Task) {
- c.mu.Lock()
- c.task = t
- c.mu.Unlock()
- }
- func (c *container) getTask() containerd.Task {
- c.mu.Lock()
- t := c.task
- c.mu.Unlock()
- return t
- }
- func (c *container) addProcess(id string, p containerd.Process) {
- c.mu.Lock()
- if c.execs == nil {
- c.execs = make(map[string]containerd.Process)
- }
- c.execs[id] = p
- c.mu.Unlock()
- }
- func (c *container) deleteProcess(id string) {
- c.mu.Lock()
- delete(c.execs, id)
- c.mu.Unlock()
- }
- func (c *container) getProcess(id string) containerd.Process {
- c.mu.Lock()
- p := c.execs[id]
- c.mu.Unlock()
- return p
- }
- func (c *container) setOOMKilled(killed bool) {
- c.mu.Lock()
- c.oomKilled = killed
- c.mu.Unlock()
- }
- func (c *container) getOOMKilled() bool {
- c.mu.Lock()
- killed := c.oomKilled
- c.mu.Unlock()
- return killed
- }
- type client struct {
- sync.RWMutex // protects containers map
- remote *containerd.Client
- stateDir string
- logger *logrus.Entry
- namespace string
- backend Backend
- eventQ queue
- containers map[string]*container
- }
- func (c *client) Version(ctx context.Context) (containerd.Version, error) {
- return c.remote.Version(ctx)
- }
- func (c *client) Restore(ctx context.Context, id string, attachStdio StdioCallback) (alive bool, pid int, err error) {
- c.Lock()
- defer c.Unlock()
- var dio *cio.DirectIO
- defer func() {
- if err != nil && dio != nil {
- dio.Cancel()
- dio.Close()
- }
- err = wrapError(err)
- }()
- ctr, err := c.remote.LoadContainer(ctx, id)
- if err != nil {
- return false, -1, errors.WithStack(err)
- }
- attachIO := func(fifos *cio.FIFOSet) (cio.IO, error) {
- // dio must be assigned to the previously defined dio for the defer above
- // to handle cleanup
- dio, err = cio.NewDirectIO(ctx, fifos)
- if err != nil {
- return nil, err
- }
- return attachStdio(dio)
- }
- t, err := ctr.Task(ctx, attachIO)
- if err != nil && !errdefs.IsNotFound(errors.Cause(err)) {
- return false, -1, err
- }
- if t != nil {
- s, err := t.Status(ctx)
- if err != nil {
- return false, -1, err
- }
- alive = s.Status != containerd.Stopped
- pid = int(t.Pid())
- }
- c.containers[id] = &container{
- bundleDir: filepath.Join(c.stateDir, id),
- ctr: ctr,
- task: t,
- // TODO(mlaventure): load execs
- }
- c.logger.WithFields(logrus.Fields{
- "container": id,
- "alive": alive,
- "pid": pid,
- }).Debug("restored container")
- return alive, pid, nil
- }
- func (c *client) Create(ctx context.Context, id string, ociSpec *specs.Spec, runtimeOptions interface{}) error {
- if ctr := c.getContainer(id); ctr != nil {
- return errors.WithStack(newConflictError("id already in use"))
- }
- bdir, err := prepareBundleDir(filepath.Join(c.stateDir, id), ociSpec)
- if err != nil {
- return errdefs.System(errors.Wrap(err, "prepare bundle dir failed"))
- }
- c.logger.WithField("bundle", bdir).WithField("root", ociSpec.Root.Path).Debug("bundle dir created")
- cdCtr, err := c.remote.NewContainer(ctx, id,
- containerd.WithSpec(ociSpec),
- // TODO(mlaventure): when containerd support lcow, revisit runtime value
- containerd.WithRuntime(fmt.Sprintf("io.containerd.runtime.v1.%s", runtime.GOOS), runtimeOptions))
- if err != nil {
- return err
- }
- c.Lock()
- c.containers[id] = &container{
- bundleDir: bdir,
- ctr: cdCtr,
- }
- c.Unlock()
- return nil
- }
- // Start create and start a task for the specified containerd id
- func (c *client) Start(ctx context.Context, id, checkpointDir string, withStdin bool, attachStdio StdioCallback) (int, error) {
- ctr := c.getContainer(id)
- if ctr == nil {
- return -1, errors.WithStack(newNotFoundError("no such container"))
- }
- if t := ctr.getTask(); t != nil {
- return -1, errors.WithStack(newConflictError("container already started"))
- }
- var (
- cp *types.Descriptor
- t containerd.Task
- rio cio.IO
- err error
- stdinCloseSync = make(chan struct{})
- )
- if checkpointDir != "" {
- // write checkpoint to the content store
- tar := archive.Diff(ctx, "", checkpointDir)
- cp, err = c.writeContent(ctx, images.MediaTypeContainerd1Checkpoint, checkpointDir, tar)
- // remove the checkpoint when we're done
- defer func() {
- if cp != nil {
- err := c.remote.ContentStore().Delete(context.Background(), cp.Digest)
- if err != nil {
- c.logger.WithError(err).WithFields(logrus.Fields{
- "ref": checkpointDir,
- "digest": cp.Digest,
- }).Warnf("failed to delete temporary checkpoint entry")
- }
- }
- }()
- if err := tar.Close(); err != nil {
- return -1, errors.Wrap(err, "failed to close checkpoint tar stream")
- }
- if err != nil {
- return -1, errors.Wrapf(err, "failed to upload checkpoint to containerd")
- }
- }
- spec, err := ctr.ctr.Spec(ctx)
- if err != nil {
- return -1, errors.Wrap(err, "failed to retrieve spec")
- }
- uid, gid := getSpecUser(spec)
- t, err = ctr.ctr.NewTask(ctx,
- func(id string) (cio.IO, error) {
- fifos := newFIFOSet(ctr.bundleDir, InitProcessName, withStdin, spec.Process.Terminal)
- rio, err = c.createIO(fifos, id, InitProcessName, stdinCloseSync, attachStdio)
- return rio, err
- },
- func(_ context.Context, _ *containerd.Client, info *containerd.TaskInfo) error {
- info.Checkpoint = cp
- info.Options = &runctypes.CreateOptions{
- IoUid: uint32(uid),
- IoGid: uint32(gid),
- NoPivotRoot: os.Getenv("DOCKER_RAMDISK") != "",
- }
- return nil
- })
- if err != nil {
- close(stdinCloseSync)
- if rio != nil {
- rio.Cancel()
- rio.Close()
- }
- return -1, err
- }
- ctr.setTask(t)
- // Signal c.createIO that it can call CloseIO
- close(stdinCloseSync)
- if err := t.Start(ctx); err != nil {
- if _, err := t.Delete(ctx); err != nil {
- c.logger.WithError(err).WithField("container", id).
- Error("failed to delete task after fail start")
- }
- ctr.setTask(nil)
- return -1, err
- }
- return int(t.Pid()), nil
- }
- func (c *client) Exec(ctx context.Context, containerID, processID string, spec *specs.Process, withStdin bool, attachStdio StdioCallback) (int, error) {
- ctr := c.getContainer(containerID)
- if ctr == nil {
- return -1, errors.WithStack(newNotFoundError("no such container"))
- }
- t := ctr.getTask()
- if t == nil {
- return -1, errors.WithStack(newInvalidParameterError("container is not running"))
- }
- if p := ctr.getProcess(processID); p != nil {
- return -1, errors.WithStack(newConflictError("id already in use"))
- }
- var (
- p containerd.Process
- rio cio.IO
- err error
- stdinCloseSync = make(chan struct{})
- )
- fifos := newFIFOSet(ctr.bundleDir, processID, withStdin, spec.Terminal)
- defer func() {
- if err != nil {
- if rio != nil {
- rio.Cancel()
- rio.Close()
- }
- }
- }()
- p, err = t.Exec(ctx, processID, spec, func(id string) (cio.IO, error) {
- rio, err = c.createIO(fifos, containerID, processID, stdinCloseSync, attachStdio)
- return rio, err
- })
- if err != nil {
- close(stdinCloseSync)
- return -1, err
- }
- ctr.addProcess(processID, p)
- // Signal c.createIO that it can call CloseIO
- close(stdinCloseSync)
- if err = p.Start(ctx); err != nil {
- p.Delete(context.Background())
- ctr.deleteProcess(processID)
- return -1, err
- }
- return int(p.Pid()), nil
- }
- func (c *client) SignalProcess(ctx context.Context, containerID, processID string, signal int) error {
- p, err := c.getProcess(containerID, processID)
- if err != nil {
- return err
- }
- return wrapError(p.Kill(ctx, syscall.Signal(signal)))
- }
- func (c *client) ResizeTerminal(ctx context.Context, containerID, processID string, width, height int) error {
- p, err := c.getProcess(containerID, processID)
- if err != nil {
- return err
- }
- return p.Resize(ctx, uint32(width), uint32(height))
- }
- func (c *client) CloseStdin(ctx context.Context, containerID, processID string) error {
- p, err := c.getProcess(containerID, processID)
- if err != nil {
- return err
- }
- return p.CloseIO(ctx, containerd.WithStdinCloser)
- }
- func (c *client) Pause(ctx context.Context, containerID string) error {
- p, err := c.getProcess(containerID, InitProcessName)
- if err != nil {
- return err
- }
- return p.(containerd.Task).Pause(ctx)
- }
- func (c *client) Resume(ctx context.Context, containerID string) error {
- p, err := c.getProcess(containerID, InitProcessName)
- if err != nil {
- return err
- }
- return p.(containerd.Task).Resume(ctx)
- }
- func (c *client) Stats(ctx context.Context, containerID string) (*Stats, error) {
- p, err := c.getProcess(containerID, InitProcessName)
- if err != nil {
- return nil, err
- }
- m, err := p.(containerd.Task).Metrics(ctx)
- if err != nil {
- return nil, err
- }
- v, err := typeurl.UnmarshalAny(m.Data)
- if err != nil {
- return nil, err
- }
- return interfaceToStats(m.Timestamp, v), nil
- }
- func (c *client) ListPids(ctx context.Context, containerID string) ([]uint32, error) {
- p, err := c.getProcess(containerID, InitProcessName)
- if err != nil {
- return nil, err
- }
- pis, err := p.(containerd.Task).Pids(ctx)
- if err != nil {
- return nil, err
- }
- var pids []uint32
- for _, i := range pis {
- pids = append(pids, i.Pid)
- }
- return pids, nil
- }
- func (c *client) Summary(ctx context.Context, containerID string) ([]Summary, error) {
- p, err := c.getProcess(containerID, InitProcessName)
- if err != nil {
- return nil, err
- }
- pis, err := p.(containerd.Task).Pids(ctx)
- if err != nil {
- return nil, err
- }
- var infos []Summary
- for _, pi := range pis {
- i, err := typeurl.UnmarshalAny(pi.Info)
- if err != nil {
- return nil, errors.Wrap(err, "unable to decode process details")
- }
- s, err := summaryFromInterface(i)
- if err != nil {
- return nil, err
- }
- infos = append(infos, *s)
- }
- return infos, nil
- }
- func (c *client) DeleteTask(ctx context.Context, containerID string) (uint32, time.Time, error) {
- p, err := c.getProcess(containerID, InitProcessName)
- if err != nil {
- return 255, time.Now(), nil
- }
- status, err := p.(containerd.Task).Delete(ctx)
- if err != nil {
- return 255, time.Now(), nil
- }
- if ctr := c.getContainer(containerID); ctr != nil {
- ctr.setTask(nil)
- }
- return status.ExitCode(), status.ExitTime(), nil
- }
- func (c *client) Delete(ctx context.Context, containerID string) error {
- ctr := c.getContainer(containerID)
- if ctr == nil {
- return errors.WithStack(newNotFoundError("no such container"))
- }
- if err := ctr.ctr.Delete(ctx); err != nil {
- return err
- }
- if os.Getenv("LIBCONTAINERD_NOCLEAN") != "1" {
- if err := os.RemoveAll(ctr.bundleDir); err != nil {
- c.logger.WithError(err).WithFields(logrus.Fields{
- "container": containerID,
- "bundle": ctr.bundleDir,
- }).Error("failed to remove state dir")
- }
- }
- c.removeContainer(containerID)
- return nil
- }
- func (c *client) Status(ctx context.Context, containerID string) (Status, error) {
- ctr := c.getContainer(containerID)
- if ctr == nil {
- return StatusUnknown, errors.WithStack(newNotFoundError("no such container"))
- }
- t := ctr.getTask()
- if t == nil {
- return StatusUnknown, errors.WithStack(newNotFoundError("no such task"))
- }
- s, err := t.Status(ctx)
- if err != nil {
- return StatusUnknown, err
- }
- return Status(s.Status), nil
- }
- func (c *client) CreateCheckpoint(ctx context.Context, containerID, checkpointDir string, exit bool) error {
- p, err := c.getProcess(containerID, InitProcessName)
- if err != nil {
- return err
- }
- img, err := p.(containerd.Task).Checkpoint(ctx)
- if err != nil {
- return err
- }
- // Whatever happens, delete the checkpoint from containerd
- defer func() {
- err := c.remote.ImageService().Delete(context.Background(), img.Name())
- if err != nil {
- c.logger.WithError(err).WithField("digest", img.Target().Digest).
- Warnf("failed to delete checkpoint image")
- }
- }()
- b, err := content.ReadBlob(ctx, c.remote.ContentStore(), img.Target().Digest)
- if err != nil {
- return errdefs.System(errors.Wrapf(err, "failed to retrieve checkpoint data"))
- }
- var index v1.Index
- if err := json.Unmarshal(b, &index); err != nil {
- return errdefs.System(errors.Wrapf(err, "failed to decode checkpoint data"))
- }
- var cpDesc *v1.Descriptor
- for _, m := range index.Manifests {
- if m.MediaType == images.MediaTypeContainerd1Checkpoint {
- cpDesc = &m
- break
- }
- }
- if cpDesc == nil {
- return errdefs.System(errors.Wrapf(err, "invalid checkpoint"))
- }
- rat, err := c.remote.ContentStore().ReaderAt(ctx, cpDesc.Digest)
- if err != nil {
- return errdefs.System(errors.Wrapf(err, "failed to get checkpoint reader"))
- }
- defer rat.Close()
- _, err = archive.Apply(ctx, checkpointDir, content.NewReader(rat))
- if err != nil {
- return errdefs.System(errors.Wrapf(err, "failed to read checkpoint reader"))
- }
- return err
- }
- func (c *client) getContainer(id string) *container {
- c.RLock()
- ctr := c.containers[id]
- c.RUnlock()
- return ctr
- }
- func (c *client) removeContainer(id string) {
- c.Lock()
- delete(c.containers, id)
- c.Unlock()
- }
- func (c *client) getProcess(containerID, processID string) (containerd.Process, error) {
- ctr := c.getContainer(containerID)
- if ctr == nil {
- return nil, errors.WithStack(newNotFoundError("no such container"))
- }
- t := ctr.getTask()
- if t == nil {
- return nil, errors.WithStack(newNotFoundError("container is not running"))
- }
- if processID == InitProcessName {
- return t, nil
- }
- p := ctr.getProcess(processID)
- if p == nil {
- return nil, errors.WithStack(newNotFoundError("no such exec"))
- }
- return p, nil
- }
- // createIO creates the io to be used by a process
- // This needs to get a pointer to interface as upon closure the process may not have yet been registered
- func (c *client) createIO(fifos *cio.FIFOSet, containerID, processID string, stdinCloseSync chan struct{}, attachStdio StdioCallback) (cio.IO, error) {
- io, err := cio.NewDirectIO(context.Background(), fifos)
- if err != nil {
- return nil, err
- }
- if io.Stdin != nil {
- var (
- err error
- stdinOnce sync.Once
- )
- pipe := io.Stdin
- io.Stdin = ioutils.NewWriteCloserWrapper(pipe, func() error {
- stdinOnce.Do(func() {
- err = pipe.Close()
- // Do the rest in a new routine to avoid a deadlock if the
- // Exec/Start call failed.
- go func() {
- <-stdinCloseSync
- p, err := c.getProcess(containerID, processID)
- if err == nil {
- err = p.CloseIO(context.Background(), containerd.WithStdinCloser)
- if err != nil && strings.Contains(err.Error(), "transport is closing") {
- err = nil
- }
- }
- }()
- })
- return err
- })
- }
- rio, err := attachStdio(io)
- if err != nil {
- io.Cancel()
- io.Close()
- }
- return rio, err
- }
- func (c *client) processEvent(ctr *container, et EventType, ei EventInfo) {
- c.eventQ.append(ei.ContainerID, func() {
- err := c.backend.ProcessEvent(ei.ContainerID, et, ei)
- if err != nil {
- c.logger.WithError(err).WithFields(logrus.Fields{
- "container": ei.ContainerID,
- "event": et,
- "event-info": ei,
- }).Error("failed to process event")
- }
- if et == EventExit && ei.ProcessID != ei.ContainerID {
- p := ctr.getProcess(ei.ProcessID)
- if p == nil {
- c.logger.WithError(errors.New("no such process")).
- WithFields(logrus.Fields{
- "container": ei.ContainerID,
- "process": ei.ProcessID,
- }).Error("exit event")
- return
- }
- _, err = p.Delete(context.Background())
- if err != nil {
- c.logger.WithError(err).WithFields(logrus.Fields{
- "container": ei.ContainerID,
- "process": ei.ProcessID,
- }).Warn("failed to delete process")
- }
- ctr.deleteProcess(ei.ProcessID)
- ctr := c.getContainer(ei.ContainerID)
- if ctr == nil {
- c.logger.WithFields(logrus.Fields{
- "container": ei.ContainerID,
- }).Error("failed to find container")
- } else {
- newFIFOSet(ctr.bundleDir, ei.ProcessID, true, false).Close()
- }
- }
- })
- }
- func (c *client) processEventStream(ctx context.Context) {
- var (
- err error
- eventStream eventsapi.Events_SubscribeClient
- ev *eventsapi.Envelope
- et EventType
- ei EventInfo
- ctr *container
- )
- defer func() {
- if err != nil {
- select {
- case <-ctx.Done():
- c.logger.WithError(ctx.Err()).
- Info("stopping event stream following graceful shutdown")
- default:
- go c.processEventStream(ctx)
- }
- }
- }()
- eventStream, err = c.remote.EventService().Subscribe(ctx, &eventsapi.SubscribeRequest{
- Filters: []string{
- // Filter on both namespace *and* topic. To create an "and" filter,
- // this must be a single, comma-separated string
- "namespace==" + c.namespace + ",topic~=|^/tasks/|",
- },
- }, grpc.FailFast(false))
- if err != nil {
- return
- }
- var oomKilled bool
- for {
- ev, err = eventStream.Recv()
- if err != nil {
- errStatus, ok := status.FromError(err)
- if !ok || errStatus.Code() != codes.Canceled {
- c.logger.WithError(err).Error("failed to get event")
- }
- return
- }
- if ev.Event == nil {
- c.logger.WithField("event", ev).Warn("invalid event")
- continue
- }
- v, err := typeurl.UnmarshalAny(ev.Event)
- if err != nil {
- c.logger.WithError(err).WithField("event", ev).Warn("failed to unmarshal event")
- continue
- }
- c.logger.WithField("topic", ev.Topic).Debug("event")
- switch t := v.(type) {
- case *events.TaskCreate:
- et = EventCreate
- ei = EventInfo{
- ContainerID: t.ContainerID,
- ProcessID: t.ContainerID,
- Pid: t.Pid,
- }
- case *events.TaskStart:
- et = EventStart
- ei = EventInfo{
- ContainerID: t.ContainerID,
- ProcessID: t.ContainerID,
- Pid: t.Pid,
- }
- case *events.TaskExit:
- et = EventExit
- ei = EventInfo{
- ContainerID: t.ContainerID,
- ProcessID: t.ID,
- Pid: t.Pid,
- ExitCode: t.ExitStatus,
- ExitedAt: t.ExitedAt,
- }
- case *events.TaskOOM:
- et = EventOOM
- ei = EventInfo{
- ContainerID: t.ContainerID,
- OOMKilled: true,
- }
- oomKilled = true
- case *events.TaskExecAdded:
- et = EventExecAdded
- ei = EventInfo{
- ContainerID: t.ContainerID,
- ProcessID: t.ExecID,
- }
- case *events.TaskExecStarted:
- et = EventExecStarted
- ei = EventInfo{
- ContainerID: t.ContainerID,
- ProcessID: t.ExecID,
- Pid: t.Pid,
- }
- case *events.TaskPaused:
- et = EventPaused
- ei = EventInfo{
- ContainerID: t.ContainerID,
- }
- case *events.TaskResumed:
- et = EventResumed
- ei = EventInfo{
- ContainerID: t.ContainerID,
- }
- default:
- c.logger.WithFields(logrus.Fields{
- "topic": ev.Topic,
- "type": reflect.TypeOf(t)},
- ).Info("ignoring event")
- continue
- }
- ctr = c.getContainer(ei.ContainerID)
- if ctr == nil {
- c.logger.WithField("container", ei.ContainerID).Warn("unknown container")
- continue
- }
- if oomKilled {
- ctr.setOOMKilled(true)
- oomKilled = false
- }
- ei.OOMKilled = ctr.getOOMKilled()
- c.processEvent(ctr, et, ei)
- }
- }
- func (c *client) writeContent(ctx context.Context, mediaType, ref string, r io.Reader) (*types.Descriptor, error) {
- writer, err := c.remote.ContentStore().Writer(ctx, ref, 0, "")
- if err != nil {
- return nil, err
- }
- defer writer.Close()
- size, err := io.Copy(writer, r)
- if err != nil {
- return nil, err
- }
- labels := map[string]string{
- "containerd.io/gc.root": time.Now().UTC().Format(time.RFC3339),
- }
- if err := writer.Commit(ctx, 0, "", content.WithLabels(labels)); err != nil {
- return nil, err
- }
- return &types.Descriptor{
- MediaType: mediaType,
- Digest: writer.Digest(),
- Size_: size,
- }, nil
- }
- func wrapError(err error) error {
- switch {
- case err == nil:
- return nil
- case containerderrors.IsNotFound(err):
- return errdefs.NotFound(err)
- }
- msg := err.Error()
- for _, s := range []string{"container does not exist", "not found", "no such container"} {
- if strings.Contains(msg, s) {
- return errdefs.NotFound(err)
- }
- }
- return err
- }
|