2016-03-18 14:53:27 -04:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
|
2016-09-08 00:23:56 -04:00
|
|
|
containertypes "github.com/docker/docker/api/types/container"
|
2016-03-18 14:53:27 -04:00
|
|
|
"github.com/docker/docker/container"
|
|
|
|
"github.com/docker/docker/oci"
|
2016-11-01 13:12:29 -04:00
|
|
|
"github.com/docker/docker/pkg/sysinfo"
|
2016-09-27 13:26:59 -04:00
|
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
2016-03-18 14:53:27 -04:00
|
|
|
)
|
|
|
|
|
2016-09-27 13:26:59 -04:00
|
|
|
func (daemon *Daemon) createSpec(c *container.Container) (*specs.Spec, error) {
|
2016-03-18 14:53:27 -04:00
|
|
|
s := oci.DefaultSpec()
|
|
|
|
|
|
|
|
linkedEnv, err := daemon.setupLinkedContainers(c)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
Windows: Unify workdir handling
Signed-off-by: John Howard <jhoward@microsoft.com>
Working directory processing was handled differently for Hyper-V and Windows-Server containers, as annotated in the builder documentation (updated in this PR). For Hyper-V containers, the working directory set by WORKDIR was not created. This PR makes Hyper-V containers work the same as Windows Server containers (and the same as Linux).
Example (only applies to Hyper-V containers, so not reproducible under CI environment)
Dockerfile:
FROM microsoft/nanoserver
WORKDIR c:\installer
ENV GOROOT=c:\installer
ADD go.exe .
RUN go --help
Running on Windows Server 2016, using docker master without this change, but with daemon set to --exec-opt isolation=hyperv as it would be for Client operating systems.
PS E:\go\src\github.com\docker\docker> dockerd -g c:\control --exec-opt isolation=hyperv
time="2017-02-01T15:48:09.657286100-08:00" level=info msg="Windows default isolation mode: hyperv"
time="2017-02-01T15:48:09.662720900-08:00" level=info msg="[graphdriver] using prior storage driver: windowsfilter"
time="2017-02-01T15:48:10.011588000-08:00" level=info msg="Graph migration to content-addressability took 0.00 seconds"
time="2017-02-01T15:48:10.016655800-08:00" level=info msg="Loading containers: start."
time="2017-02-01T15:48:10.460820000-08:00" level=info msg="Loading containers: done."
time="2017-02-01T15:48:10.509859600-08:00" level=info msg="Daemon has completed initialization"
time="2017-02-01T15:48:10.509859600-08:00" level=info msg="Docker daemon" commit=3c64061 graphdriver=windowsfilter version=1.14.0-dev
First with no explicit isolation:
PS E:\docker\build\unifyworkdir> docker build --no-cache .
Sending build context to Docker daemon 10.1 MB
Step 1/5 : FROM microsoft/nanoserver
---> 89b8556cb9ca
Step 2/5 : WORKDIR c:\installer
---> 7e0f41d08204
Removing intermediate container 236c7802042a
Step 3/5 : ENV GOROOT c:\installer
---> Running in 8ea5237183c1
---> 394b70435261
Removing intermediate container 8ea5237183c1
Step 4/5 : ADD go.exe .
---> e47401a1745c
Removing intermediate container 88dcc28e74b1
Step 5/5 : RUN go --help
---> Running in efe90e1b6b8b
container efe90e1b6b8b76586abc5c1dc0e2797b75adc26517c48733d90651e767c8463b encountered an error during CreateProcess: failure in a Windows system call: The directory name is invalid. (0x10b) extra info: {"ApplicationName":"","CommandLine":"cmd /S /C go --help","User":"","WorkingDirectory":"C:\\installer","Environment":{"GOROOT":"c:\\installer"},"EmulateConsole":false,"CreateStdInPipe":true,"CreateStdOutPipe":true,"CreateStdErrPipe":true,"ConsoleSize":[0,0]}
PS E:\docker\build\unifyworkdir>
Then forcing process isolation:
PS E:\docker\build\unifyworkdir> docker build --isolation=process --no-cache .
Sending build context to Docker daemon 10.1 MB
Step 1/5 : FROM microsoft/nanoserver
---> 89b8556cb9ca
Step 2/5 : WORKDIR c:\installer
---> 350c955980c8
Removing intermediate container 8339c1e9250c
Step 3/5 : ENV GOROOT c:\installer
---> Running in bde511c5e3e0
---> b8820063b5b6
Removing intermediate container bde511c5e3e0
Step 4/5 : ADD go.exe .
---> e4ac32f8902b
Removing intermediate container d586e8492eda
Step 5/5 : RUN go --help
---> Running in 9e1aa235af5f
Cannot mkdir: C:\installer is not a directory
PS E:\docker\build\unifyworkdir>
Now compare the same results after this PR. Again, first with no explicit isolation (defaulting to Hyper-V containers as that's what the daemon it set to) - note it now succeeds 😄
PS E:\docker\build\unifyworkdir> docker build --no-cache .
Sending build context to Docker daemon 10.1 MB
Step 1/5 : FROM microsoft/nanoserver
---> 89b8556cb9ca
Step 2/5 : WORKDIR c:\installer
---> 4f319f301c69
Removing intermediate container 61b9c0b1ff6f
Step 3/5 : ENV GOROOT c:\installer
---> Running in c464a1d612d8
---> 96a26ab9a7b5
Removing intermediate container c464a1d612d8
Step 4/5 : ADD go.exe .
---> 0290d61faf57
Removing intermediate container dc5a085fffe3
Step 5/5 : RUN go --help
---> Running in 60bd56042ff8
Go is a tool for managing Go source code.
Usage:
go command [arguments]
The commands are:
build compile packages and dependencies
clean remove object files
doc show documentation for package or symbol
env print Go environment information
fix run go tool fix on packages
fmt run gofmt on package sources
generate generate Go files by processing source
get download and install packages and dependencies
install compile and install packages and dependencies
list list packages
run compile and run Go program
test test packages
tool run specified go tool
version print Go version
vet run go tool vet on packages
Use "go help [command]" for more information about a command.
Additional help topics:
c calling between Go and C
buildmode description of build modes
filetype file types
gopath GOPATH environment variable
environment environment variables
importpath import path syntax
packages description of package lists
testflag description of testing flags
testfunc description of testing functions
Use "go help [topic]" for more information about that topic.
The command 'cmd /S /C go --help' returned a non-zero code: 2
And the same with forcing process isolation. Also works 😄
PS E:\docker\build\unifyworkdir> docker build --isolation=process --no-cache .
Sending build context to Docker daemon 10.1 MB
Step 1/5 : FROM microsoft/nanoserver
---> 89b8556cb9ca
Step 2/5 : WORKDIR c:\installer
---> f423b9cc3e78
Removing intermediate container 41330c88893d
Step 3/5 : ENV GOROOT c:\installer
---> Running in 0b99a2d7bf19
---> e051144bf8ec
Removing intermediate container 0b99a2d7bf19
Step 4/5 : ADD go.exe .
---> 7072e32b7c37
Removing intermediate container a7a97aa37fd1
Step 5/5 : RUN go --help
---> Running in 7097438a54e5
Go is a tool for managing Go source code.
Usage:
go command [arguments]
The commands are:
build compile packages and dependencies
clean remove object files
doc show documentation for package or symbol
env print Go environment information
fix run go tool fix on packages
fmt run gofmt on package sources
generate generate Go files by processing source
get download and install packages and dependencies
install compile and install packages and dependencies
list list packages
run compile and run Go program
test test packages
tool run specified go tool
version print Go version
vet run go tool vet on packages
Use "go help [command]" for more information about a command.
Additional help topics:
c calling between Go and C
buildmode description of build modes
filetype file types
gopath GOPATH environment variable
environment environment variables
importpath import path syntax
packages description of package lists
testflag description of testing flags
testfunc description of testing functions
Use "go help [topic]" for more information about that topic.
The command 'cmd /S /C go --help' returned a non-zero code: 2
PS E:\docker\build\unifyworkdir>
2017-02-01 17:56:19 -05:00
|
|
|
// Note, unlike Unix, we do NOT call into SetupWorkingDirectory as
|
|
|
|
// this is done in VMCompute. Further, we couldn't do it for Hyper-V
|
|
|
|
// containers anyway.
|
2016-03-18 14:53:27 -04:00
|
|
|
|
|
|
|
// In base spec
|
|
|
|
s.Hostname = c.FullHostname()
|
|
|
|
|
|
|
|
// In s.Mounts
|
|
|
|
mounts, err := daemon.setupMounts(c)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for _, mount := range mounts {
|
2016-09-27 13:26:59 -04:00
|
|
|
m := specs.Mount{
|
2016-03-18 14:53:27 -04:00
|
|
|
Source: mount.Source,
|
|
|
|
Destination: mount.Destination,
|
2016-09-14 14:35:31 -04:00
|
|
|
}
|
|
|
|
if !mount.Writable {
|
|
|
|
m.Options = append(m.Options, "ro")
|
|
|
|
}
|
|
|
|
s.Mounts = append(s.Mounts, m)
|
2016-03-18 14:53:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// In s.Process
|
2016-03-28 20:35:56 -04:00
|
|
|
s.Process.Args = append([]string{c.Path}, c.Args...)
|
|
|
|
if !c.Config.ArgsEscaped {
|
|
|
|
s.Process.Args = escapeArgs(s.Process.Args)
|
2016-03-18 14:53:27 -04:00
|
|
|
}
|
|
|
|
s.Process.Cwd = c.Config.WorkingDir
|
2016-04-18 13:11:37 -04:00
|
|
|
if len(s.Process.Cwd) == 0 {
|
|
|
|
// We default to C:\ to workaround the oddity of the case that the
|
|
|
|
// default directory for cmd running as LocalSystem (or
|
|
|
|
// ContainerAdministrator) is c:\windows\system32. Hence docker run
|
|
|
|
// <image> cmd will by default end in c:\windows\system32, rather
|
|
|
|
// than 'root' (/) on Linux. The oddity is that if you have a dockerfile
|
|
|
|
// which has no WORKDIR and has a COPY file ., . will be interpreted
|
|
|
|
// as c:\. Hence, setting it to default of c:\ makes for consistency.
|
|
|
|
s.Process.Cwd = `C:\`
|
|
|
|
}
|
2016-09-28 18:21:33 -04:00
|
|
|
s.Process.Env = c.CreateDaemonEnvironment(c.Config.Tty, linkedEnv)
|
2016-09-20 15:01:04 -04:00
|
|
|
s.Process.ConsoleSize.Height = c.HostConfig.ConsoleSize[0]
|
|
|
|
s.Process.ConsoleSize.Width = c.HostConfig.ConsoleSize[1]
|
2016-03-18 14:53:27 -04:00
|
|
|
s.Process.Terminal = c.Config.Tty
|
2016-09-14 14:46:18 -04:00
|
|
|
s.Process.User.Username = c.Config.User
|
2016-03-18 14:53:27 -04:00
|
|
|
|
2016-09-27 17:52:49 -04:00
|
|
|
// In spec.Root. This is not set for Hyper-V containers
|
2016-11-29 03:17:35 -05:00
|
|
|
var isHyperV bool
|
2016-09-27 17:52:49 -04:00
|
|
|
if c.HostConfig.Isolation.IsDefault() {
|
|
|
|
// Container using default isolation, so take the default from the daemon configuration
|
|
|
|
isHyperV = daemon.defaultIsolation.IsHyperV()
|
|
|
|
} else {
|
|
|
|
// Container may be requesting an explicit isolation mode.
|
|
|
|
isHyperV = c.HostConfig.Isolation.IsHyperV()
|
|
|
|
}
|
|
|
|
if !isHyperV {
|
|
|
|
s.Root.Path = c.BaseFS
|
|
|
|
}
|
|
|
|
s.Root.Readonly = false // Windows does not support a read-only root filesystem
|
2016-03-18 14:53:27 -04:00
|
|
|
|
|
|
|
// In s.Windows.Resources
|
|
|
|
// @darrenstahlmsft implement these resources
|
2016-09-27 13:26:59 -04:00
|
|
|
cpuShares := uint16(c.HostConfig.CPUShares)
|
|
|
|
cpuPercent := uint8(c.HostConfig.CPUPercent)
|
2016-11-01 13:12:29 -04:00
|
|
|
if c.HostConfig.NanoCPUs > 0 {
|
|
|
|
cpuPercent = uint8(c.HostConfig.NanoCPUs * 100 / int64(sysinfo.NumCPU()) / 1e9)
|
|
|
|
}
|
2016-11-01 16:02:46 -04:00
|
|
|
cpuCount := uint64(c.HostConfig.CPUCount)
|
2016-09-27 13:26:59 -04:00
|
|
|
memoryLimit := uint64(c.HostConfig.Memory)
|
|
|
|
s.Windows.Resources = &specs.WindowsResources{
|
|
|
|
CPU: &specs.WindowsCPUResources{
|
|
|
|
Percent: &cpuPercent,
|
2016-03-04 20:24:09 -05:00
|
|
|
Shares: &cpuShares,
|
2016-11-01 16:02:46 -04:00
|
|
|
Count: &cpuCount,
|
2016-03-18 14:53:27 -04:00
|
|
|
},
|
2016-09-27 13:26:59 -04:00
|
|
|
Memory: &specs.WindowsMemoryResources{
|
|
|
|
Limit: &memoryLimit,
|
2016-06-09 15:37:17 -04:00
|
|
|
//TODO Reservation: ...,
|
2016-03-18 14:53:27 -04:00
|
|
|
},
|
2016-09-27 13:26:59 -04:00
|
|
|
Network: &specs.WindowsNetworkResources{
|
2016-03-18 14:53:27 -04:00
|
|
|
//TODO Bandwidth: ...,
|
|
|
|
},
|
2016-09-27 13:26:59 -04:00
|
|
|
Storage: &specs.WindowsStorageResources{
|
2016-02-24 20:51:46 -05:00
|
|
|
Bps: &c.HostConfig.IOMaximumBandwidth,
|
|
|
|
Iops: &c.HostConfig.IOMaximumIOps,
|
2016-03-18 14:53:27 -04:00
|
|
|
},
|
|
|
|
}
|
2016-09-27 13:26:59 -04:00
|
|
|
return (*specs.Spec)(&s), nil
|
2016-03-18 14:53:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func escapeArgs(args []string) []string {
|
|
|
|
escapedArgs := make([]string, len(args))
|
|
|
|
for i, a := range args {
|
|
|
|
escapedArgs[i] = syscall.EscapeArg(a)
|
|
|
|
}
|
|
|
|
return escapedArgs
|
|
|
|
}
|
2016-09-08 00:23:56 -04:00
|
|
|
|
|
|
|
// mergeUlimits merge the Ulimits from HostConfig with daemon defaults, and update HostConfig
|
|
|
|
// It will do nothing on non-Linux platform
|
|
|
|
func (daemon *Daemon) mergeUlimits(c *containertypes.HostConfig) {
|
|
|
|
return
|
|
|
|
}
|