| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- // Copyright 2019 the Kilo 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 iptables
- import (
- "fmt"
- "strings"
- "sync/atomic"
- "github.com/coreos/go-iptables/iptables"
- )
- type statusExiter interface {
- ExitStatus() int
- }
- var _ statusExiter = (*iptables.Error)(nil)
- var _ statusExiter = statusError(0)
- type statusError int
- func (s statusError) Error() string {
- return fmt.Sprintf("%d", s)
- }
- func (s statusError) ExitStatus() int {
- return int(s)
- }
- type fakeClient struct {
- calls uint64
- storage []Rule
- }
- var _ Client = &fakeClient{}
- func (f *fakeClient) AppendUnique(table, chain string, spec ...string) error {
- atomic.AddUint64(&f.calls, 1)
- exists, err := f.Exists(table, chain, spec...)
- if err != nil {
- return err
- }
- if exists {
- return nil
- }
- f.storage = append(f.storage, &rule{table: table, chain: chain, spec: spec})
- return nil
- }
- func (f *fakeClient) Delete(table, chain string, spec ...string) error {
- atomic.AddUint64(&f.calls, 1)
- r := &rule{table: table, chain: chain, spec: spec}
- for i := range f.storage {
- if f.storage[i].String() == r.String() {
- copy(f.storage[i:], f.storage[i+1:])
- f.storage[len(f.storage)-1] = nil
- f.storage = f.storage[:len(f.storage)-1]
- break
- }
- }
- return nil
- }
- func (f *fakeClient) Exists(table, chain string, spec ...string) (bool, error) {
- atomic.AddUint64(&f.calls, 1)
- r := &rule{table: table, chain: chain, spec: spec}
- for i := range f.storage {
- if f.storage[i].String() == r.String() {
- return true, nil
- }
- }
- return false, nil
- }
- func (f *fakeClient) List(table, chain string) ([]string, error) {
- atomic.AddUint64(&f.calls, 1)
- var rs []string
- for i := range f.storage {
- switch r := f.storage[i].(type) {
- case *rule:
- if r.table == table && r.chain == chain {
- rs = append(rs, strings.TrimSpace(strings.TrimPrefix(r.String(), table)))
- }
- }
- }
- return rs, nil
- }
- func (f *fakeClient) ClearChain(table, name string) error {
- atomic.AddUint64(&f.calls, 1)
- for i := range f.storage {
- r, ok := f.storage[i].(*rule)
- if !ok {
- continue
- }
- if table == r.table && name == r.chain {
- if err := f.Delete(table, name, r.spec...); err != nil {
- return nil
- }
- }
- }
- if err := f.DeleteChain(table, name); err != nil {
- return err
- }
- return f.NewChain(table, name)
- }
- func (f *fakeClient) DeleteChain(table, name string) error {
- atomic.AddUint64(&f.calls, 1)
- for i := range f.storage {
- r, ok := f.storage[i].(*rule)
- if !ok {
- continue
- }
- if table == r.table && name == r.chain {
- return fmt.Errorf("cannot delete chain %s; rules exist", name)
- }
- }
- c := &chain{table: table, chain: name}
- for i := range f.storage {
- if f.storage[i].String() == c.String() {
- copy(f.storage[i:], f.storage[i+1:])
- f.storage[len(f.storage)-1] = nil
- f.storage = f.storage[:len(f.storage)-1]
- break
- }
- }
- return nil
- }
- func (f *fakeClient) NewChain(table, name string) error {
- atomic.AddUint64(&f.calls, 1)
- c := &chain{table: table, chain: name}
- for i := range f.storage {
- if f.storage[i].String() == c.String() {
- return statusError(1)
- }
- }
- f.storage = append(f.storage, c)
- return nil
- }
- func (f *fakeClient) ListChains(table string) ([]string, error) {
- atomic.AddUint64(&f.calls, 1)
- var cs []string
- for i := range f.storage {
- switch c := f.storage[i].(type) {
- case *chain:
- if c.table == table {
- cs = append(cs, c.chain)
- }
- }
- }
- return cs, nil
- }
|