1# $FreeBSD$ 2# 3# SPDX-License-Identifier: BSD-2-Clause 4# 5# Copyright (c) 2021 Rubicon Communications, LLC (Netgate) 6# 7# Redistribution and use in source and binary forms, with or without 8# modification, are permitted provided that the following conditions 9# are met: 10# 1. Redistributions of source code must retain the above copyright 11# notice, this list of conditions and the following disclaimer. 12# 2. Redistributions in binary form must reproduce the above copyright 13# notice, this list of conditions and the following disclaimer in the 14# documentation and/or other materials provided with the distribution. 15# 16# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26# SUCH DAMAGE. 27 28. $(atf_get_srcdir)/../common/vnet.subr 29 30atf_test_case "6to4" "cleanup" 316to4_head() 32{ 33 atf_set descr 'Test 6to4' 34 atf_set require.user root 35} 36 376to4_body() 38{ 39 vnet_init 40 if ! kldstat -q -m if_stf; then 41 atf_skip "This test requires if_stf" 42 fi 43 if ! kldstat -q -m if_gif; then 44 atf_skip "This test requires if_gif" 45 fi 46 47 epair=$(vnet_mkepair) 48 49 vnet_mkjail relay ${epair}a 50 jexec relay ifconfig lo0 inet6 2001:db8::1/64 up 51 jexec relay ifconfig ${epair}a 192.0.2.1/24 up 52 # Simple gif to terminate 6to4 53 gif=$(jexec relay ifconfig gif create) 54 jexec relay ifconfig $gif inet6 2002:c000:0201::1/64 up 55 jexec relay ifconfig $gif tunnel 192.0.2.1 192.0.2.2 56 jexec relay route -6 add default -interface $gif 57 58 vnet_mkjail client ${epair}b 59 jexec client ifconfig lo0 up 60 jexec client ifconfig ${epair}b 192.0.2.2/24 up 61 stf=$(jexec client ifconfig stf create) 62 jexec client ifconfig $stf inet6 2002:c000:0202::1/32 up 63 jexec client route -6 add default 2002:c000:0201::1 64 65 # Sanity check 66 atf_check -s exit:0 -o ignore \ 67 jexec client ping -c 1 192.0.2.1 68 # 6to4 direct 69 atf_check -s exit:0 -o ignore \ 70 jexec client ping6 -c 1 2002:c000:0201::1 71 72 # "Wider internet" 73 atf_check -s exit:0 -o ignore \ 74 jexec client ping6 -c 1 2001:db8::1 75} 76 776to4_cleanup() 78{ 79 vnet_cleanup 80} 81 82atf_test_case "6rd" "cleanup" 836rd_head() 84{ 85 atf_set descr '6RD test' 86 atf_set require.user root 87} 88 896rd_body() 90{ 91 vnet_init 92 93 if ! kldstat -q -m if_stf; then 94 atf_skip "This test requires if_stf" 95 fi 96 if ! kldstat -q -m if_gif; then 97 atf_skip "This test requires if_gif" 98 fi 99 100 epair=$(vnet_mkepair) 101 vnet_mkjail br ${epair}a 102 jexec br ifconfig ${epair}a 192.0.2.1/24 up 103 104 # Simple gif to terminate the 6RD tunnel 105 gif=$(jexec br ifconfig gif create) 106 jexec br ifconfig lo0 inet6 2001:db9::1/64 up 107 jexec br ifconfig $gif inet6 2001:db8::/64 up 108 jexec br ifconfig $gif tunnel 192.0.2.1 192.0.2.2 109 jexec br route -6 add default -interface $gif 110 111 vnet_mkjail client ${epair}b 112 jexec client ifconfig lo0 up 113 jexec client ifconfig ${epair}b 192.0.2.2/24 up 114 115 # Sanity check 116 atf_check -s exit:0 -o ignore \ 117 jexec client ping -c 1 192.0.2.1 118 119 stf=$(jexec client ifconfig stf create) 120 121 jexec client ifconfig $stf stfv4br 192.0.2.1 122 jexec client ifconfig $stf stfv4net 192.0.2.2/32 123 jexec client ifconfig $stf inet6 2001:db8:c000:0202::1/32 up 124 jexec client route -6 add default -interface $stf 125 126 atf_check -s exit:0 -o ignore \ 127 jexec client ping6 -c 1 2001:db9::1 128} 129 1306rd_cleanup() 131{ 132 vnet_cleanup 133} 134 135atf_test_case "6rd_peer" "cleanup" 1366rd_peer_head() 137{ 138 atf_set descr '6RD peer test' 139 atf_set require.user root 140} 141 1426rd_peer_body() 143{ 144 vnet_init 145 146 if ! kldstat -q -m if_stf; then 147 atf_skip "This test requires if_stf" 148 fi 149 150 epair=$(vnet_mkepair) 151 152 vnet_mkjail one ${epair}a 153 jexec one ifconfig lo0 up 154 jexec one ifconfig ${epair}a 192.0.2.1/24 up 155 stf_one=$(jexec one ifconfig stf create) 156 jexec one ifconfig $stf_one stfv4br 192.0.2.3 157 jexec one ifconfig $stf_one stfv4net 192.0.2.1/32 158 jexec one ifconfig $stf_one inet6 2001:db8:c000:0201::1/32 up 159 jexec one route -6 add default -interface $stf_one 160 161 vnet_mkjail two ${epair}b 162 jexec two ifconfig lo0 up 163 jexec two ifconfig ${epair}b 192.0.2.2/24 up 164 stf_two=$(jexec two ifconfig stf create) 165 jexec two ifconfig $stf_two stfv4br 192.0.2.3 166 jexec two ifconfig $stf_two stfv4net 192.0.2.2/32 167 jexec two ifconfig $stf_two inet6 2001:db8:c000:0202::1/32 up 168 jexec two route -6 add default -interface $stf_two 169 170 # Sanity check 171 atf_check -s exit:0 -o ignore \ 172 jexec one ping -c 1 192.0.2.2 173 174 # Test 6rd 175 atf_check -s exit:0 -o ignore \ 176 jexec one ping6 -c 1 2001:db8:c000:0202::1 177 atf_check -s exit:0 -o ignore \ 178 jexec two ping6 -c 1 2001:db8:c000:0201::1 179 180 # Shorter prefixes, for both v4 and v6 181 jexec one ifconfig $stf_one inet6 2001:db8:c000:0201::1 delete 182 jexec one ifconfig $stf_one inet6 2001:0201::1/16 183 jexec one ifconfig $stf_one stfv4net 192.0.2.1/16 184 jexec two ifconfig $stf_two inet6 2001:db8:c000:0202::1 delete 185 jexec two ifconfig $stf_two inet6 2001:0202::1/16 186 jexec two ifconfig $stf_two stfv4net 192.0.2.2/16 187 188 atf_check -s exit:0 -o ignore \ 189 jexec one ping6 -c 1 2001:0202::1 190 atf_check -s exit:0 -o ignore \ 191 jexec two ping6 -c 1 2001:0201::1 192} 193 1946rd_peer_cleanup() 195{ 196 vnet_cleanup 197} 198 199atf_init_test_cases() 200{ 201 atf_add_test_case "6to4" 202 atf_add_test_case "6rd" 203 atf_add_test_case "6rd_peer" 204} 205