bridge: Add macspoofchk support
The new macspoofchk field is added to the bridge plugin to support anti-mac-spoofing. When the parameter is enabled, traffic is limited to the mac addresses of the container interface (the veth peer that is placed in the container ns). Any traffic that exits the pod is checked against the source mac address that is expected. If the mac address is different, the frames are dropped. The implementation is using nftables and should only be used on nodes that support it. Signed-off-by: Edward Haas <edwardh@redhat.com>
This commit is contained in:
53
vendor/github.com/networkplumbing/go-nft/nft/schema/chain.go
generated
vendored
Normal file
53
vendor/github.com/networkplumbing/go-nft/nft/schema/chain.go
generated
vendored
Normal file
@ -0,0 +1,53 @@
|
||||
/*
|
||||
* This file is part of the go-nft project
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* Copyright 2021 Red Hat, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package schema
|
||||
|
||||
// Chain Types
|
||||
const (
|
||||
TypeFilter = "filter"
|
||||
TypeNAT = "nat"
|
||||
TypeRoute = "route"
|
||||
)
|
||||
|
||||
// Chain Hooks
|
||||
const (
|
||||
HookPreRouting = "prerouting"
|
||||
HookInput = "input"
|
||||
HookOutput = "output"
|
||||
HookForward = "forward"
|
||||
HookPostRouting = "postrouting"
|
||||
HookIngress = "ingress"
|
||||
)
|
||||
|
||||
// Chain Policies
|
||||
const (
|
||||
PolicyAccept = "accept"
|
||||
PolicyDrop = "drop"
|
||||
)
|
||||
|
||||
type Chain struct {
|
||||
Family string `json:"family"`
|
||||
Table string `json:"table"`
|
||||
Name string `json:"name"`
|
||||
Type string `json:"type,omitempty"`
|
||||
Hook string `json:"hook,omitempty"`
|
||||
Prio *int `json:"prio,omitempty"`
|
||||
Policy string `json:"policy,omitempty"`
|
||||
}
|
366
vendor/github.com/networkplumbing/go-nft/nft/schema/rule.go
generated
vendored
Normal file
366
vendor/github.com/networkplumbing/go-nft/nft/schema/rule.go
generated
vendored
Normal file
@ -0,0 +1,366 @@
|
||||
/*
|
||||
* This file is part of the go-nft project
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* Copyright 2021 Red Hat, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package schema
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
type Rule struct {
|
||||
Family string `json:"family"`
|
||||
Table string `json:"table"`
|
||||
Chain string `json:"chain"`
|
||||
Expr []Statement `json:"expr,omitempty"`
|
||||
Handle *int `json:"handle,omitempty"`
|
||||
Index *int `json:"index,omitempty"`
|
||||
Comment string `json:"comment,omitempty"`
|
||||
}
|
||||
|
||||
type Statement struct {
|
||||
Counter *Counter `json:"counter,omitempty"`
|
||||
Match *Match `json:"match,omitempty"`
|
||||
Verdict
|
||||
Nat
|
||||
}
|
||||
|
||||
type Counter struct {
|
||||
Packets int `json:"packets"`
|
||||
Bytes int `json:"bytes"`
|
||||
}
|
||||
|
||||
type Nat struct {
|
||||
Snat *Snat `json:"snat,omitempty"`
|
||||
Dnat *Dnat `json:"dnat,omitempty"`
|
||||
Masquerade *Masquerade `json:"masquerade,omitempty"`
|
||||
Redirect *Redirect `json:"redirect,omitempty"`
|
||||
}
|
||||
|
||||
type Snat struct {
|
||||
Addr *Expression `json:"addr,omitempty"`
|
||||
Family *string `json:"family,omitempty"`
|
||||
Port *Expression `json:"port,omitempty"`
|
||||
Flags *Flags `json:"flags,omitempty"`
|
||||
}
|
||||
|
||||
type Dnat struct {
|
||||
Addr *Expression `json:"addr,omitempty"`
|
||||
Family *string `json:"family,omitempty"`
|
||||
Port *Expression `json:"port,omitempty"`
|
||||
Flags *Flags `json:"flags,omitempty"`
|
||||
}
|
||||
|
||||
const masquerade = "masquerade"
|
||||
|
||||
type Masquerade struct {
|
||||
Enabled bool `json:"-"`
|
||||
Port *Expression `json:"port,omitempty"`
|
||||
Flags *Flags `json:"flags,omitempty"`
|
||||
}
|
||||
|
||||
const redirect = "redirect"
|
||||
|
||||
type Redirect struct {
|
||||
Enabled bool `json:"-"`
|
||||
Port *Expression `json:"port,omitempty"`
|
||||
Flags *Flags `json:"flags,omitempty"`
|
||||
}
|
||||
|
||||
type Flags struct {
|
||||
Flags []string `json:"-"`
|
||||
}
|
||||
|
||||
// NAT Flags
|
||||
const (
|
||||
NATFlagRandom = "random"
|
||||
NATFlagFullyRandom = "fully-random"
|
||||
NATFlagPersistent = "persistent"
|
||||
)
|
||||
|
||||
type Verdict struct {
|
||||
SimpleVerdict
|
||||
Jump *ToTarget `json:"jump,omitempty"`
|
||||
Goto *ToTarget `json:"goto,omitempty"`
|
||||
}
|
||||
|
||||
type SimpleVerdict struct {
|
||||
Accept bool `json:"-"`
|
||||
Continue bool `json:"-"`
|
||||
Drop bool `json:"-"`
|
||||
Return bool `json:"-"`
|
||||
}
|
||||
|
||||
type ToTarget struct {
|
||||
Target string `json:"target"`
|
||||
}
|
||||
|
||||
type Match struct {
|
||||
Op string `json:"op"`
|
||||
Left Expression `json:"left"`
|
||||
Right Expression `json:"right"`
|
||||
}
|
||||
|
||||
type Expression struct {
|
||||
String *string `json:"-"`
|
||||
Bool *bool `json:"-"`
|
||||
Float64 *float64 `json:"-"`
|
||||
Payload *Payload `json:"payload,omitempty"`
|
||||
// RowData accepts arbitrary data which cannot be composed from the existing schema.
|
||||
// Use `json.RawMessage()` or `[]byte()` for the value.
|
||||
// Example:
|
||||
// `schema.Expression{RowData: json.RawMessage(`{"meta":{"key":"iifname"}}`)}`
|
||||
RowData json.RawMessage `json:"-"`
|
||||
}
|
||||
|
||||
type Payload struct {
|
||||
Protocol string `json:"protocol"`
|
||||
Field string `json:"field"`
|
||||
}
|
||||
|
||||
// Verdict Operations
|
||||
const (
|
||||
VerdictAccept = "accept"
|
||||
VerdictContinue = "continue"
|
||||
VerdictDrop = "drop"
|
||||
VerdictReturn = "return"
|
||||
)
|
||||
|
||||
// Match Operators
|
||||
const (
|
||||
OperAND = "&" // Binary AND
|
||||
OperOR = "|" // Binary OR
|
||||
OperXOR = "^" // Binary XOR
|
||||
OperLSH = "<<" // Left shift
|
||||
OperRSH = ">>" // Right shift
|
||||
OperEQ = "==" // Equal
|
||||
OperNEQ = "!=" // Not equal
|
||||
OperLS = "<" // Less than
|
||||
OperGR = ">" // Greater than
|
||||
OperLSE = "<=" // Less than or equal to
|
||||
OperGRE = ">=" // Greater than or equal to
|
||||
OperIN = "in" // Perform a lookup, i.e. test if bits on RHS are contained in LHS value
|
||||
)
|
||||
|
||||
// Payload Expressions
|
||||
const (
|
||||
PayloadKey = "payload"
|
||||
// Ethernet
|
||||
PayloadProtocolEther = "ether"
|
||||
PayloadFieldEtherDAddr = "daddr"
|
||||
PayloadFieldEtherSAddr = "saddr"
|
||||
PayloadFieldEtherType = "type"
|
||||
|
||||
// IP (common)
|
||||
PayloadFieldIPVer = "version"
|
||||
PayloadFieldIPDscp = "dscp"
|
||||
PayloadFieldIPEcn = "ecn"
|
||||
PayloadFieldIPLen = "length"
|
||||
PayloadFieldIPSAddr = "saddr"
|
||||
PayloadFieldIPDAddr = "daddr"
|
||||
|
||||
// IPv4
|
||||
PayloadProtocolIP4 = "ip"
|
||||
PayloadFieldIP4HdrLen = "hdrlength"
|
||||
PayloadFieldIP4Id = "id"
|
||||
PayloadFieldIP4FragOff = "frag-off"
|
||||
PayloadFieldIP4Ttl = "ttl"
|
||||
PayloadFieldIP4Protocol = "protocol"
|
||||
PayloadFieldIP4Chksum = "checksum"
|
||||
|
||||
// IPv6
|
||||
PayloadProtocolIP6 = "ip6"
|
||||
PayloadFieldIP6FlowLabel = "flowlabel"
|
||||
PayloadFieldIP6NextHdr = "nexthdr"
|
||||
PayloadFieldIP6HopLimit = "hoplimit"
|
||||
)
|
||||
|
||||
func (s Statement) MarshalJSON() ([]byte, error) {
|
||||
type _Statement Statement
|
||||
statement := _Statement(s)
|
||||
|
||||
// Convert to a dynamic structure
|
||||
data, err := json.Marshal(statement)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
dynamicStructure := make(map[string]json.RawMessage)
|
||||
if err := json.Unmarshal(data, &dynamicStructure); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
switch {
|
||||
case s.Accept:
|
||||
dynamicStructure[VerdictAccept] = nil
|
||||
case s.Continue:
|
||||
dynamicStructure[VerdictContinue] = nil
|
||||
case s.Drop:
|
||||
dynamicStructure[VerdictDrop] = nil
|
||||
case s.Return:
|
||||
dynamicStructure[VerdictReturn] = nil
|
||||
case s.Masquerade != nil && s.Masquerade.Enabled && s.Masquerade.Port == nil && s.Masquerade.Flags == nil:
|
||||
dynamicStructure[masquerade] = nil
|
||||
case s.Redirect != nil && s.Redirect.Enabled && s.Redirect.Port == nil && s.Redirect.Flags == nil:
|
||||
dynamicStructure[redirect] = nil
|
||||
}
|
||||
|
||||
data, err = json.Marshal(dynamicStructure)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return data, nil
|
||||
}
|
||||
|
||||
func (s *Statement) UnmarshalJSON(data []byte) error {
|
||||
type _Statement Statement
|
||||
statement := _Statement{}
|
||||
|
||||
if err := json.Unmarshal(data, &statement); err != nil {
|
||||
return err
|
||||
}
|
||||
*s = Statement(statement)
|
||||
|
||||
dynamicStructure := make(map[string]json.RawMessage)
|
||||
if err := json.Unmarshal(data, &dynamicStructure); err != nil {
|
||||
return err
|
||||
}
|
||||
_, s.Accept = dynamicStructure[VerdictAccept]
|
||||
_, s.Continue = dynamicStructure[VerdictContinue]
|
||||
_, s.Drop = dynamicStructure[VerdictDrop]
|
||||
_, s.Return = dynamicStructure[VerdictReturn]
|
||||
|
||||
if _, masqueradeDefined := dynamicStructure[masquerade]; s.Masquerade == nil && masqueradeDefined {
|
||||
s.Masquerade = &Masquerade{Enabled: true}
|
||||
}
|
||||
|
||||
if _, redirectDefined := dynamicStructure[redirect]; s.Redirect == nil && redirectDefined {
|
||||
s.Redirect = &Redirect{Enabled: true}
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (e Expression) MarshalJSON() ([]byte, error) {
|
||||
var dynamicStruct interface{}
|
||||
|
||||
switch {
|
||||
case e.RowData != nil:
|
||||
return e.RowData, nil
|
||||
case e.String != nil:
|
||||
dynamicStruct = *e.String
|
||||
case e.Float64 != nil:
|
||||
dynamicStruct = *e.Float64
|
||||
case e.Bool != nil:
|
||||
dynamicStruct = *e.Bool
|
||||
default:
|
||||
type _Expression Expression
|
||||
dynamicStruct = _Expression(e)
|
||||
}
|
||||
|
||||
return json.Marshal(dynamicStruct)
|
||||
}
|
||||
|
||||
func (e *Expression) UnmarshalJSON(data []byte) error {
|
||||
var dynamicStruct interface{}
|
||||
if err := json.Unmarshal(data, &dynamicStruct); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
switch dynamicStruct.(type) {
|
||||
case string:
|
||||
d := dynamicStruct.(string)
|
||||
e.String = &d
|
||||
case float64:
|
||||
d := dynamicStruct.(float64)
|
||||
e.Float64 = &d
|
||||
case bool:
|
||||
d := dynamicStruct.(bool)
|
||||
e.Bool = &d
|
||||
case []interface{}:
|
||||
e.RowData = data
|
||||
case map[string]interface{}:
|
||||
type _Expression Expression
|
||||
expression := _Expression(*e)
|
||||
if err := json.Unmarshal(data, &expression); err != nil {
|
||||
return err
|
||||
}
|
||||
*e = Expression(expression)
|
||||
default:
|
||||
return fmt.Errorf("unsupported field type in expression: %T(%v)", dynamicStruct, dynamicStruct)
|
||||
}
|
||||
|
||||
if e.String == nil && e.Float64 == nil && e.Bool == nil && e.Payload == nil {
|
||||
e.RowData = data
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (f Flags) MarshalJSON() ([]byte, error) {
|
||||
var dynamicStruct interface{}
|
||||
|
||||
switch flagCount := len(f.Flags); {
|
||||
case flagCount == 1:
|
||||
dynamicStruct = f.Flags[0]
|
||||
case flagCount > 1:
|
||||
dynamicStruct = f.Flags
|
||||
}
|
||||
|
||||
return json.Marshal(dynamicStruct)
|
||||
}
|
||||
|
||||
func (f *Flags) UnmarshalJSON(data []byte) error {
|
||||
var dynamicStruct interface{}
|
||||
if err := json.Unmarshal(data, &dynamicStruct); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
switch v := dynamicStruct.(type) {
|
||||
case string:
|
||||
f.Flags = []string{v}
|
||||
case []interface{}:
|
||||
for _, val := range v {
|
||||
stringVal, ok := val.(string)
|
||||
if !ok {
|
||||
return fmt.Errorf("flags values require string type: %T(%v)", dynamicStruct, dynamicStruct)
|
||||
}
|
||||
f.Flags = append(f.Flags, stringVal)
|
||||
}
|
||||
default:
|
||||
return fmt.Errorf("flags values require string type: %T(%v)", dynamicStruct, dynamicStruct)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func Accept() Verdict {
|
||||
return Verdict{SimpleVerdict: SimpleVerdict{Accept: true}}
|
||||
}
|
||||
|
||||
func Continue() Verdict {
|
||||
return Verdict{SimpleVerdict: SimpleVerdict{Continue: true}}
|
||||
}
|
||||
|
||||
func Drop() Verdict {
|
||||
return Verdict{SimpleVerdict: SimpleVerdict{Drop: true}}
|
||||
}
|
||||
|
||||
func Return() Verdict {
|
||||
return Verdict{SimpleVerdict: SimpleVerdict{Return: true}}
|
||||
}
|
80
vendor/github.com/networkplumbing/go-nft/nft/schema/schema.go
generated
vendored
Normal file
80
vendor/github.com/networkplumbing/go-nft/nft/schema/schema.go
generated
vendored
Normal file
@ -0,0 +1,80 @@
|
||||
/*
|
||||
* This file is part of the go-nft project
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* Copyright 2021 Red Hat, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package schema
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
)
|
||||
|
||||
type Root struct {
|
||||
Nftables []Nftable `json:"nftables"`
|
||||
}
|
||||
|
||||
const ruleSetKey = "ruleset"
|
||||
|
||||
type Objects struct {
|
||||
Table *Table `json:"table,omitempty"`
|
||||
Chain *Chain `json:"chain,omitempty"`
|
||||
Rule *Rule `json:"rule,omitempty"`
|
||||
Ruleset bool `json:"-"`
|
||||
}
|
||||
|
||||
func (o Objects) MarshalJSON() ([]byte, error) {
|
||||
type _Objects Objects
|
||||
objects := _Objects(o)
|
||||
|
||||
data, err := json.Marshal(objects)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
if o.Ruleset {
|
||||
// Convert to a dynamic structure
|
||||
var dynamicStructure map[string]json.RawMessage
|
||||
if err := json.Unmarshal(data, &dynamicStructure); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
dynamicStructure[ruleSetKey] = nil
|
||||
data, err = json.Marshal(dynamicStructure)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
|
||||
return data, nil
|
||||
}
|
||||
|
||||
type Nftable struct {
|
||||
Table *Table `json:"table,omitempty"`
|
||||
Chain *Chain `json:"chain,omitempty"`
|
||||
Rule *Rule `json:"rule,omitempty"`
|
||||
|
||||
Add *Objects `json:"add,omitempty"`
|
||||
Delete *Objects `json:"delete,omitempty"`
|
||||
Flush *Objects `json:"flush,omitempty"`
|
||||
|
||||
Metainfo *Metainfo `json:"metainfo,omitempty"`
|
||||
}
|
||||
|
||||
type Metainfo struct {
|
||||
Version string `json:"version"`
|
||||
ReleaseName string `json:"release_name"`
|
||||
JsonSchemaVersion int `json:"json_schema_version"`
|
||||
}
|
35
vendor/github.com/networkplumbing/go-nft/nft/schema/table.go
generated
vendored
Normal file
35
vendor/github.com/networkplumbing/go-nft/nft/schema/table.go
generated
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* This file is part of the go-nft project
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* Copyright 2021 Red Hat, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package schema
|
||||
|
||||
// Table Address Families
|
||||
const (
|
||||
FamilyIP = "ip" // IPv4 address AddressFamily.
|
||||
FamilyIP6 = "ip6" // IPv6 address AddressFamily.
|
||||
FamilyINET = "inet" // Internet (IPv4/IPv6) address AddressFamily.
|
||||
FamilyARP = "arp" // ARP address AddressFamily, handling IPv4 ARP packets.
|
||||
FamilyBridge = "bridge" // Bridge address AddressFamily, handling packets which traverse a bridge device.
|
||||
FamilyNETDEV = "netdev" // Netdev address AddressFamily, handling packets from ingress.
|
||||
)
|
||||
|
||||
type Table struct {
|
||||
Family string `json:"family"`
|
||||
Name string `json:"name"`
|
||||
}
|
Reference in New Issue
Block a user