1 #!/bin/bash !! 1 #!/bin/sh 2 # SPDX-License-Identifier: GPL-2.0 2 # SPDX-License-Identifier: GPL-2.0 3 # 3 # 4 # Check that route PMTU values match expectati 4 # Check that route PMTU values match expectations, and that initial device MTU 5 # values are assigned correctly 5 # values are assigned correctly 6 # 6 # 7 # Tests currently implemented: 7 # Tests currently implemented: 8 # 8 # 9 # - pmtu_ipv4 9 # - pmtu_ipv4 10 # Set up two namespaces, A and B, with t 10 # Set up two namespaces, A and B, with two paths between them over routers 11 # R1 and R2 (also implemented with names 11 # R1 and R2 (also implemented with namespaces), with different MTUs: 12 # 12 # 13 # segment a_r1 segment b_r1 13 # segment a_r1 segment b_r1 a_r1: 2000 14 # .--------------R1--------------. 14 # .--------------R1--------------. b_r1: 1400 15 # A B 15 # A B a_r2: 2000 16 # '--------------R2--------------' 16 # '--------------R2--------------' b_r2: 1500 17 # segment a_r2 segment b_r2 17 # segment a_r2 segment b_r2 18 # 18 # 19 # Check that PMTU exceptions with the co 19 # Check that PMTU exceptions with the correct PMTU are created. Then 20 # decrease and increase the MTU of the l 20 # decrease and increase the MTU of the local link for one of the paths, 21 # A to R1, checking that route exception 21 # A to R1, checking that route exception PMTU changes accordingly over 22 # this path. Also check that locked exce 22 # this path. Also check that locked exceptions are created when an ICMP 23 # message advertising a PMTU smaller tha 23 # message advertising a PMTU smaller than net.ipv4.route.min_pmtu is 24 # received 24 # received 25 # 25 # 26 # - pmtu_ipv6 26 # - pmtu_ipv6 27 # Same as pmtu_ipv4, except for locked P 27 # Same as pmtu_ipv4, except for locked PMTU tests, using IPv6 28 # 28 # 29 # - pmtu_ipv4_dscp_icmp_exception 29 # - pmtu_ipv4_dscp_icmp_exception 30 # Set up the same network topology as pm 30 # Set up the same network topology as pmtu_ipv4, but use non-default 31 # routing table in A. A fib-rule is used 31 # routing table in A. A fib-rule is used to jump to this routing table 32 # based on DSCP. Send ICMPv4 packets wit 32 # based on DSCP. Send ICMPv4 packets with the expected DSCP value and 33 # verify that ECN doesn't interfere with 33 # verify that ECN doesn't interfere with the creation of PMTU exceptions. 34 # 34 # 35 # - pmtu_ipv4_dscp_udp_exception 35 # - pmtu_ipv4_dscp_udp_exception 36 # Same as pmtu_ipv4_dscp_icmp_exception, 36 # Same as pmtu_ipv4_dscp_icmp_exception, but use UDP instead of ICMP. 37 # 37 # 38 # - pmtu_ipv4_vxlan4_exception 38 # - pmtu_ipv4_vxlan4_exception 39 # Set up the same network topology as pm 39 # Set up the same network topology as pmtu_ipv4, create a VXLAN tunnel 40 # over IPv4 between A and B, routed via 40 # over IPv4 between A and B, routed via R1. On the link between R1 and B, 41 # set a MTU lower than the VXLAN MTU and 41 # set a MTU lower than the VXLAN MTU and the MTU on the link between A and 42 # R1. Send IPv4 packets, exceeding the M 42 # R1. Send IPv4 packets, exceeding the MTU between R1 and B, over VXLAN 43 # from A to B and check that the PMTU ex 43 # from A to B and check that the PMTU exception is created with the right 44 # value on A 44 # value on A 45 # 45 # 46 # - pmtu_ipv6_vxlan4_exception 46 # - pmtu_ipv6_vxlan4_exception 47 # Same as pmtu_ipv4_vxlan4_exception, bu 47 # Same as pmtu_ipv4_vxlan4_exception, but send IPv6 packets from A to B 48 # 48 # 49 # - pmtu_ipv4_vxlan6_exception 49 # - pmtu_ipv4_vxlan6_exception 50 # Same as pmtu_ipv4_vxlan4_exception, bu 50 # Same as pmtu_ipv4_vxlan4_exception, but use IPv6 transport from A to B 51 # 51 # 52 # - pmtu_ipv6_vxlan6_exception 52 # - pmtu_ipv6_vxlan6_exception 53 # Same as pmtu_ipv4_vxlan6_exception, bu 53 # Same as pmtu_ipv4_vxlan6_exception, but send IPv6 packets from A to B 54 # 54 # 55 # - pmtu_ipv4_geneve4_exception 55 # - pmtu_ipv4_geneve4_exception 56 # Same as pmtu_ipv4_vxlan4_exception, bu 56 # Same as pmtu_ipv4_vxlan4_exception, but using a GENEVE tunnel instead of 57 # VXLAN 57 # VXLAN 58 # 58 # 59 # - pmtu_ipv6_geneve4_exception 59 # - pmtu_ipv6_geneve4_exception 60 # Same as pmtu_ipv6_vxlan4_exception, bu 60 # Same as pmtu_ipv6_vxlan4_exception, but using a GENEVE tunnel instead of 61 # VXLAN 61 # VXLAN 62 # 62 # 63 # - pmtu_ipv4_geneve6_exception 63 # - pmtu_ipv4_geneve6_exception 64 # Same as pmtu_ipv4_vxlan6_exception, bu 64 # Same as pmtu_ipv4_vxlan6_exception, but using a GENEVE tunnel instead of 65 # VXLAN 65 # VXLAN 66 # 66 # 67 # - pmtu_ipv6_geneve6_exception 67 # - pmtu_ipv6_geneve6_exception 68 # Same as pmtu_ipv6_vxlan6_exception, bu 68 # Same as pmtu_ipv6_vxlan6_exception, but using a GENEVE tunnel instead of 69 # VXLAN 69 # VXLAN 70 # 70 # 71 # - pmtu_ipv{4,6}_br_vxlan{4,6}_exception 71 # - pmtu_ipv{4,6}_br_vxlan{4,6}_exception 72 # Set up three namespaces, A, B, and C, 72 # Set up three namespaces, A, B, and C, with routing between A and B over 73 # R1. R2 is unused in these tests. A has 73 # R1. R2 is unused in these tests. A has a veth connection to C, and is 74 # connected to B via a VXLAN endpoint, w 74 # connected to B via a VXLAN endpoint, which is directly bridged to C. 75 # MTU on the B-R1 link is lower than oth 75 # MTU on the B-R1 link is lower than other MTUs. 76 # 76 # 77 # Check that both C and A are able to co 77 # Check that both C and A are able to communicate with B over the VXLAN 78 # tunnel, and that PMTU exceptions with 78 # tunnel, and that PMTU exceptions with the correct values are created. 79 # 79 # 80 # segment a_r1 segm 80 # segment a_r1 segment b_r1 b_r1: 4000 81 # .--------------R1----- 81 # .--------------R1--------------. everything 82 # C---veth A 82 # C---veth A B else: 5000 83 # ' bridge 83 # ' bridge | 84 # '---- - - - - - VXLAN - - 84 # '---- - - - - - VXLAN - - - - - - - ' 85 # 85 # 86 # - pmtu_ipv{4,6}_br_geneve{4,6}_exception 86 # - pmtu_ipv{4,6}_br_geneve{4,6}_exception 87 # Same as pmtu_ipv{4,6}_br_vxlan{4,6}_ex 87 # Same as pmtu_ipv{4,6}_br_vxlan{4,6}_exception, with a GENEVE tunnel 88 # instead. 88 # instead. 89 # 89 # 90 # - pmtu_ipv{4,6}_ovs_vxlan{4,6}_exception 90 # - pmtu_ipv{4,6}_ovs_vxlan{4,6}_exception 91 # Set up two namespaces, B, and C, with 91 # Set up two namespaces, B, and C, with routing between the init namespace 92 # and B over R1. A and R2 are unused in 92 # and B over R1. A and R2 are unused in these tests. The init namespace 93 # has a veth connection to C, and is con 93 # has a veth connection to C, and is connected to B via a VXLAN endpoint, 94 # which is handled by Open vSwitch and b 94 # which is handled by Open vSwitch and bridged to C. MTU on the B-R1 link 95 # is lower than other MTUs. 95 # is lower than other MTUs. 96 # 96 # 97 # Check that C is able to communicate wi 97 # Check that C is able to communicate with B over the VXLAN tunnel, and 98 # that PMTU exceptions with the correct 98 # that PMTU exceptions with the correct values are created. 99 # 99 # 100 # segment a_r1 segm 100 # segment a_r1 segment b_r1 b_r1: 4000 101 # .--------------R1----- 101 # .--------------R1--------------. everything 102 # C---veth init 102 # C---veth init B else: 5000 103 # '- ovs 103 # '- ovs | 104 # '---- - - - - - VXLAN - - 104 # '---- - - - - - VXLAN - - - - - - - ' 105 # 105 # 106 # - pmtu_ipv{4,6}_ovs_geneve{4,6}_exception 106 # - pmtu_ipv{4,6}_ovs_geneve{4,6}_exception 107 # Same as pmtu_ipv{4,6}_ovs_vxlan{4,6}_e 107 # Same as pmtu_ipv{4,6}_ovs_vxlan{4,6}_exception, with a GENEVE tunnel 108 # instead. 108 # instead. 109 # 109 # 110 # - pmtu_ipv{4,6}_fou{4,6}_exception 110 # - pmtu_ipv{4,6}_fou{4,6}_exception 111 # Same as pmtu_ipv4_vxlan4, but using a 111 # Same as pmtu_ipv4_vxlan4, but using a direct IPv4/IPv6 encapsulation 112 # (FoU) over IPv4/IPv6, instead of VXLAN 112 # (FoU) over IPv4/IPv6, instead of VXLAN 113 # 113 # 114 # - pmtu_ipv{4,6}_fou{4,6}_exception 114 # - pmtu_ipv{4,6}_fou{4,6}_exception 115 # Same as pmtu_ipv4_vxlan4, but using a 115 # Same as pmtu_ipv4_vxlan4, but using a generic UDP IPv4/IPv6 116 # encapsulation (GUE) over IPv4/IPv6, in 116 # encapsulation (GUE) over IPv4/IPv6, instead of VXLAN 117 # 117 # 118 # - pmtu_ipv{4,6}_ipv{4,6}_exception 118 # - pmtu_ipv{4,6}_ipv{4,6}_exception 119 # Same as pmtu_ipv4_vxlan4, but using a 119 # Same as pmtu_ipv4_vxlan4, but using a IPv4/IPv6 tunnel over IPv4/IPv6, 120 # instead of VXLAN 120 # instead of VXLAN 121 # 121 # 122 # - pmtu_vti4_exception 122 # - pmtu_vti4_exception 123 # Set up vti tunnel on top of veth, with 123 # Set up vti tunnel on top of veth, with xfrm states and policies, in two 124 # namespaces with matching endpoints. Ch 124 # namespaces with matching endpoints. Check that route exception is not 125 # created if link layer MTU is not excee 125 # created if link layer MTU is not exceeded, then exceed it and check that 126 # exception is created with the expected 126 # exception is created with the expected PMTU. The approach described 127 # below for IPv6 doesn't apply here, bec 127 # below for IPv6 doesn't apply here, because, on IPv4, administrative MTU 128 # changes alone won't affect PMTU 128 # changes alone won't affect PMTU 129 # 129 # 130 # - pmtu_vti4_udp_exception 130 # - pmtu_vti4_udp_exception 131 # Same as pmtu_vti4_exception, but using 131 # Same as pmtu_vti4_exception, but using ESP-in-UDP 132 # 132 # 133 # - pmtu_vti4_udp_routed_exception 133 # - pmtu_vti4_udp_routed_exception 134 # Set up vti tunnel on top of veth conne 134 # Set up vti tunnel on top of veth connected through routing namespace and 135 # add xfrm states and policies with ESP- 135 # add xfrm states and policies with ESP-in-UDP encapsulation. Check that 136 # route exception is not created if link 136 # route exception is not created if link layer MTU is not exceeded, then 137 # lower MTU on second part of routed env 137 # lower MTU on second part of routed environment and check that exception 138 # is created with the expected PMTU. 138 # is created with the expected PMTU. 139 # 139 # 140 # - pmtu_vti6_exception 140 # - pmtu_vti6_exception 141 # Set up vti6 tunnel on top of veth, wit 141 # Set up vti6 tunnel on top of veth, with xfrm states and policies, in two 142 # namespaces with matching endpoints. Ch 142 # namespaces with matching endpoints. Check that route exception is 143 # created by exceeding link layer MTU wi 143 # created by exceeding link layer MTU with ping to other endpoint. Then 144 # decrease and increase MTU of tunnel, c 144 # decrease and increase MTU of tunnel, checking that route exception PMTU 145 # changes accordingly 145 # changes accordingly 146 # 146 # 147 # - pmtu_vti6_udp_exception 147 # - pmtu_vti6_udp_exception 148 # Same as pmtu_vti6_exception, but using 148 # Same as pmtu_vti6_exception, but using ESP-in-UDP 149 # 149 # 150 # - pmtu_vti6_udp_routed_exception 150 # - pmtu_vti6_udp_routed_exception 151 # Same as pmtu_vti6_udp_routed_exception 151 # Same as pmtu_vti6_udp_routed_exception but with routing between vti 152 # endpoints 152 # endpoints 153 # 153 # 154 # - pmtu_vti4_default_mtu 154 # - pmtu_vti4_default_mtu 155 # Set up vti4 tunnel on top of veth, in 155 # Set up vti4 tunnel on top of veth, in two namespaces with matching 156 # endpoints. Check that MTU assigned to 156 # endpoints. Check that MTU assigned to vti interface is the MTU of the 157 # lower layer (veth) minus additional lo 157 # lower layer (veth) minus additional lower layer headers (zero, for veth) 158 # minus IPv4 header length 158 # minus IPv4 header length 159 # 159 # 160 # - pmtu_vti6_default_mtu 160 # - pmtu_vti6_default_mtu 161 # Same as above, for IPv6 161 # Same as above, for IPv6 162 # 162 # 163 # - pmtu_vti4_link_add_mtu 163 # - pmtu_vti4_link_add_mtu 164 # Set up vti4 interface passing MTU valu 164 # Set up vti4 interface passing MTU value at link creation, check MTU is 165 # configured, and that link is not creat 165 # configured, and that link is not created with invalid MTU values 166 # 166 # 167 # - pmtu_vti6_link_add_mtu 167 # - pmtu_vti6_link_add_mtu 168 # Same as above, for IPv6 168 # Same as above, for IPv6 169 # 169 # 170 # - pmtu_vti6_link_change_mtu 170 # - pmtu_vti6_link_change_mtu 171 # Set up two dummy interfaces with diffe 171 # Set up two dummy interfaces with different MTUs, create a vti6 tunnel 172 # and check that configured MTU is used 172 # and check that configured MTU is used on link creation and changes, and 173 # that MTU is properly calculated instea 173 # that MTU is properly calculated instead when MTU is not configured from 174 # userspace 174 # userspace 175 # 175 # 176 # - cleanup_ipv4_exception 176 # - cleanup_ipv4_exception 177 # Similar to pmtu_ipv4_vxlan4_exception, 177 # Similar to pmtu_ipv4_vxlan4_exception, but explicitly generate PMTU 178 # exceptions on multiple CPUs and check 178 # exceptions on multiple CPUs and check that the veth device tear-down 179 # happens in a timely manner 179 # happens in a timely manner 180 # 180 # 181 # - cleanup_ipv6_exception 181 # - cleanup_ipv6_exception 182 # Same as above, but use IPv6 transport 182 # Same as above, but use IPv6 transport from A to B 183 # 183 # 184 # - list_flush_ipv4_exception 184 # - list_flush_ipv4_exception 185 # Using the same topology as in pmtu_ipv 185 # Using the same topology as in pmtu_ipv4, create exceptions, and check 186 # they are shown when listing exception 186 # they are shown when listing exception caches, gone after flushing them 187 # 187 # 188 # - list_flush_ipv6_exception 188 # - list_flush_ipv6_exception 189 # Using the same topology as in pmtu_ipv 189 # Using the same topology as in pmtu_ipv6, create exceptions, and check 190 # they are shown when listing exception 190 # they are shown when listing exception caches, gone after flushing them 191 # 191 # 192 # - pmtu_ipv4_route_change 192 # - pmtu_ipv4_route_change 193 # Use the same topology as in pmtu_ipv4, 193 # Use the same topology as in pmtu_ipv4, but issue a route replacement 194 # command and delete the corresponding d 194 # command and delete the corresponding device afterward. This tests for 195 # proper cleanup of the PMTU exceptions 195 # proper cleanup of the PMTU exceptions by the route replacement path. 196 # Device unregistration should complete 196 # Device unregistration should complete successfully 197 # 197 # 198 # - pmtu_ipv6_route_change 198 # - pmtu_ipv6_route_change 199 # Same as above but with IPv6 199 # Same as above but with IPv6 200 200 201 source lib.sh !! 201 # Kselftest framework requirement - SKIP code is 4. 202 source net_helper.sh !! 202 ksft_skip=4 203 203 204 PAUSE_ON_FAIL=no 204 PAUSE_ON_FAIL=no 205 VERBOSE=0 205 VERBOSE=0 206 TRACING=0 206 TRACING=0 207 207 208 # Some systems don't have a ping6 binary anymo 208 # Some systems don't have a ping6 binary anymore 209 which ping6 > /dev/null 2>&1 && ping6=$(which 209 which ping6 > /dev/null 2>&1 && ping6=$(which ping6) || ping6=$(which ping) 210 210 211 # Name 211 # Name Description re-run with nh 212 tests=" 212 tests=" 213 pmtu_ipv4_exception ipv4: 213 pmtu_ipv4_exception ipv4: PMTU exceptions 1 214 pmtu_ipv6_exception ipv6: 214 pmtu_ipv6_exception ipv6: PMTU exceptions 1 215 pmtu_ipv4_dscp_icmp_exception ICMPv4 215 pmtu_ipv4_dscp_icmp_exception ICMPv4 with DSCP and ECN: PMTU exceptions 1 216 pmtu_ipv4_dscp_udp_exception UDPv4 216 pmtu_ipv4_dscp_udp_exception UDPv4 with DSCP and ECN: PMTU exceptions 1 217 pmtu_ipv4_vxlan4_exception IPv4 o 217 pmtu_ipv4_vxlan4_exception IPv4 over vxlan4: PMTU exceptions 1 218 pmtu_ipv6_vxlan4_exception IPv6 o 218 pmtu_ipv6_vxlan4_exception IPv6 over vxlan4: PMTU exceptions 1 219 pmtu_ipv4_vxlan6_exception IPv4 o 219 pmtu_ipv4_vxlan6_exception IPv4 over vxlan6: PMTU exceptions 1 220 pmtu_ipv6_vxlan6_exception IPv6 o 220 pmtu_ipv6_vxlan6_exception IPv6 over vxlan6: PMTU exceptions 1 221 pmtu_ipv4_geneve4_exception IPv4 o 221 pmtu_ipv4_geneve4_exception IPv4 over geneve4: PMTU exceptions 1 222 pmtu_ipv6_geneve4_exception IPv6 o 222 pmtu_ipv6_geneve4_exception IPv6 over geneve4: PMTU exceptions 1 223 pmtu_ipv4_geneve6_exception IPv4 o 223 pmtu_ipv4_geneve6_exception IPv4 over geneve6: PMTU exceptions 1 224 pmtu_ipv6_geneve6_exception IPv6 o 224 pmtu_ipv6_geneve6_exception IPv6 over geneve6: PMTU exceptions 1 225 pmtu_ipv4_br_vxlan4_exception IPv4, 225 pmtu_ipv4_br_vxlan4_exception IPv4, bridged vxlan4: PMTU exceptions 1 226 pmtu_ipv6_br_vxlan4_exception IPv6, 226 pmtu_ipv6_br_vxlan4_exception IPv6, bridged vxlan4: PMTU exceptions 1 227 pmtu_ipv4_br_vxlan6_exception IPv4, 227 pmtu_ipv4_br_vxlan6_exception IPv4, bridged vxlan6: PMTU exceptions 1 228 pmtu_ipv6_br_vxlan6_exception IPv6, 228 pmtu_ipv6_br_vxlan6_exception IPv6, bridged vxlan6: PMTU exceptions 1 229 pmtu_ipv4_br_geneve4_exception IPv4, 229 pmtu_ipv4_br_geneve4_exception IPv4, bridged geneve4: PMTU exceptions 1 230 pmtu_ipv6_br_geneve4_exception IPv6, 230 pmtu_ipv6_br_geneve4_exception IPv6, bridged geneve4: PMTU exceptions 1 231 pmtu_ipv4_br_geneve6_exception IPv4, 231 pmtu_ipv4_br_geneve6_exception IPv4, bridged geneve6: PMTU exceptions 1 232 pmtu_ipv6_br_geneve6_exception IPv6, 232 pmtu_ipv6_br_geneve6_exception IPv6, bridged geneve6: PMTU exceptions 1 233 pmtu_ipv4_ovs_vxlan4_exception IPv4, 233 pmtu_ipv4_ovs_vxlan4_exception IPv4, OVS vxlan4: PMTU exceptions 1 234 pmtu_ipv6_ovs_vxlan4_exception IPv6, 234 pmtu_ipv6_ovs_vxlan4_exception IPv6, OVS vxlan4: PMTU exceptions 1 235 pmtu_ipv4_ovs_vxlan6_exception IPv4, 235 pmtu_ipv4_ovs_vxlan6_exception IPv4, OVS vxlan6: PMTU exceptions 1 236 pmtu_ipv6_ovs_vxlan6_exception IPv6, 236 pmtu_ipv6_ovs_vxlan6_exception IPv6, OVS vxlan6: PMTU exceptions 1 237 pmtu_ipv4_ovs_geneve4_exception IPv4, 237 pmtu_ipv4_ovs_geneve4_exception IPv4, OVS geneve4: PMTU exceptions 1 238 pmtu_ipv6_ovs_geneve4_exception IPv6, 238 pmtu_ipv6_ovs_geneve4_exception IPv6, OVS geneve4: PMTU exceptions 1 239 pmtu_ipv4_ovs_geneve6_exception IPv4, 239 pmtu_ipv4_ovs_geneve6_exception IPv4, OVS geneve6: PMTU exceptions 1 240 pmtu_ipv6_ovs_geneve6_exception IPv6, 240 pmtu_ipv6_ovs_geneve6_exception IPv6, OVS geneve6: PMTU exceptions 1 241 pmtu_ipv4_fou4_exception IPv4 o 241 pmtu_ipv4_fou4_exception IPv4 over fou4: PMTU exceptions 1 242 pmtu_ipv6_fou4_exception IPv6 o 242 pmtu_ipv6_fou4_exception IPv6 over fou4: PMTU exceptions 1 243 pmtu_ipv4_fou6_exception IPv4 o 243 pmtu_ipv4_fou6_exception IPv4 over fou6: PMTU exceptions 1 244 pmtu_ipv6_fou6_exception IPv6 o 244 pmtu_ipv6_fou6_exception IPv6 over fou6: PMTU exceptions 1 245 pmtu_ipv4_gue4_exception IPv4 o 245 pmtu_ipv4_gue4_exception IPv4 over gue4: PMTU exceptions 1 246 pmtu_ipv6_gue4_exception IPv6 o 246 pmtu_ipv6_gue4_exception IPv6 over gue4: PMTU exceptions 1 247 pmtu_ipv4_gue6_exception IPv4 o 247 pmtu_ipv4_gue6_exception IPv4 over gue6: PMTU exceptions 1 248 pmtu_ipv6_gue6_exception IPv6 o 248 pmtu_ipv6_gue6_exception IPv6 over gue6: PMTU exceptions 1 249 pmtu_ipv4_ipv4_exception IPv4 o 249 pmtu_ipv4_ipv4_exception IPv4 over IPv4: PMTU exceptions 1 250 pmtu_ipv6_ipv4_exception IPv6 o 250 pmtu_ipv6_ipv4_exception IPv6 over IPv4: PMTU exceptions 1 251 pmtu_ipv4_ipv6_exception IPv4 o 251 pmtu_ipv4_ipv6_exception IPv4 over IPv6: PMTU exceptions 1 252 pmtu_ipv6_ipv6_exception IPv6 o 252 pmtu_ipv6_ipv6_exception IPv6 over IPv6: PMTU exceptions 1 253 pmtu_vti6_exception vti6: 253 pmtu_vti6_exception vti6: PMTU exceptions 0 254 pmtu_vti4_exception vti4: 254 pmtu_vti4_exception vti4: PMTU exceptions 0 255 pmtu_vti6_udp_exception vti6: 255 pmtu_vti6_udp_exception vti6: PMTU exceptions (ESP-in-UDP) 0 256 pmtu_vti4_udp_exception vti4: 256 pmtu_vti4_udp_exception vti4: PMTU exceptions (ESP-in-UDP) 0 257 pmtu_vti6_udp_routed_exception vti6: 257 pmtu_vti6_udp_routed_exception vti6: PMTU exceptions, routed (ESP-in-UDP) 0 258 pmtu_vti4_udp_routed_exception vti4: 258 pmtu_vti4_udp_routed_exception vti4: PMTU exceptions, routed (ESP-in-UDP) 0 259 pmtu_vti4_default_mtu vti4: 259 pmtu_vti4_default_mtu vti4: default MTU assignment 0 260 pmtu_vti6_default_mtu vti6: 260 pmtu_vti6_default_mtu vti6: default MTU assignment 0 261 pmtu_vti4_link_add_mtu vti4: 261 pmtu_vti4_link_add_mtu vti4: MTU setting on link creation 0 262 pmtu_vti6_link_add_mtu vti6: 262 pmtu_vti6_link_add_mtu vti6: MTU setting on link creation 0 263 pmtu_vti6_link_change_mtu vti6: 263 pmtu_vti6_link_change_mtu vti6: MTU changes on link changes 0 264 cleanup_ipv4_exception ipv4: 264 cleanup_ipv4_exception ipv4: cleanup of cached exceptions 1 265 cleanup_ipv6_exception ipv6: 265 cleanup_ipv6_exception ipv6: cleanup of cached exceptions 1 266 list_flush_ipv4_exception ipv4: 266 list_flush_ipv4_exception ipv4: list and flush cached exceptions 1 267 list_flush_ipv6_exception ipv6: 267 list_flush_ipv6_exception ipv6: list and flush cached exceptions 1 268 pmtu_ipv4_route_change ipv4: 268 pmtu_ipv4_route_change ipv4: PMTU exception w/route replace 1 269 pmtu_ipv6_route_change ipv6: 269 pmtu_ipv6_route_change ipv6: PMTU exception w/route replace 1" 270 270 >> 271 NS_A="ns-A" >> 272 NS_B="ns-B" >> 273 NS_C="ns-C" >> 274 NS_R1="ns-R1" >> 275 NS_R2="ns-R2" >> 276 ns_a="ip netns exec ${NS_A}" >> 277 ns_b="ip netns exec ${NS_B}" >> 278 ns_c="ip netns exec ${NS_C}" >> 279 ns_r1="ip netns exec ${NS_R1}" >> 280 ns_r2="ip netns exec ${NS_R2}" 271 # Addressing and routing for tests with router 281 # Addressing and routing for tests with routers: four network segments, with 272 # index SEGMENT between 1 and 4, a common pref 282 # index SEGMENT between 1 and 4, a common prefix (PREFIX4 or PREFIX6) and an 273 # identifier ID, which is 1 for hosts (A and B 283 # identifier ID, which is 1 for hosts (A and B), 2 for routers (R1 and R2). 274 # Addresses are: 284 # Addresses are: 275 # - IPv4: PREFIX4.SEGMENT.ID (/24) 285 # - IPv4: PREFIX4.SEGMENT.ID (/24) 276 # - IPv6: PREFIX6:SEGMENT::ID (/64) 286 # - IPv6: PREFIX6:SEGMENT::ID (/64) 277 prefix4="10.0" 287 prefix4="10.0" 278 prefix6="fc00" 288 prefix6="fc00" 279 a_r1=1 289 a_r1=1 280 a_r2=2 290 a_r2=2 281 b_r1=3 291 b_r1=3 282 b_r2=4 292 b_r2=4 283 # ns peer segment 293 # ns peer segment 284 routing_addrs=" 294 routing_addrs=" 285 A R1 ${a_r1} 295 A R1 ${a_r1} 286 A R2 ${a_r2} 296 A R2 ${a_r2} 287 B R1 ${b_r1} 297 B R1 ${b_r1} 288 B R2 ${b_r2} 298 B R2 ${b_r2} 289 " 299 " 290 # Traffic from A to B goes through R1 by defau 300 # Traffic from A to B goes through R1 by default, and through R2, if destined to 291 # B's address on the b_r2 segment. 301 # B's address on the b_r2 segment. 292 # Traffic from B to A goes through R1. 302 # Traffic from B to A goes through R1. 293 # ns destination gatewa 303 # ns destination gateway 294 routes=" 304 routes=" 295 A default ${pref 305 A default ${prefix4}.${a_r1}.2 296 A ${prefix4}.${b_r2}.1 ${pref 306 A ${prefix4}.${b_r2}.1 ${prefix4}.${a_r2}.2 297 B default ${pref 307 B default ${prefix4}.${b_r1}.2 298 308 299 A default ${pref 309 A default ${prefix6}:${a_r1}::2 300 A ${prefix6}:${b_r2}::1 ${pref 310 A ${prefix6}:${b_r2}::1 ${prefix6}:${a_r2}::2 301 B default ${pref 311 B default ${prefix6}:${b_r1}::2 302 " 312 " 303 USE_NH="no" 313 USE_NH="no" 304 # ns family nh id destination 314 # ns family nh id destination gateway 305 nexthops=" 315 nexthops=" 306 A 4 41 ${prefix4}.${a 316 A 4 41 ${prefix4}.${a_r1}.2 veth_A-R1 307 A 4 42 ${prefix4}.${a 317 A 4 42 ${prefix4}.${a_r2}.2 veth_A-R2 308 B 4 41 ${prefix4}.${b 318 B 4 41 ${prefix4}.${b_r1}.2 veth_B-R1 309 319 310 A 6 61 ${prefix6}:${a 320 A 6 61 ${prefix6}:${a_r1}::2 veth_A-R1 311 A 6 62 ${prefix6}:${a 321 A 6 62 ${prefix6}:${a_r2}::2 veth_A-R2 312 B 6 61 ${prefix6}:${b 322 B 6 61 ${prefix6}:${b_r1}::2 veth_B-R1 313 " 323 " 314 324 315 # nexthop id correlates to id in nexthops conf 325 # nexthop id correlates to id in nexthops config above 316 # ns family prefix 326 # ns family prefix nh id 317 routes_nh=" 327 routes_nh=" 318 A 4 default 328 A 4 default 41 319 A 4 ${prefix4}.${b_r2}.1 329 A 4 ${prefix4}.${b_r2}.1 42 320 B 4 default 330 B 4 default 41 321 331 322 A 6 default 332 A 6 default 61 323 A 6 ${prefix6}:${b_r2}::1 333 A 6 ${prefix6}:${b_r2}::1 62 324 B 6 default 334 B 6 default 61 325 " 335 " 326 336 327 policy_mark=0x04 337 policy_mark=0x04 328 rt_table=main 338 rt_table=main 329 339 330 veth4_a_addr="192.168.1.1" 340 veth4_a_addr="192.168.1.1" 331 veth4_b_addr="192.168.1.2" 341 veth4_b_addr="192.168.1.2" 332 veth4_c_addr="192.168.2.10" 342 veth4_c_addr="192.168.2.10" 333 veth4_mask="24" 343 veth4_mask="24" 334 veth6_a_addr="fd00:1::a" 344 veth6_a_addr="fd00:1::a" 335 veth6_b_addr="fd00:1::b" 345 veth6_b_addr="fd00:1::b" 336 veth6_c_addr="fd00:2::c" 346 veth6_c_addr="fd00:2::c" 337 veth6_mask="64" 347 veth6_mask="64" 338 348 339 tunnel4_a_addr="192.168.2.1" 349 tunnel4_a_addr="192.168.2.1" 340 tunnel4_b_addr="192.168.2.2" 350 tunnel4_b_addr="192.168.2.2" 341 tunnel4_mask="24" 351 tunnel4_mask="24" 342 tunnel6_a_addr="fd00:2::a" 352 tunnel6_a_addr="fd00:2::a" 343 tunnel6_b_addr="fd00:2::b" 353 tunnel6_b_addr="fd00:2::b" 344 tunnel6_mask="64" 354 tunnel6_mask="64" 345 355 346 dummy6_0_prefix="fc00:1000::" 356 dummy6_0_prefix="fc00:1000::" 347 dummy6_1_prefix="fc00:1001::" 357 dummy6_1_prefix="fc00:1001::" 348 dummy6_mask="64" 358 dummy6_mask="64" 349 359 350 err_buf= 360 err_buf= 351 tcpdump_pids= 361 tcpdump_pids= 352 nettest_pids= 362 nettest_pids= 353 socat_pids= 363 socat_pids= 354 tmpoutfile= 364 tmpoutfile= 355 365 356 err() { 366 err() { 357 err_buf="${err_buf}${1} 367 err_buf="${err_buf}${1} 358 " 368 " 359 } 369 } 360 370 361 err_flush() { 371 err_flush() { 362 echo -n "${err_buf}" 372 echo -n "${err_buf}" 363 err_buf= 373 err_buf= 364 } 374 } 365 375 366 run_cmd() { 376 run_cmd() { 367 cmd="$*" 377 cmd="$*" 368 378 369 if [ "$VERBOSE" = "1" ]; then 379 if [ "$VERBOSE" = "1" ]; then 370 printf " COMMAND: $cmd\n" 380 printf " COMMAND: $cmd\n" 371 fi 381 fi 372 382 373 out="$($cmd 2>&1)" 383 out="$($cmd 2>&1)" 374 rc=$? 384 rc=$? 375 if [ "$VERBOSE" = "1" -a -n "$out" ]; 385 if [ "$VERBOSE" = "1" -a -n "$out" ]; then 376 echo " $out" 386 echo " $out" 377 echo 387 echo 378 fi 388 fi 379 389 380 return $rc 390 return $rc 381 } 391 } 382 392 383 run_cmd_bg() { 393 run_cmd_bg() { 384 cmd="$*" 394 cmd="$*" 385 395 386 if [ "$VERBOSE" = "1" ]; then 396 if [ "$VERBOSE" = "1" ]; then 387 printf " COMMAND: %s &\n" " 397 printf " COMMAND: %s &\n" "${cmd}" 388 fi 398 fi 389 399 390 $cmd 2>&1 & 400 $cmd 2>&1 & 391 } 401 } 392 402 393 # Find the auto-generated name for this namesp 403 # Find the auto-generated name for this namespace 394 nsname() { 404 nsname() { 395 eval echo \$NS_$1 405 eval echo \$NS_$1 396 } 406 } 397 407 398 setup_fou_or_gue() { 408 setup_fou_or_gue() { 399 outer="${1}" 409 outer="${1}" 400 inner="${2}" 410 inner="${2}" 401 encap="${3}" 411 encap="${3}" 402 412 403 if [ "${outer}" = "4" ]; then 413 if [ "${outer}" = "4" ]; then 404 modprobe fou || return $ksft_s 414 modprobe fou || return $ksft_skip 405 a_addr="${prefix4}.${a_r1}.1" 415 a_addr="${prefix4}.${a_r1}.1" 406 b_addr="${prefix4}.${b_r1}.1" 416 b_addr="${prefix4}.${b_r1}.1" 407 if [ "${inner}" = "4" ]; then 417 if [ "${inner}" = "4" ]; then 408 type="ipip" 418 type="ipip" 409 ipproto="4" 419 ipproto="4" 410 else 420 else 411 type="sit" 421 type="sit" 412 ipproto="41" 422 ipproto="41" 413 fi 423 fi 414 else 424 else 415 modprobe fou6 || return $ksft_ 425 modprobe fou6 || return $ksft_skip 416 a_addr="${prefix6}:${a_r1}::1" 426 a_addr="${prefix6}:${a_r1}::1" 417 b_addr="${prefix6}:${b_r1}::1" 427 b_addr="${prefix6}:${b_r1}::1" 418 if [ "${inner}" = "4" ]; then 428 if [ "${inner}" = "4" ]; then 419 type="ip6tnl" 429 type="ip6tnl" 420 mode="mode ipip6" 430 mode="mode ipip6" 421 ipproto="4 -6" 431 ipproto="4 -6" 422 else 432 else 423 type="ip6tnl" 433 type="ip6tnl" 424 mode="mode ip6ip6" 434 mode="mode ip6ip6" 425 ipproto="41 -6" 435 ipproto="41 -6" 426 fi 436 fi 427 fi 437 fi 428 438 429 run_cmd ${ns_a} ip fou add port 5555 i 439 run_cmd ${ns_a} ip fou add port 5555 ipproto ${ipproto} || return $ksft_skip 430 run_cmd ${ns_a} ip link add ${encap}_a 440 run_cmd ${ns_a} ip link add ${encap}_a type ${type} ${mode} local ${a_addr} remote ${b_addr} encap ${encap} encap-sport auto encap-dport 5556 || return $ksft_skip 431 441 432 run_cmd ${ns_b} ip fou add port 5556 i 442 run_cmd ${ns_b} ip fou add port 5556 ipproto ${ipproto} 433 run_cmd ${ns_b} ip link add ${encap}_b 443 run_cmd ${ns_b} ip link add ${encap}_b type ${type} ${mode} local ${b_addr} remote ${a_addr} encap ${encap} encap-sport auto encap-dport 5555 434 444 435 if [ "${inner}" = "4" ]; then 445 if [ "${inner}" = "4" ]; then 436 run_cmd ${ns_a} ip addr add ${ 446 run_cmd ${ns_a} ip addr add ${tunnel4_a_addr}/${tunnel4_mask} dev ${encap}_a 437 run_cmd ${ns_b} ip addr add ${ 447 run_cmd ${ns_b} ip addr add ${tunnel4_b_addr}/${tunnel4_mask} dev ${encap}_b 438 else 448 else 439 run_cmd ${ns_a} ip addr add ${ 449 run_cmd ${ns_a} ip addr add ${tunnel6_a_addr}/${tunnel6_mask} dev ${encap}_a 440 run_cmd ${ns_b} ip addr add ${ 450 run_cmd ${ns_b} ip addr add ${tunnel6_b_addr}/${tunnel6_mask} dev ${encap}_b 441 fi 451 fi 442 452 443 run_cmd ${ns_a} ip link set ${encap}_a 453 run_cmd ${ns_a} ip link set ${encap}_a up 444 run_cmd ${ns_b} ip link set ${encap}_b 454 run_cmd ${ns_b} ip link set ${encap}_b up 445 } 455 } 446 456 447 setup_fou44() { 457 setup_fou44() { 448 setup_fou_or_gue 4 4 fou 458 setup_fou_or_gue 4 4 fou 449 } 459 } 450 460 451 setup_fou46() { 461 setup_fou46() { 452 setup_fou_or_gue 4 6 fou 462 setup_fou_or_gue 4 6 fou 453 } 463 } 454 464 455 setup_fou64() { 465 setup_fou64() { 456 setup_fou_or_gue 6 4 fou 466 setup_fou_or_gue 6 4 fou 457 } 467 } 458 468 459 setup_fou66() { 469 setup_fou66() { 460 setup_fou_or_gue 6 6 fou 470 setup_fou_or_gue 6 6 fou 461 } 471 } 462 472 463 setup_gue44() { 473 setup_gue44() { 464 setup_fou_or_gue 4 4 gue 474 setup_fou_or_gue 4 4 gue 465 } 475 } 466 476 467 setup_gue46() { 477 setup_gue46() { 468 setup_fou_or_gue 4 6 gue 478 setup_fou_or_gue 4 6 gue 469 } 479 } 470 480 471 setup_gue64() { 481 setup_gue64() { 472 setup_fou_or_gue 6 4 gue 482 setup_fou_or_gue 6 4 gue 473 } 483 } 474 484 475 setup_gue66() { 485 setup_gue66() { 476 setup_fou_or_gue 6 6 gue 486 setup_fou_or_gue 6 6 gue 477 } 487 } 478 488 479 setup_ipvX_over_ipvY() { 489 setup_ipvX_over_ipvY() { 480 inner=${1} 490 inner=${1} 481 outer=${2} 491 outer=${2} 482 492 483 if [ "${outer}" -eq 4 ]; then 493 if [ "${outer}" -eq 4 ]; then 484 a_addr="${prefix4}.${a_r1}.1" 494 a_addr="${prefix4}.${a_r1}.1" 485 b_addr="${prefix4}.${b_r1}.1" 495 b_addr="${prefix4}.${b_r1}.1" 486 if [ "${inner}" -eq 4 ]; then 496 if [ "${inner}" -eq 4 ]; then 487 type="ipip" 497 type="ipip" 488 mode="ipip" 498 mode="ipip" 489 else 499 else 490 type="sit" 500 type="sit" 491 mode="ip6ip" 501 mode="ip6ip" 492 fi 502 fi 493 else 503 else 494 a_addr="${prefix6}:${a_r1}::1" 504 a_addr="${prefix6}:${a_r1}::1" 495 b_addr="${prefix6}:${b_r1}::1" 505 b_addr="${prefix6}:${b_r1}::1" 496 type="ip6tnl" 506 type="ip6tnl" 497 if [ "${inner}" -eq 4 ]; then 507 if [ "${inner}" -eq 4 ]; then 498 mode="ipip6" 508 mode="ipip6" 499 else 509 else 500 mode="ip6ip6" 510 mode="ip6ip6" 501 fi 511 fi 502 fi 512 fi 503 513 504 run_cmd ${ns_a} ip link add ip_a type 514 run_cmd ${ns_a} ip link add ip_a type ${type} local ${a_addr} remote ${b_addr} mode ${mode} || return $ksft_skip 505 run_cmd ${ns_b} ip link add ip_b type 515 run_cmd ${ns_b} ip link add ip_b type ${type} local ${b_addr} remote ${a_addr} mode ${mode} 506 516 507 run_cmd ${ns_a} ip link set ip_a up 517 run_cmd ${ns_a} ip link set ip_a up 508 run_cmd ${ns_b} ip link set ip_b up 518 run_cmd ${ns_b} ip link set ip_b up 509 519 510 if [ "${inner}" = "4" ]; then 520 if [ "${inner}" = "4" ]; then 511 run_cmd ${ns_a} ip addr add ${ 521 run_cmd ${ns_a} ip addr add ${tunnel4_a_addr}/${tunnel4_mask} dev ip_a 512 run_cmd ${ns_b} ip addr add ${ 522 run_cmd ${ns_b} ip addr add ${tunnel4_b_addr}/${tunnel4_mask} dev ip_b 513 else 523 else 514 run_cmd ${ns_a} ip addr add ${ 524 run_cmd ${ns_a} ip addr add ${tunnel6_a_addr}/${tunnel6_mask} dev ip_a 515 run_cmd ${ns_b} ip addr add ${ 525 run_cmd ${ns_b} ip addr add ${tunnel6_b_addr}/${tunnel6_mask} dev ip_b 516 fi 526 fi 517 } 527 } 518 528 519 setup_ip4ip4() { 529 setup_ip4ip4() { 520 setup_ipvX_over_ipvY 4 4 530 setup_ipvX_over_ipvY 4 4 521 } 531 } 522 532 523 setup_ip6ip4() { 533 setup_ip6ip4() { 524 setup_ipvX_over_ipvY 6 4 534 setup_ipvX_over_ipvY 6 4 525 } 535 } 526 536 527 setup_ip4ip6() { 537 setup_ip4ip6() { 528 setup_ipvX_over_ipvY 4 6 538 setup_ipvX_over_ipvY 4 6 529 } 539 } 530 540 531 setup_ip6ip6() { 541 setup_ip6ip6() { 532 setup_ipvX_over_ipvY 6 6 542 setup_ipvX_over_ipvY 6 6 533 } 543 } 534 544 535 setup_namespaces() { 545 setup_namespaces() { 536 setup_ns NS_A NS_B NS_C NS_R1 NS_R2 << 537 for n in ${NS_A} ${NS_B} ${NS_C} ${NS_ 546 for n in ${NS_A} ${NS_B} ${NS_C} ${NS_R1} ${NS_R2}; do >> 547 ip netns add ${n} || return 1 >> 548 538 # Disable DAD, so that we don' 549 # Disable DAD, so that we don't have to wait to use the 539 # configured IPv6 addresses 550 # configured IPv6 addresses 540 ip netns exec ${n} sysctl -q n 551 ip netns exec ${n} sysctl -q net/ipv6/conf/default/accept_dad=0 541 done 552 done 542 ns_a="ip netns exec ${NS_A}" << 543 ns_b="ip netns exec ${NS_B}" << 544 ns_c="ip netns exec ${NS_C}" << 545 ns_r1="ip netns exec ${NS_R1}" << 546 ns_r2="ip netns exec ${NS_R2}" << 547 } 553 } 548 554 549 setup_veth() { 555 setup_veth() { 550 run_cmd ${ns_a} ip link add veth_a typ 556 run_cmd ${ns_a} ip link add veth_a type veth peer name veth_b || return 1 551 run_cmd ${ns_a} ip link set veth_b net 557 run_cmd ${ns_a} ip link set veth_b netns ${NS_B} 552 558 553 run_cmd ${ns_a} ip addr add ${veth4_a_ 559 run_cmd ${ns_a} ip addr add ${veth4_a_addr}/${veth4_mask} dev veth_a 554 run_cmd ${ns_b} ip addr add ${veth4_b_ 560 run_cmd ${ns_b} ip addr add ${veth4_b_addr}/${veth4_mask} dev veth_b 555 561 556 run_cmd ${ns_a} ip addr add ${veth6_a_ 562 run_cmd ${ns_a} ip addr add ${veth6_a_addr}/${veth6_mask} dev veth_a 557 run_cmd ${ns_b} ip addr add ${veth6_b_ 563 run_cmd ${ns_b} ip addr add ${veth6_b_addr}/${veth6_mask} dev veth_b 558 564 559 run_cmd ${ns_a} ip link set veth_a up 565 run_cmd ${ns_a} ip link set veth_a up 560 run_cmd ${ns_b} ip link set veth_b up 566 run_cmd ${ns_b} ip link set veth_b up 561 } 567 } 562 568 563 setup_vti() { 569 setup_vti() { 564 proto=${1} 570 proto=${1} 565 veth_a_addr="${2}" 571 veth_a_addr="${2}" 566 veth_b_addr="${3}" 572 veth_b_addr="${3}" 567 vti_a_addr="${4}" 573 vti_a_addr="${4}" 568 vti_b_addr="${5}" 574 vti_b_addr="${5}" 569 vti_mask=${6} 575 vti_mask=${6} 570 576 571 [ ${proto} -eq 6 ] && vti_type="vti6" 577 [ ${proto} -eq 6 ] && vti_type="vti6" || vti_type="vti" 572 578 573 run_cmd ${ns_a} ip link add vti${proto 579 run_cmd ${ns_a} ip link add vti${proto}_a type ${vti_type} local ${veth_a_addr} remote ${veth_b_addr} key 10 || return 1 574 run_cmd ${ns_b} ip link add vti${proto 580 run_cmd ${ns_b} ip link add vti${proto}_b type ${vti_type} local ${veth_b_addr} remote ${veth_a_addr} key 10 575 581 576 run_cmd ${ns_a} ip addr add ${vti_a_ad 582 run_cmd ${ns_a} ip addr add ${vti_a_addr}/${vti_mask} dev vti${proto}_a 577 run_cmd ${ns_b} ip addr add ${vti_b_ad 583 run_cmd ${ns_b} ip addr add ${vti_b_addr}/${vti_mask} dev vti${proto}_b 578 584 579 run_cmd ${ns_a} ip link set vti${proto 585 run_cmd ${ns_a} ip link set vti${proto}_a up 580 run_cmd ${ns_b} ip link set vti${proto 586 run_cmd ${ns_b} ip link set vti${proto}_b up 581 } 587 } 582 588 583 setup_vti4() { 589 setup_vti4() { 584 setup_vti 4 ${veth4_a_addr} ${veth4_b_ 590 setup_vti 4 ${veth4_a_addr} ${veth4_b_addr} ${tunnel4_a_addr} ${tunnel4_b_addr} ${tunnel4_mask} 585 } 591 } 586 592 587 setup_vti6() { 593 setup_vti6() { 588 setup_vti 6 ${veth6_a_addr} ${veth6_b_ 594 setup_vti 6 ${veth6_a_addr} ${veth6_b_addr} ${tunnel6_a_addr} ${tunnel6_b_addr} ${tunnel6_mask} 589 } 595 } 590 596 591 setup_vti4routed() { 597 setup_vti4routed() { 592 setup_vti 4 ${prefix4}.${a_r1}.1 ${pre 598 setup_vti 4 ${prefix4}.${a_r1}.1 ${prefix4}.${b_r1}.1 ${tunnel4_a_addr} ${tunnel4_b_addr} ${tunnel4_mask} 593 } 599 } 594 600 595 setup_vti6routed() { 601 setup_vti6routed() { 596 setup_vti 6 ${prefix6}:${a_r1}::1 ${pr 602 setup_vti 6 ${prefix6}:${a_r1}::1 ${prefix6}:${b_r1}::1 ${tunnel6_a_addr} ${tunnel6_b_addr} ${tunnel6_mask} 597 } 603 } 598 604 599 setup_vxlan_or_geneve() { 605 setup_vxlan_or_geneve() { 600 type="${1}" 606 type="${1}" 601 a_addr="${2}" 607 a_addr="${2}" 602 b_addr="${3}" 608 b_addr="${3}" 603 opts="${4}" 609 opts="${4}" 604 br_if_a="${5}" 610 br_if_a="${5}" 605 611 606 if [ "${type}" = "vxlan" ]; then 612 if [ "${type}" = "vxlan" ]; then 607 opts="${opts} ttl 64 dstport 4 613 opts="${opts} ttl 64 dstport 4789" 608 opts_a="local ${a_addr}" 614 opts_a="local ${a_addr}" 609 opts_b="local ${b_addr}" 615 opts_b="local ${b_addr}" 610 else 616 else 611 opts_a="" 617 opts_a="" 612 opts_b="" 618 opts_b="" 613 fi 619 fi 614 620 615 run_cmd ${ns_a} ip link add ${type}_a 621 run_cmd ${ns_a} ip link add ${type}_a type ${type} id 1 ${opts_a} remote ${b_addr} ${opts} || return 1 616 run_cmd ${ns_b} ip link add ${type}_b 622 run_cmd ${ns_b} ip link add ${type}_b type ${type} id 1 ${opts_b} remote ${a_addr} ${opts} 617 623 618 if [ -n "${br_if_a}" ]; then 624 if [ -n "${br_if_a}" ]; then 619 run_cmd ${ns_a} ip addr add ${ 625 run_cmd ${ns_a} ip addr add ${tunnel4_a_addr}/${tunnel4_mask} dev ${br_if_a} 620 run_cmd ${ns_a} ip addr add ${ 626 run_cmd ${ns_a} ip addr add ${tunnel6_a_addr}/${tunnel6_mask} dev ${br_if_a} 621 run_cmd ${ns_a} ip link set ${ 627 run_cmd ${ns_a} ip link set ${type}_a master ${br_if_a} 622 else 628 else 623 run_cmd ${ns_a} ip addr add ${ 629 run_cmd ${ns_a} ip addr add ${tunnel4_a_addr}/${tunnel4_mask} dev ${type}_a 624 run_cmd ${ns_a} ip addr add ${ 630 run_cmd ${ns_a} ip addr add ${tunnel6_a_addr}/${tunnel6_mask} dev ${type}_a 625 fi 631 fi 626 632 627 run_cmd ${ns_b} ip addr add ${tunnel4_ 633 run_cmd ${ns_b} ip addr add ${tunnel4_b_addr}/${tunnel4_mask} dev ${type}_b 628 run_cmd ${ns_b} ip addr add ${tunnel6_ 634 run_cmd ${ns_b} ip addr add ${tunnel6_b_addr}/${tunnel6_mask} dev ${type}_b 629 635 630 run_cmd ${ns_a} ip link set ${type}_a 636 run_cmd ${ns_a} ip link set ${type}_a up 631 run_cmd ${ns_b} ip link set ${type}_b 637 run_cmd ${ns_b} ip link set ${type}_b up 632 } 638 } 633 639 634 setup_geneve4() { 640 setup_geneve4() { 635 setup_vxlan_or_geneve geneve ${prefix4 641 setup_vxlan_or_geneve geneve ${prefix4}.${a_r1}.1 ${prefix4}.${b_r1}.1 "df set" 636 } 642 } 637 643 638 setup_vxlan4() { 644 setup_vxlan4() { 639 setup_vxlan_or_geneve vxlan ${prefix4 645 setup_vxlan_or_geneve vxlan ${prefix4}.${a_r1}.1 ${prefix4}.${b_r1}.1 "df set" 640 } 646 } 641 647 642 setup_geneve6() { 648 setup_geneve6() { 643 setup_vxlan_or_geneve geneve ${prefix6 649 setup_vxlan_or_geneve geneve ${prefix6}:${a_r1}::1 ${prefix6}:${b_r1}::1 "" 644 } 650 } 645 651 646 setup_vxlan6() { 652 setup_vxlan6() { 647 setup_vxlan_or_geneve vxlan ${prefix6 653 setup_vxlan_or_geneve vxlan ${prefix6}:${a_r1}::1 ${prefix6}:${b_r1}::1 "" 648 } 654 } 649 655 650 setup_bridged_geneve4() { 656 setup_bridged_geneve4() { 651 setup_vxlan_or_geneve geneve ${prefix4 657 setup_vxlan_or_geneve geneve ${prefix4}.${a_r1}.1 ${prefix4}.${b_r1}.1 "df set" "br0" 652 } 658 } 653 659 654 setup_bridged_vxlan4() { 660 setup_bridged_vxlan4() { 655 setup_vxlan_or_geneve vxlan ${prefix4 661 setup_vxlan_or_geneve vxlan ${prefix4}.${a_r1}.1 ${prefix4}.${b_r1}.1 "df set" "br0" 656 } 662 } 657 663 658 setup_bridged_geneve6() { 664 setup_bridged_geneve6() { 659 setup_vxlan_or_geneve geneve ${prefix6 665 setup_vxlan_or_geneve geneve ${prefix6}:${a_r1}::1 ${prefix6}:${b_r1}::1 "" "br0" 660 } 666 } 661 667 662 setup_bridged_vxlan6() { 668 setup_bridged_vxlan6() { 663 setup_vxlan_or_geneve vxlan ${prefix6 669 setup_vxlan_or_geneve vxlan ${prefix6}:${a_r1}::1 ${prefix6}:${b_r1}::1 "" "br0" 664 } 670 } 665 671 666 setup_xfrm() { 672 setup_xfrm() { 667 proto=${1} 673 proto=${1} 668 veth_a_addr="${2}" 674 veth_a_addr="${2}" 669 veth_b_addr="${3}" 675 veth_b_addr="${3}" 670 encap=${4} 676 encap=${4} 671 677 672 run_cmd ${ns_a} ip -${proto} xfrm stat 678 run_cmd ${ns_a} ip -${proto} xfrm state add src ${veth_a_addr} dst ${veth_b_addr} spi 0x1000 proto esp aead 'rfc4106(gcm(aes))' 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f 128 mode tunnel ${encap} || return 1 673 run_cmd ${ns_a} ip -${proto} xfrm stat 679 run_cmd ${ns_a} ip -${proto} xfrm state add src ${veth_b_addr} dst ${veth_a_addr} spi 0x1001 proto esp aead 'rfc4106(gcm(aes))' 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f 128 mode tunnel ${encap} 674 run_cmd ${ns_a} ip -${proto} xfrm poli 680 run_cmd ${ns_a} ip -${proto} xfrm policy add dir out mark 10 tmpl src ${veth_a_addr} dst ${veth_b_addr} proto esp mode tunnel 675 run_cmd ${ns_a} ip -${proto} xfrm poli 681 run_cmd ${ns_a} ip -${proto} xfrm policy add dir in mark 10 tmpl src ${veth_b_addr} dst ${veth_a_addr} proto esp mode tunnel 676 682 677 run_cmd ${ns_b} ip -${proto} xfrm stat 683 run_cmd ${ns_b} ip -${proto} xfrm state add src ${veth_a_addr} dst ${veth_b_addr} spi 0x1000 proto esp aead 'rfc4106(gcm(aes))' 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f 128 mode tunnel ${encap} 678 run_cmd ${ns_b} ip -${proto} xfrm stat 684 run_cmd ${ns_b} ip -${proto} xfrm state add src ${veth_b_addr} dst ${veth_a_addr} spi 0x1001 proto esp aead 'rfc4106(gcm(aes))' 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f 128 mode tunnel ${encap} 679 run_cmd ${ns_b} ip -${proto} xfrm poli 685 run_cmd ${ns_b} ip -${proto} xfrm policy add dir out mark 10 tmpl src ${veth_b_addr} dst ${veth_a_addr} proto esp mode tunnel 680 run_cmd ${ns_b} ip -${proto} xfrm poli 686 run_cmd ${ns_b} ip -${proto} xfrm policy add dir in mark 10 tmpl src ${veth_a_addr} dst ${veth_b_addr} proto esp mode tunnel 681 } 687 } 682 688 683 setup_nettest_xfrm() { 689 setup_nettest_xfrm() { 684 if ! which nettest >/dev/null; then 690 if ! which nettest >/dev/null; then 685 PATH=$PWD:$PATH 691 PATH=$PWD:$PATH 686 if ! which nettest >/dev/null; 692 if ! which nettest >/dev/null; then 687 echo "'nettest' comman 693 echo "'nettest' command not found; skipping tests" 688 return 1 694 return 1 689 fi 695 fi 690 fi 696 fi 691 697 692 [ ${1} -eq 6 ] && proto="-6" || proto= 698 [ ${1} -eq 6 ] && proto="-6" || proto="" 693 port=${2} 699 port=${2} 694 700 695 run_cmd_bg "${ns_a}" nettest "${proto} 701 run_cmd_bg "${ns_a}" nettest "${proto}" -q -D -s -x -p "${port}" -t 5 696 nettest_pids="${nettest_pids} $!" 702 nettest_pids="${nettest_pids} $!" 697 703 698 run_cmd_bg "${ns_b}" nettest "${proto} 704 run_cmd_bg "${ns_b}" nettest "${proto}" -q -D -s -x -p "${port}" -t 5 699 nettest_pids="${nettest_pids} $!" 705 nettest_pids="${nettest_pids} $!" 700 } 706 } 701 707 702 setup_xfrm4() { 708 setup_xfrm4() { 703 setup_xfrm 4 ${veth4_a_addr} ${veth4_b 709 setup_xfrm 4 ${veth4_a_addr} ${veth4_b_addr} 704 } 710 } 705 711 706 setup_xfrm6() { 712 setup_xfrm6() { 707 setup_xfrm 6 ${veth6_a_addr} ${veth6_b 713 setup_xfrm 6 ${veth6_a_addr} ${veth6_b_addr} 708 } 714 } 709 715 710 setup_xfrm4udp() { 716 setup_xfrm4udp() { 711 setup_xfrm 4 ${veth4_a_addr} ${veth4_b !! 717 setup_xfrm 4 ${veth4_a_addr} ${veth4_b_addr} "encap espinudp 4500 4500 0.0.0.0" 712 setup_nettest_xfrm 4 4500 !! 718 setup_nettest_xfrm 4 4500 713 } 719 } 714 720 715 setup_xfrm6udp() { 721 setup_xfrm6udp() { 716 setup_xfrm 6 ${veth6_a_addr} ${veth6_b !! 722 setup_xfrm 6 ${veth6_a_addr} ${veth6_b_addr} "encap espinudp 4500 4500 0.0.0.0" 717 setup_nettest_xfrm 6 4500 !! 723 setup_nettest_xfrm 6 4500 718 } 724 } 719 725 720 setup_xfrm4udprouted() { 726 setup_xfrm4udprouted() { 721 setup_xfrm 4 ${prefix4}.${a_r1}.1 ${pr !! 727 setup_xfrm 4 ${prefix4}.${a_r1}.1 ${prefix4}.${b_r1}.1 "encap espinudp 4500 4500 0.0.0.0" 722 setup_nettest_xfrm 4 4500 !! 728 setup_nettest_xfrm 4 4500 723 } 729 } 724 730 725 setup_xfrm6udprouted() { 731 setup_xfrm6udprouted() { 726 setup_xfrm 6 ${prefix6}:${a_r1}::1 ${p !! 732 setup_xfrm 6 ${prefix6}:${a_r1}::1 ${prefix6}:${b_r1}::1 "encap espinudp 4500 4500 0.0.0.0" 727 setup_nettest_xfrm 6 4500 !! 733 setup_nettest_xfrm 6 4500 728 } 734 } 729 735 730 setup_routing_old() { 736 setup_routing_old() { 731 for i in ${routes}; do 737 for i in ${routes}; do 732 [ "${ns}" = "" ] && ns= 738 [ "${ns}" = "" ] && ns="${i}" && continue 733 [ "${addr}" = "" ] && add 739 [ "${addr}" = "" ] && addr="${i}" && continue 734 [ "${gw}" = "" ] && gw= 740 [ "${gw}" = "" ] && gw="${i}" 735 741 736 ns_name="$(nsname ${ns})" 742 ns_name="$(nsname ${ns})" 737 743 738 ip -n "${ns_name}" route add " 744 ip -n "${ns_name}" route add "${addr}" table "${rt_table}" via "${gw}" 739 745 740 ns=""; addr=""; gw="" 746 ns=""; addr=""; gw="" 741 done 747 done 742 } 748 } 743 749 744 setup_routing_new() { 750 setup_routing_new() { 745 for i in ${nexthops}; do 751 for i in ${nexthops}; do 746 [ "${ns}" = "" ] && ns= 752 [ "${ns}" = "" ] && ns="${i}" && continue 747 [ "${fam}" = "" ] && fam 753 [ "${fam}" = "" ] && fam="${i}" && continue 748 [ "${nhid}" = "" ] && nhi 754 [ "${nhid}" = "" ] && nhid="${i}" && continue 749 [ "${gw}" = "" ] && gw= 755 [ "${gw}" = "" ] && gw="${i}" && continue 750 [ "${dev}" = "" ] && dev 756 [ "${dev}" = "" ] && dev="${i}" 751 757 752 ns_name="$(nsname ${ns})" 758 ns_name="$(nsname ${ns})" 753 759 754 ip -n ${ns_name} -${fam} nexth 760 ip -n ${ns_name} -${fam} nexthop add id ${nhid} via ${gw} dev ${dev} 755 761 756 ns=""; fam=""; nhid=""; gw=""; 762 ns=""; fam=""; nhid=""; gw=""; dev="" 757 763 758 done 764 done 759 765 760 for i in ${routes_nh}; do 766 for i in ${routes_nh}; do 761 [ "${ns}" = "" ] && ns= 767 [ "${ns}" = "" ] && ns="${i}" && continue 762 [ "${fam}" = "" ] && fam 768 [ "${fam}" = "" ] && fam="${i}" && continue 763 [ "${addr}" = "" ] && add 769 [ "${addr}" = "" ] && addr="${i}" && continue 764 [ "${nhid}" = "" ] && nhi 770 [ "${nhid}" = "" ] && nhid="${i}" 765 771 766 ns_name="$(nsname ${ns})" 772 ns_name="$(nsname ${ns})" 767 773 768 ip -n "${ns_name}" -"${fam}" r 774 ip -n "${ns_name}" -"${fam}" route add "${addr}" table "${rt_table}" nhid "${nhid}" 769 775 770 ns=""; fam=""; addr=""; nhid=" 776 ns=""; fam=""; addr=""; nhid="" 771 done 777 done 772 } 778 } 773 779 774 setup_routing() { 780 setup_routing() { 775 for i in ${NS_R1} ${NS_R2}; do 781 for i in ${NS_R1} ${NS_R2}; do 776 ip netns exec ${i} sysctl -q n 782 ip netns exec ${i} sysctl -q net/ipv4/ip_forward=1 777 ip netns exec ${i} sysctl -q n 783 ip netns exec ${i} sysctl -q net/ipv6/conf/all/forwarding=1 778 done 784 done 779 785 780 for i in ${routing_addrs}; do 786 for i in ${routing_addrs}; do 781 [ "${ns}" = "" ] && ns= 787 [ "${ns}" = "" ] && ns="${i}" && continue 782 [ "${peer}" = "" ] && pee 788 [ "${peer}" = "" ] && peer="${i}" && continue 783 [ "${segment}" = "" ] && seg 789 [ "${segment}" = "" ] && segment="${i}" 784 790 785 ns_name="$(nsname ${ns})" 791 ns_name="$(nsname ${ns})" 786 peer_name="$(nsname ${peer})" 792 peer_name="$(nsname ${peer})" 787 if="veth_${ns}-${peer}" 793 if="veth_${ns}-${peer}" 788 ifpeer="veth_${peer}-${ns}" 794 ifpeer="veth_${peer}-${ns}" 789 795 790 # Create veth links 796 # Create veth links 791 ip link add ${if} up netns ${n 797 ip link add ${if} up netns ${ns_name} type veth peer name ${ifpeer} netns ${peer_name} || return 1 792 ip -n ${peer_name} link set de 798 ip -n ${peer_name} link set dev ${ifpeer} up 793 799 794 # Add addresses 800 # Add addresses 795 ip -n ${ns_name} addr add ${ 801 ip -n ${ns_name} addr add ${prefix4}.${segment}.1/24 dev ${if} 796 ip -n ${ns_name} addr add ${ 802 ip -n ${ns_name} addr add ${prefix6}:${segment}::1/64 dev ${if} 797 803 798 ip -n ${peer_name} addr add ${ 804 ip -n ${peer_name} addr add ${prefix4}.${segment}.2/24 dev ${ifpeer} 799 ip -n ${peer_name} addr add ${ 805 ip -n ${peer_name} addr add ${prefix6}:${segment}::2/64 dev ${ifpeer} 800 806 801 ns=""; peer=""; segment="" 807 ns=""; peer=""; segment="" 802 done 808 done 803 809 804 if [ "$USE_NH" = "yes" ]; then 810 if [ "$USE_NH" = "yes" ]; then 805 setup_routing_new 811 setup_routing_new 806 else 812 else 807 setup_routing_old 813 setup_routing_old 808 fi 814 fi 809 815 810 return 0 816 return 0 811 } 817 } 812 818 813 setup_policy_routing() { 819 setup_policy_routing() { 814 setup_routing 820 setup_routing 815 821 816 ip -netns "${NS_A}" -4 rule add dsfiel 822 ip -netns "${NS_A}" -4 rule add dsfield "${policy_mark}" \ 817 table "${rt_table}" 823 table "${rt_table}" 818 824 819 # Set the IPv4 Don't Fragment bit with 825 # Set the IPv4 Don't Fragment bit with tc, since socat doesn't seem to 820 # have an option do to it. 826 # have an option do to it. 821 tc -netns "${NS_A}" qdisc replace dev 827 tc -netns "${NS_A}" qdisc replace dev veth_A-R1 root prio 822 tc -netns "${NS_A}" qdisc replace dev 828 tc -netns "${NS_A}" qdisc replace dev veth_A-R2 root prio 823 tc -netns "${NS_A}" filter add dev vet 829 tc -netns "${NS_A}" filter add dev veth_A-R1 \ 824 protocol ipv4 flower ip_proto 830 protocol ipv4 flower ip_proto udp \ 825 action pedit ex munge ip df se 831 action pedit ex munge ip df set 0x40 pipe csum ip and udp 826 tc -netns "${NS_A}" filter add dev vet 832 tc -netns "${NS_A}" filter add dev veth_A-R2 \ 827 protocol ipv4 flower ip_proto 833 protocol ipv4 flower ip_proto udp \ 828 action pedit ex munge ip df se 834 action pedit ex munge ip df set 0x40 pipe csum ip and udp 829 } 835 } 830 836 831 setup_bridge() { 837 setup_bridge() { 832 run_cmd ${ns_a} ip link add br0 type b 838 run_cmd ${ns_a} ip link add br0 type bridge || return $ksft_skip 833 run_cmd ${ns_a} ip link set br0 up 839 run_cmd ${ns_a} ip link set br0 up 834 840 835 run_cmd ${ns_c} ip link add veth_C-A t 841 run_cmd ${ns_c} ip link add veth_C-A type veth peer name veth_A-C 836 run_cmd ${ns_c} ip link set veth_A-C n !! 842 run_cmd ${ns_c} ip link set veth_A-C netns ns-A 837 843 838 run_cmd ${ns_a} ip link set veth_A-C u 844 run_cmd ${ns_a} ip link set veth_A-C up 839 run_cmd ${ns_c} ip link set veth_C-A u 845 run_cmd ${ns_c} ip link set veth_C-A up 840 run_cmd ${ns_c} ip addr add ${veth4_c_ 846 run_cmd ${ns_c} ip addr add ${veth4_c_addr}/${veth4_mask} dev veth_C-A 841 run_cmd ${ns_c} ip addr add ${veth6_c_ 847 run_cmd ${ns_c} ip addr add ${veth6_c_addr}/${veth6_mask} dev veth_C-A 842 run_cmd ${ns_a} ip link set veth_A-C m 848 run_cmd ${ns_a} ip link set veth_A-C master br0 843 } 849 } 844 850 845 setup_ovs_via_internal_utility() { << 846 type="${1}" << 847 a_addr="${2}" << 848 b_addr="${3}" << 849 dport="${4}" << 850 << 851 run_cmd python3 ./openvswitch/ovs-dpct << 852 << 853 ports=$(python3 ./openvswitch/ovs-dpct << 854 br0_port=$(echo "$ports" | grep -E "\s << 855 type_a_port=$(echo "$ports" | grep ${t << 856 veth_a_port=$(echo "$ports" | grep vet << 857 << 858 v4_a_tun="${prefix4}.${a_r1}.1" << 859 v4_b_tun="${prefix4}.${b_r1}.1" << 860 << 861 v6_a_tun="${prefix6}:${a_r1}::1" << 862 v6_b_tun="${prefix6}:${b_r1}::1" << 863 << 864 if [ "${v4_a_tun}" = "${a_addr}" ]; th << 865 run_cmd python3 ./openvswitch/ << 866 "recirc_id(0),in_port(${ve << 867 "set(tunnel(tun_id=1,dst=$ << 868 run_cmd python3 ./openvswitch/ << 869 "recirc_id(0),in_port(${ve << 870 "set(tunnel(tun_id=1,dst=$ << 871 run_cmd python3 ./openvswitch/ << 872 "recirc_id(0),tunnel(tun_i << 873 "${veth_a_port}" << 874 run_cmd python3 ./openvswitch/ << 875 "recirc_id(0),tunnel(tun_i << 876 "${veth_a_port}" << 877 run_cmd python3 ./openvswitch/ << 878 "recirc_id(0),tunnel(tun_i << 879 "${veth_a_port}" << 880 run_cmd python3 ./openvswitch/ << 881 "recirc_id(0),in_port(${ve << 882 "set(tunnel(tun_id=1,dst=$ << 883 else << 884 run_cmd python3 ./openvswitch/ << 885 "recirc_id(0),in_port(${ve << 886 "set(tunnel(tun_id=1,ipv6_ << 887 run_cmd python3 ./openvswitch/ << 888 "recirc_id(0),in_port(${ve << 889 "set(tunnel(tun_id=1,ipv6_ << 890 run_cmd python3 ./openvswitch/ << 891 "recirc_id(0),tunnel(tun_i << 892 "${veth_a_port}" << 893 run_cmd python3 ./openvswitch/ << 894 "recirc_id(0),tunnel(tun_i << 895 "${veth_a_port}" << 896 run_cmd python3 ./openvswitch/ << 897 "recirc_id(0),tunnel(tun_i << 898 "${veth_a_port}" << 899 run_cmd python3 ./openvswitch/ << 900 "recirc_id(0),in_port(${ve << 901 "set(tunnel(tun_id=1,ipv6_ << 902 fi << 903 } << 904 << 905 setup_ovs_via_vswitchd() { << 906 type="${1}" << 907 b_addr="${2}" << 908 << 909 run_cmd ovs-vsctl add-port ovs_br0 ${t << 910 set interface ${type}_a type=$ << 911 options:remote_ip=${b_addr} op << 912 } << 913 << 914 setup_ovs_vxlan_or_geneve() { 851 setup_ovs_vxlan_or_geneve() { 915 type="${1}" 852 type="${1}" 916 a_addr="${2}" 853 a_addr="${2}" 917 b_addr="${3}" 854 b_addr="${3}" 918 dport="6081" << 919 855 920 if [ "${type}" = "vxlan" ]; then 856 if [ "${type}" = "vxlan" ]; then 921 dport="4789" << 922 opts="${opts} ttl 64 dstport 4 857 opts="${opts} ttl 64 dstport 4789" 923 opts_b="local ${b_addr}" 858 opts_b="local ${b_addr}" 924 fi 859 fi 925 860 926 setup_ovs_via_internal_utility "${type !! 861 run_cmd ovs-vsctl add-port ovs_br0 ${type}_a -- \ 927 "${dpor !! 862 set interface ${type}_a type=${type} \ 928 setup_ovs_via_vswitchd "${type}" " !! 863 options:remote_ip=${b_addr} options:key=1 options:csum=true || return 1 929 864 930 run_cmd ${ns_b} ip link add ${type}_b 865 run_cmd ${ns_b} ip link add ${type}_b type ${type} id 1 ${opts_b} remote ${a_addr} ${opts} || return 1 931 866 932 run_cmd ${ns_b} ip addr add ${tunnel4_ 867 run_cmd ${ns_b} ip addr add ${tunnel4_b_addr}/${tunnel4_mask} dev ${type}_b 933 run_cmd ${ns_b} ip addr add ${tunnel6_ 868 run_cmd ${ns_b} ip addr add ${tunnel6_b_addr}/${tunnel6_mask} dev ${type}_b 934 869 935 run_cmd ip link set ${type}_a up << 936 run_cmd ${ns_b} ip link set ${type}_b 870 run_cmd ${ns_b} ip link set ${type}_b up 937 } 871 } 938 872 939 setup_ovs_geneve4() { 873 setup_ovs_geneve4() { 940 setup_ovs_vxlan_or_geneve geneve ${pre 874 setup_ovs_vxlan_or_geneve geneve ${prefix4}.${a_r1}.1 ${prefix4}.${b_r1}.1 941 } 875 } 942 876 943 setup_ovs_vxlan4() { 877 setup_ovs_vxlan4() { 944 setup_ovs_vxlan_or_geneve vxlan ${pre 878 setup_ovs_vxlan_or_geneve vxlan ${prefix4}.${a_r1}.1 ${prefix4}.${b_r1}.1 945 } 879 } 946 880 947 setup_ovs_geneve6() { 881 setup_ovs_geneve6() { 948 setup_ovs_vxlan_or_geneve geneve ${pre 882 setup_ovs_vxlan_or_geneve geneve ${prefix6}:${a_r1}::1 ${prefix6}:${b_r1}::1 949 } 883 } 950 884 951 setup_ovs_vxlan6() { 885 setup_ovs_vxlan6() { 952 setup_ovs_vxlan_or_geneve vxlan ${pre 886 setup_ovs_vxlan_or_geneve vxlan ${prefix6}:${a_r1}::1 ${prefix6}:${b_r1}::1 953 } 887 } 954 888 955 setup_ovs_br_internal() { << 956 run_cmd python3 ./openvswitch/ovs-dpct << 957 return 1 << 958 } << 959 << 960 setup_ovs_br_vswitchd() { << 961 run_cmd ovs-vsctl add-br ovs_br0 || re << 962 } << 963 << 964 setup_ovs_add_if() { << 965 ifname="${1}" << 966 run_cmd python3 ./openvswitch/ovs-dpct << 967 "${ifname}" || \ << 968 run_cmd ovs-vsctl add-port ovs << 969 } << 970 << 971 setup_ovs_bridge() { 889 setup_ovs_bridge() { 972 setup_ovs_br_internal || setup_ovs_br_ !! 890 run_cmd ovs-vsctl add-br ovs_br0 || return $ksft_skip 973 run_cmd ip link set ovs_br0 up 891 run_cmd ip link set ovs_br0 up 974 892 975 run_cmd ${ns_c} ip link add veth_C-A t 893 run_cmd ${ns_c} ip link add veth_C-A type veth peer name veth_A-C 976 run_cmd ${ns_c} ip link set veth_A-C n 894 run_cmd ${ns_c} ip link set veth_A-C netns 1 977 895 978 run_cmd ip link set veth_A-C u 896 run_cmd ip link set veth_A-C up 979 run_cmd ${ns_c} ip link set veth_C-A u 897 run_cmd ${ns_c} ip link set veth_C-A up 980 run_cmd ${ns_c} ip addr add ${veth4_c_ 898 run_cmd ${ns_c} ip addr add ${veth4_c_addr}/${veth4_mask} dev veth_C-A 981 run_cmd ${ns_c} ip addr add ${veth6_c_ 899 run_cmd ${ns_c} ip addr add ${veth6_c_addr}/${veth6_mask} dev veth_C-A 982 setup_ovs_add_if veth_A-C !! 900 run_cmd ovs-vsctl add-port ovs_br0 veth_A-C 983 901 984 # Move veth_A-R1 to init 902 # Move veth_A-R1 to init 985 run_cmd ${ns_a} ip link set veth_A-R1 903 run_cmd ${ns_a} ip link set veth_A-R1 netns 1 986 run_cmd ip addr add ${prefix4}.${a_r1} 904 run_cmd ip addr add ${prefix4}.${a_r1}.1/${veth4_mask} dev veth_A-R1 987 run_cmd ip addr add ${prefix6}:${a_r1} 905 run_cmd ip addr add ${prefix6}:${a_r1}::1/${veth6_mask} dev veth_A-R1 988 run_cmd ip link set veth_A-R1 up 906 run_cmd ip link set veth_A-R1 up 989 run_cmd ip route add ${prefix4}.${b_r1 907 run_cmd ip route add ${prefix4}.${b_r1}.1 via ${prefix4}.${a_r1}.2 990 run_cmd ip route add ${prefix6}:${b_r1 908 run_cmd ip route add ${prefix6}:${b_r1}::1 via ${prefix6}:${a_r1}::2 991 } 909 } 992 910 993 setup() { 911 setup() { 994 [ "$(id -u)" -ne 0 ] && echo " need t 912 [ "$(id -u)" -ne 0 ] && echo " need to run as root" && return $ksft_skip 995 913 996 for arg do 914 for arg do 997 eval setup_${arg} || { echo " 915 eval setup_${arg} || { echo " ${arg} not supported"; return 1; } 998 done 916 done 999 } 917 } 1000 918 1001 trace() { 919 trace() { 1002 [ $TRACING -eq 0 ] && return 920 [ $TRACING -eq 0 ] && return 1003 921 1004 for arg do 922 for arg do 1005 [ "${ns_cmd}" = "" ] && ns_cm 923 [ "${ns_cmd}" = "" ] && ns_cmd="${arg}" && continue 1006 ${ns_cmd} tcpdump --immediate 924 ${ns_cmd} tcpdump --immediate-mode -s 0 -i "${arg}" -w "${name}_${arg}.pcap" 2> /dev/null & 1007 tcpdump_pids="${tcpdump_pids} 925 tcpdump_pids="${tcpdump_pids} $!" 1008 ns_cmd= 926 ns_cmd= 1009 done 927 done 1010 sleep 1 928 sleep 1 1011 } 929 } 1012 930 1013 cleanup_del_ovs_internal() { << 1014 # squelch the output of the del-if co << 1015 python3 ./openvswitch/ovs-dpctl.py de << 1016 python3 ./openvswitch/ovs-dpctl.py de << 1017 python3 ./openvswitch/ovs-dpctl.py de << 1018 } << 1019 << 1020 cleanup_del_ovs_vswitchd() { << 1021 ovs-vsctl --if-exists del-port vxlan_ << 1022 ovs-vsctl --if-exists del-br ovs_br0 << 1023 } << 1024 << 1025 cleanup() { 931 cleanup() { 1026 for pid in ${tcpdump_pids}; do 932 for pid in ${tcpdump_pids}; do 1027 kill ${pid} 933 kill ${pid} 1028 done 934 done 1029 tcpdump_pids= 935 tcpdump_pids= 1030 936 1031 for pid in ${nettest_pids}; do 937 for pid in ${nettest_pids}; do 1032 kill ${pid} 938 kill ${pid} 1033 done 939 done 1034 nettest_pids= 940 nettest_pids= 1035 941 1036 for pid in ${socat_pids}; do 942 for pid in ${socat_pids}; do 1037 kill "${pid}" 943 kill "${pid}" 1038 done 944 done 1039 socat_pids= 945 socat_pids= 1040 946 1041 cleanup_all_ns !! 947 for n in ${NS_A} ${NS_B} ${NS_C} ${NS_R1} ${NS_R2}; do >> 948 ip netns del ${n} 2> /dev/null >> 949 done 1042 950 1043 ip link del veth_A-C 2>/de !! 951 ip link del veth_A-C 2>/dev/null 1044 ip link del veth_A-R1 2>/de !! 952 ip link del veth_A-R1 2>/dev/null 1045 cleanup_del_ovs_internal !! 953 ovs-vsctl --if-exists del-port vxlan_a 2>/dev/null 1046 cleanup_del_ovs_vswitchd !! 954 ovs-vsctl --if-exists del-br ovs_br0 2>/dev/null 1047 rm -f "$tmpoutfile" 955 rm -f "$tmpoutfile" 1048 } 956 } 1049 957 1050 mtu() { 958 mtu() { 1051 ns_cmd="${1}" 959 ns_cmd="${1}" 1052 dev="${2}" 960 dev="${2}" 1053 mtu="${3}" 961 mtu="${3}" 1054 962 1055 ${ns_cmd} ip link set dev ${dev} mtu 963 ${ns_cmd} ip link set dev ${dev} mtu ${mtu} 1056 } 964 } 1057 965 1058 mtu_parse() { 966 mtu_parse() { 1059 input="${1}" 967 input="${1}" 1060 968 1061 next=0 969 next=0 1062 for i in ${input}; do 970 for i in ${input}; do 1063 [ ${next} -eq 1 -a "${i}" = " 971 [ ${next} -eq 1 -a "${i}" = "lock" ] && next=2 && continue 1064 [ ${next} -eq 1 ] && echo "${ 972 [ ${next} -eq 1 ] && echo "${i}" && return 1065 [ ${next} -eq 2 ] && echo "lo 973 [ ${next} -eq 2 ] && echo "lock ${i}" && return 1066 [ "${i}" = "mtu" ] && next=1 974 [ "${i}" = "mtu" ] && next=1 1067 done 975 done 1068 } 976 } 1069 977 1070 link_get() { 978 link_get() { 1071 ns_cmd="${1}" 979 ns_cmd="${1}" 1072 name="${2}" 980 name="${2}" 1073 981 1074 ${ns_cmd} ip link show dev "${name}" 982 ${ns_cmd} ip link show dev "${name}" 1075 } 983 } 1076 984 1077 link_get_mtu() { 985 link_get_mtu() { 1078 ns_cmd="${1}" 986 ns_cmd="${1}" 1079 name="${2}" 987 name="${2}" 1080 988 1081 mtu_parse "$(link_get "${ns_cmd}" ${n 989 mtu_parse "$(link_get "${ns_cmd}" ${name})" 1082 } 990 } 1083 991 1084 route_get_dst_exception() { 992 route_get_dst_exception() { 1085 ns_cmd="${1}" 993 ns_cmd="${1}" 1086 dst="${2}" 994 dst="${2}" 1087 dsfield="${3}" 995 dsfield="${3}" 1088 996 1089 if [ -z "${dsfield}" ]; then 997 if [ -z "${dsfield}" ]; then 1090 dsfield=0 998 dsfield=0 1091 fi 999 fi 1092 1000 1093 ${ns_cmd} ip route get "${dst}" dsfie 1001 ${ns_cmd} ip route get "${dst}" dsfield "${dsfield}" 1094 } 1002 } 1095 1003 1096 route_get_dst_pmtu_from_exception() { 1004 route_get_dst_pmtu_from_exception() { 1097 ns_cmd="${1}" 1005 ns_cmd="${1}" 1098 dst="${2}" 1006 dst="${2}" 1099 dsfield="${3}" 1007 dsfield="${3}" 1100 1008 1101 mtu_parse "$(route_get_dst_exception 1009 mtu_parse "$(route_get_dst_exception "${ns_cmd}" "${dst}" "${dsfield}")" 1102 } 1010 } 1103 1011 1104 check_pmtu_value() { 1012 check_pmtu_value() { 1105 expected="${1}" 1013 expected="${1}" 1106 value="${2}" 1014 value="${2}" 1107 event="${3}" 1015 event="${3}" 1108 1016 1109 [ "${expected}" = "any" ] && [ -n "${ 1017 [ "${expected}" = "any" ] && [ -n "${value}" ] && return 0 1110 [ "${value}" = "${expected}" ] && ret 1018 [ "${value}" = "${expected}" ] && return 0 1111 [ -z "${value}" ] && err " PMTU e 1019 [ -z "${value}" ] && err " PMTU exception wasn't created after ${event}" && return 1 1112 [ -z "${expected}" ] && err " PMTU e 1020 [ -z "${expected}" ] && err " PMTU exception shouldn't exist after ${event}" && return 1 1113 err " found PMTU exception with inco 1021 err " found PMTU exception with incorrect MTU ${value}, expected ${expected}, after ${event}" 1114 return 1 1022 return 1 1115 } 1023 } 1116 1024 1117 test_pmtu_ipvX() { 1025 test_pmtu_ipvX() { 1118 family=${1} 1026 family=${1} 1119 1027 1120 setup namespaces routing || return $k 1028 setup namespaces routing || return $ksft_skip 1121 trace "${ns_a}" veth_A-R1 "${ns_r 1029 trace "${ns_a}" veth_A-R1 "${ns_r1}" veth_R1-A \ 1122 "${ns_r1}" veth_R1-B "${ns_b 1030 "${ns_r1}" veth_R1-B "${ns_b}" veth_B-R1 \ 1123 "${ns_a}" veth_A-R2 "${ns_r 1031 "${ns_a}" veth_A-R2 "${ns_r2}" veth_R2-A \ 1124 "${ns_r2}" veth_R2-B "${ns_b 1032 "${ns_r2}" veth_R2-B "${ns_b}" veth_B-R2 1125 1033 1126 if [ ${family} -eq 4 ]; then 1034 if [ ${family} -eq 4 ]; then 1127 ping=ping 1035 ping=ping 1128 dst1="${prefix4}.${b_r1}.1" 1036 dst1="${prefix4}.${b_r1}.1" 1129 dst2="${prefix4}.${b_r2}.1" 1037 dst2="${prefix4}.${b_r2}.1" 1130 else 1038 else 1131 ping=${ping6} 1039 ping=${ping6} 1132 dst1="${prefix6}:${b_r1}::1" 1040 dst1="${prefix6}:${b_r1}::1" 1133 dst2="${prefix6}:${b_r2}::1" 1041 dst2="${prefix6}:${b_r2}::1" 1134 fi 1042 fi 1135 1043 1136 # Set up initial MTU values 1044 # Set up initial MTU values 1137 mtu "${ns_a}" veth_A-R1 2000 1045 mtu "${ns_a}" veth_A-R1 2000 1138 mtu "${ns_r1}" veth_R1-A 2000 1046 mtu "${ns_r1}" veth_R1-A 2000 1139 mtu "${ns_r1}" veth_R1-B 1400 1047 mtu "${ns_r1}" veth_R1-B 1400 1140 mtu "${ns_b}" veth_B-R1 1400 1048 mtu "${ns_b}" veth_B-R1 1400 1141 1049 1142 mtu "${ns_a}" veth_A-R2 2000 1050 mtu "${ns_a}" veth_A-R2 2000 1143 mtu "${ns_r2}" veth_R2-A 2000 1051 mtu "${ns_r2}" veth_R2-A 2000 1144 mtu "${ns_r2}" veth_R2-B 1500 1052 mtu "${ns_r2}" veth_R2-B 1500 1145 mtu "${ns_b}" veth_B-R2 1500 1053 mtu "${ns_b}" veth_B-R2 1500 1146 1054 1147 # Create route exceptions 1055 # Create route exceptions 1148 run_cmd ${ns_a} ${ping} -q -M want -i 1056 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s 1800 ${dst1} 1149 run_cmd ${ns_a} ${ping} -q -M want -i 1057 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s 1800 ${dst2} 1150 1058 1151 # Check that exceptions have been cre 1059 # Check that exceptions have been created with the correct PMTU 1152 pmtu_1="$(route_get_dst_pmtu_from_exc 1060 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst1})" 1153 check_pmtu_value "1400" "${pmtu_1}" " 1061 check_pmtu_value "1400" "${pmtu_1}" "exceeding MTU" || return 1 1154 pmtu_2="$(route_get_dst_pmtu_from_exc 1062 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" 1155 check_pmtu_value "1500" "${pmtu_2}" " 1063 check_pmtu_value "1500" "${pmtu_2}" "exceeding MTU" || return 1 1156 1064 1157 # Decrease local MTU below PMTU, chec 1065 # Decrease local MTU below PMTU, check for PMTU decrease in route exception 1158 mtu "${ns_a}" veth_A-R1 1300 1066 mtu "${ns_a}" veth_A-R1 1300 1159 mtu "${ns_r1}" veth_R1-A 1300 1067 mtu "${ns_r1}" veth_R1-A 1300 1160 pmtu_1="$(route_get_dst_pmtu_from_exc 1068 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst1})" 1161 check_pmtu_value "1300" "${pmtu_1}" " 1069 check_pmtu_value "1300" "${pmtu_1}" "decreasing local MTU" || return 1 1162 # Second exception shouldn't be modif 1070 # Second exception shouldn't be modified 1163 pmtu_2="$(route_get_dst_pmtu_from_exc 1071 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" 1164 check_pmtu_value "1500" "${pmtu_2}" " 1072 check_pmtu_value "1500" "${pmtu_2}" "changing local MTU on a link not on this path" || return 1 1165 1073 1166 # Increase MTU, check for PMTU increa 1074 # Increase MTU, check for PMTU increase in route exception 1167 mtu "${ns_a}" veth_A-R1 1700 1075 mtu "${ns_a}" veth_A-R1 1700 1168 mtu "${ns_r1}" veth_R1-A 1700 1076 mtu "${ns_r1}" veth_R1-A 1700 1169 pmtu_1="$(route_get_dst_pmtu_from_exc 1077 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst1})" 1170 check_pmtu_value "1700" "${pmtu_1}" " 1078 check_pmtu_value "1700" "${pmtu_1}" "increasing local MTU" || return 1 1171 # Second exception shouldn't be modif 1079 # Second exception shouldn't be modified 1172 pmtu_2="$(route_get_dst_pmtu_from_exc 1080 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" 1173 check_pmtu_value "1500" "${pmtu_2}" " 1081 check_pmtu_value "1500" "${pmtu_2}" "changing local MTU on a link not on this path" || return 1 1174 1082 1175 # Skip PMTU locking tests for IPv6 1083 # Skip PMTU locking tests for IPv6 1176 [ $family -eq 6 ] && return 0 1084 [ $family -eq 6 ] && return 0 1177 1085 1178 # Decrease remote MTU on path via R2, 1086 # Decrease remote MTU on path via R2, get new exception 1179 mtu "${ns_r2}" veth_R2-B 400 1087 mtu "${ns_r2}" veth_R2-B 400 1180 mtu "${ns_b}" veth_B-R2 400 1088 mtu "${ns_b}" veth_B-R2 400 1181 run_cmd ${ns_a} ${ping} -q -M want -i 1089 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s 1400 ${dst2} 1182 pmtu_2="$(route_get_dst_pmtu_from_exc 1090 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" 1183 check_pmtu_value "lock 552" "${pmtu_2 1091 check_pmtu_value "lock 552" "${pmtu_2}" "exceeding MTU, with MTU < min_pmtu" || return 1 1184 1092 1185 # Decrease local MTU below PMTU 1093 # Decrease local MTU below PMTU 1186 mtu "${ns_a}" veth_A-R2 500 1094 mtu "${ns_a}" veth_A-R2 500 1187 mtu "${ns_r2}" veth_R2-A 500 1095 mtu "${ns_r2}" veth_R2-A 500 1188 pmtu_2="$(route_get_dst_pmtu_from_exc 1096 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" 1189 check_pmtu_value "500" "${pmtu_2}" "d 1097 check_pmtu_value "500" "${pmtu_2}" "decreasing local MTU" || return 1 1190 1098 1191 # Increase local MTU 1099 # Increase local MTU 1192 mtu "${ns_a}" veth_A-R2 1500 1100 mtu "${ns_a}" veth_A-R2 1500 1193 mtu "${ns_r2}" veth_R2-A 1500 1101 mtu "${ns_r2}" veth_R2-A 1500 1194 pmtu_2="$(route_get_dst_pmtu_from_exc 1102 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" 1195 check_pmtu_value "1500" "${pmtu_2}" " 1103 check_pmtu_value "1500" "${pmtu_2}" "increasing local MTU" || return 1 1196 1104 1197 # Get new exception 1105 # Get new exception 1198 run_cmd ${ns_a} ${ping} -q -M want -i 1106 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s 1400 ${dst2} 1199 pmtu_2="$(route_get_dst_pmtu_from_exc 1107 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" 1200 check_pmtu_value "lock 552" "${pmtu_2 1108 check_pmtu_value "lock 552" "${pmtu_2}" "exceeding MTU, with MTU < min_pmtu" || return 1 1201 } 1109 } 1202 1110 1203 test_pmtu_ipv4_exception() { 1111 test_pmtu_ipv4_exception() { 1204 test_pmtu_ipvX 4 1112 test_pmtu_ipvX 4 1205 } 1113 } 1206 1114 1207 test_pmtu_ipv6_exception() { 1115 test_pmtu_ipv6_exception() { 1208 test_pmtu_ipvX 6 1116 test_pmtu_ipvX 6 1209 } 1117 } 1210 1118 1211 test_pmtu_ipv4_dscp_icmp_exception() { 1119 test_pmtu_ipv4_dscp_icmp_exception() { 1212 rt_table=100 1120 rt_table=100 1213 1121 1214 setup namespaces policy_routing || re 1122 setup namespaces policy_routing || return $ksft_skip 1215 trace "${ns_a}" veth_A-R1 "${ns_r 1123 trace "${ns_a}" veth_A-R1 "${ns_r1}" veth_R1-A \ 1216 "${ns_r1}" veth_R1-B "${ns_b 1124 "${ns_r1}" veth_R1-B "${ns_b}" veth_B-R1 \ 1217 "${ns_a}" veth_A-R2 "${ns_r 1125 "${ns_a}" veth_A-R2 "${ns_r2}" veth_R2-A \ 1218 "${ns_r2}" veth_R2-B "${ns_b 1126 "${ns_r2}" veth_R2-B "${ns_b}" veth_B-R2 1219 1127 1220 # Set up initial MTU values 1128 # Set up initial MTU values 1221 mtu "${ns_a}" veth_A-R1 2000 1129 mtu "${ns_a}" veth_A-R1 2000 1222 mtu "${ns_r1}" veth_R1-A 2000 1130 mtu "${ns_r1}" veth_R1-A 2000 1223 mtu "${ns_r1}" veth_R1-B 1400 1131 mtu "${ns_r1}" veth_R1-B 1400 1224 mtu "${ns_b}" veth_B-R1 1400 1132 mtu "${ns_b}" veth_B-R1 1400 1225 1133 1226 mtu "${ns_a}" veth_A-R2 2000 1134 mtu "${ns_a}" veth_A-R2 2000 1227 mtu "${ns_r2}" veth_R2-A 2000 1135 mtu "${ns_r2}" veth_R2-A 2000 1228 mtu "${ns_r2}" veth_R2-B 1500 1136 mtu "${ns_r2}" veth_R2-B 1500 1229 mtu "${ns_b}" veth_B-R2 1500 1137 mtu "${ns_b}" veth_B-R2 1500 1230 1138 1231 len=$((2000 - 20 - 8)) # Fills MTU of 1139 len=$((2000 - 20 - 8)) # Fills MTU of veth_A-R1 1232 1140 1233 dst1="${prefix4}.${b_r1}.1" 1141 dst1="${prefix4}.${b_r1}.1" 1234 dst2="${prefix4}.${b_r2}.1" 1142 dst2="${prefix4}.${b_r2}.1" 1235 1143 1236 # Create route exceptions 1144 # Create route exceptions 1237 dsfield=${policy_mark} # No ECN bit s 1145 dsfield=${policy_mark} # No ECN bit set (Not-ECT) 1238 run_cmd "${ns_a}" ping -q -M want -Q 1146 run_cmd "${ns_a}" ping -q -M want -Q "${dsfield}" -c 1 -w 1 -s "${len}" "${dst1}" 1239 1147 1240 dsfield=$(printf "%#x" $((policy_mark 1148 dsfield=$(printf "%#x" $((policy_mark + 0x02))) # ECN=2 (ECT(0)) 1241 run_cmd "${ns_a}" ping -q -M want -Q 1149 run_cmd "${ns_a}" ping -q -M want -Q "${dsfield}" -c 1 -w 1 -s "${len}" "${dst2}" 1242 1150 1243 # Check that exceptions have been cre 1151 # Check that exceptions have been created with the correct PMTU 1244 pmtu_1="$(route_get_dst_pmtu_from_exc 1152 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" "${dst1}" "${policy_mark}")" 1245 check_pmtu_value "1400" "${pmtu_1}" " 1153 check_pmtu_value "1400" "${pmtu_1}" "exceeding MTU" || return 1 1246 1154 1247 pmtu_2="$(route_get_dst_pmtu_from_exc 1155 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" "${dst2}" "${policy_mark}")" 1248 check_pmtu_value "1500" "${pmtu_2}" " 1156 check_pmtu_value "1500" "${pmtu_2}" "exceeding MTU" || return 1 1249 } 1157 } 1250 1158 1251 test_pmtu_ipv4_dscp_udp_exception() { 1159 test_pmtu_ipv4_dscp_udp_exception() { 1252 rt_table=100 1160 rt_table=100 1253 1161 1254 if ! which socat > /dev/null 2>&1; th 1162 if ! which socat > /dev/null 2>&1; then 1255 echo "'socat' command not fou 1163 echo "'socat' command not found; skipping tests" 1256 return $ksft_skip 1164 return $ksft_skip 1257 fi 1165 fi 1258 1166 1259 setup namespaces policy_routing || re 1167 setup namespaces policy_routing || return $ksft_skip 1260 trace "${ns_a}" veth_A-R1 "${ns_r 1168 trace "${ns_a}" veth_A-R1 "${ns_r1}" veth_R1-A \ 1261 "${ns_r1}" veth_R1-B "${ns_b 1169 "${ns_r1}" veth_R1-B "${ns_b}" veth_B-R1 \ 1262 "${ns_a}" veth_A-R2 "${ns_r 1170 "${ns_a}" veth_A-R2 "${ns_r2}" veth_R2-A \ 1263 "${ns_r2}" veth_R2-B "${ns_b 1171 "${ns_r2}" veth_R2-B "${ns_b}" veth_B-R2 1264 1172 1265 # Set up initial MTU values 1173 # Set up initial MTU values 1266 mtu "${ns_a}" veth_A-R1 2000 1174 mtu "${ns_a}" veth_A-R1 2000 1267 mtu "${ns_r1}" veth_R1-A 2000 1175 mtu "${ns_r1}" veth_R1-A 2000 1268 mtu "${ns_r1}" veth_R1-B 1400 1176 mtu "${ns_r1}" veth_R1-B 1400 1269 mtu "${ns_b}" veth_B-R1 1400 1177 mtu "${ns_b}" veth_B-R1 1400 1270 1178 1271 mtu "${ns_a}" veth_A-R2 2000 1179 mtu "${ns_a}" veth_A-R2 2000 1272 mtu "${ns_r2}" veth_R2-A 2000 1180 mtu "${ns_r2}" veth_R2-A 2000 1273 mtu "${ns_r2}" veth_R2-B 1500 1181 mtu "${ns_r2}" veth_R2-B 1500 1274 mtu "${ns_b}" veth_B-R2 1500 1182 mtu "${ns_b}" veth_B-R2 1500 1275 1183 1276 len=$((2000 - 20 - 8)) # Fills MTU of 1184 len=$((2000 - 20 - 8)) # Fills MTU of veth_A-R1 1277 1185 1278 dst1="${prefix4}.${b_r1}.1" 1186 dst1="${prefix4}.${b_r1}.1" 1279 dst2="${prefix4}.${b_r2}.1" 1187 dst2="${prefix4}.${b_r2}.1" 1280 1188 1281 # Create route exceptions 1189 # Create route exceptions 1282 run_cmd_bg "${ns_b}" socat UDP-LISTEN 1190 run_cmd_bg "${ns_b}" socat UDP-LISTEN:50000 OPEN:/dev/null,wronly=1 1283 socat_pids="${socat_pids} $!" 1191 socat_pids="${socat_pids} $!" 1284 1192 1285 dsfield=${policy_mark} # No ECN bit s 1193 dsfield=${policy_mark} # No ECN bit set (Not-ECT) 1286 run_cmd "${ns_a}" socat OPEN:/dev/zer 1194 run_cmd "${ns_a}" socat OPEN:/dev/zero,rdonly=1,readbytes="${len}" \ 1287 UDP:"${dst1}":50000,tos="${ds 1195 UDP:"${dst1}":50000,tos="${dsfield}" 1288 1196 1289 dsfield=$(printf "%#x" $((policy_mark 1197 dsfield=$(printf "%#x" $((policy_mark + 0x02))) # ECN=2 (ECT(0)) 1290 run_cmd "${ns_a}" socat OPEN:/dev/zer 1198 run_cmd "${ns_a}" socat OPEN:/dev/zero,rdonly=1,readbytes="${len}" \ 1291 UDP:"${dst2}":50000,tos="${ds 1199 UDP:"${dst2}":50000,tos="${dsfield}" 1292 1200 1293 # Check that exceptions have been cre 1201 # Check that exceptions have been created with the correct PMTU 1294 pmtu_1="$(route_get_dst_pmtu_from_exc 1202 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" "${dst1}" "${policy_mark}")" 1295 check_pmtu_value "1400" "${pmtu_1}" " 1203 check_pmtu_value "1400" "${pmtu_1}" "exceeding MTU" || return 1 1296 pmtu_2="$(route_get_dst_pmtu_from_exc 1204 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" "${dst2}" "${policy_mark}")" 1297 check_pmtu_value "1500" "${pmtu_2}" " 1205 check_pmtu_value "1500" "${pmtu_2}" "exceeding MTU" || return 1 1298 } 1206 } 1299 1207 1300 test_pmtu_ipvX_over_vxlanY_or_geneveY_excepti 1208 test_pmtu_ipvX_over_vxlanY_or_geneveY_exception() { 1301 type=${1} 1209 type=${1} 1302 family=${2} 1210 family=${2} 1303 outer_family=${3} 1211 outer_family=${3} 1304 ll_mtu=4000 1212 ll_mtu=4000 1305 1213 1306 if [ ${outer_family} -eq 4 ]; then 1214 if [ ${outer_family} -eq 4 ]; then 1307 setup namespaces routing ${ty 1215 setup namespaces routing ${type}4 || return $ksft_skip 1308 # IPv4 h 1216 # IPv4 header UDP header VXLAN/GENEVE header Ethernet header 1309 exp_mtu=$((${ll_mtu} - 20 1217 exp_mtu=$((${ll_mtu} - 20 - 8 - 8 - 14)) 1310 else 1218 else 1311 setup namespaces routing ${ty 1219 setup namespaces routing ${type}6 || return $ksft_skip 1312 # IPv6 h 1220 # IPv6 header UDP header VXLAN/GENEVE header Ethernet header 1313 exp_mtu=$((${ll_mtu} - 40 1221 exp_mtu=$((${ll_mtu} - 40 - 8 - 8 - 14)) 1314 fi 1222 fi 1315 1223 1316 trace "${ns_a}" ${type}_a "${ns_b} 1224 trace "${ns_a}" ${type}_a "${ns_b}" ${type}_b \ 1317 "${ns_a}" veth_A-R1 "${ns_r1 1225 "${ns_a}" veth_A-R1 "${ns_r1}" veth_R1-A \ 1318 "${ns_b}" veth_B-R1 "${ns_r1 1226 "${ns_b}" veth_B-R1 "${ns_r1}" veth_R1-B 1319 1227 1320 if [ ${family} -eq 4 ]; then 1228 if [ ${family} -eq 4 ]; then 1321 ping=ping 1229 ping=ping 1322 dst=${tunnel4_b_addr} 1230 dst=${tunnel4_b_addr} 1323 else 1231 else 1324 ping=${ping6} 1232 ping=${ping6} 1325 dst=${tunnel6_b_addr} 1233 dst=${tunnel6_b_addr} 1326 fi 1234 fi 1327 1235 1328 # Create route exception by exceeding 1236 # Create route exception by exceeding link layer MTU 1329 mtu "${ns_a}" veth_A-R1 $((${ll_mtu} 1237 mtu "${ns_a}" veth_A-R1 $((${ll_mtu} + 1000)) 1330 mtu "${ns_r1}" veth_R1-A $((${ll_mtu} 1238 mtu "${ns_r1}" veth_R1-A $((${ll_mtu} + 1000)) 1331 mtu "${ns_b}" veth_B-R1 ${ll_mtu} 1239 mtu "${ns_b}" veth_B-R1 ${ll_mtu} 1332 mtu "${ns_r1}" veth_R1-B ${ll_mtu} 1240 mtu "${ns_r1}" veth_R1-B ${ll_mtu} 1333 1241 1334 mtu "${ns_a}" ${type}_a $((${ll_mtu} 1242 mtu "${ns_a}" ${type}_a $((${ll_mtu} + 1000)) 1335 mtu "${ns_b}" ${type}_b $((${ll_mtu} 1243 mtu "${ns_b}" ${type}_b $((${ll_mtu} + 1000)) 1336 run_cmd ${ns_a} ${ping} -q -M want -i 1244 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s $((${ll_mtu} + 500)) ${dst} 1337 1245 1338 # Check that exception was created 1246 # Check that exception was created 1339 pmtu="$(route_get_dst_pmtu_from_excep 1247 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst})" 1340 check_pmtu_value ${exp_mtu} "${pmtu}" 1248 check_pmtu_value ${exp_mtu} "${pmtu}" "exceeding link layer MTU on ${type} interface" 1341 } 1249 } 1342 1250 1343 test_pmtu_ipv4_vxlan4_exception() { 1251 test_pmtu_ipv4_vxlan4_exception() { 1344 test_pmtu_ipvX_over_vxlanY_or_geneveY 1252 test_pmtu_ipvX_over_vxlanY_or_geneveY_exception vxlan 4 4 1345 } 1253 } 1346 1254 1347 test_pmtu_ipv6_vxlan4_exception() { 1255 test_pmtu_ipv6_vxlan4_exception() { 1348 test_pmtu_ipvX_over_vxlanY_or_geneveY 1256 test_pmtu_ipvX_over_vxlanY_or_geneveY_exception vxlan 6 4 1349 } 1257 } 1350 1258 1351 test_pmtu_ipv4_geneve4_exception() { 1259 test_pmtu_ipv4_geneve4_exception() { 1352 test_pmtu_ipvX_over_vxlanY_or_geneveY 1260 test_pmtu_ipvX_over_vxlanY_or_geneveY_exception geneve 4 4 1353 } 1261 } 1354 1262 1355 test_pmtu_ipv6_geneve4_exception() { 1263 test_pmtu_ipv6_geneve4_exception() { 1356 test_pmtu_ipvX_over_vxlanY_or_geneveY 1264 test_pmtu_ipvX_over_vxlanY_or_geneveY_exception geneve 6 4 1357 } 1265 } 1358 1266 1359 test_pmtu_ipv4_vxlan6_exception() { 1267 test_pmtu_ipv4_vxlan6_exception() { 1360 test_pmtu_ipvX_over_vxlanY_or_geneveY 1268 test_pmtu_ipvX_over_vxlanY_or_geneveY_exception vxlan 4 6 1361 } 1269 } 1362 1270 1363 test_pmtu_ipv6_vxlan6_exception() { 1271 test_pmtu_ipv6_vxlan6_exception() { 1364 test_pmtu_ipvX_over_vxlanY_or_geneveY 1272 test_pmtu_ipvX_over_vxlanY_or_geneveY_exception vxlan 6 6 1365 } 1273 } 1366 1274 1367 test_pmtu_ipv4_geneve6_exception() { 1275 test_pmtu_ipv4_geneve6_exception() { 1368 test_pmtu_ipvX_over_vxlanY_or_geneveY 1276 test_pmtu_ipvX_over_vxlanY_or_geneveY_exception geneve 4 6 1369 } 1277 } 1370 1278 1371 test_pmtu_ipv6_geneve6_exception() { 1279 test_pmtu_ipv6_geneve6_exception() { 1372 test_pmtu_ipvX_over_vxlanY_or_geneveY 1280 test_pmtu_ipvX_over_vxlanY_or_geneveY_exception geneve 6 6 1373 } 1281 } 1374 1282 1375 test_pmtu_ipvX_over_bridged_vxlanY_or_geneveY 1283 test_pmtu_ipvX_over_bridged_vxlanY_or_geneveY_exception() { 1376 type=${1} 1284 type=${1} 1377 family=${2} 1285 family=${2} 1378 outer_family=${3} 1286 outer_family=${3} 1379 ll_mtu=4000 1287 ll_mtu=4000 1380 1288 1381 if [ ${outer_family} -eq 4 ]; then 1289 if [ ${outer_family} -eq 4 ]; then 1382 setup namespaces routing brid 1290 setup namespaces routing bridge bridged_${type}4 || return $ksft_skip 1383 # IPv4 h 1291 # IPv4 header UDP header VXLAN/GENEVE header Ethernet header 1384 exp_mtu=$((${ll_mtu} - 20 1292 exp_mtu=$((${ll_mtu} - 20 - 8 - 8 - 14)) 1385 else 1293 else 1386 setup namespaces routing brid 1294 setup namespaces routing bridge bridged_${type}6 || return $ksft_skip 1387 # IPv6 h 1295 # IPv6 header UDP header VXLAN/GENEVE header Ethernet header 1388 exp_mtu=$((${ll_mtu} - 40 1296 exp_mtu=$((${ll_mtu} - 40 - 8 - 8 - 14)) 1389 fi 1297 fi 1390 1298 1391 trace "${ns_a}" ${type}_a "${ns_b} 1299 trace "${ns_a}" ${type}_a "${ns_b}" ${type}_b \ 1392 "${ns_a}" veth_A-R1 "${ns_r1 1300 "${ns_a}" veth_A-R1 "${ns_r1}" veth_R1-A \ 1393 "${ns_b}" veth_B-R1 "${ns_r1 1301 "${ns_b}" veth_B-R1 "${ns_r1}" veth_R1-B \ 1394 "${ns_a}" br0 "${ns_a} 1302 "${ns_a}" br0 "${ns_a}" veth-A-C \ 1395 "${ns_c}" veth_C-A 1303 "${ns_c}" veth_C-A 1396 1304 1397 if [ ${family} -eq 4 ]; then 1305 if [ ${family} -eq 4 ]; then 1398 ping=ping 1306 ping=ping 1399 dst=${tunnel4_b_addr} 1307 dst=${tunnel4_b_addr} 1400 else 1308 else 1401 ping=${ping6} 1309 ping=${ping6} 1402 dst=${tunnel6_b_addr} 1310 dst=${tunnel6_b_addr} 1403 fi 1311 fi 1404 1312 1405 # Create route exception by exceeding 1313 # Create route exception by exceeding link layer MTU 1406 mtu "${ns_a}" veth_A-R1 $((${ll_mtu} 1314 mtu "${ns_a}" veth_A-R1 $((${ll_mtu} + 1000)) 1407 mtu "${ns_a}" br0 $((${ll_mtu} 1315 mtu "${ns_a}" br0 $((${ll_mtu} + 1000)) 1408 mtu "${ns_a}" veth_A-C $((${ll_mtu} 1316 mtu "${ns_a}" veth_A-C $((${ll_mtu} + 1000)) 1409 mtu "${ns_c}" veth_C-A $((${ll_mtu} 1317 mtu "${ns_c}" veth_C-A $((${ll_mtu} + 1000)) 1410 mtu "${ns_r1}" veth_R1-A $((${ll_mtu} 1318 mtu "${ns_r1}" veth_R1-A $((${ll_mtu} + 1000)) 1411 mtu "${ns_b}" veth_B-R1 ${ll_mtu} 1319 mtu "${ns_b}" veth_B-R1 ${ll_mtu} 1412 mtu "${ns_r1}" veth_R1-B ${ll_mtu} 1320 mtu "${ns_r1}" veth_R1-B ${ll_mtu} 1413 1321 1414 mtu "${ns_a}" ${type}_a $((${ll_mtu} 1322 mtu "${ns_a}" ${type}_a $((${ll_mtu} + 1000)) 1415 mtu "${ns_b}" ${type}_b $((${ll_mtu} 1323 mtu "${ns_b}" ${type}_b $((${ll_mtu} + 1000)) 1416 1324 1417 run_cmd ${ns_c} ${ping} -q -M want -i 1325 run_cmd ${ns_c} ${ping} -q -M want -i 0.1 -c 10 -s $((${ll_mtu} + 500)) ${dst} || return 1 1418 run_cmd ${ns_a} ${ping} -q -M want -i 1326 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s $((${ll_mtu} + 500)) ${dst} || return 1 1419 1327 1420 # Check that exceptions were created 1328 # Check that exceptions were created 1421 pmtu="$(route_get_dst_pmtu_from_excep 1329 pmtu="$(route_get_dst_pmtu_from_exception "${ns_c}" ${dst})" 1422 check_pmtu_value ${exp_mtu} "${pmtu}" 1330 check_pmtu_value ${exp_mtu} "${pmtu}" "exceeding link layer MTU on bridged ${type} interface" 1423 pmtu="$(route_get_dst_pmtu_from_excep 1331 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst})" 1424 check_pmtu_value ${exp_mtu} "${pmtu}" 1332 check_pmtu_value ${exp_mtu} "${pmtu}" "exceeding link layer MTU on locally bridged ${type} interface" 1425 1333 1426 tmpoutfile=$(mktemp) 1334 tmpoutfile=$(mktemp) 1427 1335 1428 # Flush Exceptions, retry with TCP 1336 # Flush Exceptions, retry with TCP 1429 run_cmd ${ns_a} ip route flush cached 1337 run_cmd ${ns_a} ip route flush cached ${dst} 1430 run_cmd ${ns_b} ip route flush cached 1338 run_cmd ${ns_b} ip route flush cached ${dst} 1431 run_cmd ${ns_c} ip route flush cached 1339 run_cmd ${ns_c} ip route flush cached ${dst} 1432 1340 1433 for target in "${ns_a}" "${ns_c}" ; d 1341 for target in "${ns_a}" "${ns_c}" ; do 1434 if [ ${family} -eq 4 ]; then 1342 if [ ${family} -eq 4 ]; then 1435 TCPDST=TCP:${dst}:500 1343 TCPDST=TCP:${dst}:50000 1436 else 1344 else 1437 TCPDST="TCP:[${dst}]: 1345 TCPDST="TCP:[${dst}]:50000" 1438 fi 1346 fi 1439 ${ns_b} socat -T 3 -u -6 TCP- !! 1347 ${ns_b} socat -T 3 -u -6 TCP-LISTEN:50000 STDOUT > $tmpoutfile & 1440 local socat_pid=$! << 1441 1348 1442 wait_local_port_listen ${NS_B !! 1349 sleep 1 1443 1350 1444 dd if=/dev/zero status=none b !! 1351 dd if=/dev/zero of=/dev/stdout status=none bs=1M count=1 | ${target} socat -T 3 -u STDIN $TCPDST,connect-timeout=3 1445 1352 1446 wait ${socat_pid} << 1447 size=$(du -sb $tmpoutfile) 1353 size=$(du -sb $tmpoutfile) 1448 size=${size%%/tmp/*} 1354 size=${size%%/tmp/*} 1449 1355 1450 [ $size -ne 1048576 ] && err 1356 [ $size -ne 1048576 ] && err "File size $size mismatches exepcted value in locally bridged vxlan test" && return 1 1451 done 1357 done 1452 1358 1453 rm -f "$tmpoutfile" 1359 rm -f "$tmpoutfile" 1454 1360 1455 # Check that exceptions were created 1361 # Check that exceptions were created 1456 pmtu="$(route_get_dst_pmtu_from_excep 1362 pmtu="$(route_get_dst_pmtu_from_exception "${ns_c}" ${dst})" 1457 check_pmtu_value ${exp_mtu} "${pmtu}" 1363 check_pmtu_value ${exp_mtu} "${pmtu}" "tcp: exceeding link layer MTU on bridged ${type} interface" 1458 pmtu="$(route_get_dst_pmtu_from_excep 1364 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst})" 1459 check_pmtu_value ${exp_mtu} "${pmtu}" 1365 check_pmtu_value ${exp_mtu} "${pmtu}" "tcp exceeding link layer MTU on locally bridged ${type} interface" 1460 } 1366 } 1461 1367 1462 test_pmtu_ipv4_br_vxlan4_exception() { 1368 test_pmtu_ipv4_br_vxlan4_exception() { 1463 test_pmtu_ipvX_over_bridged_vxlanY_or 1369 test_pmtu_ipvX_over_bridged_vxlanY_or_geneveY_exception vxlan 4 4 1464 } 1370 } 1465 1371 1466 test_pmtu_ipv6_br_vxlan4_exception() { 1372 test_pmtu_ipv6_br_vxlan4_exception() { 1467 test_pmtu_ipvX_over_bridged_vxlanY_or 1373 test_pmtu_ipvX_over_bridged_vxlanY_or_geneveY_exception vxlan 6 4 1468 } 1374 } 1469 1375 1470 test_pmtu_ipv4_br_geneve4_exception() { 1376 test_pmtu_ipv4_br_geneve4_exception() { 1471 test_pmtu_ipvX_over_bridged_vxlanY_or 1377 test_pmtu_ipvX_over_bridged_vxlanY_or_geneveY_exception geneve 4 4 1472 } 1378 } 1473 1379 1474 test_pmtu_ipv6_br_geneve4_exception() { 1380 test_pmtu_ipv6_br_geneve4_exception() { 1475 test_pmtu_ipvX_over_bridged_vxlanY_or 1381 test_pmtu_ipvX_over_bridged_vxlanY_or_geneveY_exception geneve 6 4 1476 } 1382 } 1477 1383 1478 test_pmtu_ipv4_br_vxlan6_exception() { 1384 test_pmtu_ipv4_br_vxlan6_exception() { 1479 test_pmtu_ipvX_over_bridged_vxlanY_or 1385 test_pmtu_ipvX_over_bridged_vxlanY_or_geneveY_exception vxlan 4 6 1480 } 1386 } 1481 1387 1482 test_pmtu_ipv6_br_vxlan6_exception() { 1388 test_pmtu_ipv6_br_vxlan6_exception() { 1483 test_pmtu_ipvX_over_bridged_vxlanY_or 1389 test_pmtu_ipvX_over_bridged_vxlanY_or_geneveY_exception vxlan 6 6 1484 } 1390 } 1485 1391 1486 test_pmtu_ipv4_br_geneve6_exception() { 1392 test_pmtu_ipv4_br_geneve6_exception() { 1487 test_pmtu_ipvX_over_bridged_vxlanY_or 1393 test_pmtu_ipvX_over_bridged_vxlanY_or_geneveY_exception geneve 4 6 1488 } 1394 } 1489 1395 1490 test_pmtu_ipv6_br_geneve6_exception() { 1396 test_pmtu_ipv6_br_geneve6_exception() { 1491 test_pmtu_ipvX_over_bridged_vxlanY_or 1397 test_pmtu_ipvX_over_bridged_vxlanY_or_geneveY_exception geneve 6 6 1492 } 1398 } 1493 1399 1494 test_pmtu_ipvX_over_ovs_vxlanY_or_geneveY_exc 1400 test_pmtu_ipvX_over_ovs_vxlanY_or_geneveY_exception() { 1495 type=${1} 1401 type=${1} 1496 family=${2} 1402 family=${2} 1497 outer_family=${3} 1403 outer_family=${3} 1498 ll_mtu=4000 1404 ll_mtu=4000 1499 1405 1500 if [ "${type}" = "vxlan" ]; then << 1501 tun_a="vxlan_sys_4789" << 1502 elif [ "${type}" = "geneve" ]; then << 1503 tun_a="genev_sys_6081" << 1504 fi << 1505 << 1506 if [ ${outer_family} -eq 4 ]; then 1406 if [ ${outer_family} -eq 4 ]; then 1507 setup namespaces routing ovs_ 1407 setup namespaces routing ovs_bridge ovs_${type}4 || return $ksft_skip 1508 # IPv4 h 1408 # IPv4 header UDP header VXLAN/GENEVE header Ethernet header 1509 exp_mtu=$((${ll_mtu} - 20 1409 exp_mtu=$((${ll_mtu} - 20 - 8 - 8 - 14)) 1510 else 1410 else 1511 setup namespaces routing ovs_ 1411 setup namespaces routing ovs_bridge ovs_${type}6 || return $ksft_skip 1512 # IPv6 h 1412 # IPv6 header UDP header VXLAN/GENEVE header Ethernet header 1513 exp_mtu=$((${ll_mtu} - 40 1413 exp_mtu=$((${ll_mtu} - 40 - 8 - 8 - 14)) 1514 fi 1414 fi 1515 1415 1516 trace "" ${type}_a "${ns_b} !! 1416 if [ "${type}" = "vxlan" ]; then 1517 "" veth_A-R1 "${ns_r1 !! 1417 tun_a="vxlan_sys_4789" 1518 "${ns_b}" veth_B-R1 "${ns_r1 !! 1418 elif [ "${type}" = "geneve" ]; then 1519 "" ovs_br0 "" !! 1419 tun_a="genev_sys_6081" 1520 "${ns_c}" veth_C-A "" !! 1420 fi >> 1421 >> 1422 trace "" "${tun_a}" "${ns_b}" ${type}_b \ >> 1423 "" veth_A-R1 "${ns_r1}" veth_R1-A \ >> 1424 "${ns_b}" veth_B-R1 "${ns_r1}" veth_R1-B \ >> 1425 "" ovs_br0 "" veth-A-C \ >> 1426 "${ns_c}" veth_C-A 1521 1427 1522 if [ ${family} -eq 4 ]; then 1428 if [ ${family} -eq 4 ]; then 1523 ping=ping 1429 ping=ping 1524 dst=${tunnel4_b_addr} 1430 dst=${tunnel4_b_addr} 1525 else 1431 else 1526 ping=${ping6} 1432 ping=${ping6} 1527 dst=${tunnel6_b_addr} 1433 dst=${tunnel6_b_addr} 1528 fi 1434 fi 1529 1435 1530 # Create route exception by exceeding 1436 # Create route exception by exceeding link layer MTU 1531 mtu "" veth_A-R1 $((${ll_mtu} 1437 mtu "" veth_A-R1 $((${ll_mtu} + 1000)) 1532 mtu "" ovs_br0 $((${ll_mtu} 1438 mtu "" ovs_br0 $((${ll_mtu} + 1000)) 1533 mtu "" veth_A-C $((${ll_mtu} 1439 mtu "" veth_A-C $((${ll_mtu} + 1000)) 1534 mtu "${ns_c}" veth_C-A $((${ll_mtu} 1440 mtu "${ns_c}" veth_C-A $((${ll_mtu} + 1000)) 1535 mtu "${ns_r1}" veth_R1-A $((${ll_mtu} 1441 mtu "${ns_r1}" veth_R1-A $((${ll_mtu} + 1000)) 1536 mtu "${ns_b}" veth_B-R1 ${ll_mtu} 1442 mtu "${ns_b}" veth_B-R1 ${ll_mtu} 1537 mtu "${ns_r1}" veth_R1-B ${ll_mtu} 1443 mtu "${ns_r1}" veth_R1-B ${ll_mtu} 1538 1444 1539 mtu "" ${tun_a} $((${ll_mtu} !! 1445 mtu "" ${tun_a} $((${ll_mtu} + 1000)) 1540 mtu "" ${type}_a $(($ !! 1446 mtu "${ns_b}" ${type}_b $((${ll_mtu} + 1000)) 1541 mtu "${ns_b}" ${type}_b $((${ll_mtu} << 1542 1447 1543 run_cmd ${ns_c} ${ping} -q -M want -i 1448 run_cmd ${ns_c} ${ping} -q -M want -i 0.1 -c 20 -s $((${ll_mtu} + 500)) ${dst} || return 1 1544 1449 1545 # Check that exceptions were created 1450 # Check that exceptions were created 1546 pmtu="$(route_get_dst_pmtu_from_excep 1451 pmtu="$(route_get_dst_pmtu_from_exception "${ns_c}" ${dst})" 1547 check_pmtu_value ${exp_mtu} "${pmtu}" 1452 check_pmtu_value ${exp_mtu} "${pmtu}" "exceeding link layer MTU on Open vSwitch ${type} interface" 1548 } 1453 } 1549 1454 1550 test_pmtu_ipv4_ovs_vxlan4_exception() { 1455 test_pmtu_ipv4_ovs_vxlan4_exception() { 1551 test_pmtu_ipvX_over_ovs_vxlanY_or_gen 1456 test_pmtu_ipvX_over_ovs_vxlanY_or_geneveY_exception vxlan 4 4 1552 } 1457 } 1553 1458 1554 test_pmtu_ipv6_ovs_vxlan4_exception() { 1459 test_pmtu_ipv6_ovs_vxlan4_exception() { 1555 test_pmtu_ipvX_over_ovs_vxlanY_or_gen 1460 test_pmtu_ipvX_over_ovs_vxlanY_or_geneveY_exception vxlan 6 4 1556 } 1461 } 1557 1462 1558 test_pmtu_ipv4_ovs_geneve4_exception() { 1463 test_pmtu_ipv4_ovs_geneve4_exception() { 1559 test_pmtu_ipvX_over_ovs_vxlanY_or_gen 1464 test_pmtu_ipvX_over_ovs_vxlanY_or_geneveY_exception geneve 4 4 1560 } 1465 } 1561 1466 1562 test_pmtu_ipv6_ovs_geneve4_exception() { 1467 test_pmtu_ipv6_ovs_geneve4_exception() { 1563 test_pmtu_ipvX_over_ovs_vxlanY_or_gen 1468 test_pmtu_ipvX_over_ovs_vxlanY_or_geneveY_exception geneve 6 4 1564 } 1469 } 1565 1470 1566 test_pmtu_ipv4_ovs_vxlan6_exception() { 1471 test_pmtu_ipv4_ovs_vxlan6_exception() { 1567 test_pmtu_ipvX_over_ovs_vxlanY_or_gen 1472 test_pmtu_ipvX_over_ovs_vxlanY_or_geneveY_exception vxlan 4 6 1568 } 1473 } 1569 1474 1570 test_pmtu_ipv6_ovs_vxlan6_exception() { 1475 test_pmtu_ipv6_ovs_vxlan6_exception() { 1571 test_pmtu_ipvX_over_ovs_vxlanY_or_gen 1476 test_pmtu_ipvX_over_ovs_vxlanY_or_geneveY_exception vxlan 6 6 1572 } 1477 } 1573 1478 1574 test_pmtu_ipv4_ovs_geneve6_exception() { 1479 test_pmtu_ipv4_ovs_geneve6_exception() { 1575 test_pmtu_ipvX_over_ovs_vxlanY_or_gen 1480 test_pmtu_ipvX_over_ovs_vxlanY_or_geneveY_exception geneve 4 6 1576 } 1481 } 1577 1482 1578 test_pmtu_ipv6_ovs_geneve6_exception() { 1483 test_pmtu_ipv6_ovs_geneve6_exception() { 1579 test_pmtu_ipvX_over_ovs_vxlanY_or_gen 1484 test_pmtu_ipvX_over_ovs_vxlanY_or_geneveY_exception geneve 6 6 1580 } 1485 } 1581 1486 1582 test_pmtu_ipvX_over_fouY_or_gueY() { 1487 test_pmtu_ipvX_over_fouY_or_gueY() { 1583 inner_family=${1} 1488 inner_family=${1} 1584 outer_family=${2} 1489 outer_family=${2} 1585 encap=${3} 1490 encap=${3} 1586 ll_mtu=4000 1491 ll_mtu=4000 1587 1492 1588 setup namespaces routing ${encap}${ou 1493 setup namespaces routing ${encap}${outer_family}${inner_family} || return $ksft_skip 1589 trace "${ns_a}" ${encap}_a "${ns_b} 1494 trace "${ns_a}" ${encap}_a "${ns_b}" ${encap}_b \ 1590 "${ns_a}" veth_A-R1 "${ns_r1 1495 "${ns_a}" veth_A-R1 "${ns_r1}" veth_R1-A \ 1591 "${ns_b}" veth_B-R1 "${ns_r1 1496 "${ns_b}" veth_B-R1 "${ns_r1}" veth_R1-B 1592 1497 1593 if [ ${inner_family} -eq 4 ]; then 1498 if [ ${inner_family} -eq 4 ]; then 1594 ping=ping 1499 ping=ping 1595 dst=${tunnel4_b_addr} 1500 dst=${tunnel4_b_addr} 1596 else 1501 else 1597 ping=${ping6} 1502 ping=${ping6} 1598 dst=${tunnel6_b_addr} 1503 dst=${tunnel6_b_addr} 1599 fi 1504 fi 1600 1505 1601 if [ "${encap}" = "gue" ]; then 1506 if [ "${encap}" = "gue" ]; then 1602 encap_overhead=4 1507 encap_overhead=4 1603 else 1508 else 1604 encap_overhead=0 1509 encap_overhead=0 1605 fi 1510 fi 1606 1511 1607 if [ ${outer_family} -eq 4 ]; then 1512 if [ ${outer_family} -eq 4 ]; then 1608 # IPv4 h 1513 # IPv4 header UDP header 1609 exp_mtu=$((${ll_mtu} - 20 1514 exp_mtu=$((${ll_mtu} - 20 - 8 - ${encap_overhead})) 1610 else 1515 else 1611 # IPv6 h 1516 # IPv6 header Option 4 UDP header 1612 exp_mtu=$((${ll_mtu} - 40 1517 exp_mtu=$((${ll_mtu} - 40 - 8 - 8 - ${encap_overhead})) 1613 fi 1518 fi 1614 1519 1615 # Create route exception by exceeding 1520 # Create route exception by exceeding link layer MTU 1616 mtu "${ns_a}" veth_A-R1 $((${ll_mtu} 1521 mtu "${ns_a}" veth_A-R1 $((${ll_mtu} + 1000)) 1617 mtu "${ns_r1}" veth_R1-A $((${ll_mtu} 1522 mtu "${ns_r1}" veth_R1-A $((${ll_mtu} + 1000)) 1618 mtu "${ns_b}" veth_B-R1 ${ll_mtu} 1523 mtu "${ns_b}" veth_B-R1 ${ll_mtu} 1619 mtu "${ns_r1}" veth_R1-B ${ll_mtu} 1524 mtu "${ns_r1}" veth_R1-B ${ll_mtu} 1620 1525 1621 mtu "${ns_a}" ${encap}_a $((${ll_mtu} 1526 mtu "${ns_a}" ${encap}_a $((${ll_mtu} + 1000)) 1622 mtu "${ns_b}" ${encap}_b $((${ll_mtu} 1527 mtu "${ns_b}" ${encap}_b $((${ll_mtu} + 1000)) 1623 run_cmd ${ns_a} ${ping} -q -M want -i 1528 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s $((${ll_mtu} + 500)) ${dst} 1624 1529 1625 # Check that exception was created 1530 # Check that exception was created 1626 pmtu="$(route_get_dst_pmtu_from_excep 1531 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst})" 1627 check_pmtu_value ${exp_mtu} "${pmtu}" 1532 check_pmtu_value ${exp_mtu} "${pmtu}" "exceeding link layer MTU on ${encap} interface" 1628 } 1533 } 1629 1534 1630 test_pmtu_ipv4_fou4_exception() { 1535 test_pmtu_ipv4_fou4_exception() { 1631 test_pmtu_ipvX_over_fouY_or_gueY 4 4 1536 test_pmtu_ipvX_over_fouY_or_gueY 4 4 fou 1632 } 1537 } 1633 1538 1634 test_pmtu_ipv6_fou4_exception() { 1539 test_pmtu_ipv6_fou4_exception() { 1635 test_pmtu_ipvX_over_fouY_or_gueY 6 4 1540 test_pmtu_ipvX_over_fouY_or_gueY 6 4 fou 1636 } 1541 } 1637 1542 1638 test_pmtu_ipv4_fou6_exception() { 1543 test_pmtu_ipv4_fou6_exception() { 1639 test_pmtu_ipvX_over_fouY_or_gueY 4 6 1544 test_pmtu_ipvX_over_fouY_or_gueY 4 6 fou 1640 } 1545 } 1641 1546 1642 test_pmtu_ipv6_fou6_exception() { 1547 test_pmtu_ipv6_fou6_exception() { 1643 test_pmtu_ipvX_over_fouY_or_gueY 6 6 1548 test_pmtu_ipvX_over_fouY_or_gueY 6 6 fou 1644 } 1549 } 1645 1550 1646 test_pmtu_ipv4_gue4_exception() { 1551 test_pmtu_ipv4_gue4_exception() { 1647 test_pmtu_ipvX_over_fouY_or_gueY 4 4 1552 test_pmtu_ipvX_over_fouY_or_gueY 4 4 gue 1648 } 1553 } 1649 1554 1650 test_pmtu_ipv6_gue4_exception() { 1555 test_pmtu_ipv6_gue4_exception() { 1651 test_pmtu_ipvX_over_fouY_or_gueY 6 4 1556 test_pmtu_ipvX_over_fouY_or_gueY 6 4 gue 1652 } 1557 } 1653 1558 1654 test_pmtu_ipv4_gue6_exception() { 1559 test_pmtu_ipv4_gue6_exception() { 1655 test_pmtu_ipvX_over_fouY_or_gueY 4 6 1560 test_pmtu_ipvX_over_fouY_or_gueY 4 6 gue 1656 } 1561 } 1657 1562 1658 test_pmtu_ipv6_gue6_exception() { 1563 test_pmtu_ipv6_gue6_exception() { 1659 test_pmtu_ipvX_over_fouY_or_gueY 6 6 1564 test_pmtu_ipvX_over_fouY_or_gueY 6 6 gue 1660 } 1565 } 1661 1566 1662 test_pmtu_ipvX_over_ipvY_exception() { 1567 test_pmtu_ipvX_over_ipvY_exception() { 1663 inner=${1} 1568 inner=${1} 1664 outer=${2} 1569 outer=${2} 1665 ll_mtu=4000 1570 ll_mtu=4000 1666 1571 1667 setup namespaces routing ip${inner}ip 1572 setup namespaces routing ip${inner}ip${outer} || return $ksft_skip 1668 1573 1669 trace "${ns_a}" ip_a "${ns_b} 1574 trace "${ns_a}" ip_a "${ns_b}" ip_b \ 1670 "${ns_a}" veth_A-R1 "${ns_r1 1575 "${ns_a}" veth_A-R1 "${ns_r1}" veth_R1-A \ 1671 "${ns_b}" veth_B-R1 "${ns_r1 1576 "${ns_b}" veth_B-R1 "${ns_r1}" veth_R1-B 1672 1577 1673 if [ ${inner} -eq 4 ]; then 1578 if [ ${inner} -eq 4 ]; then 1674 ping=ping 1579 ping=ping 1675 dst=${tunnel4_b_addr} 1580 dst=${tunnel4_b_addr} 1676 else 1581 else 1677 ping=${ping6} 1582 ping=${ping6} 1678 dst=${tunnel6_b_addr} 1583 dst=${tunnel6_b_addr} 1679 fi 1584 fi 1680 1585 1681 if [ ${outer} -eq 4 ]; then 1586 if [ ${outer} -eq 4 ]; then 1682 # IPv4 h 1587 # IPv4 header 1683 exp_mtu=$((${ll_mtu} - 20)) 1588 exp_mtu=$((${ll_mtu} - 20)) 1684 else 1589 else 1685 # IPv6 h 1590 # IPv6 header Option 4 1686 exp_mtu=$((${ll_mtu} - 40 1591 exp_mtu=$((${ll_mtu} - 40 - 8)) 1687 fi 1592 fi 1688 1593 1689 # Create route exception by exceeding 1594 # Create route exception by exceeding link layer MTU 1690 mtu "${ns_a}" veth_A-R1 $((${ll_mtu} 1595 mtu "${ns_a}" veth_A-R1 $((${ll_mtu} + 1000)) 1691 mtu "${ns_r1}" veth_R1-A $((${ll_mtu} 1596 mtu "${ns_r1}" veth_R1-A $((${ll_mtu} + 1000)) 1692 mtu "${ns_b}" veth_B-R1 ${ll_mtu} 1597 mtu "${ns_b}" veth_B-R1 ${ll_mtu} 1693 mtu "${ns_r1}" veth_R1-B ${ll_mtu} 1598 mtu "${ns_r1}" veth_R1-B ${ll_mtu} 1694 1599 1695 mtu "${ns_a}" ip_a $((${ll_mtu} + 100 1600 mtu "${ns_a}" ip_a $((${ll_mtu} + 1000)) || return 1696 mtu "${ns_b}" ip_b $((${ll_mtu} + 100 1601 mtu "${ns_b}" ip_b $((${ll_mtu} + 1000)) || return 1697 run_cmd ${ns_a} ${ping} -q -M want -i 1602 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s $((${ll_mtu} + 500)) ${dst} 1698 1603 1699 # Check that exception was created 1604 # Check that exception was created 1700 pmtu="$(route_get_dst_pmtu_from_excep 1605 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst})" 1701 check_pmtu_value ${exp_mtu} "${pmtu}" 1606 check_pmtu_value ${exp_mtu} "${pmtu}" "exceeding link layer MTU on ip${inner}ip${outer} interface" 1702 } 1607 } 1703 1608 1704 test_pmtu_ipv4_ipv4_exception() { 1609 test_pmtu_ipv4_ipv4_exception() { 1705 test_pmtu_ipvX_over_ipvY_exception 4 1610 test_pmtu_ipvX_over_ipvY_exception 4 4 1706 } 1611 } 1707 1612 1708 test_pmtu_ipv6_ipv4_exception() { 1613 test_pmtu_ipv6_ipv4_exception() { 1709 test_pmtu_ipvX_over_ipvY_exception 6 1614 test_pmtu_ipvX_over_ipvY_exception 6 4 1710 } 1615 } 1711 1616 1712 test_pmtu_ipv4_ipv6_exception() { 1617 test_pmtu_ipv4_ipv6_exception() { 1713 test_pmtu_ipvX_over_ipvY_exception 4 1618 test_pmtu_ipvX_over_ipvY_exception 4 6 1714 } 1619 } 1715 1620 1716 test_pmtu_ipv6_ipv6_exception() { 1621 test_pmtu_ipv6_ipv6_exception() { 1717 test_pmtu_ipvX_over_ipvY_exception 6 1622 test_pmtu_ipvX_over_ipvY_exception 6 6 1718 } 1623 } 1719 1624 1720 test_pmtu_vti4_exception() { 1625 test_pmtu_vti4_exception() { 1721 setup namespaces veth vti4 xfrm4 || r 1626 setup namespaces veth vti4 xfrm4 || return $ksft_skip 1722 trace "${ns_a}" veth_a "${ns_b}" v 1627 trace "${ns_a}" veth_a "${ns_b}" veth_b \ 1723 "${ns_a}" vti4_a "${ns_b}" v 1628 "${ns_a}" vti4_a "${ns_b}" vti4_b 1724 1629 1725 veth_mtu=1500 1630 veth_mtu=1500 1726 vti_mtu=$((veth_mtu - 20)) 1631 vti_mtu=$((veth_mtu - 20)) 1727 1632 1728 # SPI 1633 # SPI SN IV ICV pad length next header 1729 esp_payload_rfc4106=$((vti_mtu - 4 1634 esp_payload_rfc4106=$((vti_mtu - 4 - 4 - 8 - 16 - 1 - 1)) 1730 ping_payload=$((esp_payload_rfc4106 - 1635 ping_payload=$((esp_payload_rfc4106 - 28)) 1731 1636 1732 mtu "${ns_a}" veth_a ${veth_mtu} 1637 mtu "${ns_a}" veth_a ${veth_mtu} 1733 mtu "${ns_b}" veth_b ${veth_mtu} 1638 mtu "${ns_b}" veth_b ${veth_mtu} 1734 mtu "${ns_a}" vti4_a ${vti_mtu} 1639 mtu "${ns_a}" vti4_a ${vti_mtu} 1735 mtu "${ns_b}" vti4_b ${vti_mtu} 1640 mtu "${ns_b}" vti4_b ${vti_mtu} 1736 1641 1737 # Send DF packet without exceeding li 1642 # Send DF packet without exceeding link layer MTU, check that no 1738 # exception is created 1643 # exception is created 1739 run_cmd ${ns_a} ping -q -M want -i 0. 1644 run_cmd ${ns_a} ping -q -M want -i 0.1 -w 1 -s ${ping_payload} ${tunnel4_b_addr} 1740 pmtu="$(route_get_dst_pmtu_from_excep 1645 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${tunnel4_b_addr})" 1741 check_pmtu_value "" "${pmtu}" "sendin 1646 check_pmtu_value "" "${pmtu}" "sending packet smaller than PMTU (IP payload length ${esp_payload_rfc4106})" || return 1 1742 1647 1743 # Now exceed link layer MTU by one by 1648 # Now exceed link layer MTU by one byte, check that exception is created 1744 # with the right PMTU value 1649 # with the right PMTU value 1745 run_cmd ${ns_a} ping -q -M want -i 0. 1650 run_cmd ${ns_a} ping -q -M want -i 0.1 -w 1 -s $((ping_payload + 1)) ${tunnel4_b_addr} 1746 pmtu="$(route_get_dst_pmtu_from_excep 1651 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${tunnel4_b_addr})" 1747 check_pmtu_value "${esp_payload_rfc41 1652 check_pmtu_value "${esp_payload_rfc4106}" "${pmtu}" "exceeding PMTU (IP payload length $((esp_payload_rfc4106 + 1)))" 1748 } 1653 } 1749 1654 1750 test_pmtu_vti6_exception() { 1655 test_pmtu_vti6_exception() { 1751 setup namespaces veth vti6 xfrm6 || r 1656 setup namespaces veth vti6 xfrm6 || return $ksft_skip 1752 trace "${ns_a}" veth_a "${ns_b}" v 1657 trace "${ns_a}" veth_a "${ns_b}" veth_b \ 1753 "${ns_a}" vti6_a "${ns_b}" v 1658 "${ns_a}" vti6_a "${ns_b}" vti6_b 1754 fail=0 1659 fail=0 1755 1660 1756 # Create route exception by exceeding 1661 # Create route exception by exceeding link layer MTU 1757 mtu "${ns_a}" veth_a 4000 1662 mtu "${ns_a}" veth_a 4000 1758 mtu "${ns_b}" veth_b 4000 1663 mtu "${ns_b}" veth_b 4000 1759 mtu "${ns_a}" vti6_a 5000 1664 mtu "${ns_a}" vti6_a 5000 1760 mtu "${ns_b}" vti6_b 5000 1665 mtu "${ns_b}" vti6_b 5000 1761 run_cmd ${ns_a} ${ping6} -q -i 0.1 -w 1666 run_cmd ${ns_a} ${ping6} -q -i 0.1 -w 1 -s 60000 ${tunnel6_b_addr} 1762 1667 1763 # Check that exception was created 1668 # Check that exception was created 1764 pmtu="$(route_get_dst_pmtu_from_excep 1669 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${tunnel6_b_addr})" 1765 check_pmtu_value any "${pmtu}" "creat 1670 check_pmtu_value any "${pmtu}" "creating tunnel exceeding link layer MTU" || return 1 1766 1671 1767 # Decrease tunnel MTU, check for PMTU 1672 # Decrease tunnel MTU, check for PMTU decrease in route exception 1768 mtu "${ns_a}" vti6_a 3000 1673 mtu "${ns_a}" vti6_a 3000 1769 pmtu="$(route_get_dst_pmtu_from_excep 1674 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${tunnel6_b_addr})" 1770 check_pmtu_value "3000" "${pmtu}" "de 1675 check_pmtu_value "3000" "${pmtu}" "decreasing tunnel MTU" || fail=1 1771 1676 1772 # Increase tunnel MTU, check for PMTU 1677 # Increase tunnel MTU, check for PMTU increase in route exception 1773 mtu "${ns_a}" vti6_a 9000 1678 mtu "${ns_a}" vti6_a 9000 1774 pmtu="$(route_get_dst_pmtu_from_excep 1679 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${tunnel6_b_addr})" 1775 check_pmtu_value "9000" "${pmtu}" "in 1680 check_pmtu_value "9000" "${pmtu}" "increasing tunnel MTU" || fail=1 1776 1681 1777 return ${fail} 1682 return ${fail} 1778 } 1683 } 1779 1684 1780 test_pmtu_vti4_udp_exception() { 1685 test_pmtu_vti4_udp_exception() { 1781 setup namespaces veth vti4 xfrm4udp | 1686 setup namespaces veth vti4 xfrm4udp || return $ksft_skip 1782 trace "${ns_a}" veth_a "${ns_b}" v 1687 trace "${ns_a}" veth_a "${ns_b}" veth_b \ 1783 "${ns_a}" vti4_a "${ns_b}" v 1688 "${ns_a}" vti4_a "${ns_b}" vti4_b 1784 1689 1785 veth_mtu=1500 1690 veth_mtu=1500 1786 vti_mtu=$((veth_mtu - 20)) 1691 vti_mtu=$((veth_mtu - 20)) 1787 1692 1788 # UDP 1693 # UDP SPI SN IV ICV pad length next header 1789 esp_payload_rfc4106=$((vti_mtu - 8 1694 esp_payload_rfc4106=$((vti_mtu - 8 - 4 - 4 - 8 - 16 - 1 - 1)) 1790 ping_payload=$((esp_payload_rfc4106 - 1695 ping_payload=$((esp_payload_rfc4106 - 28)) 1791 1696 1792 mtu "${ns_a}" veth_a ${veth_mtu} 1697 mtu "${ns_a}" veth_a ${veth_mtu} 1793 mtu "${ns_b}" veth_b ${veth_mtu} 1698 mtu "${ns_b}" veth_b ${veth_mtu} 1794 mtu "${ns_a}" vti4_a ${vti_mtu} 1699 mtu "${ns_a}" vti4_a ${vti_mtu} 1795 mtu "${ns_b}" vti4_b ${vti_mtu} 1700 mtu "${ns_b}" vti4_b ${vti_mtu} 1796 1701 1797 # Send DF packet without exceeding li 1702 # Send DF packet without exceeding link layer MTU, check that no 1798 # exception is created 1703 # exception is created 1799 run_cmd ${ns_a} ping -q -M want -i 0. 1704 run_cmd ${ns_a} ping -q -M want -i 0.1 -w 1 -s ${ping_payload} ${tunnel4_b_addr} 1800 pmtu="$(route_get_dst_pmtu_from_excep 1705 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${tunnel4_b_addr})" 1801 check_pmtu_value "" "${pmtu}" "sendin 1706 check_pmtu_value "" "${pmtu}" "sending packet smaller than PMTU (IP payload length ${esp_payload_rfc4106})" || return 1 1802 1707 1803 # Now exceed link layer MTU by one by 1708 # Now exceed link layer MTU by one byte, check that exception is created 1804 # with the right PMTU value 1709 # with the right PMTU value 1805 run_cmd ${ns_a} ping -q -M want -i 0. 1710 run_cmd ${ns_a} ping -q -M want -i 0.1 -w 1 -s $((ping_payload + 1)) ${tunnel4_b_addr} 1806 pmtu="$(route_get_dst_pmtu_from_excep 1711 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${tunnel4_b_addr})" 1807 check_pmtu_value "${esp_payload_rfc41 1712 check_pmtu_value "${esp_payload_rfc4106}" "${pmtu}" "exceeding PMTU (IP payload length $((esp_payload_rfc4106 + 1)))" 1808 } 1713 } 1809 1714 1810 test_pmtu_vti6_udp_exception() { 1715 test_pmtu_vti6_udp_exception() { 1811 setup namespaces veth vti6 xfrm6udp | 1716 setup namespaces veth vti6 xfrm6udp || return $ksft_skip 1812 trace "${ns_a}" veth_a "${ns_b}" v 1717 trace "${ns_a}" veth_a "${ns_b}" veth_b \ 1813 "${ns_a}" vti6_a "${ns_b}" v 1718 "${ns_a}" vti6_a "${ns_b}" vti6_b 1814 fail=0 1719 fail=0 1815 1720 1816 # Create route exception by exceeding 1721 # Create route exception by exceeding link layer MTU 1817 mtu "${ns_a}" veth_a 4000 1722 mtu "${ns_a}" veth_a 4000 1818 mtu "${ns_b}" veth_b 4000 1723 mtu "${ns_b}" veth_b 4000 1819 mtu "${ns_a}" vti6_a 5000 1724 mtu "${ns_a}" vti6_a 5000 1820 mtu "${ns_b}" vti6_b 5000 1725 mtu "${ns_b}" vti6_b 5000 1821 run_cmd ${ns_a} ${ping6} -q -i 0.1 -w 1726 run_cmd ${ns_a} ${ping6} -q -i 0.1 -w 1 -s 60000 ${tunnel6_b_addr} 1822 1727 1823 # Check that exception was created 1728 # Check that exception was created 1824 pmtu="$(route_get_dst_pmtu_from_excep 1729 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${tunnel6_b_addr})" 1825 check_pmtu_value any "${pmtu}" "creat 1730 check_pmtu_value any "${pmtu}" "creating tunnel exceeding link layer MTU" || return 1 1826 1731 1827 # Decrease tunnel MTU, check for PMTU 1732 # Decrease tunnel MTU, check for PMTU decrease in route exception 1828 mtu "${ns_a}" vti6_a 3000 1733 mtu "${ns_a}" vti6_a 3000 1829 pmtu="$(route_get_dst_pmtu_from_excep 1734 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${tunnel6_b_addr})" 1830 check_pmtu_value "3000" "${pmtu}" "de 1735 check_pmtu_value "3000" "${pmtu}" "decreasing tunnel MTU" || fail=1 1831 1736 1832 # Increase tunnel MTU, check for PMTU 1737 # Increase tunnel MTU, check for PMTU increase in route exception 1833 mtu "${ns_a}" vti6_a 9000 1738 mtu "${ns_a}" vti6_a 9000 1834 pmtu="$(route_get_dst_pmtu_from_excep 1739 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${tunnel6_b_addr})" 1835 check_pmtu_value "9000" "${pmtu}" "in 1740 check_pmtu_value "9000" "${pmtu}" "increasing tunnel MTU" || fail=1 1836 1741 1837 return ${fail} 1742 return ${fail} 1838 } 1743 } 1839 1744 1840 test_pmtu_vti4_udp_routed_exception() { 1745 test_pmtu_vti4_udp_routed_exception() { 1841 setup namespaces routing vti4routed x 1746 setup namespaces routing vti4routed xfrm4udprouted || return $ksft_skip 1842 trace "${ns_a}" veth_A-R1 "${ns_b} 1747 trace "${ns_a}" veth_A-R1 "${ns_b}" veth_B-R1 \ 1843 "${ns_a}" vti4_a "${ns_b} 1748 "${ns_a}" vti4_a "${ns_b}" vti4_b 1844 1749 1845 veth_mtu=1500 1750 veth_mtu=1500 1846 vti_mtu=$((veth_mtu - 20)) 1751 vti_mtu=$((veth_mtu - 20)) 1847 1752 1848 # UDP 1753 # UDP SPI SN IV ICV pad length next header 1849 esp_payload_rfc4106=$((vti_mtu - 8 1754 esp_payload_rfc4106=$((vti_mtu - 8 - 4 - 4 - 8 - 16 - 1 - 1)) 1850 ping_payload=$((esp_payload_rfc4106 - 1755 ping_payload=$((esp_payload_rfc4106 - 28)) 1851 1756 1852 mtu "${ns_a}" veth_A-R1 ${veth_mtu} 1757 mtu "${ns_a}" veth_A-R1 ${veth_mtu} 1853 mtu "${ns_r1}" veth_R1-A ${veth_mtu} 1758 mtu "${ns_r1}" veth_R1-A ${veth_mtu} 1854 mtu "${ns_b}" veth_B-R1 ${veth_mtu} 1759 mtu "${ns_b}" veth_B-R1 ${veth_mtu} 1855 mtu "${ns_r1}" veth_R1-B ${veth_mtu} 1760 mtu "${ns_r1}" veth_R1-B ${veth_mtu} 1856 1761 1857 mtu "${ns_a}" vti4_a ${vti_mtu} 1762 mtu "${ns_a}" vti4_a ${vti_mtu} 1858 mtu "${ns_b}" vti4_b ${vti_mtu} 1763 mtu "${ns_b}" vti4_b ${vti_mtu} 1859 1764 1860 # Send DF packet without exceeding li 1765 # Send DF packet without exceeding link layer MTU, check that no 1861 # exception is created 1766 # exception is created 1862 run_cmd ${ns_a} ping -q -M want -i 0. 1767 run_cmd ${ns_a} ping -q -M want -i 0.1 -w 1 -s ${ping_payload} ${tunnel4_b_addr} 1863 pmtu="$(route_get_dst_pmtu_from_excep 1768 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${tunnel4_b_addr})" 1864 check_pmtu_value "" "${pmtu}" "sendin 1769 check_pmtu_value "" "${pmtu}" "sending packet smaller than PMTU (IP payload length ${esp_payload_rfc4106})" || return 1 1865 1770 1866 # Now decrease link layer MTU by 8 by 1771 # Now decrease link layer MTU by 8 bytes on R1, check that exception is created 1867 # with the right PMTU value 1772 # with the right PMTU value 1868 mtu "${ns_r1}" veth_R1-B $((veth_mtu 1773 mtu "${ns_r1}" veth_R1-B $((veth_mtu - 8)) 1869 run_cmd ${ns_a} ping -q -M want -i 0. 1774 run_cmd ${ns_a} ping -q -M want -i 0.1 -w 1 -s $((ping_payload)) ${tunnel4_b_addr} 1870 pmtu="$(route_get_dst_pmtu_from_excep 1775 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${tunnel4_b_addr})" 1871 check_pmtu_value "$((esp_payload_rfc4 1776 check_pmtu_value "$((esp_payload_rfc4106 - 8))" "${pmtu}" "exceeding PMTU (IP payload length $((esp_payload_rfc4106)))" 1872 } 1777 } 1873 1778 1874 test_pmtu_vti6_udp_routed_exception() { 1779 test_pmtu_vti6_udp_routed_exception() { 1875 setup namespaces routing vti6routed x 1780 setup namespaces routing vti6routed xfrm6udprouted || return $ksft_skip 1876 trace "${ns_a}" veth_A-R1 "${ns_b} 1781 trace "${ns_a}" veth_A-R1 "${ns_b}" veth_B-R1 \ 1877 "${ns_a}" vti6_a "${ns_b} 1782 "${ns_a}" vti6_a "${ns_b}" vti6_b 1878 1783 1879 veth_mtu=1500 1784 veth_mtu=1500 1880 vti_mtu=$((veth_mtu - 40)) 1785 vti_mtu=$((veth_mtu - 40)) 1881 1786 1882 # UDP 1787 # UDP SPI SN IV ICV pad length next header 1883 esp_payload_rfc4106=$((vti_mtu - 8 1788 esp_payload_rfc4106=$((vti_mtu - 8 - 4 - 4 - 8 - 16 - 1 - 1)) 1884 ping_payload=$((esp_payload_rfc4106 - 1789 ping_payload=$((esp_payload_rfc4106 - 48)) 1885 1790 1886 mtu "${ns_a}" veth_A-R1 ${veth_mtu} 1791 mtu "${ns_a}" veth_A-R1 ${veth_mtu} 1887 mtu "${ns_r1}" veth_R1-A ${veth_mtu} 1792 mtu "${ns_r1}" veth_R1-A ${veth_mtu} 1888 mtu "${ns_b}" veth_B-R1 ${veth_mtu} 1793 mtu "${ns_b}" veth_B-R1 ${veth_mtu} 1889 mtu "${ns_r1}" veth_R1-B ${veth_mtu} 1794 mtu "${ns_r1}" veth_R1-B ${veth_mtu} 1890 1795 1891 # mtu "${ns_a}" vti6_a ${vti_mtu} 1796 # mtu "${ns_a}" vti6_a ${vti_mtu} 1892 # mtu "${ns_b}" vti6_b ${vti_mtu} 1797 # mtu "${ns_b}" vti6_b ${vti_mtu} 1893 1798 1894 run_cmd ${ns_a} ${ping6} -q -M want - 1799 run_cmd ${ns_a} ${ping6} -q -M want -i 0.1 -w 1 -s ${ping_payload} ${tunnel6_b_addr} 1895 1800 1896 # Check that exception was not create 1801 # Check that exception was not created 1897 pmtu="$(route_get_dst_pmtu_from_excep 1802 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${tunnel6_b_addr})" 1898 check_pmtu_value "" "${pmtu}" "sendin 1803 check_pmtu_value "" "${pmtu}" "sending packet smaller than PMTU (IP payload length ${esp_payload_rfc4106})" || return 1 1899 1804 1900 # Now decrease link layer MTU by 8 by 1805 # Now decrease link layer MTU by 8 bytes on R1, check that exception is created 1901 # with the right PMTU value 1806 # with the right PMTU value 1902 mtu "${ns_r1}" veth_R1-B $((veth_mtu 1807 mtu "${ns_r1}" veth_R1-B $((veth_mtu - 8)) 1903 run_cmd ${ns_a} ${ping6} -q -M want - 1808 run_cmd ${ns_a} ${ping6} -q -M want -i 0.1 -w 1 -s $((ping_payload)) ${tunnel6_b_addr} 1904 pmtu="$(route_get_dst_pmtu_from_excep 1809 pmtu="$(route_get_dst_pmtu_from_exception "${ns_a}" ${tunnel6_b_addr})" 1905 check_pmtu_value "$((esp_payload_rfc4 1810 check_pmtu_value "$((esp_payload_rfc4106 - 8))" "${pmtu}" "exceeding PMTU (IP payload length $((esp_payload_rfc4106)))" 1906 1811 1907 } 1812 } 1908 1813 1909 test_pmtu_vti4_default_mtu() { 1814 test_pmtu_vti4_default_mtu() { 1910 setup namespaces veth vti4 || return 1815 setup namespaces veth vti4 || return $ksft_skip 1911 1816 1912 # Check that MTU of vti device is MTU 1817 # Check that MTU of vti device is MTU of veth minus IPv4 header length 1913 veth_mtu="$(link_get_mtu "${ns_a}" ve 1818 veth_mtu="$(link_get_mtu "${ns_a}" veth_a)" 1914 vti4_mtu="$(link_get_mtu "${ns_a}" vt 1819 vti4_mtu="$(link_get_mtu "${ns_a}" vti4_a)" 1915 if [ $((veth_mtu - vti4_mtu)) -ne 20 1820 if [ $((veth_mtu - vti4_mtu)) -ne 20 ]; then 1916 err " vti MTU ${vti4_mtu} is 1821 err " vti MTU ${vti4_mtu} is not veth MTU ${veth_mtu} minus IPv4 header length" 1917 return 1 1822 return 1 1918 fi 1823 fi 1919 } 1824 } 1920 1825 1921 test_pmtu_vti6_default_mtu() { 1826 test_pmtu_vti6_default_mtu() { 1922 setup namespaces veth vti6 || return 1827 setup namespaces veth vti6 || return $ksft_skip 1923 1828 1924 # Check that MTU of vti device is MTU 1829 # Check that MTU of vti device is MTU of veth minus IPv6 header length 1925 veth_mtu="$(link_get_mtu "${ns_a}" ve 1830 veth_mtu="$(link_get_mtu "${ns_a}" veth_a)" 1926 vti6_mtu="$(link_get_mtu "${ns_a}" vt 1831 vti6_mtu="$(link_get_mtu "${ns_a}" vti6_a)" 1927 if [ $((veth_mtu - vti6_mtu)) -ne 40 1832 if [ $((veth_mtu - vti6_mtu)) -ne 40 ]; then 1928 err " vti MTU ${vti6_mtu} is 1833 err " vti MTU ${vti6_mtu} is not veth MTU ${veth_mtu} minus IPv6 header length" 1929 return 1 1834 return 1 1930 fi 1835 fi 1931 } 1836 } 1932 1837 1933 test_pmtu_vti4_link_add_mtu() { 1838 test_pmtu_vti4_link_add_mtu() { 1934 setup namespaces || return $ksft_skip 1839 setup namespaces || return $ksft_skip 1935 1840 1936 run_cmd ${ns_a} ip link add vti4_a ty 1841 run_cmd ${ns_a} ip link add vti4_a type vti local ${veth4_a_addr} remote ${veth4_b_addr} key 10 1937 [ $? -ne 0 ] && err " vti not suppor 1842 [ $? -ne 0 ] && err " vti not supported" && return $ksft_skip 1938 run_cmd ${ns_a} ip link del vti4_a 1843 run_cmd ${ns_a} ip link del vti4_a 1939 1844 1940 fail=0 1845 fail=0 1941 1846 1942 min=68 1847 min=68 1943 max=$((65535 - 20)) 1848 max=$((65535 - 20)) 1944 # Check invalid values first 1849 # Check invalid values first 1945 for v in $((min - 1)) $((max + 1)); d 1850 for v in $((min - 1)) $((max + 1)); do 1946 run_cmd ${ns_a} ip link add v 1851 run_cmd ${ns_a} ip link add vti4_a mtu ${v} type vti local ${veth4_a_addr} remote ${veth4_b_addr} key 10 1947 # This can fail, or MTU can b 1852 # This can fail, or MTU can be adjusted to a proper value 1948 [ $? -ne 0 ] && continue 1853 [ $? -ne 0 ] && continue 1949 mtu="$(link_get_mtu "${ns_a}" 1854 mtu="$(link_get_mtu "${ns_a}" vti4_a)" 1950 if [ ${mtu} -lt ${min} -o ${m 1855 if [ ${mtu} -lt ${min} -o ${mtu} -gt ${max} ]; then 1951 err " vti tunnel cre 1856 err " vti tunnel created with invalid MTU ${mtu}" 1952 fail=1 1857 fail=1 1953 fi 1858 fi 1954 run_cmd ${ns_a} ip link del v 1859 run_cmd ${ns_a} ip link del vti4_a 1955 done 1860 done 1956 1861 1957 # Now check valid values 1862 # Now check valid values 1958 for v in ${min} 1300 ${max}; do 1863 for v in ${min} 1300 ${max}; do 1959 run_cmd ${ns_a} ip link add v 1864 run_cmd ${ns_a} ip link add vti4_a mtu ${v} type vti local ${veth4_a_addr} remote ${veth4_b_addr} key 10 1960 mtu="$(link_get_mtu "${ns_a}" 1865 mtu="$(link_get_mtu "${ns_a}" vti4_a)" 1961 run_cmd ${ns_a} ip link del v 1866 run_cmd ${ns_a} ip link del vti4_a 1962 if [ "${mtu}" != "${v}" ]; th 1867 if [ "${mtu}" != "${v}" ]; then 1963 err " vti MTU ${mtu} 1868 err " vti MTU ${mtu} doesn't match configured value ${v}" 1964 fail=1 1869 fail=1 1965 fi 1870 fi 1966 done 1871 done 1967 1872 1968 return ${fail} 1873 return ${fail} 1969 } 1874 } 1970 1875 1971 test_pmtu_vti6_link_add_mtu() { 1876 test_pmtu_vti6_link_add_mtu() { 1972 setup namespaces || return $ksft_skip 1877 setup namespaces || return $ksft_skip 1973 1878 1974 run_cmd ${ns_a} ip link add vti6_a ty 1879 run_cmd ${ns_a} ip link add vti6_a type vti6 local ${veth6_a_addr} remote ${veth6_b_addr} key 10 1975 [ $? -ne 0 ] && err " vti6 not suppo 1880 [ $? -ne 0 ] && err " vti6 not supported" && return $ksft_skip 1976 run_cmd ${ns_a} ip link del vti6_a 1881 run_cmd ${ns_a} ip link del vti6_a 1977 1882 1978 fail=0 1883 fail=0 1979 1884 1980 min=68 # vti6 can ca 1885 min=68 # vti6 can carry IPv4 packets too 1981 max=$((65535 - 40)) 1886 max=$((65535 - 40)) 1982 # Check invalid values first 1887 # Check invalid values first 1983 for v in $((min - 1)) $((max + 1)); d 1888 for v in $((min - 1)) $((max + 1)); do 1984 run_cmd ${ns_a} ip link add v 1889 run_cmd ${ns_a} ip link add vti6_a mtu ${v} type vti6 local ${veth6_a_addr} remote ${veth6_b_addr} key 10 1985 # This can fail, or MTU can b 1890 # This can fail, or MTU can be adjusted to a proper value 1986 [ $? -ne 0 ] && continue 1891 [ $? -ne 0 ] && continue 1987 mtu="$(link_get_mtu "${ns_a}" 1892 mtu="$(link_get_mtu "${ns_a}" vti6_a)" 1988 if [ ${mtu} -lt ${min} -o ${m 1893 if [ ${mtu} -lt ${min} -o ${mtu} -gt ${max} ]; then 1989 err " vti6 tunnel cr 1894 err " vti6 tunnel created with invalid MTU ${v}" 1990 fail=1 1895 fail=1 1991 fi 1896 fi 1992 run_cmd ${ns_a} ip link del v 1897 run_cmd ${ns_a} ip link del vti6_a 1993 done 1898 done 1994 1899 1995 # Now check valid values 1900 # Now check valid values 1996 for v in 68 1280 1300 $((65535 - 40)) 1901 for v in 68 1280 1300 $((65535 - 40)); do 1997 run_cmd ${ns_a} ip link add v 1902 run_cmd ${ns_a} ip link add vti6_a mtu ${v} type vti6 local ${veth6_a_addr} remote ${veth6_b_addr} key 10 1998 mtu="$(link_get_mtu "${ns_a}" 1903 mtu="$(link_get_mtu "${ns_a}" vti6_a)" 1999 run_cmd ${ns_a} ip link del v 1904 run_cmd ${ns_a} ip link del vti6_a 2000 if [ "${mtu}" != "${v}" ]; th 1905 if [ "${mtu}" != "${v}" ]; then 2001 err " vti6 MTU ${mtu 1906 err " vti6 MTU ${mtu} doesn't match configured value ${v}" 2002 fail=1 1907 fail=1 2003 fi 1908 fi 2004 done 1909 done 2005 1910 2006 return ${fail} 1911 return ${fail} 2007 } 1912 } 2008 1913 2009 test_pmtu_vti6_link_change_mtu() { 1914 test_pmtu_vti6_link_change_mtu() { 2010 setup namespaces || return $ksft_skip 1915 setup namespaces || return $ksft_skip 2011 1916 2012 run_cmd ${ns_a} ip link add dummy0 mt 1917 run_cmd ${ns_a} ip link add dummy0 mtu 1500 type dummy 2013 [ $? -ne 0 ] && err " dummy not supp 1918 [ $? -ne 0 ] && err " dummy not supported" && return $ksft_skip 2014 run_cmd ${ns_a} ip link add dummy1 mt 1919 run_cmd ${ns_a} ip link add dummy1 mtu 3000 type dummy 2015 run_cmd ${ns_a} ip link set dummy0 up 1920 run_cmd ${ns_a} ip link set dummy0 up 2016 run_cmd ${ns_a} ip link set dummy1 up 1921 run_cmd ${ns_a} ip link set dummy1 up 2017 1922 2018 run_cmd ${ns_a} ip addr add ${dummy6_ 1923 run_cmd ${ns_a} ip addr add ${dummy6_0_prefix}1/${dummy6_mask} dev dummy0 2019 run_cmd ${ns_a} ip addr add ${dummy6_ 1924 run_cmd ${ns_a} ip addr add ${dummy6_1_prefix}1/${dummy6_mask} dev dummy1 2020 1925 2021 fail=0 1926 fail=0 2022 1927 2023 # Create vti6 interface bound to devi 1928 # Create vti6 interface bound to device, passing MTU, check it 2024 run_cmd ${ns_a} ip link add vti6_a mt 1929 run_cmd ${ns_a} ip link add vti6_a mtu 1300 type vti6 remote ${dummy6_0_prefix}2 local ${dummy6_0_prefix}1 2025 mtu="$(link_get_mtu "${ns_a}" vti6_a) 1930 mtu="$(link_get_mtu "${ns_a}" vti6_a)" 2026 if [ ${mtu} -ne 1300 ]; then 1931 if [ ${mtu} -ne 1300 ]; then 2027 err " vti6 MTU ${mtu} doesn' 1932 err " vti6 MTU ${mtu} doesn't match configured value 1300" 2028 fail=1 1933 fail=1 2029 fi 1934 fi 2030 1935 2031 # Move to another device with differe 1936 # Move to another device with different MTU, without passing MTU, check 2032 # MTU is adjusted 1937 # MTU is adjusted 2033 run_cmd ${ns_a} ip link set vti6_a ty 1938 run_cmd ${ns_a} ip link set vti6_a type vti6 remote ${dummy6_1_prefix}2 local ${dummy6_1_prefix}1 2034 mtu="$(link_get_mtu "${ns_a}" vti6_a) 1939 mtu="$(link_get_mtu "${ns_a}" vti6_a)" 2035 if [ ${mtu} -ne $((3000 - 40)) ]; the 1940 if [ ${mtu} -ne $((3000 - 40)) ]; then 2036 err " vti MTU ${mtu} is not 1941 err " vti MTU ${mtu} is not dummy MTU 3000 minus IPv6 header length" 2037 fail=1 1942 fail=1 2038 fi 1943 fi 2039 1944 2040 # Move it back, passing MTU, check MT 1945 # Move it back, passing MTU, check MTU is not overridden 2041 run_cmd ${ns_a} ip link set vti6_a mt 1946 run_cmd ${ns_a} ip link set vti6_a mtu 1280 type vti6 remote ${dummy6_0_prefix}2 local ${dummy6_0_prefix}1 2042 mtu="$(link_get_mtu "${ns_a}" vti6_a) 1947 mtu="$(link_get_mtu "${ns_a}" vti6_a)" 2043 if [ ${mtu} -ne 1280 ]; then 1948 if [ ${mtu} -ne 1280 ]; then 2044 err " vti6 MTU ${mtu} doesn' 1949 err " vti6 MTU ${mtu} doesn't match configured value 1280" 2045 fail=1 1950 fail=1 2046 fi 1951 fi 2047 1952 2048 return ${fail} 1953 return ${fail} 2049 } 1954 } 2050 1955 2051 check_command() { 1956 check_command() { 2052 cmd=${1} 1957 cmd=${1} 2053 1958 2054 if ! which ${cmd} > /dev/null 2>&1; t 1959 if ! which ${cmd} > /dev/null 2>&1; then 2055 err " missing required comma 1960 err " missing required command: '${cmd}'" 2056 return 1 1961 return 1 2057 fi 1962 fi 2058 return 0 1963 return 0 2059 } 1964 } 2060 1965 2061 check_running() { << 2062 pid=${1} << 2063 cmd=${2} << 2064 << 2065 [ "$(cat /proc/${pid}/cmdline 2>/dev/ << 2066 } << 2067 << 2068 test_cleanup_vxlanX_exception() { 1966 test_cleanup_vxlanX_exception() { 2069 outer="${1}" 1967 outer="${1}" 2070 encap="vxlan" 1968 encap="vxlan" 2071 ll_mtu=4000 1969 ll_mtu=4000 2072 1970 2073 check_command taskset || return $ksft 1971 check_command taskset || return $ksft_skip 2074 cpu_list=$(grep -m 2 processor /proc/ 1972 cpu_list=$(grep -m 2 processor /proc/cpuinfo | cut -d ' ' -f 2) 2075 1973 2076 setup namespaces routing ${encap}${ou 1974 setup namespaces routing ${encap}${outer} || return $ksft_skip 2077 trace "${ns_a}" ${encap}_a "${ns_b} 1975 trace "${ns_a}" ${encap}_a "${ns_b}" ${encap}_b \ 2078 "${ns_a}" veth_A-R1 "${ns_r1 1976 "${ns_a}" veth_A-R1 "${ns_r1}" veth_R1-A \ 2079 "${ns_b}" veth_B-R1 "${ns_r1 1977 "${ns_b}" veth_B-R1 "${ns_r1}" veth_R1-B 2080 1978 2081 # Create route exception by exceeding 1979 # Create route exception by exceeding link layer MTU 2082 mtu "${ns_a}" veth_A-R1 $((${ll_mtu} 1980 mtu "${ns_a}" veth_A-R1 $((${ll_mtu} + 1000)) 2083 mtu "${ns_r1}" veth_R1-A $((${ll_mtu} 1981 mtu "${ns_r1}" veth_R1-A $((${ll_mtu} + 1000)) 2084 mtu "${ns_b}" veth_B-R1 ${ll_mtu} 1982 mtu "${ns_b}" veth_B-R1 ${ll_mtu} 2085 mtu "${ns_r1}" veth_R1-B ${ll_mtu} 1983 mtu "${ns_r1}" veth_R1-B ${ll_mtu} 2086 1984 2087 mtu "${ns_a}" ${encap}_a $((${ll_mtu} 1985 mtu "${ns_a}" ${encap}_a $((${ll_mtu} + 1000)) 2088 mtu "${ns_b}" ${encap}_b $((${ll_mtu} 1986 mtu "${ns_b}" ${encap}_b $((${ll_mtu} + 1000)) 2089 1987 2090 # Fill exception cache for multiple C 1988 # Fill exception cache for multiple CPUs (2) 2091 # we can always use inner IPv4 for th 1989 # we can always use inner IPv4 for that 2092 for cpu in ${cpu_list}; do 1990 for cpu in ${cpu_list}; do 2093 run_cmd taskset --cpu-list ${ 1991 run_cmd taskset --cpu-list ${cpu} ${ns_a} ping -q -M want -i 0.1 -w 1 -s $((${ll_mtu} + 500)) ${tunnel4_b_addr} 2094 done 1992 done 2095 1993 2096 ${ns_a} ip link del dev veth_A-R1 & 1994 ${ns_a} ip link del dev veth_A-R1 & 2097 iplink_pid=$! 1995 iplink_pid=$! 2098 for i in $(seq 1 20); do !! 1996 sleep 1 2099 check_running ${iplink_pid} " !! 1997 if [ "$(cat /proc/${iplink_pid}/cmdline 2>/dev/null | tr -d '\0')" = "iplinkdeldevveth_A-R1" ]; then 2100 sleep 0.1 !! 1998 err " can't delete veth device in a timely manner, PMTU dst likely leaked" 2101 done !! 1999 return 1 2102 err " can't delete veth device in a !! 2000 fi 2103 return 1 << 2104 } 2001 } 2105 2002 2106 test_cleanup_ipv6_exception() { 2003 test_cleanup_ipv6_exception() { 2107 test_cleanup_vxlanX_exception 6 2004 test_cleanup_vxlanX_exception 6 2108 } 2005 } 2109 2006 2110 test_cleanup_ipv4_exception() { 2007 test_cleanup_ipv4_exception() { 2111 test_cleanup_vxlanX_exception 4 2008 test_cleanup_vxlanX_exception 4 2112 } 2009 } 2113 2010 2114 run_test() { 2011 run_test() { 2115 ( 2012 ( 2116 tname="$1" 2013 tname="$1" 2117 tdesc="$2" 2014 tdesc="$2" 2118 2015 2119 unset IFS 2016 unset IFS 2120 2017 2121 # Since cleanup() relies on variables 2018 # Since cleanup() relies on variables modified by this subshell, it 2122 # has to run in this context. 2019 # has to run in this context. 2123 trap cleanup EXIT 2020 trap cleanup EXIT 2124 2021 2125 if [ "$VERBOSE" = "1" ]; then 2022 if [ "$VERBOSE" = "1" ]; then 2126 printf "\n################### 2023 printf "\n##########################################################################\n\n" 2127 fi 2024 fi 2128 2025 2129 eval test_${tname} 2026 eval test_${tname} 2130 ret=$? 2027 ret=$? 2131 2028 2132 if [ $ret -eq 0 ]; then 2029 if [ $ret -eq 0 ]; then 2133 printf "TEST: %-60s [ OK ]\n 2030 printf "TEST: %-60s [ OK ]\n" "${tdesc}" 2134 elif [ $ret -eq 1 ]; then 2031 elif [ $ret -eq 1 ]; then 2135 printf "TEST: %-60s [FAIL]\n 2032 printf "TEST: %-60s [FAIL]\n" "${tdesc}" 2136 if [ "${PAUSE_ON_FAIL}" = "ye 2033 if [ "${PAUSE_ON_FAIL}" = "yes" ]; then 2137 echo 2034 echo 2138 echo "Pausing. Hit en 2035 echo "Pausing. Hit enter to continue" 2139 read a 2036 read a 2140 fi 2037 fi 2141 err_flush 2038 err_flush 2142 exit 1 2039 exit 1 2143 elif [ $ret -eq $ksft_skip ]; then 2040 elif [ $ret -eq $ksft_skip ]; then 2144 printf "TEST: %-60s [SKIP]\n 2041 printf "TEST: %-60s [SKIP]\n" "${tdesc}" 2145 err_flush 2042 err_flush 2146 fi 2043 fi 2147 2044 2148 return $ret 2045 return $ret 2149 ) 2046 ) 2150 ret=$? 2047 ret=$? 2151 case $ret in 2048 case $ret in 2152 0) 2049 0) 2153 all_skipped=false 2050 all_skipped=false 2154 [ $exitcode -eq $ksft 2051 [ $exitcode -eq $ksft_skip ] && exitcode=0 2155 ;; 2052 ;; 2156 $ksft_skip) 2053 $ksft_skip) 2157 [ $all_skipped = true 2054 [ $all_skipped = true ] && exitcode=$ksft_skip 2158 ;; 2055 ;; 2159 *) 2056 *) 2160 all_skipped=false 2057 all_skipped=false 2161 exitcode=1 2058 exitcode=1 2162 ;; 2059 ;; 2163 esac 2060 esac 2164 2061 2165 return $ret 2062 return $ret 2166 } 2063 } 2167 2064 2168 run_test_nh() { 2065 run_test_nh() { 2169 tname="$1" 2066 tname="$1" 2170 tdesc="$2" 2067 tdesc="$2" 2171 2068 2172 USE_NH=yes 2069 USE_NH=yes 2173 run_test "${tname}" "${tdesc} - nexth 2070 run_test "${tname}" "${tdesc} - nexthop objects" 2174 USE_NH=no 2071 USE_NH=no 2175 } 2072 } 2176 2073 2177 test_list_flush_ipv4_exception() { 2074 test_list_flush_ipv4_exception() { 2178 setup namespaces routing || return $k 2075 setup namespaces routing || return $ksft_skip 2179 trace "${ns_a}" veth_A-R1 "${ns_r 2076 trace "${ns_a}" veth_A-R1 "${ns_r1}" veth_R1-A \ 2180 "${ns_r1}" veth_R1-B "${ns_b 2077 "${ns_r1}" veth_R1-B "${ns_b}" veth_B-R1 \ 2181 "${ns_a}" veth_A-R2 "${ns_r 2078 "${ns_a}" veth_A-R2 "${ns_r2}" veth_R2-A \ 2182 "${ns_r2}" veth_R2-B "${ns_b 2079 "${ns_r2}" veth_R2-B "${ns_b}" veth_B-R2 2183 2080 2184 dst_prefix1="${prefix4}.${b_r1}." 2081 dst_prefix1="${prefix4}.${b_r1}." 2185 dst2="${prefix4}.${b_r2}.1" 2082 dst2="${prefix4}.${b_r2}.1" 2186 2083 2187 # Set up initial MTU values 2084 # Set up initial MTU values 2188 mtu "${ns_a}" veth_A-R1 2000 2085 mtu "${ns_a}" veth_A-R1 2000 2189 mtu "${ns_r1}" veth_R1-A 2000 2086 mtu "${ns_r1}" veth_R1-A 2000 2190 mtu "${ns_r1}" veth_R1-B 1500 2087 mtu "${ns_r1}" veth_R1-B 1500 2191 mtu "${ns_b}" veth_B-R1 1500 2088 mtu "${ns_b}" veth_B-R1 1500 2192 2089 2193 mtu "${ns_a}" veth_A-R2 2000 2090 mtu "${ns_a}" veth_A-R2 2000 2194 mtu "${ns_r2}" veth_R2-A 2000 2091 mtu "${ns_r2}" veth_R2-A 2000 2195 mtu "${ns_r2}" veth_R2-B 1500 2092 mtu "${ns_r2}" veth_R2-B 1500 2196 mtu "${ns_b}" veth_B-R2 1500 2093 mtu "${ns_b}" veth_B-R2 1500 2197 2094 2198 fail=0 2095 fail=0 2199 2096 2200 # Add 100 addresses for veth endpoint 2097 # Add 100 addresses for veth endpoint on B reached by default A route 2201 for i in $(seq 100 199); do 2098 for i in $(seq 100 199); do 2202 run_cmd ${ns_b} ip addr add " 2099 run_cmd ${ns_b} ip addr add "${dst_prefix1}${i}" dev veth_B-R1 2203 done 2100 done 2204 2101 2205 # Create 100 cached route exceptions 2102 # Create 100 cached route exceptions for path via R1, one via R2. Note 2206 # that with IPv4 we need to actually 2103 # that with IPv4 we need to actually cause a route lookup that matches 2207 # the exception caused by ICMP, in or 2104 # the exception caused by ICMP, in order to actually have a cached 2208 # route, so we need to ping each dest 2105 # route, so we need to ping each destination twice 2209 for i in $(seq 100 199); do 2106 for i in $(seq 100 199); do 2210 run_cmd ${ns_a} ping -q -M wa 2107 run_cmd ${ns_a} ping -q -M want -i 0.1 -c 2 -s 1800 "${dst_prefix1}${i}" 2211 done 2108 done 2212 run_cmd ${ns_a} ping -q -M want -i 0. 2109 run_cmd ${ns_a} ping -q -M want -i 0.1 -c 2 -s 1800 "${dst2}" 2213 2110 2214 if [ "$(${ns_a} ip -oneline route lis 2111 if [ "$(${ns_a} ip -oneline route list cache | wc -l)" -ne 101 ]; then 2215 err " can't list cached exce 2112 err " can't list cached exceptions" 2216 fail=1 2113 fail=1 2217 fi 2114 fi 2218 2115 2219 run_cmd ${ns_a} ip route flush cache 2116 run_cmd ${ns_a} ip route flush cache 2220 pmtu1="$(route_get_dst_pmtu_from_exce 2117 pmtu1="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst_prefix}1)" 2221 pmtu2="$(route_get_dst_pmtu_from_exce 2118 pmtu2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst_prefix}2)" 2222 if [ -n "${pmtu1}" ] || [ -n "${pmtu2 2119 if [ -n "${pmtu1}" ] || [ -n "${pmtu2}" ] || \ 2223 [ -n "$(${ns_a} ip route list cach 2120 [ -n "$(${ns_a} ip route list cache)" ]; then 2224 err " can't flush cached exc 2121 err " can't flush cached exceptions" 2225 fail=1 2122 fail=1 2226 fi 2123 fi 2227 2124 2228 return ${fail} 2125 return ${fail} 2229 } 2126 } 2230 2127 2231 test_list_flush_ipv6_exception() { 2128 test_list_flush_ipv6_exception() { 2232 setup namespaces routing || return $k 2129 setup namespaces routing || return $ksft_skip 2233 trace "${ns_a}" veth_A-R1 "${ns_r 2130 trace "${ns_a}" veth_A-R1 "${ns_r1}" veth_R1-A \ 2234 "${ns_r1}" veth_R1-B "${ns_b 2131 "${ns_r1}" veth_R1-B "${ns_b}" veth_B-R1 \ 2235 "${ns_a}" veth_A-R2 "${ns_r 2132 "${ns_a}" veth_A-R2 "${ns_r2}" veth_R2-A \ 2236 "${ns_r2}" veth_R2-B "${ns_b 2133 "${ns_r2}" veth_R2-B "${ns_b}" veth_B-R2 2237 2134 2238 dst_prefix1="${prefix6}:${b_r1}::" 2135 dst_prefix1="${prefix6}:${b_r1}::" 2239 dst2="${prefix6}:${b_r2}::1" 2136 dst2="${prefix6}:${b_r2}::1" 2240 2137 2241 # Set up initial MTU values 2138 # Set up initial MTU values 2242 mtu "${ns_a}" veth_A-R1 2000 2139 mtu "${ns_a}" veth_A-R1 2000 2243 mtu "${ns_r1}" veth_R1-A 2000 2140 mtu "${ns_r1}" veth_R1-A 2000 2244 mtu "${ns_r1}" veth_R1-B 1500 2141 mtu "${ns_r1}" veth_R1-B 1500 2245 mtu "${ns_b}" veth_B-R1 1500 2142 mtu "${ns_b}" veth_B-R1 1500 2246 2143 2247 mtu "${ns_a}" veth_A-R2 2000 2144 mtu "${ns_a}" veth_A-R2 2000 2248 mtu "${ns_r2}" veth_R2-A 2000 2145 mtu "${ns_r2}" veth_R2-A 2000 2249 mtu "${ns_r2}" veth_R2-B 1500 2146 mtu "${ns_r2}" veth_R2-B 1500 2250 mtu "${ns_b}" veth_B-R2 1500 2147 mtu "${ns_b}" veth_B-R2 1500 2251 2148 2252 fail=0 2149 fail=0 2253 2150 2254 # Add 100 addresses for veth endpoint 2151 # Add 100 addresses for veth endpoint on B reached by default A route 2255 for i in $(seq 100 199); do 2152 for i in $(seq 100 199); do 2256 run_cmd ${ns_b} ip addr add " 2153 run_cmd ${ns_b} ip addr add "${dst_prefix1}${i}" dev veth_B-R1 2257 done 2154 done 2258 2155 2259 # Create 100 cached route exceptions 2156 # Create 100 cached route exceptions for path via R1, one via R2 2260 for i in $(seq 100 199); do 2157 for i in $(seq 100 199); do 2261 run_cmd ${ns_a} ping -q -M wa 2158 run_cmd ${ns_a} ping -q -M want -i 0.1 -w 1 -s 1800 "${dst_prefix1}${i}" 2262 done 2159 done 2263 run_cmd ${ns_a} ping -q -M want -i 0. 2160 run_cmd ${ns_a} ping -q -M want -i 0.1 -w 1 -s 1800 "${dst2}" 2264 if [ "$(${ns_a} ip -oneline -6 route 2161 if [ "$(${ns_a} ip -oneline -6 route list cache | wc -l)" -ne 101 ]; then 2265 err " can't list cached exce 2162 err " can't list cached exceptions" 2266 fail=1 2163 fail=1 2267 fi 2164 fi 2268 2165 2269 run_cmd ${ns_a} ip -6 route flush cac 2166 run_cmd ${ns_a} ip -6 route flush cache 2270 pmtu1="$(route_get_dst_pmtu_from_exce 2167 pmtu1="$(route_get_dst_pmtu_from_exception "${ns_a}" "${dst_prefix1}100")" 2271 pmtu2="$(route_get_dst_pmtu_from_exce 2168 pmtu2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" 2272 if [ -n "${pmtu1}" ] || [ -n "${pmtu2 2169 if [ -n "${pmtu1}" ] || [ -n "${pmtu2}" ] || \ 2273 [ -n "$(${ns_a} ip -6 route list c 2170 [ -n "$(${ns_a} ip -6 route list cache)" ]; then 2274 err " can't flush cached exc 2171 err " can't flush cached exceptions" 2275 fail=1 2172 fail=1 2276 fi 2173 fi 2277 2174 2278 return ${fail} 2175 return ${fail} 2279 } 2176 } 2280 2177 2281 test_pmtu_ipvX_route_change() { 2178 test_pmtu_ipvX_route_change() { 2282 family=${1} 2179 family=${1} 2283 2180 2284 setup namespaces routing || return 2 2181 setup namespaces routing || return 2 2285 trace "${ns_a}" veth_A-R1 "${ns_r 2182 trace "${ns_a}" veth_A-R1 "${ns_r1}" veth_R1-A \ 2286 "${ns_r1}" veth_R1-B "${ns_b 2183 "${ns_r1}" veth_R1-B "${ns_b}" veth_B-R1 \ 2287 "${ns_a}" veth_A-R2 "${ns_r 2184 "${ns_a}" veth_A-R2 "${ns_r2}" veth_R2-A \ 2288 "${ns_r2}" veth_R2-B "${ns_b 2185 "${ns_r2}" veth_R2-B "${ns_b}" veth_B-R2 2289 2186 2290 if [ ${family} -eq 4 ]; then 2187 if [ ${family} -eq 4 ]; then 2291 ping=ping 2188 ping=ping 2292 dst1="${prefix4}.${b_r1}.1" 2189 dst1="${prefix4}.${b_r1}.1" 2293 dst2="${prefix4}.${b_r2}.1" 2190 dst2="${prefix4}.${b_r2}.1" 2294 gw="${prefix4}.${a_r1}.2" 2191 gw="${prefix4}.${a_r1}.2" 2295 else 2192 else 2296 ping=${ping6} 2193 ping=${ping6} 2297 dst1="${prefix6}:${b_r1}::1" 2194 dst1="${prefix6}:${b_r1}::1" 2298 dst2="${prefix6}:${b_r2}::1" 2195 dst2="${prefix6}:${b_r2}::1" 2299 gw="${prefix6}:${a_r1}::2" 2196 gw="${prefix6}:${a_r1}::2" 2300 fi 2197 fi 2301 2198 2302 # Set up initial MTU values 2199 # Set up initial MTU values 2303 mtu "${ns_a}" veth_A-R1 2000 2200 mtu "${ns_a}" veth_A-R1 2000 2304 mtu "${ns_r1}" veth_R1-A 2000 2201 mtu "${ns_r1}" veth_R1-A 2000 2305 mtu "${ns_r1}" veth_R1-B 1400 2202 mtu "${ns_r1}" veth_R1-B 1400 2306 mtu "${ns_b}" veth_B-R1 1400 2203 mtu "${ns_b}" veth_B-R1 1400 2307 2204 2308 mtu "${ns_a}" veth_A-R2 2000 2205 mtu "${ns_a}" veth_A-R2 2000 2309 mtu "${ns_r2}" veth_R2-A 2000 2206 mtu "${ns_r2}" veth_R2-A 2000 2310 mtu "${ns_r2}" veth_R2-B 1500 2207 mtu "${ns_r2}" veth_R2-B 1500 2311 mtu "${ns_b}" veth_B-R2 1500 2208 mtu "${ns_b}" veth_B-R2 1500 2312 2209 2313 # Create route exceptions 2210 # Create route exceptions 2314 run_cmd ${ns_a} ${ping} -q -M want -i 2211 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s 1800 ${dst1} 2315 run_cmd ${ns_a} ${ping} -q -M want -i 2212 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s 1800 ${dst2} 2316 2213 2317 # Check that exceptions have been cre 2214 # Check that exceptions have been created with the correct PMTU 2318 pmtu_1="$(route_get_dst_pmtu_from_exc 2215 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst1})" 2319 check_pmtu_value "1400" "${pmtu_1}" " 2216 check_pmtu_value "1400" "${pmtu_1}" "exceeding MTU" || return 1 2320 pmtu_2="$(route_get_dst_pmtu_from_exc 2217 pmtu_2="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst2})" 2321 check_pmtu_value "1500" "${pmtu_2}" " 2218 check_pmtu_value "1500" "${pmtu_2}" "exceeding MTU" || return 1 2322 2219 2323 # Replace the route from A to R1 2220 # Replace the route from A to R1 2324 run_cmd ${ns_a} ip route change defau 2221 run_cmd ${ns_a} ip route change default via ${gw} 2325 2222 2326 # Delete the device in A 2223 # Delete the device in A 2327 run_cmd ${ns_a} ip link del "veth_A-R 2224 run_cmd ${ns_a} ip link del "veth_A-R1" 2328 } 2225 } 2329 2226 2330 test_pmtu_ipv4_route_change() { 2227 test_pmtu_ipv4_route_change() { 2331 test_pmtu_ipvX_route_change 4 2228 test_pmtu_ipvX_route_change 4 2332 } 2229 } 2333 2230 2334 test_pmtu_ipv6_route_change() { 2231 test_pmtu_ipv6_route_change() { 2335 test_pmtu_ipvX_route_change 6 2232 test_pmtu_ipvX_route_change 6 2336 } 2233 } 2337 2234 2338 usage() { 2235 usage() { 2339 echo 2236 echo 2340 echo "$0 [OPTIONS] [TEST]..." 2237 echo "$0 [OPTIONS] [TEST]..." 2341 echo "If no TEST argument is given, a 2238 echo "If no TEST argument is given, all tests will be run." 2342 echo 2239 echo 2343 echo "Options" 2240 echo "Options" 2344 echo " --trace: capture traffic to T 2241 echo " --trace: capture traffic to TEST_INTERFACE.pcap" 2345 echo 2242 echo 2346 echo "Available tests${tests}" 2243 echo "Available tests${tests}" 2347 exit 1 2244 exit 1 2348 } 2245 } 2349 2246 2350 ############################################# 2247 ################################################################################ 2351 # 2248 # 2352 exitcode=0 2249 exitcode=0 2353 desc=0 2250 desc=0 2354 all_skipped=true 2251 all_skipped=true 2355 2252 2356 while getopts :ptv o 2253 while getopts :ptv o 2357 do 2254 do 2358 case $o in 2255 case $o in 2359 p) PAUSE_ON_FAIL=yes;; 2256 p) PAUSE_ON_FAIL=yes;; 2360 v) VERBOSE=1;; 2257 v) VERBOSE=1;; 2361 t) if which tcpdump > /dev/null 2>&1; 2258 t) if which tcpdump > /dev/null 2>&1; then 2362 TRACING=1 2259 TRACING=1 2363 else 2260 else 2364 echo "=== tcpdump not availab 2261 echo "=== tcpdump not available, tracing disabled" 2365 fi 2262 fi 2366 ;; 2263 ;; 2367 *) usage;; 2264 *) usage;; 2368 esac 2265 esac 2369 done 2266 done 2370 shift $(($OPTIND-1)) 2267 shift $(($OPTIND-1)) 2371 2268 2372 IFS=" 2269 IFS=" 2373 " 2270 " 2374 2271 2375 for arg do 2272 for arg do 2376 # Check first that all requested test 2273 # Check first that all requested tests are available before running any 2377 command -v > /dev/null "test_${arg}" 2274 command -v > /dev/null "test_${arg}" || { echo "=== Test ${arg} not found"; usage; } 2378 done 2275 done 2379 2276 2380 trap cleanup EXIT 2277 trap cleanup EXIT 2381 2278 2382 # start clean 2279 # start clean 2383 cleanup 2280 cleanup 2384 2281 2385 HAVE_NH=no 2282 HAVE_NH=no 2386 ip nexthop ls >/dev/null 2>&1 2283 ip nexthop ls >/dev/null 2>&1 2387 [ $? -eq 0 ] && HAVE_NH=yes 2284 [ $? -eq 0 ] && HAVE_NH=yes 2388 2285 2389 name="" 2286 name="" 2390 desc="" 2287 desc="" 2391 rerun_nh=0 2288 rerun_nh=0 2392 for t in ${tests}; do 2289 for t in ${tests}; do 2393 [ "${name}" = "" ] && name="${t} 2290 [ "${name}" = "" ] && name="${t}" && continue 2394 [ "${desc}" = "" ] && desc="${t} 2291 [ "${desc}" = "" ] && desc="${t}" && continue 2395 2292 2396 if [ "${HAVE_NH}" = "yes" ]; then 2293 if [ "${HAVE_NH}" = "yes" ]; then 2397 rerun_nh="${t}" 2294 rerun_nh="${t}" 2398 fi 2295 fi 2399 2296 2400 run_this=1 2297 run_this=1 2401 for arg do 2298 for arg do 2402 [ "${arg}" != "${arg#--*}" ] 2299 [ "${arg}" != "${arg#--*}" ] && continue 2403 [ "${arg}" = "${name}" ] && r 2300 [ "${arg}" = "${name}" ] && run_this=1 && break 2404 run_this=0 2301 run_this=0 2405 done 2302 done 2406 if [ $run_this -eq 1 ]; then 2303 if [ $run_this -eq 1 ]; then 2407 run_test "${name}" "${desc}" 2304 run_test "${name}" "${desc}" 2408 # if test was skipped no need 2305 # if test was skipped no need to retry with nexthop objects 2409 [ $? -eq $ksft_skip ] && reru 2306 [ $? -eq $ksft_skip ] && rerun_nh=0 2410 2307 2411 if [ "${rerun_nh}" = "1" ]; t 2308 if [ "${rerun_nh}" = "1" ]; then 2412 run_test_nh "${name}" 2309 run_test_nh "${name}" "${desc}" 2413 fi 2310 fi 2414 fi 2311 fi 2415 name="" 2312 name="" 2416 desc="" 2313 desc="" 2417 rerun_nh=0 2314 rerun_nh=0 2418 done 2315 done 2419 2316 2420 exit ${exitcode} 2317 exit ${exitcode}
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.