2016-10-17 02:15:21 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
2017-04-04 23:20:16 +00:00
|
|
|
rootdir=$(readlink -f $testdir/../../..)
|
2018-02-27 22:14:08 +00:00
|
|
|
source $rootdir/test/common/autotest_common.sh
|
2017-05-24 23:29:24 +00:00
|
|
|
source $rootdir/test/iscsi_tgt/common.sh
|
2016-10-17 02:15:21 +00:00
|
|
|
|
2017-08-09 00:21:24 +00:00
|
|
|
if ! hash ceph; then
|
|
|
|
echo "Ceph not detected on this system; skipping RBD tests"
|
2016-10-17 02:15:21 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
timing_enter rbd
|
|
|
|
|
|
|
|
# iSCSI target configuration
|
|
|
|
PORT=3260
|
|
|
|
INITIATOR_TAG=2
|
2017-11-29 05:51:23 +00:00
|
|
|
INITIATOR_NAME=ANY
|
2016-10-17 02:15:21 +00:00
|
|
|
NETMASK=$INITIATOR_IP/32
|
|
|
|
|
|
|
|
rpc_py="python $rootdir/scripts/rpc.py"
|
|
|
|
fio_py="python $rootdir/scripts/fio.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-10-17 02:15:21 +00:00
|
|
|
pid=$!
|
|
|
|
|
|
|
|
trap "killprocess $pid; exit 1" SIGINT SIGTERM EXIT
|
|
|
|
|
2017-11-09 23:33:29 +00:00
|
|
|
waitforlisten $pid
|
2016-10-17 02:15:21 +00:00
|
|
|
echo "iscsi_tgt is listening. Running tests..."
|
|
|
|
|
2017-05-25 20:06:51 +00:00
|
|
|
timing_exit start_iscsi_tgt
|
|
|
|
|
2016-10-17 02:15:21 +00:00
|
|
|
$rpc_py add_portal_group 1 $TARGET_IP:$PORT
|
|
|
|
$rpc_py add_initiator_group $INITIATOR_TAG $INITIATOR_NAME $NETMASK
|
|
|
|
$rpc_py construct_rbd_bdev $RBD_POOL $RBD_NAME 4096
|
2017-08-09 00:54:26 +00:00
|
|
|
$rpc_py get_bdevs
|
2016-10-17 02:15:21 +00:00
|
|
|
# "Ceph0:0" ==> use Ceph0 blockdev for LUN0
|
|
|
|
# "1:2" ==> map PortalGroup1 to InitiatorGroup2
|
|
|
|
# "64" ==> iSCSI queue depth 64
|
|
|
|
# "1 0 0 0" ==> disable CHAP authentication
|
2018-02-21 17:51:16 +00:00
|
|
|
$rpc_py construct_target_node Target3 Target3_alias 'Ceph0:0' '1:2' 64 -d
|
2016-10-17 02:15:21 +00:00
|
|
|
sleep 1
|
|
|
|
|
|
|
|
iscsiadm -m discovery -t sendtargets -p $TARGET_IP:$PORT
|
|
|
|
iscsiadm -m node --login -p $TARGET_IP:$PORT
|
|
|
|
|
|
|
|
trap "iscsicleanup; killprocess $pid; exit 1" SIGINT SIGTERM EXIT
|
|
|
|
|
|
|
|
sleep 1
|
|
|
|
$fio_py 4096 1 randrw 1 verify
|
|
|
|
$fio_py 131072 32 randrw 1 verify
|
|
|
|
|
|
|
|
rm -f ./local-job0-0-verify.state
|
|
|
|
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
|
|
|
|
|
|
iscsicleanup
|
|
|
|
killprocess $pid
|
|
|
|
|
2017-12-18 21:20:41 +00:00
|
|
|
report_test_completion "iscsi_rbd"
|
2016-10-17 02:15:21 +00:00
|
|
|
timing_exit rbd
|