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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 | #!/bin/bash # SPDX-License-Identifier: GPL-2.0 # This test is for checking the A-TCAM and C-TCAM operation in Spectrum-2. # It tries to exercise as many code paths in the eRP state machine as # possible. lib_dir=$(dirname $0)/../../../../net/forwarding ALL_TESTS="single_mask_test identical_filters_test two_masks_test \ multiple_masks_test ctcam_edge_cases_test delta_simple_test \ delta_two_masks_one_key_test delta_simple_rehash_test \ bloom_simple_test bloom_complex_test bloom_delta_test" NUM_NETIFS=2 source $lib_dir/lib.sh source $lib_dir/tc_common.sh source $lib_dir/devlink_lib.sh tcflags="skip_hw" h1_create() { simple_if_init $h1 192.0.2.1/24 198.51.100.1/24 } h1_destroy() { simple_if_fini $h1 192.0.2.1/24 198.51.100.1/24 } h2_create() { simple_if_init $h2 192.0.2.2/24 198.51.100.2/24 tc qdisc add dev $h2 clsact } h2_destroy() { tc qdisc del dev $h2 clsact simple_if_fini $h2 192.0.2.2/24 198.51.100.2/24 } tp_record() { local tracepoint=$1 local cmd=$2 perf record -q -e $tracepoint $cmd return $? } tp_record_all() { local tracepoint=$1 local seconds=$2 perf record -a -q -e $tracepoint sleep $seconds return $? } __tp_hit_count() { local tracepoint=$1 local perf_output=`perf script -F trace:event,trace` return `echo $perf_output | grep "$tracepoint:" | wc -l` } tp_check_hits() { local tracepoint=$1 local count=$2 __tp_hit_count $tracepoint if [[ "$?" -ne "$count" ]]; then return 1 fi return 0 } tp_check_hits_any() { local tracepoint=$1 __tp_hit_count $tracepoint if [[ "$?" -eq "0" ]]; then return 1 fi return 0 } single_mask_test() { # When only a single mask is required, the device uses the master # mask and not the eRP table. Verify that under this mode the right # filter is matched RET=0 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \ $tcflags dst_ip 192.0.2.2 action drop $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 101 1 check_err $? "Single filter - did not match" tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \ $tcflags dst_ip 198.51.100.2 action drop $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 101 2 check_err $? "Two filters - did not match highest priority" $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 198.51.100.1 -B 198.51.100.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 102 1 check_err $? "Two filters - did not match lowest priority" tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 198.51.100.1 -B 198.51.100.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 102 2 check_err $? "Single filter - did not match after delete" tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower log_test "single mask test ($tcflags)" } identical_filters_test() { # When two filters that only differ in their priority are used, # one needs to be inserted into the C-TCAM. This test verifies # that filters are correctly spilled to C-TCAM and that the right # filter is matched RET=0 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \ $tcflags dst_ip 192.0.2.2 action drop tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \ $tcflags dst_ip 192.0.2.2 action drop $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 101 1 check_err $? "Did not match A-TCAM filter" tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 102 1 check_err $? "Did not match C-TCAM filter after A-TCAM delete" tc filter add dev $h2 ingress protocol ip pref 3 handle 103 flower \ $tcflags dst_ip 192.0.2.2 action drop $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 102 2 check_err $? "Did not match C-TCAM filter after A-TCAM add" tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 103 1 check_err $? "Did not match A-TCAM filter after C-TCAM delete" tc filter del dev $h2 ingress protocol ip pref 3 handle 103 flower log_test "identical filters test ($tcflags)" } two_masks_test() { # When more than one mask is required, the eRP table is used. This # test verifies that the eRP table is correctly allocated and used RET=0 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \ $tcflags dst_ip 192.0.2.2 action drop tc filter add dev $h2 ingress protocol ip pref 3 handle 103 flower \ $tcflags dst_ip 192.0.0.0/8 action drop $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 101 1 check_err $? "Two filters - did not match highest priority" tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 103 1 check_err $? "Single filter - did not match" tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \ $tcflags dst_ip 192.0.2.0/24 action drop $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 102 1 check_err $? "Two filters - did not match highest priority after add" tc filter del dev $h2 ingress protocol ip pref 3 handle 103 flower tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower log_test "two masks test ($tcflags)" } multiple_masks_test() { # The number of masks in a region is limited. Once the maximum # number of masks has been reached filters that require new # masks are spilled to the C-TCAM. This test verifies that # spillage is performed correctly and that the right filter is # matched if [[ "$tcflags" != "skip_sw" ]]; then return 0; fi local index RET=0 NUM_MASKS=32 NUM_ERPS=16 BASE_INDEX=100 for i in $(eval echo {1..$NUM_MASKS}); do index=$((BASE_INDEX - i)) if ((i > NUM_ERPS)); then exp_hits=1 err_msg="$i filters - C-TCAM spill did not happen when it was expected" else exp_hits=0 err_msg="$i filters - C-TCAM spill happened when it should not" fi tp_record "mlxsw:mlxsw_sp_acl_atcam_entry_add_ctcam_spill" \ "tc filter add dev $h2 ingress protocol ip pref $index \ handle $index \ flower $tcflags \ dst_ip 192.0.2.2/${i} src_ip 192.0.2.1/${i} \ action drop" tp_check_hits "mlxsw:mlxsw_sp_acl_atcam_entry_add_ctcam_spill" \ $exp_hits check_err $? "$err_msg" $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 \ -B 192.0.2.2 -t ip -q tc_check_packets "dev $h2 ingress" $index 1 check_err $? "$i filters - did not match highest priority (add)" done for i in $(eval echo {$NUM_MASKS..1}); do index=$((BASE_INDEX - i)) $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 \ -B 192.0.2.2 -t ip -q tc_check_packets "dev $h2 ingress" $index 2 check_err $? "$i filters - did not match highest priority (del)" tc filter del dev $h2 ingress protocol ip pref $index \ handle $index flower done log_test "multiple masks test ($tcflags)" } ctcam_two_atcam_masks_test() { RET=0 # First case: C-TCAM is disabled when there are two A-TCAM masks. # We push a filter into the C-TCAM by using two identical filters # as in identical_filters_test() # Filter goes into A-TCAM tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \ $tcflags dst_ip 192.0.2.2 action drop # Filter goes into C-TCAM tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \ $tcflags dst_ip 192.0.2.2 action drop # Filter goes into A-TCAM tc filter add dev $h2 ingress protocol ip pref 3 handle 103 flower \ $tcflags dst_ip 192.0.0.0/16 action drop $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 101 1 check_err $? "Did not match A-TCAM filter" # Delete both A-TCAM and C-TCAM filters and make sure the remaining # A-TCAM filter still works tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 103 1 check_err $? "Did not match A-TCAM filter" tc filter del dev $h2 ingress protocol ip pref 3 handle 103 flower log_test "ctcam with two atcam masks test ($tcflags)" } ctcam_one_atcam_mask_test() { RET=0 # Second case: C-TCAM is disabled when there is one A-TCAM mask. # The test is similar to identical_filters_test() # Filter goes into A-TCAM tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \ $tcflags dst_ip 192.0.2.2 action drop # Filter goes into C-TCAM tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \ $tcflags dst_ip 192.0.2.2 action drop $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 101 1 check_err $? "Did not match C-TCAM filter" tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 102 1 check_err $? "Did not match A-TCAM filter" tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower log_test "ctcam with one atcam mask test ($tcflags)" } ctcam_no_atcam_masks_test() { RET=0 # Third case: C-TCAM is disabled when there are no A-TCAM masks # This test exercises the code path that transitions the eRP table # to its initial state after deleting the last C-TCAM mask # Filter goes into A-TCAM tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \ $tcflags dst_ip 192.0.2.2 action drop # Filter goes into C-TCAM tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \ $tcflags dst_ip 192.0.2.2 action drop tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower log_test "ctcam with no atcam masks test ($tcflags)" } ctcam_edge_cases_test() { # When the C-TCAM is disabled after deleting the last C-TCAM # mask, we want to make sure the eRP state machine is put in # the correct state ctcam_two_atcam_masks_test ctcam_one_atcam_mask_test ctcam_no_atcam_masks_test } delta_simple_test() { # The first filter will create eRP, the second filter will fit into # the first eRP with delta. Remove the first rule then and check that # the eRP stays (referenced by the second filter). RET=0 if [[ "$tcflags" != "skip_sw" ]]; then return 0; fi tp_record "objagg:*" "tc filter add dev $h2 ingress protocol ip \ pref 1 handle 101 flower $tcflags dst_ip 192.0.0.0/24 \ action drop" tp_check_hits "objagg:objagg_obj_root_create" 1 check_err $? "eRP was not created" tp_record "objagg:*" "tc filter add dev $h2 ingress protocol ip \ pref 2 handle 102 flower $tcflags dst_ip 192.0.2.2 \ action drop" tp_check_hits "objagg:objagg_obj_root_create" 0 check_err $? "eRP was incorrectly created" tp_check_hits "objagg:objagg_obj_parent_assign" 1 check_err $? "delta was not created" $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 101 1 check_fail $? "Matched a wrong filter" tc_check_packets "dev $h2 ingress" 102 1 check_err $? "Did not match on correct filter" tp_record "objagg:*" "tc filter del dev $h2 ingress protocol ip \ pref 1 handle 101 flower" tp_check_hits "objagg:objagg_obj_root_destroy" 0 check_err $? "eRP was incorrectly destroyed" tp_check_hits "objagg:objagg_obj_parent_unassign" 0 check_err $? "delta was incorrectly destroyed" $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 102 2 check_err $? "Did not match on correct filter after the first was removed" tp_record "objagg:*" "tc filter del dev $h2 ingress protocol ip \ pref 2 handle 102 flower" tp_check_hits "objagg:objagg_obj_parent_unassign" 1 check_err $? "delta was not destroyed" tp_check_hits "objagg:objagg_obj_root_destroy" 1 check_err $? "eRP was not destroyed" log_test "delta simple test ($tcflags)" } delta_two_masks_one_key_test() { # If 2 keys are the same and only differ in mask in a way that # they belong under the same ERP (second is delta of the first), # there should be no C-TCAM spill. RET=0 if [[ "$tcflags" != "skip_sw" ]]; then return 0; fi tp_record "mlxsw:*" "tc filter add dev $h2 ingress protocol ip \ pref 1 handle 101 flower $tcflags dst_ip 192.0.2.0/24 \ action drop" tp_check_hits "mlxsw:mlxsw_sp_acl_atcam_entry_add_ctcam_spill" 0 check_err $? "incorrect C-TCAM spill while inserting the first rule" tp_record "mlxsw:*" "tc filter add dev $h2 ingress protocol ip \ pref 2 handle 102 flower $tcflags dst_ip 192.0.2.2 \ action drop" tp_check_hits "mlxsw:mlxsw_sp_acl_atcam_entry_add_ctcam_spill" 0 check_err $? "incorrect C-TCAM spill while inserting the second rule" $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 101 1 check_err $? "Did not match on correct filter" tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 102 1 check_err $? "Did not match on correct filter" tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower log_test "delta two masks one key test ($tcflags)" } delta_simple_rehash_test() { RET=0 if [[ "$tcflags" != "skip_sw" ]]; then return 0; fi devlink dev param set $DEVLINK_DEV \ name acl_region_rehash_interval cmode runtime value 0 check_err $? "Failed to set ACL region rehash interval" tp_record_all mlxsw:mlxsw_sp_acl_tcam_vregion_rehash 7 tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_rehash check_fail $? "Rehash trace was hit even when rehash should be disabled" devlink dev param set $DEVLINK_DEV \ name acl_region_rehash_interval cmode runtime value 3000 check_err $? "Failed to set ACL region rehash interval" sleep 1 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \ $tcflags dst_ip 192.0.1.0/25 action drop tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \ $tcflags dst_ip 192.0.2.2 action drop tc filter add dev $h2 ingress protocol ip pref 3 handle 103 flower \ $tcflags dst_ip 192.0.3.0/24 action drop $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 101 1 check_fail $? "Matched a wrong filter" tc_check_packets "dev $h2 ingress" 103 1 check_fail $? "Matched a wrong filter" tc_check_packets "dev $h2 ingress" 102 1 check_err $? "Did not match on correct filter" tp_record_all mlxsw:* 3 tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_rehash check_err $? "Rehash trace was not hit" tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_migrate check_err $? "Migrate trace was not hit" tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_migrate_end check_err $? "Migrate end trace was not hit" tp_record_all mlxsw:* 3 tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_rehash check_err $? "Rehash trace was not hit" tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_migrate check_fail $? "Migrate trace was hit when no migration should happen" tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_migrate_end check_fail $? "Migrate end trace was hit when no migration should happen" $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 101 1 check_fail $? "Matched a wrong filter after rehash" tc_check_packets "dev $h2 ingress" 103 1 check_fail $? "Matched a wrong filter after rehash" tc_check_packets "dev $h2 ingress" 102 2 check_err $? "Did not match on correct filter after rehash" tc filter del dev $h2 ingress protocol ip pref 3 handle 103 flower tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower log_test "delta simple rehash test ($tcflags)" } delta_simple_ipv6_rehash_test() { RET=0 if [[ "$tcflags" != "skip_sw" ]]; then return 0; fi devlink dev param set $DEVLINK_DEV \ name acl_region_rehash_interval cmode runtime value 0 check_err $? "Failed to set ACL region rehash interval" tp_record_all mlxsw:mlxsw_sp_acl_tcam_vregion_rehash 7 tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_rehash check_fail $? "Rehash trace was hit even when rehash should be disabled" devlink dev param set $DEVLINK_DEV \ name acl_region_rehash_interval cmode runtime value 3000 check_err $? "Failed to set ACL region rehash interval" sleep 1 tc filter add dev $h2 ingress protocol ipv6 pref 1 handle 101 flower \ $tcflags dst_ip 2001:db8:1::0/121 action drop tc filter add dev $h2 ingress protocol ipv6 pref 2 handle 102 flower \ $tcflags dst_ip 2001:db8:2::2 action drop tc filter add dev $h2 ingress protocol ipv6 pref 3 handle 103 flower \ $tcflags dst_ip 2001:db8:3::0/120 action drop $MZ $h1 -6 -c 1 -p 64 -a $h1mac -b $h2mac \ -A 2001:db8:2::1 -B 2001:db8:2::2 -t udp -q tc_check_packets "dev $h2 ingress" 101 1 check_fail $? "Matched a wrong filter" tc_check_packets "dev $h2 ingress" 103 1 check_fail $? "Matched a wrong filter" tc_check_packets "dev $h2 ingress" 102 1 check_err $? "Did not match on correct filter" tp_record_all mlxsw:* 3 tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_rehash check_err $? "Rehash trace was not hit" tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_migrate check_err $? "Migrate trace was not hit" tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_migrate_end check_err $? "Migrate end trace was not hit" tp_record_all mlxsw:* 3 tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_rehash check_err $? "Rehash trace was not hit" tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_migrate check_fail $? "Migrate trace was hit when no migration should happen" tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_migrate_end check_fail $? "Migrate end trace was hit when no migration should happen" $MZ $h1 -6 -c 1 -p 64 -a $h1mac -b $h2mac \ -A 2001:db8:2::1 -B 2001:db8:2::2 -t udp -q tc_check_packets "dev $h2 ingress" 101 1 check_fail $? "Matched a wrong filter after rehash" tc_check_packets "dev $h2 ingress" 103 1 check_fail $? "Matched a wrong filter after rehash" tc_check_packets "dev $h2 ingress" 102 2 check_err $? "Did not match on correct filter after rehash" tc filter del dev $h2 ingress protocol ipv6 pref 3 handle 103 flower tc filter del dev $h2 ingress protocol ipv6 pref 2 handle 102 flower tc filter del dev $h2 ingress protocol ipv6 pref 1 handle 101 flower log_test "delta simple IPv6 rehash test ($tcflags)" } TEST_RULE_BASE=256 declare -a test_rules_inserted test_rule_add() { local iface=$1 local tcflags=$2 local index=$3 if ! [ ${test_rules_inserted[$index]} ] ; then test_rules_inserted[$index]=false fi if ${test_rules_inserted[$index]} ; then return fi local number=$(( $index + $TEST_RULE_BASE )) printf -v hexnumber '%x' $number batch="${batch}filter add dev $iface ingress protocol ipv6 pref 1 \ handle $number flower $tcflags \ src_ip 2001:db8:1::$hexnumber action drop\n" test_rules_inserted[$index]=true } test_rule_del() { local iface=$1 local index=$2 if ! [ ${test_rules_inserted[$index]} ] ; then test_rules_inserted[$index]=false fi if ! ${test_rules_inserted[$index]} ; then return fi local number=$(( $index + $TEST_RULE_BASE )) printf -v hexnumber '%x' $number batch="${batch}filter del dev $iface ingress protocol ipv6 pref 1 \ handle $number flower\n" test_rules_inserted[$index]=false } test_rule_add_or_remove() { local iface=$1 local tcflags=$2 local index=$3 if ! [ ${test_rules_inserted[$index]} ] ; then test_rules_inserted[$index]=false fi if ${test_rules_inserted[$index]} ; then test_rule_del $iface $index else test_rule_add $iface $tcflags $index fi } test_rule_add_or_remove_random_batch() { local iface=$1 local tcflags=$2 local total_count=$3 local skip=0 local count=0 local MAXSKIP=20 local MAXCOUNT=20 for ((i=1;i<=total_count;i++)); do if (( $skip == 0 )) && (($count == 0)); then ((skip=$RANDOM % $MAXSKIP + 1)) ((count=$RANDOM % $MAXCOUNT + 1)) fi if (( $skip != 0 )); then ((skip-=1)) else ((count-=1)) test_rule_add_or_remove $iface $tcflags $i fi done } delta_massive_ipv6_rehash_test() { RET=0 if [[ "$tcflags" != "skip_sw" ]]; then return 0; fi devlink dev param set $DEVLINK_DEV \ name acl_region_rehash_interval cmode runtime value 0 check_err $? "Failed to set ACL region rehash interval" tp_record_all mlxsw:mlxsw_sp_acl_tcam_vregion_rehash 7 tp_check_hits_any mlxsw:mlxsw_sp_acl_tcam_vregion_rehash check_fail $? "Rehash trace was hit even when rehash should be disabled" RANDOM=4432897 declare batch="" test_rule_add_or_remove_random_batch $h2 $tcflags 5000 echo -n -e $batch | tc -b - declare batch="" test_rule_add_or_remove_random_batch $h2 $tcflags 5000 devlink dev param set $DEVLINK_DEV \ name acl_region_rehash_interval cmode runtime value 3000 check_err $? "Failed to set ACL region rehash interval" sleep 1 tc filter add dev $h2 ingress protocol ipv6 pref 1 handle 101 flower \ $tcflags dst_ip 2001:db8:1::0/121 action drop tc filter add dev $h2 ingress protocol ipv6 pref 2 handle 102 flower \ $tcflags dst_ip 2001:db8:2::2 action drop tc filter add dev $h2 ingress protocol ipv6 pref 3 handle 103 flower \ $tcflags dst_ip 2001:db8:3::0/120 action drop $MZ $h1 -6 -c 1 -p 64 -a $h1mac -b $h2mac \ -A 2001:db8:2::1 -B 2001:db8:2::2 -t udp -q tc_check_packets "dev $h2 ingress" 101 1 check_fail $? "Matched a wrong filter" tc_check_packets "dev $h2 ingress" 103 1 check_fail $? "Matched a wrong filter" tc_check_packets "dev $h2 ingress" 102 1 check_err $? "Did not match on correct filter" echo -n -e $batch | tc -b - devlink dev param set $DEVLINK_DEV \ name acl_region_rehash_interval cmode runtime value 0 check_err $? "Failed to set ACL region rehash interval" $MZ $h1 -6 -c 1 -p 64 -a $h1mac -b $h2mac \ -A 2001:db8:2::1 -B 2001:db8:2::2 -t udp -q tc_check_packets "dev $h2 ingress" 101 1 check_fail $? "Matched a wrong filter after rehash" tc_check_packets "dev $h2 ingress" 103 1 check_fail $? "Matched a wrong filter after rehash" tc_check_packets "dev $h2 ingress" 102 2 check_err $? "Did not match on correct filter after rehash" tc filter del dev $h2 ingress protocol ipv6 pref 3 handle 103 flower tc filter del dev $h2 ingress protocol ipv6 pref 2 handle 102 flower tc filter del dev $h2 ingress protocol ipv6 pref 1 handle 101 flower declare batch="" for i in {1..5000}; do test_rule_del $h2 $tcflags $i done echo -e $batch | tc -b - log_test "delta massive IPv6 rehash test ($tcflags)" } bloom_simple_test() { # Bloom filter requires that the eRP table is used. This test # verifies that Bloom filter is not harming correctness of ACLs. # First, make sure that eRP table is used and then set rule patterns # which are distant enough and will result skipping a lookup after # consulting the Bloom filter. Although some eRP lookups are skipped, # the correct filter should be hit. RET=0 tc filter add dev $h2 ingress protocol ip pref 1 handle 101 flower \ $tcflags dst_ip 192.0.2.2 action drop tc filter add dev $h2 ingress protocol ip pref 5 handle 104 flower \ $tcflags dst_ip 198.51.100.2 action drop tc filter add dev $h2 ingress protocol ip pref 3 handle 103 flower \ $tcflags dst_ip 192.0.0.0/8 action drop $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 101 1 check_err $? "Two filters - did not match highest priority" $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 198.51.100.1 -B 198.51.100.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 104 1 check_err $? "Single filter - did not match" tc filter del dev $h2 ingress protocol ip pref 1 handle 101 flower $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 103 1 check_err $? "Low prio filter - did not match" tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \ $tcflags dst_ip 198.0.0.0/8 action drop $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 198.51.100.1 -B 198.51.100.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 102 1 check_err $? "Two filters - did not match highest priority after add" tc filter del dev $h2 ingress protocol ip pref 3 handle 103 flower tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower tc filter del dev $h2 ingress protocol ip pref 5 handle 104 flower log_test "bloom simple test ($tcflags)" } bloom_complex_test() { # Bloom filter index computation is affected from region ID, eRP # ID and from the region key size. In order to excercise those parts # of the Bloom filter code, use a series of regions, each with a # different key size and send packet that should hit all of them. local index RET=0 NUM_CHAINS=4 BASE_INDEX=100 # Create chain with up to 2 key blocks (ip_proto only) tc chain add dev $h2 ingress chain 1 protocol ip flower \ ip_proto tcp &> /dev/null # Create chain with 2-4 key blocks (ip_proto, src MAC) tc chain add dev $h2 ingress chain 2 protocol ip flower \ ip_proto tcp \ src_mac 00:00:00:00:00:00/FF:FF:FF:FF:FF:FF &> /dev/null # Create chain with 4-8 key blocks (ip_proto, src & dst MAC, IPv4 dest) tc chain add dev $h2 ingress chain 3 protocol ip flower \ ip_proto tcp \ dst_mac 00:00:00:00:00:00/FF:FF:FF:FF:FF:FF \ src_mac 00:00:00:00:00:00/FF:FF:FF:FF:FF:FF \ dst_ip 0.0.0.0/32 &> /dev/null # Default chain contains all fields and therefore is 8-12 key blocks tc chain add dev $h2 ingress chain 4 # We need at least 2 rules in every region to have eRP table active # so create a dummy rule per chain using a different pattern for i in $(eval echo {0..$NUM_CHAINS}); do index=$((BASE_INDEX - 1 - i)) tc filter add dev $h2 ingress chain $i protocol ip \ pref 2 handle $index flower \ $tcflags ip_proto tcp action drop done # Add rules to test Bloom filter, each in a different chain index=$BASE_INDEX tc filter add dev $h2 ingress protocol ip \ pref 1 handle $((++index)) flower \ $tcflags dst_ip 192.0.0.0/16 action goto chain 1 tc filter add dev $h2 ingress chain 1 protocol ip \ pref 1 handle $((++index)) flower \ $tcflags action goto chain 2 tc filter add dev $h2 ingress chain 2 protocol ip \ pref 1 handle $((++index)) flower \ $tcflags src_mac $h1mac action goto chain 3 tc filter add dev $h2 ingress chain 3 protocol ip \ pref 1 handle $((++index)) flower \ $tcflags dst_ip 192.0.0.0/8 action goto chain 4 tc filter add dev $h2 ingress chain 4 protocol ip \ pref 1 handle $((++index)) flower \ $tcflags src_ip 192.0.2.0/24 action drop # Send a packet that is supposed to hit all chains $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.0.2.1 -B 192.0.2.2 \ -t ip -q for i in $(eval echo {0..$NUM_CHAINS}); do index=$((BASE_INDEX + i + 1)) tc_check_packets "dev $h2 ingress" $index 1 check_err $? "Did not match chain $i" done # Rules cleanup for i in $(eval echo {$NUM_CHAINS..0}); do index=$((BASE_INDEX - i - 1)) tc filter del dev $h2 ingress chain $i \ pref 2 handle $index flower index=$((BASE_INDEX + i + 1)) tc filter del dev $h2 ingress chain $i \ pref 1 handle $index flower done # Chains cleanup for i in $(eval echo {$NUM_CHAINS..1}); do tc chain del dev $h2 ingress chain $i done log_test "bloom complex test ($tcflags)" } bloom_delta_test() { # When multiple masks are used, the eRP table is activated. When # masks are close enough (delta) the masks reside on the same # eRP table. This test verifies that the eRP table is correctly # allocated and used in delta condition and that Bloom filter is # still functional with delta. RET=0 tc filter add dev $h2 ingress protocol ip pref 3 handle 103 flower \ $tcflags dst_ip 192.1.0.0/16 action drop $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.1.2.1 -B 192.1.2.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 103 1 check_err $? "Single filter - did not match" tc filter add dev $h2 ingress protocol ip pref 2 handle 102 flower \ $tcflags dst_ip 192.2.1.0/24 action drop $MZ $h1 -c 1 -p 64 -a $h1mac -b $h2mac -A 192.2.1.1 -B 192.2.1.2 \ -t ip -q tc_check_packets "dev $h2 ingress" 102 1 check_err $? "Delta filters - did not match second filter" tc filter del dev $h2 ingress protocol ip pref 3 handle 103 flower tc filter del dev $h2 ingress protocol ip pref 2 handle 102 flower log_test "bloom delta test ($tcflags)" } setup_prepare() { h1=${NETIFS[p1]} h2=${NETIFS[p2]} h1mac=$(mac_get $h1) h2mac=$(mac_get $h2) vrf_prepare h1_create h2_create } cleanup() { pre_cleanup h2_destroy h1_destroy vrf_cleanup } trap cleanup EXIT setup_prepare setup_wait tests_run if ! tc_offload_check; then check_err 1 "Could not test offloaded functionality" log_test "mlxsw-specific tests for tc flower" exit else tcflags="skip_sw" tests_run fi exit $EXIT_STATUS |