1 # $NetBSD: t_dad.sh,v 1.4 2015/08/24 02:02:25 ozaki-r Exp $
3 # Copyright (c) 2015 The NetBSD Foundation, Inc.
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
9 # 1. Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 # notice, this list of conditions and the following disclaimer in the
13 # documentation and/or other materials provided with the distribution.
15 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
16 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
19 # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 # POSSIBILITY OF SUCH DAMAGE.
28 inetserver
="rump_server -lrumpnet -lrumpnet_net -lrumpnet_netinet"
29 inetserver
="$inetserver -lrumpnet_netinet6 -lrumpnet_shmif"
30 HIJACKING
="env LD_PRELOAD=/usr/lib/librumphijack.so RUMPHIJACK=sysctl=yes"
32 SOCKLOCAL
=unix
://commsock1
33 SOCKPEER
=unix
://commsock2
37 atf_test_case dad_basic cleanup
38 atf_test_case dad_duplicated cleanup
42 atf_set
"descr" "Tests for IPv6 DAD basic behavior"
43 atf_set
"require.progs" "rump_server"
48 atf_set
"descr" "Tests for IPv6 DAD duplicated state"
49 atf_set
"require.progs" "rump_server"
57 export RUMP_SERVER
=$sock
59 atf_check
-s exit:0 rump.ifconfig shmif0 create
60 atf_check
-s exit:0 rump.ifconfig shmif0 linkstr bus1
61 atf_check
-s exit:0 rump.ifconfig shmif0 inet6
$ip
62 atf_check
-s exit:0 rump.ifconfig shmif0 up
63 atf_check
-s exit:0 rump.ifconfig
-w 10
65 $DEBUG && rump.ifconfig shmif0
72 pkt
="33:33:ff:00:00:0${id}, ethertype IPv6 (0x86dd), length 78: ::"
73 pkt
="$pkt > ff02::1:ff00:${id}: ICMP6, neighbor solicitation,"
74 pkt
="$pkt who has $target, length 24"
82 if [ ! -f $old ]; then
86 shmif_dumpbus
-p - bus1
2>/dev
/null| \
87 tcpdump
-n -e -r - 2>/dev
/null
> .
/new
88 diff -u $old .
/new |
grep '^+' |cut
-d '+' -f 2 > .
/diff
96 local localip1
=fc00
::1
97 local localip2
=fc00
::2
98 local localip3
=fc00
::3
100 atf_check
-s exit:0 ${inetserver} $SOCKLOCAL
101 export RUMP_SERVER
=$SOCKLOCAL
103 atf_check
-s exit:0 rump.ifconfig shmif0 create
104 atf_check
-s exit:0 rump.ifconfig shmif0 linkstr bus1
105 atf_check
-s exit:0 rump.ifconfig shmif0 inet6
$localip1
106 atf_check
-s exit:0 rump.ifconfig shmif0 inet6
$localip2
107 $DEBUG && rump.ifconfig shmif0
109 atf_check
-s exit:0 rump.ifconfig shmif0 up
110 rump.ifconfig shmif0
> .
/out
113 # The primary address doesn't start with tentative state
114 atf_check
-s not-exit
:0 -x "cat ./out |grep $localip1 |grep -q tentative"
115 # The alias address starts with tentative state
116 # XXX we have no stable way to check this, so skip for now
117 #atf_check -s exit:0 -x "cat ./out |grep $localip2 |grep -q tentative"
119 atf_check
-s exit:0 sleep 2
120 extract_new_packets
> .
/out
123 # Check DAD probe packets (Neighbor Solicitation Message)
124 pkt
=$
(make_ns_pkt_str
2 $localip2)
125 atf_check
-s exit:0 -x "cat ./out |grep -q '$pkt'"
126 # No DAD for the primary address
127 pkt
=$
(make_ns_pkt_str
1 $localip1)
128 atf_check
-s not-exit
:0 -x "cat ./out |grep -q '$pkt'"
130 # Waiting for DAD complete
131 atf_check
-s exit:0 rump.ifconfig
-w 10
132 extract_new_packets
> .
/out
135 # IPv6 DAD doesn't announce (Neighbor Advertisement Message)
137 # The alias address left tentative
138 atf_check
-s not-exit
:0 -x "rump.ifconfig shmif0 |grep $localip2 |grep -q tentative"
141 # Add a new address on the fly
143 atf_check
-s exit:0 rump.ifconfig shmif0 inet6
$localip3
145 # The new address starts with tentative state
146 # XXX we have no stable way to check this, so skip for now
147 #atf_check -s exit:0 -x "rump.ifconfig shmif0 |grep $localip3 |grep -q tentative"
149 # Check DAD probe packets (Neighbor Solicitation Message)
150 atf_check
-s exit:0 sleep 2
151 extract_new_packets
> .
/out
153 pkt
=$
(make_ns_pkt_str
3 $localip3)
154 atf_check
-s exit:0 -x "cat ./out |grep -q '$pkt'"
156 # Waiting for DAD complete
157 atf_check
-s exit:0 rump.ifconfig
-w 10
158 extract_new_packets
> .
/out
161 # IPv6 DAD doesn't announce (Neighbor Advertisement Message)
163 # The new address left tentative
164 atf_check
-s not-exit
:0 -x "rump.ifconfig shmif0 |grep $localip3 |grep -q tentative"
167 dad_duplicated_body
()
169 local localip1
=fc00
::1
170 local localip2
=fc00
::11
173 atf_check
-s exit:0 ${inetserver} $SOCKLOCAL
174 atf_check
-s exit:0 ${inetserver} $SOCKPEER
176 setup_server
$SOCKLOCAL $localip1
177 setup_server
$SOCKPEER $peerip
179 export RUMP_SERVER
=$SOCKLOCAL
181 # The primary address isn't marked as duplicated
182 atf_check
-s not-exit
:0 -x "rump.ifconfig shmif0 |grep $localip1 |grep -q duplicated"
185 # Add a new address duplicated with the peer server
187 atf_check
-s exit:0 rump.ifconfig shmif0 inet6
$peerip
188 atf_check
-s exit:0 sleep 1
190 # The new address is marked as duplicated
191 atf_check
-s exit:0 -x "rump.ifconfig shmif0 |grep $peerip |grep -q duplicated"
193 # A unique address isn't marked as duplicated
194 atf_check
-s exit:0 rump.ifconfig shmif0 inet6
$localip2
195 atf_check
-s exit:0 sleep 1
196 atf_check
-s not-exit
:0 -x "rump.ifconfig shmif0 |grep $localip2 |grep -q duplicated"
201 gdb
-ex bt
/usr
/bin
/rump_server rump_server.core
202 gdb
-ex bt
/usr
/sbin
/arp arp.core
203 env RUMP_SERVER
=$SOCKLOCAL rump.halt
204 env RUMP_SERVER
=$SOCKPEER rump.halt
209 export RUMP_SERVER
=$SOCKLOCAL
218 export RUMP_SERVER
=$SOCKPEER
229 shmif_dumpbus
-p - bus1
2>/dev
/null| tcpdump
-n -e -r -
235 $DEBUG && shmif_dumpbus
-p - bus1
2>/dev
/null| tcpdump
-n -e -r -
236 env RUMP_SERVER
=$SOCKLOCAL rump.halt
239 dad_duplicated_cleanup
()
245 atf_init_test_cases
()
247 atf_add_test_case dad_basic
248 atf_add_test_case dad_duplicated