All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] nvme: test out-of-range I/O access (file backend)
@ 2019-03-11 22:18 Sagi Grimberg
  2019-03-11 22:49 ` Omar Sandoval
  0 siblings, 1 reply; 4+ messages in thread
From: Sagi Grimberg @ 2019-03-11 22:18 UTC (permalink / raw)


Test that we correctly fail an out-of-range access
with a proper NVMe status code.

Signed-off-by: Sagi Grimberg <sagi at grimberg.me>
---
Changes from v1:
- "ERROR:" prefix to err message
- document that we are testing file backend

 tests/nvme/018     | 58 ++++++++++++++++++++++++++++++++++++++++++++++
 tests/nvme/018.out |  6 +++++
 2 files changed, 64 insertions(+)
 create mode 100755 tests/nvme/018
 create mode 100755 tests/nvme/018.out

diff --git a/tests/nvme/018 b/tests/nvme/018
new file mode 100755
index 000000000000..30140ae15f9d
--- /dev/null
+++ b/tests/nvme/018
@@ -0,0 +1,58 @@
+#!/bin/bash
+# SPDX-License-Identifier: GPL-3.0+
+# Copyright (C) 2018 Sagi Grimberg
+#
+# Test NVMe out of range access on a file backend
+
+. tests/nvme/rc
+
+DESCRIPTION="unit test NVMe-oF out of range access on a file backend"
+QUICK=1
+
+requires() {
+	_have_program nvme && _have_modules nvme-loop && _have_modules loop && \
+		_have_configfs
+}
+
+test() {
+	echo "Running ${TEST_NAME}"
+
+	modprobe nvmet
+	modprobe nvme-loop
+
+	local port
+	local nvmedev
+	local file_path="$TMPDIR/img"
+	local subsys_name="blktests-subsystem-1"
+
+	truncate -s 1G "${file_path}"
+
+	_create_nvmet_subsystem "${subsys_name}" "${file_path}" \
+		 "91fdba0d-f87b-4c25-b80f-db7be1418b9e"
+	port="$(_create_nvmet_port "loop")"
+	_add_nvmet_subsys_to_port "${port}" "${subsys_name}"
+
+	nvme connect -t loop -n "${subsys_name}"
+
+	nvmedev="$(_find_nvme_loop_dev)"
+	cat "/sys/block/${nvmedev}n1/uuid"
+	cat "/sys/block/${nvmedev}n1/wwid"
+
+	sectors=$(blockdev --getsz /dev/${nvmedev}n1)
+	bs=$(blockdev --getbsz /dev/${nvmedev}n1)
+
+	nvme read "/dev/${nvmedev}n1" -s $sectors -c 0 -z $bs
+	if [[ ! $? ]]; then
+		echo "ERROR: Successfully read out of device lba range"
+	fi
+
+	nvme disconnect -n "${subsys_name}"
+
+	_remove_nvmet_subsystem_from_port "${port}" "${subsys_name}"
+	_remove_nvmet_subsystem "${subsys_name}"
+	_remove_nvmet_port "${port}"
+
+	rm "${file_path}"
+
+	echo "Test complete"
+}
diff --git a/tests/nvme/018.out b/tests/nvme/018.out
new file mode 100755
index 000000000000..0ab3b2a892d3
--- /dev/null
+++ b/tests/nvme/018.out
@@ -0,0 +1,6 @@
+Running nvme/018
+91fdba0d-f87b-4c25-b80f-db7be1418b9e
+uuid.91fdba0d-f87b-4c25-b80f-db7be1418b9e
+read:CAP_EXCEEDED: The execution of the command has caused the capacity of the namespace to be exceeded(6081)
+NQN:blktests-subsystem-1 disconnected 1 controller(s)
+Test complete
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH v2] nvme: test out-of-range I/O access (file backend)
  2019-03-11 22:18 [PATCH v2] nvme: test out-of-range I/O access (file backend) Sagi Grimberg
@ 2019-03-11 22:49 ` Omar Sandoval
  2019-03-11 22:58   ` Sagi Grimberg
  0 siblings, 1 reply; 4+ messages in thread
From: Omar Sandoval @ 2019-03-11 22:49 UTC (permalink / raw)


On Mon, Mar 11, 2019@03:18:55PM -0700, Sagi Grimberg wrote:
> Test that we correctly fail an out-of-range access
> with a proper NVMe status code.
> 
> Signed-off-by: Sagi Grimberg <sagi at grimberg.me>
> ---
> Changes from v1:
> - "ERROR:" prefix to err message
> - document that we are testing file backend

Ah, so this fails for me because I have nvme-cli 1.7 which is missing
your 9c891c139894 ("nvmet: check fileio lba range access boundaries").
How about we just look at the exit code of nvme read instead of relying
on that output?

diff --git a/tests/nvme/018 b/tests/nvme/018
index 30140ae..b09c29c 100755
--- a/tests/nvme/018
+++ b/tests/nvme/018
@@ -2,7 +2,8 @@
 # SPDX-License-Identifier: GPL-3.0+
 # Copyright (C) 2018 Sagi Grimberg
 #
-# Test NVMe out of range access on a file backend
+# Test NVMe out of range access on a file backend. Regression test for commit
+# 9c891c139894 ("nvmet: check fileio lba range access boundaries").
 
 . tests/nvme/rc
 
@@ -38,11 +39,12 @@ test() {
 	cat "/sys/block/${nvmedev}n1/uuid"
 	cat "/sys/block/${nvmedev}n1/wwid"
 
-	sectors=$(blockdev --getsz /dev/${nvmedev}n1)
-	bs=$(blockdev --getbsz /dev/${nvmedev}n1)
+	local sectors
+	local bs
+	sectors="$(blockdev --getsz "/dev/${nvmedev}n1")"
+	bs="$(blockdev --getbsz "/dev/${nvmedev}n1")"
 
-	nvme read "/dev/${nvmedev}n1" -s $sectors -c 0 -z $bs
-	if [[ ! $? ]]; then
+	if nvme read "/dev/${nvmedev}n1" -s "$sectors" -c 0 -z "$bs"; then
 		echo "ERROR: Successfully read out of device lba range"
 	fi
 
diff --git a/tests/nvme/018.out b/tests/nvme/018.out
old mode 100755
new mode 100644
index 0ab3b2a..68a0194
--- a/tests/nvme/018.out
+++ b/tests/nvme/018.out
@@ -1,6 +1,5 @@
 Running nvme/018
 91fdba0d-f87b-4c25-b80f-db7be1418b9e
 uuid.91fdba0d-f87b-4c25-b80f-db7be1418b9e
-read:CAP_EXCEEDED: The execution of the command has caused the capacity of the namespace to be exceeded(6081)
 NQN:blktests-subsystem-1 disconnected 1 controller(s)
 Test complete

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH v2] nvme: test out-of-range I/O access (file backend)
  2019-03-11 22:49 ` Omar Sandoval
