zpool: Dryrun fails to list some devices

`zpool create -n` fails to list cache and spare vdevs.
`zpool add -n` fails to list spare devices.
`zpool split -n` fails to list `special` and `dedup` labels.
`zpool add -n` and `zpool split -n` shouldn't list hole devices.

Reviewed-by: Ryan Moeller <ryan@iXsystems.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Attila Fülöp <attila@fueloep.org>
Closes #11122
Closes #11167
This commit is contained in:
Attila Fülöp
2020-12-04 23:04:39 +01:00
committed by Brian Behlendorf
parent 32a78e579d
commit 6539bf71fe
10 changed files with 593 additions and 14 deletions
@@ -14,7 +14,8 @@ dist_pkgdata_SCRIPTS = \
zpool_add_010_pos.ksh \
add-o_ashift.ksh \
add_prop_ashift.ksh \
add_nested_replacing_spare.ksh
add_nested_replacing_spare.ksh \
zpool_add_dryrun_output.ksh
dist_pkgdata_DATA = \
zpool_add.cfg \
@@ -61,7 +61,7 @@ log_onexit cleanup
typeset TMPFILE_PREFIX="$TEST_BASE_DIR/zpool_add_003"
typeset STR_DRYRUN="would update '$TESTPOOL' to the following configuration:"
typeset VDEV_PREFIX="$TEST_BASE_DIR/filedev"
typeset -a VDEV_TYPES=("" "dedup" "special" "log" "cache")
typeset -a VDEV_TYPES=("" "dedup" "special" "log" "cache" "spare")
vdevs=""
config=""
@@ -91,7 +91,7 @@ log_must zpool add -f $TESTPOOL $config
zpool status $TESTPOOL | awk 'NR == 1, /NAME/ { next } /^$/ {exit}
{print $1}' > "$TMPFILE_PREFIX-vdevtree"
cat "$TMPFILE_PREFIX-dryrun" | awk 'NR == 1, /would/ {next}
{print $1}' > "$TMPFILE_PREFIX-vdevtree-n"
/^$/ {next} {print $1}' > "$TMPFILE_PREFIX-vdevtree-n"
log_must eval "diff $TMPFILE_PREFIX-vdevtree-n $TMPFILE_PREFIX-vdevtree"
log_pass "'zpool add -n <pool> <vdev> ...' executes successfully."
@@ -0,0 +1,177 @@
#!/bin/ksh -p
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2020 Attila Fülöp <attila@fueloep.org>
#
. $STF_SUITE/include/libtest.shlib
. $STF_SUITE/tests/functional/cli_root/zpool_add/zpool_add.kshlib
typeset TMPFILE_PREFIX="$TEST_BASE_DIR/zpool_add_dryrun_output"
typeset STR_DRYRUN="would update '$TESTPOOL' to the following configuration:"
typeset VDEV_PREFIX="$TEST_BASE_DIR/filedev"
#
# DESCRIPTION:
# 'zpool add -n <pool> <vdev> ...' can display the correct configuration
#
# STRATEGY:
# 1. Create different storage pools, use -n to add devices to the pool and
# verify the output is as expected.
# 2. Create a pool whith a hole vdev and verify it's not listed with add -n.
#
typeset -a dev=(
"${VDEV_PREFIX}00" "${VDEV_PREFIX}01" "${VDEV_PREFIX}02"
"${VDEV_PREFIX}03" "${VDEV_PREFIX}04" "${VDEV_PREFIX}05"
"${VDEV_PREFIX}06" "${VDEV_PREFIX}07" "${VDEV_PREFIX}08"
"${VDEV_PREFIX}09" "${VDEV_PREFIX}10" "${VDEV_PREFIX}11"
)
typeset -a tests=(
(
tree="'${dev[0]}' log '${dev[1]}' special '${dev[2]}' dedup '${dev[3]}'"
add="spare '${dev[4]}' cache '${dev[5]}'"
want="$STR_DRYRUN
$TESTPOOL
${dev[0]}
dedup
${dev[3]}
special
${dev[2]}
logs
${dev[1]}
cache
${dev[5]}
spares
${dev[4]}"
)
(
tree="'${dev[0]}' log '${dev[1]}' special '${dev[2]}' dedup '${dev[3]}' \
spare '${dev[4]}' cache '${dev[5]}'"
add="'${dev[6]}' log '${dev[7]}' special '${dev[8]}' dedup '${dev[9]}' \
spare '${dev[10]}' cache '${dev[11]}'"
want="$STR_DRYRUN
$TESTPOOL
${dev[0]}
${dev[6]}
dedup
${dev[3]}
${dev[9]}
special
${dev[2]}
${dev[8]}
logs
${dev[1]}
${dev[7]}
cache
${dev[5]}
${dev[11]}
spares
${dev[4]}
${dev[10]}"
)
(
tree="mirror '${dev[0]}' '${dev[1]}' \
log mirror '${dev[2]}' '${dev[3]}' \
dedup mirror '${dev[6]}' '${dev[7]}' \
spare '${dev[8]}'"
add="special mirror '${dev[4]}' '${dev[5]}' \
spare '${dev[9]}' cache '${dev[10]}' '${dev[11]}'"
want="$STR_DRYRUN
$TESTPOOL
mirror-0
${dev[0]}
${dev[1]}
dedup
mirror
${dev[6]}
${dev[7]}
special
mirror
${dev[4]}
${dev[5]}
logs
mirror
${dev[2]}
${dev[3]}
cache
${dev[10]}
${dev[11]}
spares
${dev[8]}
${dev[9]}"
)
)
verify_runnable "global"
function cleanup
{
destroy_pool "$TESTPOOL"
rm -f "$TMPFILE_PREFIX"* "$VDEV_PREFIX"*
}
log_assert "'zpool add -n <pool> <vdev> ...' can display the configuration"
log_onexit cleanup
# Create needed file vdevs.
for (( i=0; i < ${#dev[@]}; i+=1 )); do
log_must truncate -s $SPA_MINDEVSIZE "${dev[$i]}"
done
# Foreach test create pool, add -n devices and check output.
for (( i=0; i < ${#tests[@]}; i+=1 )); do
typeset tree="${tests[$i].tree}"
typeset add="${tests[$i].add}"
typeset want="${tests[$i].want}"
log_must eval zpool create "$TESTPOOL" $tree
log_must poolexists "$TESTPOOL"
typeset out="$(log_must eval "zpool add -n '$TESTPOOL' $add" | \
sed /^SUCCESS/d)"
if [[ "$out" != "$want" ]]; then
log_fail "Got:\n" "$out" "\nbut expected:\n" "$want"
fi
log_must destroy_pool "$TESTPOOL"
done
# Make sure hole vdevs are skiped in output.
log_must eval "zpool create '$TESTPOOL' '${dev[0]}' log '${dev[1]}' \
cache '${dev[2]}'"
# Create a hole vdev.
log_must eval "zpool remove '$TESTPOOL' '${dev[1]}'"
log_mustnot eval "zpool add -n '$TESTPOOL' '${dev[1]}' | \
grep -qE '[[:space:]]+hole'"
log_pass "'zpool add -n <pool> <vdev> ...' displays config correctly."
@@ -33,7 +33,8 @@ dist_pkgdata_SCRIPTS = \
zpool_create_features_004_neg.ksh \
zpool_create_features_005_pos.ksh \
create-o_ashift.ksh \
zpool_create_tempname.ksh
zpool_create_tempname.ksh \
zpool_create_dryrun_output.ksh
dist_pkgdata_DATA = \
zpool_create.cfg \
@@ -0,0 +1,141 @@
#!/bin/ksh -p
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2020 Attila Fülöp <attila@fueloep.org>
#
. $STF_SUITE/include/libtest.shlib
. $STF_SUITE/tests/functional/cli_root/zpool_create/zpool_create.shlib
typeset TMPFILE_PREFIX="$TEST_BASE_DIR/zpool_create_dryrun_output"
typeset STR_DRYRUN="would create '$TESTPOOL' with the following layout:"
typeset VDEV_PREFIX="$TEST_BASE_DIR/filedev"
#
# DESCRIPTION:
# 'zpool create -n <pool> <vdev> ...' can display the correct configuration
#
# STRATEGY:
# 1. Create a storage pool
#
typeset -a dev=(
"${VDEV_PREFIX}00" "${VDEV_PREFIX}01" "${VDEV_PREFIX}02"
"${VDEV_PREFIX}03" "${VDEV_PREFIX}04" "${VDEV_PREFIX}05"
"${VDEV_PREFIX}06" "${VDEV_PREFIX}07" "${VDEV_PREFIX}08"
"${VDEV_PREFIX}09" "${VDEV_PREFIX}10" "${VDEV_PREFIX}11"
)
typeset -a tests=(
(
tree="'${dev[0]}' '${dev[1]}' log '${dev[2]}' '${dev[3]}' \
special '${dev[4]}' '${dev[5]}' dedup '${dev[6]}' '${dev[7]}' \
spare '${dev[8]}' '${dev[9]}' cache '${dev[10]}' '${dev[11]}'"
want="$STR_DRYRUN
$TESTPOOL
${dev[0]}
${dev[1]}
dedup
${dev[6]}
${dev[7]}
special
${dev[4]}
${dev[5]}
logs
${dev[2]}
${dev[3]}
cache
${dev[10]}
${dev[11]}
spares
${dev[8]}
${dev[9]}"
)
(
tree="mirror '${dev[0]}' '${dev[1]}' \
log mirror '${dev[2]}' '${dev[3]}' \
special mirror '${dev[4]}' '${dev[5]}' \
dedup mirror '${dev[6]}' '${dev[7]}' \
spare '${dev[8]}' '${dev[9]}' \
cache '${dev[10]}' '${dev[11]}'"
want="$STR_DRYRUN
$TESTPOOL
mirror
${dev[0]}
${dev[1]}
dedup
mirror
${dev[6]}
${dev[7]}
special
mirror
${dev[4]}
${dev[5]}
logs
mirror
${dev[2]}
${dev[3]}
cache
${dev[10]}
${dev[11]}
spares
${dev[8]}
${dev[9]}"
)
)
verify_runnable "global"
function cleanup
{
rm -f "$TMPFILE_PREFIX"* "$VDEV_PREFIX"*
}
log_assert "'zpool add -n <pool> <vdev> ...' can display the configuration"
log_onexit cleanup
typeset disk1=$(create_blockfile $FILESIZE)
# Create needed file vdevs.
for (( i=0; i < ${#dev[@]}; i+=1 )); do
log_must truncate -s $SPA_MINDEVSIZE "${dev[$i]}"
done
# Foreach test create pool, add -n devices and check output.
for (( i=0; i < ${#tests[@]}; i+=1 )); do
typeset tree="${tests[$i].tree}"
typeset want="${tests[$i].want}"
typeset out="$(log_must eval "zpool create -n '$TESTPOOL' $tree" | \
sed /^SUCCESS/d)"
if [[ "$out" != "$want" ]]; then
log_fail "Got:\n" "$out" "\nbut expected:\n" "$want"
fi
done
log_pass "'zpool add -n <pool> <vdev> ...' displays config correctly."
@@ -12,7 +12,8 @@ dist_pkgdata_SCRIPTS = \
zpool_split_vdevs.ksh \
zpool_split_resilver.ksh \
zpool_split_wholedisk.ksh \
zpool_split_indirect.ksh
zpool_split_indirect.ksh \
zpool_split_dryrun_output.ksh
dist_pkgdata_DATA = \
zpool_split.cfg
@@ -0,0 +1,151 @@
#!/bin/ksh -p
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2020 Attila Fülöp <attila@fueloep.org>
#
. $STF_SUITE/include/libtest.shlib
typeset NEWPOOL="${TESTPOOL}split"
typeset STR_DRYRUN="would create '$NEWPOOL' with the following layout:"
typeset VDEV_PREFIX="$TEST_BASE_DIR/filedev"
#
# DESCRIPTION:
# 'zpool split -n <pool> <newpool> [<vdev> ...]' can display the correct
# configuration
#
# STRATEGY:
# 1. Create a mirrored storage pool, split -n and verify the output is as
# expected.
#
typeset -a dev=(
"${VDEV_PREFIX}00" "${VDEV_PREFIX}01" "${VDEV_PREFIX}02"
"${VDEV_PREFIX}03" "${VDEV_PREFIX}04" "${VDEV_PREFIX}05"
"${VDEV_PREFIX}06" "${VDEV_PREFIX}07" "${VDEV_PREFIX}08"
"${VDEV_PREFIX}09" "${VDEV_PREFIX}10" "${VDEV_PREFIX}11"
)
typeset -a tests=(
# Test for hole.
(
tree="mirror '${dev[0]}' '${dev[1]}' log mirror '${dev[2]}' '${dev[3]}' \
special mirror '${dev[4]}' '${dev[5]}'"
devs=""
want="$STR_DRYRUN
$NEWPOOL
${dev[1]}
special
${dev[5]}"
)
(
tree="mirror '${dev[0]}' '${dev[1]}' log mirror '${dev[2]}' '${dev[3]}' \
special mirror '${dev[4]}' '${dev[5]}'"
devs="'${dev[0]}' '${dev[4]}'"
want="$STR_DRYRUN
$NEWPOOL
${dev[0]}
special
${dev[4]}"
)
# Full set of vdev types.
(
tree="mirror '${dev[0]}' '${dev[1]}'
dedup mirror '${dev[2]}' '${dev[3]}' \
special mirror '${dev[4]}' '${dev[5]}' \
cache '${dev[6]}' '${dev[7]}' \
spare '${dev[8]}' '${dev[9]}'\
log mirror '${dev[10]}' '${dev[11]}'"
devs=""
want="$STR_DRYRUN
$NEWPOOL
${dev[1]}
dedup
${dev[3]}
special
${dev[5]}"
)
(
tree="mirror '${dev[0]}' '${dev[1]}'
dedup mirror '${dev[2]}' '${dev[3]}' \
special mirror '${dev[4]}' '${dev[5]}' \
cache '${dev[6]}' '${dev[7]}' \
spare '${dev[8]}' '${dev[9]}'\
log mirror '${dev[10]}' '${dev[11]}'"
devs="'${dev[0]}' '${dev[2]}' '${dev[4]}'"
want="$STR_DRYRUN
$NEWPOOL
${dev[0]}
dedup
${dev[2]}
special
${dev[4]}"
)
)
verify_runnable "global"
function cleanup
{
destroy_pool "$TESTPOOL"
}
log_assert \
"'zpool split -n <pool> <newpool> [<vdev>]...' can display the configuration"
log_onexit cleanup
# Create needed file vdevs.
for (( i=0; i < ${#dev[@]}; i+=1 )); do
log_must truncate -s $SPA_MINDEVSIZE "${dev[$i]}"
done
# Foreach test create pool, add -n devices and check output.
for (( i=0; i < ${#tests[@]}; i+=1 )); do
typeset tree="${tests[$i].tree}"
typeset devs="${tests[$i].devs}"
typeset want="${tests[$i].want}"
log_must eval zpool create "$TESTPOOL" $tree
log_must poolexists "$TESTPOOL"
typeset out="$(log_must eval "zpool split -n \
'$TESTPOOL' '$NEWPOOL' $devs" | sed /^SUCCESS/d)"
if [[ "$out" != "$want" ]]; then
log_fail "Got:\n" "$out" "\nbut expected:\n" "$want"
fi
log_must destroy_pool "$TESTPOOL"
done
log_pass \
"'zpool split -n <pool> <newpool> [<vdev>]...' displays config correctly."