2016-12-23 14:09:12 -05:00
|
|
|
package container
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"path"
|
2016-05-06 18:09:46 -04:00
|
|
|
"regexp"
|
2016-12-23 14:09:12 -05:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2017-03-31 02:41:45 -04:00
|
|
|
"github.com/Sirupsen/logrus"
|
2016-12-23 14:09:12 -05:00
|
|
|
"github.com/docker/docker/api/types/container"
|
|
|
|
networktypes "github.com/docker/docker/api/types/network"
|
|
|
|
"github.com/docker/docker/api/types/strslice"
|
|
|
|
"github.com/docker/docker/opts"
|
|
|
|
"github.com/docker/docker/pkg/signal"
|
|
|
|
runconfigopts "github.com/docker/docker/runconfig/opts"
|
|
|
|
"github.com/docker/go-connections/nat"
|
2017-03-09 13:23:45 -05:00
|
|
|
"github.com/pkg/errors"
|
2016-12-23 14:09:12 -05:00
|
|
|
"github.com/spf13/pflag"
|
|
|
|
)
|
|
|
|
|
2016-05-06 18:09:46 -04:00
|
|
|
var (
|
|
|
|
deviceCgroupRuleRegexp = regexp.MustCompile("^[acb] ([0-9]+|\\*):([0-9]+|\\*) [rwm]{1,3}$")
|
|
|
|
)
|
|
|
|
|
2016-12-23 14:09:12 -05:00
|
|
|
// containerOptions is a data object with all the options for creating a container
|
|
|
|
type containerOptions struct {
|
|
|
|
attach opts.ListOpts
|
|
|
|
volumes opts.ListOpts
|
|
|
|
tmpfs opts.ListOpts
|
2017-03-31 02:41:45 -04:00
|
|
|
mounts opts.MountOpt
|
2016-12-23 14:09:12 -05:00
|
|
|
blkioWeightDevice opts.WeightdeviceOpt
|
|
|
|
deviceReadBps opts.ThrottledeviceOpt
|
|
|
|
deviceWriteBps opts.ThrottledeviceOpt
|
|
|
|
links opts.ListOpts
|
|
|
|
aliases opts.ListOpts
|
|
|
|
linkLocalIPs opts.ListOpts
|
|
|
|
deviceReadIOps opts.ThrottledeviceOpt
|
|
|
|
deviceWriteIOps opts.ThrottledeviceOpt
|
|
|
|
env opts.ListOpts
|
|
|
|
labels opts.ListOpts
|
2016-05-06 18:09:46 -04:00
|
|
|
deviceCgroupRules opts.ListOpts
|
2016-12-23 14:09:12 -05:00
|
|
|
devices opts.ListOpts
|
|
|
|
ulimits *opts.UlimitOpt
|
|
|
|
sysctls *opts.MapOpts
|
|
|
|
publish opts.ListOpts
|
|
|
|
expose opts.ListOpts
|
|
|
|
dns opts.ListOpts
|
|
|
|
dnsSearch opts.ListOpts
|
|
|
|
dnsOptions opts.ListOpts
|
|
|
|
extraHosts opts.ListOpts
|
|
|
|
volumesFrom opts.ListOpts
|
|
|
|
envFile opts.ListOpts
|
|
|
|
capAdd opts.ListOpts
|
|
|
|
capDrop opts.ListOpts
|
|
|
|
groupAdd opts.ListOpts
|
|
|
|
securityOpt opts.ListOpts
|
|
|
|
storageOpt opts.ListOpts
|
|
|
|
labelsFile opts.ListOpts
|
|
|
|
loggingOpts opts.ListOpts
|
|
|
|
privileged bool
|
|
|
|
pidMode string
|
|
|
|
utsMode string
|
|
|
|
usernsMode string
|
|
|
|
publishAll bool
|
|
|
|
stdin bool
|
|
|
|
tty bool
|
|
|
|
oomKillDisable bool
|
|
|
|
oomScoreAdj int
|
|
|
|
containerIDFile string
|
|
|
|
entrypoint string
|
|
|
|
hostname string
|
2017-03-06 16:01:04 -05:00
|
|
|
memory opts.MemBytes
|
|
|
|
memoryReservation opts.MemBytes
|
|
|
|
memorySwap opts.MemSwapBytes
|
|
|
|
kernelMemory opts.MemBytes
|
2016-12-23 14:09:12 -05:00
|
|
|
user string
|
|
|
|
workingDir string
|
|
|
|
cpuCount int64
|
|
|
|
cpuShares int64
|
|
|
|
cpuPercent int64
|
|
|
|
cpuPeriod int64
|
|
|
|
cpuRealtimePeriod int64
|
|
|
|
cpuRealtimeRuntime int64
|
|
|
|
cpuQuota int64
|
|
|
|
cpus opts.NanoCPUs
|
|
|
|
cpusetCpus string
|
|
|
|
cpusetMems string
|
|
|
|
blkioWeight uint16
|
2017-03-06 16:01:04 -05:00
|
|
|
ioMaxBandwidth opts.MemBytes
|
2016-12-23 14:09:12 -05:00
|
|
|
ioMaxIOps uint64
|
|
|
|
swappiness int64
|
|
|
|
netMode string
|
|
|
|
macAddress string
|
|
|
|
ipv4Address string
|
|
|
|
ipv6Address string
|
|
|
|
ipcMode string
|
|
|
|
pidsLimit int64
|
|
|
|
restartPolicy string
|
|
|
|
readonlyRootfs bool
|
|
|
|
loggingDriver string
|
|
|
|
cgroupParent string
|
|
|
|
volumeDriver string
|
|
|
|
stopSignal string
|
|
|
|
stopTimeout int
|
|
|
|
isolation string
|
2016-12-28 17:44:07 -05:00
|
|
|
shmSize opts.MemBytes
|
2016-12-23 14:09:12 -05:00
|
|
|
noHealthcheck bool
|
|
|
|
healthCmd string
|
|
|
|
healthInterval time.Duration
|
|
|
|
healthTimeout time.Duration
|
|
|
|
healthRetries int
|
|
|
|
runtime string
|
|
|
|
autoRemove bool
|
|
|
|
init bool
|
|
|
|
initPath string
|
|
|
|
|
|
|
|
Image string
|
|
|
|
Args []string
|
|
|
|
}
|
|
|
|
|
|
|
|
// addFlags adds all command line flags that will be used by parse to the FlagSet
|
|
|
|
func addFlags(flags *pflag.FlagSet) *containerOptions {
|
|
|
|
copts := &containerOptions{
|
|
|
|
aliases: opts.NewListOpts(nil),
|
|
|
|
attach: opts.NewListOpts(validateAttach),
|
|
|
|
blkioWeightDevice: opts.NewWeightdeviceOpt(opts.ValidateWeightDevice),
|
|
|
|
capAdd: opts.NewListOpts(nil),
|
|
|
|
capDrop: opts.NewListOpts(nil),
|
|
|
|
dns: opts.NewListOpts(opts.ValidateIPAddress),
|
|
|
|
dnsOptions: opts.NewListOpts(nil),
|
|
|
|
dnsSearch: opts.NewListOpts(opts.ValidateDNSSearch),
|
2016-05-06 18:09:46 -04:00
|
|
|
deviceCgroupRules: opts.NewListOpts(validateDeviceCgroupRule),
|
2016-12-23 14:09:12 -05:00
|
|
|
deviceReadBps: opts.NewThrottledeviceOpt(opts.ValidateThrottleBpsDevice),
|
|
|
|
deviceReadIOps: opts.NewThrottledeviceOpt(opts.ValidateThrottleIOpsDevice),
|
|
|
|
deviceWriteBps: opts.NewThrottledeviceOpt(opts.ValidateThrottleBpsDevice),
|
|
|
|
deviceWriteIOps: opts.NewThrottledeviceOpt(opts.ValidateThrottleIOpsDevice),
|
|
|
|
devices: opts.NewListOpts(validateDevice),
|
|
|
|
env: opts.NewListOpts(opts.ValidateEnv),
|
|
|
|
envFile: opts.NewListOpts(nil),
|
|
|
|
expose: opts.NewListOpts(nil),
|
|
|
|
extraHosts: opts.NewListOpts(opts.ValidateExtraHost),
|
|
|
|
groupAdd: opts.NewListOpts(nil),
|
|
|
|
labels: opts.NewListOpts(opts.ValidateEnv),
|
|
|
|
labelsFile: opts.NewListOpts(nil),
|
|
|
|
linkLocalIPs: opts.NewListOpts(nil),
|
|
|
|
links: opts.NewListOpts(opts.ValidateLink),
|
|
|
|
loggingOpts: opts.NewListOpts(nil),
|
|
|
|
publish: opts.NewListOpts(nil),
|
|
|
|
securityOpt: opts.NewListOpts(nil),
|
|
|
|
storageOpt: opts.NewListOpts(nil),
|
|
|
|
sysctls: opts.NewMapOpts(nil, opts.ValidateSysctl),
|
|
|
|
tmpfs: opts.NewListOpts(nil),
|
|
|
|
ulimits: opts.NewUlimitOpt(nil),
|
|
|
|
volumes: opts.NewListOpts(nil),
|
|
|
|
volumesFrom: opts.NewListOpts(nil),
|
|
|
|
}
|
|
|
|
|
|
|
|
// General purpose flags
|
|
|
|
flags.VarP(&copts.attach, "attach", "a", "Attach to STDIN, STDOUT or STDERR")
|
2016-05-06 18:09:46 -04:00
|
|
|
flags.Var(&copts.deviceCgroupRules, "device-cgroup-rule", "Add a rule to the cgroup allowed devices list")
|
2016-12-23 14:09:12 -05:00
|
|
|
flags.Var(&copts.devices, "device", "Add a host device to the container")
|
|
|
|
flags.VarP(&copts.env, "env", "e", "Set environment variables")
|
|
|
|
flags.Var(&copts.envFile, "env-file", "Read in a file of environment variables")
|
|
|
|
flags.StringVar(&copts.entrypoint, "entrypoint", "", "Overwrite the default ENTRYPOINT of the image")
|
|
|
|
flags.Var(&copts.groupAdd, "group-add", "Add additional groups to join")
|
|
|
|
flags.StringVarP(&copts.hostname, "hostname", "h", "", "Container host name")
|
|
|
|
flags.BoolVarP(&copts.stdin, "interactive", "i", false, "Keep STDIN open even if not attached")
|
|
|
|
flags.VarP(&copts.labels, "label", "l", "Set meta data on a container")
|
|
|
|
flags.Var(&copts.labelsFile, "label-file", "Read in a line delimited file of labels")
|
|
|
|
flags.BoolVar(&copts.readonlyRootfs, "read-only", false, "Mount the container's root filesystem as read only")
|
|
|
|
flags.StringVar(&copts.restartPolicy, "restart", "no", "Restart policy to apply when a container exits")
|
2017-03-09 03:28:19 -05:00
|
|
|
flags.StringVar(&copts.stopSignal, "stop-signal", signal.DefaultStopSignal, "Signal to stop a container")
|
2016-12-23 14:09:12 -05:00
|
|
|
flags.IntVar(&copts.stopTimeout, "stop-timeout", 0, "Timeout (in seconds) to stop a container")
|
|
|
|
flags.SetAnnotation("stop-timeout", "version", []string{"1.25"})
|
|
|
|
flags.Var(copts.sysctls, "sysctl", "Sysctl options")
|
|
|
|
flags.BoolVarP(&copts.tty, "tty", "t", false, "Allocate a pseudo-TTY")
|
|
|
|
flags.Var(copts.ulimits, "ulimit", "Ulimit options")
|
|
|
|
flags.StringVarP(&copts.user, "user", "u", "", "Username or UID (format: <name|uid>[:<group|gid>])")
|
|
|
|
flags.StringVarP(&copts.workingDir, "workdir", "w", "", "Working directory inside the container")
|
|
|
|
flags.BoolVar(&copts.autoRemove, "rm", false, "Automatically remove the container when it exits")
|
|
|
|
|
|
|
|
// Security
|
|
|
|
flags.Var(&copts.capAdd, "cap-add", "Add Linux capabilities")
|
|
|
|
flags.Var(&copts.capDrop, "cap-drop", "Drop Linux capabilities")
|
|
|
|
flags.BoolVar(&copts.privileged, "privileged", false, "Give extended privileges to this container")
|
|
|
|
flags.Var(&copts.securityOpt, "security-opt", "Security Options")
|
|
|
|
flags.StringVar(&copts.usernsMode, "userns", "", "User namespace to use")
|
|
|
|
|
|
|
|
// Network and port publishing flag
|
|
|
|
flags.Var(&copts.extraHosts, "add-host", "Add a custom host-to-IP mapping (host:ip)")
|
|
|
|
flags.Var(&copts.dns, "dns", "Set custom DNS servers")
|
|
|
|
// We allow for both "--dns-opt" and "--dns-option", although the latter is the recommended way.
|
|
|
|
// This is to be consistent with service create/update
|
|
|
|
flags.Var(&copts.dnsOptions, "dns-opt", "Set DNS options")
|
|
|
|
flags.Var(&copts.dnsOptions, "dns-option", "Set DNS options")
|
|
|
|
flags.MarkHidden("dns-opt")
|
|
|
|
flags.Var(&copts.dnsSearch, "dns-search", "Set custom DNS search domains")
|
|
|
|
flags.Var(&copts.expose, "expose", "Expose a port or a range of ports")
|
2016-12-28 06:34:32 -05:00
|
|
|
flags.StringVar(&copts.ipv4Address, "ip", "", "IPv4 address (e.g., 172.30.100.104)")
|
|
|
|
flags.StringVar(&copts.ipv6Address, "ip6", "", "IPv6 address (e.g., 2001:db8::33)")
|
2016-12-23 14:09:12 -05:00
|
|
|
flags.Var(&copts.links, "link", "Add link to another container")
|
|
|
|
flags.Var(&copts.linkLocalIPs, "link-local-ip", "Container IPv4/IPv6 link-local addresses")
|
2016-12-28 06:34:32 -05:00
|
|
|
flags.StringVar(&copts.macAddress, "mac-address", "", "Container MAC address (e.g., 92:d0:c6:0a:29:33)")
|
2016-12-23 14:09:12 -05:00
|
|
|
flags.VarP(&copts.publish, "publish", "p", "Publish a container's port(s) to the host")
|
|
|
|
flags.BoolVarP(&copts.publishAll, "publish-all", "P", false, "Publish all exposed ports to random ports")
|
|
|
|
// We allow for both "--net" and "--network", although the latter is the recommended way.
|
|
|
|
flags.StringVar(&copts.netMode, "net", "default", "Connect a container to a network")
|
|
|
|
flags.StringVar(&copts.netMode, "network", "default", "Connect a container to a network")
|
|
|
|
flags.MarkHidden("net")
|
|
|
|
// We allow for both "--net-alias" and "--network-alias", although the latter is the recommended way.
|
|
|
|
flags.Var(&copts.aliases, "net-alias", "Add network-scoped alias for the container")
|
|
|
|
flags.Var(&copts.aliases, "network-alias", "Add network-scoped alias for the container")
|
|
|
|
flags.MarkHidden("net-alias")
|
|
|
|
|
|
|
|
// Logging and storage
|
|
|
|
flags.StringVar(&copts.loggingDriver, "log-driver", "", "Logging driver for the container")
|
|
|
|
flags.StringVar(&copts.volumeDriver, "volume-driver", "", "Optional volume driver for the container")
|
|
|
|
flags.Var(&copts.loggingOpts, "log-opt", "Log driver options")
|
|
|
|
flags.Var(&copts.storageOpt, "storage-opt", "Storage driver options for the container")
|
|
|
|
flags.Var(&copts.tmpfs, "tmpfs", "Mount a tmpfs directory")
|
|
|
|
flags.Var(&copts.volumesFrom, "volumes-from", "Mount volumes from the specified container(s)")
|
|
|
|
flags.VarP(&copts.volumes, "volume", "v", "Bind mount a volume")
|
2017-03-31 02:41:45 -04:00
|
|
|
flags.Var(&copts.mounts, "mount", "Attach a filesystem mount to the container")
|
2016-12-23 14:09:12 -05:00
|
|
|
|
|
|
|
// Health-checking
|
|
|
|
flags.StringVar(&copts.healthCmd, "health-cmd", "", "Command to run to check health")
|
|
|
|
flags.DurationVar(&copts.healthInterval, "health-interval", 0, "Time between running the check (ns|us|ms|s|m|h) (default 0s)")
|
|
|
|
flags.IntVar(&copts.healthRetries, "health-retries", 0, "Consecutive failures needed to report unhealthy")
|
|
|
|
flags.DurationVar(&copts.healthTimeout, "health-timeout", 0, "Maximum time to allow one check to run (ns|us|ms|s|m|h) (default 0s)")
|
|
|
|
flags.BoolVar(&copts.noHealthcheck, "no-healthcheck", false, "Disable any container-specified HEALTHCHECK")
|
|
|
|
|
|
|
|
// Resource management
|
|
|
|
flags.Uint16Var(&copts.blkioWeight, "blkio-weight", 0, "Block IO (relative weight), between 10 and 1000, or 0 to disable (default 0)")
|
|
|
|
flags.Var(&copts.blkioWeightDevice, "blkio-weight-device", "Block IO weight (relative device weight)")
|
|
|
|
flags.StringVar(&copts.containerIDFile, "cidfile", "", "Write the container ID to the file")
|
|
|
|
flags.StringVar(&copts.cpusetCpus, "cpuset-cpus", "", "CPUs in which to allow execution (0-3, 0,1)")
|
|
|
|
flags.StringVar(&copts.cpusetMems, "cpuset-mems", "", "MEMs in which to allow execution (0-3, 0,1)")
|
|
|
|
flags.Int64Var(&copts.cpuCount, "cpu-count", 0, "CPU count (Windows only)")
|
2017-02-07 07:52:20 -05:00
|
|
|
flags.SetAnnotation("cpu-count", "ostype", []string{"windows"})
|
2016-12-23 14:09:12 -05:00
|
|
|
flags.Int64Var(&copts.cpuPercent, "cpu-percent", 0, "CPU percent (Windows only)")
|
2017-02-07 07:52:20 -05:00
|
|
|
flags.SetAnnotation("cpu-percent", "ostype", []string{"windows"})
|
2016-12-23 14:09:12 -05:00
|
|
|
flags.Int64Var(&copts.cpuPeriod, "cpu-period", 0, "Limit CPU CFS (Completely Fair Scheduler) period")
|
|
|
|
flags.Int64Var(&copts.cpuQuota, "cpu-quota", 0, "Limit CPU CFS (Completely Fair Scheduler) quota")
|
|
|
|
flags.Int64Var(&copts.cpuRealtimePeriod, "cpu-rt-period", 0, "Limit CPU real-time period in microseconds")
|
2017-01-16 11:57:26 -05:00
|
|
|
flags.SetAnnotation("cpu-rt-period", "version", []string{"1.25"})
|
2016-12-23 14:09:12 -05:00
|
|
|
flags.Int64Var(&copts.cpuRealtimeRuntime, "cpu-rt-runtime", 0, "Limit CPU real-time runtime in microseconds")
|
2017-01-16 11:57:26 -05:00
|
|
|
flags.SetAnnotation("cpu-rt-runtime", "version", []string{"1.25"})
|
2016-12-23 14:09:12 -05:00
|
|
|
flags.Int64VarP(&copts.cpuShares, "cpu-shares", "c", 0, "CPU shares (relative weight)")
|
|
|
|
flags.Var(&copts.cpus, "cpus", "Number of CPUs")
|
2017-01-16 11:57:26 -05:00
|
|
|
flags.SetAnnotation("cpus", "version", []string{"1.25"})
|
2016-12-23 14:09:12 -05:00
|
|
|
flags.Var(&copts.deviceReadBps, "device-read-bps", "Limit read rate (bytes per second) from a device")
|
|
|
|
flags.Var(&copts.deviceReadIOps, "device-read-iops", "Limit read rate (IO per second) from a device")
|
|
|
|
flags.Var(&copts.deviceWriteBps, "device-write-bps", "Limit write rate (bytes per second) to a device")
|
|
|
|
flags.Var(&copts.deviceWriteIOps, "device-write-iops", "Limit write rate (IO per second) to a device")
|
2017-03-06 16:01:04 -05:00
|
|
|
flags.Var(&copts.ioMaxBandwidth, "io-maxbandwidth", "Maximum IO bandwidth limit for the system drive (Windows only)")
|
2017-02-07 07:52:20 -05:00
|
|
|
flags.SetAnnotation("io-maxbandwidth", "ostype", []string{"windows"})
|
2016-12-23 14:09:12 -05:00
|
|
|
flags.Uint64Var(&copts.ioMaxIOps, "io-maxiops", 0, "Maximum IOps limit for the system drive (Windows only)")
|
2017-02-07 07:52:20 -05:00
|
|
|
flags.SetAnnotation("io-maxiops", "ostype", []string{"windows"})
|
2017-03-06 16:01:04 -05:00
|
|
|
flags.Var(&copts.kernelMemory, "kernel-memory", "Kernel memory limit")
|
|
|
|
flags.VarP(&copts.memory, "memory", "m", "Memory limit")
|
|
|
|
flags.Var(&copts.memoryReservation, "memory-reservation", "Memory soft limit")
|
|
|
|
flags.Var(&copts.memorySwap, "memory-swap", "Swap limit equal to memory plus swap: '-1' to enable unlimited swap")
|
2016-12-23 14:09:12 -05:00
|
|
|
flags.Int64Var(&copts.swappiness, "memory-swappiness", -1, "Tune container memory swappiness (0 to 100)")
|
|
|
|
flags.BoolVar(&copts.oomKillDisable, "oom-kill-disable", false, "Disable OOM Killer")
|
|
|
|
flags.IntVar(&copts.oomScoreAdj, "oom-score-adj", 0, "Tune host's OOM preferences (-1000 to 1000)")
|
|
|
|
flags.Int64Var(&copts.pidsLimit, "pids-limit", 0, "Tune container pids limit (set -1 for unlimited)")
|
|
|
|
|
|
|
|
// Low-level execution (cgroups, namespaces, ...)
|
|
|
|
flags.StringVar(&copts.cgroupParent, "cgroup-parent", "", "Optional parent cgroup for the container")
|
|
|
|
flags.StringVar(&copts.ipcMode, "ipc", "", "IPC namespace to use")
|
|
|
|
flags.StringVar(&copts.isolation, "isolation", "", "Container isolation technology")
|
|
|
|
flags.StringVar(&copts.pidMode, "pid", "", "PID namespace to use")
|
2016-12-28 17:44:07 -05:00
|
|
|
flags.Var(&copts.shmSize, "shm-size", "Size of /dev/shm")
|
2016-12-23 14:09:12 -05:00
|
|
|
flags.StringVar(&copts.utsMode, "uts", "", "UTS namespace to use")
|
|
|
|
flags.StringVar(&copts.runtime, "runtime", "", "Runtime to use for this container")
|
|
|
|
|
|
|
|
flags.BoolVar(&copts.init, "init", false, "Run an init inside the container that forwards signals and reaps processes")
|
2017-01-16 11:57:26 -05:00
|
|
|
flags.SetAnnotation("init", "version", []string{"1.25"})
|
2016-12-23 14:09:12 -05:00
|
|
|
flags.StringVar(&copts.initPath, "init-path", "", "Path to the docker-init binary")
|
2017-01-16 11:57:26 -05:00
|
|
|
flags.SetAnnotation("init-path", "version", []string{"1.25"})
|
2016-12-23 14:09:12 -05:00
|
|
|
return copts
|
|
|
|
}
|
|
|
|
|
2017-03-07 17:19:54 -05:00
|
|
|
type containerConfig struct {
|
|
|
|
Config *container.Config
|
|
|
|
HostConfig *container.HostConfig
|
|
|
|
NetworkingConfig *networktypes.NetworkingConfig
|
|
|
|
}
|
|
|
|
|
2016-12-23 14:09:12 -05:00
|
|
|
// parse parses the args for the specified command and generates a Config,
|
|
|
|
// a HostConfig and returns them with the specified command.
|
|
|
|
// If the specified args are not valid, it will return an error.
|
2017-03-07 17:19:54 -05:00
|
|
|
func parse(flags *pflag.FlagSet, copts *containerOptions) (*containerConfig, error) {
|
2016-12-23 14:09:12 -05:00
|
|
|
var (
|
|
|
|
attachStdin = copts.attach.Get("stdin")
|
|
|
|
attachStdout = copts.attach.Get("stdout")
|
|
|
|
attachStderr = copts.attach.Get("stderr")
|
|
|
|
)
|
|
|
|
|
|
|
|
// Validate the input mac address
|
|
|
|
if copts.macAddress != "" {
|
|
|
|
if _, err := opts.ValidateMACAddress(copts.macAddress); err != nil {
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, errors.Errorf("%s is not a valid mac address", copts.macAddress)
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if copts.stdin {
|
|
|
|
attachStdin = true
|
|
|
|
}
|
|
|
|
// If -a is not set, attach to stdout and stderr
|
|
|
|
if copts.attach.Len() == 0 {
|
|
|
|
attachStdout = true
|
|
|
|
attachStderr = true
|
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
|
|
|
|
|
|
|
swappiness := copts.swappiness
|
|
|
|
if swappiness != -1 && (swappiness < 0 || swappiness > 100) {
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, errors.Errorf("invalid value: %d. Valid memory swappiness range is 0-100", swappiness)
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
2017-03-31 02:41:45 -04:00
|
|
|
mounts := copts.mounts.Value()
|
|
|
|
if len(mounts) > 0 && copts.volumeDriver != "" {
|
|
|
|
logrus.Warn("`--volume-driver` is ignored for volumes specified via `--mount`. Use `--mount type=volume,volume-driver=...` instead.")
|
|
|
|
}
|
2016-12-23 14:09:12 -05:00
|
|
|
var binds []string
|
|
|
|
volumes := copts.volumes.GetMap()
|
|
|
|
// add any bind targets to the list of container volumes
|
|
|
|
for bind := range copts.volumes.GetMap() {
|
|
|
|
if arr := volumeSplitN(bind, 2); len(arr) > 1 {
|
|
|
|
// after creating the bind mount we want to delete it from the copts.volumes values because
|
|
|
|
// we do not want bind mounts being committed to image configs
|
|
|
|
binds = append(binds, bind)
|
|
|
|
// We should delete from the map (`volumes`) here, as deleting from copts.volumes will not work if
|
|
|
|
// there are duplicates entries.
|
|
|
|
delete(volumes, bind)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Can't evaluate options passed into --tmpfs until we actually mount
|
|
|
|
tmpfs := make(map[string]string)
|
|
|
|
for _, t := range copts.tmpfs.GetAll() {
|
|
|
|
if arr := strings.SplitN(t, ":", 2); len(arr) > 1 {
|
|
|
|
tmpfs[arr[0]] = arr[1]
|
|
|
|
} else {
|
|
|
|
tmpfs[arr[0]] = ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
runCmd strslice.StrSlice
|
|
|
|
entrypoint strslice.StrSlice
|
|
|
|
)
|
|
|
|
|
|
|
|
if len(copts.Args) > 0 {
|
|
|
|
runCmd = strslice.StrSlice(copts.Args)
|
|
|
|
}
|
|
|
|
|
|
|
|
if copts.entrypoint != "" {
|
|
|
|
entrypoint = strslice.StrSlice{copts.entrypoint}
|
|
|
|
} else if flags.Changed("entrypoint") {
|
|
|
|
// if `--entrypoint=` is parsed then Entrypoint is reset
|
|
|
|
entrypoint = []string{""}
|
|
|
|
}
|
|
|
|
|
|
|
|
ports, portBindings, err := nat.ParsePortSpecs(copts.publish.GetAll())
|
|
|
|
if err != nil {
|
2017-03-07 17:19:54 -05:00
|
|
|
return nil, err
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Merge in exposed ports to the map of published ports
|
|
|
|
for _, e := range copts.expose.GetAll() {
|
|
|
|
if strings.Contains(e, ":") {
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, errors.Errorf("invalid port format for --expose: %s", e)
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
//support two formats for expose, original format <portnum>/[<proto>] or <startport-endport>/[<proto>]
|
|
|
|
proto, port := nat.SplitProtoPort(e)
|
|
|
|
//parse the start and end port and create a sequence of ports to expose
|
|
|
|
//if expose a port, the start and end port are the same
|
|
|
|
start, end, err := nat.ParsePortRange(port)
|
|
|
|
if err != nil {
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, errors.Errorf("invalid range format for --expose: %s, error: %s", e, err)
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
for i := start; i <= end; i++ {
|
|
|
|
p, err := nat.NewPort(proto, strconv.FormatUint(i, 10))
|
|
|
|
if err != nil {
|
2017-03-07 17:19:54 -05:00
|
|
|
return nil, err
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
if _, exists := ports[p]; !exists {
|
|
|
|
ports[p] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse device mappings
|
|
|
|
deviceMappings := []container.DeviceMapping{}
|
|
|
|
for _, device := range copts.devices.GetAll() {
|
|
|
|
deviceMapping, err := parseDevice(device)
|
|
|
|
if err != nil {
|
2017-03-07 17:19:54 -05:00
|
|
|
return nil, err
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
deviceMappings = append(deviceMappings, deviceMapping)
|
|
|
|
}
|
|
|
|
|
|
|
|
// collect all the environment variables for the container
|
|
|
|
envVariables, err := runconfigopts.ReadKVStrings(copts.envFile.GetAll(), copts.env.GetAll())
|
|
|
|
if err != nil {
|
2017-03-07 17:19:54 -05:00
|
|
|
return nil, err
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// collect all the labels for the container
|
|
|
|
labels, err := runconfigopts.ReadKVStrings(copts.labelsFile.GetAll(), copts.labels.GetAll())
|
|
|
|
if err != nil {
|
2017-03-07 17:19:54 -05:00
|
|
|
return nil, err
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ipcMode := container.IpcMode(copts.ipcMode)
|
|
|
|
if !ipcMode.Valid() {
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, errors.Errorf("--ipc: invalid IPC mode")
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pidMode := container.PidMode(copts.pidMode)
|
|
|
|
if !pidMode.Valid() {
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, errors.Errorf("--pid: invalid PID mode")
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
utsMode := container.UTSMode(copts.utsMode)
|
|
|
|
if !utsMode.Valid() {
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, errors.Errorf("--uts: invalid UTS mode")
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
usernsMode := container.UsernsMode(copts.usernsMode)
|
|
|
|
if !usernsMode.Valid() {
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, errors.Errorf("--userns: invalid USER mode")
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
restartPolicy, err := runconfigopts.ParseRestartPolicy(copts.restartPolicy)
|
|
|
|
if err != nil {
|
2017-03-07 17:19:54 -05:00
|
|
|
return nil, err
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
loggingOpts, err := parseLoggingOpts(copts.loggingDriver, copts.loggingOpts.GetAll())
|
|
|
|
if err != nil {
|
2017-03-07 17:19:54 -05:00
|
|
|
return nil, err
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
securityOpts, err := parseSecurityOpts(copts.securityOpt.GetAll())
|
|
|
|
if err != nil {
|
2017-03-07 17:19:54 -05:00
|
|
|
return nil, err
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
storageOpts, err := parseStorageOpts(copts.storageOpt.GetAll())
|
|
|
|
if err != nil {
|
2017-03-07 17:19:54 -05:00
|
|
|
return nil, err
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Healthcheck
|
|
|
|
var healthConfig *container.HealthConfig
|
|
|
|
haveHealthSettings := copts.healthCmd != "" ||
|
|
|
|
copts.healthInterval != 0 ||
|
|
|
|
copts.healthTimeout != 0 ||
|
|
|
|
copts.healthRetries != 0
|
|
|
|
if copts.noHealthcheck {
|
|
|
|
if haveHealthSettings {
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, errors.Errorf("--no-healthcheck conflicts with --health-* options")
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
test := strslice.StrSlice{"NONE"}
|
|
|
|
healthConfig = &container.HealthConfig{Test: test}
|
|
|
|
} else if haveHealthSettings {
|
|
|
|
var probe strslice.StrSlice
|
|
|
|
if copts.healthCmd != "" {
|
|
|
|
args := []string{"CMD-SHELL", copts.healthCmd}
|
|
|
|
probe = strslice.StrSlice(args)
|
|
|
|
}
|
|
|
|
if copts.healthInterval < 0 {
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, errors.Errorf("--health-interval cannot be negative")
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
if copts.healthTimeout < 0 {
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, errors.Errorf("--health-timeout cannot be negative")
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
2017-01-17 02:55:45 -05:00
|
|
|
if copts.healthRetries < 0 {
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, errors.Errorf("--health-retries cannot be negative")
|
2017-01-17 02:55:45 -05:00
|
|
|
}
|
2016-12-23 14:09:12 -05:00
|
|
|
|
|
|
|
healthConfig = &container.HealthConfig{
|
|
|
|
Test: probe,
|
|
|
|
Interval: copts.healthInterval,
|
|
|
|
Timeout: copts.healthTimeout,
|
|
|
|
Retries: copts.healthRetries,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resources := container.Resources{
|
|
|
|
CgroupParent: copts.cgroupParent,
|
2017-03-06 16:01:04 -05:00
|
|
|
Memory: copts.memory.Value(),
|
|
|
|
MemoryReservation: copts.memoryReservation.Value(),
|
|
|
|
MemorySwap: copts.memorySwap.Value(),
|
2016-12-23 14:09:12 -05:00
|
|
|
MemorySwappiness: &copts.swappiness,
|
2017-03-06 16:01:04 -05:00
|
|
|
KernelMemory: copts.kernelMemory.Value(),
|
2016-12-23 14:09:12 -05:00
|
|
|
OomKillDisable: &copts.oomKillDisable,
|
|
|
|
NanoCPUs: copts.cpus.Value(),
|
|
|
|
CPUCount: copts.cpuCount,
|
|
|
|
CPUPercent: copts.cpuPercent,
|
|
|
|
CPUShares: copts.cpuShares,
|
|
|
|
CPUPeriod: copts.cpuPeriod,
|
|
|
|
CpusetCpus: copts.cpusetCpus,
|
|
|
|
CpusetMems: copts.cpusetMems,
|
|
|
|
CPUQuota: copts.cpuQuota,
|
|
|
|
CPURealtimePeriod: copts.cpuRealtimePeriod,
|
|
|
|
CPURealtimeRuntime: copts.cpuRealtimeRuntime,
|
|
|
|
PidsLimit: copts.pidsLimit,
|
|
|
|
BlkioWeight: copts.blkioWeight,
|
|
|
|
BlkioWeightDevice: copts.blkioWeightDevice.GetList(),
|
|
|
|
BlkioDeviceReadBps: copts.deviceReadBps.GetList(),
|
|
|
|
BlkioDeviceWriteBps: copts.deviceWriteBps.GetList(),
|
|
|
|
BlkioDeviceReadIOps: copts.deviceReadIOps.GetList(),
|
|
|
|
BlkioDeviceWriteIOps: copts.deviceWriteIOps.GetList(),
|
|
|
|
IOMaximumIOps: copts.ioMaxIOps,
|
2017-03-06 16:01:04 -05:00
|
|
|
IOMaximumBandwidth: uint64(copts.ioMaxBandwidth),
|
2016-12-23 14:09:12 -05:00
|
|
|
Ulimits: copts.ulimits.GetList(),
|
2016-05-06 18:09:46 -04:00
|
|
|
DeviceCgroupRules: copts.deviceCgroupRules.GetAll(),
|
2016-12-23 14:09:12 -05:00
|
|
|
Devices: deviceMappings,
|
|
|
|
}
|
|
|
|
|
|
|
|
config := &container.Config{
|
|
|
|
Hostname: copts.hostname,
|
|
|
|
ExposedPorts: ports,
|
|
|
|
User: copts.user,
|
|
|
|
Tty: copts.tty,
|
|
|
|
// TODO: deprecated, it comes from -n, --networking
|
|
|
|
// it's still needed internally to set the network to disabled
|
|
|
|
// if e.g. bridge is none in daemon opts, and in inspect
|
|
|
|
NetworkDisabled: false,
|
|
|
|
OpenStdin: copts.stdin,
|
|
|
|
AttachStdin: attachStdin,
|
|
|
|
AttachStdout: attachStdout,
|
|
|
|
AttachStderr: attachStderr,
|
|
|
|
Env: envVariables,
|
|
|
|
Cmd: runCmd,
|
|
|
|
Image: copts.Image,
|
|
|
|
Volumes: volumes,
|
|
|
|
MacAddress: copts.macAddress,
|
|
|
|
Entrypoint: entrypoint,
|
|
|
|
WorkingDir: copts.workingDir,
|
|
|
|
Labels: runconfigopts.ConvertKVStringsToMap(labels),
|
|
|
|
Healthcheck: healthConfig,
|
|
|
|
}
|
|
|
|
if flags.Changed("stop-signal") {
|
|
|
|
config.StopSignal = copts.stopSignal
|
|
|
|
}
|
|
|
|
if flags.Changed("stop-timeout") {
|
|
|
|
config.StopTimeout = &copts.stopTimeout
|
|
|
|
}
|
|
|
|
|
|
|
|
hostConfig := &container.HostConfig{
|
|
|
|
Binds: binds,
|
|
|
|
ContainerIDFile: copts.containerIDFile,
|
|
|
|
OomScoreAdj: copts.oomScoreAdj,
|
|
|
|
AutoRemove: copts.autoRemove,
|
|
|
|
Privileged: copts.privileged,
|
|
|
|
PortBindings: portBindings,
|
|
|
|
Links: copts.links.GetAll(),
|
|
|
|
PublishAllPorts: copts.publishAll,
|
|
|
|
// Make sure the dns fields are never nil.
|
|
|
|
// New containers don't ever have those fields nil,
|
|
|
|
// but pre created containers can still have those nil values.
|
|
|
|
// See https://github.com/docker/docker/pull/17779
|
|
|
|
// for a more detailed explanation on why we don't want that.
|
|
|
|
DNS: copts.dns.GetAllOrEmpty(),
|
|
|
|
DNSSearch: copts.dnsSearch.GetAllOrEmpty(),
|
|
|
|
DNSOptions: copts.dnsOptions.GetAllOrEmpty(),
|
|
|
|
ExtraHosts: copts.extraHosts.GetAll(),
|
|
|
|
VolumesFrom: copts.volumesFrom.GetAll(),
|
|
|
|
NetworkMode: container.NetworkMode(copts.netMode),
|
|
|
|
IpcMode: ipcMode,
|
|
|
|
PidMode: pidMode,
|
|
|
|
UTSMode: utsMode,
|
|
|
|
UsernsMode: usernsMode,
|
|
|
|
CapAdd: strslice.StrSlice(copts.capAdd.GetAll()),
|
|
|
|
CapDrop: strslice.StrSlice(copts.capDrop.GetAll()),
|
|
|
|
GroupAdd: copts.groupAdd.GetAll(),
|
|
|
|
RestartPolicy: restartPolicy,
|
|
|
|
SecurityOpt: securityOpts,
|
|
|
|
StorageOpt: storageOpts,
|
|
|
|
ReadonlyRootfs: copts.readonlyRootfs,
|
|
|
|
LogConfig: container.LogConfig{Type: copts.loggingDriver, Config: loggingOpts},
|
|
|
|
VolumeDriver: copts.volumeDriver,
|
|
|
|
Isolation: container.Isolation(copts.isolation),
|
2016-12-28 17:44:07 -05:00
|
|
|
ShmSize: copts.shmSize.Value(),
|
2016-12-23 14:09:12 -05:00
|
|
|
Resources: resources,
|
|
|
|
Tmpfs: tmpfs,
|
|
|
|
Sysctls: copts.sysctls.GetAll(),
|
|
|
|
Runtime: copts.runtime,
|
2017-03-31 02:41:45 -04:00
|
|
|
Mounts: mounts,
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
Don't use AutoRemove on older daemons
Docker 1.13 moves the `--rm` flag to the daemon,
through an AutoRemove option in HostConfig.
When using API 1.24 and under, AutoRemove should not be
used, even if the daemon is version 1.13 or above and
"supports" this feature.
This patch fixes a situation where an 1.13 client,
talking to an 1.13 daemon, but using the 1.24 API
version, still set the AutoRemove property.
As a result, both the client _and_ the daemon
were attempting to remove the container, resulting
in an error:
ERRO[0000] error removing container: Error response from daemon:
removal of container ce0976ad22495c7cbe9487752ea32721a282164862db036b2f3377bd07461c3a
is already in progress
In addition, the validation of conflicting options
is moved from `docker run` to `opts.parse()`, so
that conflicting options are also detected when
running `docker create` and `docker start` separately.
To resolve the issue, the `AutoRemove` option is now
always set to `false` both by the client and the
daemon, if API version 1.24 or under is used.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2017-01-12 19:05:39 -05:00
|
|
|
if copts.autoRemove && !hostConfig.RestartPolicy.IsNone() {
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, errors.Errorf("Conflicting options: --restart and --rm")
|
Don't use AutoRemove on older daemons
Docker 1.13 moves the `--rm` flag to the daemon,
through an AutoRemove option in HostConfig.
When using API 1.24 and under, AutoRemove should not be
used, even if the daemon is version 1.13 or above and
"supports" this feature.
This patch fixes a situation where an 1.13 client,
talking to an 1.13 daemon, but using the 1.24 API
version, still set the AutoRemove property.
As a result, both the client _and_ the daemon
were attempting to remove the container, resulting
in an error:
ERRO[0000] error removing container: Error response from daemon:
removal of container ce0976ad22495c7cbe9487752ea32721a282164862db036b2f3377bd07461c3a
is already in progress
In addition, the validation of conflicting options
is moved from `docker run` to `opts.parse()`, so
that conflicting options are also detected when
running `docker create` and `docker start` separately.
To resolve the issue, the `AutoRemove` option is now
always set to `false` both by the client and the
daemon, if API version 1.24 or under is used.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2017-01-12 19:05:39 -05:00
|
|
|
}
|
|
|
|
|
2016-12-23 14:09:12 -05:00
|
|
|
// only set this value if the user provided the flag, else it should default to nil
|
|
|
|
if flags.Changed("init") {
|
|
|
|
hostConfig.Init = &copts.init
|
|
|
|
}
|
|
|
|
|
|
|
|
// When allocating stdin in attached mode, close stdin at client disconnect
|
|
|
|
if config.OpenStdin && config.AttachStdin {
|
|
|
|
config.StdinOnce = true
|
|
|
|
}
|
|
|
|
|
|
|
|
networkingConfig := &networktypes.NetworkingConfig{
|
|
|
|
EndpointsConfig: make(map[string]*networktypes.EndpointSettings),
|
|
|
|
}
|
|
|
|
|
|
|
|
if copts.ipv4Address != "" || copts.ipv6Address != "" || copts.linkLocalIPs.Len() > 0 {
|
|
|
|
epConfig := &networktypes.EndpointSettings{}
|
|
|
|
networkingConfig.EndpointsConfig[string(hostConfig.NetworkMode)] = epConfig
|
|
|
|
|
|
|
|
epConfig.IPAMConfig = &networktypes.EndpointIPAMConfig{
|
|
|
|
IPv4Address: copts.ipv4Address,
|
|
|
|
IPv6Address: copts.ipv6Address,
|
|
|
|
}
|
|
|
|
|
|
|
|
if copts.linkLocalIPs.Len() > 0 {
|
|
|
|
epConfig.IPAMConfig.LinkLocalIPs = make([]string, copts.linkLocalIPs.Len())
|
|
|
|
copy(epConfig.IPAMConfig.LinkLocalIPs, copts.linkLocalIPs.GetAll())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if hostConfig.NetworkMode.IsUserDefined() && len(hostConfig.Links) > 0 {
|
|
|
|
epConfig := networkingConfig.EndpointsConfig[string(hostConfig.NetworkMode)]
|
|
|
|
if epConfig == nil {
|
|
|
|
epConfig = &networktypes.EndpointSettings{}
|
|
|
|
}
|
|
|
|
epConfig.Links = make([]string, len(hostConfig.Links))
|
|
|
|
copy(epConfig.Links, hostConfig.Links)
|
|
|
|
networkingConfig.EndpointsConfig[string(hostConfig.NetworkMode)] = epConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
if copts.aliases.Len() > 0 {
|
|
|
|
epConfig := networkingConfig.EndpointsConfig[string(hostConfig.NetworkMode)]
|
|
|
|
if epConfig == nil {
|
|
|
|
epConfig = &networktypes.EndpointSettings{}
|
|
|
|
}
|
|
|
|
epConfig.Aliases = make([]string, copts.aliases.Len())
|
|
|
|
copy(epConfig.Aliases, copts.aliases.GetAll())
|
|
|
|
networkingConfig.EndpointsConfig[string(hostConfig.NetworkMode)] = epConfig
|
|
|
|
}
|
|
|
|
|
2017-03-07 17:19:54 -05:00
|
|
|
return &containerConfig{
|
|
|
|
Config: config,
|
|
|
|
HostConfig: hostConfig,
|
|
|
|
NetworkingConfig: networkingConfig,
|
|
|
|
}, nil
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func parseLoggingOpts(loggingDriver string, loggingOpts []string) (map[string]string, error) {
|
|
|
|
loggingOptsMap := runconfigopts.ConvertKVStringsToMap(loggingOpts)
|
|
|
|
if loggingDriver == "none" && len(loggingOpts) > 0 {
|
2017-03-09 13:23:45 -05:00
|
|
|
return map[string]string{}, errors.Errorf("invalid logging opts for driver %s", loggingDriver)
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
return loggingOptsMap, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// takes a local seccomp daemon, reads the file contents for sending to the daemon
|
|
|
|
func parseSecurityOpts(securityOpts []string) ([]string, error) {
|
|
|
|
for key, opt := range securityOpts {
|
|
|
|
con := strings.SplitN(opt, "=", 2)
|
|
|
|
if len(con) == 1 && con[0] != "no-new-privileges" {
|
|
|
|
if strings.Contains(opt, ":") {
|
|
|
|
con = strings.SplitN(opt, ":", 2)
|
|
|
|
} else {
|
2017-03-09 13:23:45 -05:00
|
|
|
return securityOpts, errors.Errorf("Invalid --security-opt: %q", opt)
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if con[0] == "seccomp" && con[1] != "unconfined" {
|
|
|
|
f, err := ioutil.ReadFile(con[1])
|
|
|
|
if err != nil {
|
2017-03-09 13:23:45 -05:00
|
|
|
return securityOpts, errors.Errorf("opening seccomp profile (%s) failed: %v", con[1], err)
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
b := bytes.NewBuffer(nil)
|
|
|
|
if err := json.Compact(b, f); err != nil {
|
2017-03-09 13:23:45 -05:00
|
|
|
return securityOpts, errors.Errorf("compacting json for seccomp profile (%s) failed: %v", con[1], err)
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
securityOpts[key] = fmt.Sprintf("seccomp=%s", b.Bytes())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return securityOpts, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// parses storage options per container into a map
|
|
|
|
func parseStorageOpts(storageOpts []string) (map[string]string, error) {
|
|
|
|
m := make(map[string]string)
|
|
|
|
for _, option := range storageOpts {
|
|
|
|
if strings.Contains(option, "=") {
|
|
|
|
opt := strings.SplitN(option, "=", 2)
|
|
|
|
m[opt[0]] = opt[1]
|
|
|
|
} else {
|
2017-03-09 13:23:45 -05:00
|
|
|
return nil, errors.Errorf("invalid storage option")
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// parseDevice parses a device mapping string to a container.DeviceMapping struct
|
|
|
|
func parseDevice(device string) (container.DeviceMapping, error) {
|
|
|
|
src := ""
|
|
|
|
dst := ""
|
|
|
|
permissions := "rwm"
|
|
|
|
arr := strings.Split(device, ":")
|
|
|
|
switch len(arr) {
|
|
|
|
case 3:
|
|
|
|
permissions = arr[2]
|
|
|
|
fallthrough
|
|
|
|
case 2:
|
|
|
|
if validDeviceMode(arr[1]) {
|
|
|
|
permissions = arr[1]
|
|
|
|
} else {
|
|
|
|
dst = arr[1]
|
|
|
|
}
|
|
|
|
fallthrough
|
|
|
|
case 1:
|
|
|
|
src = arr[0]
|
|
|
|
default:
|
2017-03-09 13:23:45 -05:00
|
|
|
return container.DeviceMapping{}, errors.Errorf("invalid device specification: %s", device)
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if dst == "" {
|
|
|
|
dst = src
|
|
|
|
}
|
|
|
|
|
|
|
|
deviceMapping := container.DeviceMapping{
|
|
|
|
PathOnHost: src,
|
|
|
|
PathInContainer: dst,
|
|
|
|
CgroupPermissions: permissions,
|
|
|
|
}
|
|
|
|
return deviceMapping, nil
|
|
|
|
}
|
|
|
|
|
2016-05-06 18:09:46 -04:00
|
|
|
// validateDeviceCgroupRule validates a device cgroup rule string format
|
|
|
|
// It will make sure 'val' is in the form:
|
|
|
|
// 'type major:minor mode'
|
|
|
|
func validateDeviceCgroupRule(val string) (string, error) {
|
|
|
|
if deviceCgroupRuleRegexp.MatchString(val) {
|
|
|
|
return val, nil
|
|
|
|
}
|
|
|
|
|
2017-03-09 13:23:45 -05:00
|
|
|
return val, errors.Errorf("invalid device cgroup format '%s'", val)
|
2016-05-06 18:09:46 -04:00
|
|
|
}
|
|
|
|
|
2016-12-23 14:09:12 -05:00
|
|
|
// validDeviceMode checks if the mode for device is valid or not.
|
|
|
|
// Valid mode is a composition of r (read), w (write), and m (mknod).
|
|
|
|
func validDeviceMode(mode string) bool {
|
|
|
|
var legalDeviceMode = map[rune]bool{
|
|
|
|
'r': true,
|
|
|
|
'w': true,
|
|
|
|
'm': true,
|
|
|
|
}
|
|
|
|
if mode == "" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
for _, c := range mode {
|
|
|
|
if !legalDeviceMode[c] {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
legalDeviceMode[c] = false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// validateDevice validates a path for devices
|
|
|
|
// It will make sure 'val' is in the form:
|
|
|
|
// [host-dir:]container-path[:mode]
|
|
|
|
// It also validates the device mode.
|
|
|
|
func validateDevice(val string) (string, error) {
|
|
|
|
return validatePath(val, validDeviceMode)
|
|
|
|
}
|
|
|
|
|
|
|
|
func validatePath(val string, validator func(string) bool) (string, error) {
|
|
|
|
var containerPath string
|
|
|
|
var mode string
|
|
|
|
|
|
|
|
if strings.Count(val, ":") > 2 {
|
2017-03-09 13:23:45 -05:00
|
|
|
return val, errors.Errorf("bad format for path: %s", val)
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
split := strings.SplitN(val, ":", 3)
|
|
|
|
if split[0] == "" {
|
2017-03-09 13:23:45 -05:00
|
|
|
return val, errors.Errorf("bad format for path: %s", val)
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
switch len(split) {
|
|
|
|
case 1:
|
|
|
|
containerPath = split[0]
|
|
|
|
val = path.Clean(containerPath)
|
|
|
|
case 2:
|
|
|
|
if isValid := validator(split[1]); isValid {
|
|
|
|
containerPath = split[0]
|
|
|
|
mode = split[1]
|
|
|
|
val = fmt.Sprintf("%s:%s", path.Clean(containerPath), mode)
|
|
|
|
} else {
|
|
|
|
containerPath = split[1]
|
|
|
|
val = fmt.Sprintf("%s:%s", split[0], path.Clean(containerPath))
|
|
|
|
}
|
|
|
|
case 3:
|
|
|
|
containerPath = split[1]
|
|
|
|
mode = split[2]
|
|
|
|
if isValid := validator(split[2]); !isValid {
|
2017-03-09 13:23:45 -05:00
|
|
|
return val, errors.Errorf("bad mode specified: %s", mode)
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
val = fmt.Sprintf("%s:%s:%s", split[0], containerPath, mode)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !path.IsAbs(containerPath) {
|
2017-03-09 13:23:45 -05:00
|
|
|
return val, errors.Errorf("%s is not an absolute path", containerPath)
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|
|
|
|
return val, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// volumeSplitN splits raw into a maximum of n parts, separated by a separator colon.
|
|
|
|
// A separator colon is the last `:` character in the regex `[:\\]?[a-zA-Z]:` (note `\\` is `\` escaped).
|
|
|
|
// In Windows driver letter appears in two situations:
|
|
|
|
// a. `^[a-zA-Z]:` (A colon followed by `^[a-zA-Z]:` is OK as colon is the separator in volume option)
|
|
|
|
// b. A string in the format like `\\?\C:\Windows\...` (UNC).
|
|
|
|
// Therefore, a driver letter can only follow either a `:` or `\\`
|
|
|
|
// This allows to correctly split strings such as `C:\foo:D:\:rw` or `/tmp/q:/foo`.
|
|
|
|
func volumeSplitN(raw string, n int) []string {
|
|
|
|
var array []string
|
|
|
|
if len(raw) == 0 || raw[0] == ':' {
|
|
|
|
// invalid
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
// numberOfParts counts the number of parts separated by a separator colon
|
|
|
|
numberOfParts := 0
|
|
|
|
// left represents the left-most cursor in raw, updated at every `:` character considered as a separator.
|
|
|
|
left := 0
|
|
|
|
// right represents the right-most cursor in raw incremented with the loop. Note this
|
|
|
|
// starts at index 1 as index 0 is already handle above as a special case.
|
|
|
|
for right := 1; right < len(raw); right++ {
|
|
|
|
// stop parsing if reached maximum number of parts
|
|
|
|
if n >= 0 && numberOfParts >= n {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if raw[right] != ':' {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
potentialDriveLetter := raw[right-1]
|
|
|
|
if (potentialDriveLetter >= 'A' && potentialDriveLetter <= 'Z') || (potentialDriveLetter >= 'a' && potentialDriveLetter <= 'z') {
|
|
|
|
if right > 1 {
|
|
|
|
beforePotentialDriveLetter := raw[right-2]
|
|
|
|
// Only `:` or `\\` are checked (`/` could fall into the case of `/tmp/q:/foo`)
|
|
|
|
if beforePotentialDriveLetter != ':' && beforePotentialDriveLetter != '\\' {
|
|
|
|
// e.g. `C:` is not preceded by any delimiter, therefore it was not a drive letter but a path ending with `C:`.
|
|
|
|
array = append(array, raw[left:right])
|
|
|
|
left = right + 1
|
|
|
|
numberOfParts++
|
|
|
|
}
|
|
|
|
// else, `C:` is considered as a drive letter and not as a delimiter, so we continue parsing.
|
|
|
|
}
|
|
|
|
// if right == 1, then `C:` is the beginning of the raw string, therefore `:` is again not considered a delimiter and we continue parsing.
|
|
|
|
} else {
|
|
|
|
// if `:` is not preceded by a potential drive letter, then consider it as a delimiter.
|
|
|
|
array = append(array, raw[left:right])
|
|
|
|
left = right + 1
|
|
|
|
numberOfParts++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// need to take care of the last part
|
|
|
|
if left < len(raw) {
|
|
|
|
if n >= 0 && numberOfParts >= n {
|
|
|
|
// if the maximum number of parts is reached, just append the rest to the last part
|
|
|
|
// left-1 is at the last `:` that needs to be included since not considered a separator.
|
|
|
|
array[n-1] += raw[left-1:]
|
|
|
|
} else {
|
|
|
|
array = append(array, raw[left:])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return array
|
|
|
|
}
|
|
|
|
|
|
|
|
// validateAttach validates that the specified string is a valid attach option.
|
|
|
|
func validateAttach(val string) (string, error) {
|
|
|
|
s := strings.ToLower(val)
|
|
|
|
for _, str := range []string{"stdin", "stdout", "stderr"} {
|
|
|
|
if s == str {
|
|
|
|
return s, nil
|
|
|
|
}
|
|
|
|
}
|
2017-03-09 13:23:45 -05:00
|
|
|
return val, errors.Errorf("valid streams are STDIN, STDOUT and STDERR")
|
2016-12-23 14:09:12 -05:00
|
|
|
}
|