2015-06-23 13:13:42 -04:00
|
|
|
package runconfig
|
|
|
|
|
2015-10-31 21:49:14 -04:00
|
|
|
import (
|
|
|
|
"fmt"
|
2015-10-31 22:16:58 -04:00
|
|
|
|
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-09-18 21:21:57 -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 {
|
2016-03-09 23:33:21 -05:00
|
|
|
return container.NetworkMode("nat")
|
2015-07-09 18:12:36 -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 {
|
2016-03-09 23:33:21 -05:00
|
|
|
return !container.NetworkMode(network).IsUserDefined()
|
2015-10-25 19:09:54 -04:00
|
|
|
}
|
2015-10-31 21:49:14 -04:00
|
|
|
|
2017-03-10 12:39:22 -05:00
|
|
|
// validateNetMode ensures that the various combinations of requested
|
2015-10-31 21:49:14 -04:00
|
|
|
// network settings are valid.
|
2017-03-10 12:39:22 -05:00
|
|
|
func validateNetMode(c *container.Config, hc *container.HostConfig) error {
|
2015-10-31 21:49:14 -04:00
|
|
|
if hc == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2017-02-28 23:03:43 -05:00
|
|
|
|
2017-03-10 12:39:22 -05:00
|
|
|
err := validateNetContainerMode(c, hc)
|
2017-02-28 23:03:43 -05: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-10-31 21:49:14 -04:00
|
|
|
}
|
2017-02-28 23:03:43 -05:00
|
|
|
|
2015-10-31 21:49:14 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-03-10 12:39:22 -05:00
|
|
|
// validateIsolation performs platform specific validation of the
|
2016-02-03 15:07:00 -05:00
|
|
|
// isolation in the hostconfig structure. Windows supports 'default' (or
|
2015-10-31 22:16:58 -04:00
|
|
|
// blank), 'process', or 'hyperv'.
|
2017-03-10 12:39:22 -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() {
|
2015-10-31 22:16:58 -04:00
|
|
|
return fmt.Errorf("invalid --isolation: %q. Windows supports 'default', 'process', or 'hyperv'", hc.Isolation)
|
2015-10-31 21:49:14 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2016-02-24 20:51:46 -05:00
|
|
|
|
2017-03-10 12:39:22 -05:00
|
|
|
// validateQoS performs platform specific validation of the Qos settings
|
|
|
|
func validateQoS(hc *container.HostConfig) error {
|
2016-02-24 20:51:46 -05:00
|
|
|
return nil
|
|
|
|
}
|
2016-06-07 15:05:43 -04:00
|
|
|
|
2017-03-10 12:39:22 -05:00
|
|
|
// validateResources performs platform specific validation of the resource settings
|
|
|
|
func validateResources(hc *container.HostConfig, si *sysinfo.SysInfo) error {
|
2016-06-07 15:05:43 -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.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 12:39:22 -05: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
|
|
|
|
}
|