Use rump.ping6 instead of ping6 with rumphijack(3)

This commit is contained in:
ozaki-r 2015-08-07 00:50:12 +00:00
parent 96b5a23030
commit 7284c53128
5 changed files with 36 additions and 75 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: t_bridge.sh,v 1.10 2015/07/23 11:05:34 ozaki-r Exp $
# $NetBSD: t_bridge.sh,v 1.11 2015/08/07 00:50:12 ozaki-r Exp $
#
# Copyright (c) 2014 The NetBSD Foundation, Inc.
# All rights reserved.
@ -108,9 +108,7 @@ test_endpoint()
export RUMP_SERVER=${sock}
atf_check -s exit:0 -o match:shmif0 rump.ifconfig
if [ $mode = "ipv6" ]; then
export LD_PRELOAD=/usr/lib/librumphijack.so
atf_check -s exit:0 -o ignore ping6 -n -c 1 -X $TIMEOUT ${addr}
unset LD_PRELOAD
atf_check -s exit:0 -o ignore rump.ping6 -n -c 1 -X $TIMEOUT ${addr}
else
atf_check -s exit:0 -o ignore rump.ping -n -w $TIMEOUT -c 1 ${addr}
fi
@ -288,28 +286,22 @@ test_ping_success()
test_ping6_failure()
{
export LD_PRELOAD=/usr/lib/librumphijack.so
export RUMP_SERVER=$SOCK1
atf_check -s not-exit:0 -o ignore ping6 -q -n -c 1 -X $TIMEOUT $IP62
atf_check -s not-exit:0 -o ignore rump.ping6 -q -n -c 1 -X $TIMEOUT $IP62
export RUMP_SERVER=$SOCK3
atf_check -s not-exit:0 -o ignore ping6 -q -n -c 1 -X $TIMEOUT $IP61
unset LD_PRELOAD
atf_check -s not-exit:0 -o ignore rump.ping6 -q -n -c 1 -X $TIMEOUT $IP61
}
test_ping6_success()
{
export RUMP_SERVER=$SOCK1
rump.ifconfig -v shmif0
export LD_PRELOAD=/usr/lib/librumphijack.so
atf_check -s exit:0 -o ignore ping6 -q -n -c 1 -X $TIMEOUT $IP62
unset LD_PRELOAD
atf_check -s exit:0 -o ignore rump.ping6 -q -n -c 1 -X $TIMEOUT $IP62
rump.ifconfig -v shmif0
export RUMP_SERVER=$SOCK3
rump.ifconfig -v shmif0
export LD_PRELOAD=/usr/lib/librumphijack.so
atf_check -s exit:0 -o ignore ping6 -q -n -c 1 -X $TIMEOUT $IP61
unset LD_PRELOAD
atf_check -s exit:0 -o ignore rump.ping6 -q -n -c 1 -X $TIMEOUT $IP61
rump.ifconfig -v shmif0
}
@ -334,25 +326,21 @@ test_ping_member()
test_ping6_member()
{
export LD_PRELOAD=/usr/lib/librumphijack.so
export RUMP_SERVER=$SOCK1
rump.ifconfig -v shmif0
atf_check -s exit:0 -o ignore ping6 -q -n -X $TIMEOUT -c 1 $IP6BR1
atf_check -s exit:0 -o ignore rump.ping6 -q -n -X $TIMEOUT -c 1 $IP6BR1
rump.ifconfig -v shmif0
# Test for PR#48104
atf_check -s exit:0 -o ignore ping6 -q -n -X $TIMEOUT -c 1 $IP6BR2
atf_check -s exit:0 -o ignore rump.ping6 -q -n -X $TIMEOUT -c 1 $IP6BR2
rump.ifconfig -v shmif0
export RUMP_SERVER=$SOCK3
rump.ifconfig -v shmif0
# Test for PR#48104
atf_check -s exit:0 -o ignore ping6 -q -n -X $TIMEOUT -c 1 $IP6BR1
atf_check -s exit:0 -o ignore rump.ping6 -q -n -X $TIMEOUT -c 1 $IP6BR1
rump.ifconfig -v shmif0
atf_check -s exit:0 -o ignore ping6 -q -n -X $TIMEOUT -c 1 $IP6BR2
atf_check -s exit:0 -o ignore rump.ping6 -q -n -X $TIMEOUT -c 1 $IP6BR2
rump.ifconfig -v shmif0
unset LD_PRELOAD
}
get_number_of_caches()

