2018-02-05 16:05:59 -05:00
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
2015-07-16 17:14:58 -04:00
|
|
|
|
|
|
|
import (
|
2018-03-22 17:11:03 -04:00
|
|
|
"context"
|
2015-09-09 22:23:06 -04:00
|
|
|
"fmt"
|
2017-08-09 12:00:05 -04:00
|
|
|
"runtime"
|
2015-09-09 22:23:06 -04:00
|
|
|
|
2016-09-06 14:18:12 -04:00
|
|
|
containertypes "github.com/docker/docker/api/types/container"
|
2015-11-12 14:55:17 -05:00
|
|
|
"github.com/docker/docker/container"
|
2015-09-09 22:23:06 -04:00
|
|
|
"github.com/docker/docker/pkg/stringid"
|
2018-04-17 16:50:28 -04:00
|
|
|
volumemounts "github.com/docker/docker/volume/mounts"
|
2018-03-22 17:11:03 -04:00
|
|
|
volumeopts "github.com/docker/docker/volume/service/opts"
|
2015-07-16 17:14:58 -04:00
|
|
|
)
|
|
|
|
|
2017-08-08 15:43:48 -04:00
|
|
|
// createContainerOSSpecificSettings performs host-OS specific container create functionality
|
|
|
|
func (daemon *Daemon) createContainerOSSpecificSettings(container *container.Container, config *containertypes.Config, hostConfig *containertypes.HostConfig) error {
|
2017-08-09 12:00:05 -04:00
|
|
|
|
2017-08-08 15:43:48 -04:00
|
|
|
if container.OS == runtime.GOOS {
|
2017-08-09 12:00:05 -04:00
|
|
|
// Make sure the host config has the default daemon isolation if not specified by caller.
|
|
|
|
if containertypes.Isolation.IsDefault(containertypes.Isolation(hostConfig.Isolation)) {
|
|
|
|
hostConfig.Isolation = daemon.defaultIsolation
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// LCOW must be a Hyper-V container as you can't run a shared kernel when one
|
|
|
|
// is a Windows kernel, the other is a Linux kernel.
|
|
|
|
if containertypes.Isolation.IsProcess(containertypes.Isolation(hostConfig.Isolation)) {
|
|
|
|
return fmt.Errorf("process isolation is invalid for Linux containers on Windows")
|
|
|
|
}
|
|
|
|
hostConfig.Isolation = "hyperv"
|
2016-05-26 16:24:22 -04:00
|
|
|
}
|
2018-04-17 16:50:28 -04:00
|
|
|
parser := volumemounts.NewParser(container.OS)
|
2015-09-09 22:23:06 -04:00
|
|
|
for spec := range config.Volumes {
|
|
|
|
|
2017-08-01 13:32:44 -04:00
|
|
|
mp, err := parser.ParseMountRaw(spec, hostConfig.VolumeDriver)
|
2015-09-09 22:23:06 -04:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Unrecognised volume spec: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the mountpoint doesn't have a name, generate one.
|
|
|
|
if len(mp.Name) == 0 {
|
|
|
|
mp.Name = stringid.GenerateNonCryptoID()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Skip volumes for which we already have something mounted on that
|
|
|
|
// destination because of a --volume-from.
|
2015-11-12 14:55:17 -05:00
|
|
|
if container.IsDestinationMounted(mp.Destination) {
|
2015-09-09 22:23:06 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
volumeDriver := hostConfig.VolumeDriver
|
|
|
|
|
|
|
|
// Create the volume in the volume driver. If it doesn't exist,
|
|
|
|
// a new one will be created.
|
2018-03-22 17:11:03 -04:00
|
|
|
v, err := daemon.volumes.Create(context.TODO(), mp.Name, volumeDriver, volumeopts.WithCreateReference(container.ID))
|
2015-09-09 22:23:06 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME Windows: This code block is present in the Linux version and
|
|
|
|
// allows the contents to be copied to the container FS prior to it
|
2015-12-13 11:00:39 -05:00
|
|
|
// being started. However, the function utilizes the FollowSymLinkInScope
|
2015-09-09 22:23:06 -04:00
|
|
|
// path which does not cope with Windows volume-style file paths. There
|
2015-12-13 11:00:39 -05:00
|
|
|
// is a separate effort to resolve this (@swernli), so this processing
|
2015-09-09 22:23:06 -04:00
|
|
|
// is deferred for now. A case where this would be useful is when
|
|
|
|
// a dockerfile includes a VOLUME statement, but something is created
|
|
|
|
// in that directory during the dockerfile processing. What this means
|
2016-04-06 15:01:29 -04:00
|
|
|
// on Windows for TP5 is that in that scenario, the contents will not
|
2015-09-09 22:23:06 -04:00
|
|
|
// copied, but that's (somewhat) OK as HCS will bomb out soon after
|
|
|
|
// at it doesn't support mapped directories which have contents in the
|
|
|
|
// destination path anyway.
|
|
|
|
//
|
|
|
|
// Example for repro later:
|
|
|
|
// FROM windowsservercore
|
|
|
|
// RUN mkdir c:\myvol
|
|
|
|
// RUN copy c:\windows\system32\ntdll.dll c:\myvol
|
|
|
|
// VOLUME "c:\myvol"
|
|
|
|
//
|
|
|
|
// Then
|
|
|
|
// docker build -t vol .
|
|
|
|
// docker run -it --rm vol cmd <-- This is where HCS will error out.
|
|
|
|
//
|
|
|
|
// // never attempt to copy existing content in a container FS to a shared volume
|
|
|
|
// if v.DriverName() == volume.DefaultDriverName {
|
2015-11-12 14:55:17 -05:00
|
|
|
// if err := container.CopyImagePathContent(v, mp.Destination); err != nil {
|
2015-09-09 22:23:06 -04:00
|
|
|
// return err
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// Add it to container.MountPoints
|
2018-03-22 17:11:03 -04:00
|
|
|
container.AddMountPointWithVolume(mp.Destination, &volumeWrapper{v: v, s: daemon.volumes}, mp.RW)
|
2015-09-09 22:23:06 -04:00
|
|
|
}
|
2015-07-16 17:14:58 -04:00
|
|
|
return nil
|
|
|
|
}
|