RDMA/rxe: Add testcase for net namespace rxe

Add 4 testcases for rxe with net namespace.

Reviewed-by: David Ahern <dsahern@kernel.org>
Signed-off-by: Zhu Yanjun <yanjun.zhu@linux.dev>
Link: https://patch.msgid.link/20260313023058.13020-5-yanjun.zhu@linux.dev
Signed-off-by: Leon Romanovsky <leon@kernel.org>
This commit is contained in:
Zhu Yanjun
2026-03-12 19:30:58 -07:00
committed by Leon Romanovsky
parent f1327abd6a
commit e01027cab3
8 changed files with 300 additions and 0 deletions

View File

@@ -12555,6 +12555,7 @@ F: include/uapi/linux/if_infiniband.h
F: include/uapi/rdma/
F: samples/bpf/ibumad_kern.c
F: samples/bpf/ibumad_user.c
F: tools/testing/selftests/rdma/
INGENIC JZ4780 NAND DRIVER
M: Harvey Hunt <harveyhuntnexus@gmail.com>
@@ -24503,6 +24504,7 @@ L: linux-rdma@vger.kernel.org
S: Supported
F: drivers/infiniband/sw/rxe/
F: include/uapi/rdma/rdma_user_rxe.h
F: tools/testing/selftests/rdma/rxe*
SOFTLOGIC 6x10 MPEG CODEC
M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>

View File

@@ -94,6 +94,7 @@ TARGETS += proc
TARGETS += pstore
TARGETS += ptrace
TARGETS += openat2
TARGETS += rdma
TARGETS += resctrl
TARGETS += riscv
TARGETS += rlimits

View File

@@ -0,0 +1,7 @@
# SPDX-License-Identifier: GPL-2.0
TEST_PROGS := rxe_rping_between_netns.sh \
rxe_ipv6.sh \
rxe_socket_with_netns.sh \
rxe_test_NETDEV_UNREGISTER.sh
include ../lib.mk

View File

@@ -0,0 +1,3 @@
CONFIG_TUN
CONFIG_VETH
CONFIG_RDMA_RXE

View File

@@ -0,0 +1,63 @@
#!/bin/bash
# Configuration
NS_NAME="net6"
VETH_HOST="veth0"
VETH_NS="veth1"
RXE_NAME="rxe6"
PORT=4791
IP6_ADDR="2001:db8::1/64"
exec > /dev/null
# Cleanup function to run on exit (even on failure)
cleanup() {
ip netns del "$NS_NAME" 2>/dev/null
modprobe -r rdma_rxe 2>/dev/null
echo "Done."
}
trap cleanup EXIT
# 1. Prerequisites check
for mod in tun veth rdma_rxe; do
if ! modinfo "$mod" >/dev/null 2>&1; then
echo "Error: Kernel module '$mod' not found."
exit 1
fi
done
modprobe rdma_rxe
# 2. Setup Namespace and Networking
echo "Setting up IPv6 network namespace..."
ip netns add "$NS_NAME"
ip link add "$VETH_HOST" type veth peer name "$VETH_NS"
ip link set "$VETH_NS" netns "$NS_NAME"
ip netns exec "$NS_NAME" ip addr add "$IP6_ADDR" dev "$VETH_NS"
ip netns exec "$NS_NAME" ip link set "$VETH_NS" up
ip link set "$VETH_HOST" up
# 3. Add RDMA Link
echo "Adding RDMA RXE link..."
if ! ip netns exec "$NS_NAME" rdma link add "$RXE_NAME" type rxe netdev "$VETH_NS"; then
echo "Error: Failed to create RXE link."
exit 1
fi
# 4. Verification: Port should be listening
# Using -H to skip headers and -q for quiet exit codes
if ! ip netns exec "$NS_NAME" ss -Hul6n sport = :$PORT | grep -q ":$PORT"; then
echo "Error: UDP port $PORT is NOT listening after link creation."
exit 1
fi
echo "Verified: Port $PORT is active."
# 5. Removal and Verification
echo "Deleting RDMA link..."
ip netns exec "$NS_NAME" rdma link del "$RXE_NAME"
if ip netns exec "$NS_NAME" ss -Hul6n sport = :$PORT | grep -q ":$PORT"; then
echo "Error: UDP port $PORT still active after link deletion."
exit 1
fi
echo "Verified: Port $PORT closed successfully."

