Skip to content

Commit

Permalink
Merge branch 'master' into 3529-validate-dhcpv4
Browse files Browse the repository at this point in the history
  • Loading branch information
105th committed Oct 18, 2021
2 parents 51aaf6d + b296fa2 commit 86dd107
Show file tree
Hide file tree
Showing 3 changed files with 113 additions and 41 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ In this release, the schema version has changed from 10 to 12.

### Fixed

- Incorrect assignment of explicitly configured DHCP options ([#3744]).
- Occasional panic during shutdown ([#3655]).
- Addition of IPs into only one as opposed to all matching ipsets on Linux
([#3638]).
Expand Down Expand Up @@ -207,6 +208,7 @@ In this release, the schema version has changed from 10 to 12.
[#3607]: https://github.com/AdguardTeam/AdGuardHome/issues/3607
[#3638]: https://github.com/AdguardTeam/AdGuardHome/issues/3638
[#3655]: https://github.com/AdguardTeam/AdGuardHome/issues/3655
[#3744]: https://github.com/AdguardTeam/AdGuardHome/issues/3744



Expand Down
7 changes: 4 additions & 3 deletions internal/dhcpd/v4.go
Original file line number Diff line number Diff line change
Expand Up @@ -904,9 +904,10 @@ func (s *v4Server) process(req, resp *dhcpv4.DHCPv4) int {
resp.UpdateOption(dhcpv4.OptGeneric(code, configured.Get(code)))
}
}
// Update the value of Domain Name Server option separately from others
// since its value is set after server's creating.
if requested.Has(dhcpv4.OptionDomainNameServer) {
// Update the value of Domain Name Server option separately from others if
// not assigned yet since its value is set after server's creating.
if requested.Has(dhcpv4.OptionDomainNameServer) &&
!resp.Options.Has(dhcpv4.OptionDomainNameServer) {
resp.UpdateOption(dhcpv4.OptDNS(s.conf.dnsIPAddrs...))
}

Expand Down
145 changes: 107 additions & 38 deletions internal/dhcpd/v4_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ package dhcpd

import (
"net"
"strings"
"testing"

"github.com/AdguardTeam/golibs/stringutil"
"github.com/insomniacslk/dhcp/dhcpv4"
"github.com/mdlayher/raw"
"github.com/stretchr/testify/assert"
Expand All @@ -16,17 +18,34 @@ import (
func notify4(flags uint32) {
}

func TestV4_AddRemove_static(t *testing.T) {
s, err := v4Create(V4ServerConf{
// defaultV4ServerConf returns the default configuration for *v4Server to use in
// tests.
func defaultV4ServerConf() (conf V4ServerConf) {
return V4ServerConf{
Enabled: true,
RangeStart: net.IP{192, 168, 10, 100},
RangeEnd: net.IP{192, 168, 10, 200},
GatewayIP: net.IP{192, 168, 10, 1},
SubnetMask: net.IP{255, 255, 255, 0},
notify: notify4,
})
}
}

// defaultSrv prepares the default DHCPServer to use in tests. The underlying
// type of s is *v4Server.
func defaultSrv(t *testing.T) (s DHCPServer) {
t.Helper()

var err error
s, err = v4Create(defaultV4ServerConf())
require.NoError(t, err)

return s
}

func TestV4_AddRemove_static(t *testing.T) {
s := defaultSrv(t)

ls := s.GetLeases(LeasesStatic)
assert.Empty(t, ls)

Expand All @@ -37,7 +56,7 @@ func TestV4_AddRemove_static(t *testing.T) {
IP: net.IP{192, 168, 10, 150},
}

err = s.AddStaticLease(l)
err := s.AddStaticLease(l)
require.NoError(t, err)

err = s.AddStaticLease(l)
Expand Down Expand Up @@ -65,15 +84,7 @@ func TestV4_AddRemove_static(t *testing.T) {
}

func TestV4_AddReplace(t *testing.T) {
sIface, err := v4Create(V4ServerConf{
Enabled: true,
RangeStart: net.IP{192, 168, 10, 100},
RangeEnd: net.IP{192, 168, 10, 200},
GatewayIP: net.IP{192, 168, 10, 1},
SubnetMask: net.IP{255, 255, 255, 0},
notify: notify4,
})
require.NoError(t, err)
sIface := defaultSrv(t)

s, ok := sIface.(*v4Server)
require.True(t, ok)
Expand All @@ -89,7 +100,7 @@ func TestV4_AddReplace(t *testing.T) {
}}

for i := range dynLeases {
err = s.addLease(&dynLeases[i])
err := s.addLease(&dynLeases[i])
require.NoError(t, err)
}

Expand All @@ -104,7 +115,7 @@ func TestV4_AddReplace(t *testing.T) {
}}

for _, l := range stLeases {
err = s.AddStaticLease(l)
err := s.AddStaticLease(l)
require.NoError(t, err)
}

Expand All @@ -118,17 +129,80 @@ func TestV4_AddReplace(t *testing.T) {
}
}

func TestV4StaticLease_Get(t *testing.T) {
var err error
sIface, err := v4Create(V4ServerConf{
Enabled: true,
RangeStart: net.IP{192, 168, 10, 100},
RangeEnd: net.IP{192, 168, 10, 200},
GatewayIP: net.IP{192, 168, 10, 1},
SubnetMask: net.IP{255, 255, 255, 0},
notify: notify4,
func TestV4Server_Process_optionsPriority(t *testing.T) {
defaultIP := net.IP{192, 168, 1, 1}
knownIP := net.IP{1, 2, 3, 4}

// prepareSrv creates a *v4Server and sets the opt6IPs in the initial
// configuration of the server as the value for DHCP option 6.
prepareSrv := func(t *testing.T, opt6IPs []net.IP) (s *v4Server) {
t.Helper()

conf := defaultV4ServerConf()
if len(opt6IPs) > 0 {
b := &strings.Builder{}
stringutil.WriteToBuilder(b, "6 ips ", opt6IPs[0].String())
for _, ip := range opt6IPs[1:] {
stringutil.WriteToBuilder(b, ",", ip.String())
}
conf.Options = []string{b.String()}
}

ss, err := v4Create(conf)
require.NoError(t, err)

var ok bool
s, ok = ss.(*v4Server)
require.True(t, ok)

s.conf.dnsIPAddrs = []net.IP{defaultIP}

return s
}

// checkResp creates a discovery message with DHCP option 6 requested amd
// asserts the response to contain wantIPs in this option.
checkResp := func(t *testing.T, s *v4Server, wantIPs []net.IP) {
t.Helper()

mac := net.HardwareAddr{0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA}
req, err := dhcpv4.NewDiscovery(mac, dhcpv4.WithRequestedOptions(
dhcpv4.OptionDomainNameServer,
))
require.NoError(t, err)

var resp *dhcpv4.DHCPv4
resp, err = dhcpv4.NewReplyFromRequest(req)
require.NoError(t, err)

res := s.process(req, resp)
require.Equal(t, 1, res)

o := resp.GetOneOption(dhcpv4.OptionDomainNameServer)
require.NotEmpty(t, o)

wantData := []byte{}
for _, ip := range wantIPs {
wantData = append(wantData, ip...)
}
assert.Equal(t, o, wantData)
}

t.Run("default", func(t *testing.T) {
s := prepareSrv(t, nil)

checkResp(t, s, []net.IP{defaultIP})
})
require.NoError(t, err)

t.Run("explicitly_configured", func(t *testing.T) {
s := prepareSrv(t, []net.IP{knownIP, knownIP})

checkResp(t, s, []net.IP{knownIP, knownIP})
})
}

func TestV4StaticLease_Get(t *testing.T) {
sIface := defaultSrv(t)

s, ok := sIface.(*v4Server)
require.True(t, ok)
Expand All @@ -140,7 +214,7 @@ func TestV4StaticLease_Get(t *testing.T) {
HWAddr: net.HardwareAddr{0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA},
IP: net.IP{192, 168, 10, 150},
}
err = s.AddStaticLease(l)
err := s.AddStaticLease(l)
require.NoError(t, err)

var req, resp *dhcpv4.DHCPv4
Expand Down Expand Up @@ -208,19 +282,14 @@ func TestV4StaticLease_Get(t *testing.T) {
}

func TestV4DynamicLease_Get(t *testing.T) {
conf := defaultV4ServerConf()
conf.Options = []string{
"81 hex 303132",
"82 ip 1.2.3.4",
}

var err error
sIface, err := v4Create(V4ServerConf{
Enabled: true,
RangeStart: net.IP{192, 168, 10, 100},
RangeEnd: net.IP{192, 168, 10, 200},
GatewayIP: net.IP{192, 168, 10, 1},
SubnetMask: net.IP{255, 255, 255, 0},
notify: notify4,
Options: []string{
"81 hex 303132",
"82 ip 1.2.3.4",
},
})
sIface, err := v4Create(conf)
require.NoError(t, err)

s, ok := sIface.(*v4Server)
Expand Down

0 comments on commit 86dd107

Please sign in to comment.