mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-26 06:55:48 +03:00
Pull request: 1868 fix rdns
Merge in DNS/adguard-home from 1868-rdns-ipv6 to master Updates #2943. Updates #2704. Squashed commit of the following: commit 53d67ecf17ed4f9c544344288b58f3596c7246e2 Author: Eugene Burkov <e.burkov@adguard.com> Date: Tue Apr 13 16:18:33 2021 +0300 all: imp code, docs commit 2bc15941b87f92b6fa0a7568538e02700a4385a3 Author: Eugene Burkov <e.burkov@adguard.com> Date: Tue Apr 13 16:09:08 2021 +0300 all: imp code
This commit is contained in:
parent
773f02cf7d
commit
d7b2d63e4c
7 changed files with 85 additions and 8 deletions
|
@ -100,6 +100,7 @@ func NewSubnetDetector() (snd *SubnetDetector, err error) {
|
||||||
"::1/128",
|
"::1/128",
|
||||||
"fe80::/10",
|
"fe80::/10",
|
||||||
"2001:db8::/32",
|
"2001:db8::/32",
|
||||||
|
"fd00::/8",
|
||||||
}
|
}
|
||||||
|
|
||||||
snd = &SubnetDetector{
|
snd = &SubnetDetector{
|
||||||
|
|
|
@ -205,6 +205,14 @@ func TestSubnetDetector_DetectLocallyServedNetwork(t *testing.T) {
|
||||||
name: "linked-scoped_unicast",
|
name: "linked-scoped_unicast",
|
||||||
ip: net.ParseIP("fe80::"),
|
ip: net.ParseIP("fe80::"),
|
||||||
want: true,
|
want: true,
|
||||||
|
}, {
|
||||||
|
name: "locally_assigned",
|
||||||
|
ip: net.ParseIP("fd00::1"),
|
||||||
|
want: true,
|
||||||
|
}, {
|
||||||
|
name: "not_locally_assigned",
|
||||||
|
ip: net.ParseIP("fc00::1"),
|
||||||
|
want: false,
|
||||||
}}
|
}}
|
||||||
|
|
||||||
for _, tc := range testCases {
|
for _, tc := range testCases {
|
||||||
|
|
|
@ -16,7 +16,7 @@ import (
|
||||||
// testTLSConn is a tlsConn for tests.
|
// testTLSConn is a tlsConn for tests.
|
||||||
type testTLSConn struct {
|
type testTLSConn struct {
|
||||||
// Conn is embedded here simply to make testTLSConn a net.Conn without
|
// Conn is embedded here simply to make testTLSConn a net.Conn without
|
||||||
// acctually implementing all methods.
|
// actually implementing all methods.
|
||||||
net.Conn
|
net.Conn
|
||||||
|
|
||||||
serverName string
|
serverName string
|
||||||
|
|
|
@ -18,7 +18,7 @@ import (
|
||||||
// testQueryLog is a simple querylog.QueryLog implementation for tests.
|
// testQueryLog is a simple querylog.QueryLog implementation for tests.
|
||||||
type testQueryLog struct {
|
type testQueryLog struct {
|
||||||
// QueryLog is embedded here simply to make testQueryLog
|
// QueryLog is embedded here simply to make testQueryLog
|
||||||
// a querylog.QueryLog without acctually implementing all methods.
|
// a querylog.QueryLog without actually implementing all methods.
|
||||||
querylog.QueryLog
|
querylog.QueryLog
|
||||||
|
|
||||||
lastParams querylog.AddParams
|
lastParams querylog.AddParams
|
||||||
|
@ -32,7 +32,7 @@ func (l *testQueryLog) Add(p querylog.AddParams) {
|
||||||
// testStats is a simple stats.Stats implementation for tests.
|
// testStats is a simple stats.Stats implementation for tests.
|
||||||
type testStats struct {
|
type testStats struct {
|
||||||
// Stats is embedded here simply to make testStats a stats.Stats without
|
// Stats is embedded here simply to make testStats a stats.Stats without
|
||||||
// acctually implementing all methods.
|
// actually implementing all methods.
|
||||||
stats.Stats
|
stats.Stats
|
||||||
|
|
||||||
lastEntry stats.Entry
|
lastEntry stats.Entry
|
||||||
|
|
60
internal/dnsforward/util_test.go
Normal file
60
internal/dnsforward/util_test.go
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
package dnsforward
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
// fakeAddr is a mock implementation of net.Addr interface to simplify testing.
|
||||||
|
type fakeAddr struct {
|
||||||
|
// Addr is embedded here simply to make fakeAddr a net.Addr without
|
||||||
|
// actually implementing all methods.
|
||||||
|
net.Addr
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestIPFromAddr(t *testing.T) {
|
||||||
|
supIPv4 := net.IP{1, 2, 3, 4}
|
||||||
|
supIPv6 := net.ParseIP("2a00:1450:400c:c06::93")
|
||||||
|
|
||||||
|
testCases := []struct {
|
||||||
|
name string
|
||||||
|
addr net.Addr
|
||||||
|
want net.IP
|
||||||
|
}{{
|
||||||
|
name: "ipv4_tcp",
|
||||||
|
addr: &net.TCPAddr{
|
||||||
|
IP: supIPv4,
|
||||||
|
},
|
||||||
|
want: supIPv4,
|
||||||
|
}, {
|
||||||
|
name: "ipv6_tcp",
|
||||||
|
addr: &net.TCPAddr{
|
||||||
|
IP: supIPv6,
|
||||||
|
},
|
||||||
|
want: supIPv6,
|
||||||
|
}, {
|
||||||
|
name: "ipv4_udp",
|
||||||
|
addr: &net.UDPAddr{
|
||||||
|
IP: supIPv4,
|
||||||
|
},
|
||||||
|
want: supIPv4,
|
||||||
|
}, {
|
||||||
|
name: "ipv6_udp",
|
||||||
|
addr: &net.UDPAddr{
|
||||||
|
IP: supIPv6,
|
||||||
|
},
|
||||||
|
want: supIPv6,
|
||||||
|
}, {
|
||||||
|
name: "non-ip_addr",
|
||||||
|
addr: &fakeAddr{},
|
||||||
|
want: nil,
|
||||||
|
}}
|
||||||
|
|
||||||
|
for _, tc := range testCases {
|
||||||
|
t.Run(tc.name, func(t *testing.T) {
|
||||||
|
assert.Equal(t, tc.want, IPFromAddr(tc.addr))
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
|
@ -95,10 +95,12 @@ func (r *RDNS) workerLoop() {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if host != "" {
|
if host == "" {
|
||||||
// Don't handle any errors since AddHost doesn't return non-nil
|
continue
|
||||||
// errors for now.
|
|
||||||
_, _ = r.clients.AddHost(ip.String(), host, ClientSourceRDNS)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Don't handle any errors since AddHost doesn't return non-nil
|
||||||
|
// errors for now.
|
||||||
|
_, _ = r.clients.AddHost(ip.String(), host, ClientSourceRDNS)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -135,7 +135,8 @@ func TestRDNS_WorkerLoop(t *testing.T) {
|
||||||
|
|
||||||
locUpstream := &aghtest.TestUpstream{
|
locUpstream := &aghtest.TestUpstream{
|
||||||
Reverse: map[string][]string{
|
Reverse: map[string][]string{
|
||||||
"192.168.1.1": {"local.domain"},
|
"192.168.1.1": {"local.domain"},
|
||||||
|
"2a00:1450:400c:c06::93": {"ipv6.domain"},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
errUpstream := &aghtest.TestErrUpstream{
|
errUpstream := &aghtest.TestErrUpstream{
|
||||||
|
@ -157,6 +158,11 @@ func TestRDNS_WorkerLoop(t *testing.T) {
|
||||||
wantLog: `rdns: resolving "192.168.1.2": errupstream: 1234`,
|
wantLog: `rdns: resolving "192.168.1.2": errupstream: 1234`,
|
||||||
name: "resolve_error",
|
name: "resolve_error",
|
||||||
cliIP: net.IP{192, 168, 1, 2},
|
cliIP: net.IP{192, 168, 1, 2},
|
||||||
|
}, {
|
||||||
|
ups: locUpstream,
|
||||||
|
wantLog: "",
|
||||||
|
name: "ipv6_good",
|
||||||
|
cliIP: net.ParseIP("2a00:1450:400c:c06::93"),
|
||||||
}}
|
}}
|
||||||
|
|
||||||
for _, tc := range testCases {
|
for _, tc := range testCases {
|
||||||
|
|
Loading…
Reference in a new issue