use generic differ for netip.Addr and netip.Prefix

Signed-off-by: bcmmbaga <bethuelmbaga12@gmail.com>
This commit is contained in:
bcmmbaga
2024-10-09 23:49:41 +03:00
parent 9ee08fc441
commit ce7de03d6e
5 changed files with 235 additions and 275 deletions

View File

@ -1,74 +0,0 @@
package differs
import (
"fmt"
"reflect"
nbdns "github.com/netbirdio/netbird/dns"
"github.com/r3labs/diff"
)
type NameServerComparator struct{}
func NewNameServerComparator() *NameServerComparator {
return &NameServerComparator{}
}
func (d *NameServerComparator) Match(a, b reflect.Value) bool {
return diff.AreType(a, b, reflect.TypeOf(nbdns.NameServer{})) ||
diff.AreType(a, b, reflect.TypeOf([]nbdns.NameServer{}))
}
func (d *NameServerComparator) Diff(cl *diff.Changelog, path []string, a, b reflect.Value) error {
if err := handleInvalidKind(cl, path, a, b); err != nil {
return err
}
if a.Kind() == reflect.Slice && b.Kind() == reflect.Slice {
return handleSliceKind(d, cl, path, a, b)
}
ns1, ok1 := a.Interface().(nbdns.NameServer)
ns2, ok2 := b.Interface().(nbdns.NameServer)
if !ok1 || !ok2 {
return fmt.Errorf("invalid type for NameServer")
}
if ns1.IP.String() != ns2.IP.String() {
cl.Add(diff.UPDATE, append(path, "IP"), ns1.IP.String(), ns2.IP.String())
}
if ns1.NSType != ns2.NSType {
cl.Add(diff.UPDATE, append(path, "NSType"), ns1.NSType, ns2.NSType)
}
if ns1.Port != ns2.Port {
cl.Add(diff.UPDATE, append(path, "Port"), ns1.Port, ns2.Port)
}
return nil
}
func handleInvalidKind(cl *diff.Changelog, path []string, a, b reflect.Value) error {
if a.Kind() == reflect.Invalid {
cl.Add(diff.CREATE, path, nil, b.Interface())
return fmt.Errorf("invalid kind")
}
if b.Kind() == reflect.Invalid {
cl.Add(diff.DELETE, path, a.Interface(), nil)
return fmt.Errorf("invalid kind")
}
return nil
}
func handleSliceKind(comparator diff.ValueDiffer, cl *diff.Changelog, path []string, a, b reflect.Value) error {
if a.Len() != b.Len() {
cl.Add(diff.UPDATE, append(path, "length"), a.Len(), b.Len())
return nil
}
for i := 0; i < min(a.Len(), b.Len()); i++ {
if err := comparator.Diff(cl, append(path, fmt.Sprintf("[%d]", i)), a.Index(i), b.Index(i)); err != nil {
return err
}
}
return nil
}

View File

