cmd/egress-cni-plugin/netconf.go (40 lines of code) (raw):
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"). You may
// not use this file except in compliance with the License. A copy of the
// License is located at
//
// http://aws.amazon.com/apache2.0/
//
// or in the "license" file accompanying this file. This file 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 (
"encoding/json"
"fmt"
"net"
"github.com/containernetworking/cni/pkg/types"
cniversion "github.com/containernetworking/cni/pkg/version"
"github.com/aws/amazon-vpc-cni-k8s/pkg/utils/logger"
)
const (
// egressIPv4InterfaceName interface name used in container ns for IPv4 egress traffic
egressIPv4InterfaceName = "v4if0"
// egressIPv6InterfaceName interface name used in container ns for IPv6 egress traffic
egressIPv6InterfaceName = "v6if0"
)
// NetConf is our CNI config structure
type NetConf struct {
types.NetConf
// Interface inside container to create
IfName string `json:"ifName"`
// MTU for Egress v4 interface
MTU string `json:"mtu"`
Enabled string `json:"enabled"`
RandomizeSNAT string `json:"randomizeSNAT"`
// IP to use as SNAT target
NodeIP net.IP `json:"nodeIP"`
PluginLogFile string `json:"pluginLogFile"`
PluginLogLevel string `json:"pluginLogLevel"`
}
// LoadConf load stdin and parse to NetConf type, a new log instance is created based on conf settings
func LoadConf(bytes []byte) (*NetConf, logger.Logger, error) {
conf := &NetConf{}
if err := json.Unmarshal(bytes, conf); err != nil {
return nil, nil, err
}
if conf.RawPrevResult != nil {
if err := cniversion.ParsePrevResult(&conf.NetConf); err != nil {
return nil, nil, fmt.Errorf("could not parse prevResult: %v", err)
}
}
logConfig := logger.Configuration{
LogLevel: conf.PluginLogLevel,
LogLocation: conf.PluginLogFile,
}
log := logger.New(&logConfig)
return conf, log, nil
}