| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340 |
- // 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"
- "net"
- "strings"
- "sync"
- "time"
- "github.com/coreos/go-iptables/iptables"
- )
- // Protocol represents an IP protocol.
- type Protocol byte
- const (
- // ProtocolIPv4 represents the IPv4 protocol.
- ProtocolIPv4 Protocol = iota
- // ProtocolIPv6 represents the IPv6 protocol.
- ProtocolIPv6
- )
- // GetProtocol will return a protocol from the length of an IP address.
- func GetProtocol(length int) Protocol {
- if length == net.IPv6len {
- return ProtocolIPv6
- }
- return ProtocolIPv4
- }
- // Client represents any type that can administer iptables rules.
- type Client interface {
- AppendUnique(table string, chain string, rule ...string) error
- Delete(table string, chain string, rule ...string) error
- Exists(table string, chain string, rule ...string) (bool, error)
- ClearChain(table string, chain string) error
- DeleteChain(table string, chain string) error
- NewChain(table string, chain string) error
- }
- // Rule is an interface for interacting with iptables objects.
- type Rule interface {
- Add(Client) error
- Delete(Client) error
- Exists(Client) (bool, error)
- String() string
- Proto() Protocol
- }
- // rule represents an iptables rule.
- type rule struct {
- table string
- chain string
- spec []string
- proto Protocol
- }
- // NewRule creates a new iptables or ip6tables rule in the given table and chain
- // depending on the given protocol.
- func NewRule(proto Protocol, table, chain string, spec ...string) Rule {
- return &rule{table, chain, spec, proto}
- }
- // NewIPv4Rule creates a new iptables rule in the given table and chain.
- func NewIPv4Rule(table, chain string, spec ...string) Rule {
- return &rule{table, chain, spec, ProtocolIPv4}
- }
- // NewIPv6Rule creates a new ip6tables rule in the given table and chain.
- func NewIPv6Rule(table, chain string, spec ...string) Rule {
- return &rule{table, chain, spec, ProtocolIPv6}
- }
- func (r *rule) Add(client Client) error {
- if err := client.AppendUnique(r.table, r.chain, r.spec...); err != nil {
- return fmt.Errorf("failed to add iptables rule: %v", err)
- }
- return nil
- }
- func (r *rule) Delete(client Client) error {
- // Ignore the returned error as an error likely means
- // that the rule doesn't exist, which is fine.
- client.Delete(r.table, r.chain, r.spec...)
- return nil
- }
- func (r *rule) Exists(client Client) (bool, error) {
- return client.Exists(r.table, r.chain, r.spec...)
- }
- func (r *rule) String() string {
- if r == nil {
- return ""
- }
- return fmt.Sprintf("%s_%s_%s", r.table, r.chain, strings.Join(r.spec, "_"))
- }
- func (r *rule) Proto() Protocol {
- return r.proto
- }
- // chain represents an iptables chain.
- type chain struct {
- table string
- chain string
- proto Protocol
- }
- // NewIPv4Chain creates a new iptables chain in the given table.
- func NewIPv4Chain(table, name string) Rule {
- return &chain{table, name, ProtocolIPv4}
- }
- // NewIPv6Chain creates a new ip6tables chain in the given table.
- func NewIPv6Chain(table, name string) Rule {
- return &chain{table, name, ProtocolIPv6}
- }
- func (c *chain) Add(client Client) error {
- if err := client.ClearChain(c.table, c.chain); err != nil {
- return fmt.Errorf("failed to add iptables chain: %v", err)
- }
- return nil
- }
- func (c *chain) Delete(client Client) error {
- // The chain must be empty before it can be deleted.
- if err := client.ClearChain(c.table, c.chain); err != nil {
- return fmt.Errorf("failed to clear iptables chain: %v", err)
- }
- // Ignore the returned error as an error likely means
- // that the chain doesn't exist, which is fine.
- client.DeleteChain(c.table, c.chain)
- return nil
- }
- func (c *chain) Exists(client Client) (bool, error) {
- // The code for "chain already exists".
- existsErr := 1
- err := client.NewChain(c.table, c.chain)
- se, ok := err.(statusExiter)
- switch {
- case err == nil:
- // If there was no error adding a new chain, then it did not exist.
- // Delete it and return false.
- client.DeleteChain(c.table, c.chain)
- return false, nil
- case ok && se.ExitStatus() == existsErr:
- return true, nil
- default:
- return false, err
- }
- }
- func (c *chain) String() string {
- if c == nil {
- return ""
- }
- return fmt.Sprintf("%s_%s", c.table, c.chain)
- }
- func (c *chain) Proto() Protocol {
- return c.proto
- }
- // Controller is able to reconcile a given set of iptables rules.
- type Controller struct {
- v4 Client
- v6 Client
- errors chan error
- sync.Mutex
- rules []Rule
- subscribed bool
- }
- // New generates a new iptables rules controller.
- // It expects an IP address length to determine
- // whether to operate in IPv4 or IPv6 mode.
- func New() (*Controller, error) {
- v4, err := iptables.NewWithProtocol(iptables.ProtocolIPv4)
- if err != nil {
- return nil, fmt.Errorf("failed to create iptables IPv4 client: %v", err)
- }
- v6, err := iptables.NewWithProtocol(iptables.ProtocolIPv6)
- if err != nil {
- return nil, fmt.Errorf("failed to create iptables IPv6 client: %v", err)
- }
- return &Controller{
- v4: v4,
- v6: v6,
- errors: make(chan error),
- }, nil
- }
- // Run watches for changes to iptables rules and reconciles
- // the rules against the desired state.
- func (c *Controller) Run(stop <-chan struct{}) (<-chan error, error) {
- c.Lock()
- if c.subscribed {
- c.Unlock()
- return c.errors, nil
- }
- // Ensure a given instance only subscribes once.
- c.subscribed = true
- c.Unlock()
- go func() {
- defer close(c.errors)
- for {
- select {
- case <-time.After(5 * time.Second):
- case <-stop:
- return
- }
- if err := c.reconcile(); err != nil {
- nonBlockingSend(c.errors, fmt.Errorf("failed to reconcile rules: %v", err))
- }
- }
- }()
- return c.errors, nil
- }
- // reconcile makes sure that every rule is still in the backend.
- // It does not ensure that the order in the backend is correct.
- // If any rule is missing, that rule and all following rules are
- // re-added.
- func (c *Controller) reconcile() error {
- c.Lock()
- defer c.Unlock()
- for i, r := range c.rules {
- ok, err := r.Exists(c.client(r.Proto()))
- if err != nil {
- return fmt.Errorf("failed to check if rule exists: %v", err)
- }
- if !ok {
- if err := c.resetFromIndex(i, c.rules); err != nil {
- return fmt.Errorf("failed to add rule: %v", err)
- }
- break
- }
- }
- return nil
- }
- // resetFromIndex re-adds all rules starting from the given index.
- func (c *Controller) resetFromIndex(i int, rules []Rule) error {
- if i >= len(rules) {
- return nil
- }
- for j := i; j < len(rules); j++ {
- if err := rules[j].Delete(c.client(rules[j].Proto())); err != nil {
- return fmt.Errorf("failed to delete rule: %v", err)
- }
- if err := rules[j].Add(c.client(rules[j].Proto())); err != nil {
- return fmt.Errorf("failed to add rule: %v", err)
- }
- }
- return nil
- }
- // deleteFromIndex deletes all rules starting from the given index.
- func (c *Controller) deleteFromIndex(i int, rules *[]Rule) error {
- if i >= len(*rules) {
- return nil
- }
- for j := i; j < len(*rules); j++ {
- if err := (*rules)[j].Delete(c.client((*rules)[j].Proto())); err != nil {
- *rules = append((*rules)[:i], (*rules)[j:]...)
- return fmt.Errorf("failed to delete rule: %v", err)
- }
- (*rules)[j] = nil
- }
- *rules = (*rules)[:i]
- return nil
- }
- // Set idempotently overwrites any iptables rules previously defined
- // for the controller with the given set of rules.
- func (c *Controller) Set(rules []Rule) error {
- c.Lock()
- defer c.Unlock()
- var i int
- for ; i < len(rules); i++ {
- if i < len(c.rules) {
- if rules[i].String() != c.rules[i].String() {
- if err := c.deleteFromIndex(i, &c.rules); err != nil {
- return err
- }
- }
- }
- if i >= len(c.rules) {
- if err := rules[i].Add(c.client(rules[i].Proto())); err != nil {
- return fmt.Errorf("failed to add rule: %v", err)
- }
- c.rules = append(c.rules, rules[i])
- }
- }
- return c.deleteFromIndex(i, &c.rules)
- }
- // CleanUp will clean up any rules created by the controller.
- func (c *Controller) CleanUp() error {
- c.Lock()
- defer c.Unlock()
- return c.deleteFromIndex(0, &c.rules)
- }
- func (c *Controller) client(p Protocol) Client {
- switch p {
- case ProtocolIPv4:
- return c.v4
- case ProtocolIPv6:
- return c.v6
- default:
- panic("unknown protocol")
- }
- }
- func nonBlockingSend(errors chan<- error, err error) {
- select {
- case errors <- err:
- default:
- }
- }
|