rule: add support for FRA_PROTOCOL

Add support for ip rules' FRA_PROTOCOL attribute and also check for it
when testing rules. The default ip rule protocol is RTPROT_UNSPEC (0) so
we set the attribute only when it is >0.

Signed-off-by: Nikolay Aleksandrov <razor@blackwall.org>
This commit is contained in:
Nikolay Aleksandrov 2023-03-10 13:50:29 +02:00 committed by Alessandro Boch
parent 70ca0345ee
commit ced5aaba43
3 changed files with 10 additions and 1 deletions

View File

@ -27,6 +27,7 @@ type Rule struct {
Sport *RulePortRange
IPProto int
UIDRange *RuleUIDRange
Protocol uint8
}
func (r Rule) String() string {

View File

@ -173,6 +173,10 @@ func ruleHandle(rule *Rule, req *nl.NetlinkRequest) error {
req.AddData(nl.NewRtAttr(nl.FRA_UID_RANGE, b))
}
if rule.Protocol > 0 {
req.AddData(nl.NewRtAttr(nl.FRA_PROTOCOL, nl.Uint8Attr(rule.Protocol)))
}
_, err := req.Execute(unix.NETLINK_ROUTE, 0)
return err
}
@ -269,6 +273,8 @@ func (h *Handle) RuleListFiltered(family int, filter *Rule, filterMask uint64) (
rule.Sport = NewRulePortRange(native.Uint16(attrs[j].Value[0:2]), native.Uint16(attrs[j].Value[2:4]))
case nl.FRA_UID_RANGE:
rule.UIDRange = NewRuleUIDRange(native.Uint32(attrs[j].Value[0:4]), native.Uint32(attrs[j].Value[4:8]))
case nl.FRA_PROTOCOL:
rule.Protocol = uint8(attrs[j].Value[0])
}
}

View File

@ -35,6 +35,7 @@ func TestRuleAddDel(t *testing.T) {
rule.Sport = NewRulePortRange(1000, 1024)
rule.IPProto = unix.IPPROTO_UDP
rule.UIDRange = NewRuleUIDRange(100, 100)
rule.Protocol = unix.RTPROT_KERNEL
if err := RuleAdd(rule); err != nil {
t.Fatal(err)
}
@ -420,5 +421,6 @@ func ruleEquals(a, b Rule) bool {
a.IifName == b.IifName &&
a.Invert == b.Invert &&
a.Tos == b.Tos &&
a.IPProto == b.IPProto
a.IPProto == b.IPProto &&
a.Protocol == b.Protocol
}