1#!/usr/local/bin/ksh93 -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# Copyright 2012-2018 Spectra Logic Corporation.  All rights reserved.
28# Use is subject to license terms.
29#
30# Portions taken from:
31# ident	"@(#)replacement_001_pos.ksh	1.4	08/02/27 SMI"
32#
33# $Id$
34# $FreeBSD$
35
36. $STF_SUITE/include/libtest.kshlib
37. $STF_SUITE/include/libgnop.kshlib
38
39function is_pool_unavail # pool
40{
41	is_pool_state "$1" "UNAVAIL"
42}
43
44log_assert "A pool can come back online after all disks are failed and reactivated"
45
46set_disks
47typeset ALLDISKS="${DISK0} ${DISK1} ${DISK2}"
48typeset ALLNOPS=${ALLDISKS//~(E)([[:space:]]+|$)/.nop\1}
49
50log_must create_gnops $ALLDISKS
51for type in "raidz" "mirror"; do
52	# Create a pool on the supplied disks
53	create_pool $TESTPOOL $type $ALLNOPS
54	log_must $ZFS create $TESTPOOL/$TESTFS
55	log_must $ZFS set mountpoint=$TESTDIR $TESTPOOL/$TESTFS
56
57	# Disable all vdevs.  The pool should become UNAVAIL
58	log_must destroy_gnop $DISK0
59	log_must destroy_gnop $DISK1
60	log_must destroy_gnop $DISK2
61	wait_for 5 1 is_pool_unavail $TESTPOOL
62
63	# Renable all vdevs.  The pool should become healthy again
64	log_must create_gnop $DISK0
65	log_must create_gnop $DISK1
66	log_must create_gnop $DISK2
67
68	# Manually online the pool
69	log_must $ZPOOL clear $TESTPOOL
70
71	wait_for 5 1 is_pool_healthy $TESTPOOL
72
73	destroy_pool $TESTPOOL
74	log_must $RM -rf /$TESTPOOL
75done
76
77log_pass
78