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 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
|
#! /bin/bash
# Copyright (c) 2020 International Business Machines
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/
#
# Author Mingming Cao <mingming.cao@ibm.com>
#
# hcnmgr - This utility configure or manage hybrid network to
# support live partition migration with SR_IOV
#
FEATURES="vnic wicked"
PATH=$PATH:/bin:/usr/bin:/sbin:/usr/sbin
BOND_BASEPATH="/sys/class/net"
BOND_MODPROBE_OPTS="max_bonds=0"
BONDOPTIONS="mode=1,miimon=100,fail_over_mac=2"
IFCONFIG_PATH="/etc/sysconfig/network-scripts"
PSERIES_PLATFORM=$(dirname "$0")/pseries_platform
DT_PATH="/proc/device-tree"
HCNMGR="hcnmgr"
HCNCMD=""
HCNTRACE=""
STATEDIR="/var/lib/powerpc-utils/hcnmgr"
LOG_FILE="/var/log/hcnmgr"
HCN_LOGGING_LEVEL=DEBUG
HCNID=0
DRC_INDEX=0
DEVNAME=""
MODE=""
PHYSLOC=""
DEVPATH=""
VIO_TYPE=""
DISTRO=""
SERVICE=""
# Usage statements
usage() {
echo "$HCNMGR contains a set of commands to support migratable SR_IOV logical port."
echo "The new commands configure/query/remove network devices. New commands should"
echo "be called from the HMC, rather than directly from linux LPAR"
echo ""
echo "Usage: hcncfgdrc DRC_INDEX=<drc_index> [STAKE_TOKEN=NULL] [-d]"
echo " Configure a device to hybrid network HCN"
echo ""
echo "Usage: hcnrmhcn HCN_ID=<hcnid>"
echo " Remove a hybrid network HCN given an HCN ID"
echo ""
echo "Usage: hcnrmdev DRC_INDEX=<drc_index> HCN_ID=<hcnid>"
echo " Unconfigure device from HCN"
echo ""
echo "Usage: hcnqrydev DRC_INDEX=<drc_index> HCN_ID=<hcnid>"
echo " Query a device given a DRC_INDEX or HCN ID"
echo ""
echo "Usage: hcnversion"
echo " get the current version of the HCN support"
echo ""
echo "Optional arguments."
echo " -s scan device-tree and configure HCN"
echo " -x trace hcnmgr script execution"
echo " -V Display version information and exit"
echo " -h Display this help information and exit"
echo ""
}
# Display current version of hybrid network support
show_version() {
echo "$HCNMGR (features: $FEATURES)"
echo "Written by: Mingming Cao <mingming.cao@ibm.com>"
hcnlog INFO "$HCNMGR (features: $FEATURES)"
}
# Error codes
E_SUCCESS=0 # Success
E_INVAL=22 # HCN not exist
E_EPERM=1 # Platform not supported
E_BUSY=16 # Device busy
E_ENODEV=19 # Failed get device name
E_NOMODULE=5 # Failed to load bonding module
E_INVAL_DEV=6 # Vdevice not supported
E_ENETUNREACH=101 # No supported network service enabled or management command not found
#
# err
# Common routine to print error messages for hcnmgr
# $1 the error message number, defined above
#
err() {
local e_mesg
local eno=$1
local msg=$2
case $eno in
"$E_INVAL")
e_mesg="$HCNCMD:error code $eno, Hybrid network ID HCNID does not exist"
;;
"$E_INVAL_DEV")
e_mesg="$HCNCMD:error code $eno, Backing vdevice not supported"
;;
"$E_EPERM")
e_mesg="$HCNCMD:error code $eno, Platform is not supported"
;;
"$E_BUSY")
e_mesg="$HCNCMD:error code $eno, Network device busy, no backup device"
;;
"$E_ENODEV")
e_mesg="$HCNCMD:error code $eno, Failed to find device or get device name"
;;
"$E_NOMODULE")
e_mesg="$HCNCMD:error code $eno, Failed to load bonding module"
;;
"$E_ENETUNREACH")
e_mesg="$HCNCMD:error code $eno, ${msg:-No supported network service enabled or management command not found}"
;;
*)
e_mesg="$HCNCMD:error code $eno"
;;
esac
hcnlog ERROR "$e_mesg"
exit 1
}
# Logging
# All logging messages goes to $LOG_FILE
# Error, Warn, Info logged in syslog
# stdout and sterr still keep all information (CmdRC and data info) to pipe back to HMC
#
hcnlog() {
local log_level=$1
local log_message=$2
case "$log_level" in
ERROR)
echo "[${log_level}]:${log_message}" 1>&2
logger -p user.err -t "$(basename "$0")" "$log_message"
;;
WARN)
echo "[${log_level}]:${log_message}"
logger -p user.warn -t "$(basename "$0")" "$log_message"
;;
INFO)
echo "[${log_level}]:${log_message}"
logger -p user.info -t "$(basename "$0")" "$log_message"
;;
DEBUG)
echo "[${log_level}]:${log_message}"
;;
esac
}
# function xdump4:
# Print first 4 bytes of specified file in hexadecimal
xdump4() {
hexdump -n 4 -ve '/1 "%02x"' "$1"
}
hcnid_state_create()
{
local hcnid="$1"
[ "X$hcnid" != "X" ] && mkdir -p -- "$STATEDIR/$hcnid"
}
hcnid_state_remove()
{
local hcnid="$1"
[ "X$hcnid" != "X" ] && rm -rf -- "$STATEDIR/$hcnid"
}
hcnid_state_list()
{
local revert
shopt -q nullglob ; revert=$?
shopt -s nullglob
for dir in "$STATEDIR"/* ; do
echo "${dir##*/}"
done
[ $revert -eq 0 ] || shopt -u nullglob
}
# function search_dev:
# Given DRX_INDEX, Search for device-tree, looking for migratable SR_IOV
# backend vnic or ibmveth device to configure hybrid network
#
# $1 DRC_INDEX of given device
search_dev() {
hcnlog DEBUG "search_dev: enter $1"
local index
hcnlog DEBUG "search sr_iov device with drc_index $1"
# Look at pci ethernet devices
for pci_dev in "$DT_PATH"/pci*; do
[ -d "$pci_dev" ] || continue
index=$(xdump4 "$pci_dev"/ibm,my-drc-index)
if [[ $index != "$1" ]]; then
continue
fi
hcnlog DEBUG "found matching drc_index $index in $pci_dev"
for dev in "$pci_dev"/ethernet*; do
[ -d "$dev" ] || continue
if [ -e "$dev"/ibm,hcn-id ] && get_dev_hcn "$dev"; then
hcnlog DEBUG "search_dev: found device "
hcnlog DEBUG "search_dev: exit"
VIO_TYPE="SRIOV"
return $E_SUCCESS
fi
done
done
# Look at every vNIC device
hcnlog DEBUG "search vnic device with drc_index $1"
for dev in "$DT_PATH"/vdevice/vnic*; do
[ -d "$dev" ] || continue
index=$(xdump4 "$dev"/ibm,my-drc-index)
if [[ $index == "$1" ]]; then
hcnlog DEBUG "found matching drc_index $index in $dev"
if [ -e "$dev"/ibm,hcn-id ] && get_dev_hcn "$dev"; then
VIO_TYPE="VNIC"
hcnlog DEBUG "search_dev: found device "
hcnlog DEBUG "search_dev: exit"
return $E_SUCCESS
fi
fi
done
# Look at every ibmveth (Virtual Ethernet) device
hcnlog DEBUG "search ibmveth device with drc_index $1"
for dev in "$DT_PATH"/vdevice/l-lan*; do
[ -d "$dev" ] || continue
index=$(xdump4 "$dev"/ibm,my-drc-index)
if [[ $index == "$1" ]]; then
hcnlog DEBUG "found matching drc_index $index in $dev"
if [ -e "$dev"/ibm,hcn-id ] && get_dev_hcn "$dev"; then
hcnlog DEBUG "search_dev: found device "
hcnlog DEBUG "search_dev: exit"
VIO_TYPE="L_LAN"
return $E_SUCCESS
fi
fi
done
hcnlog DEBUG "search_dev: exit: couldn't find device with drc_index $1"
err $E_ENODEV
}
#
# function get_dev_hcn
# Given device path, Search for device-tree, get HCNID,
# device name, and mode to configure/delete/query device
# or active-backup bonding
#
# $1 path to device-tree device
#
get_dev_hcn() {
local wait=12
local dev=$1
hcnlog DEBUG "get_dev_hcn: enter $1"
HCNID=$(xdump4 "$dev"/ibm,hcn-id)
MODE=$(tr -d '\0' <"$dev"/ibm,hcn-mode)
PHYSLOC=$(tr -d '\0' <"$dev"/ibm,loc-code)
DEVPATH=$1
# Get the device name. After migration, it may take some time for
# sysfs interface up or OFPATHENAME command to translate to device name.
# Let's retry a few times.
while [ $wait != 0 ]; do
if DEVNAME=$(ofpathname -l "$(echo "$1" | sed -e "s/\/proc\/device-tree//")" 2>/dev/null); then
if [ -e /sys/class/net/"$DEVNAME" ]; then
hcnlog DEBUG "ofpathname waiting for /sys/class/net device $DEVNAME ready"
break
fi
fi
hcnlog DEBUG "ofpathname return $?, devname is $DEVNAME rety counter $wait"
sleep 15
((wait--))
if [[ $wait == 0 ]]; then
hcnlog DEBUG "get_dev_hcn: couldn't get dev name"
hcnlog DEBUG "HCNID $HCNID devname $DEVNAME mode $MODE physloc $PHYSLOC DEVPATH $DEVPATH"
hcnlog DEBUG "get_dev_hcn: exit"
if [[ $HCNCMD == "hcnscan" ]]; then
return $E_SUCCESS
fi
err $E_ENODEV
fi
done
hcnlog DEBUG "HCNID $HCNID devname $DEVNAME mode $MODE"
hcnlog DEBUG "get_dev_hcn: exit"
return $E_SUCCESS
}
#
# function do_config_vdevice_nm
# configure or create HCN (active-backup bonding)
# add device as bonding slave
#
# On enter, the vdevice name, mode, hcnid and drcindex are set
# Based on Network Manager nmcli
do_config_vdevice_nm() {
hcnlog DEBUG "do_config_vdevice: enter"
BONDNAME=bond$HCNID
BOND_PATH=$BOND_BASEPATH/$BONDNAME/bonding
hcnlog DEBUG "Check if there is bond $BONDNAME with hcn id $HCNID"
if ! nmcli -f NAME con show | grep -q "$BONDNAME\s"; then
hcnlog INFO "nmcli con add type bond con-name $BONDNAME ifname $BONDNAME"
nmcli con add type bond con-name "$BONDNAME" ifname "$BONDNAME"
#vnic and sr-iov only support fail_over_mac=2 mode
hcnlog INFO "nmcli con mod id $BONDNAME bond.options $BONDOPTIONS connection.autoconnect-slaves 1"
nmcli con mod id "$BONDNAME" bond.options "$BONDOPTIONS" connection.autoconnect-slaves 1
# When creating bond, by default the ipv4.method is auto, set to dhcp
# In the case of mutiple HNV this can case bond interface deactive and
# active again. In addtion HNV requires user to configure IP address manually.
#
# So here Set default ipv4 method to disable. Bond is created without IP .
# User need to configure static IP manually with
# nmcli con mod id <bond-name> ipv4.method manual ipv4.address 192.168.2.203/24
# if mutiple HNV is setup, make sure that each of the HNV bonded interfaces is
# on a different subnet.
nmcli con mod id "$BONDNAME" ipv6.method disable
nmcli con mod id "$BONDNAME" ipv4.method disable
nmcli con up "$BONDNAME"
fi
if ! nmcli -f NAME con show --active | grep -q "$BONDNAME\s" && ! nmcli con up "$BONDNAME"; then
hcnlog WARN " Couln't bring up bond $BONDNAME"
fi
hcnlog DEBUG "$BOND_PATH....yes"
hcnlog DEBUG "check if $DEVNAME already added in $BONDNAME"
if nmcli -f NAME con show | grep -q "$BONDNAME-$DEVNAME\s"; then
hcnlog DEBUG "connection $BONDNAME-$DEVNAME exist"
if grep "$DEVNAME" -q "$BOND_PATH"/slaves; then
hcnlog DEBUG "connection $BONDNAME-$DEVNAME active"
hcnlog DEBUG "do_config_drc: exit"
return $E_SUCCESS
else
hcnlog DEBUG " Bring up connection $BONDNAME-$DEVNAME"
nmcli con up "$BONDNAME-$DEVNAME"
hcnlog DEBUG "do_config_drc: exit"
return $E_SUCCESS
fi
fi
# Add device to the bond
hcnlog INFO "nmcli con add type ethernet ifname $DEVNAME master $BONDNAME"
if ! nmcli con add type ethernet con-name "$BONDNAME-$DEVNAME" ifname "$DEVNAME" master "$BONDNAME"; then
hcnlog DEBUG "enslave $DEVNAME failed, /sys/class/net/$DEVNAME might be moved by udev"
return $E_ENODEV
fi
hcnlog DEBUG "Bring up the $DEVNAME interface"
nmcli con up "$BONDNAME-$DEVNAME"
# if the device is primary, and link is up, force it as primary se
if [[ $MODE == "primary" ]]; then
hcnlog INFO "Change bonding primary slave to $DEVNAME"
nmcli con mod id "$BONDNAME" +bond.options "primary=$DEVNAME"
nmcli con up "$BONDNAME"
fi
hcnlog DEBUG "do_config_vdevice: exit"
return $E_SUCCESS
}
# function do_config_vdevice_wicked
# configure or create HCN (active-backup bonding)
# add device as bonding slave
#
# On enter, the vdevice name, mode, hcnid and drcindex are set
#
do_config_vdevice_wicked() {
hcnlog DEBUG "do_config_vdevice: enter"
BONDNAME=bond$HCNID
BOND_PATH=$BOND_BASEPATH/$BONDNAME/bonding
hcnlog DEBUG "Check if there is bond $BONDNAME with hcn id $HCNID"
if ! suse_ifcfg_is_bond_master "$BONDNAME"; then
hcnlog INFO "create bonding for $BONDNAME with bond.options $BONDOPTIONS "
# Note: wicked needs spaces in BONDING_MODULE_OPTS as comma is
# used/reserved to separate multiple arp_ip_targets, thus
# this could result in invalid options...:
suse_ifcfg_bond_create "$BONDNAME" "" "${BONDOPTIONS//,/ }"
fi
# Add device to the bond
hcnlog INFO "suse_ifcfg_bond_add_slave $BONDNAME $DEVNAME"
if ! suse_ifcfg_bond_add_slave "$BONDNAME" "$DEVNAME"; then
hcnlog DEBUG "enslave $DEVNAME failed"
return $E_ENODEV
fi
# if the device is primary, adjust it in the config
if [[ $MODE == "primary" ]]; then
hcnlog INFO "Change bonding primary slave to $DEVNAME"
suse_ifcfg_bond_set_primary "$BONDNAME" "$DEVNAME"
fi
# Prepare configuration while hcn-init.service run, but do not try
# to apply when the wicked.service aka network.service is active.
# The network.service start at boot (or next one) will apply it.
if systemctl is-active -q wicked.service ; then
# Apply the config changes to wicked
hcnlog DEBUG "Bring up the $BONDNAME interface"
wicked ifup "$BONDNAME"
# workaround: make sure the primary gets applied
# so kernel reselect it as primary
if [[ $MODE == "primary" ]]; then
echo "$DEVNAME" > "$BOND_PATH/primary"
fi
fi
hcnlog DEBUG "do_config_vdevice: exit"
return $E_SUCCESS
}
do_config_vdevice() {
hcnid_state_create "$HCNID"
case $SERVICE in
NetworkManager.service)
do_config_vdevice_nm
;;
wicked.service)
do_config_vdevice_wicked
;;
esac
}
#
# function cfghcn_nm
# Given device DRC_INDEX, configure or create HCN (active-backup bonding)
# add device as bonding slave
#
# $1 DRC_INDEX of the hybrid network device
#
cfghcn_nm() {
local retry=3
hcnlog DEBUG "cfghcn: enter $1"
search_dev "$1"
while [ $retry != 0 ]; do
hcnlog DEBUG "cfg_hcn: calling do_confi_vdevice to enslave $DEVNAME to HNV"
if do_config_vdevice; then
break
fi
hcnlog DEBUG "cfg_hcn: do_confi_vdevice enslave $DEVNAME failed, might race with udev rename"
hcnlog DEBUG "cfg_hcn: wait for udev events complete, udevadm settle"
udevadm settle
hcnlog DEBUG "cfg_hcn: calling get_dev_hcn retrive device $DEVPATH name again, retry $retry"
get_dev_hcn $DEVPATH
hcnlog DEBUG "cfg_hcn: calling get_dev_hcn get $DEVNAME"
((retry--))
if [[ $retry == 0 ]]; then
err $E_ENODEV
fi
done
return $E_SUCCESS
}
#
# function cfghcn_wicked
# Given device DRC_INDEX, configure or create HCN (active-backup bonding)
# add device as bonding slave
#
# $1 DRC_INDEX of the hybrid network device
#
cfghcn_wicked() {
hcnlog DEBUG "cfghcn wicked: enter $1"
hcnlog DEBUG "cfg_hcn wicked: wait for udev events complete, udevadm settle"
udevadm settle
search_dev "$1"
hcnlog DEBUG "cfg_hcn: calling do_confi_vdevice to enslave $DEVNAME to HNV"
do_config_vdevice
hcnlog DEBUG "cfghcn wicked: exit"
return $E_SUCCESS
}
#
# function cfghcn
# Given device DRC_INDEX, configure or create HCN (active-backup bonding)
# add device as bonding slave
#
# $1 DRC_INDEX of the hybrid network device
#
cfghcn() {
hcnlog DEBUG "cfghcn: enter $1"
case $SERVICE in
NetworkManager.service)
cfghcn_nm $1
;;
wicked.service)
cfghcn_wicked $1
;;
esac
hcnlog DEBUG "cfghcn: exit"
return $E_SUCCESS
}
rmhcn_nm() {
for connection in $(nmcli -f NAME con show | grep "$BONDNAME"); do
hcnlog INFO "Delete bonding connection $connection"
nmcli con delete "$connection"
done
}
rmhcn_wicked() {
hcnlog INFO "Delete bonding $BONDNAME"
wicked ifdown "$BONDNAME"
suse_ifcfg_bond_delete "$BONDNAME"
}
#
# function rmhcn
# Given HCNID, remove HCN
#
# $1 hybrid network ID
#
rmhcn() {
hcnlog DEBUG "rmhcn: enter $1"
HCNID=$1
BONDNAME=bond$HCNID
BOND_PATH=$BOND_BASEPATH/$BONDNAME/bonding
if [ ! -d "$BOND_PATH" ]; then
hcnlog WARN "bond $BONDNAME is inactive"
hcnlog INFO "Remove incactive bond and slave connections"
fi
hcnlog INFO "rmhcn: delete bond $BONDNAME and slaves "
case $SERVICE in
NetworkManager.service)
rmhcn_nm
;;
wicked.service)
rmhcn_wicked
;;
esac
hcnid_state_remove "$HCNID"
hcnlog DEBUG "rmhcn: exit"
return $E_SUCCESS
}
qrydev_nm() {
if ! nmcli -f DEVICE con show --active | grep -q "$DEVNAME"; then
hcnlog DEBUG "network connection $BONDNAME-$DEVNAME is inactive or nonexist"
hcnlog DEBUG "HCNID $HCNID devname $DEVNAME mode $MODE physloc $PHYSLOC DEVPATH $DEVPATH"
hcnlog DEBUG "qryhcn: exit"
# In this case, tell HMC to do rmdev and okay to migrate
return $E_SUCCESS
fi
}
qrydev_wicked() {
if ! wicked ifstatus $DEVNAME |grep link |grep up; then
hcnlog DEBUG "network connection $BONDNAME-$DEVNAME is inactive or nonexist"
hcnlog DEBUG "HCNID $HCNID devname $DEVNAME mode $MODE physloc $PHYSLOC DEVPATH $DEVPATH"
hcnlog DEBUG "qryhcn: exit"
# In this case, tell HMC to do rmdev and okay to migrate
return $E_SUCCESS
fi
}
#
#function qrydev
# Called by HMC right before migration, to see if it is safe to
# remove an migratable SR-IOV VFs
#
# If this migratable SR_IOV device belongs to an active bonding
# but without active virtual device to failover, return failure
#
# In some case, if the bonding is deactived, we should not allow
# SR-IOV migrate too. return failure
#
# $1 DRC_INDEX of SR_IOV device
# $2 HCNID hybrid network ID
#
qrydev() {
hcnlog DEBUG "qrydev: enter $1 $2"
search_dev "$1"
if [[ $HCNID != "$2" ]]; then
hcnlog WARN "qrydev: mismatch drc index $1 HCNID $2"
fi
BONDNAME=bond$HCNID
BOND_PATH=$BOND_BASEPATH/$BONDNAME/bonding
hcnlog DEBUG "check if the network interface for this SR_IOV is not up, return success"
case $SERVICE in
NetworkManager.service)
qrydev_nm
;;
wicked.service)
qrydev_wicked
;;
esac
hcnlog DEBUG "check if there is bond for this $HCNID"
if [ ! -d "$BOND_PATH" ]; then
hcnlog DEBUG "bond $BONDNAME is inactive or nonexist"
hcnlog DEBUG "HCNID $HCNID devname $DEVNAME mode $MODE physloc $PHYSLOC DEVPATH $DEVPATH"
# In this case, tell HMC to do rmdev and okay to migrate
hcnlog DEBUG "qryhcn: exit"
return $E_SUCCESS
fi
hcnlog DEBUG "bonding is active, check if there active backup slave"
while read -r dev; do
if [[ $dev != "$DEVNAME" ]]; then
hcnlog DEBUG "found the failover slave $dev"
hcnlog INFO "qrydev return safe to remove $DEVNAME"
hcnlog DEBUG "qryhcn: exit"
return $E_SUCCESS
fi
done <"$BOND_PATH"/slaves
hcnlog DEBUG "Couldn't find active backup device for $DEVNAME"
hcnlog DEBUG "HCNID $HCNID devname $DEVNAME mode $MODE physloc $PHYSLOC DEVPATH $DEVPATH"
hcnlog DEBUG "qryhcn: exit"
err $E_BUSY
}
#
#function show_hcnstatus
# Display bonding connection and device status
#
show_hcnstatus() {
hcnlog DEBUG "log connection and device status to $LOG_FILE"
case $SERVICE in
NetworkManager.service)
nmcli connection show >>$LOG_FILE
nmcli device status >>$LOG_FILE
;;
wicked.service)
if systemctl is-active -q "$SERVICE" ; then
wicked ifstatus all >>$LOG_FILE
else
hcnlog DEBUG "network service $SERVICE is currently inactive"
fi
;;
esac
ip -d addr show >>$LOG_FILE
}
#
#function check_eth
# Check if an ethernet connection is up
#
# $1 network device name
check_eth() {
nmcli -f DEVICE con show | grep -q "$1"
}
rmdev_nm() {
hcnlog DEBUG "rmdev_nm: enter"
if check_eth "$DEVNAME"; then
hcnlog INFO "rmdev: delete $BONDNAME-$DEVNAME connection"
nmcli con delete "$BONDNAME-$DEVNAME"
fi
}
rmdev_wicked() {
hcnlog DEBUG "rmdev_wicked: enter"
suse_ifcfg_bond_del_slave "$BONDNAME" "$DEVNAME"
wicked ifdown "$DEVNAME"
wicked ifup "$BONDNAME"
hcnlog DEBUG "rmdev_wicked: exit"
return $E_SUCCESS
}
#
#function rmdev
# this is called at pre-migration time, remove sr-iov from HCN
# force failover to backup vnic or veth
#
# $1 DRC_INDEX of SR_IOV device
# $2 hybrid network ID
#
rmdev() {
hcnlog DEBUG "rmdev: enter $1 $2"
search_dev "$1"
BONDNAME=bond$HCNID
hcnlog DEBUG "found $DEVNAME with DRC_INDEX $1 with HCNID $HCNID"
if [[ $HCNID != "$2" ]]; then
hcnlog WARN "rmdev: mismatch drc index $1 HCNID $2"
fi
case $SERVICE in
NetworkManager.service)
rmdev_nm
;;
wicked.service)
rmdev_wicked
;;
esac
hcnlog DEBUG "rmdev: exit"
return $E_SUCCESS
}
scanhcn_cleanup_old_hnv_nm() {
# After online from inactive migration, destination
# LPAR may have same mvf devname but associated with different
# bonding than from source LPAR
# clean up expired bonding SR_IOV connections
for cfg in $(ls $IFCONFIG_PATH | grep "$DEVNAME" | grep "bond"); do
hid=$(echo "$cfg" | sed -e 's/ifcfg-//' | cut -d '-' -f 1 | sed -e 's/bond//')
if [ -e "$IFCONFIG_PATH/ifcfg-$DEVNAME" ]; then
rm "$IFCONFIG_PATH/ifcfg-$DEVNAME"
fi
if [[ $hid != "" && $hid != "$HCNID" ]] ; then
hcnlog INFO "Delete dead bonding slave ifcfg file $IFCONFIG_PATH/$cfg"
rm $IFCONFIG_PATH/"$cfg"
if nmcli -f NAME con show | grep -q "bond$hid-$DEVNAME\s"; then
hcnlog INFO "Delete dead bonding connection $connection"
nmcli con delete "bond$hid-$DEVNAME"
fi
fi
done
}
#
# function scanhcn_nm
# HMC supports adding migratable sr-iov when LPAR is inactive. This allows LPAR
# can be migrated when inactive with SR_IOV VFS. It will set the
# migratable sr-iov device and it's backup vdevice vnic or veth with
# ibm property ibm,hcn-id. This is done without OS awareness.
#
# When LPAR back online, the OS will setup the hybrid virtual network (bonding)
# to prepare for SR_IoV elgitibale migration, or re-configure the hybrid network
# after inactive migration.
#
# This function will scan the device-tree to find SR-IOV vfs and virtual devices
# that has configured as migratable sr-iov device or as backup vdevice during LPAR
# is inactive.
# For each matching primary and backup virtual device with same ibm property
# ibm,hcn-id, if the hybrid network has not been created, create HCN
# (active-backup bonding) for them.
#
scanhcn_nm() {
local HcnIds=()
hcnlog DEBUG "scanhcn: on boot scan for hybrid virtual network starts"
hcnlog DEBUG "search sr_iov device with ibm,hcn-id propterty......"
# Look at pci ethernet devices for SR_IOV VFs with ibm,hcn-id propterty
# join or Create bond for this hcnid if not exist, add SR-IOVs as primary
# slave for this bond accosiated with hcnid, if not already to
for pci_dev in "$DT_PATH"/pci*; do
[ -d "$pci_dev" ] || continue
for dev in "$pci_dev"/ethernet*; do
[ -d "$dev" ] || continue
if [ -e "$dev"/ibm,hcn-id ] && get_dev_hcn "$dev"; then
hcnlog DEBUG "scanhcn found sr-iov device with hcnid "
case $SERVICE in
NetworkManager.service)
scanhcn_cleanup_old_hnv_nm
;;
esac
hcnlog INFO "scanhcn configure HCN and sr-iov device"
do_config_vdevice
# Save found HCN ids in array HcnIds
HcnIds+=("bond$HCNID-")
fi
done
done
hcnlog DEBUG "search ibmveth device with ibm,hcn-id propterty......"
# Look at every vNIC device with ibm,hcn-id propterty
# join or create bond for this hcnid if not exist, add vnic device as
# slave for this bond accosiated with hcnid, if not already to
for dev in "$DT_PATH"/vdevice/l-lan*; do
[ -d "$dev" ] || continue
if [ -e "$dev"/ibm,hcn-id ] && get_dev_hcn "$dev"; then
hcnlog DEBUG "scanhcn found veth device with hcnid "
hcnlog INFO "scanhcn configure HCN and veth device"
do_config_vdevice
fi
done
hcnlog DEBUG "search vnic device with ibm,hcn-id propterty......"
# Look at every vNIC device with ibm,hcn-id propterty
# join or create bond for this hcnid if not exist, add vnic device as
# slave for this bond accosiated with hcnid, if not already to
for dev in "$DT_PATH"/vdevice/vnic*; do
[ -d "$dev" ] || continue
if [ -e "$dev"/ibm,hcn-id ] && get_dev_hcn "$dev"; then
hcnlog DEBUG "scanhcn found vnic device with hcnid "
hcnlog INFO "scanhcn configure HCN and vnic device"
do_config_vdevice
fi
done
if [ ${#HcnIds[@]} -eq 0 ]; then
hcnlog DEBUG "scanhcn: scan for hybrid virtual network finished"
return $E_SUCCESS
fi
# Next clean up dead connections left from orgitinal LPAR after inactive miration
# Only do this when the HNV ID array is not empty
# list of all HCN ids
ids="${HcnIds[*]}"
case $SERVICE in
NetworkManager.service)
# After inactive migration, LPAR may have old bonding connections
# with network device on original LPAR
# clean up dead bonding connections
for connection in $(nmcli -f NAME con show | grep "${ids// /\\|}"); do
dev=$(echo "$connection" | cut -d '-' -f 2)
if [[ $dev != "NAME" && ! -e /sys/class/net/"$dev" ]]; then
hcnlog INFO "Delete dead bonding connection $connection"
nmcli con delete "$connection"
fi
done
;;
esac
hcnlog DEBUG "scanhcn: scan for hybrid virtual network finished"
}
#
# function scanhcn_wicked
#
# This function will scan the device-tree to find new SR-IOV vfs and virtual devices
# that has configured as migratable sr-iov device or as backup vdevice during LPAR
# is inactive (or during manual 'hcnmgr -s' call).
#
scanhcn_wicked() {
local hcnid hcnids=()
local -A hcn_devs hcn_primary
local file dev
hcnlog DEBUG "scanhcn: on boot scan for hybrid virtual network starts"
udevadm settle
hcnlog DEBUG "search sr_iov device with ibm,hcn-id propterty......"
# Look at pci ethernet devices for SR_IOV VFs with ibm,hcn-id propterty
# join or Create bond for this hcnid if not exist, add SR-IOVs as primary
# slave for this bond accosiated with hcnid, if not already to
for pci_dev in "$DT_PATH"/pci*; do
[ -d "$pci_dev" ] || continue
for dev in "$pci_dev"/ethernet*; do
[ -d "$dev" ] || continue
if [ -e "$dev"/ibm,hcn-id ] && get_dev_hcn "$dev"; then
hcnlog DEBUG "scanhcn found $MODE sr-iov device $DEVNAME with hcnid $HCNID"
# Collect what we have found
hcnids=($(suse_wlist_uniq ${hcnids[*]} $HCNID))
hcn_devs[$HCNID]=$(suse_wlist_uniq ${hcn_devs[$HCNID]} $DEVNAME)
[ "X$MODE" = "Xprimary" ] && hcn_primary[$HCNID]="$DEVNAME"
fi
done
done
hcnlog DEBUG "search ibmveth device with ibm,hcn-id propterty......"
# Look at every vNIC device with ibm,hcn-id propterty
# join or create bond for this hcnid if not exist, add vnic device as
# slave for this bond accosiated with hcnid, if not already to
for dev in "$DT_PATH"/vdevice/l-lan*; do
[ -d "$dev" ] || continue
if [ -e "$dev"/ibm,hcn-id ] && get_dev_hcn "$dev"; then
hcnlog DEBUG "scanhcn found $MODE veth device $DEVNAME with hcnid $HCNID"
# Collect what we have found
hcnids=($(suse_wlist_uniq ${hcnids[*]} $HCNID))
hcn_devs[$HCNID]=$(suse_wlist_uniq ${hcn_devs[$HCNID]} $DEVNAME)
[ "X$MODE" = "Xprimary" ] && hcn_primary[$HCNID]="$DEVNAME"
fi
done
hcnlog DEBUG "search vnic device with ibm,hcn-id propterty......"
# Look at every vNIC device with ibm,hcn-id propterty
# join or create bond for this hcnid if not exist, add vnic device as
# slave for this bond accosiated with hcnid, if not already to
for dev in "$DT_PATH"/vdevice/vnic*; do
[ -d "$dev" ] || continue
if [ -e "$dev"/ibm,hcn-id ] && get_dev_hcn "$dev"; then
hcnlog DEBUG "scanhcn found $MODE vnic device $DEVNAME with hcnid $HCNID"
# Collect what we have found
hcnids=($(suse_wlist_uniq ${hcnids[*]} $HCNID))
hcn_devs[$HCNID]=$(suse_wlist_uniq ${hcn_devs[$HCNID]} $DEVNAME)
[ "X$MODE" = "Xprimary" ] && hcn_primary[$HCNID]="$DEVNAME"
fi
done
# Cleanup (and shutdown) obsolete bondings or unenslave obsolete slaves
# This can happen when the LPAR has been shut down and reconfigured at
# next boot (or as attempt to fix via manual rescan when something went
# wrong before).
for hcnid in $(hcnid_state_list) ; do
local bond="bond$hcnid"
if suse_wlist_find "$hcnid" "${hcnids[@]}" ; then
local devices=(${hcn_devs[$hcnid]})
for dev in $(suse_ifcfg_bond_get_slaves "$bond") ; do
suse_wlist_find "$dev" "${devices[@]}" && continue
suse_ifcfg_bond_del_slave "$bond" "$dev"
if systemctl is-active -q wicked.service ; then
wicked ifdown "$dev"
fi
done
else
suse_ifcfg_bond_delete "$bond"
if systemctl is-active -q wicked.service ; then
wicked ifdown "$bond"
fi
hcnid_state_remove "$hcnid"
fi
done
# Configure (and set up) actual bonds with current device list
for hcnid in "${hcnids[@]}" ; do
local bond="bond$hcnid"
local primary="${hcn_primary[$hcnid]}"
local devices="${hcn_devs[$hcnid]}"
hcnid_state_create "$hcnid"
hcnlog INFO "scanhcn configure HCN $bond with devices '$devices'"
if suse_ifcfg_bond_modify "$bond" "$devices" ; then
hcnlog INFO "scanhcn configured bond '$bond' config with devices '$devices'"
else
hcnlog INFO "scanhcn failed to configure bond '$bond' with devices '$devices'"
continue
fi
if suse_ifcfg_bond_set_primary "$bond" "$primary" ; then
hcnlog INFO "scanhcn adjusted bond '$bond' config primary to '$primary'"
else
hcnlog INFO "scanhcn failed to adjust bond '$bond' config primary to '$primary'"
fi
if systemctl is-active -q wicked.service ; then
hcnlog INFO "scanhcn starting HCN bonding: $bond"
wicked ifup "$bond"
else
hcnlog INFO "scanhcn omits HCN bondings reload due to inactive network"
# at boot, hcn-init.service adjusts the configuration and
# the wicked.service starting after sets up the bondings.
fi
done
hcnlog DEBUG "scanhcn: scan for hybrid virtual network finished"
return $E_SUCCESS
}
scanhcn() {
case $SERVICE in
NetworkManager.service)
scanhcn_nm
;;
wicked.service)
scanhcn_wicked
;;
esac
}
# function check_network_service
# Check what connection manager is used
# On SUSE, it's wicked.sevice (SLES) or NetworkManager.service (SLED)
# with the network.service alias pointing to the enabled service.
#
check_network_service() {
DISTRO="Unknown"
if test -f /etc/os-release; then
DISTRO=$(grep -oP '(?<=^ID=).+' /etc/os-release | tr -d '"')
fi
#Validate distro service CLI packages is installed to manage networking
case $DISTRO in
sles|sled|*suse*)
SERVICE=$(systemctl show -P Id network.service 2>/dev/null)
case $SERVICE in
wicked.service)
source /usr/lib/powerpc-utils/functions.suse || \
err $E_EPERM "Unable to source SUSE function library"
if ! wicked --version >/dev/null 2>&1; then
err $E_ENETUNREACH "wicked management command not installed"
fi
# hcn-init.service starts before wicked
;;
NetworkManager.service)
if ! nmcli --version >/dev/null 2>&1; then
err $E_ENETUNREACH "nmcli management command not installed"
fi
# hcn-init.service starts after network manager
if ! systemctl is-active -q "$SERVICE" ; then
err $E_ENETUNREACH "NetworkManager.service not active"
fi
;;
*)
err $E_ENETUNREACH "HNV is only supported on wicked and NetworkManager"
;;
esac
;;
*)
if ! nmcli --version >/dev/null 2>&1; then
err $E_ENETUNREACH "HNV is only supported on NetworkManager"
fi
# Assume it's NetworkManager.service -- at least the cli is available
SERVICE=NetworkManager.service
if ! systemctl is-active -q "$SERVICE" ; then
err $E_ENETUNREACH "NetworkManager.service not active"
fi
;;
esac
hcnlog INFO " LPAR is running OS $DISTRO with network service ${SERVICE%.service}"
}
#
# Main
#
#All echo messages goes into $LOG_FILE
exec &> >(tee -a $LOG_FILE)
#Start debug log $LOG_FILE with date and time
NOW=$(date +"%m-%d-%Y %T")
echo "=======================$NOW============================"
HCNCMD=$(basename "$0")
hcnlog DEBUG "$HCNCMD enter"
#getops for help and version
while getopts "sxVhd:" arg; do
case "$arg" in
V)
show_version
exit 0
;;
h)
usage
exit 0
;;
s)
HCNCMD="hcnscan"
;;
x)
HCNTRACE="-x"
;;
d)
hcnlog DEBUG "HMC pass log level at $OPTARG"
hcnlog DEBUG "$HCNCMD is always log at $HCN_LOGGING_LEVEL level"
;;
*)
usage
exit 1
;;
esac
done
#Log this scripts command line to syslog
hcnlog INFO "$HCNCMD $*"
#Enable bash -x or -vx call trace if requested
if [ "X$HCNTRACE" != "X" ] ; then
set "$HCNTRACE"
fi
#Validate this tool is running on powerpc platform
. "$PSERIES_PLATFORM"
if [ "$platform" != "$PLATFORM_PSERIES_LPAR" ]; then
hcnlog INFO "HNV is only supported on PowerVM LPAR"
hcnlog INFO "$HCNCMD exit"
exit 0
fi
#Init the distribution and the network service
check_network_service
#Validate bonding module is loaded
hcnlog DEBUG "HCNMGR: Loading bonding module if not already present"
if ! modprobe bonding $BOND_MODPROBE_OPTS; then
err $E_NOMODULE
fi
#Parse the DRC_INDEX and HCN_ID from the arguments
for param in "$@"; do
if [[ $param =~ ^DRC_INDEX=(.+)$ ]]; then
DRC_INDEX=${BASH_REMATCH[1]}
fi
if [[ $param =~ ^HCN_ID=(.+)$ ]]; then
HCNID=$(printf "%08x" "0x${BASH_REMATCH[1]}")
fi
done
#Perform hybrid network configuration
case "$HCNCMD" in
*hcncfgdrc)
HCNCMD="cfghcn"
$HCNCMD "$DRC_INDEX"
;;
*hcnrmdev)
HCNCMD="rmdev"
$HCNCMD "$DRC_INDEX" "$HCNID"
;;
*hcnrmhcn)
HCNCMD="rmhcn"
$HCNCMD "$HCNID"
;;
*hcnqrydev)
HCNCMD="qrydev"
$HCNCMD "$DRC_INDEX" "$HCNID"
;;
*hcnversion)
show_version
;;
*hcnscan)
scanhcn
;;
default)
show_version
hcnlog WARN "Unknown hybrid network command"
usage
exit 1
;;
esac
show_hcnstatus
exit 0
# end
|