etc/protocols - sync with NetBSD-8
[minix.git] / tests / net / ndp / t_dad.sh
blobcdd505a1d8e79f5c480770dc3d95a6177ff7c114
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.
4 # All rights reserved.
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
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
35 DEBUG=false
37 atf_test_case dad_basic cleanup
38 atf_test_case dad_duplicated cleanup
40 dad_basic_head()
42 atf_set "descr" "Tests for IPv6 DAD basic behavior"
43 atf_set "require.progs" "rump_server"
46 dad_duplicated_head()
48 atf_set "descr" "Tests for IPv6 DAD duplicated state"
49 atf_set "require.progs" "rump_server"
52 setup_server()
54 local sock=$1
55 local ip=$2
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
68 make_ns_pkt_str()
70 local id=$1
71 local target=$2
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"
75 echo $pkt
78 extract_new_packets()
80 local old=./old
82 if [ ! -f $old ]; then
83 old=/dev/null
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
89 mv -f ./new ./old
90 cat ./diff
93 dad_basic_body()
95 local pkt=
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
111 $DEBUG && cat ./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
121 $DEBUG && cat ./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
133 $DEBUG && cat ./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
152 $DEBUG && cat ./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
159 $DEBUG && cat ./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
171 local peerip=fc00::2
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"
199 cleanup()
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
207 dump_local()
209 export RUMP_SERVER=$SOCKLOCAL
210 rump.netstat -nr
211 rump.arp -n -a
212 rump.ifconfig
213 $HIJACKING dmesg
216 dump_peer()
218 export RUMP_SERVER=$SOCKPEER
219 rump.netstat -nr
220 rump.arp -n -a
221 rump.ifconfig
222 $HIJACKING dmesg
225 dump()
227 dump_local
228 dump_peer
229 shmif_dumpbus -p - bus1 2>/dev/null| tcpdump -n -e -r -
232 dad_basic_cleanup()
234 $DEBUG && dump_local
235 $DEBUG && shmif_dumpbus -p - bus1 2>/dev/null| tcpdump -n -e -r -
236 env RUMP_SERVER=$SOCKLOCAL rump.halt
239 dad_duplicated_cleanup()
241 $DEBUG && dump
242 cleanup
245 atf_init_test_cases()
247 atf_add_test_case dad_basic
248 atf_add_test_case dad_duplicated