Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | #!/bin/bash # SPDX-License-Identifier: GPL-2.0 # # Test that policers shared by different tc filters are correctly reference # counted by observing policers' occupancy via devlink-resource. lib_dir=$(dirname $0)/../../../net/forwarding ALL_TESTS=" tc_police_occ_test " NUM_NETIFS=2 source $lib_dir/lib.sh source $lib_dir/devlink_lib.sh h1_create() { simple_if_init $h1 } h1_destroy() { simple_if_fini $h1 } switch_create() { simple_if_init $swp1 tc qdisc add dev $swp1 clsact } switch_destroy() { tc qdisc del dev $swp1 clsact simple_if_fini $swp1 } setup_prepare() { h1=${NETIFS[p1]} swp1=${NETIFS[p2]} vrf_prepare h1_create switch_create } cleanup() { pre_cleanup switch_destroy h1_destroy vrf_cleanup } tc_police_occ_get() { devlink_resource_occ_get global_policers single_rate_policers } tc_police_occ_test() { RET=0 local occ=$(tc_police_occ_get) tc filter add dev $swp1 ingress pref 1 handle 101 proto ip \ flower skip_sw \ action police rate 100mbit burst 100k conform-exceed drop/ok (( occ + 1 == $(tc_police_occ_get) )) check_err $? "Got occupancy $(tc_police_occ_get), expected $((occ + 1))" tc filter del dev $swp1 ingress pref 1 handle 101 flower (( occ == $(tc_police_occ_get) )) check_err $? "Got occupancy $(tc_police_occ_get), expected $occ" tc filter add dev $swp1 ingress pref 1 handle 101 proto ip \ flower skip_sw \ action police rate 100mbit burst 100k conform-exceed drop/ok \ index 10 tc filter add dev $swp1 ingress pref 2 handle 102 proto ip \ flower skip_sw action police index 10 (( occ + 1 == $(tc_police_occ_get) )) check_err $? "Got occupancy $(tc_police_occ_get), expected $((occ + 1))" tc filter del dev $swp1 ingress pref 2 handle 102 flower (( occ + 1 == $(tc_police_occ_get) )) check_err $? "Got occupancy $(tc_police_occ_get), expected $((occ + 1))" tc filter del dev $swp1 ingress pref 1 handle 101 flower (( occ == $(tc_police_occ_get) )) check_err $? "Got occupancy $(tc_police_occ_get), expected $occ" log_test "tc police occupancy" } trap cleanup EXIT setup_prepare setup_wait tests_run exit $EXIT_STATUS |