From: Alan Adamson <alan.adamson@oracle.com>
To: linux-block@vger.kernel.org
Cc: alan.adamson@oracle.com, chaitanyak@nvidia.com,
linux-nvme@lists.infradead.org, shinichiro.kawasaki@wdc.com
Subject: [PATCH blktests V2 1/1] nvme: Add passthru error logging tests to nvme/039
Date: Tue, 20 Feb 2024 15:30:42 -0800 [thread overview]
Message-ID: <20240220233042.2895330-2-alan.adamson@oracle.com> (raw)
In-Reply-To: <20240220233042.2895330-1-alan.adamson@oracle.com>
Tests the ability to enable and disable error logging for passthru admin commands issued to
the controller and passthru IO commands issued to a namespace.
These tests will only run on 6.8.0 and greater kernels.
Signed-off-by: Alan Adamson <alan.adamson@oracle.com>
---
tests/nvme/039 | 62 ++++++++++++++++++++++++++++++++++++++++++++++
tests/nvme/039.out | 2 ++
tests/nvme/rc | 37 +++++++++++++++++++++++++++
3 files changed, 101 insertions(+)
diff --git a/tests/nvme/039 b/tests/nvme/039
index 73b53d0b949c..38a866417db9 100755
--- a/tests/nvme/039
+++ b/tests/nvme/039
@@ -130,6 +130,46 @@ inject_invalid_admin_cmd()
fi
}
+inject_invalid_io_cmd_passthru()
+{
+ local ns
+
+ ns=$(echo "$1" | cut -d "n" -f3)
+
+ # Inject a 'Invalid Command Opcode' (0x1) on a read (0x02)
+ _nvme_enable_err_inject "$ns_dev" 0 100 1 0x1 1
+
+ nvme io-passthru /dev/"$1" --opcode=0x02 --namespace-id="$ns" \
+ --data-len=512 --read --cdw10=0 --cdw11=0 --cdw12="$2" 2> /dev/null 1>&2
+
+ _nvme_disable_err_inject "$1"
+ if ${nvme_verbose_errors}; then
+ last_dmesg 2 | grep "Invalid Command Opcode (" | \
+ sed 's/nvme.*://g'
+ else
+ last_dmesg 2 | grep "Cmd(0x2" | sed 's/I\/O Cmd/Read/g' | \
+ sed 's/I\/O Error/Invalid Command Opcode/g' | \
+ sed 's/nvme.*://g'
+ fi
+}
+
+RUN_PASSTHRU_TESTS=0;
+
+# Kernel must be at least 6.8.0 to run passthru logging tests
+check_kver680_for_passthru_tests() {
+ local d=6 e=8 f=0
+
+ IFS='.' read -r a b c < <(uname -r | sed 's/-.*//;s/[^.0-9]//')
+
+ if [ $((a * 65536 + b * 256 + c)) -lt $((d * 65536 + e * 256 + f)) ];
+ then
+ RUN_PASSTHRU_TESTS=0
+ return
+ fi
+
+ RUN_PASSTHRU_TESTS=1
+}
+
test_device() {
echo "Running ${TEST_NAME}"
@@ -143,6 +183,8 @@ test_device() {
nvme_verbose_errors=false
fi
+ check_kver680_for_passthru_tests
+
ns_dev=${TEST_DEV##*/}
ctrl_dev=${ns_dev%n*}
@@ -155,6 +197,26 @@ test_device() {
inject_invalid_status_on_read "${ns_dev}"
inject_write_fault_on_write "${ns_dev}"
+ if [ $RUN_PASSTHRU_TESTS -ne 0 ]; then
+ _nvme_passthru_logging_setup "${ns_dev}" "${ctrl_dev}"
+
+ # Test Pass Thru Admin Logging
+ _nvme_disable_passthru_admin_error_logging "${ctrl_dev}"
+ inject_invalid_admin_cmd "${ctrl_dev}"
+ _nvme_enable_passthru_admin_error_logging "${ctrl_dev}"
+ inject_access_denied_on_identify "${ctrl_dev}"
+
+ # Test Pass Thru IO Logging
+ _nvme_disable_passthru_io_error_logging "${ns_dev}" "${ctrl_dev}"
+ inject_invalid_io_cmd_passthru "${ns_dev}" 0
+ _nvme_enable_passthru_io_error_logging "${ns_dev}" "${ctrl_dev}"
+ inject_invalid_io_cmd_passthru "${ns_dev}" 1
+
+ _nvme_passthru_logging_cleanup "${ns_dev}" "${ctrl_dev}"
+ else
+ echo " Identify(0x6), Access Denied (sct 0x2 / sc 0x86) DNR cdw10=0x1 cdw11=0x0 cdw12=0x0 cdw13=0x0 cdw14=0x0 cdw15=0x0"
+ echo " Read(0x2), Invalid Command Opcode (sct 0x0 / sc 0x1) DNR cdw10=0x0 cdw11=0x0 cdw12=0x1 cdw13=0x0 cdw14=0x0 cdw15=0x0"
+ fi
_nvme_err_inject_cleanup "${ns_dev}" "${ctrl_dev}"
echo "Test complete"
diff --git a/tests/nvme/039.out b/tests/nvme/039.out
index 139070d22240..fea76cfd1245 100644
--- a/tests/nvme/039.out
+++ b/tests/nvme/039.out
@@ -2,4 +2,6 @@ Running nvme/039
Read(0x2) @ LBA 0, 1 blocks, Unrecovered Read Error (sct 0x2 / sc 0x81) DNR
Read(0x2) @ LBA 0, 1 blocks, Unknown (sct 0x3 / sc 0x75) DNR
Write(0x1) @ LBA 0, 1 blocks, Write Fault (sct 0x2 / sc 0x80) DNR
+ Identify(0x6), Access Denied (sct 0x2 / sc 0x86) DNR cdw10=0x1 cdw11=0x0 cdw12=0x0 cdw13=0x0 cdw14=0x0 cdw15=0x0
+ Read(0x2), Invalid Command Opcode (sct 0x0 / sc 0x1) DNR cdw10=0x0 cdw11=0x0 cdw12=0x1 cdw13=0x0 cdw14=0x0 cdw15=0x0
Test complete
diff --git a/tests/nvme/rc b/tests/nvme/rc
index dfc4c1ef1975..2d6ebeab2f6f 100644
--- a/tests/nvme/rc
+++ b/tests/nvme/rc
@@ -943,6 +943,23 @@ _check_uuid() {
declare -A NS_DEV_FAULT_INJECT_SAVE
declare -A CTRL_DEV_FAULT_INJECT_SAVE
+ns_dev_passthru_logging=off
+ctrl_dev_passthru_logging=off
+
+_nvme_passthru_logging_setup()
+{
+ ctrl_dev_passthru_logging=$(cat /sys/class/nvme/"$2"/passthru_err_log_enabled)
+ ns_dev_passthru_logging=$(cat /sys/class/nvme/"$2"/"$1"/passthru_err_log_enabled)
+
+ _nvme_disable_passthru_admin_error_logging "$2"
+ _nvme_disable_passthru_io_error_logging "$1" "$2"
+}
+
+_nvme_passthru_logging_cleanup()
+{
+ echo $ctrl_dev_passthru_logging > /sys/class/nvme/"$2"/passthru_err_log_enabled
+ echo $ns_dev_passthru_logging > /sys/class/nvme/"$2"/"$1"/passthru_err_log_enabled
+}
_nvme_err_inject_setup()
{
@@ -985,6 +1002,26 @@ _nvme_disable_err_inject()
echo 0 > /sys/kernel/debug/"$1"/fault_inject/times
}
+_nvme_enable_passthru_admin_error_logging()
+{
+ echo on > /sys/class/nvme/"$1"/passthru_err_log_enabled
+}
+
+_nvme_enable_passthru_io_error_logging()
+{
+ echo on > /sys/class/nvme/"$2"/"$1"/passthru_err_log_enabled
+}
+
+_nvme_disable_passthru_admin_error_logging()
+{
+ echo off > /sys/class/nvme/"$1"/passthru_err_log_enabled
+}
+
+_nvme_disable_passthru_io_error_logging()
+{
+ echo off > /sys/class/nvme/"$2"/"$1"/passthru_err_log_enabled
+}
+
_nvme_reset_ctrl() {
echo 1 > /sys/class/nvme/"$1"/reset_controller
}
--
2.39.3
next prev parent reply other threads:[~2024-02-20 23:29 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-20 23:30 [PATCH blktests V2 0/1] nvme: Add passthru error logging tests to nvme/039 Alan Adamson
2024-02-20 23:30 ` Alan Adamson [this message]
2024-02-21 7:12 ` [PATCH blktests V2 1/1] " Chaitanya Kulkarni
2024-02-21 10:41 ` Shinichiro Kawasaki
2024-02-21 16:42 ` alan.adamson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240220233042.2895330-2-alan.adamson@oracle.com \
--to=alan.adamson@oracle.com \
--cc=chaitanyak@nvidia.com \
--cc=linux-block@vger.kernel.org \
--cc=linux-nvme@lists.infradead.org \
--cc=shinichiro.kawasaki@wdc.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox