| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- // Copyright 2017 CNI 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 utils
- import (
- "errors"
- "fmt"
- "github.com/coreos/go-iptables/iptables"
- )
- const statusChainExists = 1
- // EnsureChain idempotently creates the iptables chain. It does not
- // return an error if the chain already exists.
- func EnsureChain(ipt *iptables.IPTables, table, chain string) error {
- if ipt == nil {
- return errors.New("failed to ensure iptable chain: IPTables was nil")
- }
- exists, err := ipt.ChainExists(table, chain)
- if err != nil {
- return fmt.Errorf("failed to check iptables chain existence: %v", err)
- }
- if !exists {
- err = ipt.NewChain(table, chain)
- if err != nil {
- eerr, eok := err.(*iptables.Error)
- if eok && eerr.ExitStatus() != statusChainExists {
- return err
- }
- }
- }
- return nil
- }
- // DeleteRule idempotently delete the iptables rule in the specified table/chain.
- // It does not return an error if the referring chain doesn't exist
- func DeleteRule(ipt *iptables.IPTables, table, chain string, rulespec ...string) error {
- if ipt == nil {
- return errors.New("failed to ensure iptable chain: IPTables was nil")
- }
- if err := ipt.Delete(table, chain, rulespec...); err != nil {
- eerr, eok := err.(*iptables.Error)
- switch {
- case eok && eerr.IsNotExist():
- // swallow here, the chain was already deleted
- return nil
- case eok && eerr.ExitStatus() == 2:
- // swallow here, invalid command line parameter because the referring rule is missing
- return nil
- default:
- return fmt.Errorf("Failed to delete referring rule %s %s: %v", table, chain, err)
- }
- }
- return nil
- }
- // DeleteChain idempotently deletes the specified table/chain.
- // It does not return an errors if the chain does not exist
- func DeleteChain(ipt *iptables.IPTables, table, chain string) error {
- if ipt == nil {
- return errors.New("failed to ensure iptable chain: IPTables was nil")
- }
- err := ipt.DeleteChain(table, chain)
- eerr, eok := err.(*iptables.Error)
- switch {
- case eok && eerr.IsNotExist():
- // swallow here, the chain was already deleted
- return nil
- default:
- return err
- }
- }
- // ClearChain idempotently clear the iptables rules in the specified table/chain.
- // If the chain does not exist, a new one will be created
- func ClearChain(ipt *iptables.IPTables, table, chain string) error {
- if ipt == nil {
- return errors.New("failed to ensure iptable chain: IPTables was nil")
- }
- err := ipt.ClearChain(table, chain)
- eerr, eok := err.(*iptables.Error)
- switch {
- case eok && eerr.IsNotExist():
- // swallow here, the chain was already deleted
- return EnsureChain(ipt, table, chain)
- default:
- return err
- }
- }
- // InsertUnique will add a rule to a chain if it does not already exist.
- // By default the rule is appended, unless prepend is true.
- func InsertUnique(ipt *iptables.IPTables, table, chain string, prepend bool, rule []string) error {
- exists, err := ipt.Exists(table, chain, rule...)
- if err != nil {
- return err
- }
- if exists {
- return nil
- }
- if prepend {
- return ipt.Insert(table, chain, 1, rule...)
- }
- return ipt.Append(table, chain, rule...)
- }
|