View File

@ -1,4 +1,4 @@
# $NetBSD: t_mpls_fw6.sh,v 1.1 2015/05/27 16:40:33 kefren Exp $
# $NetBSD: t_mpls_fw6.sh,v 1.2 2015/08/07 00:50:12 ozaki-r Exp $
#
# Copyright (c) 2015 The NetBSD Foundation, Inc.
# All rights reserved.
@ -134,26 +134,22 @@ configservers()
doping()
{
export LD_PRELOAD=/usr/lib/librumphijack.so
export RUMPHIJACK="socket=inet6:inet"
export RUMP_SERVER=${RUMP_SERVER1}
atf_check -s exit:0 \
-o match:" bytes from fd00:1234::2, icmp_seq=" \
ping6 -n -o -X 2 fd00:1234::2
rump.ping6 -n -o -X 2 fd00:1234::2
export RUMP_SERVER=${RUMP_SERVER2}
atf_check -s exit:0 \
-o match:" bytes from fd00:1234:0:1::2, icmp_seq=" \
ping6 -n -o -X 2 fd00:1234:0:1::2
rump.ping6 -n -o -X 2 fd00:1234:0:1::2
export RUMP_SERVER=${RUMP_SERVER3}
atf_check -s exit:0 \
-o match:" bytes from fd00:1234:0:2::2, icmp_seq=" \
ping6 -n -o -X 2 fd00:1234:0:2::2
rump.ping6 -n -o -X 2 fd00:1234:0:2::2
export RUMP_SERVER=${RUMP_SERVER1}
atf_check -s exit:0 \
-o match:" bytes from fd00:1234:0:3::1, icmp_seq=" \
ping6 -n -o -X 2 fd00:1234:0:3::1
unset LD_PRELOAD
unset RUMPHIJACK
rump.ping6 -n -o -X 2 fd00:1234:0:3::1
unset RUMP_SERVER
}

View File

@ -1,4 +1,4 @@
# $NetBSD: t_mpls_fw64.sh,v 1.1 2015/05/27 18:13:14 kefren Exp $
# $NetBSD: t_mpls_fw64.sh,v 1.2 2015/08/07 00:50:12 ozaki-r Exp $
#
# Copyright (c) 2015 The NetBSD Foundation, Inc.
# All rights reserved.
@ -132,16 +132,14 @@ configservers()
doping()
{
export LD_PRELOAD=/usr/lib/librumphijack.so
export RUMPHIJACK="socket=inet6:inet"
export RUMP_SERVER=${RUMP_SERVER1}
atf_check -s exit:0 \
-o match:" bytes from fd00:1234::2, icmp_seq=" \
ping6 -n -o -X 2 fd00:1234::2
rump.ping6 -n -o -X 2 fd00:1234::2
export RUMP_SERVER=${RUMP_SERVER2}
atf_check -s exit:0 \
-o match:" bytes from fd00:1234:0:1::2, icmp_seq=" \
ping6 -n -o -X 2 fd00:1234:0:1::2
rump.ping6 -n -o -X 2 fd00:1234:0:1::2
export RUMP_SERVER=${RUMP_SERVER3}
atf_check -s exit:0 \
-o match:" bytes from 10.0.3.2: icmp_seq" \
@ -149,9 +147,7 @@ doping()
export RUMP_SERVER=${RUMP_SERVER1}
atf_check -s exit:0 \
-o match:" bytes from fd00:1234:0:3::1, icmp_seq=" \
ping6 -n -o -X 2 fd00:1234:0:3::1
unset LD_PRELOAD
unset RUMPHIJACK
rump.ping6 -n -o -X 2 fd00:1234:0:3::1
unset RUMP_SERVER
}

