aboutsummaryrefslogtreecommitdiff
path: root/tests/zfs-tests/tests/functional/cli_root/zpool_import/zpool_import_parallel_admin.ksh
blob: c681d1b7dd239cc8030eb847e85d3f66037b3e7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/bin/ksh -p
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or https://opensource.org/licenses/CDDL-1.0.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#

#
# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#

#
# Copyright (c) 2023 Klara, Inc.
#

. $STF_SUITE/include/libtest.shlib
. $STF_SUITE/tests/functional/cli_root/zpool_import/zpool_import.cfg
. $STF_SUITE/tests/functional/cli_root/zpool_import/zpool_import.kshlib

#
# DESCRIPTION:
# 	Verify that admin commands to different pool are not blocked by import
#
# STRATEGY:
#	1. Create 2 pools
#	2. Export one of the pools
#	4. Import the pool with an injected delay
#	5. Execute some admin commands against both pools
#	6. Verify that the admin commands to the non-imported pool don't stall
#

verify_runnable "global"

function cleanup
{
	zinject -c all
	destroy_pool $TESTPOOL1
	destroy_pool $TESTPOOL2
}

function pool_import
{
	typeset dir=$1
	typeset pool=$2

	SECONDS=0
	errmsg=$(zpool import -d $dir -f $pool 2>&1 > /dev/null)
	if [[ $? -eq 0 ]]; then
		echo ${pool}: imported in $SECONDS secs
		echo $SECONDS > ${DEVICE_DIR}/${pool}-import
	else
		echo ${pool}: import failed $errmsg in $SECONDS secs
	fi
}

function pool_add_device
{
	typeset pool=$1
	typeset device=$2
	typeset devtype=$3

	SECONDS=0
	errmsg=$(zpool add $pool $devtype $device 2>&1 > /dev/null)
	if [[ $? -eq 0 ]]; then
		echo ${pool}: added $devtype vdev in $SECONDS secs
		echo $SECONDS > ${DEVICE_DIR}/${pool}-add
	else
		echo ${pool}: add $devtype vdev failed ${errmsg}, in $SECONDS secs
	fi
}

function pool_stats
{
	typeset stats=$1
	typeset pool=$2

	SECONDS=0
	errmsg=$(zpool $stats $pool 2>&1 > /dev/null)
	if [[ $? -eq 0 ]]; then
		echo ${pool}: $stats in $SECONDS secs
		echo $SECONDS > ${DEVICE_DIR}/${pool}-${stats}
	else
		echo ${pool}: $stats failed ${errmsg}, in $SECONDS secs
	fi
}

function pool_create
{
	typeset pool=$1
	typeset device=$2

	SECONDS=0
	errmsg=$(zpool create $pool $device 2>&1 > /dev/null)
	if [[ $? -eq 0 ]]; then
		echo ${pool}: created in $SECONDS secs
		echo $SECONDS > ${DEVICE_DIR}/${pool}-create
	else
		echo ${pool}: create failed ${errmsg}, in $SECONDS secs
	fi
}

log_assert "Simple admin commands to different pool not blocked by import"

log_onexit cleanup

#
# create two pools and export one
#
log_must zpool create $TESTPOOL1 $VDEV0
log_must zpool export $TESTPOOL1
log_must zpool create $TESTPOOL2 $VDEV1

#
# import pool asyncronously with an injected 10 second delay
#
log_must zinject -P import -s 10 $TESTPOOL1
pool_import $DEVICE_DIR $TESTPOOL1 &

sleep 2

#
# run some admin commands on the pools while the import is in progress
#

pool_add_device $TESTPOOL1 $VDEV2 "log" &
pool_add_device $TESTPOOL2 $VDEV3 "cache" &
pool_stats "status" $TESTPOOL1 &
pool_stats "status" $TESTPOOL2 &
pool_stats "list" $TESTPOOL1 &
pool_stats "list" $TESTPOOL2 &
pool_create $TESTPOOL1 $VDEV4 &
wait

log_must zpool sync $TESTPOOL1 $TESTPOOL2

zpool history $TESTPOOL1
zpool history $TESTPOOL2

log_must test "5" -lt $(<${DEVICE_DIR}/${TESTPOOL1}-import)

#
# verify that commands to second pool did not wait for import to finish
#
log_must test "2" -gt $(<${DEVICE_DIR}/${TESTPOOL2}-status)
log_must test "2" -gt $(<${DEVICE_DIR}/${TESTPOOL2}-list)
log_must test "2" -gt $(<${DEVICE_DIR}/${TESTPOOL2}-add)
[[ -e ${DEVICE_DIR}/${TESTPOOL1}-create ]] && log_fail "unexpected pool create"

log_pass "Simple admin commands to different pool not blocked by import"