Skip to content

Commit

Permalink
selftests: mptcp: join: add test-case for MPC attempt towards signl ep
Browse files Browse the repository at this point in the history
Explicitly verify that MPC connection attempts towards a port-based
signal endpoint fail with a reset.

Signed-off-by: Paolo Abeni <[email protected]>
  • Loading branch information
Paolo Abeni authored and intel-lab-lkp committed Oct 3, 2024
1 parent 04adcec commit cb335ab
Showing 1 changed file with 58 additions and 22 deletions.
80 changes: 58 additions & 22 deletions tools/testing/selftests/net/mptcp/mptcp_join.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ evts_ns2_pid=0
last_test_failed=0
last_test_skipped=0
last_test_ignored=1
cappid=""

declare -A all_tests
declare -a only_tests_ids
Expand Down Expand Up @@ -887,6 +888,34 @@ check_cestab()
fi
}

cond_start_capture()
{
if $capture; then
local capuser
if [ -z $SUDO_USER ] ; then
capuser=""
else
capuser="-Z $SUDO_USER"
fi

local capfile=$(printf "mp_join-%02u-%s.pcap" "$MPTCP_LIB_TEST_COUNTER" "${listener_ns}")

echo "Capturing traffic for test $MPTCP_LIB_TEST_COUNTER into $capfile"
ip netns exec $1 tcpdump -i any -s 65535 -B 32768 $capuser -w $capfile > "$capout" 2>&1 &
cappid=$!

sleep 1
fi
}

cond_stop_capture()
{
if $capture; then
sleep 1
kill $cappid
fi
}

do_transfer()
{
local listener_ns="$1"
Expand All @@ -896,7 +925,6 @@ do_transfer()
local connect_addr="$5"

local port=$((10000 + MPTCP_LIB_TEST_COUNTER - 1))
local cappid
local FAILING_LINKS=${FAILING_LINKS:-""}
local fastclose=${fastclose:-""}
local speed=${speed:-"fast"}
Expand All @@ -905,22 +933,7 @@ do_transfer()
:> "$sout"
:> "$capout"

if $capture; then
local capuser
if [ -z $SUDO_USER ] ; then
capuser=""
else
capuser="-Z $SUDO_USER"
fi

capfile=$(printf "mp_join-%02u-%s.pcap" "$MPTCP_LIB_TEST_COUNTER" "${listener_ns}")

echo "Capturing traffic for test $MPTCP_LIB_TEST_COUNTER into $capfile"
ip netns exec ${listener_ns} tcpdump -i any -s 65535 -B 32768 $capuser -w $capfile > "$capout" 2>&1 &
cappid=$!

sleep 1
fi
cond_start_capture ${listener_ns}

NSTAT_HISTORY=/tmp/${listener_ns}.nstat ip netns exec ${listener_ns} \
nstat -n
Expand Down Expand Up @@ -1007,11 +1020,6 @@ do_transfer()
wait $spid
local rets=$?

if $capture; then
sleep 1
kill $cappid
fi

NSTAT_HISTORY=/tmp/${listener_ns}.nstat ip netns exec ${listener_ns} \
nstat | grep Tcp > /tmp/${listener_ns}.out
NSTAT_HISTORY=/tmp/${connector_ns}.nstat ip netns exec ${connector_ns} \
Expand Down Expand Up @@ -2160,6 +2168,34 @@ signal_address_tests()
chk_add_nr 3 3
fi
fi

if reset "port-based signal endpoint must not accept mpc"; then
local port=$((10000 + MPTCP_LIB_TEST_COUNTER - 1))

cond_start_capture ${ns1}

pm_nl_add_endpoint ${ns1} 10.0.2.1 flags signal port ${port}
mptcp_lib_wait_local_port_listen ${ns1} ${port}

timeout 1 ip netns exec ${ns2} \
./mptcp_connect -t ${timeout_poll} -p $port -s MPTCP 10.0.2.1 >/dev/null 2>&1
local ret=$?

cond_stop_capture

if [ ${ret} = 124 ]; then
fail_test "timeout on connect"
elif [ ! ${ret} ]; then
fail_test "unexpected successful connect"
else
local count=$(mptcp_lib_get_counter ${ns1} "MPTcpExtMPCAttemptOnEndpoint")
if [ "${count}" != 1 ]; then
fail_test "got ${count} MPC attempts on port-based enpoint, expected 1"
else
print_ok
fi
fi
fi
}

link_failure_tests()
Expand Down

0 comments on commit cb335ab

Please sign in to comment.