mirror of
https://github.com/outbackdingo/kubernetes.git
synced 2026-01-28 10:19:31 +00:00
The conntrack reconciler maintains the consistency between the conntrack table on each node and the desired state of Kubernetes UDP services. A valid entry matches a service's ClusterIP, LoadBalancerIP, or ExternalIP and Service port, or any ip matching a NodePort, and has a reverse source IP matching an active endpoint for that service. Other entries are deleted. Services without endpoints and traffic not handled by kube-proxy are ignored Co-authored-by: Daman Arora <aroradaman@gmail.com>
75 lines
2.3 KiB
Go
75 lines
2.3 KiB
Go
//go:build linux
|
|
// +build linux
|
|
|
|
/*
|
|
Copyright 2016 The Kubernetes 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 conntrack
|
|
|
|
import (
|
|
"github.com/vishvananda/netlink"
|
|
)
|
|
|
|
// FakeInterface implements Interface by just recording entries that have been cleared.
|
|
type FakeInterface struct {
|
|
entries []*netlink.ConntrackFlow
|
|
netlinkRequests int // try to get the estimated number of netlink request
|
|
}
|
|
|
|
var _ Interface = &FakeInterface{}
|
|
|
|
// NewFake creates a new FakeInterface
|
|
func NewFake() *FakeInterface {
|
|
return &FakeInterface{entries: make([]*netlink.ConntrackFlow, 0)}
|
|
}
|
|
|
|
// ListEntries is part of Interface
|
|
func (fake *FakeInterface) ListEntries(_ uint8) ([]*netlink.ConntrackFlow, error) {
|
|
entries := make([]*netlink.ConntrackFlow, len(fake.entries))
|
|
copy(entries, fake.entries)
|
|
// 1 netlink request to dump the table
|
|
// https://github.com/vishvananda/netlink/blob/0af32151e72b990c271ef6268e8aadb7e015f2bd/conntrack_linux.go#L93-L94
|
|
fake.netlinkRequests++
|
|
return entries, nil
|
|
}
|
|
|
|
// ClearEntries is part of Interface
|
|
func (fake *FakeInterface) ClearEntries(_ uint8, filters ...netlink.CustomConntrackFilter) (int, error) {
|
|
var flows []*netlink.ConntrackFlow
|
|
before := len(fake.entries)
|
|
// 1 netlink request to dump the table
|
|
// https://github.com/vishvananda/netlink/blob/0af32151e72b990c271ef6268e8aadb7e015f2bd/conntrack_linux.go#L163
|
|
fake.netlinkRequests++
|
|
|
|
for _, flow := range fake.entries {
|
|
var matched bool
|
|
for _, filter := range filters {
|
|
matched = filter.MatchConntrackFlow(flow)
|
|
if matched {
|
|
// 1 netlink request to delete the flow
|
|
// https://github.com/vishvananda/netlink/blob/0af32151e72b990c271ef6268e8aadb7e015f2bd/conntrack_linux.go#L182
|
|
fake.netlinkRequests++
|
|
break
|
|
}
|
|
}
|
|
if !matched {
|
|
flows = append(flows, flow)
|
|
}
|
|
}
|
|
fake.entries = flows
|
|
return before - len(fake.entries), nil
|
|
}
|