View File

@ -1,4 +1,4 @@
# $NetBSD: t_ndp.sh,v 1.2 2015/08/04 07:43:25 ozaki-r Exp $
# $NetBSD: t_ndp.sh,v 1.3 2015/08/07 00:50:12 ozaki-r Exp $
#
# Copyright (c) 2015 The NetBSD Foundation, Inc.
# All rights reserved.
@ -110,10 +110,7 @@ cache_expiration_body()
# Check if a cache is expired expectedly
#
export RUMP_SERVER=$SOCKSRC
#atf_check -s exit:0 -o ignore $HIJACKING ping6 -n -X $TIMEOUT -c 1 $IP6DST
export LD_PRELOAD=/usr/lib/librumphijack.so
atf_check -s exit:0 -o ignore ping6 -n -X $TIMEOUT -c 1 $IP6DST
unset LD_PRELOAD
atf_check -s exit:0 -o ignore rump.ping6 -n -X $TIMEOUT -c 1 $IP6DST
$DEBUG && rump.ndp -n -a
atf_check -s exit:0 -o match:'permanent' rump.ndp -n $IP6SRC
@ -161,9 +158,7 @@ command_body()
#atf_check -s exit:0 -o ignore rump.ndp -f ./list
#$DEBUG && rump.ndp -n -a
export LD_PRELOAD=/usr/lib/librumphijack.so
atf_check -s exit:0 -o ignore ping6 -n -X $TIMEOUT -c 1 $IP6DST
unset LD_PRELOAD
atf_check -s exit:0 -o ignore rump.ping6 -n -X $TIMEOUT -c 1 $IP6DST
atf_check -s exit:0 -o ignore rump.ndp -s fc00::11 b2:a0:20:00:00:11
atf_check -s exit:0 -o ignore rump.ndp -s fc00::12 b2:a0:20:00:00:12
@ -207,9 +202,7 @@ cache_overwriting_body()
atf_check -s not-exit:0 -e ignore rump.ndp -s $IP6SRC b2:a0:20:00:00:ff
$DEBUG && rump.ndp -n -a
export LD_PRELOAD=/usr/lib/librumphijack.so
atf_check -s exit:0 -o ignore ping6 -n -X $TIMEOUT -c 1 $IP6DST
unset LD_PRELOAD
atf_check -s exit:0 -o ignore rump.ping6 -n -X $TIMEOUT -c 1 $IP6DST
$DEBUG && rump.ndp -n -a
# Can overwrite a dynamic cache
atf_check -s exit:0 -o ignore rump.ndp -s $IP6DST b2:a0:20:00:00:00

View File