@ -0,0 +1,82 @@
package differs
import (
"fmt"
"net/netip"
"reflect"
"github.com/r3labs/diff/v3"
)
// NetIPAddr is a custom differ for netip.Addr
type NetIPAddr struct {
DiffFunc func(path []string, a, b reflect.Value, p interface{}) error
}
func (differ NetIPAddr) Match(a, b reflect.Value) bool {
return diff.AreType(a, b, reflect.TypeOf(netip.Addr{}))
}
func (differ NetIPAddr) Diff(_ diff.DiffType, _ diff.DiffFunc, cl *diff.Changelog, path []string, a, b reflect.Value, _ interface{}) error {
if a.Kind() == reflect.Invalid {
cl.Add(diff.CREATE, path, nil, b.Interface())
return nil
}
if b.Kind() == reflect.Invalid {
cl.Add(diff.DELETE, path, a.Interface(), nil)
return nil
}
fromAddr, ok1 := a.Interface().(netip.Addr)
toAddr, ok2 := b.Interface().(netip.Addr)
if !ok1 || !ok2 {
return fmt.Errorf("invalid type for netip.Addr")
}
if fromAddr.String() != toAddr.String() {
cl.Add(diff.UPDATE, path, fromAddr.String(), toAddr.String())
}
return nil
}
func (differ NetIPAddr) InsertParentDiffer(dfunc func(path []string, a, b reflect.Value, p interface{}) error) {
differ.DiffFunc = dfunc //nolint
}
// NetIPPrefix is a custom differ for netip.Prefix
type NetIPPrefix struct {
DiffFunc func(path []string, a, b reflect.Value, p interface{}) error
}
func (differ NetIPPrefix) Match(a, b reflect.Value) bool {
return diff.AreType(a, b, reflect.TypeOf(netip.Prefix{}))
}
func (differ NetIPPrefix) Diff(_ diff.DiffType, _ diff.DiffFunc, cl *diff.Changelog, path []string, a, b reflect.Value, _ interface{}) error {
if a.Kind() == reflect.Invalid {
cl.Add(diff.CREATE, path, nil, b.Interface())
return nil
}
if b.Kind() == reflect.Invalid {
cl.Add(diff.DELETE, path, a.Interface(), nil)
return nil
}
fromPrefix, ok1 := a.Interface().(netip.Prefix)
toPrefix, ok2 := b.Interface().(netip.Prefix)
if !ok1 || !ok2 {
return fmt.Errorf("invalid type for netip.Addr")
}
if fromPrefix.String() != toPrefix.String() {
cl.Add(diff.UPDATE, path, fromPrefix.String(), toPrefix.String())
}
return nil
}
func (differ NetIPPrefix) InsertParentDiffer(dfunc func(path []string, a, b reflect.Value, p interface{}) error) {
differ.DiffFunc = dfunc //nolint
}

View File

@ -1,82 +0,0 @@
package differs
import (
"fmt"
"reflect"
"slices"
nbroute "github.com/netbirdio/netbird/route"
"github.com/r3labs/diff"
)
type RouteComparator struct{}
func NewRouteComparator() *RouteComparator {
return &RouteComparator{}
}
func (d *RouteComparator) Match(a, b reflect.Value) bool {
return diff.AreType(a, b, reflect.TypeOf(&nbroute.Route{})) ||
diff.AreType(a, b, reflect.TypeOf([]*nbroute.Route{}))
}
func (d *RouteComparator) Diff(cl *diff.Changelog, path []string, a, b reflect.Value) error {
if err := handleInvalidKind(cl, path, a, b); err != nil {
return err
}
if a.Kind() == reflect.Slice && b.Kind() == reflect.Slice {
return handleSliceKind(d, cl, path, a, b)
}
route1, ok1 := a.Interface().(*nbroute.Route)
route2, ok2 := b.Interface().(*nbroute.Route)
if !ok1 || !ok2 {
return fmt.Errorf("invalid type for Route")
}
if route1.ID != route2.ID {
cl.Add(diff.UPDATE, append(path, "ID"), route1.ID, route2.ID)
}
if route1.AccountID != route2.AccountID {
cl.Add(diff.UPDATE, append(path, "AccountID"), route1.AccountID, route2.AccountID)
}
if route1.Network.String() != route2.Network.String() {
cl.Add(diff.UPDATE, append(path, "Network"), route1.Network.String(), route2.Network.String())
}
if !slices.Equal(route1.Domains, route2.Domains) {
cl.Add(diff.UPDATE, append(path, "Domains"), route1.Domains, route2.Domains)
}
if route1.KeepRoute != route2.KeepRoute {
cl.Add(diff.UPDATE, append(path, "KeepRoute"), route1.KeepRoute, route2.KeepRoute)
}
if route1.NetID != route2.NetID {
cl.Add(diff.UPDATE, append(path, "NetID"), route1.NetID, route2.NetID)
}
if route1.Description != route2.Description {
cl.Add(diff.UPDATE, append(path, "Description"), route1.Description, route2.Description)
}
if route1.Peer != route2.Peer {
cl.Add(diff.UPDATE, append(path, "Peer"), route1.Peer, route2.Peer)
}
if !slices.Equal(route1.PeerGroups, route2.PeerGroups) {
cl.Add(diff.UPDATE, append(path, "PeerGroups"), route1.PeerGroups, route2.PeerGroups)
}
if route1.NetworkType != route2.NetworkType {
cl.Add(diff.UPDATE, append(path, "NetworkType"), route1.NetworkType, route2.NetworkType)
}
if route1.Masquerade != route2.Masquerade {
cl.Add(diff.UPDATE, append(path, "Masquerade"), route1.Masquerade, route2.Masquerade)
}
if route1.Metric != route2.Metric {
cl.Add(diff.UPDATE, append(path, "Metric"), route1.Metric, route2.Metric)
}
if route1.Enabled != route2.Enabled {
cl.Add(diff.UPDATE, append(path, "Enabled"), route1.Enabled, route2.Enabled)
}
if !slices.Equal(route1.Groups, route2.Groups) {
cl.Add(diff.UPDATE, append(path, "Groups"), route1.Groups, route2.Groups)
}
return nil
}

