This commit is contained in:
committed by
Git OBS Bridge
parent
622c859b48
commit
3c15755877
301
block-npiv
301
block-npiv
@@ -8,100 +8,267 @@ dir=$(dirname "$0")
|
||||
#set -x
|
||||
#command=$1
|
||||
|
||||
# Find first alive non-VHOST
|
||||
find_qla()
|
||||
# Look for the NPIV vport with the WWPN
|
||||
# $1 contains the WWPN (assumes it does not contain a leading "0x")
|
||||
find_vhost()
|
||||
{
|
||||
unset qla
|
||||
for qla in /proc/scsi/qla2xxx/*; do
|
||||
if grep -q "<DEAD>" $qla; then
|
||||
continue
|
||||
fi
|
||||
if grep -q "VHOST index" $qla; then
|
||||
continue
|
||||
unset vhost
|
||||
|
||||
# look in upstream locations
|
||||
for fchost in /sys/class/fc_vports/* ; do
|
||||
if test -e $fchost/port_name ; then
|
||||
wwpn=`cat $fchost/port_name | sed -e s/^0x//`
|
||||
if test $wwpn = $1 ; then
|
||||
# Note: makes the assumption the vport will always have an scsi_host child
|
||||
vhost=`ls -d $fchost/device/host*`
|
||||
vhost=`basename $vhost`
|
||||
return
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
# look in vendor-specific locations
|
||||
|
||||
# Emulex - just looks like another scsi_host - so look at fc_hosts...
|
||||
for fchost in /sys/class/fc_host/* ; do
|
||||
if test -e $fchost/port_name ; then
|
||||
wwpn=`cat $fchost/port_name | sed -e s/^0x//`
|
||||
if test $wwpn = $1 ; then
|
||||
# Note: makes the assumption the vport will always have an scsi_host child
|
||||
vhost=`basename $fchost`
|
||||
return
|
||||
fi
|
||||
fi
|
||||
return
|
||||
done
|
||||
}
|
||||
|
||||
# Find dev for NPIV
|
||||
|
||||
# Create a NPIV vport on the fabric w/ FABRICNM, with WWPN,WWNN
|
||||
# $1 contains FABRICNM
|
||||
# $2 contains the VPORT WWPN
|
||||
# $3 contains the VPORT WWNN
|
||||
# (assumes no name contains a leading "0x")
|
||||
create_vport()
|
||||
{
|
||||
# find a base adapter with npiv support that is on the right fabric
|
||||
|
||||
# Look via upstream interfaces
|
||||
for fchost in /sys/class/fc_host/* ; do
|
||||
if test -e $fchost/vport_create ; then
|
||||
# is the link up, w/ NPIV support ?
|
||||
pstate=`cat $fchost/port_state`
|
||||
ptype=`cat $fchost/port_type | cut -c 1-5`
|
||||
fname=`cat $fchost/fabric_name | sed -e s/^0x//`
|
||||
if [ $pstate = "Online" -a $ptype = "NPort" -a $fname = $1 ] ; then
|
||||
vmax=`cat $fchost/max_npiv_vports`
|
||||
vinuse=`cat $fchost/npiv_vports_inuse`
|
||||
avail=`expr $vmax - $vinuse`
|
||||
if [ $avail -gt 0 ] ; then
|
||||
# create the vport
|
||||
echo $2":"$3 > $fchost/vport_create
|
||||
if [ $? -eq 0 ] ; then
|
||||
return 0
|
||||
fi
|
||||
# failed - so we'll just look for the next adapter
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
# Look in vendor-specific locations
|
||||
|
||||
# Emulex: interfaces mirror upstream, but are under adapter scsi_host
|
||||
for shost in /sys/class/scsi_host/* ; do
|
||||
if [ -e $shost/vport_create ] ; then
|
||||
fchost=`ls -d $shost/device/fc_host*`
|
||||
# is the link up, w/ NPIV support ?
|
||||
pstate=`cat $fchost/port_state`
|
||||
ptype=`cat $fchost/port_type | cut -c 1-5`
|
||||
fname=`cat $fchost/fabric_name | sed -e s/^0x//`
|
||||
if [ $pstate = "Online" -a $ptype = "NPort" -a $fname = $1 ] ; then
|
||||
vmax=`cat $shost/max_npiv_vports`
|
||||
vinuse=`cat $shost/npiv_vports_inuse`
|
||||
avail=`expr $vmax - $vinuse`
|
||||
if [ $avail -gt 0 ] ; then
|
||||
# create the vport
|
||||
echo $2":"$3 > $shost/vport_create
|
||||
if [ $? -eq 0 ] ; then
|
||||
return 0
|
||||
fi
|
||||
# failed - so we'll just look for the next adapter
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
return 1
|
||||
}
|
||||
|
||||
|
||||
# Look for the LUN on the indicated scsi_host (which is an NPIV vport)
|
||||
# $1 is the scsi_host name (normalized to simply the hostX name)
|
||||
# $2 is the WWPN of the tgt port the lun is on
|
||||
# Note: this implies we don't support a multipath'd lun, or we
|
||||
# are explicitly identifying a "path"
|
||||
# $3 is the LUN number of the scsi device
|
||||
find_sdev()
|
||||
{
|
||||
unset dev
|
||||
for host in /proc/scsi/qla2xxx/*; do
|
||||
if grep -q $1 $host; then
|
||||
h=${host##*/}
|
||||
dev=`readlink /sys/class/scsi_device/$h*:0/device/block*`
|
||||
dev=${dev##*/}
|
||||
return
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
# Find host for NPIV
|
||||
find_host()
|
||||
{
|
||||
unset host
|
||||
for host in /proc/scsi/qla2xxx/*; do
|
||||
if grep -q $1 $host; then
|
||||
host=${host##*/}
|
||||
return
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
# Find NPIV for dev
|
||||
find_sdev_rev()
|
||||
{
|
||||
unset npiv
|
||||
for host in /proc/scsi/qla2xxx/*; do
|
||||
h=${host##*/}
|
||||
if test ! -L /sys/class/scsi_device/$h*:0/device/block*; then
|
||||
continue
|
||||
fi
|
||||
dev=`readlink /sys/class/scsi_device/$h*:0/device/block*`
|
||||
dev=${dev##*/}
|
||||
if test $dev = $1; then
|
||||
npiv=`grep adapter-port= $host`
|
||||
npiv=${npiv##*=}
|
||||
npiv=${npiv%;}
|
||||
return
|
||||
hostno=${1/*host/}
|
||||
for sdev in /sys/class/scsi_device/${hostno}:*:$3 ; do
|
||||
if test -e $sdev/device/../fc_trans*/port_name ; then
|
||||
tgtwwpn=`cat $sdev/device/../fc_trans*/port_name | sed -e s/^0x//`
|
||||
if test $tgtwwpn = $2 ; then
|
||||
if test -e $sdev/device/block* ; then
|
||||
dev=`readlink $sdev/device/block*`
|
||||
dev=${dev##*/}
|
||||
return
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
find_qla
|
||||
test -z "$qla" && exit 2
|
||||
|
||||
# Look for the NPIV vhost based on a scsi "sdX" name
|
||||
# $1 is the "sdX" name
|
||||
find_vhost_from_dev()
|
||||
{
|
||||
unset vhost
|
||||
hostno=`readlink /sys/block/$1/device`
|
||||
hostno=${hostno##*/}
|
||||
hostno=${hostno%%:*}
|
||||
if test -z "$hostno" ; then return; fi
|
||||
vhost="host"$hostno
|
||||
}
|
||||
|
||||
|
||||
# We're about to terminate a vhost based on a scsi device
|
||||
# Flush all nodes on that vhost as they are about to go away
|
||||
# $1 is the vhost
|
||||
flush_nodes_on_vhost()
|
||||
{
|
||||
if test ! -x /sbin/blockdev ; then return; fi
|
||||
hostno=${1/*host/}
|
||||
for sdev in /sys/class/scsi_device/${hostno}:* ; do
|
||||
if test -e $sdev/device/block* ; then
|
||||
dev=`readlink $sdev/device/block*`
|
||||
dev=${dev##*/}
|
||||
dev="/dev/"$dev
|
||||
if test -n "$dev"; then
|
||||
blockdev --flushbufs $dev
|
||||
fi
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
|
||||
# Terminate a NPIV vhost
|
||||
# $1 is vhost
|
||||
delete_vhost()
|
||||
{
|
||||
# use upstream interface
|
||||
for vport in /sys/class/fc_vports/* ; do
|
||||
if test -e $vport/device/$1 ; then
|
||||
if test -e $vport/vport_delete ; then
|
||||
echo "1" > $vport/vport_delete
|
||||
if test $? -ne 0 ; then exit 6; fi
|
||||
sleep 4
|
||||
return
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
# use vendor specific interface
|
||||
|
||||
# Emulex
|
||||
if test -e /sys/class/fc_host/$1/device/../scsi_host*/lpfc_drvr_version ; then
|
||||
shost=`ls -1d /sys/class/fc_host/$1/device/../scsi_host* | sed s/.*scsi_host://`
|
||||
vportwwpn=`cat /sys/class/fc_host/$1/port_name | sed s/^0x//`
|
||||
vportwwnn=`cat /sys/class/fc_host/$1/node_name | sed s/^0x//`
|
||||
echo "$vportwwpn:$vportwwnn" > /sys/class/scsi_host/$shost/vport_delete
|
||||
if test $? -ne 0 ; then exit 6; fi
|
||||
sleep 4
|
||||
return
|
||||
fi
|
||||
|
||||
# Qlogic
|
||||
if test -e /sys/class/fc_host/$1/device/../scsi_host*/driver_version ; then
|
||||
shost=`ls -1d /sys/class/fc_host/$1/device/../scsi_host* | sed s/.*scsi_host://`
|
||||
vportwwpn=`cat /sys/class/fc_host/$1/port_name | sed s/^0x//`
|
||||
vportwwnn=`cat /sys/class/fc_host/$1/node_name | sed s/^0x//`
|
||||
echo "$vportwwpn:$vportwwnn" > /sys/class/scsi_host/$shost/vport_delete
|
||||
if test $? -ne 0 ; then exit 6; fi
|
||||
sleep 4
|
||||
return
|
||||
fi
|
||||
|
||||
exit 6
|
||||
}
|
||||
|
||||
case "$command" in
|
||||
add)
|
||||
# Params is one big arg, with fields separated by hyphens:
|
||||
# FABRIC-VPWWPN-VPWWNN-TGTWWPN-LUN#
|
||||
# arg 2 - Fabric Name
|
||||
# arg 3 - VPORT's WWPN
|
||||
# arg 4 - VPORT's WWNN
|
||||
# arg 5 - Target's WWPN
|
||||
# arg 6 - LUN # on Target
|
||||
# no wwn contains a leading 0x - it is a 16 character hex value
|
||||
# You may want to optionally pick a specific adapter ?
|
||||
par=`xenstore-read $XENBUS_PATH/params` || true
|
||||
#par=$2
|
||||
NPIV=$par
|
||||
find_sdev $NPIV
|
||||
if test -z "$dev"; then
|
||||
echo "scsi-qlavportc=$NPIV" > $qla
|
||||
NPIVARGS=$par;
|
||||
LUN=${NPIVARGS##*-*-*-*-}; NPIVARGS=${NPIVARGS%-*}
|
||||
if test $LUN = $NPIVARGS ; then exit 1; fi
|
||||
TGTWWPN=${NPIVARGS##*-*-*-}; NPIVARGS=${NPIVARGS%-*}
|
||||
if test $TGTWWPN = $NPIVARGS ; then exit 1; fi
|
||||
VPORTWWNN=${NPIVARGS##*-*-}; NPIVARGS=${NPIVARGS%-*}
|
||||
if test $VPORTWWNN = $NPIVARGS ; then exit 1; fi
|
||||
VPORTWWPN=${NPIVARGS##*-}; NPIVARGS=${NPIVARGS%-*}
|
||||
if test $VPORTWWPN = $NPIVARGS ; then exit 1; fi
|
||||
FABRICNM=$NPIVARGS
|
||||
|
||||
# Ensure we compare everything using lower-case hex characters
|
||||
TGTWWPN=`echo $TGTWWPN | tr A-Z a-z`
|
||||
VPORTWWPN=`echo $VPORTWWPN | tr A-Z a-z`
|
||||
VPORTWWNN=`echo $VPORTWWNN | tr A-Z a-z`
|
||||
FABRICNM=`echo $FABRICNM | tr A-Z a-z`
|
||||
|
||||
find_vhost $VPORTWWPN
|
||||
if test -z "$vhost" ; then
|
||||
create_vport $FABRICNM $VPORTWWPN $VPORTWWNN
|
||||
if [ $? -ne 0 ] ; then exit 2; fi
|
||||
sleep 8
|
||||
find_host $NPIV
|
||||
# echo "/sys/class/scsi_host/host$host/scan"
|
||||
echo "- - -" > /sys/class/scsi_host/host$host/scan
|
||||
sleep 1
|
||||
find_sdev $NPIV
|
||||
find_vhost $VPORTWWPN
|
||||
if test -z "$vhost" ; then exit 3; fi
|
||||
fi
|
||||
find_sdev $vhost $TGTWWPN $LUN
|
||||
if test -z "$dev"; then
|
||||
echo "- - -" > /sys/class/scsi_host/$vhost/scan
|
||||
sleep 2
|
||||
find_sdev $vhost $TGTWWPN $LUN
|
||||
fi
|
||||
if test ! -z "$dev"; then
|
||||
xenstore-write $XENBUS_PATH/node /dev/$dev
|
||||
write_dev /dev/$dev
|
||||
exit 0
|
||||
fi
|
||||
exit 1
|
||||
|
||||
exit 4
|
||||
;;
|
||||
|
||||
remove)
|
||||
node=`xenstore-read $XENBUS_PATH/node` || true
|
||||
#node=$2
|
||||
dev=$node; dev=${dev#/dev/}
|
||||
find_sdev_rev $dev
|
||||
if test -x /sbin/blockdev -a -n "$node"; then blockdev --flushbufs $node; fi
|
||||
test -z "$npiv" && exit 2
|
||||
# echo "scsi-qlavportd" > $qla
|
||||
echo "scsi-qlavportd=$npiv" > $qla
|
||||
sleep 4
|
||||
# this is really screwy. the first delete of a lun will
|
||||
# terminate the entire vport (all luns)
|
||||
find_vhost_from_dev $dev
|
||||
if test -z "$vhost" ; then exit 5; fi
|
||||
flush_nodes_on_vhost $vhost
|
||||
delete_vhost $vhost
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
Reference in New Issue
Block a user