2018-03-16 11:49:11 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
|
|
|
rootdir=$(readlink -f $testdir/../../..)
|
|
|
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
|
source $rootdir/test/iscsi_tgt/common.sh
|
|
|
|
|
|
|
|
|
|
timing_enter initiator
|
|
|
|
|
|
|
|
|
|
MALLOC_BDEV_SIZE=64
|
|
|
|
|
MALLOC_BLOCK_SIZE=512
|
|
|
|
|
|
|
|
|
|
rpc_py="python $rootdir/scripts/rpc.py"
|
|
|
|
|
|
|
|
|
|
timing_enter start_iscsi_tgt
|
|
|
|
|
|
|
|
|
|
# Start the iSCSI target without using stub
|
|
|
|
|
# Reason: Two SPDK processes will be started
|
|
|
|
|
$rootdir/app/iscsi_tgt/iscsi_tgt -c $testdir/iscsi.conf -m 0x2 -p 1 -s 512 &
|
|
|
|
|
pid=$!
|
|
|
|
|
echo "iSCSI target launched. pid: $pid"
|
|
|
|
|
trap "killprocess $pid;exit 1" SIGINT SIGTERM EXIT
|
|
|
|
|
waitforlisten $pid
|
|
|
|
|
echo "iscsi_tgt is listening. Running tests..."
|
|
|
|
|
|
|
|
|
|
timing_exit start_iscsi_tgt
|
|
|
|
|
|
2018-03-27 13:56:16 +00:00
|
|
|
$rpc_py add_portal_group $PORTAL_TAG $TARGET_IP:$ISCSI_PORT
|
2018-03-16 11:49:11 +00:00
|
|
|
$rpc_py add_initiator_group $INITIATOR_TAG $INITIATOR_NAME $NETMASK
|
|
|
|
|
$rpc_py construct_malloc_bdev $MALLOC_BDEV_SIZE $MALLOC_BLOCK_SIZE
|
|
|
|
|
# "Malloc0:0" ==> use Malloc0 blockdev for LUN0
|
|
|
|
|
# "1:2" ==> map PortalGroup1 to InitiatorGroup2
|
|
|
|
|
# "64" ==> iSCSI queue depth 64
|
|
|
|
|
# "-d" ==> disable CHAP authentication
|
2018-03-28 13:13:58 +00:00
|
|
|
$rpc_py construct_target_node disk1 disk1_alias 'Malloc0:0' $PORTAL_TAG:$INITIATOR_TAG 256 -d
|
2018-03-16 11:49:11 +00:00
|
|
|
sleep 1
|
|
|
|
|
trap "killprocess $pid; exit 1" SIGINT SIGTERM EXIT
|
2018-03-22 19:43:32 +00:00
|
|
|
$rootdir/test/bdev/bdevperf/bdevperf -c $testdir/bdev.conf -q 128 -s 4096 -w verify -t 5 -d 512
|
2018-03-16 11:49:11 +00:00
|
|
|
|
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
|
|
|
|
|
|
|
|
killprocess $pid
|
|
|
|
|
|
|
|
|
|
report_test_completion "iscsi_initiator"
|
|
|
|
|
timing_exit initiator
|