@ 2019-03-11 22:58   ` Sagi Grimberg
  2019-03-11 22:59     ` Omar Sandoval
  0 siblings, 1 reply; 4+ messages in thread
From: Sagi Grimberg @ 2019-03-11 22:58 UTC (permalink / raw)



> Ah, so this fails for me because I have nvme-cli 1.7 which is missing
> your 9c891c139894 ("nvmet: check fileio lba range access boundaries").
> How about we just look at the exit code of nvme read instead of relying
> on that output?

Fine by me, you can fold it in..

> 
> diff --git a/tests/nvme/018 b/tests/nvme/018
> index 30140ae..b09c29c 100755
> --- a/tests/nvme/018
> +++ b/tests/nvme/018
> @@ -2,7 +2,8 @@
>   # SPDX-License-Identifier: GPL-3.0+
>   # Copyright (C) 2018 Sagi Grimberg
>   #
> -# Test NVMe out of range access on a file backend
> +# Test NVMe out of range access on a file backend. Regression test for commit
> +# 9c891c139894 ("nvmet: check fileio lba range access boundaries").
>   
>   . tests/nvme/rc
>   
> @@ -38,11 +39,12 @@ test() {
>   	cat "/sys/block/${nvmedev}n1/uuid"
>   	cat "/sys/block/${nvmedev}n1/wwid"
>   
> -	sectors=$(blockdev --getsz /dev/${nvmedev}n1)
> -	bs=$(blockdev --getbsz /dev/${nvmedev}n1)
> +	local sectors
> +	local bs
> +	sectors="$(blockdev --getsz "/dev/${nvmedev}n1")"
> +	bs="$(blockdev --getbsz "/dev/${nvmedev}n1")"
>   
> -	nvme read "/dev/${nvmedev}n1" -s $sectors -c 0 -z $bs
> -	if [[ ! $? ]]; then
> +	if nvme read "/dev/${nvmedev}n1" -s "$sectors" -c 0 -z "$bs"; then
>   		echo "ERROR: Successfully read out of device lba range"
>   	fi
>   
> diff --git a/tests/nvme/018.out b/tests/nvme/018.out
> old mode 100755
> new mode 100644
> index 0ab3b2a..68a0194
> --- a/tests/nvme/018.out
> +++ b/tests/nvme/018.out
> @@ -1,6 +1,5 @@
>   Running nvme/018
>   91fdba0d-f87b-4c25-b80f-db7be1418b9e
>   uuid.91fdba0d-f87b-4c25-b80f-db7be1418b9e
> -read:CAP_EXCEEDED: The execution of the command has caused the capacity of the namespace to be exceeded(6081)
>   NQN:blktests-subsystem-1 disconnected 1 controller(s)
>   Test complete
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v2] nvme: test out-of-range I/O access (file backend)
  2019-03-11 22:58   ` Sagi Grimberg
@ 2019-03-11 22:59     ` Omar Sandoval
  0 siblings, 0 replies; 4+ messages in thread
From: Omar Sandoval @ 2019-03-11 22:59 UTC (permalink / raw)


On Mon, Mar 11, 2019@03:58:02PM -0700, Sagi Grimberg wrote:
> 
> > Ah, so this fails for me because I have nvme-cli 1.7 which is missing
> > your 9c891c139894 ("nvmet: check fileio lba range access boundaries").
> > How about we just look at the exit code of nvme read instead of relying
> > on that output?
> 
> Fine by me, you can fold it in..

Done and pushed.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-03-11 22:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-11 22:18 [PATCH v2] nvme: test out-of-range I/O access (file backend) Sagi Grimberg
2019-03-11 22:49 ` Omar Sandoval
2019-03-11 22:58   ` Sagi Grimberg
2019-03-11 22:59     ` Omar Sandoval

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.