2019-01-12 04:58:27 +00:00
|
|
|
/*
|
|
|
|
Copyright The containerd Authors.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package cni
|
|
|
|
|
|
|
|
import (
|
2019-09-27 21:51:53 +00:00
|
|
|
"context"
|
2019-01-12 04:58:27 +00:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
cnilibrary "github.com/containernetworking/cni/libcni"
|
2019-09-27 21:51:53 +00:00
|
|
|
"github.com/containernetworking/cni/pkg/types"
|
2019-01-12 04:58:27 +00:00
|
|
|
"github.com/containernetworking/cni/pkg/types/current"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
type CNI interface {
|
|
|
|
// Setup setup the network for the namespace
|
2019-09-27 21:51:53 +00:00
|
|
|
Setup(ctx context.Context, id string, path string, opts ...NamespaceOpts) (*CNIResult, error)
|
2019-01-12 04:58:27 +00:00
|
|
|
// Remove tears down the network of the namespace.
|
2019-09-27 21:51:53 +00:00
|
|
|
Remove(ctx context.Context, id string, path string, opts ...NamespaceOpts) error
|
2019-01-12 04:58:27 +00:00
|
|
|
// Load loads the cni network config
|
|
|
|
Load(opts ...CNIOpt) error
|
|
|
|
// Status checks the status of the cni initialization
|
|
|
|
Status() error
|
2019-09-27 21:51:53 +00:00
|
|
|
// GetConfig returns a copy of the CNI plugin configurations as parsed by CNI
|
|
|
|
GetConfig() *ConfigResult
|
|
|
|
}
|
|
|
|
|
|
|
|
type ConfigResult struct {
|
|
|
|
PluginDirs []string
|
|
|
|
PluginConfDir string
|
|
|
|
PluginMaxConfNum int
|
|
|
|
Prefix string
|
|
|
|
Networks []*ConfNetwork
|
|
|
|
}
|
|
|
|
|
|
|
|
type ConfNetwork struct {
|
|
|
|
Config *NetworkConfList
|
|
|
|
IFName string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NetworkConfList is a source bytes to string version of cnilibrary.NetworkConfigList
|
|
|
|
type NetworkConfList struct {
|
|
|
|
Name string
|
|
|
|
CNIVersion string
|
|
|
|
Plugins []*NetworkConf
|
|
|
|
Source string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NetworkConf is a source bytes to string conversion of cnilibrary.NetworkConfig
|
|
|
|
type NetworkConf struct {
|
|
|
|
Network *types.NetConf
|
|
|
|
Source string
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type libcni struct {
|
|
|
|
config
|
|
|
|
|
|
|
|
cniConfig cnilibrary.CNI
|
|
|
|
networkCount int // minimum network plugin configurations needed to initialize cni
|
|
|
|
networks []*Network
|
|
|
|
sync.RWMutex
|
|
|
|
}
|
|
|
|
|
|
|
|
func defaultCNIConfig() *libcni {
|
|
|
|
return &libcni{
|
|
|
|
config: config{
|
2019-09-27 21:51:53 +00:00
|
|
|
pluginDirs: []string{DefaultCNIDir},
|
|
|
|
pluginConfDir: DefaultNetDir,
|
|
|
|
pluginMaxConfNum: DefaultMaxConfNum,
|
|
|
|
prefix: DefaultPrefix,
|
2019-01-12 04:58:27 +00:00
|
|
|
},
|
|
|
|
cniConfig: &cnilibrary.CNIConfig{
|
|
|
|
Path: []string{DefaultCNIDir},
|
|
|
|
},
|
|
|
|
networkCount: 1,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 21:51:53 +00:00
|
|
|
// New creates a new libcni instance.
|
2019-01-12 04:58:27 +00:00
|
|
|
func New(config ...CNIOpt) (CNI, error) {
|
|
|
|
cni := defaultCNIConfig()
|
|
|
|
var err error
|
|
|
|
for _, c := range config {
|
|
|
|
if err = c(cni); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cni, nil
|
|
|
|
}
|
|
|
|
|
2019-09-27 21:51:53 +00:00
|
|
|
// Load loads the latest config from cni config files.
|
2019-01-12 04:58:27 +00:00
|
|
|
func (c *libcni) Load(opts ...CNIOpt) error {
|
|
|
|
var err error
|
|
|
|
c.Lock()
|
|
|
|
defer c.Unlock()
|
|
|
|
// Reset the networks on a load operation to ensure
|
|
|
|
// config happens on a clean slate
|
|
|
|
c.reset()
|
|
|
|
|
|
|
|
for _, o := range opts {
|
|
|
|
if err = o(c); err != nil {
|
|
|
|
return errors.Wrapf(ErrLoad, fmt.Sprintf("cni config load failed: %v", err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-09-27 21:51:53 +00:00
|
|
|
// Status returns the status of CNI initialization.
|
2019-01-12 04:58:27 +00:00
|
|
|
func (c *libcni) Status() error {
|
|
|
|
c.RLock()
|
|
|
|
defer c.RUnlock()
|
2019-09-27 21:51:53 +00:00
|
|
|
if len(c.networks) < c.networkCount {
|
|
|
|
return ErrCNINotInitialized
|
|
|
|
}
|
|
|
|
return nil
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
2019-09-27 21:51:53 +00:00
|
|
|
// Networks returns all the configured networks.
|
|
|
|
// NOTE: Caller MUST NOT modify anything in the returned array.
|
|
|
|
func (c *libcni) Networks() []*Network {
|
2019-01-12 04:58:27 +00:00
|
|
|
c.RLock()
|
|
|
|
defer c.RUnlock()
|
2019-09-27 21:51:53 +00:00
|
|
|
return append([]*Network{}, c.networks...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup setups the network in the namespace
|
|
|
|
func (c *libcni) Setup(ctx context.Context, id string, path string, opts ...NamespaceOpts) (*CNIResult, error) {
|
|
|
|
if err := c.Status(); err != nil {
|
2019-01-12 04:58:27 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
ns, err := newNamespace(id, path, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var results []*current.Result
|
2019-09-27 21:51:53 +00:00
|
|
|
for _, network := range c.Networks() {
|
|
|
|
r, err := network.Attach(ctx, ns)
|
2019-01-12 04:58:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
results = append(results, r)
|
|
|
|
}
|
|
|
|
return c.GetCNIResultFromResults(results)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove removes the network config from the namespace
|
2019-09-27 21:51:53 +00:00
|
|
|
func (c *libcni) Remove(ctx context.Context, id string, path string, opts ...NamespaceOpts) error {
|
|
|
|
if err := c.Status(); err != nil {
|
2019-01-12 04:58:27 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
ns, err := newNamespace(id, path, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-09-27 21:51:53 +00:00
|
|
|
for _, network := range c.Networks() {
|
|
|
|
if err := network.Remove(ctx, ns); err != nil {
|
2019-01-12 04:58:27 +00:00
|
|
|
// Based on CNI spec v0.7.0, empty network namespace is allowed to
|
|
|
|
// do best effort cleanup. However, it is not handled consistently
|
|
|
|
// right now:
|
|
|
|
// https://github.com/containernetworking/plugins/issues/210
|
|
|
|
// TODO(random-liu): Remove the error handling when the issue is
|
|
|
|
// fixed and the CNI spec v0.6.0 support is deprecated.
|
|
|
|
if path == "" && strings.Contains(err.Error(), "no such file or directory") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-09-27 21:51:53 +00:00
|
|
|
// GetConfig returns a copy of the CNI plugin configurations as parsed by CNI
|
|
|
|
func (c *libcni) GetConfig() *ConfigResult {
|
|
|
|
c.RLock()
|
|
|
|
defer c.RUnlock()
|
|
|
|
r := &ConfigResult{
|
|
|
|
PluginDirs: c.config.pluginDirs,
|
|
|
|
PluginConfDir: c.config.pluginConfDir,
|
|
|
|
PluginMaxConfNum: c.config.pluginMaxConfNum,
|
|
|
|
Prefix: c.config.prefix,
|
|
|
|
}
|
|
|
|
for _, network := range c.networks {
|
|
|
|
conf := &NetworkConfList{
|
|
|
|
Name: network.config.Name,
|
|
|
|
CNIVersion: network.config.CNIVersion,
|
|
|
|
Source: string(network.config.Bytes),
|
|
|
|
}
|
|
|
|
for _, plugin := range network.config.Plugins {
|
|
|
|
conf.Plugins = append(conf.Plugins, &NetworkConf{
|
|
|
|
Network: plugin.Network,
|
|
|
|
Source: string(plugin.Bytes),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
r.Networks = append(r.Networks, &ConfNetwork{
|
|
|
|
Config: conf,
|
|
|
|
IFName: network.ifName,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return r
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
2019-09-27 21:51:53 +00:00
|
|
|
func (c *libcni) reset() {
|
|
|
|
c.networks = nil
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|