1 #!/usr/bin/ksh -p
2 #
3 # CDDL HEADER START
4 #
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.
8 #
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.
13 #
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]
19 #
20 # CDDL HEADER END
21 #
22
23 #
24 # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
26 #
27
28 #
29 # Copyright (c) 2013, 2016 by Delphix. All rights reserved.
30 # Copyright 2015 Nexenta Systems, Inc. All rights reserved.
31 #
32
33 . $STF_SUITE/include/libtest.shlib
34 . $STF_SUITE/tests/functional/replacement/replacement.cfg
35
36 #
37 # DESCRIPTION:
38 # Detaching disks during I/O should pass for supported pools.
39 #
40 # STRATEGY:
41 # 1. Create multidisk pools (stripe/mirror/raidz) and
42 # start some random I/O
43 # 2. Detach a disk from the pool.
44 # 3. Verify the integrity of the file system and the resilvering.
45 #
46
47 verify_runnable "global"
48
49 function cleanup
50 {
51 if [[ -n "$child_pids" ]]; then
52 for wait_pid in $child_pids
53 do
54 kill $wait_pid
55 done
56 fi
57
58 if poolexists $TESTPOOL1; then
59 destroy_pool $TESTPOOL1
60 fi
61
62 [[ -e $TESTDIR1 ]] && log_must rm -rf $TESTDIR1
63 [[ -e $TESTDIR ]] && log_must rm -rf $TESTDIR/*
64 }
65
66 log_assert "Replacing a disk during I/O completes."
67
68 options=""
69 options_display="default options"
70
71 log_onexit cleanup
72
73 [[ -n "$HOLES_FILESIZE" ]] && options=" $options -f $HOLES_FILESIZE "
74
75 [[ -n "$HOLES_BLKSIZE" ]] && options="$options -b $HOLES_BLKSIZE "
76
77 [[ -n "$HOLES_COUNT" ]] && options="$options -c $HOLES_COUNT "
78
79 [[ -n "$HOLES_SEED" ]] && options="$options -s $HOLES_SEED "
80
81 [[ -n "$HOLES_FILEOFFSET" ]] && options="$options -o $HOLES_FILEOFFSET "
82
83 ptions="$options -r "
84
85 [[ -n "$options" ]] && options_display=$options
86
87 child_pids=""
88
89 function detach_test
90 {
91 typeset -i iters=2
92 typeset -i index=0
93 typeset disk1=$1
94
95 typeset i=0
96 while [[ $i -lt $iters ]]; do
97 log_note "Invoking file_trunc with: $options_display"
98 file_trunc $options $TESTDIR/$TESTFILE.$i &
99 typeset pid=$!
100
101 sleep 1
102 if ! ps -p $pid > /dev/null 2>&1; then
103 log_fail "file_trunc $options $TESTDIR/$TESTFILE.$i"
104 fi
105
106 child_pids="$child_pids $pid"
107 ((i = i + 1))
108 done
109
110 log_must zpool detach $TESTPOOL1 $disk1
111
112 sleep 10
113
114 for wait_pid in $child_pids
115 do
116 kill $wait_pid
117 done
118 child_pids=""
119
120 log_must zpool export $TESTPOOL1
121 log_must zpool import -d $TESTDIR $TESTPOOL1
122 log_must zfs umount $TESTPOOL1/$TESTFS1
123 log_must zdb -cdui $TESTPOOL1/$TESTFS1
124 log_must zfs mount $TESTPOOL1/$TESTFS1
125 }
126
127 specials_list=""
128 i=0
129 while [[ $i != 2 ]]; do
130 mkfile $MINVDEVSIZE $TESTDIR/$TESTFILE1.$i
131 specials_list="$specials_list $TESTDIR/$TESTFILE1.$i"
132
133 ((i = i + 1))
134 done
135
136 create_pool $TESTPOOL1 mirror $specials_list
137 log_must zfs create $TESTPOOL1/$TESTFS1
138 log_must zfs set mountpoint=$TESTDIR1 $TESTPOOL1/$TESTFS1
139
140 detach_test $TESTDIR/$TESTFILE1.1
141
142 zpool iostat -v $TESTPOOL1 | grep "$TESTDIR/$TESTFILE1.1"
143 if [[ $? -eq 0 ]]; then
144 log_fail "$TESTFILE1.1 should no longer be present."
145 fi
146
147 destroy_pool $TESTPOOL1
148
149 log_note "Verify 'zpool detach' fails with non-mirrors."
150
151 for type in "" "raidz" "raidz1" ; do
152 create_pool $TESTPOOL1 $type $specials_list
153 log_must zfs create $TESTPOOL1/$TESTFS1
154 log_must zfs set mountpoint=$TESTDIR1 $TESTPOOL1/$TESTFS1
155
156 log_mustnot zpool detach $TESTDIR/$TESTFILE1.1
157
158 zpool iostat -v $TESTPOOL1 | grep "$TESTDIR/$TESTFILE1.1"
159 if [[ $? -ne 0 ]]; then
160 log_fail "$TESTFILE1.1 is not present."
161 fi
162
163 destroy_pool $TESTPOOL1
164 done
165
166 log_pass