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
35. $STF_SUITE/include/libtest.kshlib
36. $STF_SUITE/include/libgnop.kshlib
37
38function is_pool_unavail # pool
39{
40	is_pool_state "$1" "UNAVAIL"
41}
42
43log_assert "A pool can come back online after all disks are failed and reactivated"
44
45set_disks
46typeset ALLDISKS="${DISK0} ${DISK1} ${DISK2}"
47typeset ALLNOPS=${ALLDISKS//~(E)([[:space:]]+|$)/.nop\1}
48
49log_must create_gnops $ALLDISKS
50for type in "raidz" "mirror"; do
51	# Create a pool on the supplied disks
52	create_pool $TESTPOOL $type $ALLNOPS
53	log_must $ZFS create $TESTPOOL/$TESTFS
54	log_must $ZFS set mountpoint=$TESTDIR $TESTPOOL/$TESTFS
55
56	# Disable all vdevs.  The pool should become UNAVAIL
57	log_must destroy_gnop $DISK0
58	log_must destroy_gnop $DISK1
59	log_must destroy_gnop $DISK2
60	wait_for 5 1 is_pool_unavail $TESTPOOL
61
62	# Renable all vdevs.  The pool should become healthy again
63	log_must create_gnop $DISK0
64	log_must create_gnop $DISK1
65	log_must create_gnop $DISK2
66
67	# Manually online the pool
68	log_must $ZPOOL clear $TESTPOOL
69
70	wait_for 5 1 is_pool_healthy $TESTPOOL
71
72	destroy_pool $TESTPOOL
73	log_must $RM -rf /$TESTPOOL
74done
75
76log_pass
77