Module Name: src
Committed By: ozaki-r
Date: Mon Aug 3 09:54:20 UTC 2015
Modified Files:
src/distrib/sets/lists/tests: mi
src/etc/mtree: NetBSD.dist.tests
src/tests/net: Makefile
Added Files:
src/tests/net/ndp: Makefile t_dad.sh t_ndp.sh
Log Message:
Add tests for NDP
To generate a diff of this commit:
cvs rdiff -u -r1.637 -r1.638 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.117 -r1.118 src/etc/mtree/NetBSD.dist.tests
cvs rdiff -u -r1.24 -r1.25 src/tests/net/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/net/ndp/Makefile src/tests/net/ndp/t_dad.sh \
src/tests/net/ndp/t_ndp.sh
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/sets/lists/tests/mi
diff -u src/distrib/sets/lists/tests/mi:1.637 src/distrib/sets/lists/tests/mi:1.638
--- src/distrib/sets/lists/tests/mi:1.637 Thu Jul 30 02:52:53 2015
+++ src/distrib/sets/lists/tests/mi Mon Aug 3 09:54:20 2015
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.637 2015/07/30 02:52:53 ozaki-r Exp $
+# $NetBSD: mi,v 1.638 2015/08/03 09:54:20 ozaki-r Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
@@ -3180,6 +3180,11 @@
./usr/tests/net/net/t_tcp tests-net-tests compattestfile,atf
./usr/tests/net/net/t_udp tests-net-tests compattestfile,atf
./usr/tests/net/net/t_unix tests-net-tests compattestfile,atf
+./usr/tests/net/ndp tests-net-tests compattestfile,atf
+./usr/tests/net/ndp/Atffile tests-net-tests atf,rump
+./usr/tests/net/ndp/Kyuafile tests-net-tests atf,rump,kyua
+./usr/tests/net/ndp/t_ndp tests-net-tests atf,rump
+./usr/tests/net/ndp/t_dad tests-net-tests atf,rump
./usr/tests/net/npf tests-net-tests compattestfile,atf
./usr/tests/net/npf/Atffile tests-net-tests atf,rump
./usr/tests/net/npf/Kyuafile tests-net-tests atf,rump,kyua
Index: src/etc/mtree/NetBSD.dist.tests
diff -u src/etc/mtree/NetBSD.dist.tests:1.117 src/etc/mtree/NetBSD.dist.tests:1.118
--- src/etc/mtree/NetBSD.dist.tests:1.117 Wed Jul 29 06:10:10 2015
+++ src/etc/mtree/NetBSD.dist.tests Mon Aug 3 09:54:20 2015
@@ -1,4 +1,4 @@
-# $NetBSD: NetBSD.dist.tests,v 1.117 2015/07/29 06:10:10 ozaki-r Exp $
+# $NetBSD: NetBSD.dist.tests,v 1.118 2015/08/03 09:54:20 ozaki-r Exp $
./usr/libdata/debug/usr/tests
./usr/libdata/debug/usr/tests/atf
@@ -321,6 +321,7 @@
./usr/tests/net/mcast
./usr/tests/net/mpls
./usr/tests/net/net
+./usr/tests/net/ndp
./usr/tests/net/npf
./usr/tests/net/route
./usr/tests/net/sys
Index: src/tests/net/Makefile
diff -u src/tests/net/Makefile:1.24 src/tests/net/Makefile:1.25
--- src/tests/net/Makefile:1.24 Wed Jul 29 12:05:10 2015
+++ src/tests/net/Makefile Mon Aug 3 09:54:20 2015
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.24 2015/07/29 12:05:10 ozaki-r Exp $
+# $NetBSD: Makefile,v 1.25 2015/08/03 09:54:20 ozaki-r Exp $
.include <bsd.own.mk>
@@ -7,7 +7,7 @@ TESTSDIR= ${TESTSBASE}/net
TESTS_SUBDIRS= fdpass in_cksum net sys
.if (${MKRUMP} != "no") && !defined(BSD_MK_COMPAT_FILE)
TESTS_SUBDIRS+= arp bpf bpfilter carp icmp if if_bridge if_loop mcast
-TESTS_SUBDIRS+= mpls npf route
+TESTS_SUBDIRS+= mpls ndp npf route
.if (${MKSLJIT} != "no")
TESTS_SUBDIRS+= bpfjit
.endif
Added files:
Index: src/tests/net/ndp/Makefile
diff -u /dev/null src/tests/net/ndp/Makefile:1.1
--- /dev/null Mon Aug 3 09:54:21 2015
+++ src/tests/net/ndp/Makefile Mon Aug 3 09:54:20 2015
@@ -0,0 +1,11 @@
+# $NetBSD: Makefile,v 1.1 2015/08/03 09:54:20 ozaki-r Exp $
+#
+
+.include <bsd.own.mk>
+
+TESTSDIR= ${TESTSBASE}/net/ndp
+
+TESTS_SH= t_dad
+TESTS_SH+= t_ndp
+
+.include <bsd.test.mk>
Index: src/tests/net/ndp/t_dad.sh
diff -u /dev/null src/tests/net/ndp/t_dad.sh:1.1
--- /dev/null Mon Aug 3 09:54:21 2015
+++ src/tests/net/ndp/t_dad.sh Mon Aug 3 09:54:20 2015
@@ -0,0 +1,227 @@
+# $NetBSD: t_dad.sh,v 1.1 2015/08/03 09:54:20 ozaki-r Exp $
+#
+# Copyright (c) 2015 The NetBSD Foundation, Inc.
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in the
+# documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+
+inetserver="rump_server -lrumpnet -lrumpnet_net -lrumpnet_netinet"
+inetserver="$inetserver -lrumpnet_netinet6 -lrumpnet_shmif"
+HIJACKING="env LD_PRELOAD=/usr/lib/librumphijack.so RUMPHIJACK=sysctl=yes"
+
+SOCKLOCAL=unix://commsock1
+SOCKPEER=unix://commsock2
+
+DEBUG=false
+
+atf_test_case dad_basic cleanup
+atf_test_case dad_duplicated cleanup
+
+dad_basic_head()
+{
+ atf_set "descr" "Tests for IPv6 DAD basic behavior"
+ atf_set "require.progs" "rump_server"
+}
+
+dad_duplicated_head()
+{
+ atf_set "descr" "Tests for IPv6 DAD duplicated state"
+ atf_set "require.progs" "rump_server"
+}
+
+setup_server()
+{
+ local sock=$1
+ local ip=$2
+
+ export RUMP_SERVER=$sock
+
+ atf_check -s exit:0 rump.ifconfig shmif0 create
+ atf_check -s exit:0 rump.ifconfig shmif0 linkstr bus1
+ atf_check -s exit:0 rump.ifconfig shmif0 inet6 $ip
+ atf_check -s exit:0 rump.ifconfig shmif0 up
+ atf_check -s exit:0 rump.ifconfig -w 10
+
+ $DEBUG && rump.ifconfig shmif0
+}
+
+make_ns_pkt_str()
+{
+ local id=$1
+ local target=$2
+ pkt="33:33:ff:00:00:0${id}, ethertype IPv6 (0x86dd), length 78: ::"
+ pkt="$pkt > ff02::1:ff00:${id}: ICMP6, neighbor solicitation,"
+ pkt="$pkt who has $target, length 24"
+ echo $pkt
+}
+
+dad_basic_body()
+{
+ local pkt=
+ local localip1=fc00::1
+ local localip2=fc00::2
+ local localip3=fc00::3
+
+ atf_check -s exit:0 ${inetserver} $SOCKLOCAL
+ export RUMP_SERVER=$SOCKLOCAL
+
+ atf_check -s exit:0 rump.ifconfig shmif0 create
+ atf_check -s exit:0 rump.ifconfig shmif0 linkstr bus1
+ atf_check -s exit:0 rump.ifconfig shmif0 inet6 $localip1
+ atf_check -s exit:0 rump.ifconfig shmif0 inet6 $localip2
+ atf_check -s exit:0 rump.ifconfig shmif0 up
+ $DEBUG && rump.ifconfig shmif0
+
+ #atf_check -s exit:0 sleep 1
+
+ # The primary address is not tentative from the beginning
+ atf_check -s not-exit:0 -x "rump.ifconfig shmif0 |grep $localip1 |grep -q tentative"
+ # The alias address is still tentative
+ atf_check -s exit:0 -x "rump.ifconfig shmif0 |grep $localip2 |grep -q tentative"
+
+ shmif_dumpbus -p - bus1 2>/dev/null| tcpdump -n -e -r - > ./out
+
+ # Check DAD probe packets (Neighbor Solicitation Message)
+ pkt=$(make_ns_pkt_str 2 $localip2)
+ atf_check -s exit:0 -x "cat ./out |grep -q '$pkt'"
+ # No DAD for the primary address
+ pkt=$(make_ns_pkt_str 1 $localip1)
+ atf_check -s not-exit:0 -x "cat ./out |grep -q '$pkt'"
+
+ # Waiting for DAD complete
+ atf_check -s exit:0 rump.ifconfig -w 10
+ shmif_dumpbus -p - bus1 2>/dev/null| tcpdump -n -e -r - |tail -1 > ./out
+
+ # IPv6 DAD doesn't announce (Neighbor Advertisement Message)
+
+ # The alias address left tentative
+ atf_check -s not-exit:0 -x "rump.ifconfig shmif0 |grep $localip2 |grep -q tentative"
+
+ #
+ # Add a new address on the fly
+ #
+ atf_check -s exit:0 rump.ifconfig shmif0 inet6 $localip3
+
+ #atf_check -s exit:0 sleep 1
+
+ # The new address is still tentative
+ atf_check -s exit:0 -x "rump.ifconfig shmif0 |grep $localip3 |grep -q tentative"
+
+ # Check DAD probe packets (Neighbor Solicitation Message)
+ shmif_dumpbus -p - bus1 2>/dev/null| tcpdump -n -e -r - |tail -1 > ./out
+ pkt=$(make_ns_pkt_str 3 $localip3)
+ atf_check -s exit:0 -x "cat ./out |grep -q '$pkt'"
+
+ # Waiting for DAD complete
+ atf_check -s exit:0 rump.ifconfig -w 10
+ shmif_dumpbus -p - bus1 2>/dev/null| tcpdump -n -e -r - |tail -1 > ./out
+
+ # IPv6 DAD doesn't announce (Neighbor Advertisement Message)
+
+ # The new address left tentative
+ atf_check -s not-exit:0 -x "rump.ifconfig shmif0 |grep $localip3 |grep -q tentative"
+}
+
+dad_duplicated_body()
+{
+ local localip1=fc00::1
+ local localip2=fc00::11
+ local peerip=fc00::2
+
+ atf_check -s exit:0 ${inetserver} $SOCKLOCAL
+ atf_check -s exit:0 ${inetserver} $SOCKPEER
+
+ setup_server $SOCKLOCAL $localip1
+ setup_server $SOCKPEER $peerip
+
+ export RUMP_SERVER=$SOCKLOCAL
+
+ # The primary address isn't marked as duplicated
+ atf_check -s not-exit:0 -x "rump.ifconfig shmif0 |grep $localip1 |grep -q duplicated"
+
+ #
+ # Add a new address duplicated with the peer server
+ #
+ atf_check -s exit:0 rump.ifconfig shmif0 inet6 $peerip
+ atf_check -s exit:0 sleep 1
+
+ # The new address is marked as duplicated
+ atf_check -s exit:0 -x "rump.ifconfig shmif0 |grep $peerip |grep -q duplicated"
+
+ # A unique address isn't marked as duplicated
+ atf_check -s exit:0 rump.ifconfig shmif0 inet6 $localip2
+ atf_check -s exit:0 sleep 1
+ atf_check -s not-exit:0 -x "rump.ifconfig shmif0 |grep $localip2 |grep -q duplicated"
+}
+
+cleanup()
+{
+ gdb -ex bt /usr/bin/rump_server rump_server.core
+ gdb -ex bt /usr/sbin/arp arp.core
+ env RUMP_SERVER=$SOCKLOCAL rump.halt
+ env RUMP_SERVER=$SOCKPEER rump.halt
+}
+
+dump_local()
+{
+ export RUMP_SERVER=$SOCKLOCAL
+ rump.netstat -nr
+ rump.arp -n -a
+ rump.ifconfig
+ $HIJACKING dmesg
+}
+
+dump_peer()
+{
+ export RUMP_SERVER=$SOCKPEER
+ rump.netstat -nr
+ rump.arp -n -a
+ rump.ifconfig
+ $HIJACKING dmesg
+}
+
+dump()
+{
+ dump_local
+ dump_peer
+ shmif_dumpbus -p - bus1 2>/dev/null| tcpdump -n -e -r -
+}
+
+dad_basic_cleanup()
+{
+ $DEBUG && dump_local
+ $DEBUG && shmif_dumpbus -p - bus1 2>/dev/null| tcpdump -n -e -r -
+ env RUMP_SERVER=$SOCKLOCAL rump.halt
+}
+
+dad_duplicated_cleanup()
+{
+ $DEBUG && dump
+ env RUMP_SERVER=$SOCKLOCAL rump.halt
+}
+
+atf_init_test_cases()
+{
+ atf_add_test_case dad_basic
+ atf_add_test_case dad_duplicated
+}
Index: src/tests/net/ndp/t_ndp.sh
diff -u /dev/null src/tests/net/ndp/t_ndp.sh:1.1
--- /dev/null Mon Aug 3 09:54:21 2015
+++ src/tests/net/ndp/t_ndp.sh Mon Aug 3 09:54:20 2015
@@ -0,0 +1,286 @@
+# $NetBSD: t_ndp.sh,v 1.1 2015/08/03 09:54:20 ozaki-r Exp $
+#
+# Copyright (c) 2015 The NetBSD Foundation, Inc.
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in the
+# documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+
+inetserver="rump_server -lrumpnet -lrumpnet_net -lrumpnet_netinet"
+inetserver="$inetserver -lrumpnet_netinet6 -lrumpnet_shmif"
+HIJACKING="env LD_PRELOAD=/usr/lib/librumphijack.so RUMPHIJACK=sysctl=yes"
+
+SOCKSRC=unix://commsock1
+SOCKDST=unix://commsock2
+IP6SRC=fc00::1
+IP6DST=fc00::2
+
+DEBUG=true
+TIMEOUT=1
+
+atf_test_case cache_expiration cleanup
+atf_test_case command cleanup
+atf_test_case cache_overwriting cleanup
+
+cache_expiration()
+{
+ atf_set "descr" "Tests for NDP cache expiration"
+ atf_set "require.progs" "rump_server"
+}
+
+command_head()
+{
+ atf_set "descr" "Tests for commands of ndp(8)"
+ atf_set "require.progs" "rump_server"
+}
+
+cache_overwriting_head()
+{
+ atf_set "descr" "Tests for behavior of overwriting NDP caches"
+ atf_set "require.progs" "rump_server"
+}
+
+setup_dst_server()
+{
+ export RUMP_SERVER=$SOCKDST
+ atf_check -s exit:0 rump.ifconfig shmif0 create
+ atf_check -s exit:0 rump.ifconfig shmif0 linkstr bus1
+ atf_check -s exit:0 rump.ifconfig shmif0 inet6 $IP6DST
+ atf_check -s exit:0 rump.ifconfig shmif0 up
+ atf_check -s exit:0 rump.ifconfig -w 10
+
+ $DEBUG && rump.ifconfig shmif0
+ $DEBUG && rump.ndp -n -a
+}
+
+setup_src_server()
+{
+ $DEBUG && ulimit -c unlimited
+ export RUMP_SERVER=$SOCKSRC
+
+ # Setup an interface
+ atf_check -s exit:0 rump.ifconfig shmif0 create
+ atf_check -s exit:0 rump.ifconfig shmif0 linkstr bus1
+ atf_check -s exit:0 rump.ifconfig shmif0 inet6 $IP6SRC
+ atf_check -s exit:0 rump.ifconfig shmif0 up
+ atf_check -s exit:0 rump.ifconfig -w 10
+
+ # Sanity check
+ $DEBUG && rump.ifconfig shmif0
+ $DEBUG && rump.ndp -n -a
+ atf_check -s exit:0 -o ignore rump.ndp -n $IP6SRC
+ atf_check -s not-exit:0 -o ignore -e ignore rump.ndp -n $IP6DST
+}
+
+get_timeout()
+{
+ local timeout=$(env RUMP_SERVER=$SOCKSRC rump.ndp -n $IP6DST |grep $IP6DST|awk '{print $4;}')
+ timeout=${timeout%s}
+ echo $timeout
+}
+
+cache_expiration_body()
+{
+ atf_check -s exit:0 ${inetserver} $SOCKSRC
+ atf_check -s exit:0 ${inetserver} $SOCKDST
+
+ setup_dst_server
+ setup_src_server
+
+ #
+ # Check if a cache is expired expectedly
+ #
+ export RUMP_SERVER=$SOCKSRC
+ #atf_check -s exit:0 -o ignore $HIJACKING ping6 -n -X $TIMEOUT -c 1 $IP6DST
+ export LD_PRELOAD=/usr/lib/librumphijack.so
+ atf_check -s exit:0 -o ignore ping6 -n -X $TIMEOUT -c 1 $IP6DST
+ unset LD_PRELOAD
+
+ $DEBUG && rump.ndp -n -a
+ atf_check -s exit:0 -o match:'permanent' rump.ndp -n $IP6SRC
+ # Should be cached
+ atf_check -s exit:0 -o not-match:'permanent' rump.ndp -n $IP6DST
+
+ timeout=$(get_timeout $IP6DST)
+
+ atf_check -s exit:0 sleep $(($timeout + 1))
+
+ $DEBUG && rump.ndp -n -a
+ atf_check -s exit:0 -o match:'permanent' rump.ndp -n $IP6SRC
+ # Expired but remains until GC sweaps it (1 day)
+ atf_check -s exit:0 -o match:'23h59m' rump.ndp -n $IP6DST
+}
+
+command_body()
+{
+ atf_check -s exit:0 ${inetserver} $SOCKSRC
+ atf_check -s exit:0 ${inetserver} $SOCKDST
+
+ setup_dst_server
+ setup_src_server
+
+ export RUMP_SERVER=$SOCKSRC
+
+ # Add and delete a static entry
+ $DEBUG && rump.ndp -n -a
+ atf_check -s exit:0 -o ignore rump.ndp -s fc00::10 b2:a0:20:00:00:10
+ $DEBUG && rump.ndp -n -a
+ atf_check -s exit:0 -o match:'permanent' rump.ndp -n fc00::10
+ atf_check -s exit:0 -o ignore rump.ndp -d fc00::10
+ $DEBUG && rump.ndp -n -a
+ atf_check -s not-exit:0 -o ignore -e ignore rump.ndp -n fc00::10
+
+ # Add multiple entries via a file (XXX not implemented)
+ #cat - > ./list <<-EOF
+ #fc00::11 b2:a0:20:00:00:11
+ #fc00::12 b2:a0:20:00:00:12
+ #fc00::13 b2:a0:20:00:00:13
+ #fc00::14 b2:a0:20:00:00:14
+ #fc00::15 b2:a0:20:00:00:15
+ #EOF
+ #$DEBUG && rump.ndp -n -a
+ #atf_check -s exit:0 -o ignore rump.ndp -f ./list
+ #$DEBUG && rump.ndp -n -a
+
+ export LD_PRELOAD=/usr/lib/librumphijack.so
+ atf_check -s exit:0 -o ignore ping6 -n -X $TIMEOUT -c 1 $IP6DST
+ unset LD_PRELOAD
+ atf_check -s exit:0 -o ignore rump.ndp -s fc00::11 b2:a0:20:00:00:11
+ atf_check -s exit:0 -o ignore rump.ndp -s fc00::12 b2:a0:20:00:00:12
+
+ atf_check -s exit:0 -o not-match:'permanent' rump.ndp -n $IP6DST
+ atf_check -s exit:0 -o match:'permanent' rump.ndp -n fc00::11
+ atf_check -s exit:0 -o match:'permanent' rump.ndp -n fc00::12
+
+ # Test ndp -a
+ atf_check -s exit:0 -o match:'fc00::11' rump.ndp -n -a
+ atf_check -s exit:0 -o match:'fc00::12' rump.ndp -n -a
+
+ # Flush all entries (-c)
+ $DEBUG && rump.ndp -n -a
+ atf_check -s exit:0 -o ignore rump.ndp -c
+ atf_check -s not-exit:0 -o ignore -e ignore rump.ndp -n $IP6DST
+ # Only the static caches are not deleted
+ atf_check -s exit:0 -o ignore -e ignore rump.ndp -n fc00::11
+ atf_check -s exit:0 -o ignore -e ignore rump.ndp -n fc00::12
+
+ # Test temp option (XXX it doesn't work; expire time isn't set)
+ $DEBUG && rump.ndp -n -a
+ #atf_check -s exit:0 -o ignore rump.ndp -s fc00::10 b2:a0:20:00:00:10 temp
+ rump.ndp -s fc00::10 b2:a0:20:00:00:10 temp
+ $DEBUG && rump.ndp -n -a
+ #atf_check -s exit:0 -o not-match:'permanent' rump.ndp -n fc00::10
+
+ return 0
+}
+
+cache_overwriting_body()
+{
+ atf_check -s exit:0 ${inetserver} $SOCKSRC
+ atf_check -s exit:0 ${inetserver} $SOCKDST
+
+ setup_dst_server
+ setup_src_server
+
+ export RUMP_SERVER=$SOCKSRC
+
+ # Cannot overwrite a permanent cache
+ atf_check -s not-exit:0 -e ignore rump.ndp -s $IP6SRC b2:a0:20:00:00:ff
+ $DEBUG && rump.ndp -n -a
+
+ export LD_PRELOAD=/usr/lib/librumphijack.so
+ atf_check -s exit:0 -o ignore ping6 -n -X $TIMEOUT -c 1 $IP6DST
+ unset LD_PRELOAD
+ $DEBUG && rump.ndp -n -a
+ # Can overwrite a dynamic cache
+ atf_check -s exit:0 -o ignore rump.ndp -s $IP6DST b2:a0:20:00:00:00
+ $DEBUG && rump.ndp -n -a
+ atf_check -s exit:0 -o match:'permanent' rump.ndp -n $IP6DST
+
+ # Test temp option (XXX it doesn't work; expire time isn't set)
+ #atf_check -s exit:0 -o ignore rump.ndp -s fc00::10 b2:a0:20:00:00:10 temp
+ #$DEBUG && rump.ndp -n -a
+ #atf_check -s exit:0 -o not-match:'permanent' rump.ndp -n fc00::10
+ # Cannot overwrite a temp cache
+ #atf_check -s not-exit:0 -e ignore rump.ndp -s fc00::10 b2:a0:20:00:00:ff
+ #$DEBUG && rump.ndp -n -a
+
+ return 0
+}
+
+cleanup()
+{
+ env RUMP_SERVER=$SOCKSRC rump.halt
+ env RUMP_SERVER=$SOCKDST rump.halt
+}
+
+dump_src()
+{
+ export RUMP_SERVER=$SOCKSRC
+ rump.netstat -nr
+ rump.ndp -n -a
+ rump.ifconfig
+ $HIJACKING dmesg
+}
+
+dump_dst()
+{
+ export RUMP_SERVER=$SOCKDST
+ rump.netstat -nr
+ rump.ndp -n -a
+ rump.ifconfig
+ $HIJACKING dmesg
+}
+
+dump()
+{
+ dump_src
+ dump_dst
+ shmif_dumpbus -p - bus1 2>/dev/null| tcpdump -n -e -r -
+ $DEBUG && gdb -ex bt /usr/bin/rump_server rump_server.core
+ $DEBUG && gdb -ex bt /usr/sbin/rump.ndp rump.ndp.core
+}
+
+cache_expiration()
+{
+ $DEBUG && dump
+ cleanup
+}
+
+command_cleanup()
+{
+ $DEBUG && dump
+ cleanup
+}
+
+cache_overwriting_cleanup()
+{
+ $DEBUG && dump
+ cleanup
+}
+
+atf_init_test_cases()
+{
+ atf_add_test_case cache_expiration
+ atf_add_test_case command
+ atf_add_test_case cache_overwriting
+}