12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301 |
- /*
- Package libnetwork provides the basic functionality and extension points to
- create network namespaces and allocate interfaces for containers to use.
- networkType := "bridge"
- // Create a new controller instance
- driverOptions := options.Generic{}
- genericOption := make(map[string]interface{})
- genericOption[netlabel.GenericData] = driverOptions
- controller, err := libnetwork.New(config.OptionDriverConfig(networkType, genericOption))
- if err != nil {
- return
- }
- // Create a network for containers to join.
- // NewNetwork accepts Variadic optional arguments that libnetwork and Drivers can make use of
- network, err := controller.NewNetwork(networkType, "network1", "")
- if err != nil {
- return
- }
- // For each new container: allocate IP and interfaces. The returned network
- // settings will be used for container infos (inspect and such), as well as
- // iptables rules for port publishing. This info is contained or accessible
- // from the returned endpoint.
- ep, err := network.CreateEndpoint("Endpoint1")
- if err != nil {
- return
- }
- // Create the sandbox for the container.
- // NewSandbox accepts Variadic optional arguments which libnetwork can use.
- sbx, err := controller.NewSandbox("container1",
- libnetwork.OptionHostname("test"),
- libnetwork.OptionDomainname("docker.io"))
- // A sandbox can join the endpoint via the join api.
- err = ep.Join(sbx)
- if err != nil {
- return
- }
- */
- package libnetwork
- import (
- "fmt"
- "net"
- "path/filepath"
- "runtime"
- "strings"
- "sync"
- "time"
- "github.com/docker/docker/libnetwork/cluster"
- "github.com/docker/docker/libnetwork/config"
- "github.com/docker/docker/libnetwork/datastore"
- "github.com/docker/docker/libnetwork/diagnostic"
- "github.com/docker/docker/libnetwork/discoverapi"
- "github.com/docker/docker/libnetwork/driverapi"
- "github.com/docker/docker/libnetwork/drvregistry"
- "github.com/docker/docker/libnetwork/ipamapi"
- "github.com/docker/docker/libnetwork/netlabel"
- "github.com/docker/docker/libnetwork/options"
- "github.com/docker/docker/libnetwork/osl"
- "github.com/docker/docker/libnetwork/types"
- "github.com/docker/docker/pkg/plugingetter"
- "github.com/docker/docker/pkg/plugins"
- "github.com/docker/docker/pkg/stringid"
- "github.com/moby/locker"
- "github.com/pkg/errors"
- "github.com/sirupsen/logrus"
- )
- // NetworkController provides the interface for controller instance which manages
- // networks.
- type NetworkController interface {
- // ID provides a unique identity for the controller
- ID() string
- // BuiltinDrivers returns list of builtin drivers
- BuiltinDrivers() []string
- // BuiltinIPAMDrivers returns list of builtin ipam drivers
- BuiltinIPAMDrivers() []string
- // Config method returns the bootup configuration for the controller
- Config() config.Config
- // Create a new network. The options parameter carries network specific options.
- NewNetwork(networkType, name string, id string, options ...NetworkOption) (Network, error)
- // Networks returns the list of Network(s) managed by this controller.
- Networks() []Network
- // WalkNetworks uses the provided function to walk the Network(s) managed by this controller.
- WalkNetworks(walker NetworkWalker)
- // NetworkByName returns the Network which has the passed name. If not found, the error ErrNoSuchNetwork is returned.
- NetworkByName(name string) (Network, error)
- // NetworkByID returns the Network which has the passed id. If not found, the error ErrNoSuchNetwork is returned.
- NetworkByID(id string) (Network, error)
- // NewSandbox creates a new network sandbox for the passed container id
- NewSandbox(containerID string, options ...SandboxOption) (Sandbox, error)
- // Sandboxes returns the list of Sandbox(s) managed by this controller.
- Sandboxes() []Sandbox
- // WalkSandboxes uses the provided function to walk the Sandbox(s) managed by this controller.
- WalkSandboxes(walker SandboxWalker)
- // SandboxByID returns the Sandbox which has the passed id. If not found, a types.NotFoundError is returned.
- SandboxByID(id string) (Sandbox, error)
- // SandboxDestroy destroys a sandbox given a container ID
- SandboxDestroy(id string) error
- // Stop network controller
- Stop()
- // ReloadConfiguration updates the controller configuration
- ReloadConfiguration(cfgOptions ...config.Option) error
- // SetClusterProvider sets cluster provider
- SetClusterProvider(provider cluster.Provider)
- // Wait for agent initialization complete in libnetwork controller
- AgentInitWait()
- // Wait for agent to stop if running
- AgentStopWait()
- // SetKeys configures the encryption key for gossip and overlay data path
- SetKeys(keys []*types.EncryptionKey) error
- // StartDiagnostic start the network diagnostic mode
- StartDiagnostic(port int)
- // StopDiagnostic start the network diagnostic mode
- StopDiagnostic()
- // IsDiagnosticEnabled returns true if the diagnostic is enabled
- IsDiagnosticEnabled() bool
- }
- // NetworkWalker is a client provided function which will be used to walk the Networks.
- // When the function returns true, the walk will stop.
- type NetworkWalker func(nw Network) bool
- // SandboxWalker is a client provided function which will be used to walk the Sandboxes.
- // When the function returns true, the walk will stop.
- type SandboxWalker func(sb Sandbox) bool
- type sandboxTable map[string]*sandbox
- type controller struct {
- id string
- drvRegistry *drvregistry.DrvRegistry
- sandboxes sandboxTable
- cfg *config.Config
- stores []datastore.DataStore
- extKeyListener net.Listener
- watchCh chan *endpoint
- unWatchCh chan *endpoint
- svcRecords map[string]svcInfo
- nmap map[string]*netWatch
- serviceBindings map[serviceKey]*service
- defOsSbox osl.Sandbox
- ingressSandbox *sandbox
- sboxOnce sync.Once
- agent *agent
- networkLocker *locker.Locker
- agentInitDone chan struct{}
- agentStopDone chan struct{}
- keys []*types.EncryptionKey
- DiagnosticServer *diagnostic.Server
- sync.Mutex
- }
- type initializer struct {
- fn drvregistry.InitFunc
- ntype string
- }
- // New creates a new instance of network controller.
- func New(cfgOptions ...config.Option) (NetworkController, error) {
- c := &controller{
- id: stringid.GenerateRandomID(),
- cfg: config.New(cfgOptions...),
- sandboxes: sandboxTable{},
- svcRecords: make(map[string]svcInfo),
- serviceBindings: make(map[serviceKey]*service),
- agentInitDone: make(chan struct{}),
- networkLocker: locker.New(),
- DiagnosticServer: diagnostic.New(),
- }
- c.DiagnosticServer.Init()
- if err := c.initStores(); err != nil {
- return nil, err
- }
- drvRegistry, err := drvregistry.New(c.getStore(datastore.LocalScope), c.getStore(datastore.GlobalScope), c.RegisterDriver, nil, c.cfg.PluginGetter)
- if err != nil {
- return nil, err
- }
- for _, i := range getInitializers() {
- var dcfg map[string]interface{}
- // External plugins don't need config passed through daemon. They can
- // bootstrap themselves
- if i.ntype != "remote" {
- dcfg = c.makeDriverConfig(i.ntype)
- }
- if err := drvRegistry.AddDriver(i.ntype, i.fn, dcfg); err != nil {
- return nil, err
- }
- }
- if err = initIPAMDrivers(drvRegistry, nil, c.getStore(datastore.GlobalScope), c.cfg.DefaultAddressPool); err != nil {
- return nil, err
- }
- c.drvRegistry = drvRegistry
- c.WalkNetworks(populateSpecial)
- // Reserve pools first before doing cleanup. Otherwise the
- // cleanups of endpoint/network and sandbox below will
- // generate many unnecessary warnings
- c.reservePools()
- // Cleanup resources
- c.sandboxCleanup(c.cfg.ActiveSandboxes)
- c.cleanupLocalEndpoints()
- c.networkCleanup()
- if err := c.startExternalKeyListener(); err != nil {
- return nil, err
- }
- setupArrangeUserFilterRule(c)
- return c, nil
- }
- func (c *controller) SetClusterProvider(provider cluster.Provider) {
- var sameProvider bool
- c.Lock()
- // Avoids to spawn multiple goroutine for the same cluster provider
- if c.cfg.ClusterProvider == provider {
- // If the cluster provider is already set, there is already a go routine spawned
- // that is listening for events, so nothing to do here
- sameProvider = true
- } else {
- c.cfg.ClusterProvider = provider
- }
- c.Unlock()
- if provider == nil || sameProvider {
- return
- }
- // We don't want to spawn a new go routine if the previous one did not exit yet
- c.AgentStopWait()
- go c.clusterAgentInit()
- }
- // libnetwork side of agent depends on the keys. On the first receipt of
- // keys setup the agent. For subsequent key set handle the key change
- func (c *controller) SetKeys(keys []*types.EncryptionKey) error {
- subsysKeys := make(map[string]int)
- for _, key := range keys {
- if key.Subsystem != subsysGossip &&
- key.Subsystem != subsysIPSec {
- return fmt.Errorf("key received for unrecognized subsystem")
- }
- subsysKeys[key.Subsystem]++
- }
- for s, count := range subsysKeys {
- if count != keyringSize {
- return fmt.Errorf("incorrect number of keys for subsystem %v", s)
- }
- }
- if c.getAgent() == nil {
- c.Lock()
- c.keys = keys
- c.Unlock()
- return nil
- }
- return c.handleKeyChange(keys)
- }
- func (c *controller) getAgent() *agent {
- c.Lock()
- defer c.Unlock()
- return c.agent
- }
- func (c *controller) clusterAgentInit() {
- clusterProvider := c.cfg.ClusterProvider
- var keysAvailable bool
- for {
- eventType := <-clusterProvider.ListenClusterEvents()
- // The events: EventSocketChange, EventNodeReady and EventNetworkKeysAvailable are not ordered
- // when all the condition for the agent initialization are met then proceed with it
- switch eventType {
- case cluster.EventNetworkKeysAvailable:
- // Validates that the keys are actually available before starting the initialization
- // This will handle old spurious messages left on the channel
- c.Lock()
- keysAvailable = c.keys != nil
- c.Unlock()
- fallthrough
- case cluster.EventSocketChange, cluster.EventNodeReady:
- if keysAvailable && !c.isDistributedControl() {
- c.agentOperationStart()
- if err := c.agentSetup(clusterProvider); err != nil {
- c.agentStopComplete()
- } else {
- c.agentInitComplete()
- }
- }
- case cluster.EventNodeLeave:
- c.agentOperationStart()
- c.Lock()
- c.keys = nil
- c.Unlock()
- // We are leaving the cluster. Make sure we
- // close the gossip so that we stop all
- // incoming gossip updates before cleaning up
- // any remaining service bindings. But before
- // deleting the networks since the networks
- // should still be present when cleaning up
- // service bindings
- c.agentClose()
- c.cleanupServiceDiscovery("")
- c.cleanupServiceBindings("")
- c.agentStopComplete()
- return
- }
- }
- }
- // AgentInitWait waits for agent initialization to be completed in the controller.
- func (c *controller) AgentInitWait() {
- c.Lock()
- agentInitDone := c.agentInitDone
- c.Unlock()
- if agentInitDone != nil {
- <-agentInitDone
- }
- }
- // AgentStopWait waits for the Agent stop to be completed in the controller
- func (c *controller) AgentStopWait() {
- c.Lock()
- agentStopDone := c.agentStopDone
- c.Unlock()
- if agentStopDone != nil {
- <-agentStopDone
- }
- }
- // agentOperationStart marks the start of an Agent Init or Agent Stop
- func (c *controller) agentOperationStart() {
- c.Lock()
- if c.agentInitDone == nil {
- c.agentInitDone = make(chan struct{})
- }
- if c.agentStopDone == nil {
- c.agentStopDone = make(chan struct{})
- }
- c.Unlock()
- }
- // agentInitComplete notifies the successful completion of the Agent initialization
- func (c *controller) agentInitComplete() {
- c.Lock()
- if c.agentInitDone != nil {
- close(c.agentInitDone)
- c.agentInitDone = nil
- }
- c.Unlock()
- }
- // agentStopComplete notifies the successful completion of the Agent stop
- func (c *controller) agentStopComplete() {
- c.Lock()
- if c.agentStopDone != nil {
- close(c.agentStopDone)
- c.agentStopDone = nil
- }
- c.Unlock()
- }
- func (c *controller) makeDriverConfig(ntype string) map[string]interface{} {
- if c.cfg == nil {
- return nil
- }
- cfg := map[string]interface{}{}
- for _, label := range c.cfg.Labels {
- key, val, _ := strings.Cut(label, "=")
- if !strings.HasPrefix(key, netlabel.DriverPrefix+"."+ntype) {
- continue
- }
- cfg[key] = val
- }
- drvCfg, ok := c.cfg.DriverCfg[ntype]
- if ok {
- for k, v := range drvCfg.(map[string]interface{}) {
- cfg[k] = v
- }
- }
- for k, v := range c.cfg.Scopes {
- if !v.IsValid() {
- continue
- }
- cfg[netlabel.MakeKVClient(k)] = discoverapi.DatastoreConfigData{
- Scope: k,
- Provider: v.Client.Provider,
- Address: v.Client.Address,
- Config: v.Client.Config,
- }
- }
- return cfg
- }
- var procReloadConfig = make(chan (bool), 1)
- func (c *controller) ReloadConfiguration(cfgOptions ...config.Option) error {
- procReloadConfig <- true
- defer func() { <-procReloadConfig }()
- // For now we accept the configuration reload only as a mean to provide a global store config after boot.
- // Refuse the configuration if it alters an existing datastore client configuration.
- update := false
- cfg := config.New(cfgOptions...)
- for s := range c.cfg.Scopes {
- if _, ok := cfg.Scopes[s]; !ok {
- return types.ForbiddenErrorf("cannot accept new configuration because it removes an existing datastore client")
- }
- }
- for s, nSCfg := range cfg.Scopes {
- if eSCfg, ok := c.cfg.Scopes[s]; ok {
- if eSCfg.Client.Provider != nSCfg.Client.Provider ||
- eSCfg.Client.Address != nSCfg.Client.Address {
- return types.ForbiddenErrorf("cannot accept new configuration because it modifies an existing datastore client")
- }
- } else {
- if err := c.initScopedStore(s, nSCfg); err != nil {
- return err
- }
- update = true
- }
- }
- if !update {
- return nil
- }
- c.Lock()
- c.cfg = cfg
- c.Unlock()
- var dsConfig *discoverapi.DatastoreConfigData
- for scope, sCfg := range cfg.Scopes {
- if scope == datastore.LocalScope || !sCfg.IsValid() {
- continue
- }
- dsConfig = &discoverapi.DatastoreConfigData{
- Scope: scope,
- Provider: sCfg.Client.Provider,
- Address: sCfg.Client.Address,
- Config: sCfg.Client.Config,
- }
- break
- }
- if dsConfig == nil {
- return nil
- }
- c.drvRegistry.WalkIPAMs(func(name string, driver ipamapi.Ipam, cap *ipamapi.Capability) bool {
- err := driver.DiscoverNew(discoverapi.DatastoreConfig, *dsConfig)
- if err != nil {
- logrus.Errorf("Failed to set datastore in driver %s: %v", name, err)
- }
- return false
- })
- c.drvRegistry.WalkDrivers(func(name string, driver driverapi.Driver, capability driverapi.Capability) bool {
- err := driver.DiscoverNew(discoverapi.DatastoreConfig, *dsConfig)
- if err != nil {
- logrus.Errorf("Failed to set datastore in driver %s: %v", name, err)
- }
- return false
- })
- return nil
- }
- func (c *controller) ID() string {
- return c.id
- }
- func (c *controller) BuiltinDrivers() []string {
- drivers := []string{}
- c.drvRegistry.WalkDrivers(func(name string, driver driverapi.Driver, capability driverapi.Capability) bool {
- if driver.IsBuiltIn() {
- drivers = append(drivers, name)
- }
- return false
- })
- return drivers
- }
- func (c *controller) BuiltinIPAMDrivers() []string {
- drivers := []string{}
- c.drvRegistry.WalkIPAMs(func(name string, driver ipamapi.Ipam, cap *ipamapi.Capability) bool {
- if driver.IsBuiltIn() {
- drivers = append(drivers, name)
- }
- return false
- })
- return drivers
- }
- func (c *controller) processNodeDiscovery(nodes []net.IP, add bool) {
- c.drvRegistry.WalkDrivers(func(name string, driver driverapi.Driver, capability driverapi.Capability) bool {
- c.pushNodeDiscovery(driver, capability, nodes, add)
- return false
- })
- }
- func (c *controller) pushNodeDiscovery(d driverapi.Driver, cap driverapi.Capability, nodes []net.IP, add bool) {
- var self net.IP
- // try swarm-mode config
- if agent := c.getAgent(); agent != nil {
- self = net.ParseIP(agent.advertiseAddr)
- }
- if d == nil || cap.ConnectivityScope != datastore.GlobalScope || nodes == nil {
- return
- }
- for _, node := range nodes {
- nodeData := discoverapi.NodeDiscoveryData{Address: node.String(), Self: node.Equal(self)}
- var err error
- if add {
- err = d.DiscoverNew(discoverapi.NodeDiscovery, nodeData)
- } else {
- err = d.DiscoverDelete(discoverapi.NodeDiscovery, nodeData)
- }
- if err != nil {
- logrus.Debugf("discovery notification error: %v", err)
- }
- }
- }
- func (c *controller) Config() config.Config {
- c.Lock()
- defer c.Unlock()
- if c.cfg == nil {
- return config.Config{}
- }
- return *c.cfg
- }
- func (c *controller) isManager() bool {
- c.Lock()
- defer c.Unlock()
- if c.cfg == nil || c.cfg.ClusterProvider == nil {
- return false
- }
- return c.cfg.ClusterProvider.IsManager()
- }
- func (c *controller) isAgent() bool {
- c.Lock()
- defer c.Unlock()
- if c.cfg == nil || c.cfg.ClusterProvider == nil {
- return false
- }
- return c.cfg.ClusterProvider.IsAgent()
- }
- func (c *controller) isDistributedControl() bool {
- return !c.isManager() && !c.isAgent()
- }
- func (c *controller) GetPluginGetter() plugingetter.PluginGetter {
- return c.drvRegistry.GetPluginGetter()
- }
- func (c *controller) RegisterDriver(networkType string, driver driverapi.Driver, capability driverapi.Capability) error {
- c.agentDriverNotify(driver)
- return nil
- }
- // XXX This should be made driver agnostic. See comment below.
- const overlayDSROptionString = "dsr"
- // NewNetwork creates a new network of the specified network type. The options
- // are network specific and modeled in a generic way.
- func (c *controller) NewNetwork(networkType, name string, id string, options ...NetworkOption) (Network, error) {
- var (
- caps *driverapi.Capability
- err error
- t *network
- skipCfgEpCount bool
- )
- if id != "" {
- c.networkLocker.Lock(id)
- defer c.networkLocker.Unlock(id) //nolint:errcheck
- if _, err = c.NetworkByID(id); err == nil {
- return nil, NetworkNameError(id)
- }
- }
- if !config.IsValidName(name) {
- return nil, ErrInvalidName(name)
- }
- if id == "" {
- id = stringid.GenerateRandomID()
- }
- defaultIpam := defaultIpamForNetworkType(networkType)
- // Construct the network object
- nw := &network{
- name: name,
- networkType: networkType,
- generic: map[string]interface{}{netlabel.GenericData: make(map[string]string)},
- ipamType: defaultIpam,
- id: id,
- created: time.Now(),
- ctrlr: c,
- persist: true,
- drvOnce: &sync.Once{},
- loadBalancerMode: loadBalancerModeDefault,
- }
- nw.processOptions(options...)
- if err = nw.validateConfiguration(); err != nil {
- return nil, err
- }
- // Reset network types, force local scope and skip allocation and
- // plumbing for configuration networks. Reset of the config-only
- // network drivers is needed so that this special network is not
- // usable by old engine versions.
- if nw.configOnly {
- nw.scope = datastore.LocalScope
- nw.networkType = "null"
- goto addToStore
- }
- _, caps, err = nw.resolveDriver(nw.networkType, true)
- if err != nil {
- return nil, err
- }
- if nw.scope == datastore.LocalScope && caps.DataScope == datastore.GlobalScope {
- return nil, types.ForbiddenErrorf("cannot downgrade network scope for %s networks", networkType)
- }
- if nw.ingress && caps.DataScope != datastore.GlobalScope {
- return nil, types.ForbiddenErrorf("Ingress network can only be global scope network")
- }
- // At this point the network scope is still unknown if not set by user
- if (caps.DataScope == datastore.GlobalScope || nw.scope == datastore.SwarmScope) &&
- !c.isDistributedControl() && !nw.dynamic {
- if c.isManager() {
- // For non-distributed controlled environment, globalscoped non-dynamic networks are redirected to Manager
- return nil, ManagerRedirectError(name)
- }
- return nil, types.ForbiddenErrorf("Cannot create a multi-host network from a worker node. Please create the network from a manager node.")
- }
- if nw.scope == datastore.SwarmScope && c.isDistributedControl() {
- return nil, types.ForbiddenErrorf("cannot create a swarm scoped network when swarm is not active")
- }
- // Make sure we have a driver available for this network type
- // before we allocate anything.
- if _, err := nw.driver(true); err != nil {
- return nil, err
- }
- // From this point on, we need the network specific configuration,
- // which may come from a configuration-only network
- if nw.configFrom != "" {
- t, err = c.getConfigNetwork(nw.configFrom)
- if err != nil {
- return nil, types.NotFoundErrorf("configuration network %q does not exist", nw.configFrom)
- }
- if err = t.applyConfigurationTo(nw); err != nil {
- return nil, types.InternalErrorf("Failed to apply configuration: %v", err)
- }
- nw.generic[netlabel.Internal] = nw.internal
- defer func() {
- if err == nil && !skipCfgEpCount {
- if err := t.getEpCnt().IncEndpointCnt(); err != nil {
- logrus.Warnf("Failed to update reference count for configuration network %q on creation of network %q: %v",
- t.Name(), nw.Name(), err)
- }
- }
- }()
- }
- err = nw.ipamAllocate()
- if err != nil {
- return nil, err
- }
- defer func() {
- if err != nil {
- nw.ipamRelease()
- }
- }()
- err = c.addNetwork(nw)
- if err != nil {
- if _, ok := err.(types.MaskableError); ok { //nolint:gosimple
- // This error can be ignored and set this boolean
- // value to skip a refcount increment for configOnly networks
- skipCfgEpCount = true
- } else {
- return nil, err
- }
- }
- defer func() {
- if err != nil {
- if e := nw.deleteNetwork(); e != nil {
- logrus.Warnf("couldn't roll back driver network on network %s creation failure: %v", nw.name, err)
- }
- }
- }()
- // XXX If the driver type is "overlay" check the options for DSR
- // being set. If so, set the network's load balancing mode to DSR.
- // This should really be done in a network option, but due to
- // time pressure to get this in without adding changes to moby,
- // swarm and CLI, it is being implemented as a driver-specific
- // option. Unfortunately, drivers can't influence the core
- // "libnetwork.network" data type. Hence we need this hack code
- // to implement in this manner.
- if gval, ok := nw.generic[netlabel.GenericData]; ok && nw.networkType == "overlay" {
- optMap := gval.(map[string]string)
- if _, ok := optMap[overlayDSROptionString]; ok {
- nw.loadBalancerMode = loadBalancerModeDSR
- }
- }
- addToStore:
- // First store the endpoint count, then the network. To avoid to
- // end up with a datastore containing a network and not an epCnt,
- // in case of an ungraceful shutdown during this function call.
- epCnt := &endpointCnt{n: nw}
- if err = c.updateToStore(epCnt); err != nil {
- return nil, err
- }
- defer func() {
- if err != nil {
- if e := c.deleteFromStore(epCnt); e != nil {
- logrus.Warnf("could not rollback from store, epCnt %v on failure (%v): %v", epCnt, err, e)
- }
- }
- }()
- nw.epCnt = epCnt
- if err = c.updateToStore(nw); err != nil {
- return nil, err
- }
- defer func() {
- if err != nil {
- if e := c.deleteFromStore(nw); e != nil {
- logrus.Warnf("could not rollback from store, network %v on failure (%v): %v", nw, err, e)
- }
- }
- }()
- if nw.configOnly {
- return nw, nil
- }
- joinCluster(nw)
- defer func() {
- if err != nil {
- nw.cancelDriverWatches()
- if e := nw.leaveCluster(); e != nil {
- logrus.Warnf("Failed to leave agent cluster on network %s on failure (%v): %v", nw.name, err, e)
- }
- }
- }()
- if nw.hasLoadBalancerEndpoint() {
- if err = nw.createLoadBalancerSandbox(); err != nil {
- return nil, err
- }
- }
- if !c.isDistributedControl() {
- c.Lock()
- arrangeIngressFilterRule()
- c.Unlock()
- }
- arrangeUserFilterRule()
- return nw, nil
- }
- var joinCluster NetworkWalker = func(nw Network) bool {
- n := nw.(*network)
- if n.configOnly {
- return false
- }
- if err := n.joinCluster(); err != nil {
- logrus.Errorf("Failed to join network %s (%s) into agent cluster: %v", n.Name(), n.ID(), err)
- }
- n.addDriverWatches()
- return false
- }
- func (c *controller) reservePools() {
- networks, err := c.getNetworksForScope(datastore.LocalScope)
- if err != nil {
- logrus.Warnf("Could not retrieve networks from local store during ipam allocation for existing networks: %v", err)
- return
- }
- for _, n := range networks {
- if n.configOnly {
- continue
- }
- if !doReplayPoolReserve(n) {
- continue
- }
- // Construct pseudo configs for the auto IP case
- autoIPv4 := (len(n.ipamV4Config) == 0 || (len(n.ipamV4Config) == 1 && n.ipamV4Config[0].PreferredPool == "")) && len(n.ipamV4Info) > 0
- autoIPv6 := (len(n.ipamV6Config) == 0 || (len(n.ipamV6Config) == 1 && n.ipamV6Config[0].PreferredPool == "")) && len(n.ipamV6Info) > 0
- if autoIPv4 {
- n.ipamV4Config = []*IpamConf{{PreferredPool: n.ipamV4Info[0].Pool.String()}}
- }
- if n.enableIPv6 && autoIPv6 {
- n.ipamV6Config = []*IpamConf{{PreferredPool: n.ipamV6Info[0].Pool.String()}}
- }
- // Account current network gateways
- for i, cfg := range n.ipamV4Config {
- if cfg.Gateway == "" && n.ipamV4Info[i].Gateway != nil {
- cfg.Gateway = n.ipamV4Info[i].Gateway.IP.String()
- }
- }
- if n.enableIPv6 {
- for i, cfg := range n.ipamV6Config {
- if cfg.Gateway == "" && n.ipamV6Info[i].Gateway != nil {
- cfg.Gateway = n.ipamV6Info[i].Gateway.IP.String()
- }
- }
- }
- // Reserve pools
- if err := n.ipamAllocate(); err != nil {
- logrus.Warnf("Failed to allocate ipam pool(s) for network %q (%s): %v", n.Name(), n.ID(), err)
- }
- // Reserve existing endpoints' addresses
- ipam, _, err := n.getController().getIPAMDriver(n.ipamType)
- if err != nil {
- logrus.Warnf("Failed to retrieve ipam driver for network %q (%s) during address reservation", n.Name(), n.ID())
- continue
- }
- epl, err := n.getEndpointsFromStore()
- if err != nil {
- logrus.Warnf("Failed to retrieve list of current endpoints on network %q (%s)", n.Name(), n.ID())
- continue
- }
- for _, ep := range epl {
- if ep.Iface() == nil {
- logrus.Warnf("endpoint interface is empty for %q (%s)", ep.Name(), ep.ID())
- continue
- }
- if err := ep.assignAddress(ipam, true, ep.Iface().AddressIPv6() != nil); err != nil {
- logrus.Warnf("Failed to reserve current address for endpoint %q (%s) on network %q (%s)",
- ep.Name(), ep.ID(), n.Name(), n.ID())
- }
- }
- }
- }
- func doReplayPoolReserve(n *network) bool {
- _, caps, err := n.getController().getIPAMDriver(n.ipamType)
- if err != nil {
- logrus.Warnf("Failed to retrieve ipam driver for network %q (%s): %v", n.Name(), n.ID(), err)
- return false
- }
- return caps.RequiresRequestReplay
- }
- func (c *controller) addNetwork(n *network) error {
- d, err := n.driver(true)
- if err != nil {
- return err
- }
- // Create the network
- if err := d.CreateNetwork(n.id, n.generic, n, n.getIPData(4), n.getIPData(6)); err != nil {
- return err
- }
- n.startResolver()
- return nil
- }
- func (c *controller) Networks() []Network {
- var list []Network
- for _, n := range c.getNetworksFromStore() {
- if n.inDelete {
- continue
- }
- list = append(list, n)
- }
- return list
- }
- func (c *controller) WalkNetworks(walker NetworkWalker) {
- for _, n := range c.Networks() {
- if walker(n) {
- return
- }
- }
- }
- func (c *controller) NetworkByName(name string) (Network, error) {
- if name == "" {
- return nil, ErrInvalidName(name)
- }
- var n Network
- s := func(current Network) bool {
- if current.Name() == name {
- n = current
- return true
- }
- return false
- }
- c.WalkNetworks(s)
- if n == nil {
- return nil, ErrNoSuchNetwork(name)
- }
- return n, nil
- }
- func (c *controller) NetworkByID(id string) (Network, error) {
- if id == "" {
- return nil, ErrInvalidID(id)
- }
- n, err := c.getNetworkFromStore(id)
- if err != nil {
- return nil, ErrNoSuchNetwork(id)
- }
- return n, nil
- }
- // NewSandbox creates a new sandbox for the passed container id
- func (c *controller) NewSandbox(containerID string, options ...SandboxOption) (Sandbox, error) {
- if containerID == "" {
- return nil, types.BadRequestErrorf("invalid container ID")
- }
- var sb *sandbox
- c.Lock()
- for _, s := range c.sandboxes {
- if s.containerID == containerID {
- // If not a stub, then we already have a complete sandbox.
- if !s.isStub {
- sbID := s.ID()
- c.Unlock()
- return nil, types.ForbiddenErrorf("container %s is already present in sandbox %s", containerID, sbID)
- }
- // We already have a stub sandbox from the
- // store. Make use of it so that we don't lose
- // the endpoints from store but reset the
- // isStub flag.
- sb = s
- sb.isStub = false
- break
- }
- }
- c.Unlock()
- sandboxID := stringid.GenerateRandomID()
- if runtime.GOOS == "windows" {
- sandboxID = containerID
- }
- // Create sandbox and process options first. Key generation depends on an option
- if sb == nil {
- sb = &sandbox{
- id: sandboxID,
- containerID: containerID,
- endpoints: []*endpoint{},
- epPriority: map[string]int{},
- populatedEndpoints: map[string]struct{}{},
- config: containerConfig{},
- controller: c,
- extDNS: []extDNSEntry{},
- }
- }
- sb.processOptions(options...)
- c.Lock()
- if sb.ingress && c.ingressSandbox != nil {
- c.Unlock()
- return nil, types.ForbiddenErrorf("ingress sandbox already present")
- }
- if sb.ingress {
- c.ingressSandbox = sb
- sb.config.hostsPath = filepath.Join(c.cfg.DataDir, "/network/files/hosts")
- sb.config.resolvConfPath = filepath.Join(c.cfg.DataDir, "/network/files/resolv.conf")
- sb.id = "ingress_sbox"
- } else if sb.loadBalancerNID != "" {
- sb.id = "lb_" + sb.loadBalancerNID
- }
- c.Unlock()
- var err error
- defer func() {
- if err != nil {
- c.Lock()
- if sb.ingress {
- c.ingressSandbox = nil
- }
- c.Unlock()
- }
- }()
- if err = sb.setupResolutionFiles(); err != nil {
- return nil, err
- }
- if sb.config.useDefaultSandBox {
- c.sboxOnce.Do(func() {
- c.defOsSbox, err = osl.NewSandbox(sb.Key(), false, false)
- })
- if err != nil {
- c.sboxOnce = sync.Once{}
- return nil, fmt.Errorf("failed to create default sandbox: %v", err)
- }
- sb.osSbox = c.defOsSbox
- }
- if sb.osSbox == nil && !sb.config.useExternalKey {
- if sb.osSbox, err = osl.NewSandbox(sb.Key(), !sb.config.useDefaultSandBox, false); err != nil {
- return nil, fmt.Errorf("failed to create new osl sandbox: %v", err)
- }
- }
- if sb.osSbox != nil {
- // Apply operating specific knobs on the load balancer sandbox
- err := sb.osSbox.InvokeFunc(func() {
- sb.osSbox.ApplyOSTweaks(sb.oslTypes)
- })
- if err != nil {
- logrus.Errorf("Failed to apply performance tuning sysctls to the sandbox: %v", err)
- }
- // Keep this just so performance is not changed
- sb.osSbox.ApplyOSTweaks(sb.oslTypes)
- }
- c.Lock()
- c.sandboxes[sb.id] = sb
- c.Unlock()
- defer func() {
- if err != nil {
- c.Lock()
- delete(c.sandboxes, sb.id)
- c.Unlock()
- }
- }()
- err = sb.storeUpdate()
- if err != nil {
- return nil, fmt.Errorf("failed to update the store state of sandbox: %v", err)
- }
- return sb, nil
- }
- func (c *controller) Sandboxes() []Sandbox {
- c.Lock()
- defer c.Unlock()
- list := make([]Sandbox, 0, len(c.sandboxes))
- for _, s := range c.sandboxes {
- // Hide stub sandboxes from libnetwork users
- if s.isStub {
- continue
- }
- list = append(list, s)
- }
- return list
- }
- func (c *controller) WalkSandboxes(walker SandboxWalker) {
- for _, sb := range c.Sandboxes() {
- if walker(sb) {
- return
- }
- }
- }
- func (c *controller) SandboxByID(id string) (Sandbox, error) {
- if id == "" {
- return nil, ErrInvalidID(id)
- }
- c.Lock()
- s, ok := c.sandboxes[id]
- c.Unlock()
- if !ok {
- return nil, types.NotFoundErrorf("sandbox %s not found", id)
- }
- return s, nil
- }
- // SandboxDestroy destroys a sandbox given a container ID
- func (c *controller) SandboxDestroy(id string) error {
- var sb *sandbox
- c.Lock()
- for _, s := range c.sandboxes {
- if s.containerID == id {
- sb = s
- break
- }
- }
- c.Unlock()
- // It is not an error if sandbox is not available
- if sb == nil {
- return nil
- }
- return sb.Delete()
- }
- // SandboxContainerWalker returns a Sandbox Walker function which looks for an existing Sandbox with the passed containerID
- func SandboxContainerWalker(out *Sandbox, containerID string) SandboxWalker {
- return func(sb Sandbox) bool {
- if sb.ContainerID() == containerID {
- *out = sb
- return true
- }
- return false
- }
- }
- // SandboxKeyWalker returns a Sandbox Walker function which looks for an existing Sandbox with the passed key
- func SandboxKeyWalker(out *Sandbox, key string) SandboxWalker {
- return func(sb Sandbox) bool {
- if sb.Key() == key {
- *out = sb
- return true
- }
- return false
- }
- }
- func (c *controller) loadDriver(networkType string) error {
- var err error
- if pg := c.GetPluginGetter(); pg != nil {
- _, err = pg.Get(networkType, driverapi.NetworkPluginEndpointType, plugingetter.Lookup)
- } else {
- _, err = plugins.Get(networkType, driverapi.NetworkPluginEndpointType)
- }
- if err != nil {
- if errors.Cause(err) == plugins.ErrNotFound {
- return types.NotFoundErrorf(err.Error())
- }
- return err
- }
- return nil
- }
- func (c *controller) loadIPAMDriver(name string) error {
- var err error
- if pg := c.GetPluginGetter(); pg != nil {
- _, err = pg.Get(name, ipamapi.PluginEndpointType, plugingetter.Lookup)
- } else {
- _, err = plugins.Get(name, ipamapi.PluginEndpointType)
- }
- if err != nil {
- if errors.Cause(err) == plugins.ErrNotFound {
- return types.NotFoundErrorf(err.Error())
- }
- return err
- }
- return nil
- }
- func (c *controller) getIPAMDriver(name string) (ipamapi.Ipam, *ipamapi.Capability, error) {
- id, cap := c.drvRegistry.IPAM(name)
- if id == nil {
- // Might be a plugin name. Try loading it
- if err := c.loadIPAMDriver(name); err != nil {
- return nil, nil, err
- }
- // Now that we resolved the plugin, try again looking up the registry
- id, cap = c.drvRegistry.IPAM(name)
- if id == nil {
- return nil, nil, types.BadRequestErrorf("invalid ipam driver: %q", name)
- }
- }
- return id, cap, nil
- }
- func (c *controller) Stop() {
- c.closeStores()
- c.stopExternalKeyListener()
- osl.GC()
- }
- // StartDiagnostic start the network dias mode
- func (c *controller) StartDiagnostic(port int) {
- c.Lock()
- if !c.DiagnosticServer.IsDiagnosticEnabled() {
- c.DiagnosticServer.EnableDiagnostic("127.0.0.1", port)
- }
- c.Unlock()
- }
- // StopDiagnostic start the network dias mode
- func (c *controller) StopDiagnostic() {
- c.Lock()
- if c.DiagnosticServer.IsDiagnosticEnabled() {
- c.DiagnosticServer.DisableDiagnostic()
- }
- c.Unlock()
- }
- // IsDiagnosticEnabled returns true if the dias is enabled
- func (c *controller) IsDiagnosticEnabled() bool {
- c.Lock()
- defer c.Unlock()
- return c.DiagnosticServer.IsDiagnosticEnabled()
- }
- func (c *controller) iptablesEnabled() bool {
- c.Lock()
- defer c.Unlock()
- if c.cfg == nil {
- return false
- }
- // parse map cfg["bridge"]["generic"]["EnableIPTable"]
- cfgBridge, ok := c.cfg.DriverCfg["bridge"].(map[string]interface{})
- if !ok {
- return false
- }
- cfgGeneric, ok := cfgBridge[netlabel.GenericData].(options.Generic)
- if !ok {
- return false
- }
- enabled, ok := cfgGeneric["EnableIPTables"].(bool)
- if !ok {
- // unless user explicitly stated, assume iptable is enabled
- enabled = true
- }
- return enabled
- }
|