2016-08-03 21:37:16 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
2017-04-04 23:20:16 +00:00
|
|
|
rootdir=$(readlink -f $testdir/../../..)
|
2016-08-03 21:37:16 +00:00
|
|
|
source $rootdir/scripts/autotest_common.sh
|
2017-05-24 23:29:24 +00:00
|
|
|
source $rootdir/test/iscsi_tgt/common.sh
|
2016-08-03 21:37:16 +00:00
|
|
|
|
|
|
|
timing_enter filesystem
|
|
|
|
|
|
|
|
# iSCSI target configuration
|
|
|
|
PORT=3260
|
|
|
|
INITIATOR_TAG=2
|
|
|
|
INITIATOR_NAME=ALL
|
|
|
|
NETMASK=$INITIATOR_IP/32
|
2016-10-17 08:30:26 +00:00
|
|
|
MALLOC_BDEV_SIZE=256
|
2016-08-03 21:37:16 +00:00
|
|
|
MALLOC_BLOCK_SIZE=512
|
|
|
|
|
|
|
|
rpc_py="python $rootdir/scripts/rpc.py"
|
|
|
|
|
2017-05-25 20:06:51 +00:00
|
|
|
timing_enter start_iscsi_tgt
|
|
|
|
|
2017-05-25 03:58:35 +00:00
|
|
|
$ISCSI_APP -c $testdir/iscsi.conf -m $ISCSI_TEST_CORE_MASK &
|
2016-08-03 21:37:16 +00:00
|
|
|
pid=$!
|
|
|
|
echo "Process pid: $pid"
|
|
|
|
|
2017-01-27 22:10:58 +00:00
|
|
|
trap "killprocess $pid; exit 1" SIGINT SIGTERM EXIT
|
2016-08-03 21:37:16 +00:00
|
|
|
|
2017-11-09 23:33:29 +00:00
|
|
|
waitforlisten $pid
|
2016-08-03 21:37:16 +00:00
|
|
|
echo "iscsi_tgt is listening. Running tests..."
|
|
|
|
|
2017-05-25 20:06:51 +00:00
|
|
|
timing_exit start_iscsi_tgt
|
|
|
|
|
2016-08-03 21:37:16 +00:00
|
|
|
$rpc_py add_portal_group 1 $TARGET_IP:$PORT
|
|
|
|
$rpc_py add_initiator_group $INITIATOR_TAG $INITIATOR_NAME $NETMASK
|
2016-10-17 08:30:26 +00:00
|
|
|
$rpc_py construct_malloc_bdev $MALLOC_BDEV_SIZE $MALLOC_BLOCK_SIZE
|
2016-08-03 21:37:16 +00:00
|
|
|
# "Malloc0:0" ==> use Malloc0 blockdev for LUN0
|
|
|
|
# "1:2" ==> map PortalGroup1 to InitiatorGroup2
|
|
|
|
# "64" ==> iSCSI queue depth 64
|
|
|
|
# "1 0 0 0" ==> disable CHAP authentication
|
|
|
|
$rpc_py construct_target_node Target3 Target3_alias 'Malloc0:0' '1:2' 256 1 0 0 0
|
|
|
|
sleep 1
|
|
|
|
|
|
|
|
iscsiadm -m discovery -t sendtargets -p $TARGET_IP:$PORT
|
|
|
|
iscsiadm -m node --login -p $TARGET_IP:$PORT
|
|
|
|
|
2017-01-27 22:10:58 +00:00
|
|
|
trap "umount /mnt/device; rm -rf /mnt/device; iscsicleanup; killprocess $pid; exit 1" SIGINT SIGTERM EXIT
|
2016-08-03 21:37:16 +00:00
|
|
|
|
|
|
|
sleep 1
|
|
|
|
|
|
|
|
mkdir -p /mnt/device
|
|
|
|
|
|
|
|
dev=$(iscsiadm -m session -P 3 | grep "Attached scsi disk" | awk '{print $4}')
|
|
|
|
|
|
|
|
parted -s /dev/$dev mklabel msdos
|
|
|
|
parted -s /dev/$dev mkpart primary '0%' '100%'
|
|
|
|
sleep 1
|
|
|
|
|
|
|
|
for fstype in "ext4" "btrfs" "xfs"; do
|
|
|
|
|
|
|
|
if [ "$fstype" == "ext4" ]; then
|
|
|
|
mkfs.${fstype} -F /dev/${dev}1
|
|
|
|
else
|
|
|
|
mkfs.${fstype} -f /dev/${dev}1
|
|
|
|
fi
|
|
|
|
mount /dev/${dev}1 /mnt/device
|
|
|
|
touch /mnt/device/aaa
|
|
|
|
umount /mnt/device
|
|
|
|
|
|
|
|
iscsiadm -m node --logout
|
|
|
|
sleep 1
|
|
|
|
iscsiadm -m node --login -p $TARGET_IP:$PORT
|
|
|
|
sleep 1
|
|
|
|
dev=$(iscsiadm -m session -P 3 | grep "Attached scsi disk" | awk '{print $4}')
|
|
|
|
mount -o rw /dev/${dev}1 /mnt/device
|
|
|
|
|
|
|
|
if [ -f "/mnt/device/aaa" ]; then
|
|
|
|
echo "File existed."
|
|
|
|
else
|
|
|
|
echo "File doesn't exist."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm -rf /mnt/device/aaa
|
|
|
|
umount /mnt/device
|
|
|
|
done
|
|
|
|
|
|
|
|
rm -rf /mnt/device
|
|
|
|
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
|
|
|
|
|
|
iscsicleanup
|
|
|
|
killprocess $pid
|
|
|
|
timing_exit filesystem
|