~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/net/altnames.sh

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 #!/bin/bash
  2 # SPDX-License-Identifier: GPL-2.0
  3 
  4 lib_dir=$(dirname $0)/forwarding
  5 
  6 ALL_TESTS="altnames_test"
  7 NUM_NETIFS=0
  8 source $lib_dir/lib.sh
  9 
 10 DUMMY_DEV=dummytest
 11 SHORT_NAME=shortname
 12 LONG_NAME=someveryveryveryveryveryverylongname
 13 
 14 altnames_test()
 15 {
 16         RET=0
 17         local output
 18         local name
 19 
 20         ip link property add $DUMMY_DEV altname $SHORT_NAME
 21         check_err $? "Failed to add short alternative name"
 22 
 23         output=$(ip -j -p link show $SHORT_NAME)
 24         check_err $? "Failed to do link show with short alternative name"
 25 
 26         name=$(echo $output | jq -e -r ".[0].altnames[0]")
 27         check_err $? "Failed to get short alternative name from link show JSON"
 28 
 29         [ "$name" == "$SHORT_NAME" ]
 30         check_err $? "Got unexpected short alternative name from link show JSON"
 31 
 32         ip -j -p link show $DUMMY_DEV &>/dev/null
 33         check_err $? "Failed to do link show with original name"
 34 
 35         ip link property add $DUMMY_DEV altname $LONG_NAME
 36         check_err $? "Failed to add long alternative name"
 37 
 38         output=$(ip -j -p link show $LONG_NAME)
 39         check_err $? "Failed to do link show with long alternative name"
 40 
 41         name=$(echo $output | jq -e -r ".[0].altnames[1]")
 42         check_err $? "Failed to get long alternative name from link show JSON"
 43 
 44         [ "$name" == "$LONG_NAME" ]
 45         check_err $? "Got unexpected long alternative name from link show JSON"
 46 
 47         ip link property del $DUMMY_DEV altname $SHORT_NAME
 48         check_err $? "Failed to delete short alternative name"
 49 
 50         ip -j -p link show $SHORT_NAME &>/dev/null
 51         check_fail $? "Unexpected success while trying to do link show with deleted short alternative name"
 52 
 53         # long name is left there on purpose to be removed alongside the device
 54 
 55         log_test "altnames test"
 56 }
 57 
 58 setup_prepare()
 59 {
 60         ip link add name $DUMMY_DEV type dummy
 61 }
 62 
 63 cleanup()
 64 {
 65         pre_cleanup
 66         ip link del name $DUMMY_DEV
 67 }
 68 
 69 trap cleanup EXIT
 70 
 71 setup_prepare
 72 
 73 tests_run
 74 
 75 exit $EXIT_STATUS

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php