blob: 9993ed2c9936cf43d62e54492ab76cd963cc5921 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package netstack
import (
"net"
"sort"
"syscall/zx"
"testing"
"time"
"fidl/fuchsia/hardware/ethernet"
fidlnet "fidl/fuchsia/net"
"fidl/fuchsia/net/stack"
"fidl/fuchsia/netstack"
ethernetext "fidlext/fuchsia/hardware/ethernet"
"netstack/dhcp"
"netstack/dns"
"netstack/fidlconv"
"netstack/link/eth"
"netstack/routes"
"netstack/util"
"github.com/google/go-cmp/cmp"
"github.com/google/netstack/tcpip"
"github.com/google/netstack/tcpip/network/arp"
"github.com/google/netstack/tcpip/network/ipv4"
"github.com/google/netstack/tcpip/network/ipv6"
tcpipstack "github.com/google/netstack/tcpip/stack"
"github.com/google/netstack/tcpip/transport/tcp"
"github.com/google/netstack/waiter"
)
const (
testDeviceName string = "testdevice"
testTopoPath string = "/fake/ethernet/device"
testV4Address tcpip.Address = tcpip.Address("\xc0\xa8\x2a\x10")
testV6Address tcpip.Address = tcpip.Address("\xc0\xa8\x2a\x10\xc0\xa8\x2a\x10\xc0\xa8\x2a\x10\xc0\xa8\x2a\x10")
)
// TestEndpointDoubleClose tests that closing an endpoint that has already been
// closed once will not panic. This is in response to a bug where a socketImpl
// (whose endpoint had already been closed) was cloned, resulting in a second
// socketImpl with a reference to the already closed endpoint. When this second
// socketImpl closes, it will attempt to close the endpoint (which is already
// closed) resulting in a panic.
func TestEndpointDoubleClose(t *testing.T) {
ns := newNetstack(t)
wq := &waiter.Queue{}
ep, err := ns.mu.stack.NewEndpoint(tcp.ProtocolNumber, ipv6.ProtocolNumber, wq)
if err != nil {
t.Fatalf("NewEndpoint = %s", err)
}
ios := &endpoint{
netProto: ipv6.ProtocolNumber,
transProto: tcp.ProtocolNumber,
wq: wq,
ep: ep,
loopReadDone: make(chan struct{}),
loopWriteDone: make(chan struct{}),
closing: make(chan struct{}),
}
{
localS, peerS, err := zx.NewSocket(uint32(zx.SocketStream))
if err != nil {
t.Fatalf("zx.NewSocket = %s", err)
}
ios.local = localS
ios.peer = peerS
}
// We set clones to 2 initially to make sure that resources only get
// cleaned up when the ref count drops from 1 to 0.
ios.clones = 2
if refcount := ios.close(); refcount != 1 {
t.Fatalf("got refcount = %d, want = 1", refcount)
}
select {
case <-ios.closing:
t.Fatal("ios.closing is closed")
default:
}
// Ref count is now 1 so when we call close again, it will cleanup
// associated resources.
if refcount := ios.close(); refcount != 0 {
t.Fatalf("got refcount = %d, want = 0", refcount)
}
select {
case <-ios.closing:
default:
t.Fatal("ios.closing is not closed")
}
// Set ref count to 1 so it drops to 0 and make sure we do not
// do the work of closing again, and therefore should not panic.
ios.clones = 1
if refcount := ios.close(); refcount != 0 {
t.Fatalf("got refcount = %d, want = 0", refcount)
}
}
func TestNicName(t *testing.T) {
ns := newNetstack(t)
eth := deviceForAddEth(ethernet.Info{}, t)
ifs, err := ns.addEth(testTopoPath, netstack.InterfaceConfig{Name: testDeviceName}, &eth)
if err != nil {
t.Fatal(err)
}
ifs.ns.mu.Lock()
name := ifs.ns.nameLocked(ifs.nicid)
ifs.ns.mu.Unlock()
if name != testDeviceName {
t.Fatalf("ifs.mu.name = %v, want = %v", name, testDeviceName)
}
}
func TestNotStartedByDefault(t *testing.T) {
ns := newNetstack(t)
startCalled := false
eth := deviceForAddEth(ethernet.Info{}, t)
eth.StartImpl = func() (int32, error) {
startCalled = true
return int32(zx.ErrOk), nil
}
if _, err := ns.addEth(testTopoPath, netstack.InterfaceConfig{Name: testDeviceName}, &eth); err != nil {
t.Fatal(err)
}
if startCalled {
t.Error("expected no calls to ethernet.Device.Start by addEth")
}
}
func TestMulticastPromiscuousModeEnabledByDefault(t *testing.T) {
ns := newNetstack(t)
multicastPromiscuousModeEnabled := false
eth := deviceForAddEth(ethernet.Info{}, t)
eth.ConfigMulticastSetPromiscuousModeImpl = func(enabled bool) (int32, error) {
multicastPromiscuousModeEnabled = enabled
return int32(zx.ErrOk), nil
}
if _, err := ns.addEth(testTopoPath, netstack.InterfaceConfig{Name: testDeviceName}, &eth); err != nil {
t.Fatal(err)
}
if !multicastPromiscuousModeEnabled {
t.Error("expected a call to ConfigMulticastSetPromiscuousMode(true) by addEth")
}
}
func TestDhcpConfiguration(t *testing.T) {
ns := newNetstack(t)
ipAddressConfig := netstack.IpAddressConfig{}
ipAddressConfig.SetDhcp(true)
d := deviceForAddEth(ethernet.Info{}, t)
d.StopImpl = func() error { return nil }
ifs, err := ns.addEth(testTopoPath, netstack.InterfaceConfig{Name: testDeviceName, IpAddressConfig: ipAddressConfig}, &d)
if err != nil {
t.Fatal(err)
}
ifs.ns.mu.Lock()
name := ifs.ns.nameLocked(ifs.nicid)
ifs.ns.mu.Unlock()
ifs.mu.Lock()
if ifs.mu.dhcp.Client == nil {
t.Error("no dhcp client")
}
if ifs.mu.dhcp.enabled {
t.Error("expected dhcp to be disabled")
}
if ifs.mu.dhcp.running() {
t.Error("expected dhcp client to be stopped initially")
}
ifs.setDHCPStatusLocked(name, true)
ifs.mu.Unlock()
ifs.eth.Up()
ifs.mu.Lock()
if !ifs.mu.dhcp.enabled {
t.Error("expected dhcp to be enabled")
}
if !ifs.mu.dhcp.running() {
t.Error("expected dhcp client to be running")
}
ifs.mu.Unlock()
ifs.eth.Down()
ifs.mu.Lock()
if ifs.mu.dhcp.running() {
t.Error("expected dhcp client to be stopped on eth down")
}
if !ifs.mu.dhcp.enabled {
t.Error("expected dhcp configuration to be preserved on eth down")
}
ifs.mu.Unlock()
ifs.eth.Up()
ifs.mu.Lock()
if !ifs.mu.dhcp.running() {
t.Error("expected dhcp client to be running on eth restart")
}
if !ifs.mu.dhcp.enabled {
t.Error("expected dhcp configuration to be preserved on eth restart")
}
ifs.mu.Unlock()
}
func TestUniqueFallbackNICNames(t *testing.T) {
ns := newNetstack(t)
d1 := deviceForAddEth(ethernet.Info{}, t)
ifs1, err := ns.addEth(testTopoPath, netstack.InterfaceConfig{}, &d1)
if err != nil {
t.Fatal(err)
}
d2 := deviceForAddEth(ethernet.Info{}, t)
ifs2, err := ns.addEth(testTopoPath, netstack.InterfaceConfig{}, &d2)
if err != nil {
t.Fatal(err)
}
ns.mu.Lock()
nicInfos := ns.mu.stack.NICInfo()
ns.mu.Unlock()
nicInfo1, ok := nicInfos[ifs1.nicid]
if !ok {
t.Fatalf("stack.NICInfo()[%d]: %s", ifs1.nicid, tcpip.ErrUnknownNICID)
}
nicInfo2, ok := nicInfos[ifs2.nicid]
if !ok {
t.Fatalf("stack.NICInfo()[%d]: %s", ifs2.nicid, tcpip.ErrUnknownNICID)
}
if nicInfo1.Name == nicInfo2.Name {
t.Fatalf("got (%+v).Name == (%+v).Name, want non-equal", nicInfo1, nicInfo2)
}
}
func TestStaticIPConfiguration(t *testing.T) {
ns := newNetstack(t)
addr := fidlconv.ToNetIpAddress(testV4Address)
ifAddr := stack.InterfaceAddress{IpAddress: addr, PrefixLen: 32}
d := deviceForAddEth(ethernet.Info{}, t)
d.StopImpl = func() error { return nil }
ifs, err := ns.addEth(testTopoPath, netstack.InterfaceConfig{Name: testDeviceName}, &d)
if err != nil {
t.Fatal(err)
}
ifs.ns.mu.Lock()
name := ifs.ns.nameLocked(ifs.nicid)
ifs.ns.mu.Unlock()
result := ns.addInterfaceAddr(uint64(ifs.nicid), ifAddr)
if result != stack.StackAddInterfaceAddressResultWithResponse(stack.StackAddInterfaceAddressResponse{}) {
t.Fatalf("got ns.addInterfaceAddr(%d, %#v) = %#v, want = Response()", ifs.nicid, ifAddr, result)
}
ifs.mu.Lock()
if info, err := ifs.toNetInterface2Locked(); err != nil {
t.Errorf("couldn't get interface info: %s", err)
} else if got := fidlconv.ToTCPIPAddress(info.Addr); got != testV4Address {
t.Errorf("got ifs.toNetInterface2Locked().Addr = %#v, want = %#v", got, testV4Address)
}
if ifs.mu.dhcp.enabled {
t.Error("expected dhcp state to be disabled initially")
}
ifs.mu.Unlock()
ifs.eth.Down()
ifs.mu.Lock()
if ifs.mu.dhcp.enabled {
t.Error("expected dhcp state to remain disabled after bringing interface down")
}
if ifs.mu.dhcp.running() {
t.Error("expected dhcp state to remain stopped after bringing interface down")
}
ifs.mu.Unlock()
ifs.eth.Up()
ifs.mu.Lock()
if ifs.mu.dhcp.enabled {
t.Error("expected dhcp state to remain disabled after restarting interface")
}
ifs.setDHCPStatusLocked(name, true)
if !ifs.mu.dhcp.enabled {
t.Error("expected dhcp state to become enabled after manually enabling it")
}
if !ifs.mu.dhcp.running() {
t.Error("expected dhcp state running")
}
ifs.mu.Unlock()
}
func TestWLANStaticIPConfiguration(t *testing.T) {
arena, err := eth.NewArena()
if err != nil {
t.Fatal(err)
}
ns := &Netstack{
arena: arena,
}
ns.mu.ifStates = make(map[tcpip.NICID]*ifState)
ns.mu.stack = tcpipstack.New(tcpipstack.Options{
NetworkProtocols: []tcpipstack.NetworkProtocol{
arp.NewProtocol(),
ipv4.NewProtocol(),
ipv6.NewProtocol(),
},
})
ns.OnInterfacesChanged = func([]netstack.NetInterface2) {}
addr := fidlconv.ToNetIpAddress(testV4Address)
ifAddr := stack.InterfaceAddress{IpAddress: addr, PrefixLen: 32}
d := deviceForAddEth(ethernet.Info{Features: ethernet.InfoFeatureWlan}, t)
ifs, err := ns.addEth(testTopoPath, netstack.InterfaceConfig{Name: testDeviceName}, &d)
if err != nil {
t.Fatal(err)
}
result := ns.addInterfaceAddr(uint64(ifs.nicid), ifAddr)
if result != stack.StackAddInterfaceAddressResultWithResponse(stack.StackAddInterfaceAddressResponse{}) {
t.Fatalf("got ns.addInterfaceAddr(%d, %#v) = %#v, want = Response()", ifs.nicid, ifAddr, result)
}
if info, err := ifs.toNetInterface2Locked(); err != nil {
t.Errorf("couldn't get interface info: %s", err)
} else if got := fidlconv.ToTCPIPAddress(info.Addr); got != testV4Address {
t.Errorf("got ifs.toNetInterface2Locked().Addr = %#v, want = %#v", got, testV4Address)
}
}
func newNetstack(t *testing.T) *Netstack {
arena, err := eth.NewArena()
if err != nil {
t.Fatal(err)
}
ns := &Netstack{
arena: arena,
}
ns.mu.ifStates = make(map[tcpip.NICID]*ifState)
ns.mu.stack = tcpipstack.New(tcpipstack.Options{
NetworkProtocols: []tcpipstack.NetworkProtocol{
arp.NewProtocol(),
ipv4.NewProtocol(),
ipv6.NewProtocol(),
},
TransportProtocols: []tcpipstack.TransportProtocol{
tcp.NewProtocol(),
},
})
// We need to initialize the DNS client, since adding/removing interfaces
// sets the DNS servers on that interface, which requires that dnsClient
// exist.
ns.dnsClient = dns.NewClient(ns.mu.stack)
ns.OnInterfacesChanged = func([]netstack.NetInterface2) {}
return ns
}
func getInterfaceAddresses(t *testing.T, ni *stackImpl, nicid tcpip.NICID) []tcpip.AddressWithPrefix {
t.Helper()
interfaces, err := ni.ListInterfaces()
if err != nil {
t.Fatalf("ni.ListInterfaces() failed: %s", err)
}
info, found := stack.InterfaceInfo{}, false
for _, i := range interfaces {
if tcpip.NICID(i.Id) == nicid {
info = i
found = true
break
}
}
if !found {
t.Fatalf("couldn't find NICID=%d in %+v", nicid, interfaces)
}
addrs := make([]tcpip.AddressWithPrefix, 0, len(info.Properties.Addresses))
for _, a := range info.Properties.Addresses {
addrs = append(addrs, tcpip.AddressWithPrefix{
Address: fidlconv.ToTCPIPAddress(a.IpAddress),
PrefixLen: int(a.PrefixLen),
})
}
return addrs
}
func compareInterfaceAddresses(t *testing.T, got, want []tcpip.AddressWithPrefix) {
t.Helper()
sort.Slice(got, func(i, j int) bool { return got[i].Address < got[j].Address })
sort.Slice(want, func(i, j int) bool { return want[i].Address < want[j].Address })
if diff := cmp.Diff(got, want); diff != "" {
t.Errorf("Interface addresses mismatch (-want +got):\n%s", diff)
}
}
func TestNetstackImpl_GetInterfaces2(t *testing.T) {
ns := newNetstack(t)
ni := &netstackImpl{ns: ns}
d := deviceForAddEth(ethernet.Info{}, t)
if _, err := ns.addEth(testTopoPath, netstack.InterfaceConfig{}, &d); err != nil {
t.Fatal(err)
}
interfaces, err := ni.GetInterfaces2()
if err != nil {
t.Fatal(err)
}
if l := len(interfaces); l == 0 {
t.Fatalf("got len(GetInterfaces2()) = %d, want != %d", l, l)
}
var expectedAddr fidlnet.IpAddress
expectedAddr.SetIpv4(fidlnet.Ipv4Address{})
for _, iface := range interfaces {
if iface.Addr != expectedAddr {
t.Errorf("got interface %+v, want Addr = %+v", iface, expectedAddr)
}
if iface.Netmask != expectedAddr {
t.Errorf("got interface %+v, want NetMask = %+v", iface, expectedAddr)
}
}
}
// Test adding a list of both IPV4 and IPV6 addresses and then removing them
// again one-by-one.
func TestListInterfaceAddresses(t *testing.T) {
ns := newNetstack(t)
ni := &stackImpl{ns: ns}
d := deviceForAddEth(ethernet.Info{}, t)
ifState, err := ns.addEth(testTopoPath, netstack.InterfaceConfig{}, &d)
if err != nil {
t.Fatal(err)
}
// The call to ns.addEth() added addresses to the stack. Make sure we include
// those in our want list.
wantAddrs := getInterfaceAddresses(t, ni, ifState.nicid)
testAddresses := []tcpip.AddressWithPrefix{
{"\x01\x01\x01\x01", 32},
{"\x02\x02\x02\x02", 24},
{"\x03\x03\x03\x03", 16},
{"\x04\x04\x04\x04", 8},
{"\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01", 128},
{"\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02", 64},
{"\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03", 32},
{"\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04\x04", 8},
}
t.Run("Add", func(t *testing.T) {
for _, addr := range testAddresses {
t.Run(addr.String(), func(t *testing.T) {
ifAddr := stack.InterfaceAddress{
IpAddress: fidlconv.ToNetIpAddress(addr.Address),
PrefixLen: uint8(addr.PrefixLen),
}
result, err := ni.AddInterfaceAddress(uint64(ifState.nicid), ifAddr)
AssertNoError(t, err)
if result != stack.StackAddInterfaceAddressResultWithResponse(stack.StackAddInterfaceAddressResponse{}) {
t.Fatalf("got ni.AddInterfaceAddress(%d, %#v) = %#v, want = Response()", ifState.nicid, ifAddr, result)
}
wantAddrs = append(wantAddrs, addr)
gotAddrs := getInterfaceAddresses(t, ni, ifState.nicid)
compareInterfaceAddresses(t, gotAddrs, wantAddrs)
})
}
})
t.Run("Remove", func(t *testing.T) {
for _, addr := range testAddresses {
t.Run(addr.String(), func(t *testing.T) {
ifAddr := stack.InterfaceAddress{
IpAddress: fidlconv.ToNetIpAddress(addr.Address),
PrefixLen: uint8(addr.PrefixLen),
}
result, err := ni.DelInterfaceAddress(uint64(ifState.nicid), ifAddr)
AssertNoError(t, err)
if result != stack.StackDelInterfaceAddressResultWithResponse(stack.StackDelInterfaceAddressResponse{}) {
t.Fatalf("got ni.DelInterfaceAddress(%d, %#v) = %#v, want = Response()", ifState.nicid, ifAddr, result)
}
// Remove address from list.
for i, a := range wantAddrs {
if a == addr {
wantAddrs = append(wantAddrs[:i], wantAddrs[i+1:]...)
break
}
}
gotAddrs := getInterfaceAddresses(t, ni, ifState.nicid)
compareInterfaceAddresses(t, gotAddrs, wantAddrs)
})
}
})
}
// Test that adding an address with one prefix and then adding the same address
// but with a different prefix will simply replace the first address.
func TestAddAddressesThenChangePrefix(t *testing.T) {
ns := newNetstack(t)
ni := &stackImpl{ns: ns}
d := deviceForAddEth(ethernet.Info{}, t)
ifState, err := ns.addEth(testTopoPath, netstack.InterfaceConfig{}, &d)
if err != nil {
t.Fatal(err)
}
// The call to ns.addEth() added addresses to the stack. Make sure we include
// those in our want list.
initialAddrs := getInterfaceAddresses(t, ni, ifState.nicid)
// Add address.
addr := tcpip.AddressWithPrefix{"\x01\x01\x01\x01", 8}
ifAddr := stack.InterfaceAddress{
IpAddress: fidlconv.ToNetIpAddress(addr.Address),
PrefixLen: uint8(addr.PrefixLen),
}
result, err := ni.AddInterfaceAddress(uint64(ifState.nicid), ifAddr)
AssertNoError(t, err)
if result != stack.StackAddInterfaceAddressResultWithResponse(stack.StackAddInterfaceAddressResponse{}) {
t.Fatalf("got ni.AddInterfaceAddress(%d, %#v) = %#v, want = Response()", ifState.nicid, ifAddr, result)
}
wantAddrs := append(initialAddrs, addr)
gotAddrs := getInterfaceAddresses(t, ni, ifState.nicid)
compareInterfaceAddresses(t, gotAddrs, wantAddrs)
// Add the same address with a different prefix.
addr.PrefixLen *= 2
ifAddr.PrefixLen *= 2
result, err = ni.AddInterfaceAddress(uint64(ifState.nicid), ifAddr)
AssertNoError(t, err)
if result != stack.StackAddInterfaceAddressResultWithResponse(stack.StackAddInterfaceAddressResponse{}) {
t.Fatalf("got ni.AddInterfaceAddress(%d, %#v) = %#v, want = Response()", ifState.nicid, ifAddr, result)
}
wantAddrs = append(initialAddrs, addr)
gotAddrs = getInterfaceAddresses(t, ni, ifState.nicid)
compareInterfaceAddresses(t, gotAddrs, wantAddrs)
}
func TestAddRouteParameterValidation(t *testing.T) {
ns := newNetstack(t)
d := deviceForAddEth(ethernet.Info{}, t)
addr := tcpip.ProtocolAddress{
Protocol: ipv4.ProtocolNumber,
AddressWithPrefix: tcpip.AddressWithPrefix{
Address: tcpip.Address("\xf0\xf0\xf0\xf0"),
PrefixLen: 24,
},
}
subnetLocalAddress := tcpip.Address("\xf0\xf0\xf0\xf1")
ifState, err := ns.addEth(testTopoPath, netstack.InterfaceConfig{}, &d)
if err != nil {
t.Fatalf("got ns.addEth(_) = _, %s want = _, nil", err)
}
found, err := ns.addInterfaceAddress(ifState.nicid, addr)
if err != nil {
t.Fatalf("ns.addInterfaceAddress(%d, %s) = _, %s", ifState.nicid, addr.AddressWithPrefix, err)
}
if !found {
t.Fatalf("ns.addInterfaceAddress(%d, %s) = %t, _", ifState.nicid, addr.AddressWithPrefix, found)
}
tests := []struct {
name string
route tcpip.Route
metric routes.Metric
dynamic bool
shouldError bool
}{
{
name: "IPv4 destination no NIC invalid gateway",
route: tcpip.Route{
Destination: util.PointSubnet(testV4Address),
Gateway: testV4Address,
NIC: 0,
},
metric: routes.Metric(0),
shouldError: true,
},
{
name: "IPv6 destination no NIC invalid gateway",
route: tcpip.Route{
Destination: util.PointSubnet(testV6Address),
Gateway: testV6Address,
NIC: 0,
},
metric: routes.Metric(0),
shouldError: true,
},
{
name: "IPv4 destination no NIC valid gateway",
route: tcpip.Route{
Destination: util.PointSubnet(testV4Address),
Gateway: subnetLocalAddress,
NIC: 0,
},
},
{
name: "zero length gateway",
route: tcpip.Route{
Destination: util.PointSubnet(testV4Address),
NIC: ifState.nicid,
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
err := ns.AddRoute(test.route, test.metric, test.dynamic)
if got := err != nil; got != test.shouldError {
t.Logf("err = %v", err)
t.Errorf("got (ns.AddRoute(_) != nil) = %t, want = %t", got, test.shouldError)
}
})
}
}
func TestDHCPAcquired(t *testing.T) {
ns := newNetstack(t)
d := deviceForAddEth(ethernet.Info{}, t)
ifState, err := ns.addEth(testTopoPath, netstack.InterfaceConfig{}, &d)
if err != nil {
t.Fatal(err)
}
serverAddress := []byte(testV4Address)
serverAddress[len(serverAddress)-1]++
gatewayAddress := serverAddress
gatewayAddress[len(gatewayAddress)-1]++
const defaultLeaseLength = 60 * time.Second
defaultMask := net.IP(testV4Address).DefaultMask()
prefixLen, _ := defaultMask.Size()
destination1, err := tcpip.NewSubnet(util.Parse("192.168.42.0"), tcpip.AddressMask(util.Parse("255.255.255.0")))
if err != nil {
t.Fatal(err)
}
destination2, err := tcpip.NewSubnet(util.Parse("0.0.0.0"), tcpip.AddressMask(util.Parse("0.0.0.0")))
if err != nil {
t.Fatal(err)
}
destination3, err := tcpip.NewSubnet(util.Parse("::"), tcpip.AddressMask(util.Parse("::")))
if err != nil {
t.Fatal(err)
}
tests := []struct {
name string
oldAddr, newAddr tcpip.AddressWithPrefix
config dhcp.Config
expectedRouteTable []routes.ExtendedRoute
}{
{
name: "subnet mask provided",
oldAddr: tcpip.AddressWithPrefix{},
newAddr: tcpip.AddressWithPrefix{
Address: testV4Address,
PrefixLen: prefixLen,
},
config: dhcp.Config{
ServerAddress: tcpip.Address(serverAddress),
Gateway: tcpip.Address(serverAddress),
SubnetMask: tcpip.AddressMask(defaultMask),
DNS: []tcpip.Address{tcpip.Address(gatewayAddress)},
LeaseLength: defaultLeaseLength,
},
expectedRouteTable: []routes.ExtendedRoute{
{
Route: tcpip.Route{
Destination: destination1,
NIC: 1,
},
Metric: 0,
MetricTracksInterface: true,
Dynamic: true,
Enabled: false,
},
{
Route: tcpip.Route{
Destination: destination2,
Gateway: util.Parse("192.168.42.18"),
NIC: 1,
},
Metric: 0,
MetricTracksInterface: true,
Dynamic: true,
Enabled: false,
},
{
Route: tcpip.Route{
Destination: destination3,
NIC: 1,
},
Metric: 0,
MetricTracksInterface: true,
Dynamic: true,
Enabled: false,
},
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
// save current route table for later
originalRouteTable := ifState.ns.GetExtendedRouteTable()
// Update the DHCP address to the given test values and verify it took
// effect.
ifState.dhcpAcquired(test.oldAddr, test.newAddr, test.config)
if diff := cmp.Diff(ifState.mu.dnsServers, test.config.DNS); diff != "" {
t.Errorf("ifState.mu.dnsServers mismatch (-want +got):\n%s", diff)
}
if diff := cmp.Diff(ifState.ns.GetExtendedRouteTable(), test.expectedRouteTable, cmp.AllowUnexported(tcpip.Subnet{})); diff != "" {
t.Errorf("GetExtendedRouteTable() mismatch (-want +got):\n%s", diff)
}
ns.mu.Lock()
infoMap := ns.mu.stack.NICInfo()
ns.mu.Unlock()
if info, ok := infoMap[ifState.nicid]; ok {
found := false
for _, address := range info.ProtocolAddresses {
if address.Protocol == ipv4.ProtocolNumber {
switch address.AddressWithPrefix {
case test.oldAddr:
t.Errorf("expired address %s was not removed from NIC addresses %v", test.oldAddr, info.ProtocolAddresses)
case test.newAddr:
found = true
}
}
}
if !found {
t.Errorf("new address %s was not added to NIC addresses %v", test.newAddr, info.ProtocolAddresses)
}
} else {
t.Errorf("NIC %d not found in %v", ifState.nicid, infoMap)
}
// Remove the address and verify everything is cleaned up correctly.
remAddr := test.newAddr
ifState.dhcpAcquired(remAddr, tcpip.AddressWithPrefix{}, dhcp.Config{})
if diff := cmp.Diff(ifState.mu.dnsServers, ifState.mu.dnsServers[:0]); diff != "" {
t.Errorf("ifState.mu.dnsServers mismatch (-want +got):\n%s", diff)
}
if diff := cmp.Diff(ifState.ns.GetExtendedRouteTable(), originalRouteTable); diff != "" {
t.Errorf("GetExtendedRouteTable() mismatch (-want +got):\n%s", diff)
}
ns.mu.Lock()
infoMap = ns.mu.stack.NICInfo()
ns.mu.Unlock()
if info, ok := infoMap[ifState.nicid]; ok {
for _, address := range info.ProtocolAddresses {
if address.Protocol == ipv4.ProtocolNumber {
if address.AddressWithPrefix == remAddr {
t.Errorf("address %s/%d was not removed from NIC addresses %v", remAddr.Address, remAddr.PrefixLen, info.ProtocolAddresses)
}
}
}
} else {
t.Errorf("NIC %d not found in %v", ifState.nicid, infoMap)
}
})
}
}
// Returns an ethernetext.Device struct that implements
// ethernet.Device and can be started and stopped.
//
// Reports the passed in ethernet.Info when Device#GetInfo is called.
func deviceForAddEth(info ethernet.Info, t *testing.T) ethernetext.Device {
return ethernetext.Device{
TB: t,
GetInfoImpl: func() (ethernet.Info, error) { return info, nil },
SetClientNameImpl: func(string) (int32, error) { return 0, nil },
GetStatusImpl: func() (uint32, error) {
return uint32(eth.LinkUp), nil
},
GetFifosImpl: func() (int32, *ethernet.Fifos, error) {
return int32(zx.ErrOk), &ethernet.Fifos{
TxDepth: 1,
}, nil
},
SetIoBufferImpl: func(zx.VMO) (int32, error) {
return int32(zx.ErrOk), nil
},
StartImpl: func() (int32, error) {
return int32(zx.ErrOk), nil
},
ConfigMulticastSetPromiscuousModeImpl: func(bool) (int32, error) {
return int32(zx.ErrOk), nil
},
}
}