// Copyright 2018 CNI 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 main import ( "crypto/sha1" "encoding/json" "errors" "fmt" "github.com/containernetworking/cni/pkg/skel" "github.com/containernetworking/cni/pkg/types" "github.com/containernetworking/cni/pkg/types/current" "github.com/containernetworking/cni/pkg/version" "github.com/containernetworking/plugins/pkg/ip" "github.com/vishvananda/netlink" ) // BandwidthEntry corresponds to a single entry in the bandwidth argument, // see CONVENTIONS.md type BandwidthEntry struct { IngressRate int `json:"ingressRate"` //Bandwidth rate in bps for traffic through container. 0 for no limit. If ingressRate is set, ingressBurst must also be set IngressBurst int `json:"ingressBurst"` //Bandwidth burst in bits for traffic through container. 0 for no limit. If ingressBurst is set, ingressRate must also be set EgressRate int `json:"egressRate"` //Bandwidth rate in bps for traffic through container. 0 for no limit. If egressRate is set, egressBurst must also be set EgressBurst int `json:"egressBurst"` //Bandwidth burst in bits for traffic through container. 0 for no limit. If egressBurst is set, egressRate must also be set } func (bw *BandwidthEntry) isZero() bool { return bw.IngressBurst == 0 && bw.IngressRate == 0 && bw.EgressBurst == 0 && bw.EgressRate == 0 } type PluginConf struct { types.NetConf RuntimeConfig struct { Bandwidth *BandwidthEntry `json:"bandwidth,omitempty"` } `json:"runtimeConfig,omitempty"` // RuntimeConfig *struct{} `json:"runtimeConfig"` RawPrevResult *map[string]interface{} `json:"prevResult"` PrevResult *current.Result `json:"-"` *BandwidthEntry } // parseConfig parses the supplied configuration (and prevResult) from stdin. func parseConfig(stdin []byte) (*PluginConf, error) { conf := PluginConf{} if err := json.Unmarshal(stdin, &conf); err != nil { return nil, fmt.Errorf("failed to parse network configuration: %v", err) } if conf.RawPrevResult != nil { resultBytes, err := json.Marshal(conf.RawPrevResult) if err != nil { return nil, fmt.Errorf("could not serialize prevResult: %v", err) } res, err := version.NewResult(conf.CNIVersion, resultBytes) if err != nil { return nil, fmt.Errorf("could not parse prevResult: %v", err) } conf.RawPrevResult = nil conf.PrevResult, err = current.NewResultFromResult(res) if err != nil { return nil, fmt.Errorf("could not convert result to current version: %v", err) } } bandwidth := getBandwidth(&conf) if bandwidth != nil { err := validateRateAndBurst(bandwidth.IngressRate, bandwidth.IngressBurst) if err != nil { return nil, err } err = validateRateAndBurst(bandwidth.EgressRate, bandwidth.EgressBurst) if err != nil { return nil, err } } return &conf, nil } func getBandwidth(conf *PluginConf) *BandwidthEntry { if conf.BandwidthEntry == nil && conf.RuntimeConfig.Bandwidth != nil { return conf.RuntimeConfig.Bandwidth } return conf.BandwidthEntry } func validateRateAndBurst(rate int, burst int) error { switch { case burst < 0 || rate < 0: return fmt.Errorf("rate and burst must be a positive integer") case burst == 0 && rate != 0: return fmt.Errorf("if rate is set, burst must also be set") case rate == 0 && burst != 0: return fmt.Errorf("if burst is set, rate must also be set") } return nil } func getIfbDeviceName(networkName string, containerId string) (string, error) { hash := sha1.New() _, err := hash.Write([]byte(networkName + containerId)) if err != nil { return "", err } return fmt.Sprintf("%x", hash.Sum(nil))[:4], nil } func getMTU(deviceName string) (int, error) { link, err := netlink.LinkByName(deviceName) if err != nil { return -1, err } return link.Attrs().MTU, nil } func getHostInterface(interfaces []*current.Interface) (*current.Interface, error) { if len(interfaces) == 0 { return nil, errors.New("no interfaces provided") } var err error for _, iface := range interfaces { if iface.Sandbox == "" { // host interface _, _, err = ip.GetVethPeerIfindex(iface.Name) if err == nil { return iface, err } } } return nil, errors.New(fmt.Sprintf("no host interface found. last error: %s", err)) } func cmdAdd(args *skel.CmdArgs) error { conf, err := parseConfig(args.StdinData) if err != nil { return err } bandwidth := getBandwidth(conf) if bandwidth == nil || bandwidth.isZero() { return types.PrintResult(conf.PrevResult, conf.CNIVersion) } if conf.PrevResult == nil { return fmt.Errorf("must be called as chained plugin") } hostInterface, err := getHostInterface(conf.PrevResult.Interfaces) if err != nil { return err } if bandwidth.IngressRate > 0 && bandwidth.IngressBurst > 0 { err = CreateIngressQdisc(bandwidth.IngressRate, bandwidth.IngressBurst, hostInterface.Name) if err != nil { return err } } if bandwidth.EgressRate > 0 && bandwidth.EgressBurst > 0 { mtu, err := getMTU(hostInterface.Name) if err != nil { return err } ifbDeviceName, err := getIfbDeviceName(conf.Name, args.ContainerID) if err != nil { return err } err = CreateIfb(ifbDeviceName, mtu) if err != nil { return err } ifbDevice, err := netlink.LinkByName(ifbDeviceName) if err != nil { return err } conf.PrevResult.Interfaces = append(conf.PrevResult.Interfaces, ¤t.Interface{ Name: ifbDeviceName, Mac: ifbDevice.Attrs().HardwareAddr.String(), }) err = CreateEgressQdisc(bandwidth.EgressRate, bandwidth.EgressBurst, hostInterface.Name, ifbDeviceName) if err != nil { return err } } return types.PrintResult(conf.PrevResult, conf.CNIVersion) } func cmdDel(args *skel.CmdArgs) error { conf, err := parseConfig(args.StdinData) if err != nil { return err } ifbDeviceName, err := getIfbDeviceName(conf.Name, args.ContainerID) if err != nil { return err } if err := TeardownIfb(ifbDeviceName); err != nil { return err } return nil } func main() { // TODO: implement plugin version skel.PluginMain(cmdAdd, cmdGet, cmdDel, version.PluginSupports("0.3.0", "0.3.1", version.Current()), "TODO") } func cmdGet(args *skel.CmdArgs) error { // TODO: implement return fmt.Errorf("not implemented") }