Files
kubernetes/pkg/proxy/nftables/cleanup.go
2026-06-30 13:00:37 +05:30

54 lines
1.5 KiB
Go

//go:build linux
/*
Copyright 2015 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 nftables
import (
"context"
"k8s.io/klog/v2"
"sigs.k8s.io/knftables"
)
// CleanupLeftovers removes all nftables rules and chains created by the Proxier
// It returns true if an error was encountered. Errors are logged.
func CleanupLeftovers(ctx context.Context) (encounteredError bool) {
for _, family := range []knftables.Family{knftables.IPv4Family, knftables.IPv6Family} {
nft, err := knftables.New(family, kubeProxyTable)
if err != nil {
continue
}
encounteredError = cleanupLeftoversForFamily(ctx, nft) || encounteredError
}
return
}
func cleanupLeftoversForFamily(ctx context.Context, nft knftables.Interface) (encounteredError bool) {
logger := klog.FromContext(ctx)
tx := nft.NewTransaction()
tx.Delete(&knftables.Table{})
err := nft.Run(ctx, tx)
if err != nil && !knftables.IsNotFound(err) {
logger.Error(err, "Error cleaning up nftables rules")
return true
}
return false
}