2015-11-26 10:50:07 +00:00
|
|
|
package netlink
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Rule represents a netlink rule.
|
|
|
|
type Rule struct {
|
|
|
|
Priority int
|
2017-08-16 06:28:20 +00:00
|
|
|
Family int
|
2015-12-09 13:07:11 +00:00
|
|
|
Table int
|
2015-11-26 10:50:07 +00:00
|
|
|
Mark int
|
|
|
|
Mask int
|
2020-02-08 20:55:55 +00:00
|
|
|
Tos uint
|
2015-12-09 13:07:11 +00:00
|
|
|
TunID uint
|
2015-11-26 10:50:07 +00:00
|
|
|
Goto int
|
|
|
|
Src *net.IPNet
|
|
|
|
Dst *net.IPNet
|
2015-12-09 13:07:11 +00:00
|
|
|
Flow int
|
2015-11-26 10:50:07 +00:00
|
|
|
IifName string
|
|
|
|
OifName string
|
|
|
|
SuppressIfgroup int
|
|
|
|
SuppressPrefixlen int
|
2017-11-07 17:34:56 +00:00
|
|
|
Invert bool
|
2020-01-16 16:27:48 +00:00
|
|
|
Dport *RulePortRange
|
|
|
|
Sport *RulePortRange
|
2015-11-26 10:50:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r Rule) String() string {
|
|
|
|
return fmt.Sprintf("ip rule %d: from %s table %d", r.Priority, r.Src, r.Table)
|
|
|
|
}
|
2015-12-09 13:07:11 +00:00
|
|
|
|
|
|
|
// NewRule return empty rules.
|
|
|
|
func NewRule() *Rule {
|
|
|
|
return &Rule{
|
|
|
|
SuppressIfgroup: -1,
|
|
|
|
SuppressPrefixlen: -1,
|
|
|
|
Priority: -1,
|
|
|
|
Mark: -1,
|
|
|
|
Mask: -1,
|
|
|
|
Goto: -1,
|
|
|
|
Flow: -1,
|
|
|
|
}
|
|
|
|
}
|
2020-01-16 16:27:48 +00:00
|
|
|
|
|
|
|
// NewRulePortRange creates rule sport/dport range.
|
|
|
|
func NewRulePortRange(start, end uint16) *RulePortRange {
|
|
|
|
return &RulePortRange{Start: start, End: end}
|
|
|
|
}
|
|
|
|
|
|
|
|
// RulePortRange represents rule sport/dport range.
|
|
|
|
type RulePortRange struct {
|
|
|
|
Start uint16
|
|
|
|
End uint16
|
|
|
|
}
|