1#!/usr/bin/env bash 2# SPDX-License-Identifier: BSD-3-Clause 3# Copyright (C) 2018 Intel Corporation 4# All rights reserved. 5# 6testdir=$(readlink -f $(dirname $0)) 7rootdir=$(readlink -f $testdir/../../..) 8source $rootdir/test/common/autotest_common.sh 9source $rootdir/test/iscsi_tgt/common.sh 10 11iscsitestinit 12 13MALLOC_BDEV_SIZE=64 14MALLOC_BLOCK_SIZE=512 15 16timing_enter start_iscsi_tgt 17 18"${ISCSI_APP[@]}" -m 0x2 -p 1 -s 512 --wait-for-rpc & 19pid=$! 20echo "iSCSI target launched. pid: $pid" 21trap 'killprocess $pid; iscsitestfini; exit 1' SIGINT SIGTERM EXIT 22waitforlisten $pid 23$rpc_py iscsi_set_options -o 30 -a 4 24# Minimal number of bdev io pool (5) and cache (1) 25$rpc_py bdev_set_options -p 5 -c 1 26$rpc_py framework_start_init 27echo "iscsi_tgt is listening. Running tests..." 28 29timing_exit start_iscsi_tgt 30 31$rpc_py iscsi_create_portal_group $PORTAL_TAG $TARGET_IP:$ISCSI_PORT 32$rpc_py iscsi_create_initiator_group $INITIATOR_TAG $INITIATOR_NAME $NETMASK 33$rpc_py bdev_malloc_create $MALLOC_BDEV_SIZE $MALLOC_BLOCK_SIZE 34# "Malloc0:0" ==> use Malloc0 blockdev for LUN0 35# "1:2" ==> map PortalGroup1 to InitiatorGroup2 36# "64" ==> iSCSI queue depth 64 37# "-d" ==> disable CHAP authentication 38$rpc_py iscsi_create_target_node disk1 disk1_alias 'Malloc0:0' $PORTAL_TAG:$INITIATOR_TAG 256 -d 39sleep 1 40trap 'killprocess $pid; iscsitestfini; exit 1' SIGINT SIGTERM EXIT 41 42"$rootdir/build/examples/bdevperf" --json <(initiator_json_config) -q 128 -o 4096 -w write -t 1 43"$rootdir/build/examples/bdevperf" --json <(initiator_json_config) -q 128 -o 4096 -w read -t 1 44"$rootdir/build/examples/bdevperf" --json <(initiator_json_config) -q 128 -o 4096 -w flush -t 1 45"$rootdir/build/examples/bdevperf" --json <(initiator_json_config) -q 128 -o 4096 -w unmap -t 1 46 47trap - SIGINT SIGTERM EXIT 48 49killprocess $pid 50 51iscsitestfini 52