summaryrefslogtreecommitdiff
path: root/daemon/start_windows.go
diff options
context:
space:
mode:
authorJohn Howard <jhoward@microsoft.com>2016-06-07 12:15:50 -0700
committerJohn Howard <jhoward@microsoft.com>2016-10-06 09:32:22 -0700
commite85867cb68cc28208c91bb43fc5cdcff824c468e (patch)
treeae4db225fa44de7916ca468fe44d0947e7797fb6 /daemon/start_windows.go
parent921a0bf686370587aec812a3a0efb002adf07614 (diff)
downloaddocker-e85867cb68cc28208c91bb43fc5cdcff824c468e.tar.gz
Windows: Support credential specs
Signed-off-by: John Howard <jhoward@microsoft.com>
Diffstat (limited to 'daemon/start_windows.go')
-rw-r--r--daemon/start_windows.go102
1 files changed, 101 insertions, 1 deletions
diff --git a/daemon/start_windows.go b/daemon/start_windows.go
index 8b9cae7629..dc73f09692 100644
--- a/daemon/start_windows.go
+++ b/daemon/start_windows.go
@@ -2,11 +2,19 @@ package daemon
import (
"fmt"
+ "io/ioutil"
"path/filepath"
+ "strings"
"github.com/docker/docker/container"
"github.com/docker/docker/layer"
"github.com/docker/docker/libcontainerd"
+ "golang.org/x/sys/windows/registry"
+)
+
+const (
+ credentialSpecRegistryLocation = `SOFTWARE\Microsoft\Windows NT\CurrentVersion\Virtualization\Containers\CredentialSpecs`
+ credentialSpecFileLocation = "CredentialSpecs"
)
func (daemon *Daemon) getLibcontainerdCreateOptions(container *container.Container) (*[]libcontainerd.CreateOption, error) {
@@ -80,7 +88,50 @@ func (daemon *Daemon) getLibcontainerdCreateOptions(container *container.Contain
}
}
- // Now build the full set of options
+ // Read and add credentials from the security options if a credential spec has been provided.
+ if container.HostConfig.SecurityOpt != nil {
+ for _, sOpt := range container.HostConfig.SecurityOpt {
+ sOpt = strings.ToLower(sOpt)
+ if !strings.Contains(sOpt, "=") {
+ return nil, fmt.Errorf("invalid security option: no equals sign in supplied value %s", sOpt)
+ }
+ var splitsOpt []string
+ splitsOpt = strings.SplitN(sOpt, "=", 2)
+ if len(splitsOpt) != 2 {
+ return nil, fmt.Errorf("invalid security option: %s", sOpt)
+ }
+ if splitsOpt[0] != "credentialspec" {
+ return nil, fmt.Errorf("security option not supported: %s", splitsOpt[0])
+ }
+
+ credentialsOpts := &libcontainerd.CredentialsOption{}
+ var (
+ match bool
+ csValue string
+ err error
+ )
+ if match, csValue = getCredentialSpec("file://", splitsOpt[1]); match {
+ if csValue == "" {
+ return nil, fmt.Errorf("no value supplied for file:// credential spec security option")
+ }
+ if credentialsOpts.Credentials, err = readCredentialSpecFile(container.ID, daemon.root, filepath.Clean(csValue)); err != nil {
+ return nil, err
+ }
+ } else if match, csValue = getCredentialSpec("registry://", splitsOpt[1]); match {
+ if csValue == "" {
+ return nil, fmt.Errorf("no value supplied for registry:// credential spec security option")
+ }
+ if credentialsOpts.Credentials, err = readCredentialSpecRegistry(container.ID, csValue); err != nil {
+ return nil, err
+ }
+ } else {
+ return nil, fmt.Errorf("invalid credential spec security option - value must be prefixed file:// or registry:// followed by a value")
+ }
+ createOptions = append(createOptions, credentialsOpts)
+ }
+ }
+
+ // Now add the remaining options.
createOptions = append(createOptions, &libcontainerd.FlushOption{IgnoreFlushesDuringBoot: !container.HasBeenStartedBefore})
createOptions = append(createOptions, hvOpts)
createOptions = append(createOptions, layerOpts)
@@ -90,3 +141,52 @@ func (daemon *Daemon) getLibcontainerdCreateOptions(container *container.Contain
return &createOptions, nil
}
+
+// getCredentialSpec is a helper function to get the value of a credential spec supplied
+// on the CLI, stripping the prefix
+func getCredentialSpec(prefix, value string) (bool, string) {
+ if strings.HasPrefix(value, prefix) {
+ return true, strings.TrimPrefix(value, prefix)
+ }
+ return false, ""
+}
+
+// readCredentialSpecRegistry is a helper function to read a credential spec from
+// the registry. If not found, we return an empty string and warn in the log.
+// This allows for staging on machines which do not have the necessary components.
+func readCredentialSpecRegistry(id, name string) (string, error) {
+ var (
+ k registry.Key
+ err error
+ val string
+ )
+ if k, err = registry.OpenKey(registry.LOCAL_MACHINE, credentialSpecRegistryLocation, registry.QUERY_VALUE); err != nil {
+ return "", fmt.Errorf("failed handling spec %q for container %s - %s could not be opened", name, id, credentialSpecRegistryLocation)
+ }
+ if val, _, err = k.GetStringValue(name); err != nil {
+ if err == registry.ErrNotExist {
+ return "", fmt.Errorf("credential spec %q for container %s as it was not found", name, id)
+ }
+ return "", fmt.Errorf("error %v reading credential spec %q from registry for container %s", err, name, id)
+ }
+ return val, nil
+}
+
+// readCredentialSpecFile is a helper function to read a credential spec from
+// a file. If not found, we return an empty string and warn in the log.
+// This allows for staging on machines which do not have the necessary components.
+func readCredentialSpecFile(id, root, location string) (string, error) {
+ if filepath.IsAbs(location) {
+ return "", fmt.Errorf("invalid credential spec - file:// path cannot be absolute")
+ }
+ base := filepath.Join(root, credentialSpecFileLocation)
+ full := filepath.Join(base, location)
+ if !strings.HasPrefix(full, base) {
+ return "", fmt.Errorf("invalid credential spec - file:// path must be under %s", base)
+ }
+ bcontents, err := ioutil.ReadFile(full)
+ if err != nil {
+ return "", fmt.Errorf("credential spec '%s' for container %s as the file could not be read: %q", full, id, err)
+ }
+ return string(bcontents[:]), nil
+}