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