2017-03-02 14:12:20 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
BASE_DIR=$(readlink -f $(dirname $0))
|
2017-08-03 20:32:58 +00:00
|
|
|
[[ -z "$COMMON_DIR" ]] && COMMON_DIR="$(cd $BASE_DIR/../common && pwd)"
|
2017-03-02 14:12:20 +00:00
|
|
|
[[ -z "$TEST_DIR" ]] && TEST_DIR="$(cd $BASE_DIR/../../../../ && pwd)"
|
|
|
|
|
|
|
|
dry_run=false
|
|
|
|
no_shutdown=false
|
2017-12-15 15:11:02 +00:00
|
|
|
fio_bin=""
|
|
|
|
remote_fio_bin=""
|
|
|
|
fio_jobs=""
|
2017-06-16 10:03:46 +00:00
|
|
|
test_type=spdk_vhost_scsi
|
2017-03-02 14:12:20 +00:00
|
|
|
reuse_vms=false
|
|
|
|
vms=()
|
|
|
|
used_vms=""
|
|
|
|
x=""
|
|
|
|
|
|
|
|
function usage()
|
|
|
|
{
|
|
|
|
[[ ! -z $2 ]] && ( echo "$2"; echo ""; )
|
|
|
|
echo "Shortcut script for doing automated test"
|
|
|
|
echo "Usage: $(basename $1) [OPTIONS]"
|
|
|
|
echo
|
|
|
|
echo "-h, --help print help and exit"
|
|
|
|
echo " --test-type=TYPE Perform specified test:"
|
|
|
|
echo " virtio - test host virtio-scsi-pci using file as disk image"
|
|
|
|
echo " kernel_vhost - use kernel driver vhost-scsi"
|
2017-06-16 10:03:46 +00:00
|
|
|
echo " spdk_vhost_scsi - use spdk vhost scsi"
|
|
|
|
echo " spdk_vhost_blk - use spdk vhost block"
|
2017-03-02 14:12:20 +00:00
|
|
|
echo "-x set -x for script debug"
|
|
|
|
echo " --fio-bin=FIO Use specific fio binary (will be uploaded to VM)"
|
2017-12-15 15:11:02 +00:00
|
|
|
echo " --fio-job= Fio config to use for test."
|
2017-03-02 14:12:20 +00:00
|
|
|
echo " All VMs will run the same fio job when FIO executes."
|
|
|
|
echo " (no unique jobs for specific VMs)"
|
|
|
|
echo " --work-dir=WORK_DIR Where to find build file. Must exist. [default: $TEST_DIR]"
|
|
|
|
echo " --dry-run Don't perform any tests, run only and wait for enter to terminate"
|
|
|
|
echo " --no-shutdown Don't shutdown at the end but leave envirionment working"
|
|
|
|
echo " --vm=NUM[,OS][,DISKS] VM configuration. This parameter might be used more than once:"
|
|
|
|
echo " NUM - VM number (mandatory)"
|
|
|
|
echo " OS - VM os disk path (optional)"
|
|
|
|
echo " DISKS - VM os test disks/devices path (virtio - optional, kernel_vhost - mandatory)"
|
2017-06-16 10:03:46 +00:00
|
|
|
echo " If test-type=spdk_vhost_blk then each disk can have additional size parameter, e.g."
|
|
|
|
echo " --vm=X,os.qcow,DISK_size_35G; unit can be M or G; default - 20G"
|
2017-03-02 14:12:20 +00:00
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#default raw file is NVMe drive
|
|
|
|
|
|
|
|
while getopts 'xh-:' optchar; do
|
|
|
|
case "$optchar" in
|
|
|
|
-)
|
|
|
|
case "$OPTARG" in
|
|
|
|
help) usage $0 ;;
|
|
|
|
work-dir=*) TEST_DIR="${OPTARG#*=}" ;;
|
|
|
|
fio-bin=*) fio_bin="--fio-bin=${OPTARG#*=}" ;;
|
2017-12-15 15:11:02 +00:00
|
|
|
fio-job=*) fio_job="${OPTARG#*=}" ;;
|
2017-03-02 14:12:20 +00:00
|
|
|
dry-run) dry_run=true ;;
|
|
|
|
no-shutdown) no_shutdown=true ;;
|
|
|
|
test-type=*) test_type="${OPTARG#*=}" ;;
|
|
|
|
vm=*) vms+=("${OPTARG#*=}") ;;
|
|
|
|
*) usage $0 "Invalid argument '$OPTARG'" ;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
h) usage $0 ;;
|
|
|
|
x) set -x
|
|
|
|
x="-x" ;;
|
|
|
|
*) usage $0 "Invalid argument '$OPTARG'"
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift $(( OPTIND - 1 ))
|
|
|
|
|
2017-12-15 15:11:02 +00:00
|
|
|
if [[ ! -r "$fio_job" ]]; then
|
2017-12-18 19:45:33 +00:00
|
|
|
fail "no fio job file specified"
|
2017-03-02 14:12:20 +00:00
|
|
|
fi
|
|
|
|
|
2017-08-03 20:32:58 +00:00
|
|
|
. $COMMON_DIR/common.sh
|
2017-03-02 14:12:20 +00:00
|
|
|
|
|
|
|
trap 'error_exit "${FUNCNAME}" "${LINENO}"' ERR
|
|
|
|
|
|
|
|
vm_kill_all
|
|
|
|
|
2017-06-16 10:03:46 +00:00
|
|
|
if [[ $test_type =~ "spdk_vhost" ]]; then
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "==============="
|
|
|
|
notice ""
|
|
|
|
notice "running SPDK"
|
|
|
|
notice ""
|
2017-12-28 15:18:28 +00:00
|
|
|
spdk_vhost_run $BASE_DIR
|
2017-12-18 19:45:33 +00:00
|
|
|
notice ""
|
2017-03-02 14:12:20 +00:00
|
|
|
fi
|
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "==============="
|
|
|
|
notice ""
|
|
|
|
notice "Setting up VM"
|
|
|
|
notice ""
|
2017-03-02 14:12:20 +00:00
|
|
|
|
|
|
|
rpc_py="python $SPDK_BUILD_DIR/scripts/rpc.py "
|
|
|
|
|
|
|
|
for vm_conf in ${vms[@]}; do
|
|
|
|
IFS=',' read -ra conf <<< "$vm_conf"
|
2017-08-03 20:32:58 +00:00
|
|
|
setup_cmd="$COMMON_DIR/vm_setup.sh $x --work-dir=$TEST_DIR --test-type=$test_type"
|
2017-03-02 14:12:20 +00:00
|
|
|
if [[ x"${conf[0]}" == x"" ]] || ! assert_number ${conf[0]}; then
|
2017-12-18 19:45:33 +00:00
|
|
|
fail "invalid VM configuration syntax $vm_conf"
|
2017-03-02 14:12:20 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Sanity check if VM is not defined twice
|
|
|
|
for vm_num in $used_vms; do
|
|
|
|
if [[ $vm_num -eq ${conf[0]} ]]; then
|
2017-12-18 19:45:33 +00:00
|
|
|
fail "VM$vm_num defined more than twice ( $(printf "'%s' " "${vms[@]}"))!"
|
2017-03-02 14:12:20 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
setup_cmd+=" -f ${conf[0]}"
|
|
|
|
used_vms+=" ${conf[0]}"
|
|
|
|
[[ x"${conf[1]}" != x"" ]] && setup_cmd+=" --os=${conf[1]}"
|
|
|
|
[[ x"${conf[2]}" != x"" ]] && setup_cmd+=" --disk=${conf[2]}"
|
|
|
|
|
2017-06-16 10:03:46 +00:00
|
|
|
if [[ $test_type =~ "spdk_vhost" ]]; then
|
2017-03-15 16:00:55 +00:00
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Adding device via RPC ..."
|
2017-03-02 14:12:20 +00:00
|
|
|
|
|
|
|
while IFS=':' read -ra disks; do
|
|
|
|
for disk in "${disks[@]}"; do
|
2017-06-16 10:03:46 +00:00
|
|
|
if [[ "$test_type" == "spdk_vhost_blk" ]]; then
|
|
|
|
disk=${disk%%_*}
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Creating vhost block controller naa.$disk.${conf[0]} with device $disk"
|
2017-06-16 10:03:46 +00:00
|
|
|
$rpc_py construct_vhost_blk_controller naa.$disk.${conf[0]} $disk
|
|
|
|
else
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Trying to remove nonexistent controller"
|
2017-09-05 18:23:43 +00:00
|
|
|
if $rpc_py remove_vhost_controller unk0 > /dev/null; then
|
2017-12-18 19:45:33 +00:00
|
|
|
error "Removing nonexistent controller succeeded, but it shouldn't"
|
2017-06-16 10:03:46 +00:00
|
|
|
fi
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Creating controller naa.$disk.${conf[0]}"
|
2017-06-16 10:03:46 +00:00
|
|
|
$rpc_py construct_vhost_scsi_controller naa.$disk.${conf[0]}
|
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Adding initial device (0) to naa.$disk.${conf[0]}"
|
2017-06-16 10:03:46 +00:00
|
|
|
$rpc_py add_vhost_scsi_lun naa.$disk.${conf[0]} 0 $disk
|
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Trying to remove nonexistent device on existing controller"
|
2017-12-08 16:05:58 +00:00
|
|
|
if $rpc_py remove_vhost_scsi_target naa.$disk.${conf[0]} 1 > /dev/null; then
|
2017-12-18 19:45:33 +00:00
|
|
|
error "Removing nonexistent device (1) from controller naa.$disk.${conf[0]} succeeded, but it shouldn't"
|
2017-06-16 10:03:46 +00:00
|
|
|
fi
|
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Trying to remove existing device from a controller"
|
2017-12-08 16:05:58 +00:00
|
|
|
$rpc_py remove_vhost_scsi_target naa.$disk.${conf[0]} 0
|
2017-03-15 16:00:55 +00:00
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Trying to remove a just-deleted device from a controller again"
|
2017-12-08 16:05:58 +00:00
|
|
|
if $rpc_py remove_vhost_scsi_target naa.$disk.${conf[0]} 0 > /dev/null; then
|
2017-12-18 19:45:33 +00:00
|
|
|
error "Removing device 0 from controller naa.$disk.${conf[0]} succeeded, but it shouldn't"
|
2017-06-16 10:03:46 +00:00
|
|
|
fi
|
2017-03-15 16:00:55 +00:00
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Re-adding device 0 to naa.$disk.${conf[0]}"
|
2017-06-16 10:03:46 +00:00
|
|
|
$rpc_py add_vhost_scsi_lun naa.$disk.${conf[0]} 0 $disk
|
2017-03-15 16:00:55 +00:00
|
|
|
fi
|
2017-03-02 14:12:20 +00:00
|
|
|
done
|
2017-08-09 13:09:24 +00:00
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Trying to create scsi controller with incorrect cpumask"
|
2017-12-22 08:33:12 +00:00
|
|
|
if $rpc_py construct_vhost_scsi_controller vhost.invalid.cpumask --cpumask 0x2; then
|
2017-12-18 19:45:33 +00:00
|
|
|
error "Creating scsi controller with incorrect cpumask succeeded, but it shouldn't"
|
2017-08-09 13:09:24 +00:00
|
|
|
fi
|
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Trying to remove device from nonexistent scsi controller"
|
2017-12-08 16:05:58 +00:00
|
|
|
if $rpc_py remove_vhost_scsi_target vhost.nonexistent.name 0; then
|
2017-12-18 19:45:33 +00:00
|
|
|
error "Removing device from nonexistent scsi controller succeeded, but it shouldn't"
|
2017-08-09 13:09:24 +00:00
|
|
|
fi
|
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Trying to add device to nonexistent scsi controller"
|
2017-08-09 13:09:24 +00:00
|
|
|
if $rpc_py add_vhost_scsi_lun vhost.nonexistent.name 0 Malloc0; then
|
2017-12-18 19:45:33 +00:00
|
|
|
error "Adding device to nonexistent scsi controller succeeded, but it shouldn't"
|
2017-08-09 13:09:24 +00:00
|
|
|
fi
|
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Trying to create scsi controller with incorrect name"
|
2017-08-09 13:09:24 +00:00
|
|
|
if $rpc_py construct_vhost_scsi_controller .; then
|
2017-12-18 19:45:33 +00:00
|
|
|
error "Creating scsi controller with incorrect name succeeded, but it shouldn't"
|
2017-08-09 13:09:24 +00:00
|
|
|
fi
|
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Trying to create block controller with incorrect cpumask"
|
2017-12-22 08:33:12 +00:00
|
|
|
if $rpc_py construct_vhost_blk_controller vhost.invalid.cpumask Malloc0 --cpumask 0x2; then
|
2017-12-18 19:45:33 +00:00
|
|
|
error "Creating block controller with incorrect cpumask succeeded, but it shouldn't"
|
2017-08-09 13:09:24 +00:00
|
|
|
fi
|
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Trying to remove nonexistent block controller"
|
2017-11-17 23:45:22 +00:00
|
|
|
if $rpc_py remove_vhost_controller vhost.nonexistent.name; then
|
2017-12-18 19:45:33 +00:00
|
|
|
error "Removing nonexistent block controller succeeded, but it shouldn't"
|
2017-08-09 13:09:24 +00:00
|
|
|
fi
|
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Trying to create block controller with incorrect name"
|
2017-11-17 23:45:22 +00:00
|
|
|
if $rpc_py construct_vhost_blk_controller . Malloc0; then
|
2017-12-18 19:45:33 +00:00
|
|
|
error "Creating block controller with incorrect name succeeded, but it shouldn't"
|
2017-08-09 13:09:24 +00:00
|
|
|
fi
|
2017-03-02 14:12:20 +00:00
|
|
|
done <<< "${conf[2]}"
|
|
|
|
unset IFS;
|
2017-07-13 14:37:50 +00:00
|
|
|
$rpc_py get_vhost_controllers
|
2017-03-02 14:12:20 +00:00
|
|
|
fi
|
|
|
|
$setup_cmd
|
|
|
|
done
|
|
|
|
|
|
|
|
# Run everything
|
2017-12-28 15:24:44 +00:00
|
|
|
vm_run $used_vms
|
2017-03-02 14:12:20 +00:00
|
|
|
vm_wait_for_boot 600 $used_vms
|
|
|
|
|
2017-07-26 10:17:52 +00:00
|
|
|
if [[ $test_type == "spdk_vhost_scsi" ]]; then
|
|
|
|
for vm_conf in ${vms[@]}; do
|
|
|
|
IFS=',' read -ra conf <<< "$vm_conf"
|
|
|
|
while IFS=':' read -ra disks; do
|
|
|
|
for disk in "${disks[@]}"; do
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Hotdetach test. Trying to remove existing device from a controller naa.$disk.${conf[0]}"
|
2017-12-08 16:05:58 +00:00
|
|
|
$rpc_py remove_vhost_scsi_target naa.$disk.${conf[0]} 0
|
2017-07-26 10:17:52 +00:00
|
|
|
|
|
|
|
sleep 0.1
|
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Hotattach test. Re-adding device 0 to naa.$disk.${conf[0]}"
|
2017-07-26 10:17:52 +00:00
|
|
|
$rpc_py add_vhost_scsi_lun naa.$disk.${conf[0]} 0 $disk
|
|
|
|
done
|
|
|
|
done <<< "${conf[2]}"
|
|
|
|
unset IFS;
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
sleep 0.1
|
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "==============="
|
|
|
|
notice ""
|
|
|
|
notice "Testing..."
|
2017-03-02 14:12:20 +00:00
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Running fio jobs ..."
|
2017-03-02 14:12:20 +00:00
|
|
|
|
|
|
|
# Check if all VM have disk in tha same location
|
|
|
|
DISK=""
|
|
|
|
|
2017-12-15 15:11:02 +00:00
|
|
|
fio_disks=""
|
2017-03-02 14:12:20 +00:00
|
|
|
for vm_num in $used_vms; do
|
|
|
|
vm_dir=$VM_BASE_DIR/$vm_num
|
2017-04-27 16:34:55 +00:00
|
|
|
|
|
|
|
qemu_mask_param="VM_${vm_num}_qemu_mask"
|
|
|
|
|
|
|
|
host_name="VM-$vm_num-${!qemu_mask_param}"
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Setting up hostname: $host_name"
|
2017-03-02 14:12:20 +00:00
|
|
|
vm_ssh $vm_num "hostname $host_name"
|
|
|
|
vm_start_fio_server $fio_bin $readonly $vm_num
|
|
|
|
|
2017-06-16 10:03:46 +00:00
|
|
|
if [[ "$test_type" == "spdk_vhost_scsi" ]]; then
|
|
|
|
vm_check_scsi_location $vm_num
|
2017-08-25 00:12:56 +00:00
|
|
|
#vm_reset_scsi_devices $vm_num $SCSI_DISK
|
2017-06-16 10:03:46 +00:00
|
|
|
elif [[ "$test_type" == "spdk_vhost_blk" ]]; then
|
|
|
|
vm_check_blk_location $vm_num
|
|
|
|
fi
|
2017-03-02 14:12:20 +00:00
|
|
|
|
2017-12-15 15:11:02 +00:00
|
|
|
fio_disks+=" --vm=${vm_num}$(printf ':/dev/%s' $SCSI_DISK)"
|
2017-03-02 14:12:20 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
if $dry_run; then
|
|
|
|
read -p "Enter to kill evething" xx
|
|
|
|
sleep 3
|
|
|
|
at_app_exit
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2017-12-15 15:11:02 +00:00
|
|
|
run_fio $fio_bin --job-file="$fio_job" --out="$TEST_DIR/fio_results" $fio_disks
|
2017-03-02 14:12:20 +00:00
|
|
|
|
2017-07-08 10:26:37 +00:00
|
|
|
if [[ "$test_type" == "spdk_vhost_scsi" ]]; then
|
|
|
|
for vm_num in $used_vms; do
|
|
|
|
vm_reset_scsi_devices $vm_num $SCSI_DISK
|
|
|
|
done
|
|
|
|
fi
|
2017-03-02 14:12:20 +00:00
|
|
|
|
|
|
|
if ! $no_shutdown; then
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "==============="
|
|
|
|
notice "APP EXITING"
|
|
|
|
notice "killing all VMs"
|
2017-06-19 11:19:51 +00:00
|
|
|
vm_shutdown_all
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "waiting 2 seconds to let all VMs die"
|
2017-03-15 16:00:55 +00:00
|
|
|
sleep 2
|
2017-06-16 10:03:46 +00:00
|
|
|
if [[ $test_type =~ "spdk_vhost" ]]; then
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Removing vhost devices & controllers via RPC ..."
|
2017-03-15 16:00:55 +00:00
|
|
|
for vm_conf in ${vms[@]}; do
|
|
|
|
IFS=',' read -ra conf <<< "$vm_conf"
|
|
|
|
|
|
|
|
while IFS=':' read -ra disks; do
|
|
|
|
for disk in "${disks[@]}"; do
|
2017-06-16 10:03:46 +00:00
|
|
|
disk=${disk%%_*}
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Removing all vhost devices from controller naa.$disk.${conf[0]}"
|
2017-09-05 18:23:43 +00:00
|
|
|
if [[ "$test_type" == "spdk_vhost_scsi" ]]; then
|
2017-12-08 16:05:58 +00:00
|
|
|
$rpc_py remove_vhost_scsi_target naa.$disk.${conf[0]} 0
|
2017-06-16 10:03:46 +00:00
|
|
|
fi
|
2017-09-05 18:23:43 +00:00
|
|
|
|
|
|
|
$rpc_py remove_vhost_controller naa.$disk.${conf[0]}
|
2017-03-15 16:00:55 +00:00
|
|
|
done
|
|
|
|
done <<< "${conf[2]}"
|
|
|
|
done
|
|
|
|
fi
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "Testing done -> shutting down"
|
|
|
|
notice "killing vhost app"
|
2017-03-15 16:00:55 +00:00
|
|
|
spdk_vhost_kill
|
|
|
|
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "EXIT DONE"
|
|
|
|
notice "==============="
|
2017-03-02 14:12:20 +00:00
|
|
|
else
|
2017-12-18 19:45:33 +00:00
|
|
|
notice "==============="
|
|
|
|
notice ""
|
|
|
|
notice "Leaving environment working!"
|
|
|
|
notice ""
|
|
|
|
notice "==============="
|
2017-03-02 14:12:20 +00:00
|
|
|
fi
|