View File

@ -6,6 +6,7 @@ import (
"sync" "sync"
"time" "time"
"github.com/netbirdio/netbird/management/server/differs"
"github.com/netbirdio/netbird/management/server/posture" "github.com/netbirdio/netbird/management/server/posture"
"github.com/r3labs/diff/v3" "github.com/r3labs/diff/v3"
log "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus"
@ -228,7 +229,16 @@ func isNewPeerUpdateMessage(lastSentUpdate, currUpdateToSend *UpdateMessage) (bo
return false, nil return false, nil
} }
changelog, err := diff.Diff(lastSentUpdate.Checks, currUpdateToSend.Checks) differ, err := diff.NewDiffer(
diff.DisableStructValues(),
diff.CustomValueDiffers(&differs.NetIPAddr{}),
diff.CustomValueDiffers(&differs.NetIPPrefix{}),
)
if err != nil {
return false, fmt.Errorf("failed to create differ: %v", err)
}
changelog, err := differ.Diff(lastSentUpdate.Checks, currUpdateToSend.Checks)
if err != nil { if err != nil {
return false, fmt.Errorf("failed to diff checks: %v", err) return false, fmt.Errorf("failed to diff checks: %v", err)
} }
@ -236,7 +246,7 @@ func isNewPeerUpdateMessage(lastSentUpdate, currUpdateToSend *UpdateMessage) (bo
return true, nil return true, nil
} }
changelog, err = diff.Diff(lastSentUpdate.NetworkMap, currUpdateToSend.NetworkMap) changelog, err = differ.Diff(lastSentUpdate.NetworkMap, currUpdateToSend.NetworkMap)
if err != nil { if err != nil {
return false, fmt.Errorf("failed to diff network map: %v", err) return false, fmt.Errorf("failed to diff network map: %v", err)
} }

View File

