2016-03-25 19:38:00 -04:00
|
|
|
// +build !windows,!solaris
|
2015-06-23 13:13:42 -04:00
|
|
|
|
|
|
|
package runconfig
|
|
|
|
|
|
|
|
import (
|
2015-10-31 21:49:14 -04:00
|
|
|
"fmt"
|
|
|
|
"runtime"
|
2015-06-23 13:13:42 -04:00
|
|
|
"strings"
|
|
|
|
|
2016-09-06 14:18:12 -04:00
|
|
|
"github.com/docker/docker/api/types/container"
|
2016-06-07 15:05:43 -04:00
|
|
|
"github.com/docker/docker/pkg/sysinfo"
|
2015-12-18 13:36:17 -05:00
|
|
|
)
|
2015-06-23 13:13:42 -04:00
|
|
|
|
2015-07-25 05:11:45 -04:00
|
|
|
// DefaultDaemonNetworkMode returns the default network stack the daemon should
|
|
|
|
// use.
|
2015-12-18 13:36:17 -05:00
|
|
|
func DefaultDaemonNetworkMode() container.NetworkMode {
|
|
|
|
return container.NetworkMode("bridge")
|
2015-09-25 06:19:17 -04:00
|
|
|
}
|
|
|
|
|
2015-10-25 19:09:54 -04:00
|
|
|
// IsPreDefinedNetwork indicates if a network is predefined by the daemon
|
|
|
|
func IsPreDefinedNetwork(network string) bool {
|
2015-12-18 13:36:17 -05:00
|
|
|
n := container.NetworkMode(network)
|
2016-06-13 22:52:49 -04:00
|
|
|
return n.IsBridge() || n.IsHost() || n.IsNone() || n.IsDefault() || network == "ingress"
|
2015-10-25 19:09:54 -04:00
|
|
|
}
|
|
|
|
|
2015-10-31 21:49:14 -04:00
|
|
|
// ValidateNetMode ensures that the various combinations of requested
|
|
|
|
// network settings are valid.
|
2015-12-18 13:36:17 -05:00
|
|
|
func ValidateNetMode(c *container.Config, hc *container.HostConfig) error {
|
2015-10-31 21:49:14 -04:00
|
|
|
// We may not be passed a host config, such as in the case of docker commit
|
|
|
|
if hc == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
parts := strings.Split(string(hc.NetworkMode), ":")
|
|
|
|
if parts[0] == "container" {
|
|
|
|
if len(parts) < 2 || parts[1] == "" {
|
|
|
|
return fmt.Errorf("--net: invalid net mode: invalid container format container:<name|id>")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-09 20:40:12 -05:00
|
|
|
if hc.NetworkMode.IsContainer() && c.Hostname != "" {
|
2015-10-31 21:49:14 -04:00
|
|
|
return ErrConflictNetworkHostname
|
|
|
|
}
|
|
|
|
|
2016-03-09 20:40:12 -05:00
|
|
|
if hc.UTSMode.IsHost() && c.Hostname != "" {
|
|
|
|
return ErrConflictUTSHostname
|
|
|
|
}
|
|
|
|
|
2015-10-31 21:49:14 -04:00
|
|
|
if hc.NetworkMode.IsHost() && len(hc.Links) > 0 {
|
|
|
|
return ErrConflictHostNetworkAndLinks
|
|
|
|
}
|
|
|
|
|
|
|
|
if hc.NetworkMode.IsContainer() && len(hc.Links) > 0 {
|
|
|
|
return ErrConflictContainerNetworkAndLinks
|
|
|
|
}
|
|
|
|
|
2016-04-29 01:46:57 -04:00
|
|
|
if hc.NetworkMode.IsContainer() && len(hc.DNS) > 0 {
|
2015-10-31 21:49:14 -04:00
|
|
|
return ErrConflictNetworkAndDNS
|
|
|
|
}
|
|
|
|
|
2016-05-24 21:49:11 -04:00
|
|
|
if hc.NetworkMode.IsContainer() && len(hc.ExtraHosts) > 0 {
|
2015-10-31 21:49:14 -04:00
|
|
|
return ErrConflictNetworkHosts
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hc.NetworkMode.IsContainer() || hc.NetworkMode.IsHost()) && c.MacAddress != "" {
|
|
|
|
return ErrConflictContainerNetworkAndMac
|
|
|
|
}
|
|
|
|
|
|
|
|
if hc.NetworkMode.IsContainer() && (len(hc.PortBindings) > 0 || hc.PublishAllPorts == true) {
|
|
|
|
return ErrConflictNetworkPublishPorts
|
|
|
|
}
|
|
|
|
|
|
|
|
if hc.NetworkMode.IsContainer() && len(c.ExposedPorts) > 0 {
|
|
|
|
return ErrConflictNetworkExposePorts
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-02-03 15:07:00 -05:00
|
|
|
// ValidateIsolation performs platform specific validation of
|
|
|
|
// isolation in the hostconfig structure. Linux only supports "default"
|
2015-10-31 21:49:14 -04:00
|
|
|
// which is LXC container isolation
|
2016-02-03 15:07:00 -05:00
|
|
|
func ValidateIsolation(hc *container.HostConfig) error {
|
2015-10-31 21:49:14 -04:00
|
|
|
// We may not be passed a host config, such as in the case of docker commit
|
|
|
|
if hc == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if !hc.Isolation.IsValid() {
|
|
|
|
return fmt.Errorf("invalid --isolation: %q - %s only supports 'default'", hc.Isolation, runtime.GOOS)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2016-02-24 20:51:46 -05:00
|
|
|
|
|
|
|
// ValidateQoS performs platform specific validation of the QoS settings
|
|
|
|
func ValidateQoS(hc *container.HostConfig) error {
|
|
|
|
// We may not be passed a host config, such as in the case of docker commit
|
|
|
|
if hc == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if hc.IOMaximumBandwidth != 0 {
|
2016-06-10 19:24:23 -04:00
|
|
|
return fmt.Errorf("invalid QoS settings: %s does not support --io-maxbandwidth", runtime.GOOS)
|
2016-02-24 20:51:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if hc.IOMaximumIOps != 0 {
|
2016-06-10 19:24:23 -04:00
|
|
|
return fmt.Errorf("invalid QoS settings: %s does not support --io-maxiops", runtime.GOOS)
|
2016-02-24 20:51:46 -05:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2016-06-07 15:05:43 -04:00
|
|
|
|
|
|
|
// ValidateResources performs platform specific validation of the resource settings
|
|
|
|
// cpu-rt-runtime and cpu-rt-period can not be greater than their parent, cpu-rt-runtime requires sys_nice
|
|
|
|
func ValidateResources(hc *container.HostConfig, si *sysinfo.SysInfo) error {
|
|
|
|
// We may not be passed a host config, such as in the case of docker commit
|
|
|
|
if hc == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if hc.Resources.CPURealtimePeriod > 0 && !si.CPURealtimePeriod {
|
|
|
|
return fmt.Errorf("invalid --cpu-rt-period: Your kernel does not support cgroup rt period")
|
|
|
|
}
|
|
|
|
|
|
|
|
if hc.Resources.CPURealtimeRuntime > 0 && !si.CPURealtimeRuntime {
|
|
|
|
return fmt.Errorf("invalid --cpu-rt-runtime: Your kernel does not support cgroup rt runtime")
|
|
|
|
}
|
|
|
|
|
|
|
|
if hc.Resources.CPURealtimePeriod != 0 && hc.Resources.CPURealtimeRuntime != 0 && hc.Resources.CPURealtimeRuntime > hc.Resources.CPURealtimePeriod {
|
|
|
|
return fmt.Errorf("invalid --cpu-rt-runtime: rt runtime cannot be higher than rt period")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|