Files
kubernetes/pkg/proxy/conntrack/conntrack.go
Adrian Moisey b6f49d0728 Add retries to conntracker.ClearEntries()
Signed-off-by: Daman Arora <aroradaman@gmail.com>
2025-02-19 08:29:06 +02:00

92 lines
2.8 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 (
"fmt"
"github.com/vishvananda/netlink"
"k8s.io/client-go/util/retry"
"k8s.io/klog/v2"
"k8s.io/kubernetes/pkg/proxy/util"
)
// Interface for dealing with conntrack
type Interface interface {
ListEntries(ipFamily uint8) ([]*netlink.ConntrackFlow, error)
// ClearEntries deletes conntrack entries for connections of the given IP family,
// filtered by the given filters.
ClearEntries(ipFamily uint8, filters ...netlink.CustomConntrackFilter) (int, error)
}
// netlinkHandler allows consuming real and mockable implementation for testing.
type netlinkHandler interface {
ConntrackTableList(netlink.ConntrackTableType, netlink.InetFamily) ([]*netlink.ConntrackFlow, error)
ConntrackDeleteFilters(netlink.ConntrackTableType, netlink.InetFamily, ...netlink.CustomConntrackFilter) (uint, error)
}
// conntracker implements Interface by using netlink APIs.
type conntracker struct {
handler netlinkHandler
}
var _ Interface = &conntracker{}
func New() Interface {
return newConntracker(&netlink.Handle{})
}
func newConntracker(handler netlinkHandler) Interface {
return &conntracker{handler: handler}
}
// ListEntries list all conntrack entries for connections of the given IP family.
func (ct *conntracker) ListEntries(ipFamily uint8) (entries []*netlink.ConntrackFlow, err error) {
err = retry.OnError(util.MaxAttemptsEINTR, util.ShouldRetryOnEINTR, func() error {
entries, err = ct.handler.ConntrackTableList(netlink.ConntrackTable, netlink.InetFamily(ipFamily))
return err
})
return entries, err
}
// ClearEntries deletes conntrack entries for connections of the given IP family,
// filtered by the given filters.
func (ct *conntracker) ClearEntries(ipFamily uint8, filters ...netlink.CustomConntrackFilter) (int, error) {
if len(filters) == 0 {
klog.V(7).InfoS("no conntrack filters provided")
return 0, nil
}
var n uint
var err error
err = retry.OnError(util.MaxAttemptsEINTR, util.ShouldRetryOnEINTR, func() error {
var count uint
count, err = ct.handler.ConntrackDeleteFilters(netlink.ConntrackTable, netlink.InetFamily(ipFamily), filters...)
n += count
return err
})
if err != nil {
return int(n), fmt.Errorf("error deleting conntrack entries, error: %w", err)
}
return int(n), nil
}