From: Hangbin Liu <hidden> Date: 2021-07-07 08:16:21
This patchset fixes 2 failures for selftests icmp_redirect.sh.
The first patch is for IPv6 redirecting tests. When disable option
CONFIG_IPV6_SUBTREES, there is not "from ::" info in ip route output.
So we should not check this key word.
The second patch is for testing "mtu exception plus redirect", which do
a PMTU update first and do redirect second. For topology like
(MTU 1300)
|----- R1_1 -------- R1_2 --------|
H1 ---| | ---- H2 (MTU 1500)
|----- R2_1 -------- R2_2 --------|
After redirecting to R2 patch, the PMTU info in R1 path should be cleard.
So we should not check PMTU info for test "mtu exception plus redirect".
After the fixes, all the test passed now
]# ./icmp_redirect.sh
###########################################################################
Legacy routing
###########################################################################
TEST: IPv4: redirect exception [ OK ]
TEST: IPv6: redirect exception [ OK ]
TEST: IPv4: redirect exception plus mtu [ OK ]
TEST: IPv6: redirect exception plus mtu [ OK ]
TEST: IPv4: routing reset [ OK ]
TEST: IPv6: routing reset [ OK ]
TEST: IPv4: mtu exception [ OK ]
TEST: IPv6: mtu exception [ OK ]
TEST: IPv4: mtu exception plus redirect [ OK ]
TEST: IPv6: mtu exception plus redirect [ OK ]
[...]
###########################################################################
Routing with nexthop objects and VRF
###########################################################################
TEST: IPv4: redirect exception [ OK ]
TEST: IPv6: redirect exception [ OK ]
TEST: IPv4: redirect exception plus mtu [ OK ]
TEST: IPv6: redirect exception plus mtu [ OK ]
TEST: IPv4: routing reset [ OK ]
TEST: IPv6: routing reset [ OK ]
TEST: IPv4: mtu exception [ OK ]
TEST: IPv6: mtu exception [ OK ]
TEST: IPv4: mtu exception plus redirect [ OK ]
TEST: IPv6: mtu exception plus redirect [ OK ]
Tests passed: 40
Tests failed: 0
Tests xfailed: 0
Hangbin Liu (2):
selftests: icmp_redirect: remove from checking for IPv6 route get
selftests: icmp_redirect: IPv6 PMTU info should be cleared after
redirect
tools/testing/selftests/net/icmp_redirect.sh | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
--
2.31.1
From: Hangbin Liu <hidden> Date: 2021-07-07 08:16:23
If the kernel doesn't enable option CONFIG_IPV6_SUBTREES, the RTA_SRC
info will not be exported to userspace in rt6_fill_node(). And ip cmd will
not print "from ::" to the route output. So remove this check.
Fixes: ec8105352869 ("selftests: Add redirect tests")
Signed-off-by: Hangbin Liu <redacted>
---
tools/testing/selftests/net/icmp_redirect.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -315,7 +315,7 @@ check_exception()if["$with_redirect"="yes"];thenip-netnsh1-6roget${H1_VRF_ARG}${H2_N2_IP6}|\-grep-q"${H2_N2_IP6} from :: via ${R2_LLADDR} dev br0.*${mtu}"+grep-q"${H2_N2_IP6} .*via ${R2_LLADDR} dev br0.*${mtu}"elif[-n"${mtu}"];thenip-netnsh1-6roget${H1_VRF_ARG}${H2_N2_IP6}|\grep-q"${mtu}"
From: Hangbin Liu <hidden> Date: 2021-07-07 08:16:27
After redirecting, it's already a new path. So the old PMTU info should
be cleared. The IPv6 test "mtu exception plus redirect" should only
has redirect info without old PMTU.
The IPv4 test can not be changed because of legacy.
Fixes: ec8105352869 ("selftests: Add redirect tests")
Signed-off-by: Hangbin Liu <redacted>
---
tools/testing/selftests/net/icmp_redirect.sh | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
@@ -313,9 +313,10 @@ check_exception()filog_test$?0"IPv4: ${desc}"-if["$with_redirect"="yes"];then+# No PMTU info for test "redirect" and "mtu exception plus redirect"+if["$with_redirect"="yes"]&&["$desc"!="redirect exception plus mtu"];thenip-netnsh1-6roget${H1_VRF_ARG}${H2_N2_IP6}|\-grep-q"${H2_N2_IP6} .*via ${R2_LLADDR} dev br0.*${mtu}"+grep-v"mtu"|grep-q"${H2_N2_IP6} .*via ${R2_LLADDR} dev br0"elif[-n"${mtu}"];thenip-netnsh1-6roget${H1_VRF_ARG}${H2_N2_IP6}|\grep-q"${mtu}"
From: David Ahern <hidden> Date: 2021-07-07 14:51:05
On 7/7/21 2:15 AM, Hangbin Liu wrote:
quoted hunk
If the kernel doesn't enable option CONFIG_IPV6_SUBTREES, the RTA_SRC
info will not be exported to userspace in rt6_fill_node(). And ip cmd will
not print "from ::" to the route output. So remove this check.
Fixes: ec8105352869 ("selftests: Add redirect tests")
Signed-off-by: Hangbin Liu <redacted>
---
tools/testing/selftests/net/icmp_redirect.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -315,7 +315,7 @@ check_exception()if["$with_redirect"="yes"];thenip-netnsh1-6roget${H1_VRF_ARG}${H2_N2_IP6}|\-grep-q"${H2_N2_IP6} from :: via ${R2_LLADDR} dev br0.*${mtu}"+grep-q"${H2_N2_IP6} .*via ${R2_LLADDR} dev br0.*${mtu}"elif[-n"${mtu}"];thenip-netnsh1-6roget${H1_VRF_ARG}${H2_N2_IP6}|\grep-q"${mtu}"
From: David Ahern <hidden> Date: 2021-07-07 14:51:34
On 7/7/21 2:15 AM, Hangbin Liu wrote:
quoted hunk
After redirecting, it's already a new path. So the old PMTU info should
be cleared. The IPv6 test "mtu exception plus redirect" should only
has redirect info without old PMTU.
The IPv4 test can not be changed because of legacy.
Fixes: ec8105352869 ("selftests: Add redirect tests")
Signed-off-by: Hangbin Liu <redacted>
---
tools/testing/selftests/net/icmp_redirect.sh | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
@@ -313,9 +313,10 @@ check_exception()filog_test$?0"IPv4: ${desc}"-if["$with_redirect"="yes"];then+# No PMTU info for test "redirect" and "mtu exception plus redirect"+if["$with_redirect"="yes"]&&["$desc"!="redirect exception plus mtu"];thenip-netnsh1-6roget${H1_VRF_ARG}${H2_N2_IP6}|\-grep-q"${H2_N2_IP6} .*via ${R2_LLADDR} dev br0.*${mtu}"+grep-v"mtu"|grep-q"${H2_N2_IP6} .*via ${R2_LLADDR} dev br0"elif[-n"${mtu}"];thenip-netnsh1-6roget${H1_VRF_ARG}${H2_N2_IP6}|\grep-q"${mtu}"
Hello:
This series was applied to netdev/net.git (refs/heads/master):
On Wed, 7 Jul 2021 16:15:28 +0800 you wrote:
This patchset fixes 2 failures for selftests icmp_redirect.sh.
The first patch is for IPv6 redirecting tests. When disable option
CONFIG_IPV6_SUBTREES, there is not "from ::" info in ip route output.
So we should not check this key word.
The second patch is for testing "mtu exception plus redirect", which do
a PMTU update first and do redirect second. For topology like
[...]