2015-08-07 12:33:29 -04:00
// +build linux freebsd
2015-05-15 19:34:26 -04:00
package daemon
import (
"fmt"
"net"
"os"
"path/filepath"
"strings"
2015-06-16 14:06:53 -04:00
"syscall"
2015-05-15 19:34:26 -04:00
"github.com/Sirupsen/logrus"
"github.com/docker/docker/autogen/dockerversion"
"github.com/docker/docker/daemon/graphdriver"
2015-09-08 14:40:55 -04:00
derr "github.com/docker/docker/errors"
2015-05-15 19:34:26 -04:00
"github.com/docker/docker/pkg/fileutils"
2015-06-23 13:13:42 -04:00
"github.com/docker/docker/pkg/parsers"
2015-05-15 19:34:26 -04:00
"github.com/docker/docker/pkg/parsers/kernel"
2015-08-06 07:54:48 -04:00
"github.com/docker/docker/pkg/sysinfo"
2015-06-16 14:06:53 -04:00
"github.com/docker/docker/pkg/system"
2015-05-15 19:34:26 -04:00
"github.com/docker/docker/runconfig"
"github.com/docker/docker/utils"
"github.com/docker/libnetwork"
2015-05-20 08:20:19 -04:00
nwconfig "github.com/docker/libnetwork/config"
2015-05-15 19:34:26 -04:00
"github.com/docker/libnetwork/netlabel"
"github.com/docker/libnetwork/options"
2015-07-16 19:00:55 -04:00
"github.com/opencontainers/runc/libcontainer/label"
2015-09-24 17:59:23 -04:00
"github.com/vishvananda/netlink"
2015-05-15 19:34:26 -04:00
)
2015-08-05 20:15:14 -04:00
const (
// See https://git.kernel.org/cgit/linux/kernel/git/tip/tip.git/tree/kernel/sched/sched.h?id=8cd9234c64c584432f6992fe944ca9e46ca8ea76#n269
linuxMinCPUShares = 2
linuxMaxCPUShares = 262144
2015-08-07 12:33:29 -04:00
platformSupported = true
2015-08-05 20:15:14 -04:00
)
2015-05-15 19:34:26 -04:00
func parseSecurityOpt ( container * Container , config * runconfig . HostConfig ) error {
var (
labelOpts [ ] string
err error
)
for _ , opt := range config . SecurityOpt {
con := strings . SplitN ( opt , ":" , 2 )
if len ( con ) == 1 {
return fmt . Errorf ( "Invalid --security-opt: %q" , opt )
}
switch con [ 0 ] {
case "label" :
labelOpts = append ( labelOpts , con [ 1 ] )
case "apparmor" :
container . AppArmorProfile = con [ 1 ]
default :
return fmt . Errorf ( "Invalid --security-opt: %q" , opt )
}
}
container . ProcessLabel , container . MountLabel , err = label . InitLabels ( labelOpts )
return err
}
2015-07-30 17:01:53 -04:00
func checkKernelVersion ( k , major , minor int ) bool {
2015-08-18 22:40:22 -04:00
if v , err := kernel . GetKernelVersion ( ) ; err != nil {
logrus . Warnf ( "%s" , err )
} else {
if kernel . CompareKernelVersion ( * v , kernel . VersionInfo { Kernel : k , Major : major , Minor : minor } ) < 0 {
return false
}
}
return true
}
2015-05-15 19:34:26 -04:00
func checkKernel ( ) error {
// Check for unsupported kernel versions
// FIXME: it would be cleaner to not test for specific versions, but rather
// test for specific functionalities.
// Unfortunately we can't test for the feature "does not cause a kernel panic"
// without actually causing a kernel panic, so we need this workaround until
// the circumstances of pre-3.10 crashes are clearer.
// For details see https://github.com/docker/docker/issues/407
2015-07-30 17:01:53 -04:00
if ! checkKernelVersion ( 3 , 10 , 0 ) {
2015-08-18 22:40:22 -04:00
v , _ := kernel . GetKernelVersion ( )
if os . Getenv ( "DOCKER_NOWARN_KERNEL_VERSION" ) == "" {
logrus . Warnf ( "Your Linux kernel version %s can be unstable running docker. Please upgrade your kernel to 3.10.0." , v . String ( ) )
2015-05-15 19:34:26 -04:00
}
}
return nil
}
2015-07-30 18:28:11 -04:00
// adaptContainerSettings is called during container creation to modify any
// settings necessary in the HostConfig structure.
2015-08-05 20:15:14 -04:00
func ( daemon * Daemon ) adaptContainerSettings ( hostConfig * runconfig . HostConfig , adjustCPUShares bool ) {
2015-07-13 03:17:43 -04:00
if hostConfig == nil {
return
}
2015-08-05 20:15:14 -04:00
if adjustCPUShares && hostConfig . CPUShares > 0 {
// Handle unsupported CPUShares
if hostConfig . CPUShares < linuxMinCPUShares {
logrus . Warnf ( "Changing requested CPUShares of %d to minimum allowed of %d" , hostConfig . CPUShares , linuxMinCPUShares )
hostConfig . CPUShares = linuxMinCPUShares
} else if hostConfig . CPUShares > linuxMaxCPUShares {
logrus . Warnf ( "Changing requested CPUShares of %d to maximum allowed of %d" , hostConfig . CPUShares , linuxMaxCPUShares )
hostConfig . CPUShares = linuxMaxCPUShares
}
}
2015-07-13 03:17:43 -04:00
if hostConfig . Memory > 0 && hostConfig . MemorySwap == 0 {
// By default, MemorySwap is set to twice the size of Memory.
hostConfig . MemorySwap = hostConfig . Memory * 2
}
2015-09-23 02:02:45 -04:00
if hostConfig . MemoryReservation == 0 && hostConfig . Memory > 0 {
hostConfig . MemoryReservation = hostConfig . Memory
}
2015-07-13 03:17:43 -04:00
}
2015-07-30 18:28:11 -04:00
// verifyPlatformContainerSettings performs platform-specific validation of the
// hostconfig and config structures.
2015-09-29 13:51:40 -04:00
func verifyPlatformContainerSettings ( daemon * Daemon , hostConfig * runconfig . HostConfig , config * runconfig . Config ) ( [ ] string , error ) {
2015-08-06 07:54:48 -04:00
warnings := [ ] string { }
2015-08-18 10:01:52 -04:00
sysInfo := sysinfo . New ( true )
2015-05-15 19:34:26 -04:00
2015-09-29 13:51:40 -04:00
if hostConfig . LxcConf . Len ( ) > 0 && ! strings . Contains ( daemon . ExecutionDriver ( ) . Name ( ) , "lxc" ) {
return warnings , fmt . Errorf ( "Cannot use --lxc-conf with execdriver: %s" , daemon . ExecutionDriver ( ) . Name ( ) )
2015-05-15 19:34:26 -04:00
}
2015-08-06 07:55:56 -04:00
// memory subsystem checks and adjustments
2015-05-15 19:34:26 -04:00
if hostConfig . Memory != 0 && hostConfig . Memory < 4194304 {
return warnings , fmt . Errorf ( "Minimum memory limit allowed is 4MB" )
}
2015-08-06 07:54:48 -04:00
if hostConfig . Memory > 0 && ! sysInfo . MemoryLimit {
2015-05-15 19:34:26 -04:00
warnings = append ( warnings , "Your kernel does not support memory limit capabilities. Limitation discarded." )
logrus . Warnf ( "Your kernel does not support memory limit capabilities. Limitation discarded." )
hostConfig . Memory = 0
2015-08-06 07:55:56 -04:00
hostConfig . MemorySwap = - 1
2015-05-15 19:34:26 -04:00
}
2015-08-06 07:54:48 -04:00
if hostConfig . Memory > 0 && hostConfig . MemorySwap != - 1 && ! sysInfo . SwapLimit {
2015-05-15 19:34:26 -04:00
warnings = append ( warnings , "Your kernel does not support swap limit capabilities, memory limited without swap." )
logrus . Warnf ( "Your kernel does not support swap limit capabilities, memory limited without swap." )
hostConfig . MemorySwap = - 1
}
if hostConfig . Memory > 0 && hostConfig . MemorySwap > 0 && hostConfig . MemorySwap < hostConfig . Memory {
return warnings , fmt . Errorf ( "Minimum memoryswap limit should be larger than memory limit, see usage." )
}
if hostConfig . Memory == 0 && hostConfig . MemorySwap > 0 {
return warnings , fmt . Errorf ( "You should always set the Memory limit when using Memoryswap limit, see usage." )
}
2015-08-06 07:55:56 -04:00
if hostConfig . MemorySwappiness != nil && * hostConfig . MemorySwappiness != - 1 && ! sysInfo . MemorySwappiness {
2015-07-14 01:52:57 -04:00
warnings = append ( warnings , "Your kernel does not support memory swappiness capabilities, memory swappiness discarded." )
logrus . Warnf ( "Your kernel does not support memory swappiness capabilities, memory swappiness discarded." )
2015-07-29 16:04:12 -04:00
hostConfig . MemorySwappiness = nil
2015-07-14 01:52:57 -04:00
}
2015-07-29 16:04:12 -04:00
if hostConfig . MemorySwappiness != nil {
swappiness := * hostConfig . MemorySwappiness
if swappiness < - 1 || swappiness > 100 {
return warnings , fmt . Errorf ( "Invalid value: %v, valid memory swappiness range is 0-100." , swappiness )
}
2015-07-14 01:52:57 -04:00
}
2015-09-23 02:02:45 -04:00
if hostConfig . MemoryReservation > 0 && ! sysInfo . MemoryReservation {
warnings = append ( warnings , "Your kernel does not support memory soft limit capabilities. Limitation discarded." )
logrus . Warnf ( "Your kernel does not support memory soft limit capabilities. Limitation discarded." )
hostConfig . MemoryReservation = 0
}
if hostConfig . Memory > 0 && hostConfig . MemoryReservation > 0 && hostConfig . Memory < hostConfig . MemoryReservation {
return warnings , fmt . Errorf ( "Minimum memory limit should be larger than memory reservation limit, see usage." )
}
2015-08-19 11:56:55 -04:00
if hostConfig . KernelMemory > 0 && ! sysInfo . KernelMemory {
warnings = append ( warnings , "Your kernel does not support kernel memory limit capabilities. Limitation discarded." )
logrus . Warnf ( "Your kernel does not support kernel memory limit capabilities. Limitation discarded." )
hostConfig . KernelMemory = 0
}
2015-07-30 17:01:53 -04:00
if hostConfig . KernelMemory > 0 && ! checkKernelVersion ( 4 , 0 , 0 ) {
2015-08-19 11:56:55 -04:00
warnings = append ( warnings , "You specified a kernel memory limit on a kernel older than 4.0. Kernel memory limits are experimental on older kernels, it won't work as expected and can cause your system to be unstable." )
logrus . Warnf ( "You specified a kernel memory limit on a kernel older than 4.0. Kernel memory limits are experimental on older kernels, it won't work as expected and can cause your system to be unstable." )
}
2015-08-06 07:54:48 -04:00
if hostConfig . CPUShares > 0 && ! sysInfo . CPUShares {
2015-08-05 10:35:18 -04:00
warnings = append ( warnings , "Your kernel does not support CPU shares. Shares discarded." )
logrus . Warnf ( "Your kernel does not support CPU shares. Shares discarded." )
hostConfig . CPUShares = 0
}
2015-08-06 07:54:48 -04:00
if hostConfig . CPUPeriod > 0 && ! sysInfo . CPUCfsPeriod {
2015-05-15 19:34:26 -04:00
warnings = append ( warnings , "Your kernel does not support CPU cfs period. Period discarded." )
logrus . Warnf ( "Your kernel does not support CPU cfs period. Period discarded." )
2015-07-25 05:11:45 -04:00
hostConfig . CPUPeriod = 0
2015-05-15 19:34:26 -04:00
}
2015-08-06 07:54:48 -04:00
if hostConfig . CPUQuota > 0 && ! sysInfo . CPUCfsQuota {
2015-05-15 19:34:26 -04:00
warnings = append ( warnings , "Your kernel does not support CPU cfs quota. Quota discarded." )
logrus . Warnf ( "Your kernel does not support CPU cfs quota. Quota discarded." )
2015-07-25 05:11:45 -04:00
hostConfig . CPUQuota = 0
2015-05-15 19:34:26 -04:00
}
2015-08-06 07:54:48 -04:00
if ( hostConfig . CpusetCpus != "" || hostConfig . CpusetMems != "" ) && ! sysInfo . Cpuset {
2015-08-05 10:35:18 -04:00
warnings = append ( warnings , "Your kernel does not support cpuset. Cpuset discarded." )
logrus . Warnf ( "Your kernel does not support cpuset. Cpuset discarded." )
hostConfig . CpusetCpus = ""
hostConfig . CpusetMems = ""
}
2015-09-08 14:40:55 -04:00
cpusAvailable , err := sysInfo . IsCpusetCpusAvailable ( hostConfig . CpusetCpus )
if err != nil {
return warnings , derr . ErrorCodeInvalidCpusetCpus . WithArgs ( hostConfig . CpusetCpus )
}
if ! cpusAvailable {
return warnings , derr . ErrorCodeNotAvailableCpusetCpus . WithArgs ( hostConfig . CpusetCpus , sysInfo . Cpus )
}
memsAvailable , err := sysInfo . IsCpusetMemsAvailable ( hostConfig . CpusetMems )
if err != nil {
return warnings , derr . ErrorCodeInvalidCpusetMems . WithArgs ( hostConfig . CpusetMems )
}
if ! memsAvailable {
return warnings , derr . ErrorCodeNotAvailableCpusetMems . WithArgs ( hostConfig . CpusetMems , sysInfo . Mems )
}
2015-08-06 07:54:48 -04:00
if hostConfig . BlkioWeight > 0 && ! sysInfo . BlkioWeight {
2015-08-05 10:35:18 -04:00
warnings = append ( warnings , "Your kernel does not support Block I/O weight. Weight discarded." )
logrus . Warnf ( "Your kernel does not support Block I/O weight. Weight discarded." )
hostConfig . BlkioWeight = 0
}
2015-05-15 19:34:26 -04:00
if hostConfig . BlkioWeight > 0 && ( hostConfig . BlkioWeight < 10 || hostConfig . BlkioWeight > 1000 ) {
return warnings , fmt . Errorf ( "Range of blkio weight is from 10 to 1000." )
}
2015-08-06 07:54:48 -04:00
if hostConfig . OomKillDisable && ! sysInfo . OomKillDisable {
2015-05-15 19:34:26 -04:00
hostConfig . OomKillDisable = false
return warnings , fmt . Errorf ( "Your kernel does not support oom kill disable." )
}
2015-08-06 07:55:56 -04:00
2015-08-06 07:54:48 -04:00
if sysInfo . IPv4ForwardingDisabled {
2015-05-15 19:34:26 -04:00
warnings = append ( warnings , "IPv4 forwarding is disabled. Networking will not work." )
logrus . Warnf ( "IPv4 forwarding is disabled. Networking will not work" )
}
return warnings , nil
}
// checkConfigOptions checks for mutually incompatible config options
func checkConfigOptions ( config * Config ) error {
// Check for mutually incompatible config options
if config . Bridge . Iface != "" && config . Bridge . IP != "" {
return fmt . Errorf ( "You specified -b & --bip, mutually exclusive options. Please specify only one." )
}
if ! config . Bridge . EnableIPTables && ! config . Bridge . InterContainerCommunication {
return fmt . Errorf ( "You specified --iptables=false with --icc=false. ICC uses iptables to function. Please set --icc or --iptables to true." )
}
if ! config . Bridge . EnableIPTables && config . Bridge . EnableIPMasq {
config . Bridge . EnableIPMasq = false
}
return nil
}
2015-07-11 15:32:08 -04:00
// checkSystem validates platform-specific requirements
2015-05-15 19:34:26 -04:00
func checkSystem ( ) error {
if os . Geteuid ( ) != 0 {
return fmt . Errorf ( "The Docker daemon needs to be run as root" )
}
2015-09-08 14:40:55 -04:00
return checkKernel ( )
2015-05-15 19:34:26 -04:00
}
// configureKernelSecuritySupport configures and validate security support for the kernel
func configureKernelSecuritySupport ( config * Config , driverName string ) error {
if config . EnableSelinuxSupport {
if selinuxEnabled ( ) {
2015-09-02 15:09:53 -04:00
// As Docker on either btrfs or overlayFS and SELinux are incompatible at present, error on both being enabled
if driverName == "btrfs" || driverName == "overlay" {
return fmt . Errorf ( "SELinux is not supported with the %s graph driver" , driverName )
2015-05-15 19:34:26 -04:00
}
logrus . Debug ( "SELinux enabled successfully" )
} else {
logrus . Warn ( "Docker could not enable SELinux on the host system" )
}
} else {
selinuxSetDisabled ( )
}
return nil
}
// MigrateIfDownlevel is a wrapper for AUFS migration for downlevel
func migrateIfDownlevel ( driver graphdriver . Driver , root string ) error {
return migrateIfAufs ( driver , root )
}
func configureSysInit ( config * Config ) ( string , error ) {
localCopy := filepath . Join ( config . Root , "init" , fmt . Sprintf ( "dockerinit-%s" , dockerversion . VERSION ) )
sysInitPath := utils . DockerInitPath ( localCopy )
if sysInitPath == "" {
return "" , fmt . Errorf ( "Could not locate dockerinit: This usually means docker was built incorrectly. See https://docs.docker.com/contributing/devenvironment for official build instructions." )
}
if sysInitPath != localCopy {
// When we find a suitable dockerinit binary (even if it's our local binary), we copy it into config.Root at localCopy for future use (so that the original can go away without that being a problem, for example during a package upgrade).
if err := os . Mkdir ( filepath . Dir ( localCopy ) , 0700 ) ; err != nil && ! os . IsExist ( err ) {
return "" , err
}
if _ , err := fileutils . CopyFile ( sysInitPath , localCopy ) ; err != nil {
return "" , err
}
if err := os . Chmod ( localCopy , 0700 ) ; err != nil {
return "" , err
}
sysInitPath = localCopy
}
return sysInitPath , nil
}
2015-06-30 13:34:15 -04:00
func isBridgeNetworkDisabled ( config * Config ) bool {
2015-05-15 19:34:26 -04:00
return config . Bridge . Iface == disableNetworkBridge
}
2015-09-21 08:04:36 -04:00
func ( daemon * Daemon ) networkOptions ( dconfig * Config ) ( [ ] nwconfig . Option , error ) {
2015-05-20 08:20:19 -04:00
options := [ ] nwconfig . Option { }
if dconfig == nil {
return options , nil
}
if strings . TrimSpace ( dconfig . DefaultNetwork ) != "" {
dn := strings . Split ( dconfig . DefaultNetwork , ":" )
if len ( dn ) < 2 {
return nil , fmt . Errorf ( "default network daemon config must be of the form NETWORKDRIVER:NETWORKNAME" )
}
options = append ( options , nwconfig . OptionDefaultDriver ( dn [ 0 ] ) )
options = append ( options , nwconfig . OptionDefaultNetwork ( strings . Join ( dn [ 1 : ] , ":" ) ) )
} else {
dd := runconfig . DefaultDaemonNetworkMode ( )
dn := runconfig . DefaultDaemonNetworkMode ( ) . NetworkName ( )
options = append ( options , nwconfig . OptionDefaultDriver ( string ( dd ) ) )
options = append ( options , nwconfig . OptionDefaultNetwork ( dn ) )
}
2015-06-20 20:08:36 -04:00
2015-09-10 19:12:00 -04:00
if strings . TrimSpace ( dconfig . ClusterStore ) != "" {
kv := strings . Split ( dconfig . ClusterStore , "://" )
2015-06-20 20:08:36 -04:00
if len ( kv ) < 2 {
2015-09-24 23:00:05 -04:00
return nil , fmt . Errorf ( "kv store daemon config must be of the form KV-PROVIDER://KV-URL" )
2015-06-20 20:08:36 -04:00
}
options = append ( options , nwconfig . OptionKVProvider ( kv [ 0 ] ) )
2015-09-24 23:00:05 -04:00
options = append ( options , nwconfig . OptionKVProviderURL ( strings . Join ( kv [ 1 : ] , "://" ) ) )
2015-06-20 20:08:36 -04:00
}
2015-09-21 08:04:36 -04:00
if daemon . discoveryWatcher != nil {
options = append ( options , nwconfig . OptionDiscoveryWatcher ( daemon . discoveryWatcher ) )
}
if dconfig . ClusterAdvertise != "" {
options = append ( options , nwconfig . OptionDiscoveryAddress ( dconfig . ClusterAdvertise ) )
}
2015-05-20 08:20:19 -04:00
options = append ( options , nwconfig . OptionLabels ( dconfig . Labels ) )
2015-09-24 23:00:05 -04:00
options = append ( options , driverOptions ( dconfig ) ... )
2015-05-20 08:20:19 -04:00
return options , nil
}
2015-09-21 08:04:36 -04:00
func ( daemon * Daemon ) initNetworkController ( config * Config ) ( libnetwork . NetworkController , error ) {
netOptions , err := daemon . networkOptions ( config )
2015-05-20 08:20:19 -04:00
if err != nil {
return nil , err
}
controller , err := libnetwork . New ( netOptions ... )
2015-05-15 19:34:26 -04:00
if err != nil {
return nil , fmt . Errorf ( "error obtaining controller instance: %v" , err )
}
// Initialize default network on "null"
2015-09-24 23:00:05 -04:00
if _ , err := controller . NewNetwork ( "null" , "none" , libnetwork . NetworkOptionPersist ( false ) ) ; err != nil {
2015-05-15 19:34:26 -04:00
return nil , fmt . Errorf ( "Error creating default \"null\" network: %v" , err )
}
// Initialize default network on "host"
2015-09-24 23:00:05 -04:00
if _ , err := controller . NewNetwork ( "host" , "host" , libnetwork . NetworkOptionPersist ( false ) ) ; err != nil {
2015-05-15 19:34:26 -04:00
return nil , fmt . Errorf ( "Error creating default \"host\" network: %v" , err )
}
2015-06-30 13:34:15 -04:00
if ! config . DisableBridge {
// Initialize default driver "bridge"
if err := initBridgeDriver ( controller , config ) ; err != nil {
return nil , err
}
}
return controller , nil
}
2015-09-24 23:00:05 -04:00
func driverOptions ( config * Config ) [ ] nwconfig . Option {
bridgeConfig := options . Generic {
2015-08-06 07:53:44 -04:00
"EnableIPForwarding" : config . Bridge . EnableIPForward ,
"EnableIPTables" : config . Bridge . EnableIPTables ,
"EnableUserlandProxy" : config . Bridge . EnableUserlandProxy }
2015-09-24 23:00:05 -04:00
bridgeOption := options . Generic { netlabel . GenericData : bridgeConfig }
2015-05-15 19:34:26 -04:00
2015-09-24 23:00:05 -04:00
dOptions := [ ] nwconfig . Option { }
dOptions = append ( dOptions , nwconfig . OptionDriverConfig ( "bridge" , bridgeOption ) )
return dOptions
}
2015-05-15 19:34:26 -04:00
2015-09-24 23:00:05 -04:00
func initBridgeDriver ( controller libnetwork . NetworkController , config * Config ) error {
2015-05-15 19:34:26 -04:00
netOption := options . Generic {
2015-08-06 07:53:44 -04:00
"BridgeName" : config . Bridge . Iface ,
2015-09-24 23:00:05 -04:00
"DefaultBridge" : true ,
2015-08-06 07:53:44 -04:00
"Mtu" : config . Mtu ,
"EnableIPMasquerade" : config . Bridge . EnableIPMasq ,
"EnableICC" : config . Bridge . InterContainerCommunication ,
2015-05-15 19:34:26 -04:00
}
if config . Bridge . IP != "" {
ip , bipNet , err := net . ParseCIDR ( config . Bridge . IP )
if err != nil {
2015-06-30 13:34:15 -04:00
return err
2015-05-15 19:34:26 -04:00
}
bipNet . IP = ip
netOption [ "AddressIPv4" ] = bipNet
}
if config . Bridge . FixedCIDR != "" {
_ , fCIDR , err := net . ParseCIDR ( config . Bridge . FixedCIDR )
if err != nil {
2015-06-30 13:34:15 -04:00
return err
2015-05-15 19:34:26 -04:00
}
netOption [ "FixedCIDR" ] = fCIDR
}
if config . Bridge . FixedCIDRv6 != "" {
_ , fCIDRv6 , err := net . ParseCIDR ( config . Bridge . FixedCIDRv6 )
if err != nil {
2015-06-30 13:34:15 -04:00
return err
2015-05-15 19:34:26 -04:00
}
netOption [ "FixedCIDRv6" ] = fCIDRv6
}
if config . Bridge . DefaultGatewayIPv4 != nil {
netOption [ "DefaultGatewayIPv4" ] = config . Bridge . DefaultGatewayIPv4
}
if config . Bridge . DefaultGatewayIPv6 != nil {
netOption [ "DefaultGatewayIPv6" ] = config . Bridge . DefaultGatewayIPv6
}
// --ip processing
if config . Bridge . DefaultIP != nil {
netOption [ "DefaultBindingIP" ] = config . Bridge . DefaultIP
}
// Initialize default network on "bridge" with the same name
2015-06-30 13:34:15 -04:00
_ , err := controller . NewNetwork ( "bridge" , "bridge" ,
2015-05-15 19:34:26 -04:00
libnetwork . NetworkOptionGeneric ( options . Generic {
netlabel . GenericData : netOption ,
netlabel . EnableIPv6 : config . Bridge . EnableIPv6 ,
2015-09-24 23:00:05 -04:00
} ) ,
libnetwork . NetworkOptionPersist ( false ) )
2015-05-15 19:34:26 -04:00
if err != nil {
2015-06-30 13:34:15 -04:00
return fmt . Errorf ( "Error creating default \"bridge\" network: %v" , err )
2015-05-15 19:34:26 -04:00
}
2015-06-30 13:34:15 -04:00
return nil
2015-05-15 19:34:26 -04:00
}
2015-06-16 14:06:53 -04:00
// setupInitLayer populates a directory with mountpoints suitable
// for bind-mounting dockerinit into the container. The mountpoint is simply an
// empty file at /.dockerinit
//
// This extra layer is used by all containers as the top-most ro layer. It protects
// the container from unwanted side-effects on the rw layer.
func setupInitLayer ( initLayer string ) error {
for pth , typ := range map [ string ] string {
"/dev/pts" : "dir" ,
"/dev/shm" : "dir" ,
"/proc" : "dir" ,
"/sys" : "dir" ,
"/.dockerinit" : "file" ,
"/.dockerenv" : "file" ,
"/etc/resolv.conf" : "file" ,
"/etc/hosts" : "file" ,
"/etc/hostname" : "file" ,
"/dev/console" : "file" ,
"/etc/mtab" : "/proc/mounts" ,
} {
parts := strings . Split ( pth , "/" )
prev := "/"
for _ , p := range parts [ 1 : ] {
prev = filepath . Join ( prev , p )
syscall . Unlink ( filepath . Join ( initLayer , prev ) )
}
if _ , err := os . Stat ( filepath . Join ( initLayer , pth ) ) ; err != nil {
if os . IsNotExist ( err ) {
if err := system . MkdirAll ( filepath . Join ( initLayer , filepath . Dir ( pth ) ) , 0755 ) ; err != nil {
return err
}
switch typ {
case "dir" :
if err := system . MkdirAll ( filepath . Join ( initLayer , pth ) , 0755 ) ; err != nil {
return err
}
case "file" :
f , err := os . OpenFile ( filepath . Join ( initLayer , pth ) , os . O_CREATE , 0755 )
if err != nil {
return err
}
f . Close ( )
default :
if err := os . Symlink ( typ , filepath . Join ( initLayer , pth ) ) ; err != nil {
return err
}
}
} else {
return err
}
}
}
// Layer is ready to use, if it wasn't before.
return nil
}
2015-05-20 08:20:19 -04:00
2015-07-30 17:01:53 -04:00
// registerLinks writes the links to a file.
2015-09-29 13:51:40 -04:00
func ( daemon * Daemon ) registerLinks ( container * Container , hostConfig * runconfig . HostConfig ) error {
2015-06-23 13:13:42 -04:00
if hostConfig == nil || hostConfig . Links == nil {
return nil
}
for _ , l := range hostConfig . Links {
name , alias , err := parsers . ParseLink ( l )
if err != nil {
return err
}
2015-09-29 13:51:40 -04:00
child , err := daemon . Get ( name )
2015-06-23 13:13:42 -04:00
if err != nil {
//An error from daemon.Get() means this name could not be found
return fmt . Errorf ( "Could not get container for %s" , name )
}
for child . hostConfig . NetworkMode . IsContainer ( ) {
parts := strings . SplitN ( string ( child . hostConfig . NetworkMode ) , ":" , 2 )
2015-09-29 13:51:40 -04:00
child , err = daemon . Get ( parts [ 1 ] )
2015-06-23 13:13:42 -04:00
if err != nil {
return fmt . Errorf ( "Could not get container for %s" , parts [ 1 ] )
}
}
if child . hostConfig . NetworkMode . IsHost ( ) {
return runconfig . ErrConflictHostNetworkAndLinks
}
2015-07-30 17:01:53 -04:00
if err := daemon . registerLink ( container , child , alias ) ; err != nil {
2015-06-23 13:13:42 -04:00
return err
}
}
// After we load all the links into the daemon
// set them to nil on the hostconfig
hostConfig . Links = nil
2015-07-30 17:01:53 -04:00
if err := container . writeHostConfig ( ) ; err != nil {
2015-06-23 13:13:42 -04:00
return err
}
return nil
}
2015-07-16 17:14:58 -04:00
func ( daemon * Daemon ) newBaseContainer ( id string ) Container {
return Container {
CommonContainer : CommonContainer {
ID : id ,
State : NewState ( ) ,
execCommands : newExecStore ( ) ,
root : daemon . containerRoot ( id ) ,
} ,
MountPoints : make ( map [ string ] * mountPoint ) ,
Volumes : make ( map [ string ] string ) ,
VolumesRW : make ( map [ string ] bool ) ,
}
}
2015-09-24 17:59:23 -04:00
// getDefaultRouteMtu returns the MTU for the default route's interface.
func getDefaultRouteMtu ( ) ( int , error ) {
routes , err := netlink . RouteList ( nil , 0 )
if err != nil {
return 0 , err
}
for _ , r := range routes {
// a nil Dst means that this is the default route.
if r . Dst == nil {
i , err := net . InterfaceByIndex ( r . LinkIndex )
if err != nil {
continue
}
return i . MTU , nil
}
}
return 0 , errNoDefaultRoute
}