123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460 |
- //go:build !windows
- package container // import "github.com/docker/docker/container"
- import (
- "context"
- "os"
- "path/filepath"
- "syscall"
- "github.com/containerd/continuity/fs"
- "github.com/containerd/log"
- "github.com/docker/docker/api/types"
- containertypes "github.com/docker/docker/api/types/container"
- "github.com/docker/docker/api/types/events"
- mounttypes "github.com/docker/docker/api/types/mount"
- swarmtypes "github.com/docker/docker/api/types/swarm"
- volumemounts "github.com/docker/docker/volume/mounts"
- "github.com/moby/sys/mount"
- "github.com/opencontainers/selinux/go-selinux/label"
- "github.com/pkg/errors"
- )
- const (
- // defaultStopSignal is the default syscall signal used to stop a container.
- defaultStopSignal = "SIGTERM"
- // defaultStopTimeout sets the default time, in seconds, to wait
- // for the graceful container stop before forcefully terminating it.
- defaultStopTimeout = 10
- containerConfigMountPath = "/"
- containerSecretMountPath = "/run/secrets"
- )
- // TrySetNetworkMount attempts to set the network mounts given a provided destination and
- // the path to use for it; return true if the given destination was a network mount file
- func (container *Container) TrySetNetworkMount(destination string, path string) bool {
- if destination == "/etc/resolv.conf" {
- container.ResolvConfPath = path
- return true
- }
- if destination == "/etc/hostname" {
- container.HostnamePath = path
- return true
- }
- if destination == "/etc/hosts" {
- container.HostsPath = path
- return true
- }
- return false
- }
- // BuildHostnameFile writes the container's hostname file.
- func (container *Container) BuildHostnameFile() error {
- hostnamePath, err := container.GetRootResourcePath("hostname")
- if err != nil {
- return err
- }
- container.HostnamePath = hostnamePath
- return os.WriteFile(container.HostnamePath, []byte(container.Config.Hostname+"\n"), 0o644)
- }
- // NetworkMounts returns the list of network mounts.
- func (container *Container) NetworkMounts() []Mount {
- ctx := context.TODO()
- var mounts []Mount
- shared := container.HostConfig.NetworkMode.IsContainer()
- parser := volumemounts.NewParser()
- if container.ResolvConfPath != "" {
- if _, err := os.Stat(container.ResolvConfPath); err != nil {
- log.G(ctx).Warnf("ResolvConfPath set to %q, but can't stat this filename (err = %v); skipping", container.ResolvConfPath, err)
- } else {
- writable := !container.HostConfig.ReadonlyRootfs
- if m, exists := container.MountPoints["/etc/resolv.conf"]; exists {
- writable = m.RW
- } else {
- label.Relabel(container.ResolvConfPath, container.MountLabel, shared)
- }
- mounts = append(mounts, Mount{
- Source: container.ResolvConfPath,
- Destination: "/etc/resolv.conf",
- Writable: writable,
- Propagation: string(parser.DefaultPropagationMode()),
- })
- }
- }
- if container.HostnamePath != "" {
- if _, err := os.Stat(container.HostnamePath); err != nil {
- log.G(ctx).Warnf("HostnamePath set to %q, but can't stat this filename (err = %v); skipping", container.HostnamePath, err)
- } else {
- writable := !container.HostConfig.ReadonlyRootfs
- if m, exists := container.MountPoints["/etc/hostname"]; exists {
- writable = m.RW
- } else {
- label.Relabel(container.HostnamePath, container.MountLabel, shared)
- }
- mounts = append(mounts, Mount{
- Source: container.HostnamePath,
- Destination: "/etc/hostname",
- Writable: writable,
- Propagation: string(parser.DefaultPropagationMode()),
- })
- }
- }
- if container.HostsPath != "" {
- if _, err := os.Stat(container.HostsPath); err != nil {
- log.G(ctx).Warnf("HostsPath set to %q, but can't stat this filename (err = %v); skipping", container.HostsPath, err)
- } else {
- writable := !container.HostConfig.ReadonlyRootfs
- if m, exists := container.MountPoints["/etc/hosts"]; exists {
- writable = m.RW
- } else {
- label.Relabel(container.HostsPath, container.MountLabel, shared)
- }
- mounts = append(mounts, Mount{
- Source: container.HostsPath,
- Destination: "/etc/hosts",
- Writable: writable,
- Propagation: string(parser.DefaultPropagationMode()),
- })
- }
- }
- return mounts
- }
- // CopyImagePathContent copies files in destination to the volume.
- func (container *Container) CopyImagePathContent(volumePath, destination string) error {
- if err := label.Relabel(volumePath, container.MountLabel, true); err != nil && !errors.Is(err, syscall.ENOTSUP) {
- return err
- }
- return copyExistingContents(destination, volumePath)
- }
- // ShmResourcePath returns path to shm
- func (container *Container) ShmResourcePath() (string, error) {
- return container.MountsResourcePath("shm")
- }
- // HasMountFor checks if path is a mountpoint
- func (container *Container) HasMountFor(path string) bool {
- _, exists := container.MountPoints[path]
- if exists {
- return true
- }
- // Also search among the tmpfs mounts
- for dest := range container.HostConfig.Tmpfs {
- if dest == path {
- return true
- }
- }
- return false
- }
- // UnmountIpcMount unmounts shm if it was mounted
- func (container *Container) UnmountIpcMount() error {
- if container.HasMountFor("/dev/shm") {
- return nil
- }
- // container.ShmPath should not be used here as it may point
- // to the host's or other container's /dev/shm
- shmPath, err := container.ShmResourcePath()
- if err != nil {
- return err
- }
- if shmPath == "" {
- return nil
- }
- if err = mount.Unmount(shmPath); err != nil && !errors.Is(err, os.ErrNotExist) {
- return err
- }
- return nil
- }
- // IpcMounts returns the list of IPC mounts
- func (container *Container) IpcMounts() []Mount {
- var mounts []Mount
- parser := volumemounts.NewParser()
- if container.HasMountFor("/dev/shm") {
- return mounts
- }
- if container.ShmPath == "" {
- return mounts
- }
- label.SetFileLabel(container.ShmPath, container.MountLabel)
- mounts = append(mounts, Mount{
- Source: container.ShmPath,
- Destination: "/dev/shm",
- Writable: true,
- Propagation: string(parser.DefaultPropagationMode()),
- })
- return mounts
- }
- // SecretMounts returns the mounts for the secret path.
- func (container *Container) SecretMounts() ([]Mount, error) {
- var mounts []Mount
- for _, r := range container.SecretReferences {
- if r.File == nil {
- continue
- }
- src, err := container.SecretFilePath(*r)
- if err != nil {
- return nil, err
- }
- mounts = append(mounts, Mount{
- Source: src,
- Destination: getSecretTargetPath(r),
- Writable: false,
- })
- }
- for _, r := range container.ConfigReferences {
- fPath, err := container.ConfigFilePath(*r)
- if err != nil {
- return nil, err
- }
- mounts = append(mounts, Mount{
- Source: fPath,
- Destination: getConfigTargetPath(r),
- Writable: false,
- })
- }
- return mounts, nil
- }
- // UnmountSecrets unmounts the local tmpfs for secrets
- func (container *Container) UnmountSecrets() error {
- p, err := container.SecretMountPath()
- if err != nil {
- return err
- }
- if _, err := os.Stat(p); err != nil {
- if os.IsNotExist(err) {
- return nil
- }
- return err
- }
- return mount.RecursiveUnmount(p)
- }
- type conflictingUpdateOptions string
- func (e conflictingUpdateOptions) Error() string {
- return string(e)
- }
- func (e conflictingUpdateOptions) Conflict() {}
- // UpdateContainer updates configuration of a container. Callers must hold a Lock on the Container.
- func (container *Container) UpdateContainer(hostConfig *containertypes.HostConfig) error {
- // update resources of container
- resources := hostConfig.Resources
- cResources := &container.HostConfig.Resources
- // validate NanoCPUs, CPUPeriod, and CPUQuota
- // Because NanoCPU effectively updates CPUPeriod/CPUQuota,
- // once NanoCPU is already set, updating CPUPeriod/CPUQuota will be blocked, and vice versa.
- // In the following we make sure the intended update (resources) does not conflict with the existing (cResource).
- if resources.NanoCPUs > 0 && cResources.CPUPeriod > 0 {
- return conflictingUpdateOptions("Conflicting options: Nano CPUs cannot be updated as CPU Period has already been set")
- }
- if resources.NanoCPUs > 0 && cResources.CPUQuota > 0 {
- return conflictingUpdateOptions("Conflicting options: Nano CPUs cannot be updated as CPU Quota has already been set")
- }
- if resources.CPUPeriod > 0 && cResources.NanoCPUs > 0 {
- return conflictingUpdateOptions("Conflicting options: CPU Period cannot be updated as NanoCPUs has already been set")
- }
- if resources.CPUQuota > 0 && cResources.NanoCPUs > 0 {
- return conflictingUpdateOptions("Conflicting options: CPU Quota cannot be updated as NanoCPUs has already been set")
- }
- if resources.BlkioWeight != 0 {
- cResources.BlkioWeight = resources.BlkioWeight
- }
- if resources.CPUShares != 0 {
- cResources.CPUShares = resources.CPUShares
- }
- if resources.NanoCPUs != 0 {
- cResources.NanoCPUs = resources.NanoCPUs
- }
- if resources.CPUPeriod != 0 {
- cResources.CPUPeriod = resources.CPUPeriod
- }
- if resources.CPUQuota != 0 {
- cResources.CPUQuota = resources.CPUQuota
- }
- if resources.CpusetCpus != "" {
- cResources.CpusetCpus = resources.CpusetCpus
- }
- if resources.CpusetMems != "" {
- cResources.CpusetMems = resources.CpusetMems
- }
- if resources.Memory != 0 {
- // if memory limit smaller than already set memoryswap limit and doesn't
- // update the memoryswap limit, then error out.
- if resources.Memory > cResources.MemorySwap && resources.MemorySwap == 0 {
- return conflictingUpdateOptions("Memory limit should be smaller than already set memoryswap limit, update the memoryswap at the same time")
- }
- cResources.Memory = resources.Memory
- }
- if resources.MemorySwap != 0 {
- cResources.MemorySwap = resources.MemorySwap
- }
- if resources.MemoryReservation != 0 {
- cResources.MemoryReservation = resources.MemoryReservation
- }
- if resources.KernelMemory != 0 {
- cResources.KernelMemory = resources.KernelMemory
- }
- if resources.CPURealtimePeriod != 0 {
- cResources.CPURealtimePeriod = resources.CPURealtimePeriod
- }
- if resources.CPURealtimeRuntime != 0 {
- cResources.CPURealtimeRuntime = resources.CPURealtimeRuntime
- }
- if resources.PidsLimit != nil {
- cResources.PidsLimit = resources.PidsLimit
- }
- // update HostConfig of container
- if hostConfig.RestartPolicy.Name != "" {
- if container.HostConfig.AutoRemove && !hostConfig.RestartPolicy.IsNone() {
- return conflictingUpdateOptions("Restart policy cannot be updated because AutoRemove is enabled for the container")
- }
- container.HostConfig.RestartPolicy = hostConfig.RestartPolicy
- }
- return nil
- }
- // DetachAndUnmount uses a detached mount on all mount destinations, then
- // unmounts each volume normally.
- // This is used from daemon/archive for `docker cp`
- func (container *Container) DetachAndUnmount(volumeEventLog func(name string, action events.Action, attributes map[string]string)) error {
- ctx := context.TODO()
- networkMounts := container.NetworkMounts()
- mountPaths := make([]string, 0, len(container.MountPoints)+len(networkMounts))
- for _, mntPoint := range container.MountPoints {
- dest, err := container.GetResourcePath(mntPoint.Destination)
- if err != nil {
- log.G(ctx).Warnf("Failed to get volume destination path for container '%s' at '%s' while lazily unmounting: %v", container.ID, mntPoint.Destination, err)
- continue
- }
- mountPaths = append(mountPaths, dest)
- }
- for _, m := range networkMounts {
- dest, err := container.GetResourcePath(m.Destination)
- if err != nil {
- log.G(ctx).Warnf("Failed to get volume destination path for container '%s' at '%s' while lazily unmounting: %v", container.ID, m.Destination, err)
- continue
- }
- mountPaths = append(mountPaths, dest)
- }
- for _, mountPath := range mountPaths {
- if err := mount.Unmount(mountPath); err != nil {
- log.G(ctx).WithError(err).WithField("container", container.ID).
- Warn("Unable to unmount")
- }
- }
- return container.UnmountVolumes(ctx, volumeEventLog)
- }
- // ignoreUnsupportedXAttrs ignores errors when extended attributes
- // are not supported
- func ignoreUnsupportedXAttrs() fs.CopyDirOpt {
- xeh := func(dst, src, xattrKey string, err error) error {
- if !errors.Is(err, syscall.ENOTSUP) {
- return err
- }
- return nil
- }
- return fs.WithXAttrErrorHandler(xeh)
- }
- // copyExistingContents copies from the source to the destination and
- // ensures the ownership is appropriately set.
- func copyExistingContents(source, destination string) error {
- dstList, err := os.ReadDir(destination)
- if err != nil {
- return err
- }
- if len(dstList) != 0 {
- log.G(context.TODO()).WithFields(log.Fields{
- "source": source,
- "destination": destination,
- }).Debug("destination is not empty, do not copy")
- return nil
- }
- return fs.CopyDir(destination, source, ignoreUnsupportedXAttrs())
- }
- // TmpfsMounts returns the list of tmpfs mounts
- func (container *Container) TmpfsMounts() ([]Mount, error) {
- var mounts []Mount
- for dest, data := range container.HostConfig.Tmpfs {
- mounts = append(mounts, Mount{
- Source: "tmpfs",
- Destination: dest,
- Data: data,
- })
- }
- parser := volumemounts.NewParser()
- for dest, mnt := range container.MountPoints {
- if mnt.Type == mounttypes.TypeTmpfs {
- data, err := parser.ConvertTmpfsOptions(mnt.Spec.TmpfsOptions, mnt.Spec.ReadOnly)
- if err != nil {
- return nil, err
- }
- mounts = append(mounts, Mount{
- Source: "tmpfs",
- Destination: dest,
- Data: data,
- })
- }
- }
- return mounts, nil
- }
- // GetMountPoints gives a platform specific transformation to types.MountPoint. Callers must hold a Container lock.
- func (container *Container) GetMountPoints() []types.MountPoint {
- mountPoints := make([]types.MountPoint, 0, len(container.MountPoints))
- for _, m := range container.MountPoints {
- mountPoints = append(mountPoints, types.MountPoint{
- Type: m.Type,
- Name: m.Name,
- Source: m.Path(),
- Destination: m.Destination,
- Driver: m.Driver,
- Mode: m.Mode,
- RW: m.RW,
- Propagation: m.Propagation,
- })
- }
- return mountPoints
- }
- // ConfigFilePath returns the path to the on-disk location of a config.
- // On unix, configs are always considered secret
- func (container *Container) ConfigFilePath(configRef swarmtypes.ConfigReference) (string, error) {
- mounts, err := container.SecretMountPath()
- if err != nil {
- return "", err
- }
- return filepath.Join(mounts, configRef.ConfigID), nil
- }
|