7290 ZFS test suite needs to control what utilities it can run
[unleashed.git] / usr / src / test / zfs-tests / tests / functional / cli_root / zpool_import / zpool_import_missing_003_pos.ksh
blobfc9c6ff20ab4a79a5f2de5c02aea19f889968809
1 #!/bin/ksh -p
3 # CDDL HEADER START
5 # The contents of this file are subject to the terms of the
6 # Common Development and Distribution License (the "License").
7 # You may not use this file except in compliance with the License.
9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 # or http://www.opensolaris.org/os/licensing.
11 # See the License for the specific language governing permissions
12 # and limitations under the License.
14 # When distributing Covered Code, include this CDDL HEADER in each
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 # If applicable, add the following below this CDDL HEADER, with the
17 # fields enclosed by brackets "[]" replaced with your own identifying
18 # information: Portions Copyright [yyyy] [name of copyright owner]
20 # CDDL HEADER END
24 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
29 # Copyright (c) 2012, 2016 by Delphix. All rights reserved.
32 . $STF_SUITE/include/libtest.shlib
33 . $STF_SUITE/tests/functional/cli_root/zfs_mount/zfs_mount.kshlib
34 . $STF_SUITE/tests/functional/cli_root/zpool_import/zpool_import.cfg
37 # DESCRIPTION:
38 # Once a pool has been exported, but one or more devices are
39 # overlapped with other exported pool, import should handle
40 # this kind of situation properly.
42 # STRATEGY:
43 # 1. Repeat 1-3, create two test pools upon device files separately.
44 # These two pools should have one or more devices are overlapped.
45 # using the various combinations.
46 # - Regular pool
47 # - Mirror
48 # - Raidz
49 # 2. Create necessary filesystem and test files.
50 # 3. Export the test pool.
51 # 4. Verify 'zpool import -d' with these two pools will have results
52 # as described:
53 # - Regular, report error while any number of devices failing.
54 # - Mirror could withstand (N-1) devices failing
55 # before data integrity is compromised
56 # - Raidz could withstand one devices failing
57 # before data integrity is compromised
60 verify_runnable "global"
62 set -A vdevs "" "mirror" "raidz"
64 function verify
66 typeset pool=$1
67 typeset fs=$2
68 typeset mtpt=$3
69 typeset health=$4
70 typeset file=$5
71 typeset checksum1=$6
73 typeset myhealth
74 typeset mymtpt
75 typeset checksum2
77 log_must poolexists $pool
79 myhealth=$(zpool list -H -o health $pool)
81 [[ $myhealth == $health ]] || \
82 log_fail "$pool: Incorrect health ($myhealth), " \
83 "expected ($health)."
85 log_must ismounted $pool/$fs
87 mymtpt=$(get_prop mountpoint $pool/$fs)
88 [[ $mymtpt == $mtpt ]] || \
89 log_fail "$pool/$fs: Incorrect mountpoint ($mymtpt), " \
90 "expected ($mtpt)."
92 [[ ! -e $mtpt/$file ]] && \
93 log_fail "$mtpt/$file missing after import."
95 checksum2=$(sum $mymtpt/$file | awk '{print $1}')
96 [[ "$checksum1" != "$checksum2" ]] && \
97 log_fail "Checksums differ ($checksum1 != $checksum2)"
99 return 0
103 function cleanup
105 cd $DEVICE_DIR || log_fail "Unable change directory to $DEVICE_DIR"
107 for pool in $TESTPOOL1 $TESTPOOL2; do
108 if poolexists "$pool" ; then
109 cleanup_filesystem $pool $TESTFS
110 destroy_pool $pool
112 done
114 [[ -e $DEVICE_DIR/$DEVICE_ARCHIVE ]] && \
115 log_must tar xf $DEVICE_DIR/$DEVICE_ARCHIVE
118 function cleanup_all
120 cleanup
122 # recover dev files
123 typeset i=0
124 while (( i < $MAX_NUM )); do
125 typeset file=${DEVICE_DIR}/${DEVICE_FILE}$i
126 if [[ -e $file ]]; then
127 log_must rm $file
129 log_must mkfile $FILE_SIZE $file
130 ((i += 1))
131 done
133 log_must rm -f $DEVICE_DIR/$DEVICE_ARCHIVE
134 cd $CWD || log_fail "Unable change directory to $CWD"
138 log_onexit cleanup_all
140 log_assert "Verify that import could handle device overlapped."
142 CWD=$PWD
144 cd $DEVICE_DIR || log_fail "Unable change directory to $DEVICE_DIR"
145 log_must tar cf $DEVICE_DIR/$DEVICE_ARCHIVE ${DEVICE_FILE}*
147 checksum1=$(sum $MYTESTFILE | awk '{print $1}')
149 typeset -i i=0
150 typeset -i j=0
151 typeset -i count=0
152 typeset -i num=0
153 typeset vdev1=""
154 typeset vdev2=""
155 typeset action
157 while (( num < $GROUP_NUM )); do
158 vdev1="$vdev1 ${DEVICE_DIR}/${DEVICE_FILE}$num"
159 (( num = num + 1 ))
160 done
162 while (( i < ${#vdevs[*]} )); do
164 while (( j < ${#vdevs[*]} )); do
166 (( j != 0 )) && \
167 log_must tar xf $DEVICE_DIR/$DEVICE_ARCHIVE
169 typeset -i overlap=1
170 typeset -i begin
171 typeset -i end
173 while (( overlap <= $GROUP_NUM )); do
174 vdev2=""
175 (( begin = $GROUP_NUM - overlap ))
176 (( end = 2 * $GROUP_NUM - overlap - 1 ))
177 (( num = begin ))
178 while (( num <= end )); do
179 vdev2="$vdev2 ${DEVICE_DIR}/${DEVICE_FILE}$num"
180 (( num = num + 1 ))
181 done
183 setup_filesystem "$vdev1" $TESTPOOL1 $TESTFS $TESTDIR1 \
184 "" ${vdevs[i]}
185 log_must cp $MYTESTFILE $TESTDIR1/$TESTFILE0
186 log_must zfs umount $TESTDIR1
187 poolexists $TESTPOOL1 && \
188 log_must zpool export $TESTPOOL1
190 setup_filesystem "$vdev2" $TESTPOOL2 $TESTFS $TESTDIR2 \
191 "" ${vdevs[j]}
192 log_must cp $MYTESTFILE $TESTDIR2/$TESTFILE0
193 log_must zfs umount $TESTDIR2
194 poolexists $TESTPOOL2 && \
195 log_must zpool export $TESTPOOL2
197 action=log_must
198 case "${vdevs[i]}" in
199 'mirror') (( overlap == $GROUP_NUM )) && \
200 action=log_mustnot
202 'raidz') (( overlap > 1 )) && \
203 action=log_mustnot
205 '') action=log_mustnot
207 esac
209 $action zpool import -d $DEVICE_DIR $TESTPOOL1
210 log_must zpool import -d $DEVICE_DIR $TESTPOOL2
212 if [[ $action == log_must ]]; then
213 verify "$TESTPOOL1" "$TESTFS" "$TESTDIR1" \
214 "DEGRADED" "$TESTFILE0" "$checksum1"
217 verify "$TESTPOOL2" "$TESTFS" "$TESTDIR2" \
218 "ONLINE" "$TESTFILE0" "$checksum1"
220 cleanup
222 (( overlap = overlap + 1 ))
224 done
226 ((j = j + 1))
227 done
229 ((i = i + 1))
230 done
232 log_pass "Import could handle device overlapped."