1#- 2# SPDX-License-Identifier: BSD-2-Clause 3# 4# Copyright (c) 2019 Netflix, Inc. 5# 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. 14# 15# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25# SUCH DAMAGE. 26# 27 28. $(atf_get_srcdir)/frag6.subr 29 30atf_test_case "frag6_03" "cleanup" 31frag6_03_head() { 32 frag6_head 3 33} 34 35frag6_03_check_stats() { 36 37 local jname ifname 38 jname=$1 39 ifname=$2 40 41 case "${jname}" in 42 "") echo "ERROR: jname is empty"; return ;; 43 esac 44 case "${ifname}" in 45 "") echo "ERROR: ifname is empty"; return ;; 46 esac 47 48 # Defaults are: IPV6_FRAGTTL 120 slowtimo ticks. 49 # pfslowtimo() is run at hz/2. So this takes 60s. 50 # This is awefully long for a test case. 51 # The Python script has to wait for this already to get the ICMPv6 52 # hence we do not sleep here anymore. 53 54 nf=`jexec ${jname} sysctl -n net.inet6.ip6.frag6_nfragpackets` 55 case ${nf} in 56 0) break ;; 57 *) atf_fail "VNET frag6_nfragpackets not 0 but: ${nf}" ;; 58 esac 59 nf=`sysctl -n net.inet6.ip6.frag6_nfrags` 60 case ${nf} in 61 0) break ;; 62 *) atf_fail "Global frag6_nfrags not 0 but: ${nf}" ;; 63 esac 64 65 # 66 # Check selection of global UDP stats. 67 # 68 cat <<EOF > ${HOME}/filter-${jname}.txt 69 <received-datagrams>2</received-datagrams> 70 <dropped-incomplete-headers>0</dropped-incomplete-headers> 71 <dropped-bad-data-length>0</dropped-bad-data-length> 72 <dropped-bad-checksum>0</dropped-bad-checksum> 73 <dropped-no-checksum>0</dropped-no-checksum> 74 <dropped-no-socket>2</dropped-no-socket> 75 <dropped-broadcast-multicast>0</dropped-broadcast-multicast> 76 <dropped-full-socket-buffer>0</dropped-full-socket-buffer> 77 <not-for-hashed-pcb>0</not-for-hashed-pcb> 78EOF 79 count=`jexec ${jname} netstat -s -p udp --libxo xml,pretty | grep -E -x -c -f ${HOME}/filter-${jname}.txt` 80 rm -f ${HOME}/filter-${jname}.txt 81 case ${count} in 82 9) ;; 83 *) jexec ${jname} netstat -s -p udp --libxo xml,pretty 84 atf_fail "Global UDP statistics do not match: ${count} != 9" ;; 85 esac 86 87 88 # 89 # Check selection of global IPv6 stats. 90 # 91 cat <<EOF > ${HOME}/filter-${jname}.txt 92 <dropped-below-minimum-size>0</dropped-below-minimum-size> 93 <dropped-short-packets>0</dropped-short-packets> 94 <dropped-bad-options>0</dropped-bad-options> 95 <dropped-bad-version>0</dropped-bad-version> 96 <received-fragments>2</received-fragments> 97 <dropped-fragment>0</dropped-fragment> 98 <dropped-fragment-after-timeout>0</dropped-fragment-after-timeout> 99 <dropped-fragments-overflow>0</dropped-fragments-overflow> 100 <atomic-fragments>2</atomic-fragments> 101 <reassembled-packets>0</reassembled-packets> 102 <forwarded-packets>0</forwarded-packets> 103 <packets-not-forwardable>0</packets-not-forwardable> 104 <sent-redirects>0</sent-redirects> 105 <send-packets-fabricated-header>0</send-packets-fabricated-header> 106 <discard-no-mbufs>0</discard-no-mbufs> 107 <discard-no-route>0</discard-no-route> 108 <sent-fragments>0</sent-fragments> 109 <fragments-created>0</fragments-created> 110 <discard-cannot-fragment>0</discard-cannot-fragment> 111 <discard-scope-violations>0</discard-scope-violations> 112EOF 113 count=`jexec ${jname} netstat -s -p ip6 --libxo xml,pretty | grep -E -x -c -f ${HOME}/filter-${jname}.txt` 114 rm -f ${HOME}/filter-${jname}.txt 115 case ${count} in 116 20) ;; 117 *) jexec ${jname} netstat -s -p ip6 --libxo xml,pretty 118 atf_fail "Global IPv6 statistics do not match: ${count} != 20" ;; 119 esac 120 121 # 122 # Check selection of global ICMPv6 stats. 123 # XXX-TODO check output histogram (just too hard to parse [no multi-line-grep]) 124 # 125 cat <<EOF > ${HOME}/filter-${jname}.txt 126 <icmp6-calls>2</icmp6-calls> 127 <no-route>0</no-route> 128 <admin-prohibited>0</admin-prohibited> 129 <beyond-scope>0</beyond-scope> 130 <address-unreachable>0</address-unreachable> 131 <port-unreachable>2</port-unreachable> 132 <packet-too-big>0</packet-too-big> 133 <time-exceed-transmit>0</time-exceed-transmit> 134 <time-exceed-reassembly>0</time-exceed-reassembly> 135 <bad-header>0</bad-header> 136 <bad-next-header>0</bad-next-header> 137 <bad-option>0</bad-option> 138 <redirects>0</redirects> 139 <unknown>0</unknown> 140 <reflect>0</reflect> 141 <too-many-nd-options>0</too-many-nd-options> 142 <bad-nd-options>0</bad-nd-options> 143 <bad-neighbor-solicitation>0</bad-neighbor-solicitation> 144 <bad-neighbor-advertisement>0</bad-neighbor-advertisement> 145 <bad-router-solicitation>0</bad-router-solicitation> 146 <bad-router-advertisement>0</bad-router-advertisement> 147 <bad-redirect>0</bad-redirect> 148EOF 149 count=`jexec ${jname} netstat -s -p icmp6 --libxo xml,pretty | grep -E -x -c -f ${HOME}/filter-${jname}.txt` 150 rm -f ${HOME}/filter-${jname}.txt 151 case ${count} in 152 22) ;; 153 *) jexec ${jname} netstat -s -p icmp6 --libxo xml,pretty 154 atf_fail "Global ICMPv6 statistics do not match: ${count} != 22" ;; 155 esac 156 157 # 158 # Check selection of interface IPv6 stats. 159 # 160 cat <<EOF > ${HOME}/filter-${jname}.txt 161 <dropped-invalid-header>0</dropped-invalid-header> 162 <dropped-mtu-exceeded>0</dropped-mtu-exceeded> 163 <dropped-no-route>0</dropped-no-route> 164 <dropped-invalid-destination>0</dropped-invalid-destination> 165 <dropped-unknown-protocol>0</dropped-unknown-protocol> 166 <dropped-truncated>0</dropped-truncated> 167 <sent-forwarded>0</sent-forwarded> 168 <discard-packets>0</discard-packets> 169 <discard-fragments>0</discard-fragments> 170 <fragments-failed>0</fragments-failed> 171 <fragments-created>0</fragments-created> 172 <reassembly-required>2</reassembly-required> 173 <reassembled-packets>2</reassembled-packets> 174 <reassembly-failed>0</reassembly-failed> 175EOF 176 count=`jexec ${jname} netstat -s -p ip6 -I ${ifname} --libxo xml,pretty | grep -E -x -c -f ${HOME}/filter-${jname}.txt` 177 rm -f ${HOME}/filter-${jname}.txt 178 case ${count} in 179 14) ;; 180 *) jexec ${jname} netstat -s -p ip6 -I ${ifname} --libxo xml,pretty 181 atf_fail "Interface IPv6 statistics do not match: ${count} != 14" ;; 182 esac 183 184 # 185 # Check selection of interface ICMPv6 stats. 186 # 187 cat <<EOF > ${HOME}/filter-${jname}.txt 188 <received-errors>0</received-errors> 189 <received-destination-unreachable>0</received-destination-unreachable> 190 <received-admin-prohibited>0</received-admin-prohibited> 191 <received-time-exceeded>0</received-time-exceeded> 192 <received-bad-parameter>0</received-bad-parameter> 193 <received-packet-too-big>0</received-packet-too-big> 194 <received-echo-requests>0</received-echo-requests> 195 <received-echo-replies>0</received-echo-replies> 196 <received-router-solicitation>0</received-router-solicitation> 197 <received-router-advertisement>0</received-router-advertisement> 198 <sent-errors>2</sent-errors> 199 <sent-destination-unreachable>2</sent-destination-unreachable> 200 <sent-admin-prohibited>0</sent-admin-prohibited> 201 <sent-time-exceeded>0</sent-time-exceeded> 202 <sent-bad-parameter>0</sent-bad-parameter> 203 <sent-packet-too-big>0</sent-packet-too-big> 204 <sent-echo-requests>0</sent-echo-requests> 205 <sent-echo-replies>0</sent-echo-replies> 206 <sent-router-solicitation>0</sent-router-solicitation> 207 <sent-router-advertisement>0</sent-router-advertisement> 208 <sent-redirects>0</sent-redirects> 209EOF 210 count=`jexec ${jname} netstat -s -p icmp6 -I ${ifname} --libxo xml,pretty | grep -E -x -c -f ${HOME}/filter-${jname}.txt` 211 rm -f ${HOME}/filter-${jname}.txt 212 case ${count} in 213 21) ;; 214 *) jexec ${jname} netstat -s -p icmp6 -I ${ifname} --libxo xml,pretty 215 atf_fail "Interface ICMPv6 statistics do not match: ${count} != 21" ;; 216 esac 217} 218 219frag6_03_body() { 220 frag6_body 3 frag6_03_check_stats 221} 222 223frag6_03_cleanup() { 224 frag6_cleanup 3 225} 226 227atf_init_test_cases() 228{ 229 atf_add_test_case "frag6_03" 230} 231