mirror of https://github.com/k3s-io/k3s
commit
ed7bc2b9b7
|
@ -30,6 +30,7 @@ import (
|
|||
|
||||
// Backends need to be imported for their init() to get executed and them to register
|
||||
_ "github.com/coreos/flannel/backend/extension"
|
||||
_ "github.com/coreos/flannel/backend/hostgw"
|
||||
_ "github.com/coreos/flannel/backend/ipsec"
|
||||
_ "github.com/coreos/flannel/backend/vxlan"
|
||||
)
|
||||
|
|
|
@ -49,6 +49,10 @@ const (
|
|||
"Type": "vxlan"
|
||||
}`
|
||||
|
||||
hostGWBackend = `{
|
||||
"Type": "host-gw"
|
||||
}`
|
||||
|
||||
ipsecBackend = `{
|
||||
"Type": "ipsec",
|
||||
"UDPEncap": true,
|
||||
|
@ -120,6 +124,8 @@ func createFlannelConf(nodeConfig *config.Node) error {
|
|||
switch nodeConfig.FlannelBackend {
|
||||
case config.FlannelBackendVXLAN:
|
||||
backendConf = vxlanBackend
|
||||
case config.FlannelBackendHostGW:
|
||||
backendConf = hostGWBackend
|
||||
case config.FlannelBackendIPSEC:
|
||||
backendConf = strings.Replace(ipsecBackend, "%psk%", nodeConfig.AgentConfig.IPSECPSK, -1)
|
||||
if err := setupStrongSwan(nodeConfig); err != nil {
|
||||
|
|
|
@ -114,7 +114,7 @@ func NewServerCommand(action func(*cli.Context) error) cli.Command {
|
|||
},
|
||||
cli.StringFlag{
|
||||
Name: "flannel-backend",
|
||||
Usage: fmt.Sprintf("(networking) One of 'none', 'vxlan', 'ipsec', or 'wireguard'"),
|
||||
Usage: fmt.Sprintf("(networking) One of 'none', 'vxlan', 'ipsec', 'host-gw', or 'wireguard'"),
|
||||
Destination: &ServerConfig.FlannelBackend,
|
||||
Value: "vxlan",
|
||||
},
|
||||
|
|
|
@ -16,6 +16,7 @@ import (
|
|||
const (
|
||||
FlannelBackendNone = "none"
|
||||
FlannelBackendVXLAN = "vxlan"
|
||||
FlannelBackendHostGW = "host-gw"
|
||||
FlannelBackendIPSEC = "ipsec"
|
||||
FlannelBackendWireguard = "wireguard"
|
||||
)
|
||||
|
|
|
@ -0,0 +1,89 @@
|
|||
// +build !windows
|
||||
|
||||
// Copyright 2015 flannel 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.
|
||||
// +build !windows
|
||||
|
||||
package hostgw
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"sync"
|
||||
|
||||
"github.com/coreos/flannel/backend"
|
||||
"github.com/coreos/flannel/pkg/ip"
|
||||
"github.com/coreos/flannel/subnet"
|
||||
"github.com/vishvananda/netlink"
|
||||
"golang.org/x/net/context"
|
||||
)
|
||||
|
||||
func init() {
|
||||
backend.Register("host-gw", New)
|
||||
}
|
||||
|
||||
type HostgwBackend struct {
|
||||
sm subnet.Manager
|
||||
extIface *backend.ExternalInterface
|
||||
}
|
||||
|
||||
func New(sm subnet.Manager, extIface *backend.ExternalInterface) (backend.Backend, error) {
|
||||
if !extIface.ExtAddr.Equal(extIface.IfaceAddr) {
|
||||
return nil, fmt.Errorf("your PublicIP differs from interface IP, meaning that probably you're on a NAT, which is not supported by host-gw backend")
|
||||
}
|
||||
|
||||
be := &HostgwBackend{
|
||||
sm: sm,
|
||||
extIface: extIface,
|
||||
}
|
||||
return be, nil
|
||||
}
|
||||
|
||||
func (be *HostgwBackend) RegisterNetwork(ctx context.Context, wg sync.WaitGroup, config *subnet.Config) (backend.Network, error) {
|
||||
n := &backend.RouteNetwork{
|
||||
SimpleNetwork: backend.SimpleNetwork{
|
||||
ExtIface: be.extIface,
|
||||
},
|
||||
SM: be.sm,
|
||||
BackendType: "host-gw",
|
||||
Mtu: be.extIface.Iface.MTU,
|
||||
LinkIndex: be.extIface.Iface.Index,
|
||||
}
|
||||
n.GetRoute = func(lease *subnet.Lease) *netlink.Route {
|
||||
return &netlink.Route{
|
||||
Dst: lease.Subnet.ToIPNet(),
|
||||
Gw: lease.Attrs.PublicIP.ToIP(),
|
||||
LinkIndex: n.LinkIndex,
|
||||
}
|
||||
}
|
||||
|
||||
attrs := subnet.LeaseAttrs{
|
||||
PublicIP: ip.FromIP(be.extIface.ExtAddr),
|
||||
BackendType: "host-gw",
|
||||
}
|
||||
|
||||
l, err := be.sm.AcquireLease(ctx, &attrs)
|
||||
switch err {
|
||||
case nil:
|
||||
n.SubnetLease = l
|
||||
|
||||
case context.Canceled, context.DeadlineExceeded:
|
||||
return nil, err
|
||||
|
||||
default:
|
||||
return nil, fmt.Errorf("failed to acquire lease: %v", err)
|
||||
}
|
||||
|
||||
return n, nil
|
||||
}
|
253
vendor/github.com/coreos/flannel/backend/hostgw/hostgw_windows.go
generated
vendored
Normal file
253
vendor/github.com/coreos/flannel/backend/hostgw/hostgw_windows.go
generated
vendored
Normal file
|
@ -0,0 +1,253 @@
|
|||
// Copyright 2018 flannel 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 hostgw
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/Microsoft/hcsshim"
|
||||
"github.com/coreos/flannel/backend"
|
||||
"github.com/coreos/flannel/pkg/ip"
|
||||
"github.com/coreos/flannel/subnet"
|
||||
log "k8s.io/klog"
|
||||
"github.com/juju/errors"
|
||||
"github.com/rakelkar/gonetsh/netroute"
|
||||
"github.com/rakelkar/gonetsh/netsh"
|
||||
"golang.org/x/net/context"
|
||||
"k8s.io/apimachinery/pkg/util/json"
|
||||
"k8s.io/apimachinery/pkg/util/wait"
|
||||
utilexec "k8s.io/utils/exec"
|
||||
)
|
||||
|
||||
func init() {
|
||||
backend.Register("host-gw", New)
|
||||
}
|
||||
|
||||
type HostgwBackend struct {
|
||||
sm subnet.Manager
|
||||
extIface *backend.ExternalInterface
|
||||
}
|
||||
|
||||
func New(sm subnet.Manager, extIface *backend.ExternalInterface) (backend.Backend, error) {
|
||||
if !extIface.ExtAddr.Equal(extIface.IfaceAddr) {
|
||||
return nil, fmt.Errorf("your PublicIP differs from interface IP, meaning that probably you're on a NAT, which is not supported by host-gw backend")
|
||||
}
|
||||
|
||||
be := &HostgwBackend{
|
||||
sm: sm,
|
||||
extIface: extIface,
|
||||
}
|
||||
|
||||
return be, nil
|
||||
}
|
||||
|
||||
func (be *HostgwBackend) RegisterNetwork(ctx context.Context, wg sync.WaitGroup, config *subnet.Config) (backend.Network, error) {
|
||||
// 1. Parse configuration
|
||||
cfg := struct {
|
||||
Name string
|
||||
DNSServerList string
|
||||
}{}
|
||||
if len(config.Backend) > 0 {
|
||||
if err := json.Unmarshal(config.Backend, &cfg); err != nil {
|
||||
return nil, errors.Annotate(err, "error decoding windows host-gw backend config")
|
||||
}
|
||||
}
|
||||
if len(cfg.Name) == 0 {
|
||||
cfg.Name = "cbr0"
|
||||
}
|
||||
log.Infof("HOST-GW config: %+v", cfg)
|
||||
|
||||
n := &backend.RouteNetwork{
|
||||
SimpleNetwork: backend.SimpleNetwork{
|
||||
ExtIface: be.extIface,
|
||||
},
|
||||
SM: be.sm,
|
||||
BackendType: "host-gw",
|
||||
Mtu: be.extIface.Iface.MTU,
|
||||
LinkIndex: be.extIface.Iface.Index,
|
||||
}
|
||||
n.GetRoute = func(lease *subnet.Lease) *netroute.Route {
|
||||
return &netroute.Route{
|
||||
DestinationSubnet: lease.Subnet.ToIPNet(),
|
||||
GatewayAddress: lease.Attrs.PublicIP.ToIP(),
|
||||
LinkIndex: n.LinkIndex,
|
||||
}
|
||||
}
|
||||
|
||||
// 2. Acquire the lease form subnet manager
|
||||
attrs := subnet.LeaseAttrs{
|
||||
PublicIP: ip.FromIP(be.extIface.ExtAddr),
|
||||
BackendType: "host-gw",
|
||||
}
|
||||
|
||||
l, err := be.sm.AcquireLease(ctx, &attrs)
|
||||
switch err {
|
||||
case nil:
|
||||
n.SubnetLease = l
|
||||
|
||||
case context.Canceled, context.DeadlineExceeded:
|
||||
return nil, err
|
||||
|
||||
default:
|
||||
return nil, errors.Annotate(err, "failed to acquire lease")
|
||||
}
|
||||
|
||||
// 3. Check if the network exists and has the expected settings
|
||||
netshHelper := netsh.New(utilexec.New())
|
||||
createNewNetwork := true
|
||||
expectedSubnet := n.SubnetLease.Subnet
|
||||
expectedAddressPrefix := expectedSubnet.String()
|
||||
expectedGatewayAddress := (expectedSubnet.IP + 1).String()
|
||||
expectedPodGatewayAddress := expectedSubnet.IP + 2
|
||||
networkName := cfg.Name
|
||||
var waitErr, lastErr error
|
||||
|
||||
existingNetwork, err := hcsshim.GetHNSNetworkByName(networkName)
|
||||
if err == nil {
|
||||
for _, subnet := range existingNetwork.Subnets {
|
||||
if subnet.AddressPrefix == expectedAddressPrefix && subnet.GatewayAddress == expectedGatewayAddress {
|
||||
createNewNetwork = false
|
||||
log.Infof("Found existing HNSNetwork %s", networkName)
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 4. Create a new HNSNetwork
|
||||
expectedNetwork := existingNetwork
|
||||
if createNewNetwork {
|
||||
if existingNetwork != nil {
|
||||
if _, err := existingNetwork.Delete(); err != nil {
|
||||
return nil, errors.Annotatef(err, "failed to delete existing HNSNetwork %s", networkName)
|
||||
}
|
||||
log.Infof("Deleted stale HNSNetwork %s", networkName)
|
||||
}
|
||||
|
||||
expectedNetwork = &hcsshim.HNSNetwork{
|
||||
Name: networkName,
|
||||
Type: "L2Bridge",
|
||||
DNSServerList: cfg.DNSServerList,
|
||||
Subnets: []hcsshim.Subnet{
|
||||
{
|
||||
AddressPrefix: expectedAddressPrefix,
|
||||
GatewayAddress: expectedGatewayAddress,
|
||||
},
|
||||
},
|
||||
}
|
||||
jsonRequest, err := json.Marshal(expectedNetwork)
|
||||
if err != nil {
|
||||
return nil, errors.Annotatef(err, "failed to marshal %+v", expectedNetwork)
|
||||
}
|
||||
|
||||
log.Infof("Attempting to create HNSNetwork %s", string(jsonRequest))
|
||||
newNetwork, err := hcsshim.HNSNetworkRequest("POST", "", string(jsonRequest))
|
||||
if err != nil {
|
||||
return nil, errors.Annotatef(err, "failed to create HNSNetwork %s", networkName)
|
||||
}
|
||||
|
||||
// Wait for the network to populate Management IP
|
||||
log.Infof("Waiting to get ManagementIP from HNSNetwork %s", networkName)
|
||||
waitErr = wait.Poll(500*time.Millisecond, 30*time.Second, func() (done bool, err error) {
|
||||
newNetwork, lastErr = hcsshim.HNSNetworkRequest("GET", newNetwork.Id, "")
|
||||
return newNetwork != nil && len(newNetwork.ManagementIP) != 0, nil
|
||||
})
|
||||
if waitErr == wait.ErrWaitTimeout {
|
||||
return nil, errors.Annotatef(waitErr, "timeout, failed to get management IP from HNSNetwork %s", networkName)
|
||||
}
|
||||
|
||||
// Wait for the interface with the management IP
|
||||
log.Infof("Waiting to get net interface for HNSNetwork %s (%s)", networkName, newNetwork.ManagementIP)
|
||||
waitErr = wait.Poll(500*time.Millisecond, 5*time.Second, func() (done bool, err error) {
|
||||
_, lastErr = netshHelper.GetInterfaceByIP(newNetwork.ManagementIP)
|
||||
return lastErr == nil, nil
|
||||
})
|
||||
if waitErr == wait.ErrWaitTimeout {
|
||||
return nil, errors.Annotatef(lastErr, "timeout, failed to get net interface for HNSNetwork %s (%s)", networkName, newNetwork.ManagementIP)
|
||||
}
|
||||
|
||||
log.Infof("Created HNSNetwork %s", networkName)
|
||||
expectedNetwork = newNetwork
|
||||
}
|
||||
|
||||
// 5. Ensure a 1.2 endpoint on this network in the host compartment
|
||||
createNewBridgeEndpoint := true
|
||||
bridgeEndpointName := networkName + "_ep"
|
||||
existingBridgeEndpoint, err := hcsshim.GetHNSEndpointByName(bridgeEndpointName)
|
||||
if err == nil && existingBridgeEndpoint.IPAddress.String() == expectedPodGatewayAddress.String() {
|
||||
log.Infof("Found existing bridge HNSEndpoint %s", bridgeEndpointName)
|
||||
createNewBridgeEndpoint = false
|
||||
}
|
||||
|
||||
// 6. Create a bridge HNSEndpoint
|
||||
expectedBridgeEndpoint := existingBridgeEndpoint
|
||||
if createNewBridgeEndpoint {
|
||||
if existingBridgeEndpoint != nil {
|
||||
if _, err = existingBridgeEndpoint.Delete(); err != nil {
|
||||
return nil, errors.Annotatef(err, "failed to delete existing bridge HNSEndpoint %s", bridgeEndpointName)
|
||||
}
|
||||
log.Infof("Deleted stale bridge HNSEndpoint %s", bridgeEndpointName)
|
||||
}
|
||||
|
||||
expectedBridgeEndpoint = &hcsshim.HNSEndpoint{
|
||||
Name: bridgeEndpointName,
|
||||
IPAddress: expectedPodGatewayAddress.ToIP(),
|
||||
VirtualNetwork: expectedNetwork.Id,
|
||||
}
|
||||
|
||||
log.Infof("Attempting to create bridge HNSEndpoint %+v", expectedBridgeEndpoint)
|
||||
if expectedBridgeEndpoint, err = expectedBridgeEndpoint.Create(); err != nil {
|
||||
return nil, errors.Annotatef(err, "failed to create bridge HNSEndpoint %s", bridgeEndpointName)
|
||||
}
|
||||
|
||||
log.Infof("Created bridge HNSEndpoint %s", bridgeEndpointName)
|
||||
}
|
||||
|
||||
// Wait for the bridgeEndpoint to attach to the host
|
||||
log.Infof("Waiting to attach bridge endpoint %s to host", bridgeEndpointName)
|
||||
waitErr = wait.Poll(500*time.Millisecond, 5*time.Second, func() (done bool, err error) {
|
||||
lastErr = expectedBridgeEndpoint.HostAttach(1)
|
||||
return lastErr == nil, nil
|
||||
})
|
||||
if waitErr == wait.ErrWaitTimeout {
|
||||
return nil, errors.Annotatef(lastErr, "failed to hot attach bridge HNSEndpoint %s to host compartment", bridgeEndpointName)
|
||||
}
|
||||
log.Infof("Attached bridge endpoint %s to host successfully", bridgeEndpointName)
|
||||
|
||||
// 7. Enable forwarding on the host interface and endpoint
|
||||
for _, interfaceIpAddress := range []string{expectedNetwork.ManagementIP, expectedBridgeEndpoint.IPAddress.String()} {
|
||||
netInterface, err := netshHelper.GetInterfaceByIP(interfaceIpAddress)
|
||||
if err != nil {
|
||||
return nil, errors.Annotatef(err, "failed to find interface for IP Address %s", interfaceIpAddress)
|
||||
}
|
||||
log.Infof("Found %+v interface with IP %s", netInterface, interfaceIpAddress)
|
||||
|
||||
// When a new hns network is created, the interface is modified, esp the name, index
|
||||
if expectedNetwork.ManagementIP == netInterface.IpAddress {
|
||||
n.LinkIndex = netInterface.Idx
|
||||
n.Name = netInterface.Name
|
||||
}
|
||||
|
||||
interfaceIdx := strconv.Itoa(netInterface.Idx)
|
||||
if err := netshHelper.EnableForwarding(interfaceIdx); err != nil {
|
||||
return nil, errors.Annotatef(err, "failed to enable forwarding on %s index %s", netInterface.Name, interfaceIdx)
|
||||
}
|
||||
log.Infof("Enabled forwarding on %s index %s", netInterface.Name, interfaceIdx)
|
||||
}
|
||||
|
||||
return n, nil
|
||||
}
|
|
@ -331,6 +331,7 @@ github.com/containernetworking/plugins/pkg/ns
|
|||
# github.com/coreos/flannel v0.11.0 => github.com/rancher/flannel v0.11.0-k3s.1
|
||||
github.com/coreos/flannel/backend
|
||||
github.com/coreos/flannel/backend/extension
|
||||
github.com/coreos/flannel/backend/hostgw
|
||||
github.com/coreos/flannel/backend/ipsec
|
||||
github.com/coreos/flannel/backend/vxlan
|
||||
github.com/coreos/flannel/network
|
||||
|
|
Loading…
Reference in New Issue