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 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
|
#!/bin/bash
# SPDX-License-Identifier: GPL-2.0
#
# This test is for checking the nexthop offload API. It makes use of netdevsim
# which registers a listener to the nexthop notification chain.
lib_dir=$(dirname $0)/../../../net/forwarding
ALL_TESTS="
nexthop_single_add_test
nexthop_single_add_err_test
nexthop_group_add_test
nexthop_group_add_err_test
nexthop_res_group_add_test
nexthop_res_group_add_err_test
nexthop_group_replace_test
nexthop_group_replace_err_test
nexthop_res_group_replace_test
nexthop_res_group_replace_err_test
nexthop_res_group_idle_timer_test
nexthop_res_group_idle_timer_del_test
nexthop_res_group_increase_idle_timer_test
nexthop_res_group_decrease_idle_timer_test
nexthop_res_group_unbalanced_timer_test
nexthop_res_group_unbalanced_timer_del_test
nexthop_res_group_no_unbalanced_timer_test
nexthop_res_group_short_unbalanced_timer_test
nexthop_res_group_increase_unbalanced_timer_test
nexthop_res_group_decrease_unbalanced_timer_test
nexthop_res_group_force_migrate_busy_test
nexthop_single_replace_test
nexthop_single_replace_err_test
nexthop_single_in_group_replace_test
nexthop_single_in_group_replace_err_test
nexthop_single_in_res_group_replace_test
nexthop_single_in_res_group_replace_err_test
nexthop_single_in_group_delete_test
nexthop_single_in_group_delete_err_test
nexthop_single_in_res_group_delete_test
nexthop_single_in_res_group_delete_err_test
nexthop_replay_test
nexthop_replay_err_test
"
NETDEVSIM_PATH=/sys/bus/netdevsim/
DEV_ADDR=1337
DEV=netdevsim${DEV_ADDR}
SYSFS_NET_DIR=/sys/bus/netdevsim/devices/$DEV/net/
DEBUGFS_NET_DIR=/sys/kernel/debug/netdevsim/$DEV/
NUM_NETIFS=0
source $lib_dir/lib.sh
DEVLINK_DEV=
source $lib_dir/devlink_lib.sh
DEVLINK_DEV=netdevsim/${DEV}
nexthop_check()
{
local nharg="$1"; shift
local expected="$1"; shift
out=$($IP nexthop show ${nharg} | sed -e 's/ *$//')
if [[ "$out" != "$expected" ]]; then
return 1
fi
return 0
}
nexthop_bucket_nhid_count_check()
{
local group_id=$1; shift
local expected
local count
local nhid
local ret
while (($# > 0)); do
nhid=$1; shift
expected=$1; shift
count=$($IP nexthop bucket show id $group_id nhid $nhid |
grep "trap" | wc -l)
if ((expected != count)); then
return 1
fi
done
return 0
}
nexthop_resource_check()
{
local expected_occ=$1; shift
occ=$($DEVLINK -jp resource show $DEVLINK_DEV \
| jq '.[][][] | select(.name=="nexthops") | .["occ"]')
if [ $expected_occ -ne $occ ]; then
return 1
fi
return 0
}
nexthop_resource_set()
{
local size=$1; shift
$DEVLINK resource set $DEVLINK_DEV path nexthops size $size
$DEVLINK dev reload $DEVLINK_DEV
}
nexthop_single_add_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
nexthop_check "id 1" "id 1 via 192.0.2.2 dev dummy1 scope link trap"
check_err $? "Unexpected nexthop entry"
nexthop_resource_check 1
check_err $? "Wrong nexthop occupancy"
$IP nexthop del id 1
nexthop_resource_check 0
check_err $? "Wrong nexthop occupancy after delete"
log_test "Single nexthop add and delete"
}
nexthop_single_add_err_test()
{
RET=0
nexthop_resource_set 1
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1 &> /dev/null
check_fail $? "Nexthop addition succeeded when should fail"
nexthop_resource_check 1
check_err $? "Wrong nexthop occupancy"
log_test "Single nexthop add failure"
$IP nexthop flush &> /dev/null
nexthop_resource_set 9999
}
nexthop_group_add_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 10 group 1/2
nexthop_check "id 10" "id 10 group 1/2 trap"
check_err $? "Unexpected nexthop group entry"
nexthop_resource_check 4
check_err $? "Wrong nexthop occupancy"
$IP nexthop del id 10
nexthop_resource_check 2
check_err $? "Wrong nexthop occupancy after delete"
$IP nexthop add id 10 group 1,20/2,39
nexthop_check "id 10" "id 10 group 1,20/2,39 trap"
check_err $? "Unexpected weighted nexthop group entry"
nexthop_resource_check 61
check_err $? "Wrong weighted nexthop occupancy"
$IP nexthop del id 10
nexthop_resource_check 2
check_err $? "Wrong nexthop occupancy after delete"
log_test "Nexthop group add and delete"
$IP nexthop flush &> /dev/null
}
nexthop_group_add_err_test()
{
RET=0
nexthop_resource_set 2
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 10 group 1/2 &> /dev/null
check_fail $? "Nexthop group addition succeeded when should fail"
nexthop_resource_check 2
check_err $? "Wrong nexthop occupancy"
log_test "Nexthop group add failure"
$IP nexthop flush &> /dev/null
nexthop_resource_set 9999
}
nexthop_res_group_add_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 10 group 1/2 type resilient buckets 4
nexthop_check "id 10" "id 10 group 1/2 type resilient buckets 4 idle_timer 120 unbalanced_timer 0 unbalanced_time 0 trap"
check_err $? "Unexpected nexthop group entry"
nexthop_bucket_nhid_count_check 10 1 2
check_err $? "Wrong nexthop buckets count"
nexthop_bucket_nhid_count_check 10 2 2
check_err $? "Wrong nexthop buckets count"
nexthop_resource_check 6
check_err $? "Wrong nexthop occupancy"
$IP nexthop del id 10
nexthop_resource_check 2
check_err $? "Wrong nexthop occupancy after delete"
$IP nexthop add id 10 group 1,3/2,2 type resilient buckets 5
nexthop_check "id 10" "id 10 group 1,3/2,2 type resilient buckets 5 idle_timer 120 unbalanced_timer 0 unbalanced_time 0 trap"
check_err $? "Unexpected weighted nexthop group entry"
nexthop_bucket_nhid_count_check 10 1 3
check_err $? "Wrong nexthop buckets count"
nexthop_bucket_nhid_count_check 10 2 2
check_err $? "Wrong nexthop buckets count"
nexthop_resource_check 7
check_err $? "Wrong weighted nexthop occupancy"
$IP nexthop del id 10
nexthop_resource_check 2
check_err $? "Wrong nexthop occupancy after delete"
log_test "Resilient nexthop group add and delete"
$IP nexthop flush &> /dev/null
}
nexthop_res_group_add_err_test()
{
RET=0
nexthop_resource_set 2
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 10 group 1/2 type resilient buckets 4 &> /dev/null
check_fail $? "Nexthop group addition succeeded when should fail"
nexthop_resource_check 2
check_err $? "Wrong nexthop occupancy"
log_test "Resilient nexthop group add failure"
$IP nexthop flush &> /dev/null
nexthop_resource_set 9999
}
nexthop_group_replace_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 3 via 192.0.2.4 dev dummy1
$IP nexthop add id 10 group 1/2
$IP nexthop replace id 10 group 1/2/3
nexthop_check "id 10" "id 10 group 1/2/3 trap"
check_err $? "Unexpected nexthop group entry"
nexthop_resource_check 6
check_err $? "Wrong nexthop occupancy"
log_test "Nexthop group replace"
$IP nexthop flush &> /dev/null
}
nexthop_group_replace_err_test()
{
RET=0
nexthop_resource_set 5
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 3 via 192.0.2.4 dev dummy1
$IP nexthop add id 10 group 1/2
$IP nexthop replace id 10 group 1/2/3 &> /dev/null
check_fail $? "Nexthop group replacement succeeded when should fail"
nexthop_check "id 10" "id 10 group 1/2 trap"
check_err $? "Unexpected nexthop group entry after failure"
nexthop_resource_check 5
check_err $? "Wrong nexthop occupancy after failure"
log_test "Nexthop group replace failure"
$IP nexthop flush &> /dev/null
nexthop_resource_set 9999
}
nexthop_res_group_replace_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 3 via 192.0.2.4 dev dummy1
$IP nexthop add id 10 group 1/2 type resilient buckets 6
$IP nexthop replace id 10 group 1/2/3 type resilient
nexthop_check "id 10" "id 10 group 1/2/3 type resilient buckets 6 idle_timer 120 unbalanced_timer 0 unbalanced_time 0 trap"
check_err $? "Unexpected nexthop group entry"
nexthop_bucket_nhid_count_check 10 1 2
check_err $? "Wrong nexthop buckets count"
nexthop_bucket_nhid_count_check 10 2 2
check_err $? "Wrong nexthop buckets count"
nexthop_bucket_nhid_count_check 10 3 2
check_err $? "Wrong nexthop buckets count"
nexthop_resource_check 9
check_err $? "Wrong nexthop occupancy"
log_test "Resilient nexthop group replace"
$IP nexthop flush &> /dev/null
}
nexthop_res_group_replace_err_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 3 via 192.0.2.4 dev dummy1
$IP nexthop add id 10 group 1/2 type resilient buckets 6
ip netns exec testns1 \
echo 1 > $DEBUGFS_NET_DIR/fib/fail_res_nexthop_group_replace
$IP nexthop replace id 10 group 1/2/3 type resilient &> /dev/null
check_fail $? "Nexthop group replacement succeeded when should fail"
nexthop_check "id 10" "id 10 group 1/2 type resilient buckets 6 idle_timer 120 unbalanced_timer 0 unbalanced_time 0 trap"
check_err $? "Unexpected nexthop group entry after failure"
nexthop_bucket_nhid_count_check 10 1 3
check_err $? "Wrong nexthop buckets count"
nexthop_bucket_nhid_count_check 10 2 3
check_err $? "Wrong nexthop buckets count"
nexthop_resource_check 9
check_err $? "Wrong nexthop occupancy after failure"
log_test "Resilient nexthop group replace failure"
$IP nexthop flush &> /dev/null
ip netns exec testns1 \
echo 0 > $DEBUGFS_NET_DIR/fib/fail_res_nexthop_group_replace
}
nexthop_res_mark_buckets_busy()
{
local group_id=$1; shift
local nhid=$1; shift
local count=$1; shift
local index
for index in $($IP -j nexthop bucket show id $group_id nhid $nhid |
jq '.[].bucket.index' | head -n ${count:--0})
do
echo $group_id $index \
> $DEBUGFS_NET_DIR/fib/nexthop_bucket_activity
done
}
nexthop_res_num_nhid_buckets()
{
local group_id=$1; shift
local nhid=$1; shift
$IP -j nexthop bucket show id $group_id nhid $nhid | jq length
}
nexthop_res_group_idle_timer_test()
{
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
RET=0
$IP nexthop add id 10 group 1/2 type resilient buckets 8 idle_timer 4
nexthop_res_mark_buckets_busy 10 1
$IP nexthop replace id 10 group 1/2,3 type resilient
nexthop_bucket_nhid_count_check 10 1 4 2 4
check_err $? "Group expected to be unbalanced"
sleep 6
nexthop_bucket_nhid_count_check 10 1 2 2 6
check_err $? "Group expected to be balanced"
log_test "Bucket migration after idle timer"
$IP nexthop flush &> /dev/null
}
nexthop_res_group_idle_timer_del_test()
{
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 3 via 192.0.2.3 dev dummy1
RET=0
$IP nexthop add id 10 group 1,50/2,50/3,1 \
type resilient buckets 8 idle_timer 6
nexthop_res_mark_buckets_busy 10 1
$IP nexthop replace id 10 group 1,50/2,150/3,1 type resilient
nexthop_bucket_nhid_count_check 10 1 4 2 4 3 0
check_err $? "Group expected to be unbalanced"
sleep 4
# Deletion prompts group replacement. Check that the bucket timers
# are kept.
$IP nexthop delete id 3
nexthop_bucket_nhid_count_check 10 1 4 2 4
check_err $? "Group expected to still be unbalanced"
sleep 4
nexthop_bucket_nhid_count_check 10 1 2 2 6
check_err $? "Group expected to be balanced"
log_test "Bucket migration after idle timer (with delete)"
$IP nexthop flush &> /dev/null
}
__nexthop_res_group_increase_timer_test()
{
local timer=$1; shift
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
RET=0
$IP nexthop add id 10 group 1/2 type resilient buckets 8 $timer 4
nexthop_res_mark_buckets_busy 10 1
$IP nexthop replace id 10 group 1/2,3 type resilient
nexthop_bucket_nhid_count_check 10 2 6
check_fail $? "Group expected to be unbalanced"
sleep 2
$IP nexthop replace id 10 group 1/2,3 type resilient $timer 8
sleep 4
# 6 seconds, past the original timer.
nexthop_bucket_nhid_count_check 10 2 6
check_fail $? "Group still expected to be unbalanced"
sleep 4
# 10 seconds, past the new timer.
nexthop_bucket_nhid_count_check 10 2 6
check_err $? "Group expected to be balanced"
log_test "Bucket migration after $timer increase"
$IP nexthop flush &> /dev/null
}
__nexthop_res_group_decrease_timer_test()
{
local timer=$1; shift
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
RET=0
$IP nexthop add id 10 group 1/2 type resilient buckets 8 $timer 8
nexthop_res_mark_buckets_busy 10 1
$IP nexthop replace id 10 group 1/2,3 type resilient
nexthop_bucket_nhid_count_check 10 2 6
check_fail $? "Group expected to be unbalanced"
sleep 2
$IP nexthop replace id 10 group 1/2,3 type resilient $timer 4
sleep 4
# 6 seconds, past the new timer, before the old timer.
nexthop_bucket_nhid_count_check 10 2 6
check_err $? "Group expected to be balanced"
log_test "Bucket migration after $timer decrease"
$IP nexthop flush &> /dev/null
}
__nexthop_res_group_increase_timer_del_test()
{
local timer=$1; shift
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 3 via 192.0.2.3 dev dummy1
RET=0
$IP nexthop add id 10 group 1,100/2,100/3,1 \
type resilient buckets 8 $timer 4
nexthop_res_mark_buckets_busy 10 1
$IP nexthop replace id 10 group 1,100/2,300/3,1 type resilient
nexthop_bucket_nhid_count_check 10 2 6
check_fail $? "Group expected to be unbalanced"
sleep 2
$IP nexthop replace id 10 group 1/2,3 type resilient $timer 8
sleep 4
# 6 seconds, past the original timer.
nexthop_bucket_nhid_count_check 10 2 6
check_fail $? "Group still expected to be unbalanced"
sleep 4
# 10 seconds, past the new timer.
nexthop_bucket_nhid_count_check 10 2 6
check_err $? "Group expected to be balanced"
log_test "Bucket migration after $timer increase"
$IP nexthop flush &> /dev/null
}
nexthop_res_group_increase_idle_timer_test()
{
__nexthop_res_group_increase_timer_test idle_timer
}
nexthop_res_group_decrease_idle_timer_test()
{
__nexthop_res_group_decrease_timer_test idle_timer
}
nexthop_res_group_unbalanced_timer_test()
{
local i
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
RET=0
$IP nexthop add id 10 group 1/2 type resilient \
buckets 8 idle_timer 6 unbalanced_timer 10
nexthop_res_mark_buckets_busy 10 1
$IP nexthop replace id 10 group 1/2,3 type resilient
for i in 1 2; do
sleep 4
nexthop_bucket_nhid_count_check 10 1 4 2 4
check_err $? "$i: Group expected to be unbalanced"
nexthop_res_mark_buckets_busy 10 1
done
# 3 x sleep 4 > unbalanced timer 10
sleep 4
nexthop_bucket_nhid_count_check 10 1 2 2 6
check_err $? "Group expected to be balanced"
log_test "Bucket migration after unbalanced timer"
$IP nexthop flush &> /dev/null
}
nexthop_res_group_unbalanced_timer_del_test()
{
local i
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 3 via 192.0.2.3 dev dummy1
RET=0
$IP nexthop add id 10 group 1,50/2,50/3,1 type resilient \
buckets 8 idle_timer 6 unbalanced_timer 10
nexthop_res_mark_buckets_busy 10 1
$IP nexthop replace id 10 group 1,50/2,150/3,1 type resilient
# Check that NH delete does not reset unbalanced time.
sleep 4
$IP nexthop delete id 3
nexthop_bucket_nhid_count_check 10 1 4 2 4
check_err $? "1: Group expected to be unbalanced"
nexthop_res_mark_buckets_busy 10 1
sleep 4
nexthop_bucket_nhid_count_check 10 1 4 2 4
check_err $? "2: Group expected to be unbalanced"
nexthop_res_mark_buckets_busy 10 1
# 3 x sleep 4 > unbalanced timer 10
sleep 4
nexthop_bucket_nhid_count_check 10 1 2 2 6
check_err $? "Group expected to be balanced"
log_test "Bucket migration after unbalanced timer (with delete)"
$IP nexthop flush &> /dev/null
}
nexthop_res_group_no_unbalanced_timer_test()
{
local i
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
RET=0
$IP nexthop add id 10 group 1/2 type resilient buckets 8
nexthop_res_mark_buckets_busy 10 1
$IP nexthop replace id 10 group 1/2,3 type resilient
for i in $(seq 3); do
sleep 60
nexthop_bucket_nhid_count_check 10 2 6
check_fail $? "$i: Group expected to be unbalanced"
nexthop_res_mark_buckets_busy 10 1
done
log_test "Buckets never force-migrated without unbalanced timer"
$IP nexthop flush &> /dev/null
}
nexthop_res_group_short_unbalanced_timer_test()
{
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
RET=0
$IP nexthop add id 10 group 1/2 type resilient \
buckets 8 idle_timer 120 unbalanced_timer 4
nexthop_res_mark_buckets_busy 10 1
$IP nexthop replace id 10 group 1/2,3 type resilient
nexthop_bucket_nhid_count_check 10 2 6
check_fail $? "Group expected to be unbalanced"
sleep 5
nexthop_bucket_nhid_count_check 10 2 6
check_err $? "Group expected to be balanced"
log_test "Bucket migration after unbalanced < idle timer"
$IP nexthop flush &> /dev/null
}
nexthop_res_group_increase_unbalanced_timer_test()
{
__nexthop_res_group_increase_timer_test unbalanced_timer
}
nexthop_res_group_decrease_unbalanced_timer_test()
{
__nexthop_res_group_decrease_timer_test unbalanced_timer
}
nexthop_res_group_force_migrate_busy_test()
{
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
RET=0
$IP nexthop add id 10 group 1/2 type resilient \
buckets 8 idle_timer 120
nexthop_res_mark_buckets_busy 10 1
$IP nexthop replace id 10 group 1/2,3 type resilient
nexthop_bucket_nhid_count_check 10 2 6
check_fail $? "Group expected to be unbalanced"
$IP nexthop replace id 10 group 2 type resilient
nexthop_bucket_nhid_count_check 10 2 8
check_err $? "All buckets expected to have migrated"
log_test "Busy buckets force-migrated when NH removed"
$IP nexthop flush &> /dev/null
}
nexthop_single_replace_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop replace id 1 via 192.0.2.3 dev dummy1
nexthop_check "id 1" "id 1 via 192.0.2.3 dev dummy1 scope link trap"
check_err $? "Unexpected nexthop entry"
nexthop_resource_check 1
check_err $? "Wrong nexthop occupancy"
log_test "Single nexthop replace"
$IP nexthop flush &> /dev/null
}
nexthop_single_replace_err_test()
{
RET=0
# This is supposed to cause the replace to fail because the new nexthop
# is programmed before deleting the replaced one.
nexthop_resource_set 1
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop replace id 1 via 192.0.2.3 dev dummy1 &> /dev/null
check_fail $? "Nexthop replace succeeded when should fail"
nexthop_check "id 1" "id 1 via 192.0.2.2 dev dummy1 scope link trap"
check_err $? "Unexpected nexthop entry after failure"
nexthop_resource_check 1
check_err $? "Wrong nexthop occupancy after failure"
log_test "Single nexthop replace failure"
$IP nexthop flush &> /dev/null
nexthop_resource_set 9999
}
nexthop_single_in_group_replace_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 10 group 1/2
$IP nexthop replace id 1 via 192.0.2.4 dev dummy1
check_err $? "Failed to replace nexthop when should not"
nexthop_check "id 10" "id 10 group 1/2 trap"
check_err $? "Unexpected nexthop group entry"
nexthop_resource_check 4
check_err $? "Wrong nexthop occupancy"
log_test "Single nexthop replace while in group"
$IP nexthop flush &> /dev/null
}
nexthop_single_in_group_replace_err_test()
{
RET=0
nexthop_resource_set 5
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 10 group 1/2
$IP nexthop replace id 1 via 192.0.2.4 dev dummy1 &> /dev/null
check_fail $? "Nexthop replacement succeeded when should fail"
nexthop_check "id 1" "id 1 via 192.0.2.2 dev dummy1 scope link trap"
check_err $? "Unexpected nexthop entry after failure"
nexthop_check "id 10" "id 10 group 1/2 trap"
check_err $? "Unexpected nexthop group entry after failure"
nexthop_resource_check 4
check_err $? "Wrong nexthop occupancy"
log_test "Single nexthop replace while in group failure"
$IP nexthop flush &> /dev/null
nexthop_resource_set 9999
}
nexthop_single_in_res_group_replace_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 10 group 1/2 type resilient buckets 4
$IP nexthop replace id 1 via 192.0.2.4 dev dummy1
check_err $? "Failed to replace nexthop when should not"
nexthop_check "id 10" "id 10 group 1/2 type resilient buckets 4 idle_timer 120 unbalanced_timer 0 unbalanced_time 0 trap"
check_err $? "Unexpected nexthop group entry"
nexthop_bucket_nhid_count_check 10 1 2 2 2
check_err $? "Wrong nexthop buckets count"
nexthop_resource_check 6
check_err $? "Wrong nexthop occupancy"
log_test "Single nexthop replace while in resilient group"
$IP nexthop flush &> /dev/null
}
nexthop_single_in_res_group_replace_err_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 10 group 1/2 type resilient buckets 4
ip netns exec testns1 \
echo 1 > $DEBUGFS_NET_DIR/fib/fail_nexthop_bucket_replace
$IP nexthop replace id 1 via 192.0.2.4 dev dummy1 &> /dev/null
check_fail $? "Nexthop replacement succeeded when should fail"
nexthop_check "id 1" "id 1 via 192.0.2.2 dev dummy1 scope link trap"
check_err $? "Unexpected nexthop entry after failure"
nexthop_check "id 10" "id 10 group 1/2 type resilient buckets 4 idle_timer 120 unbalanced_timer 0 unbalanced_time 0 trap"
check_err $? "Unexpected nexthop group entry after failure"
nexthop_bucket_nhid_count_check 10 1 2 2 2
check_err $? "Wrong nexthop buckets count"
nexthop_resource_check 6
check_err $? "Wrong nexthop occupancy"
log_test "Single nexthop replace while in resilient group failure"
$IP nexthop flush &> /dev/null
ip netns exec testns1 \
echo 0 > $DEBUGFS_NET_DIR/fib/fail_nexthop_bucket_replace
}
nexthop_single_in_group_delete_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 10 group 1/2
$IP nexthop del id 1
nexthop_check "id 10" "id 10 group 2 trap"
check_err $? "Unexpected nexthop group entry"
nexthop_resource_check 2
check_err $? "Wrong nexthop occupancy"
log_test "Single nexthop delete while in group"
$IP nexthop flush &> /dev/null
}
nexthop_single_in_group_delete_err_test()
{
RET=0
# First, nexthop 1 will be deleted, which will reduce the occupancy to
# 5. Afterwards, a replace notification will be sent for nexthop group
# 10 with only two nexthops. Since the new group is allocated before
# the old is deleted, the replacement will fail as it will result in an
# occupancy of 7.
nexthop_resource_set 6
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 3 via 192.0.2.4 dev dummy1
$IP nexthop add id 10 group 1/2/3
$IP nexthop del id 1
nexthop_resource_check 5
check_err $? "Wrong nexthop occupancy"
log_test "Single nexthop delete while in group failure"
$IP nexthop flush &> /dev/null
nexthop_resource_set 9999
}
nexthop_single_in_res_group_delete_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 10 group 1/2 type resilient buckets 4
$IP nexthop del id 1
nexthop_check "id 10" "id 10 group 2 type resilient buckets 4 idle_timer 120 unbalanced_timer 0 unbalanced_time 0 trap"
check_err $? "Unexpected nexthop group entry"
nexthop_bucket_nhid_count_check 10 2 4
check_err $? "Wrong nexthop buckets count"
nexthop_resource_check 5
check_err $? "Wrong nexthop occupancy"
log_test "Single nexthop delete while in resilient group"
$IP nexthop flush &> /dev/null
}
nexthop_single_in_res_group_delete_err_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 3 via 192.0.2.4 dev dummy1
$IP nexthop add id 10 group 1/2/3 type resilient buckets 6
ip netns exec testns1 \
echo 1 > $DEBUGFS_NET_DIR/fib/fail_nexthop_bucket_replace
$IP nexthop del id 1
# We failed to replace the two nexthop buckets that were originally
# assigned to nhid 1.
nexthop_bucket_nhid_count_check 10 2 2 3 2
check_err $? "Wrong nexthop buckets count"
nexthop_resource_check 8
check_err $? "Wrong nexthop occupancy"
log_test "Single nexthop delete while in resilient group failure"
$IP nexthop flush &> /dev/null
ip netns exec testns1 \
echo 0 > $DEBUGFS_NET_DIR/fib/fail_nexthop_bucket_replace
}
nexthop_replay_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 10 group 1/2
$DEVLINK dev reload $DEVLINK_DEV
check_err $? "Failed to reload when should not"
nexthop_check "id 1" "id 1 via 192.0.2.2 dev dummy1 scope link trap"
check_err $? "Unexpected nexthop entry after reload"
nexthop_check "id 2" "id 2 via 192.0.2.3 dev dummy1 scope link trap"
check_err $? "Unexpected nexthop entry after reload"
nexthop_check "id 10" "id 10 group 1/2 trap"
check_err $? "Unexpected nexthop group entry after reload"
nexthop_resource_check 4
check_err $? "Wrong nexthop occupancy"
log_test "Nexthop replay"
$IP nexthop flush &> /dev/null
}
nexthop_replay_err_test()
{
RET=0
$IP nexthop add id 1 via 192.0.2.2 dev dummy1
$IP nexthop add id 2 via 192.0.2.3 dev dummy1
$IP nexthop add id 10 group 1/2
# Reduce size of nexthop resource so that reload will fail.
$DEVLINK resource set $DEVLINK_DEV path nexthops size 3
$DEVLINK dev reload $DEVLINK_DEV &> /dev/null
check_fail $? "Reload succeeded when should fail"
$DEVLINK resource set $DEVLINK_DEV path nexthops size 9999
$DEVLINK dev reload $DEVLINK_DEV
check_err $? "Failed to reload when should not"
log_test "Nexthop replay failure"
$IP nexthop flush &> /dev/null
}
setup_prepare()
{
local netdev
modprobe netdevsim &> /dev/null
echo "$DEV_ADDR 1" > ${NETDEVSIM_PATH}/new_device
while [ ! -d $SYSFS_NET_DIR ] ; do :; done
set -e
ip netns add testns1
devlink dev reload $DEVLINK_DEV netns testns1
IP="ip -netns testns1"
DEVLINK="devlink -N testns1"
$IP link add name dummy1 up type dummy
$IP address add 192.0.2.1/24 dev dummy1
set +e
}
cleanup()
{
pre_cleanup
ip netns del testns1
echo "$DEV_ADDR" > ${NETDEVSIM_PATH}/del_device
modprobe -r netdevsim &> /dev/null
}
trap cleanup EXIT
setup_prepare
tests_run
exit $EXIT_STATUS
|