@ -8,9 +8,12 @@ import (
"time" "time"
nbdns "github.com/netbirdio/netbird/dns" nbdns "github.com/netbirdio/netbird/dns"
"github.com/netbirdio/netbird/management/domain"
"github.com/netbirdio/netbird/management/proto" "github.com/netbirdio/netbird/management/proto"
nbpeer "github.com/netbirdio/netbird/management/server/peer" nbpeer "github.com/netbirdio/netbird/management/server/peer"
"github.com/netbirdio/netbird/management/server/posture" "github.com/netbirdio/netbird/management/server/posture"
nbroute "github.com/netbirdio/netbird/route"
"github.com/netbirdio/netbird/util"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
) )
@ -368,121 +371,142 @@ func TestIsNewPeerUpdateMessage(t *testing.T) {
func createMockUpdateMessage(t *testing.T) *UpdateMessage { func createMockUpdateMessage(t *testing.T) *UpdateMessage {
t.Helper() t.Helper()
//_, ipNet, err := net.ParseCIDR("192.168.1.0/24")
//if err != nil { _, ipNet, err := net.ParseCIDR("192.168.1.0/24")
// t.Fatal(err) if err != nil {
//} t.Fatal(err)
//domainList, err := domain.FromStringList([]string{"example.com"}) }
//if err != nil { domainList, err := domain.FromStringList([]string{"example.com"})
// t.Fatal(err) if err != nil {
//} t.Fatal(err)
// }
//config := &Config{
// Signal: &Host{ config := &Config{
// Proto: "https", Signal: &Host{
// URI: "signal.uri", Proto: "https",
// Username: "", URI: "signal.uri",
// Password: "", Username: "",
// }, Password: "",
// Stuns: []*Host{{URI: "stun.uri", Proto: UDP}}, },
// TURNConfig: &TURNConfig{ Stuns: []*Host{{URI: "stun.uri", Proto: UDP}},
// Turns: []*Host{{URI: "turn.uri", Proto: UDP, Username: "turn-user", Password: "turn-pass"}}, TURNConfig: &TURNConfig{
// }, Turns: []*Host{{URI: "turn.uri", Proto: UDP, Username: "turn-user", Password: "turn-pass"}},
//} },
//peer := &nbpeer.Peer{ }
// IP: net.ParseIP("192.168.1.1"), peer := &nbpeer.Peer{
// SSHEnabled: true, IP: net.ParseIP("192.168.1.1"),
// Key: "peer-key", SSHEnabled: true,
// DNSLabel: "peer1", Key: "peer-key",
// SSHKey: "peer1-ssh-key", DNSLabel: "peer1",
//} SSHKey: "peer1-ssh-key",
// }
////NewTimeBasedAuthSecretsManager(updateManager *PeersUpdateManager, turnCfg *TURNConfig, relayCfg *Relay)
////turnCredentials := &TURNCredentials{ secretManager := NewTimeBasedAuthSecretsManager(
//// Username: "turn-user", NewPeersUpdateManager(nil),
//// Password: "turn-pass", &TURNConfig{
////} TimeBasedCredentials: false,
// CredentialsTTL: util.Duration{
//networkMap := &NetworkMap{ Duration: defaultDuration,
// Network: &Network{Net: *ipNet, Serial: 1000}, },
// Peers: []*nbpeer.Peer{{IP: net.ParseIP("192.168.1.2"), Key: "peer2-key", DNSLabel: "peer2", SSHEnabled: true, SSHKey: "peer2-ssh-key"}}, Secret: "secret",
// OfflinePeers: []*nbpeer.Peer{{IP: net.ParseIP("192.168.1.3"), Key: "peer3-key", DNSLabel: "peer3", SSHEnabled: true, SSHKey: "peer3-ssh-key"}}, Turns: []*Host{TurnTestHost},
// Routes: []*nbroute.Route{ },
// { &Relay{
// ID: "route1", Addresses: []string{"localhost:0"},
// Network: netip.MustParsePrefix("10.0.0.0/24"), CredentialsTTL: util.Duration{Duration: time.Hour},
// KeepRoute: true, Secret: "secret",
// NetID: "route1", },
// Peer: "peer1", )
// NetworkType: 1,
// Masquerade: true, networkMap := &NetworkMap{
// Metric: 9999, Network: &Network{Net: *ipNet, Serial: 1000},
// Enabled: true, Peers: []*nbpeer.Peer{{IP: net.ParseIP("192.168.1.2"), Key: "peer2-key", DNSLabel: "peer2", SSHEnabled: true, SSHKey: "peer2-ssh-key"}},
// Groups: []string{"test1", "test2"}, OfflinePeers: []*nbpeer.Peer{{IP: net.ParseIP("192.168.1.3"), Key: "peer3-key", DNSLabel: "peer3", SSHEnabled: true, SSHKey: "peer3-ssh-key"}},
// }, Routes: []*nbroute.Route{
// { {
// ID: "route2", ID: "route1",
// Domains: domainList, Network: netip.MustParsePrefix("10.0.0.0/24"),
// KeepRoute: true, KeepRoute: true,
// NetID: "route2", NetID: "route1",
// Peer: "peer1", Peer: "peer1",
// NetworkType: 1, NetworkType: 1,
// Masquerade: true, Masquerade: true,
// Metric: 9999, Metric: 9999,
// Enabled: true, Enabled: true,
// Groups: []string{"test1", "test2"}, Groups: []string{"test1", "test2"},
// }, },
// }, {
// DNSConfig: nbdns.Config{ ID: "route2",
// ServiceEnable: true, Domains: domainList,
// NameServerGroups: []*nbdns.NameServerGroup{ KeepRoute: true,
// { NetID: "route2",
// NameServers: []nbdns.NameServer{{ Peer: "peer1",
// IP: netip.MustParseAddr("8.8.8.8"), NetworkType: 1,
// NSType: nbdns.UDPNameServerType, Masquerade: true,
// Port: nbdns.DefaultDNSPort, Metric: 9999,
// }}, Enabled: true,
// Primary: true, Groups: []string{"test1", "test2"},
// Domains: []string{"example.com"}, },
// Enabled: true, },
// SearchDomainsEnabled: true, DNSConfig: nbdns.Config{
// }, ServiceEnable: true,
// { NameServerGroups: []*nbdns.NameServerGroup{
// ID: "ns1", {
// NameServers: []nbdns.NameServer{{ NameServers: []nbdns.NameServer{{
// IP: netip.MustParseAddr("1.1.1.1"), IP: netip.MustParseAddr("8.8.8.8"),
// NSType: nbdns.UDPNameServerType, NSType: nbdns.UDPNameServerType,
// Port: nbdns.DefaultDNSPort, Port: nbdns.DefaultDNSPort,
// }}, }},
// Groups: []string{"group1"}, Primary: true,
// Primary: true, Domains: []string{"example.com"},
// Domains: []string{"example.com"}, Enabled: true,
// Enabled: true, SearchDomainsEnabled: true,
// SearchDomainsEnabled: true, },
// }, {
// }, ID: "ns1",
// CustomZones: []nbdns.CustomZone{{Domain: "example.com", Records: []nbdns.SimpleRecord{{Name: "example.com", Type: 1, Class: "IN", TTL: 60, RData: "100.64.0.1"}}}}, NameServers: []nbdns.NameServer{{
// }, IP: netip.MustParseAddr("1.1.1.1"),
// FirewallRules: []*FirewallRule{ NSType: nbdns.UDPNameServerType,
// {PeerIP: "192.168.1.2", Direction: firewallRuleDirectionIN, Action: string(PolicyTrafficActionAccept), Protocol: string(PolicyRuleProtocolTCP), Port: "80"}, Port: nbdns.DefaultDNSPort,
// }, }},
//} Groups: []string{"group1"},
//dnsName := "example.com" Primary: true,
//checks := []*posture.Checks{ Domains: []string{"example.com"},
// { Enabled: true,
// Checks: posture.ChecksDefinition{ SearchDomainsEnabled: true,
// ProcessCheck: &posture.ProcessCheck{ },
// Processes: []posture.Process{{LinuxPath: "/usr/bin/netbird"}}, },
// }, CustomZones: []nbdns.CustomZone{{Domain: "example.com", Records: []nbdns.SimpleRecord{{Name: "example.com", Type: 1, Class: "IN", TTL: 60, RData: "100.64.0.1"}}}},
// }, },
// }, FirewallRules: []*FirewallRule{
//} {PeerIP: "192.168.1.2", Direction: firewallRuleDirectionIN, Action: string(PolicyTrafficActionAccept), Protocol: string(PolicyRuleProtocolTCP), Port: "80"},
//dnsCache := &DNSConfigCache{} },
// }
//return &UpdateMessage{ dnsName := "example.com"
// //Update: toSyncResponse(context.Background(), config, peer, turnCredentials, networkMap, dnsName, checks, dnsCache), checks := []*posture.Checks{
// NetworkMap: networkMap, {
// Checks: checks, Checks: posture.ChecksDefinition{
//} ProcessCheck: &posture.ProcessCheck{
return nil Processes: []posture.Process{{LinuxPath: "/usr/bin/netbird"}},
},
},
},
}
dnsCache := &DNSConfigCache{}
turnToken, err := secretManager.GenerateTurnToken()
if err != nil {
t.Fatal(err)
}
relayToken, err := secretManager.GenerateRelayToken()
if err != nil {
t.Fatal(err)
}
return &UpdateMessage{
Update: toSyncResponse(context.Background(), config, peer, turnToken, relayToken, networkMap, dnsName, checks, dnsCache),
NetworkMap: networkMap,
Checks: checks,
}
} }