View File

@@ -0,0 +1,85 @@
#!/bin/bash
# Configuration
NS="test1"
VETH_A="veth-a"
VETH_B="veth-b"
IP_A="1.1.1.1"
IP_B="1.1.1.2"
PORT=4791
exec > /dev/null
# --- Cleanup Routine ---
cleanup() {
echo "Cleaning up resources..."
rdma link del rxe1 2>/dev/null
ip netns exec "$NS" rdma link del rxe0 2>/dev/null
ip link delete "$VETH_B" 2>/dev/null
ip netns del "$NS" 2>/dev/null
modprobe -r rdma_rxe 2>/dev/null
}
trap cleanup EXIT
# --- Prerequisite Checks ---
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
fi
modprobe rdma_rxe || { echo "Failed to load rdma_rxe"; exit 1; }
# --- Setup Network Topology ---
echo "Setting up network namespace and veth pair..."
ip netns add "$NS"
ip link add "$VETH_A" type veth peer name "$VETH_B"
ip link set "$VETH_A" netns "$NS"
# Configure Namespace side (test1)
ip netns exec "$NS" ip addr add "$IP_A/24" dev "$VETH_A"
ip netns exec "$NS" ip link set "$VETH_A" up
ip netns exec "$NS" ip link set lo up
# Configure Host side
ip addr add "$IP_B/24" dev "$VETH_B"
ip link set "$VETH_B" up
# --- RXE Link Creation ---
echo "Creating RDMA links..."
ip netns exec "$NS" rdma link add rxe0 type rxe netdev "$VETH_A"
rdma link add rxe1 type rxe netdev "$VETH_B"
# Verify UDP 4791 is listening
check_port() {
local target=$1 # "host" or "ns"
if [ "$target" == "ns" ]; then
ip netns exec "$NS" ss -Huln sport == :$PORT | grep -q ":$PORT"
else
ss -Huln sport == :$PORT | grep -q ":$PORT"
fi
}
check_port "ns" || { echo "Error: RXE port not listening in namespace"; exit 1; }
check_port "host" || { echo "Error: RXE port not listening on host"; exit 1; }
# --- Connectivity Test ---
echo "Testing connectivity with rping..."
ping -c 2 -W 1 "$IP_A" > /dev/null || { echo "Ping failed"; exit 1; }
# Start rping server in background
ip netns exec "$NS" rping -s -a "$IP_A" -v > /dev/null 2>&1 &
RPING_PID=$!
sleep 1 # Allow server to bind
# Run rping client
rping -c -a "$IP_A" -d -v -C 3
RESULT=$?
kill $RPING_PID 2>/dev/null
if [ $RESULT -eq 0 ]; then
echo "SUCCESS: RDMA traffic verified."
else
echo "FAILURE: rping failed."
exit 1
fi

View File

