mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 19:08:25 -07:00
1458600c37
Merge in DNS/adguard-home from 4079-hosts-again to master
Updates #4079.
Squashed commit of the following:
commit 6aa8cbf32e8e47ba46bf5fba7681a10b68b4bc01
Merge: 19dba371 34c95f99
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Wed Jan 12 14:05:30 2022 +0500
Merge branch 'master' into 4079-hosts-again
commit 19dba371cc30ab8b75b0116833f4ecf0ef0f182f
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Wed Jan 12 14:05:20 2022 +0500
aghnet: imp docs
commit 9f341eb8ee4ba8468240bc3eeeb4951a3f7f5e6d
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Mon Jan 10 18:44:17 2022 +0500
aghnet: fix races
commit fd66191c7637c8584711e5bb8186494327ce0f87
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Thu Jan 6 17:21:14 2022 +0500
aghnet: fix hosts container aliases
536 lines
13 KiB
Go
536 lines
13 KiB
Go
package aghnet
|
|
|
|
import (
|
|
"io/fs"
|
|
"net"
|
|
"os"
|
|
"path"
|
|
"strings"
|
|
"sync/atomic"
|
|
"testing"
|
|
"testing/fstest"
|
|
"time"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghtest"
|
|
"github.com/AdguardTeam/golibs/errors"
|
|
"github.com/AdguardTeam/golibs/stringutil"
|
|
"github.com/AdguardTeam/urlfilter"
|
|
"github.com/AdguardTeam/urlfilter/rules"
|
|
"github.com/miekg/dns"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
const (
|
|
nl = "\n"
|
|
sp = " "
|
|
)
|
|
|
|
func TestNewHostsContainer(t *testing.T) {
|
|
const dirname = "dir"
|
|
const filename = "file1"
|
|
|
|
p := path.Join(dirname, filename)
|
|
|
|
testFS := fstest.MapFS{
|
|
p: &fstest.MapFile{Data: []byte("127.0.0.1 localhost")},
|
|
}
|
|
|
|
testCases := []struct {
|
|
wantErr error
|
|
name string
|
|
paths []string
|
|
}{{
|
|
wantErr: nil,
|
|
name: "one_file",
|
|
paths: []string{p},
|
|
}, {
|
|
wantErr: ErrNoHostsPaths,
|
|
name: "no_files",
|
|
paths: []string{},
|
|
}, {
|
|
wantErr: ErrNoHostsPaths,
|
|
name: "non-existent_file",
|
|
paths: []string{path.Join(dirname, filename+"2")},
|
|
}, {
|
|
wantErr: nil,
|
|
name: "whole_dir",
|
|
paths: []string{dirname},
|
|
}}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
onAdd := func(name string) (err error) {
|
|
assert.Contains(t, tc.paths, name)
|
|
|
|
return nil
|
|
}
|
|
|
|
var eventsCalledCounter uint32
|
|
eventsCh := make(chan struct{})
|
|
onEvents := func() (e <-chan struct{}) {
|
|
assert.Equal(t, uint32(1), atomic.AddUint32(&eventsCalledCounter, 1))
|
|
|
|
return eventsCh
|
|
}
|
|
|
|
hc, err := NewHostsContainer(0, testFS, &aghtest.FSWatcher{
|
|
OnEvents: onEvents,
|
|
OnAdd: onAdd,
|
|
OnClose: func() (err error) { panic("not implemented") },
|
|
}, tc.paths...)
|
|
if tc.wantErr != nil {
|
|
require.ErrorIs(t, err, tc.wantErr)
|
|
|
|
assert.Nil(t, hc)
|
|
|
|
return
|
|
}
|
|
|
|
require.NoError(t, err)
|
|
require.NotNil(t, hc)
|
|
|
|
assert.NotNil(t, <-hc.Upd())
|
|
|
|
eventsCh <- struct{}{}
|
|
assert.Equal(t, uint32(1), atomic.LoadUint32(&eventsCalledCounter))
|
|
})
|
|
}
|
|
|
|
t.Run("nil_fs", func(t *testing.T) {
|
|
require.Panics(t, func() {
|
|
_, _ = NewHostsContainer(0, nil, &aghtest.FSWatcher{
|
|
// Those shouldn't panic.
|
|
OnEvents: func() (e <-chan struct{}) { return nil },
|
|
OnAdd: func(name string) (err error) { return nil },
|
|
OnClose: func() (err error) { return nil },
|
|
}, p)
|
|
})
|
|
})
|
|
|
|
t.Run("nil_watcher", func(t *testing.T) {
|
|
require.Panics(t, func() {
|
|
_, _ = NewHostsContainer(0, testFS, nil, p)
|
|
})
|
|
})
|
|
|
|
t.Run("err_watcher", func(t *testing.T) {
|
|
const errOnAdd errors.Error = "error"
|
|
|
|
errWatcher := &aghtest.FSWatcher{
|
|
OnEvents: func() (e <-chan struct{}) { panic("not implemented") },
|
|
OnAdd: func(name string) (err error) { return errOnAdd },
|
|
OnClose: func() (err error) { panic("not implemented") },
|
|
}
|
|
|
|
hc, err := NewHostsContainer(0, testFS, errWatcher, p)
|
|
require.ErrorIs(t, err, errOnAdd)
|
|
|
|
assert.Nil(t, hc)
|
|
})
|
|
}
|
|
|
|
func TestHostsContainer_refresh(t *testing.T) {
|
|
// TODO(e.burkov): Test the case with no actual updates.
|
|
|
|
ip := net.IP{127, 0, 0, 1}
|
|
ipStr := ip.String()
|
|
|
|
testFS := fstest.MapFS{"dir/file1": &fstest.MapFile{Data: []byte(ipStr + ` hostname` + nl)}}
|
|
|
|
// event is a convenient alias for an empty struct{} to emit test events.
|
|
type event = struct{}
|
|
|
|
eventsCh := make(chan event, 1)
|
|
t.Cleanup(func() { close(eventsCh) })
|
|
|
|
w := &aghtest.FSWatcher{
|
|
OnEvents: func() (e <-chan event) { return eventsCh },
|
|
OnAdd: func(name string) (err error) {
|
|
assert.Equal(t, "dir", name)
|
|
|
|
return nil
|
|
},
|
|
OnClose: func() (err error) { panic("not implemented") },
|
|
}
|
|
|
|
hc, err := NewHostsContainer(0, testFS, w, "dir")
|
|
require.NoError(t, err)
|
|
|
|
checkRefresh := func(t *testing.T, wantHosts Hosts) {
|
|
upd, ok := <-hc.Upd()
|
|
require.True(t, ok)
|
|
require.NotNil(t, upd)
|
|
|
|
assert.Equal(t, 1, upd.Len())
|
|
|
|
v, ok := upd.Get(ip)
|
|
require.True(t, ok)
|
|
|
|
var hosts *Hosts
|
|
hosts, ok = v.(*Hosts)
|
|
require.True(t, ok)
|
|
|
|
assert.Equal(t, wantHosts.Main, hosts.Main)
|
|
assert.True(t, hosts.Aliases.Equal(wantHosts.Aliases))
|
|
}
|
|
|
|
t.Run("initial_refresh", func(t *testing.T) {
|
|
checkRefresh(t, Hosts{Main: "hostname"})
|
|
})
|
|
|
|
t.Run("second_refresh", func(t *testing.T) {
|
|
testFS["dir/file2"] = &fstest.MapFile{Data: []byte(ipStr + ` alias` + nl)}
|
|
eventsCh <- event{}
|
|
checkRefresh(t, Hosts{Main: "hostname", Aliases: stringutil.NewSet("alias")})
|
|
})
|
|
|
|
t.Run("double_refresh", func(t *testing.T) {
|
|
// Make a change once.
|
|
testFS["dir/file1"] = &fstest.MapFile{Data: []byte(ipStr + ` alias` + nl)}
|
|
eventsCh <- event{}
|
|
|
|
// Require the changes are written.
|
|
require.Eventually(t, func() bool {
|
|
res, ok := hc.MatchRequest(urlfilter.DNSRequest{
|
|
Hostname: "hostname",
|
|
DNSType: dns.TypeA,
|
|
})
|
|
|
|
return !ok && res.DNSRewrites() == nil
|
|
}, 5*time.Second, time.Second/2)
|
|
|
|
// Make a change again.
|
|
testFS["dir/file2"] = &fstest.MapFile{Data: []byte(ipStr + ` hostname` + nl)}
|
|
eventsCh <- event{}
|
|
|
|
// Require the changes are written.
|
|
require.Eventually(t, func() bool {
|
|
res, ok := hc.MatchRequest(urlfilter.DNSRequest{
|
|
Hostname: "hostname",
|
|
DNSType: dns.TypeA,
|
|
})
|
|
|
|
return !ok && res.DNSRewrites() != nil
|
|
}, 5*time.Second, time.Second/2)
|
|
|
|
assert.Len(t, hc.Upd(), 1)
|
|
})
|
|
}
|
|
|
|
func TestHostsContainer_PathsToPatterns(t *testing.T) {
|
|
gsfs := fstest.MapFS{
|
|
"dir_0/file_1": &fstest.MapFile{Data: []byte{1}},
|
|
"dir_0/file_2": &fstest.MapFile{Data: []byte{2}},
|
|
"dir_0/dir_1/file_3": &fstest.MapFile{Data: []byte{3}},
|
|
}
|
|
|
|
testCases := []struct {
|
|
name string
|
|
paths []string
|
|
want []string
|
|
}{{
|
|
name: "no_paths",
|
|
paths: nil,
|
|
want: nil,
|
|
}, {
|
|
name: "single_file",
|
|
paths: []string{"dir_0/file_1"},
|
|
want: []string{"dir_0/file_1"},
|
|
}, {
|
|
name: "several_files",
|
|
paths: []string{"dir_0/file_1", "dir_0/file_2"},
|
|
want: []string{"dir_0/file_1", "dir_0/file_2"},
|
|
}, {
|
|
name: "whole_dir",
|
|
paths: []string{"dir_0"},
|
|
want: []string{"dir_0/*"},
|
|
}, {
|
|
name: "file_and_dir",
|
|
paths: []string{"dir_0/file_1", "dir_0/dir_1"},
|
|
want: []string{"dir_0/file_1", "dir_0/dir_1/*"},
|
|
}, {
|
|
name: "non-existing",
|
|
paths: []string{path.Join("dir_0", "file_3")},
|
|
want: nil,
|
|
}}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
patterns, err := pathsToPatterns(gsfs, tc.paths)
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, tc.want, patterns)
|
|
})
|
|
}
|
|
|
|
t.Run("bad_file", func(t *testing.T) {
|
|
const errStat errors.Error = "bad file"
|
|
|
|
badFS := &aghtest.StatFS{
|
|
OnStat: func(name string) (fs.FileInfo, error) {
|
|
return nil, errStat
|
|
},
|
|
}
|
|
|
|
_, err := pathsToPatterns(badFS, []string{""})
|
|
assert.ErrorIs(t, err, errStat)
|
|
})
|
|
}
|
|
|
|
func TestHostsContainer_Translate(t *testing.T) {
|
|
testdata := os.DirFS("./testdata")
|
|
stubWatcher := aghtest.FSWatcher{
|
|
OnEvents: func() (e <-chan struct{}) { return nil },
|
|
OnAdd: func(name string) (err error) { return nil },
|
|
OnClose: func() (err error) { panic("not implemented") },
|
|
}
|
|
|
|
hc, err := NewHostsContainer(0, testdata, &stubWatcher, "etc_hosts")
|
|
require.NoError(t, err)
|
|
|
|
testCases := []struct {
|
|
name string
|
|
rule string
|
|
wantTrans []string
|
|
}{{
|
|
name: "simplehost",
|
|
rule: "|simplehost^$dnsrewrite=NOERROR;A;1.0.0.1",
|
|
wantTrans: []string{"1.0.0.1", "simplehost"},
|
|
}, {
|
|
name: "hello",
|
|
rule: "|hello^$dnsrewrite=NOERROR;A;1.0.0.0",
|
|
wantTrans: []string{"1.0.0.0", "hello", "hello.world", "hello.world.again"},
|
|
}, {
|
|
name: "simplehost_v6",
|
|
rule: "|simplehost^$dnsrewrite=NOERROR;AAAA;::1",
|
|
wantTrans: []string{"::1", "simplehost"},
|
|
}, {
|
|
name: "hello_v6",
|
|
rule: "|hello^$dnsrewrite=NOERROR;AAAA;::",
|
|
wantTrans: []string{"::", "hello", "hello.world", "hello.world.again"},
|
|
}, {
|
|
name: "simplehost_ptr",
|
|
rule: "|1.0.0.1.in-addr.arpa^$dnsrewrite=NOERROR;PTR;simplehost.",
|
|
wantTrans: []string{"1.0.0.1", "simplehost"},
|
|
}, {
|
|
name: "hello_ptr",
|
|
rule: "|0.0.0.1.in-addr.arpa^$dnsrewrite=NOERROR;PTR;hello.",
|
|
wantTrans: []string{"1.0.0.0", "hello", "hello.world", "hello.world.again"},
|
|
}, {
|
|
name: "simplehost_ptr_v6",
|
|
rule: "|1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" +
|
|
"^$dnsrewrite=NOERROR;PTR;simplehost.",
|
|
wantTrans: []string{"::1", "simplehost"},
|
|
}, {
|
|
name: "hello_ptr_v6",
|
|
rule: "|0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" +
|
|
"^$dnsrewrite=NOERROR;PTR;hello.",
|
|
wantTrans: []string{"::", "hello", "hello.world", "hello.world.again"},
|
|
}}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
want := stringutil.NewSet(tc.wantTrans...)
|
|
got := stringutil.NewSet(strings.Fields(hc.Translate(tc.rule))...)
|
|
assert.True(t, want.Equal(got))
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestHostsContainer(t *testing.T) {
|
|
const listID = 1234
|
|
|
|
testdata := os.DirFS("./testdata")
|
|
|
|
nRewrites := func(t *testing.T, res *urlfilter.DNSResult, n int) (rws []*rules.DNSRewrite) {
|
|
rewrites := res.DNSRewrites()
|
|
require.Len(t, rewrites, n)
|
|
|
|
for _, rewrite := range rewrites {
|
|
require.Equal(t, listID, rewrite.FilterListID)
|
|
|
|
rw := rewrite.DNSRewrite
|
|
require.NotNil(t, rw)
|
|
|
|
rws = append(rws, rw)
|
|
}
|
|
|
|
return rws
|
|
}
|
|
|
|
testCases := []struct {
|
|
testTail func(t *testing.T, res *urlfilter.DNSResult)
|
|
name string
|
|
req urlfilter.DNSRequest
|
|
}{{
|
|
name: "simple",
|
|
req: urlfilter.DNSRequest{
|
|
Hostname: "simplehost",
|
|
DNSType: dns.TypeA,
|
|
},
|
|
testTail: func(t *testing.T, res *urlfilter.DNSResult) {
|
|
rws := nRewrites(t, res, 2)
|
|
|
|
v, ok := rws[0].Value.(net.IP)
|
|
require.True(t, ok)
|
|
|
|
assert.True(t, net.IP{1, 0, 0, 1}.Equal(v))
|
|
|
|
v, ok = rws[1].Value.(net.IP)
|
|
require.True(t, ok)
|
|
|
|
// It's ::1.
|
|
assert.True(t, net.IP(append((&[15]byte{})[:], byte(1))).Equal(v))
|
|
},
|
|
}, {
|
|
name: "hello_alias",
|
|
req: urlfilter.DNSRequest{
|
|
Hostname: "hello.world",
|
|
DNSType: dns.TypeA,
|
|
},
|
|
testTail: func(t *testing.T, res *urlfilter.DNSResult) {
|
|
assert.Equal(t, "hello", nRewrites(t, res, 1)[0].NewCNAME)
|
|
},
|
|
}, {
|
|
name: "other_line_alias",
|
|
req: urlfilter.DNSRequest{
|
|
Hostname: "hello.world.again",
|
|
DNSType: dns.TypeA,
|
|
},
|
|
testTail: func(t *testing.T, res *urlfilter.DNSResult) {
|
|
assert.Equal(t, "hello", nRewrites(t, res, 1)[0].NewCNAME)
|
|
},
|
|
}, {
|
|
name: "hello_subdomain",
|
|
req: urlfilter.DNSRequest{
|
|
Hostname: "say.hello",
|
|
DNSType: dns.TypeA,
|
|
},
|
|
testTail: func(t *testing.T, res *urlfilter.DNSResult) {
|
|
assert.Empty(t, res.DNSRewrites())
|
|
},
|
|
}, {
|
|
name: "hello_alias_subdomain",
|
|
req: urlfilter.DNSRequest{
|
|
Hostname: "say.hello.world",
|
|
DNSType: dns.TypeA,
|
|
},
|
|
testTail: func(t *testing.T, res *urlfilter.DNSResult) {
|
|
assert.Empty(t, res.DNSRewrites())
|
|
},
|
|
}, {
|
|
name: "lots_of_aliases",
|
|
req: urlfilter.DNSRequest{
|
|
Hostname: "for.testing",
|
|
DNSType: dns.TypeA,
|
|
},
|
|
testTail: func(t *testing.T, res *urlfilter.DNSResult) {
|
|
assert.Equal(t, "a.whole", nRewrites(t, res, 1)[0].NewCNAME)
|
|
},
|
|
}, {
|
|
name: "reverse",
|
|
req: urlfilter.DNSRequest{
|
|
Hostname: "1.0.0.1.in-addr.arpa",
|
|
DNSType: dns.TypePTR,
|
|
},
|
|
testTail: func(t *testing.T, res *urlfilter.DNSResult) {
|
|
rws := nRewrites(t, res, 1)
|
|
|
|
assert.Equal(t, dns.TypePTR, rws[0].RRType)
|
|
assert.Equal(t, "simplehost.", rws[0].Value)
|
|
},
|
|
}, {
|
|
name: "non-existing",
|
|
req: urlfilter.DNSRequest{
|
|
Hostname: "nonexisting",
|
|
DNSType: dns.TypeA,
|
|
},
|
|
testTail: func(t *testing.T, res *urlfilter.DNSResult) {
|
|
require.NotNil(t, res)
|
|
|
|
assert.Nil(t, res.DNSRewrites())
|
|
},
|
|
}}
|
|
|
|
stubWatcher := aghtest.FSWatcher{
|
|
OnEvents: func() (e <-chan struct{}) { return nil },
|
|
OnAdd: func(name string) (err error) { return nil },
|
|
OnClose: func() (err error) { panic("not implemented") },
|
|
}
|
|
|
|
hc, err := NewHostsContainer(listID, testdata, &stubWatcher, "etc_hosts")
|
|
require.NoError(t, err)
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
res, ok := hc.MatchRequest(tc.req)
|
|
require.False(t, ok)
|
|
require.NotNil(t, res)
|
|
|
|
tc.testTail(t, res)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestUniqueRules_ParseLine(t *testing.T) {
|
|
ip := net.IP{127, 0, 0, 1}
|
|
ipStr := ip.String()
|
|
|
|
testCases := []struct {
|
|
name string
|
|
line string
|
|
wantIP net.IP
|
|
wantHosts []string
|
|
}{{
|
|
name: "simple",
|
|
line: ipStr + ` hostname`,
|
|
wantIP: ip,
|
|
wantHosts: []string{"hostname"},
|
|
}, {
|
|
name: "aliases",
|
|
line: ipStr + ` hostname alias`,
|
|
wantIP: ip,
|
|
wantHosts: []string{"hostname", "alias"},
|
|
}, {
|
|
name: "invalid_line",
|
|
line: ipStr,
|
|
wantIP: nil,
|
|
wantHosts: nil,
|
|
}, {
|
|
name: "invalid_line_hostname",
|
|
line: ipStr + ` # hostname`,
|
|
wantIP: ip,
|
|
wantHosts: nil,
|
|
}, {
|
|
name: "commented_aliases",
|
|
line: ipStr + ` hostname # alias`,
|
|
wantIP: ip,
|
|
wantHosts: []string{"hostname"},
|
|
}, {
|
|
name: "whole_comment",
|
|
line: `# ` + ipStr + ` hostname`,
|
|
wantIP: nil,
|
|
wantHosts: nil,
|
|
}, {
|
|
name: "partial_comment",
|
|
line: ipStr + ` host#name`,
|
|
wantIP: ip,
|
|
wantHosts: []string{"host"},
|
|
}, {
|
|
name: "empty",
|
|
line: ``,
|
|
wantIP: nil,
|
|
wantHosts: nil,
|
|
}}
|
|
|
|
for _, tc := range testCases {
|
|
hp := hostsParser{}
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
got, hosts := hp.parseLine(tc.line)
|
|
assert.True(t, tc.wantIP.Equal(got))
|
|
assert.Equal(t, tc.wantHosts, hosts)
|
|
})
|
|
}
|
|
}
|