xref: /spdk/test/fuzz/autofuzz_nvmf.sh (revision 7640e3fc9f22ca14c20c87930b6d6108a10f2f0c)
1#!/usr/bin/env bash
2#  SPDX-License-Identifier: BSD-3-Clause
3#  Copyright (C) 2019 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/nvmf/common.sh
10
11TEST_TIMEOUT=1200
12
13# This argument is used in addition to the test arguments in autotest_common.sh
14for i in "$@"; do
15	case "$i" in
16		--timeout=*)
17			TEST_TIMEOUT="${i#*=}"
18			;;
19	esac
20done
21
22nvmftestinit
23
24timing_enter nvmf_fuzz_test
25
26trid="trtype:$TEST_TRANSPORT adrfam:IPv4 subnqn:nqn.2016-06.io.spdk:cnode1 traddr:$NVMF_FIRST_TARGET_IP trsvcid:$NVMF_PORT"
27
28"${NVMF_APP[@]}" -m 0xF &> "$output_dir/nvmf_autofuzz_tgt_output.txt" &
29nvmfpid=$!
30
31trap 'process_shm --id $NVMF_APP_SHM_ID; killprocess $nvmfpid; nvmftestfini $1; exit 1' SIGINT SIGTERM EXIT
32
33waitforlisten $nvmfpid
34$rpc_py nvmf_create_transport -t $TEST_TRANSPORT -u 8192
35
36$rpc_py bdev_malloc_create -b Malloc0 64 512
37
38$rpc_py nvmf_create_subsystem nqn.2016-06.io.spdk:cnode1 -a -s SPDK00000000000001
39$rpc_py nvmf_subsystem_add_ns nqn.2016-06.io.spdk:cnode1 Malloc0
40$rpc_py nvmf_subsystem_add_listener nqn.2016-06.io.spdk:cnode1 -t $TEST_TRANSPORT -a $NVMF_FIRST_TARGET_IP -s $NVMF_PORT
41
42# Note that we chose a consistent seed to ensure that this test is consistent in nightly builds.
43$rootdir/test/app/fuzz/nvme_fuzz/nvme_fuzz -m 0xF0 -t $TEST_TIMEOUT -F "$trid" -N -a 2> $output_dir/nvmf_autofuzz_logs.txt
44
45$rpc_py nvmf_delete_subsystem nqn.2016-06.io.spdk:cnode1
46
47trap - SIGINT SIGTERM EXIT
48
49nvmfcleanup
50nvmftestfini
51timing_exit nvmf_fuzz_test
52