@ -1,4 +1,4 @@
# $NetBSD: t_forwarding.sh,v 1.5 2015/06/02 07:32:50 ozaki-r Exp $
# $NetBSD: t_forwarding.sh,v 1.6 2015/08/07 00:50:12 ozaki-r Exp $
#
# Copyright (c) 2015 The NetBSD Foundation, Inc.
# All rights reserved.
@ -94,9 +94,7 @@ test_endpoint()
export RUMP_SERVER=${sock}
atf_check -s exit:0 -o match:shmif0 rump.ifconfig
if [ $mode = "ipv6" ]; then
export LD_PRELOAD=/usr/lib/librumphijack.so
atf_check -s exit:0 -o ignore ping6 -n -c 1 -X $TIMEOUT ${addr}
unset LD_PRELOAD
atf_check -s exit:0 -o ignore rump.ping6 -n -c 1 -X $TIMEOUT ${addr}
else
atf_check -s exit:0 -o ignore rump.ping -n -w $TIMEOUT -c 1 ${addr}
fi
@ -178,10 +176,8 @@ test_setup6()
atf_check -s exit:0 -o match:shmif0 rump.ifconfig
atf_check -s exit:0 -o match:shmif1 rump.ifconfig
export LD_PRELOAD=/usr/lib/librumphijack.so
atf_check -s exit:0 -o ignore ping6 -n -c 1 -X $TIMEOUT ${IP6SRCGW}
atf_check -s exit:0 -o ignore ping6 -n -c 1 -X $TIMEOUT ${IP6DSTGW}
unset LD_PRELOAD
atf_check -s exit:0 -o ignore rump.ping6 -n -c 1 -X $TIMEOUT ${IP6SRCGW}
atf_check -s exit:0 -o ignore rump.ping6 -n -c 1 -X $TIMEOUT ${IP6DSTGW}
}
setup_forwarding()
@ -287,30 +283,24 @@ test_ttl()
test_ping6_failure()
{
export LD_PRELOAD=/usr/lib/librumphijack.so
export RUMP_SERVER=$SOCKSRC
atf_check -s not-exit:0 -o ignore ping6 -q -n -c 1 -X $TIMEOUT $IP6DST
atf_check -s not-exit:0 -o ignore rump.ping6 -q -n -c 1 -X $TIMEOUT $IP6DST
export RUMP_SERVER=$SOCKDST
atf_check -s not-exit:0 -o ignore ping6 -q -n -c 1 -X $TIMEOUT $IP6SRC
unset LD_PRELOAD
atf_check -s not-exit:0 -o ignore rump.ping6 -q -n -c 1 -X $TIMEOUT $IP6SRC
}
test_ping6_success()
{
export RUMP_SERVER=$SOCKSRC
$DEBUG && rump.ifconfig -v shmif0
export LD_PRELOAD=/usr/lib/librumphijack.so
atf_check -s exit:0 -o ignore ping6 -q -n -c 1 -X $TIMEOUT $IP6SRCGW
atf_check -s exit:0 -o ignore ping6 -q -n -c 1 -X $TIMEOUT $IP6DST
unset LD_PRELOAD
atf_check -s exit:0 -o ignore rump.ping6 -q -n -c 1 -X $TIMEOUT $IP6SRCGW
atf_check -s exit:0 -o ignore rump.ping6 -q -n -c 1 -X $TIMEOUT $IP6DST
$DEBUG && rump.ifconfig -v shmif0
export RUMP_SERVER=$SOCKDST
$DEBUG && rump.ifconfig -v shmif0
export LD_PRELOAD=/usr/lib/librumphijack.so
atf_check -s exit:0 -o ignore ping6 -q -n -c 1 -X $TIMEOUT $IP6DSTGW
atf_check -s exit:0 -o ignore ping6 -q -n -c 1 -X $TIMEOUT $IP6SRC
unset LD_PRELOAD
atf_check -s exit:0 -o ignore rump.ping6 -q -n -c 1 -X $TIMEOUT $IP6DSTGW
atf_check -s exit:0 -o ignore rump.ping6 -q -n -c 1 -X $TIMEOUT $IP6SRC
$DEBUG && rump.ifconfig -v shmif0
}
@ -318,12 +308,10 @@ test_hoplimit()
{
export RUMP_SERVER=$SOCKSRC
$DEBUG && rump.ifconfig -v shmif0
export LD_PRELOAD=/usr/lib/librumphijack.so
atf_check -s exit:0 -o ignore ping6 -q -n -c 1 -h 1 -X $TIMEOUT $IP6SRCGW
atf_check -s exit:0 -o ignore rump.ping6 -q -n -c 1 -h 1 -X $TIMEOUT $IP6SRCGW
atf_check -s not-exit:0 -o match:'Time to live exceeded' \
ping6 -v -n -c 1 -h 1 -X $TIMEOUT $IP6DST
atf_check -s exit:0 -o ignore ping6 -q -n -c 1 -h 2 -X $TIMEOUT $IP6DST
unset LD_PRELOAD
rump.ping6 -v -n -c 1 -h 1 -X $TIMEOUT $IP6DST
atf_check -s exit:0 -o ignore rump.ping6 -q -n -c 1 -h 2 -X $TIMEOUT $IP6DST
$DEBUG && rump.ifconfig -v shmif0
}