/
usr
/
src
/
linux-headers-5.15.0-181
/
tools
/
testing
/
selftests
/
bpf
/
/usr/src/linux-headers-5.15.0-181/tools/testing/selftests/bpf
mkdir
upload
Name
Size
Mode
Actions
benchs/
-
0755
rm
bpf_testmod/
-
0755
rm
ima_setup.sh
2515
0755
edit
dl
rm
Makefile
20073
0644
edit
dl
rm
Makefile.docs
2239
0644
edit
dl
rm
test_bpftool.sh
415
0755
edit
dl
rm
test_bpftool_build.sh
3707
0755
edit
dl
rm
test_bpftool_metadata.sh
1597
0755
edit
dl
rm
test_doc_build.sh
638
0755
edit
dl
rm
test_flow_dissector.sh
5243
0755
edit
dl
rm
test_ftrace.sh
701
0755
edit
dl
rm
test_kmod.sh
1318
0755
edit
dl
rm
test_lirc_mode2.sh
764
0755
edit
dl
rm
test_lwt_ip_encap.sh
14931
0755
edit
dl
rm
test_lwt_seg6local.sh
5808
0755
edit
dl
rm
test_skb_cgroup_id.sh
1349
0755
edit
dl
rm
test_sock_addr.sh
1105
0755
edit
dl
rm
test_tcp_check_syncookie.sh
1715
0755
edit
dl
rm
test_tc_edt.sh
2784
0755
edit
dl
rm
test_tc_tunnel.sh
7925
0755
edit
dl
rm
test_tunnel.sh
19320
0755
edit
dl
rm
test_xdping.sh
2077
0755
edit
dl
rm
test_xdp_meta.sh
1257
0755
edit
dl
rm
test_xdp_redirect.sh
1715
0755
edit
dl
rm
test_xdp_redirect_multi.sh
6321
0755
edit
dl
rm
test_xdp_veth.sh
3099
0755
edit
dl
rm
test_xdp_vlan.sh
5743
0755
edit
dl
rm
test_xdp_vlan_mode_generic.sh
186
0755
edit
dl
rm
test_xdp_vlan_mode_native.sh
180
0755
edit
dl
rm
test_xsk.sh
4430
0755
edit
dl
rm
vmtest.sh
9584
0755
edit
dl
rm
with_addr.sh
1296
0755
edit
dl
rm
with_tunnels.sh
693
0755
edit
dl
rm
xsk_prereqs.sh
1815
0755
edit
dl
rm
Edit:
/usr/src/linux-headers-5.15.0-181/tools/testing/selftests/bpf/test_xdping.sh
(2077B)
#!/bin/bash # SPDX-License-Identifier: GPL-2.0 # xdping tests # Here we setup and teardown configuration required to run # xdping, exercising its options. # # Setup is similar to test_tunnel tests but without the tunnel. # # Topology: # --------- # root namespace | tc_ns0 namespace # | # ---------- | ---------- # | veth1 | --------- | veth0 | # ---------- peer ---------- # # Device Configuration # -------------------- # Root namespace with BPF # Device names and addresses: # veth1 IP: 10.1.1.200 # xdp added to veth1, xdpings originate from here. # # Namespace tc_ns0 with BPF # Device names and addresses: # veth0 IPv4: 10.1.1.100 # For some tests xdping run in server mode here. # readonly TARGET_IP="10.1.1.100" readonly TARGET_NS="xdp_ns0" readonly LOCAL_IP="10.1.1.200" setup() { ip netns add $TARGET_NS ip link add veth0 type veth peer name veth1 ip link set veth0 netns $TARGET_NS ip netns exec $TARGET_NS ip addr add ${TARGET_IP}/24 dev veth0 ip addr add ${LOCAL_IP}/24 dev veth1 ip netns exec $TARGET_NS ip link set veth0 up ip link set veth1 up } cleanup() { set +e ip netns delete $TARGET_NS 2>/dev/null ip link del veth1 2>/dev/null if [[ $server_pid -ne 0 ]]; then kill -TERM $server_pid fi } test() { client_args="$1" server_args="$2" echo "Test client args '$client_args'; server args '$server_args'" server_pid=0 if [[ -n "$server_args" ]]; then ip netns exec $TARGET_NS ./xdping $server_args & server_pid=$! sleep 10 fi ./xdping $client_args $TARGET_IP if [[ $server_pid -ne 0 ]]; then kill -TERM $server_pid server_pid=0 fi echo "Test client args '$client_args'; server args '$server_args': PASS" } set -e server_pid=0 trap cleanup EXIT setup for server_args in "" "-I veth0 -s -S" ; do # client in skb mode client_args="-I veth1 -S" test "$client_args" "$server_args" # client with count of 10 RTT measurements. client_args="-I veth1 -S -c 10" test "$client_args" "$server_args" done echo "OK. All tests passed" exit 0
Save
cmd:
run