/* 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 container import ( "sync" "github.com/containerd/containerd" "github.com/containerd/containerd/pkg/cri/store/label" "github.com/containerd/containerd/pkg/cri/store/truncindex" runtime "k8s.io/cri-api/pkg/apis/runtime/v1alpha2" cio "github.com/containerd/containerd/pkg/cri/io" "github.com/containerd/containerd/pkg/cri/store" ) // Container contains all resources associated with the container. All methods to // mutate the internal state are thread-safe. type Container struct { // Metadata is the metadata of the container, it is **immutable** after created. Metadata // Status stores the status of the container. Status StatusStorage // Container is the containerd container client. Container containerd.Container // Container IO. // IO could only be nil when the container is in unknown state. IO *cio.ContainerIO // StopCh is used to propagate the stop information of the container. *store.StopCh // IsStopSignaledWithTimeout the default is 0, and it is set to 1 after sending // the signal once to avoid repeated sending of the signal. IsStopSignaledWithTimeout *uint32 } // Opts sets specific information to newly created Container. type Opts func(*Container) error // WithContainer adds the containerd Container to the internal data store. func WithContainer(cntr containerd.Container) Opts { return func(c *Container) error { c.Container = cntr return nil } } // WithContainerIO adds IO into the container. func WithContainerIO(io *cio.ContainerIO) Opts { return func(c *Container) error { c.IO = io return nil } } // WithStatus adds status to the container. func WithStatus(status Status, root string) Opts { return func(c *Container) error { s, err := StoreStatus(root, c.ID, status) if err != nil { return err } c.Status = s if s.Get().State() == runtime.ContainerState_CONTAINER_EXITED { c.Stop() } return nil } } // NewContainer creates an internally used container type. func NewContainer(metadata Metadata, opts ...Opts) (Container, error) { c := Container{ Metadata: metadata, StopCh: store.NewStopCh(), IsStopSignaledWithTimeout: new(uint32), } for _, o := range opts { if err := o(&c); err != nil { return Container{}, err } } return c, nil } // Delete deletes checkpoint for the container. func (c *Container) Delete() error { return c.Status.Delete() } // Store stores all Containers. type Store struct { lock sync.RWMutex containers map[string]Container idIndex *truncindex.TruncIndex labels *label.Store } // NewStore creates a container store. func NewStore(labels *label.Store) *Store { return &Store{ containers: make(map[string]Container), idIndex: truncindex.NewTruncIndex([]string{}), labels: labels, } } // Add a container into the store. Returns store.ErrAlreadyExist if the // container already exists. func (s *Store) Add(c Container) error { s.lock.Lock() defer s.lock.Unlock() if _, ok := s.containers[c.ID]; ok { return store.ErrAlreadyExist } if err := s.labels.Reserve(c.ProcessLabel); err != nil { return err } if err := s.idIndex.Add(c.ID); err != nil { return err } s.containers[c.ID] = c return nil } // Get returns the container with specified id. Returns store.ErrNotExist // if the container doesn't exist. func (s *Store) Get(id string) (Container, error) { s.lock.RLock() defer s.lock.RUnlock() id, err := s.idIndex.Get(id) if err != nil { if err == truncindex.ErrNotExist { err = store.ErrNotExist } return Container{}, err } if c, ok := s.containers[id]; ok { return c, nil } return Container{}, store.ErrNotExist } // List lists all containers. func (s *Store) List() []Container { s.lock.RLock() defer s.lock.RUnlock() var containers []Container for _, c := range s.containers { containers = append(containers, c) } return containers } // Delete deletes the container from store with specified id. func (s *Store) Delete(id string) { s.lock.Lock() defer s.lock.Unlock() id, err := s.idIndex.Get(id) if err != nil { // Note: The idIndex.Delete and delete doesn't handle truncated index. // So we need to return if there are error. return } s.labels.Release(s.containers[id].ProcessLabel) s.idIndex.Delete(id) // nolint: errcheck delete(s.containers, id) }