@@ -0,0 +1,76 @@
#!/bin/bash
# Configuration
PORT=4791
MODS=("tun" "rdma_rxe")
exec > /dev/null
# --- Helper: Cleanup Routine ---
cleanup() {
echo "Cleaning up resources..."
rdma link del rxe1 2>/dev/null
rdma link del rxe0 2>/dev/null
ip link del tun0 2>/dev/null
ip link del tun1 2>/dev/null
for m in "${MODS[@]}"; do modprobe -r "$m" 2>/dev/null; done
}
# Ensure cleanup runs on script exit or interrupt
trap cleanup EXIT
# --- Phase 1: Environment Check ---
if [[ $EUID -ne 0 ]]; then
echo "Error: This script must be run as root."
exit 1
fi
for m in "${MODS[@]}"; do
modprobe "$m" || { echo "Error: Failed to load $m"; exit 1; }
done
# --- Phase 2: Create Interfaces & RXE Links ---
echo "Creating tun0 (1.1.1.1) and rxe0..."
ip tuntap add mode tun tun0
ip addr add 1.1.1.1/24 dev tun0
ip link set tun0 up
rdma link add rxe0 type rxe netdev tun0
# Verify port 4791 is listening
if ! ss -Huln sport = :$PORT | grep -q ":$PORT"; then
echo "Error: UDP port $PORT not found after rxe0 creation"
exit 1
fi
echo "Creating tun1 (2.2.2.2) and rxe1..."
ip tuntap add mode tun tun1
ip addr add 2.2.2.2/24 dev tun1
ip link set tun1 up
rdma link add rxe1 type rxe netdev tun1
# Verify port 4791 is still listening
if ! ss -Huln sport = :$PORT | grep -q ":$PORT"; then
echo "Error: UDP port $PORT missing after rxe1 creation"
exit 1
fi
# --- Phase 3: Targeted Deletion ---
echo "Deleting rxe1..."
rdma link del rxe1
# Port should still be active because rxe0 is still alive
if ! ss -Huln sport = :$PORT | grep -q ":$PORT"; then
echo "Error: UDP port $PORT closed prematurely"
exit 1
fi
echo "Deleting rxe0..."
rdma link del rxe0
# Port should now be gone
if ss -Huln sport = :$PORT | grep -q ":$PORT"; then
echo "Error: UDP port $PORT still exists after all links deleted"
exit 1
fi
echo "Test passed successfully."

View File

@@ -0,0 +1,63 @@
#!/bin/bash
# Configuration
DEV_NAME="tun0"
RXE_NAME="rxe0"
RDMA_PORT=4791
exec > /dev/null
# --- Cleanup Routine ---
# Ensures environment is clean even if the script hits an error
cleanup() {
echo "Performing cleanup..."
rdma link del $RXE_NAME 2>/dev/null
ip link del $DEV_NAME 2>/dev/null
modprobe -r rdma_rxe 2>/dev/null
}
trap cleanup EXIT
# 1. Dependency Check
if ! modinfo rdma_rxe >/dev/null 2>&1; then
echo "Error: rdma_rxe module not found."
exit 1
fi
modprobe rdma_rxe
# 2. Setup TUN Device
echo "Creating $DEV_NAME..."
ip tuntap add mode tun "$DEV_NAME"
ip addr add 1.1.1.1/24 dev "$DEV_NAME"
ip link set "$DEV_NAME" up
# 3. Attach RXE Link
echo "Attaching RXE link $RXE_NAME to $DEV_NAME..."
rdma link add "$RXE_NAME" type rxe netdev "$DEV_NAME"
# 4. Verification: Port Check
# Use -H (no header) and -q (quiet) for cleaner scripting logic
if ! ss -Huln sport == :$RDMA_PORT | grep -q ":$RDMA_PORT"; then
echo "Error: UDP port $RDMA_PORT is not listening."
exit 1
fi
echo "Verified: RXE is listening on UDP $RDMA_PORT."
# 5. Trigger NETDEV_UNREGISTER
# We delete the underlying device without deleting the RDMA link first.
echo "Triggering NETDEV_UNREGISTER by deleting $DEV_NAME..."
ip link del "$DEV_NAME"
# 6. Final Verification
# The RXE link and the UDP port should be automatically cleaned up by the kernel.
if rdma link show "$RXE_NAME" 2>/dev/null; then
echo "Error: $RXE_NAME still exists after netdev removal."
exit 1
fi
if ss -Huln sport == :$RDMA_PORT | grep -q ":$RDMA_PORT"; then
echo "Error: UDP port $RDMA_PORT still listening after netdev removal."
exit 1
fi
echo "Success: NETDEV_UNREGISTER handled correctly."