2015-06-23 17:13:42 +00:00
|
|
|
package runconfig
|
|
|
|
|
2015-11-01 01:49:14 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
2015-11-01 02:16:58 +00:00
|
|
|
|
2016-09-06 18:18:12 +00:00
|
|
|
"github.com/docker/docker/api/types/container"
|
2016-06-07 19:05:43 +00:00
|
|
|
"github.com/docker/docker/pkg/sysinfo"
|
2015-12-18 18:36:17 +00:00
|
|
|
)
|
2015-09-19 01:21:57 +00:00
|
|
|
|
2015-07-25 09:11:45 +00:00
|
|
|
// DefaultDaemonNetworkMode returns the default network stack the daemon should
|
|
|
|
// use.
|
2015-12-18 18:36:17 +00:00
|
|
|
func DefaultDaemonNetworkMode() container.NetworkMode {
|
2016-03-10 04:33:21 +00:00
|
|
|
return container.NetworkMode("nat")
|
2015-07-09 22:12:36 +00:00
|
|
|
}
|
2015-10-25 23:09:54 +00:00
|
|
|
|
|
|
|
// IsPreDefinedNetwork indicates if a network is predefined by the daemon
|
|
|
|
func IsPreDefinedNetwork(network string) bool {
|
2016-03-10 04:33:21 +00:00
|
|
|
return !container.NetworkMode(network).IsUserDefined()
|
2015-10-25 23:09:54 +00:00
|
|
|
}
|
2015-11-01 01:49:14 +00:00
|
|
|
|
2017-03-10 17:39:22 +00:00
|
|
|
// validateNetMode ensures that the various combinations of requested
|
2015-11-01 01:49:14 +00:00
|
|
|
// network settings are valid.
|
2017-03-10 17:39:22 +00:00
|
|
|
func validateNetMode(c *container.Config, hc *container.HostConfig) error {
|
2015-11-01 01:49:14 +00:00
|
|
|
if hc == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2017-03-01 04:03:43 +00:00
|
|
|
|
2017-03-10 17:39:22 +00:00
|
|
|
err := validateNetContainerMode(c, hc)
|
2017-03-01 04:03:43 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if hc.NetworkMode.IsContainer() && hc.Isolation.IsHyperV() {
|
|
|
|
return fmt.Errorf("net mode --net=container:<NameOrId> unsupported for hyperv isolation")
|
2015-11-01 01:49:14 +00:00
|
|
|
}
|
2017-03-01 04:03:43 +00:00
|
|
|
|
2015-11-01 01:49:14 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-03-10 17:39:22 +00:00
|
|
|
// validateIsolation performs platform specific validation of the
|
2016-02-03 20:07:00 +00:00
|
|
|
// isolation in the hostconfig structure. Windows supports 'default' (or
|
2015-11-01 02:16:58 +00:00
|
|
|
// blank), 'process', or 'hyperv'.
|
2017-03-10 17:39:22 +00:00
|
|
|
func validateIsolation(hc *container.HostConfig) error {
|
2015-11-01 01:49:14 +00: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() {
|
2015-11-01 02:16:58 +00:00
|
|
|
return fmt.Errorf("invalid --isolation: %q. Windows supports 'default', 'process', or 'hyperv'", hc.Isolation)
|
2015-11-01 01:49:14 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2016-02-25 01:51:46 +00:00
|
|
|
|
2017-03-10 17:39:22 +00:00
|
|
|
// validateQoS performs platform specific validation of the Qos settings
|
|
|
|
func validateQoS(hc *container.HostConfig) error {
|
2016-02-25 01:51:46 +00:00
|
|
|
return nil
|
|
|
|
}
|
2016-06-07 19:05:43 +00:00
|
|
|
|
2017-03-10 17:39:22 +00:00
|
|
|
// validateResources performs platform specific validation of the resource settings
|
|
|
|
func validateResources(hc *container.HostConfig, si *sysinfo.SysInfo) error {
|
2016-06-07 19:05:43 +00:00
|
|
|
// 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 {
|
|
|
|
return fmt.Errorf("invalid --cpu-rt-period: Windows does not support this feature")
|
|
|
|
}
|
|
|
|
if hc.Resources.CPURealtimeRuntime != 0 {
|
|
|
|
return fmt.Errorf("invalid --cpu-rt-runtime: Windows does not support this feature")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-03-10 17:39:22 +00:00
|
|
|
|
|
|
|
// validatePrivileged performs platform specific validation of the Privileged setting
|
|
|
|
func validatePrivileged(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.Privileged {
|
|
|
|
return fmt.Errorf("invalid --privileged: Windows does not support this feature")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|