forked from openzfs/zfs
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
zpool: fix redundancy check after vdev removal
The presence of indirect vdevs was confusing get_redundancy(), which considered a pool with e.g. only mirror top-level vdevs and at least one indirect vdev (due to the removal of a previous vdev) as already having a broken redundancy, which is not the case. This lead to the possibility of compromising the redundancy of a pool by adding mismatched vdevs without requiring the use of `-f`, and with no visible notice or warning. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Stéphane Lesimple <speed47_github@speed47.net> Closes openzfs#13705 Closes openzfs#13711
- Loading branch information
Showing
3 changed files
with
66 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
tests/zfs-tests/tests/functional/removal/removal_with_indirect.ksh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#! /bin/ksh -p | ||
# | ||
# CDDL HEADER START | ||
# | ||
# This file and its contents are supplied under the terms of the | ||
# Common Development and Distribution License ("CDDL"), version 1.0. | ||
# You may only use this file in accordance with the terms of version | ||
# 1.0 of the CDDL. | ||
# | ||
# A full copy of the text of the CDDL should have accompanied this | ||
# source. A copy of the CDDL is also available via the Internet at | ||
# http://www.illumos.org/license/CDDL. | ||
# | ||
# CDDL HEADER END | ||
# | ||
|
||
# | ||
# Copyright (c) 2014, 2018 by Delphix. All rights reserved. | ||
# | ||
|
||
. $STF_SUITE/include/libtest.shlib | ||
. $STF_SUITE/tests/functional/removal/removal.kshlib | ||
|
||
TMPDIR=${TMPDIR:-$TEST_BASE_DIR} | ||
|
||
DISK1="$TMPDIR/dsk1" | ||
DISK2="$TMPDIR/dsk2" | ||
DISK3="$TMPDIR/dsk3" | ||
DISK4="$TMPDIR/dsk4" | ||
DISKS="$DISK1 $DISK2 $DISK3 $DISK4" | ||
|
||
log_must mkfile $(($MINVDEVSIZE * 2)) $DISK1 | ||
log_must mkfile $(($MINVDEVSIZE * 2)) $DISK2 | ||
log_must mkfile $(($MINVDEVSIZE * 2)) $DISK3 | ||
log_must mkfile $(($MINVDEVSIZE * 2)) $DISK4 | ||
|
||
function cleanup | ||
{ | ||
default_cleanup_noexit | ||
log_must rm -f $DISKS | ||
} | ||
|
||
# Build a zpool with 2 mirror vdevs | ||
log_must default_setup_noexit "mirror $DISK1 $DISK2 mirror $DISK3 $DISK4" | ||
log_onexit cleanup | ||
|
||
# Remove one of the mirrors | ||
log_must zpool remove $TESTPOOL mirror-1 | ||
log_must wait_for_removal $TESTPOOL | ||
|
||
# Attempt to add a single-device vdev, shouldn't work | ||
log_mustnot zpool add $TESTPOOL $DISK3 | ||
|
||
# Force it, should work | ||
log_must zpool add -f $TESTPOOL $DISK3 | ||
|
||
log_pass "Prevented from adding a non-mirror vdev on a mirrored zpool w/ indirect vdevs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters