xref: /titanic_51/usr/src/uts/common/fs/zfs/vdev.c (revision 5f9925438d25a0e6d4a0e3582a12c92a7f4c29fb)
1fa9e4066Sahrens /*
2fa9e4066Sahrens  * CDDL HEADER START
3fa9e4066Sahrens  *
4fa9e4066Sahrens  * The contents of this file are subject to the terms of the
5441d80aaSlling  * Common Development and Distribution License (the "License").
6441d80aaSlling  * You may not use this file except in compliance with the License.
7fa9e4066Sahrens  *
8fa9e4066Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9fa9e4066Sahrens  * or http://www.opensolaris.org/os/licensing.
10fa9e4066Sahrens  * See the License for the specific language governing permissions
11fa9e4066Sahrens  * and limitations under the License.
12fa9e4066Sahrens  *
13fa9e4066Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
14fa9e4066Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15fa9e4066Sahrens  * If applicable, add the following below this CDDL HEADER, with the
16fa9e4066Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
17fa9e4066Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
18fa9e4066Sahrens  *
19fa9e4066Sahrens  * CDDL HEADER END
20fa9e4066Sahrens  */
2199653d4eSeschrock 
22fa9e4066Sahrens /*
2398d1cbfeSGeorge Wilson  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
2481cd5c55SMatthew Ahrens  * Copyright (c) 2011, 2015 by Delphix. All rights reserved.
251a902ef8SHans Rosenfeld  * Copyright 2015 Nexenta Systems, Inc.  All rights reserved.
26c3d26abcSMatthew Ahrens  * Copyright (c) 2014 Integros [integros.com]
279b6cddcfSToomas Soome  * Copyright 2016 Toomas Soome <tsoome@me.com>
28fa9e4066Sahrens  */
29fa9e4066Sahrens 
30fa9e4066Sahrens #include <sys/zfs_context.h>
31ea8dc4b6Seschrock #include <sys/fm/fs/zfs.h>
32fa9e4066Sahrens #include <sys/spa.h>
33fa9e4066Sahrens #include <sys/spa_impl.h>
34fa9e4066Sahrens #include <sys/dmu.h>
35fa9e4066Sahrens #include <sys/dmu_tx.h>
36fa9e4066Sahrens #include <sys/vdev_impl.h>
37fa9e4066Sahrens #include <sys/uberblock_impl.h>
38fa9e4066Sahrens #include <sys/metaslab.h>
39fa9e4066Sahrens #include <sys/metaslab_impl.h>
40fa9e4066Sahrens #include <sys/space_map.h>
410713e232SGeorge Wilson #include <sys/space_reftree.h>
42fa9e4066Sahrens #include <sys/zio.h>
43fa9e4066Sahrens #include <sys/zap.h>
44fa9e4066Sahrens #include <sys/fs/zfs.h>
45c5904d13Seschrock #include <sys/arc.h>
46e6ca193dSGeorge Wilson #include <sys/zil.h>
473f9d6ad7SLin Ling #include <sys/dsl_scan.h>
48fa9e4066Sahrens 
49fa9e4066Sahrens /*
50fa9e4066Sahrens  * Virtual device management.
51fa9e4066Sahrens  */
52fa9e4066Sahrens 
53fa9e4066Sahrens static vdev_ops_t *vdev_ops_table[] = {
54fa9e4066Sahrens 	&vdev_root_ops,
55fa9e4066Sahrens 	&vdev_raidz_ops,
56fa9e4066Sahrens 	&vdev_mirror_ops,
57fa9e4066Sahrens 	&vdev_replacing_ops,
5899653d4eSeschrock 	&vdev_spare_ops,
59fa9e4066Sahrens 	&vdev_disk_ops,
60fa9e4066Sahrens 	&vdev_file_ops,
61fa9e4066Sahrens 	&vdev_missing_ops,
6288ecc943SGeorge Wilson 	&vdev_hole_ops,
63fa9e4066Sahrens 	NULL
64fa9e4066Sahrens };
65fa9e4066Sahrens 
66088f3894Sahrens /* maximum scrub/resilver I/O queue per leaf vdev */
67088f3894Sahrens int zfs_scrub_limit = 10;
6805b2b3b8Smishra 
69fa9e4066Sahrens /*
70bf3e216cSMatthew Ahrens  * When a vdev is added, it will be divided into approximately (but no
71bf3e216cSMatthew Ahrens  * more than) this number of metaslabs.
72bf3e216cSMatthew Ahrens  */
73bf3e216cSMatthew Ahrens int metaslabs_per_vdev = 200;
74bf3e216cSMatthew Ahrens 
75bf3e216cSMatthew Ahrens /*
76fa9e4066Sahrens  * Given a vdev type, return the appropriate ops vector.
77fa9e4066Sahrens  */
78fa9e4066Sahrens static vdev_ops_t *
79fa9e4066Sahrens vdev_getops(const char *type)
80fa9e4066Sahrens {
81fa9e4066Sahrens 	vdev_ops_t *ops, **opspp;
82fa9e4066Sahrens 
83fa9e4066Sahrens 	for (opspp = vdev_ops_table; (ops = *opspp) != NULL; opspp++)
84fa9e4066Sahrens 		if (strcmp(ops->vdev_op_type, type) == 0)
85fa9e4066Sahrens 			break;
86fa9e4066Sahrens 
87fa9e4066Sahrens 	return (ops);
88fa9e4066Sahrens }
89fa9e4066Sahrens 
90fa9e4066Sahrens /*
91fa9e4066Sahrens  * Default asize function: return the MAX of psize with the asize of
92fa9e4066Sahrens  * all children.  This is what's used by anything other than RAID-Z.
93fa9e4066Sahrens  */
94fa9e4066Sahrens uint64_t
95fa9e4066Sahrens vdev_default_asize(vdev_t *vd, uint64_t psize)
96fa9e4066Sahrens {
97ecc2d604Sbonwick 	uint64_t asize = P2ROUNDUP(psize, 1ULL << vd->vdev_top->vdev_ashift);
98fa9e4066Sahrens 	uint64_t csize;
99fa9e4066Sahrens 
100573ca77eSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++) {
101fa9e4066Sahrens 		csize = vdev_psize_to_asize(vd->vdev_child[c], psize);
102fa9e4066Sahrens 		asize = MAX(asize, csize);
103fa9e4066Sahrens 	}
104fa9e4066Sahrens 
105fa9e4066Sahrens 	return (asize);
106fa9e4066Sahrens }
107fa9e4066Sahrens 
1082a79c5feSlling /*
109573ca77eSGeorge Wilson  * Get the minimum allocatable size. We define the allocatable size as
110573ca77eSGeorge Wilson  * the vdev's asize rounded to the nearest metaslab. This allows us to
111573ca77eSGeorge Wilson  * replace or attach devices which don't have the same physical size but
112573ca77eSGeorge Wilson  * can still satisfy the same number of allocations.
1132a79c5feSlling  */
1142a79c5feSlling uint64_t
115573ca77eSGeorge Wilson vdev_get_min_asize(vdev_t *vd)
1162a79c5feSlling {
117573ca77eSGeorge Wilson 	vdev_t *pvd = vd->vdev_parent;
1182a79c5feSlling 
1192a79c5feSlling 	/*
1204263d13fSGeorge Wilson 	 * If our parent is NULL (inactive spare or cache) or is the root,
121573ca77eSGeorge Wilson 	 * just return our own asize.
1222a79c5feSlling 	 */
123573ca77eSGeorge Wilson 	if (pvd == NULL)
124573ca77eSGeorge Wilson 		return (vd->vdev_asize);
1252a79c5feSlling 
126573ca77eSGeorge Wilson 	/*
127573ca77eSGeorge Wilson 	 * The top-level vdev just returns the allocatable size rounded
128573ca77eSGeorge Wilson 	 * to the nearest metaslab.
129573ca77eSGeorge Wilson 	 */
130573ca77eSGeorge Wilson 	if (vd == vd->vdev_top)
131573ca77eSGeorge Wilson 		return (P2ALIGN(vd->vdev_asize, 1ULL << vd->vdev_ms_shift));
1322a79c5feSlling 
133573ca77eSGeorge Wilson 	/*
134573ca77eSGeorge Wilson 	 * The allocatable space for a raidz vdev is N * sizeof(smallest child),
135573ca77eSGeorge Wilson 	 * so each child must provide at least 1/Nth of its asize.
136573ca77eSGeorge Wilson 	 */
137573ca77eSGeorge Wilson 	if (pvd->vdev_ops == &vdev_raidz_ops)
138573ca77eSGeorge Wilson 		return (pvd->vdev_min_asize / pvd->vdev_children);
139573ca77eSGeorge Wilson 
140573ca77eSGeorge Wilson 	return (pvd->vdev_min_asize);
1412a79c5feSlling }
1422a79c5feSlling 
143573ca77eSGeorge Wilson void
144573ca77eSGeorge Wilson vdev_set_min_asize(vdev_t *vd)
145573ca77eSGeorge Wilson {
146573ca77eSGeorge Wilson 	vd->vdev_min_asize = vdev_get_min_asize(vd);
147573ca77eSGeorge Wilson 
148573ca77eSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++)
149573ca77eSGeorge Wilson 		vdev_set_min_asize(vd->vdev_child[c]);
1502a79c5feSlling }
1512a79c5feSlling 
152fa9e4066Sahrens vdev_t *
153fa9e4066Sahrens vdev_lookup_top(spa_t *spa, uint64_t vdev)
154fa9e4066Sahrens {
155fa9e4066Sahrens 	vdev_t *rvd = spa->spa_root_vdev;
156fa9e4066Sahrens 
157e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_ALL, RW_READER) != 0);
158e05725b1Sbonwick 
159088f3894Sahrens 	if (vdev < rvd->vdev_children) {
160088f3894Sahrens 		ASSERT(rvd->vdev_child[vdev] != NULL);
161fa9e4066Sahrens 		return (rvd->vdev_child[vdev]);
162088f3894Sahrens 	}
163fa9e4066Sahrens 
164fa9e4066Sahrens 	return (NULL);
165fa9e4066Sahrens }
166fa9e4066Sahrens 
167fa9e4066Sahrens vdev_t *
168fa9e4066Sahrens vdev_lookup_by_guid(vdev_t *vd, uint64_t guid)
169fa9e4066Sahrens {
170fa9e4066Sahrens 	vdev_t *mvd;
171fa9e4066Sahrens 
1720e34b6a7Sbonwick 	if (vd->vdev_guid == guid)
173fa9e4066Sahrens 		return (vd);
174fa9e4066Sahrens 
175573ca77eSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++)
176fa9e4066Sahrens 		if ((mvd = vdev_lookup_by_guid(vd->vdev_child[c], guid)) !=
177fa9e4066Sahrens 		    NULL)
178fa9e4066Sahrens 			return (mvd);
179fa9e4066Sahrens 
180fa9e4066Sahrens 	return (NULL);
181fa9e4066Sahrens }
182fa9e4066Sahrens 
18312380e1eSArne Jansen static int
18412380e1eSArne Jansen vdev_count_leaves_impl(vdev_t *vd)
18512380e1eSArne Jansen {
18612380e1eSArne Jansen 	int n = 0;
18712380e1eSArne Jansen 
18812380e1eSArne Jansen 	if (vd->vdev_ops->vdev_op_leaf)
18912380e1eSArne Jansen 		return (1);
19012380e1eSArne Jansen 
19112380e1eSArne Jansen 	for (int c = 0; c < vd->vdev_children; c++)
19212380e1eSArne Jansen 		n += vdev_count_leaves_impl(vd->vdev_child[c]);
19312380e1eSArne Jansen 
19412380e1eSArne Jansen 	return (n);
19512380e1eSArne Jansen }
19612380e1eSArne Jansen 
19712380e1eSArne Jansen int
19812380e1eSArne Jansen vdev_count_leaves(spa_t *spa)
19912380e1eSArne Jansen {
20012380e1eSArne Jansen 	return (vdev_count_leaves_impl(spa->spa_root_vdev));
20112380e1eSArne Jansen }
20212380e1eSArne Jansen 
203fa9e4066Sahrens void
204fa9e4066Sahrens vdev_add_child(vdev_t *pvd, vdev_t *cvd)
205fa9e4066Sahrens {
206fa9e4066Sahrens 	size_t oldsize, newsize;
207fa9e4066Sahrens 	uint64_t id = cvd->vdev_id;
208fa9e4066Sahrens 	vdev_t **newchild;
20981cd5c55SMatthew Ahrens 	spa_t *spa = cvd->vdev_spa;
210fa9e4066Sahrens 
21181cd5c55SMatthew Ahrens 	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
212fa9e4066Sahrens 	ASSERT(cvd->vdev_parent == NULL);
213fa9e4066Sahrens 
214fa9e4066Sahrens 	cvd->vdev_parent = pvd;
215fa9e4066Sahrens 
216fa9e4066Sahrens 	if (pvd == NULL)
217fa9e4066Sahrens 		return;
218fa9e4066Sahrens 
219fa9e4066Sahrens 	ASSERT(id >= pvd->vdev_children || pvd->vdev_child[id] == NULL);
220fa9e4066Sahrens 
221fa9e4066Sahrens 	oldsize = pvd->vdev_children * sizeof (vdev_t *);
222fa9e4066Sahrens 	pvd->vdev_children = MAX(pvd->vdev_children, id + 1);
223fa9e4066Sahrens 	newsize = pvd->vdev_children * sizeof (vdev_t *);
224fa9e4066Sahrens 
225fa9e4066Sahrens 	newchild = kmem_zalloc(newsize, KM_SLEEP);
226fa9e4066Sahrens 	if (pvd->vdev_child != NULL) {
227fa9e4066Sahrens 		bcopy(pvd->vdev_child, newchild, oldsize);
228fa9e4066Sahrens 		kmem_free(pvd->vdev_child, oldsize);
229fa9e4066Sahrens 	}
230fa9e4066Sahrens 
231fa9e4066Sahrens 	pvd->vdev_child = newchild;
232fa9e4066Sahrens 	pvd->vdev_child[id] = cvd;
233fa9e4066Sahrens 
234fa9e4066Sahrens 	cvd->vdev_top = (pvd->vdev_top ? pvd->vdev_top: cvd);
235fa9e4066Sahrens 	ASSERT(cvd->vdev_top->vdev_parent->vdev_parent == NULL);
236fa9e4066Sahrens 
237fa9e4066Sahrens 	/*
238fa9e4066Sahrens 	 * Walk up all ancestors to update guid sum.
239fa9e4066Sahrens 	 */
240fa9e4066Sahrens 	for (; pvd != NULL; pvd = pvd->vdev_parent)
241fa9e4066Sahrens 		pvd->vdev_guid_sum += cvd->vdev_guid_sum;
242fa9e4066Sahrens }
243fa9e4066Sahrens 
244fa9e4066Sahrens void
245fa9e4066Sahrens vdev_remove_child(vdev_t *pvd, vdev_t *cvd)
246fa9e4066Sahrens {
247fa9e4066Sahrens 	int c;
248fa9e4066Sahrens 	uint_t id = cvd->vdev_id;
249fa9e4066Sahrens 
250fa9e4066Sahrens 	ASSERT(cvd->vdev_parent == pvd);
251fa9e4066Sahrens 
252fa9e4066Sahrens 	if (pvd == NULL)
253fa9e4066Sahrens 		return;
254fa9e4066Sahrens 
255fa9e4066Sahrens 	ASSERT(id < pvd->vdev_children);
256fa9e4066Sahrens 	ASSERT(pvd->vdev_child[id] == cvd);
257fa9e4066Sahrens 
258fa9e4066Sahrens 	pvd->vdev_child[id] = NULL;
259fa9e4066Sahrens 	cvd->vdev_parent = NULL;
260fa9e4066Sahrens 
261fa9e4066Sahrens 	for (c = 0; c < pvd->vdev_children; c++)
262fa9e4066Sahrens 		if (pvd->vdev_child[c])
263fa9e4066Sahrens 			break;
264fa9e4066Sahrens 
265fa9e4066Sahrens 	if (c == pvd->vdev_children) {
266fa9e4066Sahrens 		kmem_free(pvd->vdev_child, c * sizeof (vdev_t *));
267fa9e4066Sahrens 		pvd->vdev_child = NULL;
268fa9e4066Sahrens 		pvd->vdev_children = 0;
269fa9e4066Sahrens 	}
270fa9e4066Sahrens 
271fa9e4066Sahrens 	/*
272fa9e4066Sahrens 	 * Walk up all ancestors to update guid sum.
273fa9e4066Sahrens 	 */
274fa9e4066Sahrens 	for (; pvd != NULL; pvd = pvd->vdev_parent)
275fa9e4066Sahrens 		pvd->vdev_guid_sum -= cvd->vdev_guid_sum;
276fa9e4066Sahrens }
277fa9e4066Sahrens 
278fa9e4066Sahrens /*
279fa9e4066Sahrens  * Remove any holes in the child array.
280fa9e4066Sahrens  */
281fa9e4066Sahrens void
282fa9e4066Sahrens vdev_compact_children(vdev_t *pvd)
283fa9e4066Sahrens {
284fa9e4066Sahrens 	vdev_t **newchild, *cvd;
285fa9e4066Sahrens 	int oldc = pvd->vdev_children;
286573ca77eSGeorge Wilson 	int newc;
287fa9e4066Sahrens 
288e14bb325SJeff Bonwick 	ASSERT(spa_config_held(pvd->vdev_spa, SCL_ALL, RW_WRITER) == SCL_ALL);
289fa9e4066Sahrens 
290573ca77eSGeorge Wilson 	for (int c = newc = 0; c < oldc; c++)
291fa9e4066Sahrens 		if (pvd->vdev_child[c])
292fa9e4066Sahrens 			newc++;
293fa9e4066Sahrens 
294fa9e4066Sahrens 	newchild = kmem_alloc(newc * sizeof (vdev_t *), KM_SLEEP);
295fa9e4066Sahrens 
296573ca77eSGeorge Wilson 	for (int c = newc = 0; c < oldc; c++) {
297fa9e4066Sahrens 		if ((cvd = pvd->vdev_child[c]) != NULL) {
298fa9e4066Sahrens 			newchild[newc] = cvd;
299fa9e4066Sahrens 			cvd->vdev_id = newc++;
300fa9e4066Sahrens 		}
301fa9e4066Sahrens 	}
302fa9e4066Sahrens 
303fa9e4066Sahrens 	kmem_free(pvd->vdev_child, oldc * sizeof (vdev_t *));
304fa9e4066Sahrens 	pvd->vdev_child = newchild;
305fa9e4066Sahrens 	pvd->vdev_children = newc;
306fa9e4066Sahrens }
307fa9e4066Sahrens 
308fa9e4066Sahrens /*
309fa9e4066Sahrens  * Allocate and minimally initialize a vdev_t.
310fa9e4066Sahrens  */
31188ecc943SGeorge Wilson vdev_t *
312fa9e4066Sahrens vdev_alloc_common(spa_t *spa, uint_t id, uint64_t guid, vdev_ops_t *ops)
313fa9e4066Sahrens {
314fa9e4066Sahrens 	vdev_t *vd;
315fa9e4066Sahrens 
316fa9e4066Sahrens 	vd = kmem_zalloc(sizeof (vdev_t), KM_SLEEP);
317fa9e4066Sahrens 
3180e34b6a7Sbonwick 	if (spa->spa_root_vdev == NULL) {
3190e34b6a7Sbonwick 		ASSERT(ops == &vdev_root_ops);
3200e34b6a7Sbonwick 		spa->spa_root_vdev = vd;
321e9103aaeSGarrett D'Amore 		spa->spa_load_guid = spa_generate_guid(NULL);
3220e34b6a7Sbonwick 	}
3230e34b6a7Sbonwick 
32488ecc943SGeorge Wilson 	if (guid == 0 && ops != &vdev_hole_ops) {
3250e34b6a7Sbonwick 		if (spa->spa_root_vdev == vd) {
3260e34b6a7Sbonwick 			/*
3270e34b6a7Sbonwick 			 * The root vdev's guid will also be the pool guid,
3280e34b6a7Sbonwick 			 * which must be unique among all pools.
3290e34b6a7Sbonwick 			 */
3301195e687SMark J Musante 			guid = spa_generate_guid(NULL);
3310e34b6a7Sbonwick 		} else {
3320e34b6a7Sbonwick 			/*
3330e34b6a7Sbonwick 			 * Any other vdev's guid must be unique within the pool.
3340e34b6a7Sbonwick 			 */
3351195e687SMark J Musante 			guid = spa_generate_guid(spa);
3360e34b6a7Sbonwick 		}
3370e34b6a7Sbonwick 		ASSERT(!spa_guid_exists(spa_guid(spa), guid));
3380e34b6a7Sbonwick 	}
3390e34b6a7Sbonwick 
340fa9e4066Sahrens 	vd->vdev_spa = spa;
341fa9e4066Sahrens 	vd->vdev_id = id;
342fa9e4066Sahrens 	vd->vdev_guid = guid;
343fa9e4066Sahrens 	vd->vdev_guid_sum = guid;
344fa9e4066Sahrens 	vd->vdev_ops = ops;
345fa9e4066Sahrens 	vd->vdev_state = VDEV_STATE_CLOSED;
34688ecc943SGeorge Wilson 	vd->vdev_ishole = (ops == &vdev_hole_ops);
347fa9e4066Sahrens 
348fa9e4066Sahrens 	mutex_init(&vd->vdev_dtl_lock, NULL, MUTEX_DEFAULT, NULL);
3495ad82045Snd150628 	mutex_init(&vd->vdev_stat_lock, NULL, MUTEX_DEFAULT, NULL);
350e14bb325SJeff Bonwick 	mutex_init(&vd->vdev_probe_lock, NULL, MUTEX_DEFAULT, NULL);
3518ad4d6ddSJeff Bonwick 	for (int t = 0; t < DTL_TYPES; t++) {
3520713e232SGeorge Wilson 		vd->vdev_dtl[t] = range_tree_create(NULL, NULL,
3538ad4d6ddSJeff Bonwick 		    &vd->vdev_dtl_lock);
3548ad4d6ddSJeff Bonwick 	}
355fa9e4066Sahrens 	txg_list_create(&vd->vdev_ms_list,
356fa9e4066Sahrens 	    offsetof(struct metaslab, ms_txg_node));
357fa9e4066Sahrens 	txg_list_create(&vd->vdev_dtl_list,
358fa9e4066Sahrens 	    offsetof(struct vdev, vdev_dtl_node));
359fa9e4066Sahrens 	vd->vdev_stat.vs_timestamp = gethrtime();
3603d7072f8Seschrock 	vdev_queue_init(vd);
3613d7072f8Seschrock 	vdev_cache_init(vd);
362fa9e4066Sahrens 
363fa9e4066Sahrens 	return (vd);
364fa9e4066Sahrens }
365fa9e4066Sahrens 
366fa9e4066Sahrens /*
367fa9e4066Sahrens  * Allocate a new vdev.  The 'alloctype' is used to control whether we are
368fa9e4066Sahrens  * creating a new vdev or loading an existing one - the behavior is slightly
369fa9e4066Sahrens  * different for each case.
370fa9e4066Sahrens  */
37199653d4eSeschrock int
37299653d4eSeschrock vdev_alloc(spa_t *spa, vdev_t **vdp, nvlist_t *nv, vdev_t *parent, uint_t id,
37399653d4eSeschrock     int alloctype)
374fa9e4066Sahrens {
375fa9e4066Sahrens 	vdev_ops_t *ops;
376fa9e4066Sahrens 	char *type;
3778654d025Sperrin 	uint64_t guid = 0, islog, nparity;
378fa9e4066Sahrens 	vdev_t *vd;
379fa9e4066Sahrens 
380e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
381fa9e4066Sahrens 
382fa9e4066Sahrens 	if (nvlist_lookup_string(nv, ZPOOL_CONFIG_TYPE, &type) != 0)
383be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
384fa9e4066Sahrens 
385fa9e4066Sahrens 	if ((ops = vdev_getops(type)) == NULL)
386be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
387fa9e4066Sahrens 
388fa9e4066Sahrens 	/*
389fa9e4066Sahrens 	 * If this is a load, get the vdev guid from the nvlist.
390fa9e4066Sahrens 	 * Otherwise, vdev_alloc_common() will generate one for us.
391fa9e4066Sahrens 	 */
392fa9e4066Sahrens 	if (alloctype == VDEV_ALLOC_LOAD) {
393fa9e4066Sahrens 		uint64_t label_id;
394fa9e4066Sahrens 
395fa9e4066Sahrens 		if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_ID, &label_id) ||
396fa9e4066Sahrens 		    label_id != id)
397be6fd75aSMatthew Ahrens 			return (SET_ERROR(EINVAL));
398fa9e4066Sahrens 
399fa9e4066Sahrens 		if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID, &guid) != 0)
400be6fd75aSMatthew Ahrens 			return (SET_ERROR(EINVAL));
40199653d4eSeschrock 	} else if (alloctype == VDEV_ALLOC_SPARE) {
40299653d4eSeschrock 		if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID, &guid) != 0)
403be6fd75aSMatthew Ahrens 			return (SET_ERROR(EINVAL));
404fa94a07fSbrendan 	} else if (alloctype == VDEV_ALLOC_L2CACHE) {
405fa94a07fSbrendan 		if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID, &guid) != 0)
406be6fd75aSMatthew Ahrens 			return (SET_ERROR(EINVAL));
40721ecdf64SLin Ling 	} else if (alloctype == VDEV_ALLOC_ROOTPOOL) {
40821ecdf64SLin Ling 		if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID, &guid) != 0)
409be6fd75aSMatthew Ahrens 			return (SET_ERROR(EINVAL));
410fa9e4066Sahrens 	}
411fa9e4066Sahrens 
41299653d4eSeschrock 	/*
41399653d4eSeschrock 	 * The first allocated vdev must be of type 'root'.
41499653d4eSeschrock 	 */
41599653d4eSeschrock 	if (ops != &vdev_root_ops && spa->spa_root_vdev == NULL)
416be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
41799653d4eSeschrock 
4188654d025Sperrin 	/*
4198654d025Sperrin 	 * Determine whether we're a log vdev.
4208654d025Sperrin 	 */
4218654d025Sperrin 	islog = 0;
4228654d025Sperrin 	(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_IS_LOG, &islog);
423990b4856Slling 	if (islog && spa_version(spa) < SPA_VERSION_SLOGS)
424be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOTSUP));
4258654d025Sperrin 
42688ecc943SGeorge Wilson 	if (ops == &vdev_hole_ops && spa_version(spa) < SPA_VERSION_HOLES)
427be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOTSUP));
42888ecc943SGeorge Wilson 
4298654d025Sperrin 	/*
4308654d025Sperrin 	 * Set the nparity property for RAID-Z vdevs.
4318654d025Sperrin 	 */
4328654d025Sperrin 	nparity = -1ULL;
4338654d025Sperrin 	if (ops == &vdev_raidz_ops) {
4348654d025Sperrin 		if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_NPARITY,
4358654d025Sperrin 		    &nparity) == 0) {
436b24ab676SJeff Bonwick 			if (nparity == 0 || nparity > VDEV_RAIDZ_MAXPARITY)
437be6fd75aSMatthew Ahrens 				return (SET_ERROR(EINVAL));
4388654d025Sperrin 			/*
439f94275ceSAdam Leventhal 			 * Previous versions could only support 1 or 2 parity
440f94275ceSAdam Leventhal 			 * device.
4418654d025Sperrin 			 */
442f94275ceSAdam Leventhal 			if (nparity > 1 &&
443f94275ceSAdam Leventhal 			    spa_version(spa) < SPA_VERSION_RAIDZ2)
444be6fd75aSMatthew Ahrens 				return (SET_ERROR(ENOTSUP));
445f94275ceSAdam Leventhal 			if (nparity > 2 &&
446f94275ceSAdam Leventhal 			    spa_version(spa) < SPA_VERSION_RAIDZ3)
447be6fd75aSMatthew Ahrens 				return (SET_ERROR(ENOTSUP));
4488654d025Sperrin 		} else {
4498654d025Sperrin 			/*
4508654d025Sperrin 			 * We require the parity to be specified for SPAs that
4518654d025Sperrin 			 * support multiple parity levels.
4528654d025Sperrin 			 */
453f94275ceSAdam Leventhal 			if (spa_version(spa) >= SPA_VERSION_RAIDZ2)
454be6fd75aSMatthew Ahrens 				return (SET_ERROR(EINVAL));
4558654d025Sperrin 			/*
4568654d025Sperrin 			 * Otherwise, we default to 1 parity device for RAID-Z.
4578654d025Sperrin 			 */
4588654d025Sperrin 			nparity = 1;
4598654d025Sperrin 		}
4608654d025Sperrin 	} else {
4618654d025Sperrin 		nparity = 0;
4628654d025Sperrin 	}
4638654d025Sperrin 	ASSERT(nparity != -1ULL);
4648654d025Sperrin 
465fa9e4066Sahrens 	vd = vdev_alloc_common(spa, id, guid, ops);
466fa9e4066Sahrens 
4678654d025Sperrin 	vd->vdev_islog = islog;
4688654d025Sperrin 	vd->vdev_nparity = nparity;
4698654d025Sperrin 
470fa9e4066Sahrens 	if (nvlist_lookup_string(nv, ZPOOL_CONFIG_PATH, &vd->vdev_path) == 0)
471fa9e4066Sahrens 		vd->vdev_path = spa_strdup(vd->vdev_path);
472fa9e4066Sahrens 	if (nvlist_lookup_string(nv, ZPOOL_CONFIG_DEVID, &vd->vdev_devid) == 0)
473fa9e4066Sahrens 		vd->vdev_devid = spa_strdup(vd->vdev_devid);
4743d7072f8Seschrock 	if (nvlist_lookup_string(nv, ZPOOL_CONFIG_PHYS_PATH,
4753d7072f8Seschrock 	    &vd->vdev_physpath) == 0)
4763d7072f8Seschrock 		vd->vdev_physpath = spa_strdup(vd->vdev_physpath);
4776809eb4eSEric Schrock 	if (nvlist_lookup_string(nv, ZPOOL_CONFIG_FRU, &vd->vdev_fru) == 0)
4786809eb4eSEric Schrock 		vd->vdev_fru = spa_strdup(vd->vdev_fru);
479fa9e4066Sahrens 
480fa9e4066Sahrens 	/*
481afefbcddSeschrock 	 * Set the whole_disk property.  If it's not specified, leave the value
482afefbcddSeschrock 	 * as -1.
483afefbcddSeschrock 	 */
484afefbcddSeschrock 	if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_WHOLE_DISK,
485afefbcddSeschrock 	    &vd->vdev_wholedisk) != 0)
486afefbcddSeschrock 		vd->vdev_wholedisk = -1ULL;
487afefbcddSeschrock 
488afefbcddSeschrock 	/*
489ea8dc4b6Seschrock 	 * Look for the 'not present' flag.  This will only be set if the device
490ea8dc4b6Seschrock 	 * was not present at the time of import.
491ea8dc4b6Seschrock 	 */
492ea8dc4b6Seschrock 	(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_NOT_PRESENT,
493ea8dc4b6Seschrock 	    &vd->vdev_not_present);
494ea8dc4b6Seschrock 
495ea8dc4b6Seschrock 	/*
496ecc2d604Sbonwick 	 * Get the alignment requirement.
497ecc2d604Sbonwick 	 */
498ecc2d604Sbonwick 	(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_ASHIFT, &vd->vdev_ashift);
499ecc2d604Sbonwick 
500ecc2d604Sbonwick 	/*
50188ecc943SGeorge Wilson 	 * Retrieve the vdev creation time.
50288ecc943SGeorge Wilson 	 */
50388ecc943SGeorge Wilson 	(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_CREATE_TXG,
50488ecc943SGeorge Wilson 	    &vd->vdev_crtxg);
50588ecc943SGeorge Wilson 
50688ecc943SGeorge Wilson 	/*
507fa9e4066Sahrens 	 * If we're a top-level vdev, try to load the allocation parameters.
508fa9e4066Sahrens 	 */
5091195e687SMark J Musante 	if (parent && !parent->vdev_parent &&
5101195e687SMark J Musante 	    (alloctype == VDEV_ALLOC_LOAD || alloctype == VDEV_ALLOC_SPLIT)) {
511fa9e4066Sahrens 		(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_METASLAB_ARRAY,
512fa9e4066Sahrens 		    &vd->vdev_ms_array);
513fa9e4066Sahrens 		(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_METASLAB_SHIFT,
514fa9e4066Sahrens 		    &vd->vdev_ms_shift);
515fa9e4066Sahrens 		(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_ASIZE,
516fa9e4066Sahrens 		    &vd->vdev_asize);
5173f9d6ad7SLin Ling 		(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_REMOVING,
5183f9d6ad7SLin Ling 		    &vd->vdev_removing);
519fa9e4066Sahrens 	}
520fa9e4066Sahrens 
521cd0837ccSGeorge Wilson 	if (parent && !parent->vdev_parent && alloctype != VDEV_ALLOC_ATTACH) {
522a1521560SJeff Bonwick 		ASSERT(alloctype == VDEV_ALLOC_LOAD ||
5239f4ab4d8SGeorge Wilson 		    alloctype == VDEV_ALLOC_ADD ||
5241195e687SMark J Musante 		    alloctype == VDEV_ALLOC_SPLIT ||
5259f4ab4d8SGeorge Wilson 		    alloctype == VDEV_ALLOC_ROOTPOOL);
526a1521560SJeff Bonwick 		vd->vdev_mg = metaslab_group_create(islog ?
527a1521560SJeff Bonwick 		    spa_log_class(spa) : spa_normal_class(spa), vd);
528a1521560SJeff Bonwick 	}
529a1521560SJeff Bonwick 
530fa9e4066Sahrens 	/*
5313d7072f8Seschrock 	 * If we're a leaf vdev, try to load the DTL object and other state.
532fa9e4066Sahrens 	 */
533c5904d13Seschrock 	if (vd->vdev_ops->vdev_op_leaf &&
53421ecdf64SLin Ling 	    (alloctype == VDEV_ALLOC_LOAD || alloctype == VDEV_ALLOC_L2CACHE ||
53521ecdf64SLin Ling 	    alloctype == VDEV_ALLOC_ROOTPOOL)) {
536c5904d13Seschrock 		if (alloctype == VDEV_ALLOC_LOAD) {
537fa9e4066Sahrens 			(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_DTL,
5380713e232SGeorge Wilson 			    &vd->vdev_dtl_object);
5393d7072f8Seschrock 			(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_UNSPARE,
5403d7072f8Seschrock 			    &vd->vdev_unspare);
541c5904d13Seschrock 		}
54221ecdf64SLin Ling 
54321ecdf64SLin Ling 		if (alloctype == VDEV_ALLOC_ROOTPOOL) {
54421ecdf64SLin Ling 			uint64_t spare = 0;
54521ecdf64SLin Ling 
54621ecdf64SLin Ling 			if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_IS_SPARE,
54721ecdf64SLin Ling 			    &spare) == 0 && spare)
54821ecdf64SLin Ling 				spa_spare_add(vd);
54921ecdf64SLin Ling 		}
55021ecdf64SLin Ling 
551c5904d13Seschrock 		(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_OFFLINE,
552c5904d13Seschrock 		    &vd->vdev_offline);
553c5904d13Seschrock 
554b4952e17SGeorge Wilson 		(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_RESILVER_TXG,
555b4952e17SGeorge Wilson 		    &vd->vdev_resilver_txg);
556cb04b873SMark J Musante 
5573d7072f8Seschrock 		/*
5583d7072f8Seschrock 		 * When importing a pool, we want to ignore the persistent fault
5593d7072f8Seschrock 		 * state, as the diagnosis made on another system may not be
560069f55e2SEric Schrock 		 * valid in the current context.  Local vdevs will
561069f55e2SEric Schrock 		 * remain in the faulted state.
5623d7072f8Seschrock 		 */
563b16da2e2SGeorge Wilson 		if (spa_load_state(spa) == SPA_LOAD_OPEN) {
5643d7072f8Seschrock 			(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_FAULTED,
5653d7072f8Seschrock 			    &vd->vdev_faulted);
5663d7072f8Seschrock 			(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_DEGRADED,
5673d7072f8Seschrock 			    &vd->vdev_degraded);
5683d7072f8Seschrock 			(void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_REMOVED,
5693d7072f8Seschrock 			    &vd->vdev_removed);
570069f55e2SEric Schrock 
571069f55e2SEric Schrock 			if (vd->vdev_faulted || vd->vdev_degraded) {
572069f55e2SEric Schrock 				char *aux;
573069f55e2SEric Schrock 
574069f55e2SEric Schrock 				vd->vdev_label_aux =
575069f55e2SEric Schrock 				    VDEV_AUX_ERR_EXCEEDED;
576069f55e2SEric Schrock 				if (nvlist_lookup_string(nv,
577069f55e2SEric Schrock 				    ZPOOL_CONFIG_AUX_STATE, &aux) == 0 &&
578069f55e2SEric Schrock 				    strcmp(aux, "external") == 0)
579069f55e2SEric Schrock 					vd->vdev_label_aux = VDEV_AUX_EXTERNAL;
580069f55e2SEric Schrock 			}
5813d7072f8Seschrock 		}
582fa9e4066Sahrens 	}
583fa9e4066Sahrens 
584fa9e4066Sahrens 	/*
585fa9e4066Sahrens 	 * Add ourselves to the parent's list of children.
586fa9e4066Sahrens 	 */
587fa9e4066Sahrens 	vdev_add_child(parent, vd);
588fa9e4066Sahrens 
58999653d4eSeschrock 	*vdp = vd;
59099653d4eSeschrock 
59199653d4eSeschrock 	return (0);
592fa9e4066Sahrens }
593fa9e4066Sahrens 
594fa9e4066Sahrens void
595fa9e4066Sahrens vdev_free(vdev_t *vd)
596fa9e4066Sahrens {
5973d7072f8Seschrock 	spa_t *spa = vd->vdev_spa;
598fa9e4066Sahrens 
599fa9e4066Sahrens 	/*
600fa9e4066Sahrens 	 * vdev_free() implies closing the vdev first.  This is simpler than
601fa9e4066Sahrens 	 * trying to ensure complicated semantics for all callers.
602fa9e4066Sahrens 	 */
603fa9e4066Sahrens 	vdev_close(vd);
604fa9e4066Sahrens 
605e14bb325SJeff Bonwick 	ASSERT(!list_link_active(&vd->vdev_config_dirty_node));
606b24ab676SJeff Bonwick 	ASSERT(!list_link_active(&vd->vdev_state_dirty_node));
607fa9e4066Sahrens 
608fa9e4066Sahrens 	/*
609fa9e4066Sahrens 	 * Free all children.
610fa9e4066Sahrens 	 */
611573ca77eSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++)
612fa9e4066Sahrens 		vdev_free(vd->vdev_child[c]);
613fa9e4066Sahrens 
614fa9e4066Sahrens 	ASSERT(vd->vdev_child == NULL);
615fa9e4066Sahrens 	ASSERT(vd->vdev_guid_sum == vd->vdev_guid);
616fa9e4066Sahrens 
617fa9e4066Sahrens 	/*
618fa9e4066Sahrens 	 * Discard allocation state.
619fa9e4066Sahrens 	 */
620a1521560SJeff Bonwick 	if (vd->vdev_mg != NULL) {
621fa9e4066Sahrens 		vdev_metaslab_fini(vd);
622a1521560SJeff Bonwick 		metaslab_group_destroy(vd->vdev_mg);
623a1521560SJeff Bonwick 	}
624fa9e4066Sahrens 
625fb09f5aaSMadhav Suresh 	ASSERT0(vd->vdev_stat.vs_space);
626fb09f5aaSMadhav Suresh 	ASSERT0(vd->vdev_stat.vs_dspace);
627fb09f5aaSMadhav Suresh 	ASSERT0(vd->vdev_stat.vs_alloc);
628fa9e4066Sahrens 
629fa9e4066Sahrens 	/*
630fa9e4066Sahrens 	 * Remove this vdev from its parent's child list.
631fa9e4066Sahrens 	 */
632fa9e4066Sahrens 	vdev_remove_child(vd->vdev_parent, vd);
633fa9e4066Sahrens 
634fa9e4066Sahrens 	ASSERT(vd->vdev_parent == NULL);
635fa9e4066Sahrens 
6363d7072f8Seschrock 	/*
6373d7072f8Seschrock 	 * Clean up vdev structure.
6383d7072f8Seschrock 	 */
6393d7072f8Seschrock 	vdev_queue_fini(vd);
6403d7072f8Seschrock 	vdev_cache_fini(vd);
6413d7072f8Seschrock 
6423d7072f8Seschrock 	if (vd->vdev_path)
6433d7072f8Seschrock 		spa_strfree(vd->vdev_path);
6443d7072f8Seschrock 	if (vd->vdev_devid)
6453d7072f8Seschrock 		spa_strfree(vd->vdev_devid);
6463d7072f8Seschrock 	if (vd->vdev_physpath)
6473d7072f8Seschrock 		spa_strfree(vd->vdev_physpath);
6486809eb4eSEric Schrock 	if (vd->vdev_fru)
6496809eb4eSEric Schrock 		spa_strfree(vd->vdev_fru);
6503d7072f8Seschrock 
6513d7072f8Seschrock 	if (vd->vdev_isspare)
6523d7072f8Seschrock 		spa_spare_remove(vd);
653fa94a07fSbrendan 	if (vd->vdev_isl2cache)
654fa94a07fSbrendan 		spa_l2cache_remove(vd);
6553d7072f8Seschrock 
6563d7072f8Seschrock 	txg_list_destroy(&vd->vdev_ms_list);
6573d7072f8Seschrock 	txg_list_destroy(&vd->vdev_dtl_list);
6588ad4d6ddSJeff Bonwick 
6593d7072f8Seschrock 	mutex_enter(&vd->vdev_dtl_lock);
6600713e232SGeorge Wilson 	space_map_close(vd->vdev_dtl_sm);
6618ad4d6ddSJeff Bonwick 	for (int t = 0; t < DTL_TYPES; t++) {
6620713e232SGeorge Wilson 		range_tree_vacate(vd->vdev_dtl[t], NULL, NULL);
6630713e232SGeorge Wilson 		range_tree_destroy(vd->vdev_dtl[t]);
6648ad4d6ddSJeff Bonwick 	}
6653d7072f8Seschrock 	mutex_exit(&vd->vdev_dtl_lock);
6668ad4d6ddSJeff Bonwick 
6673d7072f8Seschrock 	mutex_destroy(&vd->vdev_dtl_lock);
6683d7072f8Seschrock 	mutex_destroy(&vd->vdev_stat_lock);
669e14bb325SJeff Bonwick 	mutex_destroy(&vd->vdev_probe_lock);
6703d7072f8Seschrock 
6713d7072f8Seschrock 	if (vd == spa->spa_root_vdev)
6723d7072f8Seschrock 		spa->spa_root_vdev = NULL;
6733d7072f8Seschrock 
6743d7072f8Seschrock 	kmem_free(vd, sizeof (vdev_t));
675fa9e4066Sahrens }
676fa9e4066Sahrens 
677fa9e4066Sahrens /*
678fa9e4066Sahrens  * Transfer top-level vdev state from svd to tvd.
679fa9e4066Sahrens  */
680fa9e4066Sahrens static void
681fa9e4066Sahrens vdev_top_transfer(vdev_t *svd, vdev_t *tvd)
682fa9e4066Sahrens {
683fa9e4066Sahrens 	spa_t *spa = svd->vdev_spa;
684fa9e4066Sahrens 	metaslab_t *msp;
685fa9e4066Sahrens 	vdev_t *vd;
686fa9e4066Sahrens 	int t;
687fa9e4066Sahrens 
688fa9e4066Sahrens 	ASSERT(tvd == tvd->vdev_top);
689fa9e4066Sahrens 
690fa9e4066Sahrens 	tvd->vdev_ms_array = svd->vdev_ms_array;
691fa9e4066Sahrens 	tvd->vdev_ms_shift = svd->vdev_ms_shift;
692fa9e4066Sahrens 	tvd->vdev_ms_count = svd->vdev_ms_count;
693fa9e4066Sahrens 
694fa9e4066Sahrens 	svd->vdev_ms_array = 0;
695fa9e4066Sahrens 	svd->vdev_ms_shift = 0;
696fa9e4066Sahrens 	svd->vdev_ms_count = 0;
697fa9e4066Sahrens 
698cd0837ccSGeorge Wilson 	if (tvd->vdev_mg)
699cd0837ccSGeorge Wilson 		ASSERT3P(tvd->vdev_mg, ==, svd->vdev_mg);
700fa9e4066Sahrens 	tvd->vdev_mg = svd->vdev_mg;
701fa9e4066Sahrens 	tvd->vdev_ms = svd->vdev_ms;
702fa9e4066Sahrens 
703fa9e4066Sahrens 	svd->vdev_mg = NULL;
704fa9e4066Sahrens 	svd->vdev_ms = NULL;
705ecc2d604Sbonwick 
706ecc2d604Sbonwick 	if (tvd->vdev_mg != NULL)
707ecc2d604Sbonwick 		tvd->vdev_mg->mg_vd = tvd;
708fa9e4066Sahrens 
709fa9e4066Sahrens 	tvd->vdev_stat.vs_alloc = svd->vdev_stat.vs_alloc;
710fa9e4066Sahrens 	tvd->vdev_stat.vs_space = svd->vdev_stat.vs_space;
71199653d4eSeschrock 	tvd->vdev_stat.vs_dspace = svd->vdev_stat.vs_dspace;
712fa9e4066Sahrens 
713fa9e4066Sahrens 	svd->vdev_stat.vs_alloc = 0;
714fa9e4066Sahrens 	svd->vdev_stat.vs_space = 0;
71599653d4eSeschrock 	svd->vdev_stat.vs_dspace = 0;
716fa9e4066Sahrens 
717fa9e4066Sahrens 	for (t = 0; t < TXG_SIZE; t++) {
718fa9e4066Sahrens 		while ((msp = txg_list_remove(&svd->vdev_ms_list, t)) != NULL)
719fa9e4066Sahrens 			(void) txg_list_add(&tvd->vdev_ms_list, msp, t);
720fa9e4066Sahrens 		while ((vd = txg_list_remove(&svd->vdev_dtl_list, t)) != NULL)
721fa9e4066Sahrens 			(void) txg_list_add(&tvd->vdev_dtl_list, vd, t);
722fa9e4066Sahrens 		if (txg_list_remove_this(&spa->spa_vdev_txg_list, svd, t))
723fa9e4066Sahrens 			(void) txg_list_add(&spa->spa_vdev_txg_list, tvd, t);
724fa9e4066Sahrens 	}
725fa9e4066Sahrens 
726e14bb325SJeff Bonwick 	if (list_link_active(&svd->vdev_config_dirty_node)) {
727fa9e4066Sahrens 		vdev_config_clean(svd);
728fa9e4066Sahrens 		vdev_config_dirty(tvd);
729fa9e4066Sahrens 	}
730fa9e4066Sahrens 
731e14bb325SJeff Bonwick 	if (list_link_active(&svd->vdev_state_dirty_node)) {
732e14bb325SJeff Bonwick 		vdev_state_clean(svd);
733e14bb325SJeff Bonwick 		vdev_state_dirty(tvd);
734e14bb325SJeff Bonwick 	}
735e14bb325SJeff Bonwick 
73699653d4eSeschrock 	tvd->vdev_deflate_ratio = svd->vdev_deflate_ratio;
73799653d4eSeschrock 	svd->vdev_deflate_ratio = 0;
7388654d025Sperrin 
7398654d025Sperrin 	tvd->vdev_islog = svd->vdev_islog;
7408654d025Sperrin 	svd->vdev_islog = 0;
741fa9e4066Sahrens }
742fa9e4066Sahrens 
743fa9e4066Sahrens static void
744fa9e4066Sahrens vdev_top_update(vdev_t *tvd, vdev_t *vd)
745fa9e4066Sahrens {
746fa9e4066Sahrens 	if (vd == NULL)
747fa9e4066Sahrens 		return;
748fa9e4066Sahrens 
749fa9e4066Sahrens 	vd->vdev_top = tvd;
750fa9e4066Sahrens 
751573ca77eSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++)
752fa9e4066Sahrens 		vdev_top_update(tvd, vd->vdev_child[c]);
753fa9e4066Sahrens }
754fa9e4066Sahrens 
755fa9e4066Sahrens /*
756fa9e4066Sahrens  * Add a mirror/replacing vdev above an existing vdev.
757fa9e4066Sahrens  */
758fa9e4066Sahrens vdev_t *
759fa9e4066Sahrens vdev_add_parent(vdev_t *cvd, vdev_ops_t *ops)
760fa9e4066Sahrens {
761fa9e4066Sahrens 	spa_t *spa = cvd->vdev_spa;
762fa9e4066Sahrens 	vdev_t *pvd = cvd->vdev_parent;
763fa9e4066Sahrens 	vdev_t *mvd;
764fa9e4066Sahrens 
765e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
766fa9e4066Sahrens 
767fa9e4066Sahrens 	mvd = vdev_alloc_common(spa, cvd->vdev_id, 0, ops);
768ecc2d604Sbonwick 
769ecc2d604Sbonwick 	mvd->vdev_asize = cvd->vdev_asize;
770573ca77eSGeorge Wilson 	mvd->vdev_min_asize = cvd->vdev_min_asize;
7714263d13fSGeorge Wilson 	mvd->vdev_max_asize = cvd->vdev_max_asize;
772ecc2d604Sbonwick 	mvd->vdev_ashift = cvd->vdev_ashift;
773ecc2d604Sbonwick 	mvd->vdev_state = cvd->vdev_state;
77488ecc943SGeorge Wilson 	mvd->vdev_crtxg = cvd->vdev_crtxg;
775ecc2d604Sbonwick 
776fa9e4066Sahrens 	vdev_remove_child(pvd, cvd);
777fa9e4066Sahrens 	vdev_add_child(pvd, mvd);
778fa9e4066Sahrens 	cvd->vdev_id = mvd->vdev_children;
779fa9e4066Sahrens 	vdev_add_child(mvd, cvd);
780fa9e4066Sahrens 	vdev_top_update(cvd->vdev_top, cvd->vdev_top);
781fa9e4066Sahrens 
782fa9e4066Sahrens 	if (mvd == mvd->vdev_top)
783fa9e4066Sahrens 		vdev_top_transfer(cvd, mvd);
784fa9e4066Sahrens 
785fa9e4066Sahrens 	return (mvd);
786fa9e4066Sahrens }
787fa9e4066Sahrens 
788fa9e4066Sahrens /*
789fa9e4066Sahrens  * Remove a 1-way mirror/replacing vdev from the tree.
790fa9e4066Sahrens  */
791fa9e4066Sahrens void
792fa9e4066Sahrens vdev_remove_parent(vdev_t *cvd)
793fa9e4066Sahrens {
794fa9e4066Sahrens 	vdev_t *mvd = cvd->vdev_parent;
795fa9e4066Sahrens 	vdev_t *pvd = mvd->vdev_parent;
796fa9e4066Sahrens 
797e14bb325SJeff Bonwick 	ASSERT(spa_config_held(cvd->vdev_spa, SCL_ALL, RW_WRITER) == SCL_ALL);
798fa9e4066Sahrens 
799fa9e4066Sahrens 	ASSERT(mvd->vdev_children == 1);
800fa9e4066Sahrens 	ASSERT(mvd->vdev_ops == &vdev_mirror_ops ||
80199653d4eSeschrock 	    mvd->vdev_ops == &vdev_replacing_ops ||
80299653d4eSeschrock 	    mvd->vdev_ops == &vdev_spare_ops);
803ecc2d604Sbonwick 	cvd->vdev_ashift = mvd->vdev_ashift;
804fa9e4066Sahrens 
805fa9e4066Sahrens 	vdev_remove_child(mvd, cvd);
806fa9e4066Sahrens 	vdev_remove_child(pvd, mvd);
8078ad4d6ddSJeff Bonwick 
808e14bb325SJeff Bonwick 	/*
809e14bb325SJeff Bonwick 	 * If cvd will replace mvd as a top-level vdev, preserve mvd's guid.
810e14bb325SJeff Bonwick 	 * Otherwise, we could have detached an offline device, and when we
811e14bb325SJeff Bonwick 	 * go to import the pool we'll think we have two top-level vdevs,
812e14bb325SJeff Bonwick 	 * instead of a different version of the same top-level vdev.
813e14bb325SJeff Bonwick 	 */
8148ad4d6ddSJeff Bonwick 	if (mvd->vdev_top == mvd) {
8158ad4d6ddSJeff Bonwick 		uint64_t guid_delta = mvd->vdev_guid - cvd->vdev_guid;
8161195e687SMark J Musante 		cvd->vdev_orig_guid = cvd->vdev_guid;
8178ad4d6ddSJeff Bonwick 		cvd->vdev_guid += guid_delta;
8188ad4d6ddSJeff Bonwick 		cvd->vdev_guid_sum += guid_delta;
8198ad4d6ddSJeff Bonwick 	}
820fa9e4066Sahrens 	cvd->vdev_id = mvd->vdev_id;
821fa9e4066Sahrens 	vdev_add_child(pvd, cvd);
822fa9e4066Sahrens 	vdev_top_update(cvd->vdev_top, cvd->vdev_top);
823fa9e4066Sahrens 
824fa9e4066Sahrens 	if (cvd == cvd->vdev_top)
825fa9e4066Sahrens 		vdev_top_transfer(mvd, cvd);
826fa9e4066Sahrens 
827fa9e4066Sahrens 	ASSERT(mvd->vdev_children == 0);
828fa9e4066Sahrens 	vdev_free(mvd);
829fa9e4066Sahrens }
830fa9e4066Sahrens 
831ea8dc4b6Seschrock int
832fa9e4066Sahrens vdev_metaslab_init(vdev_t *vd, uint64_t txg)
833fa9e4066Sahrens {
834fa9e4066Sahrens 	spa_t *spa = vd->vdev_spa;
835ecc2d604Sbonwick 	objset_t *mos = spa->spa_meta_objset;
836ecc2d604Sbonwick 	uint64_t m;
837fa9e4066Sahrens 	uint64_t oldc = vd->vdev_ms_count;
838fa9e4066Sahrens 	uint64_t newc = vd->vdev_asize >> vd->vdev_ms_shift;
839ecc2d604Sbonwick 	metaslab_t **mspp;
840ecc2d604Sbonwick 	int error;
841fa9e4066Sahrens 
842a1521560SJeff Bonwick 	ASSERT(txg == 0 || spa_config_held(spa, SCL_ALLOC, RW_WRITER));
843a1521560SJeff Bonwick 
84488ecc943SGeorge Wilson 	/*
84588ecc943SGeorge Wilson 	 * This vdev is not being allocated from yet or is a hole.
84688ecc943SGeorge Wilson 	 */
84788ecc943SGeorge Wilson 	if (vd->vdev_ms_shift == 0)
8480e34b6a7Sbonwick 		return (0);
8490e34b6a7Sbonwick 
85088ecc943SGeorge Wilson 	ASSERT(!vd->vdev_ishole);
85188ecc943SGeorge Wilson 
852e6ca193dSGeorge Wilson 	/*
853e6ca193dSGeorge Wilson 	 * Compute the raidz-deflation ratio.  Note, we hard-code
854b5152584SMatthew Ahrens 	 * in 128k (1 << 17) because it is the "typical" blocksize.
855b5152584SMatthew Ahrens 	 * Even though SPA_MAXBLOCKSIZE changed, this algorithm can not change,
856b5152584SMatthew Ahrens 	 * otherwise it would inconsistently account for existing bp's.
857e6ca193dSGeorge Wilson 	 */
858e6ca193dSGeorge Wilson 	vd->vdev_deflate_ratio = (1 << 17) /
859e6ca193dSGeorge Wilson 	    (vdev_psize_to_asize(vd, 1 << 17) >> SPA_MINBLOCKSHIFT);
860e6ca193dSGeorge Wilson 
861fa9e4066Sahrens 	ASSERT(oldc <= newc);
862fa9e4066Sahrens 
863ecc2d604Sbonwick 	mspp = kmem_zalloc(newc * sizeof (*mspp), KM_SLEEP);
864fa9e4066Sahrens 
865fa9e4066Sahrens 	if (oldc != 0) {
866ecc2d604Sbonwick 		bcopy(vd->vdev_ms, mspp, oldc * sizeof (*mspp));
867ecc2d604Sbonwick 		kmem_free(vd->vdev_ms, oldc * sizeof (*mspp));
868ecc2d604Sbonwick 	}
869ecc2d604Sbonwick 
870ecc2d604Sbonwick 	vd->vdev_ms = mspp;
871ecc2d604Sbonwick 	vd->vdev_ms_count = newc;
872ecc2d604Sbonwick 
873ecc2d604Sbonwick 	for (m = oldc; m < newc; m++) {
874ecc2d604Sbonwick 		uint64_t object = 0;
8750713e232SGeorge Wilson 
8760713e232SGeorge Wilson 		if (txg == 0) {
877ecc2d604Sbonwick 			error = dmu_read(mos, vd->vdev_ms_array,
8787bfdf011SNeil Perrin 			    m * sizeof (uint64_t), sizeof (uint64_t), &object,
8797bfdf011SNeil Perrin 			    DMU_READ_PREFETCH);
880ecc2d604Sbonwick 			if (error)
881ecc2d604Sbonwick 				return (error);
882ecc2d604Sbonwick 		}
8831e9bd7ecSPrakash Surya 
8841e9bd7ecSPrakash Surya 		error = metaslab_init(vd->vdev_mg, m, object, txg,
8851e9bd7ecSPrakash Surya 		    &(vd->vdev_ms[m]));
8861e9bd7ecSPrakash Surya 		if (error)
8871e9bd7ecSPrakash Surya 			return (error);
888fa9e4066Sahrens 	}
889fa9e4066Sahrens 
890a1521560SJeff Bonwick 	if (txg == 0)
891a1521560SJeff Bonwick 		spa_config_enter(spa, SCL_ALLOC, FTAG, RW_WRITER);
892a1521560SJeff Bonwick 
8933f9d6ad7SLin Ling 	/*
8943f9d6ad7SLin Ling 	 * If the vdev is being removed we don't activate
8953f9d6ad7SLin Ling 	 * the metaslabs since we want to ensure that no new
8963f9d6ad7SLin Ling 	 * allocations are performed on this device.
8973f9d6ad7SLin Ling 	 */
8983f9d6ad7SLin Ling 	if (oldc == 0 && !vd->vdev_removing)
899a1521560SJeff Bonwick 		metaslab_group_activate(vd->vdev_mg);
900a1521560SJeff Bonwick 
901a1521560SJeff Bonwick 	if (txg == 0)
902a1521560SJeff Bonwick 		spa_config_exit(spa, SCL_ALLOC, FTAG);
903a1521560SJeff Bonwick 
904ea8dc4b6Seschrock 	return (0);
905fa9e4066Sahrens }
906fa9e4066Sahrens 
907fa9e4066Sahrens void
908fa9e4066Sahrens vdev_metaslab_fini(vdev_t *vd)
909fa9e4066Sahrens {
910fa9e4066Sahrens 	uint64_t m;
911fa9e4066Sahrens 	uint64_t count = vd->vdev_ms_count;
912fa9e4066Sahrens 
913fa9e4066Sahrens 	if (vd->vdev_ms != NULL) {
914a1521560SJeff Bonwick 		metaslab_group_passivate(vd->vdev_mg);
9150713e232SGeorge Wilson 		for (m = 0; m < count; m++) {
9160713e232SGeorge Wilson 			metaslab_t *msp = vd->vdev_ms[m];
9170713e232SGeorge Wilson 
9180713e232SGeorge Wilson 			if (msp != NULL)
9190713e232SGeorge Wilson 				metaslab_fini(msp);
9200713e232SGeorge Wilson 		}
921fa9e4066Sahrens 		kmem_free(vd->vdev_ms, count * sizeof (metaslab_t *));
922fa9e4066Sahrens 		vd->vdev_ms = NULL;
923fa9e4066Sahrens 	}
924fa9e4066Sahrens }
925fa9e4066Sahrens 
926e14bb325SJeff Bonwick typedef struct vdev_probe_stats {
927e14bb325SJeff Bonwick 	boolean_t	vps_readable;
928e14bb325SJeff Bonwick 	boolean_t	vps_writeable;
929e14bb325SJeff Bonwick 	int		vps_flags;
930e14bb325SJeff Bonwick } vdev_probe_stats_t;
931e14bb325SJeff Bonwick 
932e14bb325SJeff Bonwick static void
933e14bb325SJeff Bonwick vdev_probe_done(zio_t *zio)
9340a4e9518Sgw25295 {
9358ad4d6ddSJeff Bonwick 	spa_t *spa = zio->io_spa;
936a3f829aeSBill Moore 	vdev_t *vd = zio->io_vd;
937e14bb325SJeff Bonwick 	vdev_probe_stats_t *vps = zio->io_private;
938a3f829aeSBill Moore 
939a3f829aeSBill Moore 	ASSERT(vd->vdev_probe_zio != NULL);
940e14bb325SJeff Bonwick 
941e14bb325SJeff Bonwick 	if (zio->io_type == ZIO_TYPE_READ) {
942e14bb325SJeff Bonwick 		if (zio->io_error == 0)
943e14bb325SJeff Bonwick 			vps->vps_readable = 1;
9448ad4d6ddSJeff Bonwick 		if (zio->io_error == 0 && spa_writeable(spa)) {
945a3f829aeSBill Moore 			zio_nowait(zio_write_phys(vd->vdev_probe_zio, vd,
946e14bb325SJeff Bonwick 			    zio->io_offset, zio->io_size, zio->io_data,
947e14bb325SJeff Bonwick 			    ZIO_CHECKSUM_OFF, vdev_probe_done, vps,
948e14bb325SJeff Bonwick 			    ZIO_PRIORITY_SYNC_WRITE, vps->vps_flags, B_TRUE));
949e14bb325SJeff Bonwick 		} else {
950e14bb325SJeff Bonwick 			zio_buf_free(zio->io_data, zio->io_size);
951e14bb325SJeff Bonwick 		}
952e14bb325SJeff Bonwick 	} else if (zio->io_type == ZIO_TYPE_WRITE) {
953e14bb325SJeff Bonwick 		if (zio->io_error == 0)
954e14bb325SJeff Bonwick 			vps->vps_writeable = 1;
955e14bb325SJeff Bonwick 		zio_buf_free(zio->io_data, zio->io_size);
956e14bb325SJeff Bonwick 	} else if (zio->io_type == ZIO_TYPE_NULL) {
957a3f829aeSBill Moore 		zio_t *pio;
958e14bb325SJeff Bonwick 
959e14bb325SJeff Bonwick 		vd->vdev_cant_read |= !vps->vps_readable;
960e14bb325SJeff Bonwick 		vd->vdev_cant_write |= !vps->vps_writeable;
961e14bb325SJeff Bonwick 
962e14bb325SJeff Bonwick 		if (vdev_readable(vd) &&
9638ad4d6ddSJeff Bonwick 		    (vdev_writeable(vd) || !spa_writeable(spa))) {
964e14bb325SJeff Bonwick 			zio->io_error = 0;
965e14bb325SJeff Bonwick 		} else {
966e14bb325SJeff Bonwick 			ASSERT(zio->io_error != 0);
967e14bb325SJeff Bonwick 			zfs_ereport_post(FM_EREPORT_ZFS_PROBE_FAILURE,
9688ad4d6ddSJeff Bonwick 			    spa, vd, NULL, 0, 0);
969be6fd75aSMatthew Ahrens 			zio->io_error = SET_ERROR(ENXIO);
970e14bb325SJeff Bonwick 		}
971a3f829aeSBill Moore 
972a3f829aeSBill Moore 		mutex_enter(&vd->vdev_probe_lock);
973a3f829aeSBill Moore 		ASSERT(vd->vdev_probe_zio == zio);
974a3f829aeSBill Moore 		vd->vdev_probe_zio = NULL;
975a3f829aeSBill Moore 		mutex_exit(&vd->vdev_probe_lock);
976a3f829aeSBill Moore 
977a3f829aeSBill Moore 		while ((pio = zio_walk_parents(zio)) != NULL)
978a3f829aeSBill Moore 			if (!vdev_accessible(vd, pio))
979be6fd75aSMatthew Ahrens 				pio->io_error = SET_ERROR(ENXIO);
980a3f829aeSBill Moore 
981e14bb325SJeff Bonwick 		kmem_free(vps, sizeof (*vps));
982e14bb325SJeff Bonwick 	}
983e14bb325SJeff Bonwick }
9840a4e9518Sgw25295 
9850a4e9518Sgw25295 /*
986f7170741SWill Andrews  * Determine whether this device is accessible.
987f7170741SWill Andrews  *
988f7170741SWill Andrews  * Read and write to several known locations: the pad regions of each
989f7170741SWill Andrews  * vdev label but the first, which we leave alone in case it contains
990f7170741SWill Andrews  * a VTOC.
9910a4e9518Sgw25295  */
992e14bb325SJeff Bonwick zio_t *
993a3f829aeSBill Moore vdev_probe(vdev_t *vd, zio_t *zio)
994e14bb325SJeff Bonwick {
995e14bb325SJeff Bonwick 	spa_t *spa = vd->vdev_spa;
996a3f829aeSBill Moore 	vdev_probe_stats_t *vps = NULL;
997a3f829aeSBill Moore 	zio_t *pio;
9980a4e9518Sgw25295 
999a3f829aeSBill Moore 	ASSERT(vd->vdev_ops->vdev_op_leaf);
1000a3f829aeSBill Moore 
1001a3f829aeSBill Moore 	/*
1002a3f829aeSBill Moore 	 * Don't probe the probe.
1003a3f829aeSBill Moore 	 */
1004a3f829aeSBill Moore 	if (zio && (zio->io_flags & ZIO_FLAG_PROBE))
1005a3f829aeSBill Moore 		return (NULL);
1006a3f829aeSBill Moore 
1007a3f829aeSBill Moore 	/*
1008a3f829aeSBill Moore 	 * To prevent 'probe storms' when a device fails, we create
1009a3f829aeSBill Moore 	 * just one probe i/o at a time.  All zios that want to probe
1010a3f829aeSBill Moore 	 * this vdev will become parents of the probe io.
1011a3f829aeSBill Moore 	 */
1012a3f829aeSBill Moore 	mutex_enter(&vd->vdev_probe_lock);
1013a3f829aeSBill Moore 
1014a3f829aeSBill Moore 	if ((pio = vd->vdev_probe_zio) == NULL) {
1015e14bb325SJeff Bonwick 		vps = kmem_zalloc(sizeof (*vps), KM_SLEEP);
1016e14bb325SJeff Bonwick 
1017e14bb325SJeff Bonwick 		vps->vps_flags = ZIO_FLAG_CANFAIL | ZIO_FLAG_PROBE |
1018a3f829aeSBill Moore 		    ZIO_FLAG_DONT_CACHE | ZIO_FLAG_DONT_AGGREGATE |
10198956713aSEric Schrock 		    ZIO_FLAG_TRYHARD;
1020e14bb325SJeff Bonwick 
1021e14bb325SJeff Bonwick 		if (spa_config_held(spa, SCL_ZIO, RW_WRITER)) {
1022e14bb325SJeff Bonwick 			/*
1023a3f829aeSBill Moore 			 * vdev_cant_read and vdev_cant_write can only
1024a3f829aeSBill Moore 			 * transition from TRUE to FALSE when we have the
1025a3f829aeSBill Moore 			 * SCL_ZIO lock as writer; otherwise they can only
1026a3f829aeSBill Moore 			 * transition from FALSE to TRUE.  This ensures that
1027a3f829aeSBill Moore 			 * any zio looking at these values can assume that
1028a3f829aeSBill Moore 			 * failures persist for the life of the I/O.  That's
1029a3f829aeSBill Moore 			 * important because when a device has intermittent
1030a3f829aeSBill Moore 			 * connectivity problems, we want to ensure that
1031a3f829aeSBill Moore 			 * they're ascribed to the device (ENXIO) and not
1032a3f829aeSBill Moore 			 * the zio (EIO).
1033e14bb325SJeff Bonwick 			 *
1034a3f829aeSBill Moore 			 * Since we hold SCL_ZIO as writer here, clear both
1035a3f829aeSBill Moore 			 * values so the probe can reevaluate from first
1036a3f829aeSBill Moore 			 * principles.
1037e14bb325SJeff Bonwick 			 */
1038e14bb325SJeff Bonwick 			vps->vps_flags |= ZIO_FLAG_CONFIG_WRITER;
1039e14bb325SJeff Bonwick 			vd->vdev_cant_read = B_FALSE;
1040e14bb325SJeff Bonwick 			vd->vdev_cant_write = B_FALSE;
1041e14bb325SJeff Bonwick 		}
1042e14bb325SJeff Bonwick 
1043a3f829aeSBill Moore 		vd->vdev_probe_zio = pio = zio_null(NULL, spa, vd,
1044a3f829aeSBill Moore 		    vdev_probe_done, vps,
1045a3f829aeSBill Moore 		    vps->vps_flags | ZIO_FLAG_DONT_PROPAGATE);
1046e14bb325SJeff Bonwick 
104798d1cbfeSGeorge Wilson 		/*
104898d1cbfeSGeorge Wilson 		 * We can't change the vdev state in this context, so we
104998d1cbfeSGeorge Wilson 		 * kick off an async task to do it on our behalf.
105098d1cbfeSGeorge Wilson 		 */
1051a3f829aeSBill Moore 		if (zio != NULL) {
1052a3f829aeSBill Moore 			vd->vdev_probe_wanted = B_TRUE;
1053a3f829aeSBill Moore 			spa_async_request(spa, SPA_ASYNC_PROBE);
1054a3f829aeSBill Moore 		}
1055a3f829aeSBill Moore 	}
1056e14bb325SJeff Bonwick 
1057a3f829aeSBill Moore 	if (zio != NULL)
1058a3f829aeSBill Moore 		zio_add_child(zio, pio);
1059a3f829aeSBill Moore 
1060a3f829aeSBill Moore 	mutex_exit(&vd->vdev_probe_lock);
1061a3f829aeSBill Moore 
1062a3f829aeSBill Moore 	if (vps == NULL) {
1063a3f829aeSBill Moore 		ASSERT(zio != NULL);
1064a3f829aeSBill Moore 		return (NULL);
1065a3f829aeSBill Moore 	}
1066e14bb325SJeff Bonwick 
1067e14bb325SJeff Bonwick 	for (int l = 1; l < VDEV_LABELS; l++) {
1068a3f829aeSBill Moore 		zio_nowait(zio_read_phys(pio, vd,
1069e14bb325SJeff Bonwick 		    vdev_label_offset(vd->vdev_psize, l,
1070f83ffe1aSLin Ling 		    offsetof(vdev_label_t, vl_pad2)),
1071f83ffe1aSLin Ling 		    VDEV_PAD_SIZE, zio_buf_alloc(VDEV_PAD_SIZE),
1072e14bb325SJeff Bonwick 		    ZIO_CHECKSUM_OFF, vdev_probe_done, vps,
1073e14bb325SJeff Bonwick 		    ZIO_PRIORITY_SYNC_READ, vps->vps_flags, B_TRUE));
1074e14bb325SJeff Bonwick 	}
1075e14bb325SJeff Bonwick 
1076a3f829aeSBill Moore 	if (zio == NULL)
1077a3f829aeSBill Moore 		return (pio);
1078a3f829aeSBill Moore 
1079a3f829aeSBill Moore 	zio_nowait(pio);
1080a3f829aeSBill Moore 	return (NULL);
10810a4e9518Sgw25295 }
10820a4e9518Sgw25295 
1083f64c0e34SEric Taylor static void
1084f64c0e34SEric Taylor vdev_open_child(void *arg)
1085f64c0e34SEric Taylor {
1086f64c0e34SEric Taylor 	vdev_t *vd = arg;
1087f64c0e34SEric Taylor 
1088f64c0e34SEric Taylor 	vd->vdev_open_thread = curthread;
1089f64c0e34SEric Taylor 	vd->vdev_open_error = vdev_open(vd);
1090f64c0e34SEric Taylor 	vd->vdev_open_thread = NULL;
1091f64c0e34SEric Taylor }
1092f64c0e34SEric Taylor 
1093681d9761SEric Taylor boolean_t
1094681d9761SEric Taylor vdev_uses_zvols(vdev_t *vd)
1095681d9761SEric Taylor {
1096681d9761SEric Taylor 	if (vd->vdev_path && strncmp(vd->vdev_path, ZVOL_DIR,
1097681d9761SEric Taylor 	    strlen(ZVOL_DIR)) == 0)
1098681d9761SEric Taylor 		return (B_TRUE);
1099681d9761SEric Taylor 	for (int c = 0; c < vd->vdev_children; c++)
1100681d9761SEric Taylor 		if (vdev_uses_zvols(vd->vdev_child[c]))
1101681d9761SEric Taylor 			return (B_TRUE);
1102681d9761SEric Taylor 	return (B_FALSE);
1103681d9761SEric Taylor }
1104681d9761SEric Taylor 
1105f64c0e34SEric Taylor void
1106f64c0e34SEric Taylor vdev_open_children(vdev_t *vd)
1107f64c0e34SEric Taylor {
1108f64c0e34SEric Taylor 	taskq_t *tq;
1109f64c0e34SEric Taylor 	int children = vd->vdev_children;
1110f64c0e34SEric Taylor 
1111681d9761SEric Taylor 	/*
1112681d9761SEric Taylor 	 * in order to handle pools on top of zvols, do the opens
1113681d9761SEric Taylor 	 * in a single thread so that the same thread holds the
1114681d9761SEric Taylor 	 * spa_namespace_lock
1115681d9761SEric Taylor 	 */
1116681d9761SEric Taylor 	if (vdev_uses_zvols(vd)) {
1117681d9761SEric Taylor 		for (int c = 0; c < children; c++)
1118681d9761SEric Taylor 			vd->vdev_child[c]->vdev_open_error =
1119681d9761SEric Taylor 			    vdev_open(vd->vdev_child[c]);
1120681d9761SEric Taylor 		return;
1121681d9761SEric Taylor 	}
1122f64c0e34SEric Taylor 	tq = taskq_create("vdev_open", children, minclsyspri,
1123f64c0e34SEric Taylor 	    children, children, TASKQ_PREPOPULATE);
1124f64c0e34SEric Taylor 
1125f64c0e34SEric Taylor 	for (int c = 0; c < children; c++)
1126f64c0e34SEric Taylor 		VERIFY(taskq_dispatch(tq, vdev_open_child, vd->vdev_child[c],
1127f64c0e34SEric Taylor 		    TQ_SLEEP) != NULL);
1128f64c0e34SEric Taylor 
1129f64c0e34SEric Taylor 	taskq_destroy(tq);
1130f64c0e34SEric Taylor }
1131f64c0e34SEric Taylor 
1132fa9e4066Sahrens /*
1133fa9e4066Sahrens  * Prepare a virtual device for access.
1134fa9e4066Sahrens  */
1135fa9e4066Sahrens int
1136fa9e4066Sahrens vdev_open(vdev_t *vd)
1137fa9e4066Sahrens {
11388ad4d6ddSJeff Bonwick 	spa_t *spa = vd->vdev_spa;
1139fa9e4066Sahrens 	int error;
1140fa9e4066Sahrens 	uint64_t osize = 0;
11414263d13fSGeorge Wilson 	uint64_t max_osize = 0;
11424263d13fSGeorge Wilson 	uint64_t asize, max_asize, psize;
1143ecc2d604Sbonwick 	uint64_t ashift = 0;
1144fa9e4066Sahrens 
1145f64c0e34SEric Taylor 	ASSERT(vd->vdev_open_thread == curthread ||
1146f64c0e34SEric Taylor 	    spa_config_held(spa, SCL_STATE_ALL, RW_WRITER) == SCL_STATE_ALL);
1147fa9e4066Sahrens 	ASSERT(vd->vdev_state == VDEV_STATE_CLOSED ||
1148fa9e4066Sahrens 	    vd->vdev_state == VDEV_STATE_CANT_OPEN ||
1149fa9e4066Sahrens 	    vd->vdev_state == VDEV_STATE_OFFLINE);
1150fa9e4066Sahrens 
1151fa9e4066Sahrens 	vd->vdev_stat.vs_aux = VDEV_AUX_NONE;
1152e6ca193dSGeorge Wilson 	vd->vdev_cant_read = B_FALSE;
1153e6ca193dSGeorge Wilson 	vd->vdev_cant_write = B_FALSE;
1154573ca77eSGeorge Wilson 	vd->vdev_min_asize = vdev_get_min_asize(vd);
1155fa9e4066Sahrens 
1156069f55e2SEric Schrock 	/*
1157069f55e2SEric Schrock 	 * If this vdev is not removed, check its fault status.  If it's
1158069f55e2SEric Schrock 	 * faulted, bail out of the open.
1159069f55e2SEric Schrock 	 */
11603d7072f8Seschrock 	if (!vd->vdev_removed && vd->vdev_faulted) {
11613d7072f8Seschrock 		ASSERT(vd->vdev_children == 0);
1162069f55e2SEric Schrock 		ASSERT(vd->vdev_label_aux == VDEV_AUX_ERR_EXCEEDED ||
1163069f55e2SEric Schrock 		    vd->vdev_label_aux == VDEV_AUX_EXTERNAL);
11643d7072f8Seschrock 		vdev_set_state(vd, B_TRUE, VDEV_STATE_FAULTED,
1165069f55e2SEric Schrock 		    vd->vdev_label_aux);
1166be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENXIO));
11673d7072f8Seschrock 	} else if (vd->vdev_offline) {
1168fa9e4066Sahrens 		ASSERT(vd->vdev_children == 0);
1169ea8dc4b6Seschrock 		vdev_set_state(vd, B_TRUE, VDEV_STATE_OFFLINE, VDEV_AUX_NONE);
1170be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENXIO));
1171fa9e4066Sahrens 	}
1172fa9e4066Sahrens 
11734263d13fSGeorge Wilson 	error = vd->vdev_ops->vdev_op_open(vd, &osize, &max_osize, &ashift);
1174fa9e4066Sahrens 
1175095bcd66SGeorge Wilson 	/*
1176095bcd66SGeorge Wilson 	 * Reset the vdev_reopening flag so that we actually close
1177095bcd66SGeorge Wilson 	 * the vdev on error.
1178095bcd66SGeorge Wilson 	 */
1179095bcd66SGeorge Wilson 	vd->vdev_reopening = B_FALSE;
1180ea8dc4b6Seschrock 	if (zio_injection_enabled && error == 0)
11818956713aSEric Schrock 		error = zio_handle_device_injection(vd, NULL, ENXIO);
1182ea8dc4b6Seschrock 
1183fa9e4066Sahrens 	if (error) {
11843d7072f8Seschrock 		if (vd->vdev_removed &&
11853d7072f8Seschrock 		    vd->vdev_stat.vs_aux != VDEV_AUX_OPEN_FAILED)
11863d7072f8Seschrock 			vd->vdev_removed = B_FALSE;
11873d7072f8Seschrock 
1188ea8dc4b6Seschrock 		vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
1189fa9e4066Sahrens 		    vd->vdev_stat.vs_aux);
1190fa9e4066Sahrens 		return (error);
1191fa9e4066Sahrens 	}
1192fa9e4066Sahrens 
11933d7072f8Seschrock 	vd->vdev_removed = B_FALSE;
11943d7072f8Seschrock 
1195096d22d4SEric Schrock 	/*
1196096d22d4SEric Schrock 	 * Recheck the faulted flag now that we have confirmed that
1197096d22d4SEric Schrock 	 * the vdev is accessible.  If we're faulted, bail.
1198096d22d4SEric Schrock 	 */
1199096d22d4SEric Schrock 	if (vd->vdev_faulted) {
1200096d22d4SEric Schrock 		ASSERT(vd->vdev_children == 0);
1201096d22d4SEric Schrock 		ASSERT(vd->vdev_label_aux == VDEV_AUX_ERR_EXCEEDED ||
1202096d22d4SEric Schrock 		    vd->vdev_label_aux == VDEV_AUX_EXTERNAL);
1203096d22d4SEric Schrock 		vdev_set_state(vd, B_TRUE, VDEV_STATE_FAULTED,
1204096d22d4SEric Schrock 		    vd->vdev_label_aux);
1205be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENXIO));
1206096d22d4SEric Schrock 	}
1207096d22d4SEric Schrock 
12083d7072f8Seschrock 	if (vd->vdev_degraded) {
12093d7072f8Seschrock 		ASSERT(vd->vdev_children == 0);
12103d7072f8Seschrock 		vdev_set_state(vd, B_TRUE, VDEV_STATE_DEGRADED,
12113d7072f8Seschrock 		    VDEV_AUX_ERR_EXCEEDED);
12123d7072f8Seschrock 	} else {
1213069f55e2SEric Schrock 		vdev_set_state(vd, B_TRUE, VDEV_STATE_HEALTHY, 0);
12143d7072f8Seschrock 	}
1215fa9e4066Sahrens 
121688ecc943SGeorge Wilson 	/*
121788ecc943SGeorge Wilson 	 * For hole or missing vdevs we just return success.
121888ecc943SGeorge Wilson 	 */
121988ecc943SGeorge Wilson 	if (vd->vdev_ishole || vd->vdev_ops == &vdev_missing_ops)
122088ecc943SGeorge Wilson 		return (0);
122188ecc943SGeorge Wilson 
1222573ca77eSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++) {
1223ea8dc4b6Seschrock 		if (vd->vdev_child[c]->vdev_state != VDEV_STATE_HEALTHY) {
1224ea8dc4b6Seschrock 			vdev_set_state(vd, B_TRUE, VDEV_STATE_DEGRADED,
1225ea8dc4b6Seschrock 			    VDEV_AUX_NONE);
1226ea8dc4b6Seschrock 			break;
1227ea8dc4b6Seschrock 		}
1228573ca77eSGeorge Wilson 	}
1229fa9e4066Sahrens 
1230fa9e4066Sahrens 	osize = P2ALIGN(osize, (uint64_t)sizeof (vdev_label_t));
12314263d13fSGeorge Wilson 	max_osize = P2ALIGN(max_osize, (uint64_t)sizeof (vdev_label_t));
1232fa9e4066Sahrens 
1233fa9e4066Sahrens 	if (vd->vdev_children == 0) {
1234fa9e4066Sahrens 		if (osize < SPA_MINDEVSIZE) {
1235ea8dc4b6Seschrock 			vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
1236ea8dc4b6Seschrock 			    VDEV_AUX_TOO_SMALL);
1237be6fd75aSMatthew Ahrens 			return (SET_ERROR(EOVERFLOW));
1238fa9e4066Sahrens 		}
1239fa9e4066Sahrens 		psize = osize;
1240fa9e4066Sahrens 		asize = osize - (VDEV_LABEL_START_SIZE + VDEV_LABEL_END_SIZE);
12414263d13fSGeorge Wilson 		max_asize = max_osize - (VDEV_LABEL_START_SIZE +
12424263d13fSGeorge Wilson 		    VDEV_LABEL_END_SIZE);
1243fa9e4066Sahrens 	} else {
1244ecc2d604Sbonwick 		if (vd->vdev_parent != NULL && osize < SPA_MINDEVSIZE -
1245fa9e4066Sahrens 		    (VDEV_LABEL_START_SIZE + VDEV_LABEL_END_SIZE)) {
1246ea8dc4b6Seschrock 			vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
1247ea8dc4b6Seschrock 			    VDEV_AUX_TOO_SMALL);
1248be6fd75aSMatthew Ahrens 			return (SET_ERROR(EOVERFLOW));
1249fa9e4066Sahrens 		}
1250fa9e4066Sahrens 		psize = 0;
1251fa9e4066Sahrens 		asize = osize;
12524263d13fSGeorge Wilson 		max_asize = max_osize;
1253fa9e4066Sahrens 	}
1254fa9e4066Sahrens 
1255fa9e4066Sahrens 	vd->vdev_psize = psize;
1256fa9e4066Sahrens 
1257573ca77eSGeorge Wilson 	/*
1258573ca77eSGeorge Wilson 	 * Make sure the allocatable size hasn't shrunk.
1259573ca77eSGeorge Wilson 	 */
1260573ca77eSGeorge Wilson 	if (asize < vd->vdev_min_asize) {
1261573ca77eSGeorge Wilson 		vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
1262573ca77eSGeorge Wilson 		    VDEV_AUX_BAD_LABEL);
1263be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
1264573ca77eSGeorge Wilson 	}
1265573ca77eSGeorge Wilson 
1266fa9e4066Sahrens 	if (vd->vdev_asize == 0) {
1267fa9e4066Sahrens 		/*
1268fa9e4066Sahrens 		 * This is the first-ever open, so use the computed values.
1269ecc2d604Sbonwick 		 * For testing purposes, a higher ashift can be requested.
1270fa9e4066Sahrens 		 */
1271fa9e4066Sahrens 		vd->vdev_asize = asize;
12724263d13fSGeorge Wilson 		vd->vdev_max_asize = max_asize;
1273ecc2d604Sbonwick 		vd->vdev_ashift = MAX(ashift, vd->vdev_ashift);
1274fa9e4066Sahrens 	} else {
1275fa9e4066Sahrens 		/*
12762384d9f8SGeorge Wilson 		 * Detect if the alignment requirement has increased.
12772384d9f8SGeorge Wilson 		 * We don't want to make the pool unavailable, just
12782384d9f8SGeorge Wilson 		 * issue a warning instead.
1279fa9e4066Sahrens 		 */
12802384d9f8SGeorge Wilson 		if (ashift > vd->vdev_top->vdev_ashift &&
12812384d9f8SGeorge Wilson 		    vd->vdev_ops->vdev_op_leaf) {
12822384d9f8SGeorge Wilson 			cmn_err(CE_WARN,
12832384d9f8SGeorge Wilson 			    "Disk, '%s', has a block alignment that is "
12842384d9f8SGeorge Wilson 			    "larger than the pool's alignment\n",
12852384d9f8SGeorge Wilson 			    vd->vdev_path);
1286fa9e4066Sahrens 		}
12874263d13fSGeorge Wilson 		vd->vdev_max_asize = max_asize;
1288fa9e4066Sahrens 	}
1289fa9e4066Sahrens 
1290fa9e4066Sahrens 	/*
1291fa9e4066Sahrens 	 * If all children are healthy and the asize has increased,
1292573ca77eSGeorge Wilson 	 * then we've experienced dynamic LUN growth.  If automatic
1293573ca77eSGeorge Wilson 	 * expansion is enabled then use the additional space.
1294fa9e4066Sahrens 	 */
1295573ca77eSGeorge Wilson 	if (vd->vdev_state == VDEV_STATE_HEALTHY && asize > vd->vdev_asize &&
1296573ca77eSGeorge Wilson 	    (vd->vdev_expanding || spa->spa_autoexpand))
1297fa9e4066Sahrens 		vd->vdev_asize = asize;
1298573ca77eSGeorge Wilson 
1299573ca77eSGeorge Wilson 	vdev_set_min_asize(vd);
1300fa9e4066Sahrens 
1301ea8dc4b6Seschrock 	/*
13020a4e9518Sgw25295 	 * Ensure we can issue some IO before declaring the
13030a4e9518Sgw25295 	 * vdev open for business.
13040a4e9518Sgw25295 	 */
1305e14bb325SJeff Bonwick 	if (vd->vdev_ops->vdev_op_leaf &&
1306e14bb325SJeff Bonwick 	    (error = zio_wait(vdev_probe(vd, NULL))) != 0) {
130798d1cbfeSGeorge Wilson 		vdev_set_state(vd, B_TRUE, VDEV_STATE_FAULTED,
130898d1cbfeSGeorge Wilson 		    VDEV_AUX_ERR_EXCEEDED);
13090a4e9518Sgw25295 		return (error);
13100a4e9518Sgw25295 	}
13110a4e9518Sgw25295 
13120a4e9518Sgw25295 	/*
131381cd5c55SMatthew Ahrens 	 * Track the min and max ashift values for normal data devices.
131481cd5c55SMatthew Ahrens 	 */
131581cd5c55SMatthew Ahrens 	if (vd->vdev_top == vd && vd->vdev_ashift != 0 &&
131681cd5c55SMatthew Ahrens 	    !vd->vdev_islog && vd->vdev_aux == NULL) {
131781cd5c55SMatthew Ahrens 		if (vd->vdev_ashift > spa->spa_max_ashift)
131881cd5c55SMatthew Ahrens 			spa->spa_max_ashift = vd->vdev_ashift;
131981cd5c55SMatthew Ahrens 		if (vd->vdev_ashift < spa->spa_min_ashift)
132081cd5c55SMatthew Ahrens 			spa->spa_min_ashift = vd->vdev_ashift;
132181cd5c55SMatthew Ahrens 	}
132281cd5c55SMatthew Ahrens 
132381cd5c55SMatthew Ahrens 	/*
1324088f3894Sahrens 	 * If a leaf vdev has a DTL, and seems healthy, then kick off a
13258ad4d6ddSJeff Bonwick 	 * resilver.  But don't do this if we are doing a reopen for a scrub,
13268ad4d6ddSJeff Bonwick 	 * since this would just restart the scrub we are already doing.
1327088f3894Sahrens 	 */
13288ad4d6ddSJeff Bonwick 	if (vd->vdev_ops->vdev_op_leaf && !spa->spa_scrub_reopen &&
13298ad4d6ddSJeff Bonwick 	    vdev_resilver_needed(vd, NULL, NULL))
13308ad4d6ddSJeff Bonwick 		spa_async_request(spa, SPA_ASYNC_RESILVER);
1331088f3894Sahrens 
1332fa9e4066Sahrens 	return (0);
1333fa9e4066Sahrens }
1334fa9e4066Sahrens 
1335fa9e4066Sahrens /*
1336560e6e96Seschrock  * Called once the vdevs are all opened, this routine validates the label
1337560e6e96Seschrock  * contents.  This needs to be done before vdev_load() so that we don't
13383d7072f8Seschrock  * inadvertently do repair I/Os to the wrong device.
1339560e6e96Seschrock  *
1340d7f601efSGeorge Wilson  * If 'strict' is false ignore the spa guid check. This is necessary because
1341d7f601efSGeorge Wilson  * if the machine crashed during a re-guid the new guid might have been written
1342d7f601efSGeorge Wilson  * to all of the vdev labels, but not the cached config. The strict check
1343d7f601efSGeorge Wilson  * will be performed when the pool is opened again using the mos config.
1344d7f601efSGeorge Wilson  *
1345560e6e96Seschrock  * This function will only return failure if one of the vdevs indicates that it
1346560e6e96Seschrock  * has since been destroyed or exported.  This is only possible if
1347560e6e96Seschrock  * /etc/zfs/zpool.cache was readonly at the time.  Otherwise, the vdev state
1348560e6e96Seschrock  * will be updated but the function will return 0.
1349560e6e96Seschrock  */
1350560e6e96Seschrock int
1351d7f601efSGeorge Wilson vdev_validate(vdev_t *vd, boolean_t strict)
1352560e6e96Seschrock {
1353560e6e96Seschrock 	spa_t *spa = vd->vdev_spa;
1354560e6e96Seschrock 	nvlist_t *label;
13551195e687SMark J Musante 	uint64_t guid = 0, top_guid;
1356560e6e96Seschrock 	uint64_t state;
1357560e6e96Seschrock 
1358573ca77eSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++)
1359d7f601efSGeorge Wilson 		if (vdev_validate(vd->vdev_child[c], strict) != 0)
1360be6fd75aSMatthew Ahrens 			return (SET_ERROR(EBADF));
1361560e6e96Seschrock 
1362b5989ec7Seschrock 	/*
1363b5989ec7Seschrock 	 * If the device has already failed, or was marked offline, don't do
1364b5989ec7Seschrock 	 * any further validation.  Otherwise, label I/O will fail and we will
1365b5989ec7Seschrock 	 * overwrite the previous state.
1366b5989ec7Seschrock 	 */
1367e14bb325SJeff Bonwick 	if (vd->vdev_ops->vdev_op_leaf && vdev_readable(vd)) {
13681195e687SMark J Musante 		uint64_t aux_guid = 0;
13691195e687SMark J Musante 		nvlist_t *nvl;
1370bda88194SGeorge Wilson 		uint64_t txg = spa_last_synced_txg(spa) != 0 ?
1371bda88194SGeorge Wilson 		    spa_last_synced_txg(spa) : -1ULL;
1372560e6e96Seschrock 
1373dfbb9432SGeorge Wilson 		if ((label = vdev_label_read_config(vd, txg)) == NULL) {
1374560e6e96Seschrock 			vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
1375560e6e96Seschrock 			    VDEV_AUX_BAD_LABEL);
1376560e6e96Seschrock 			return (0);
1377560e6e96Seschrock 		}
1378560e6e96Seschrock 
13791195e687SMark J Musante 		/*
13801195e687SMark J Musante 		 * Determine if this vdev has been split off into another
13811195e687SMark J Musante 		 * pool.  If so, then refuse to open it.
13821195e687SMark J Musante 		 */
13831195e687SMark J Musante 		if (nvlist_lookup_uint64(label, ZPOOL_CONFIG_SPLIT_GUID,
13841195e687SMark J Musante 		    &aux_guid) == 0 && aux_guid == spa_guid(spa)) {
13851195e687SMark J Musante 			vdev_set_state(vd, B_FALSE, VDEV_STATE_CANT_OPEN,
13861195e687SMark J Musante 			    VDEV_AUX_SPLIT_POOL);
13871195e687SMark J Musante 			nvlist_free(label);
13881195e687SMark J Musante 			return (0);
13891195e687SMark J Musante 		}
13901195e687SMark J Musante 
1391d7f601efSGeorge Wilson 		if (strict && (nvlist_lookup_uint64(label,
1392d7f601efSGeorge Wilson 		    ZPOOL_CONFIG_POOL_GUID, &guid) != 0 ||
1393d7f601efSGeorge Wilson 		    guid != spa_guid(spa))) {
1394560e6e96Seschrock 			vdev_set_state(vd, B_FALSE, VDEV_STATE_CANT_OPEN,
1395560e6e96Seschrock 			    VDEV_AUX_CORRUPT_DATA);
1396560e6e96Seschrock 			nvlist_free(label);
1397560e6e96Seschrock 			return (0);
1398560e6e96Seschrock 		}
1399560e6e96Seschrock 
14001195e687SMark J Musante 		if (nvlist_lookup_nvlist(label, ZPOOL_CONFIG_VDEV_TREE, &nvl)
14011195e687SMark J Musante 		    != 0 || nvlist_lookup_uint64(nvl, ZPOOL_CONFIG_ORIG_GUID,
14021195e687SMark J Musante 		    &aux_guid) != 0)
14031195e687SMark J Musante 			aux_guid = 0;
14041195e687SMark J Musante 
1405e14bb325SJeff Bonwick 		/*
1406e14bb325SJeff Bonwick 		 * If this vdev just became a top-level vdev because its
1407e14bb325SJeff Bonwick 		 * sibling was detached, it will have adopted the parent's
1408e14bb325SJeff Bonwick 		 * vdev guid -- but the label may or may not be on disk yet.
1409e14bb325SJeff Bonwick 		 * Fortunately, either version of the label will have the
1410e14bb325SJeff Bonwick 		 * same top guid, so if we're a top-level vdev, we can
1411e14bb325SJeff Bonwick 		 * safely compare to that instead.
14121195e687SMark J Musante 		 *
14131195e687SMark J Musante 		 * If we split this vdev off instead, then we also check the
14141195e687SMark J Musante 		 * original pool's guid.  We don't want to consider the vdev
14151195e687SMark J Musante 		 * corrupt if it is partway through a split operation.
1416e14bb325SJeff Bonwick 		 */
1417560e6e96Seschrock 		if (nvlist_lookup_uint64(label, ZPOOL_CONFIG_GUID,
1418e14bb325SJeff Bonwick 		    &guid) != 0 ||
1419e14bb325SJeff Bonwick 		    nvlist_lookup_uint64(label, ZPOOL_CONFIG_TOP_GUID,
1420e14bb325SJeff Bonwick 		    &top_guid) != 0 ||
14211195e687SMark J Musante 		    ((vd->vdev_guid != guid && vd->vdev_guid != aux_guid) &&
1422e14bb325SJeff Bonwick 		    (vd->vdev_guid != top_guid || vd != vd->vdev_top))) {
1423560e6e96Seschrock 			vdev_set_state(vd, B_FALSE, VDEV_STATE_CANT_OPEN,
1424560e6e96Seschrock 			    VDEV_AUX_CORRUPT_DATA);
1425560e6e96Seschrock 			nvlist_free(label);
1426560e6e96Seschrock 			return (0);
1427560e6e96Seschrock 		}
1428560e6e96Seschrock 
1429560e6e96Seschrock 		if (nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_STATE,
1430560e6e96Seschrock 		    &state) != 0) {
1431560e6e96Seschrock 			vdev_set_state(vd, B_FALSE, VDEV_STATE_CANT_OPEN,
1432560e6e96Seschrock 			    VDEV_AUX_CORRUPT_DATA);
1433560e6e96Seschrock 			nvlist_free(label);
1434560e6e96Seschrock 			return (0);
1435560e6e96Seschrock 		}
1436560e6e96Seschrock 
1437560e6e96Seschrock 		nvlist_free(label);
1438560e6e96Seschrock 
1439bc758434SLin Ling 		/*
14404b964adaSGeorge Wilson 		 * If this is a verbatim import, no need to check the
1441bc758434SLin Ling 		 * state of the pool.
1442bc758434SLin Ling 		 */
14434b964adaSGeorge Wilson 		if (!(spa->spa_import_flags & ZFS_IMPORT_VERBATIM) &&
1444b16da2e2SGeorge Wilson 		    spa_load_state(spa) == SPA_LOAD_OPEN &&
1445bc758434SLin Ling 		    state != POOL_STATE_ACTIVE)
1446be6fd75aSMatthew Ahrens 			return (SET_ERROR(EBADF));
1447560e6e96Seschrock 
1448560e6e96Seschrock 		/*
144951ece835Seschrock 		 * If we were able to open and validate a vdev that was
145051ece835Seschrock 		 * previously marked permanently unavailable, clear that state
145151ece835Seschrock 		 * now.
1452560e6e96Seschrock 		 */
1453560e6e96Seschrock 		if (vd->vdev_not_present)
1454560e6e96Seschrock 			vd->vdev_not_present = 0;
145551ece835Seschrock 	}
1456560e6e96Seschrock 
1457560e6e96Seschrock 	return (0);
1458560e6e96Seschrock }
1459560e6e96Seschrock 
1460560e6e96Seschrock /*
1461fa9e4066Sahrens  * Close a virtual device.
1462fa9e4066Sahrens  */
1463fa9e4066Sahrens void
1464fa9e4066Sahrens vdev_close(vdev_t *vd)
1465fa9e4066Sahrens {
14668ad4d6ddSJeff Bonwick 	spa_t *spa = vd->vdev_spa;
1467095bcd66SGeorge Wilson 	vdev_t *pvd = vd->vdev_parent;
14688ad4d6ddSJeff Bonwick 
14698ad4d6ddSJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_STATE_ALL, RW_WRITER) == SCL_STATE_ALL);
14708ad4d6ddSJeff Bonwick 
14711195e687SMark J Musante 	/*
14721195e687SMark J Musante 	 * If our parent is reopening, then we are as well, unless we are
14731195e687SMark J Musante 	 * going offline.
14741195e687SMark J Musante 	 */
1475095bcd66SGeorge Wilson 	if (pvd != NULL && pvd->vdev_reopening)
14761195e687SMark J Musante 		vd->vdev_reopening = (pvd->vdev_reopening && !vd->vdev_offline);
1477095bcd66SGeorge Wilson 
1478fa9e4066Sahrens 	vd->vdev_ops->vdev_op_close(vd);
1479fa9e4066Sahrens 
14803d7072f8Seschrock 	vdev_cache_purge(vd);
1481fa9e4066Sahrens 
1482560e6e96Seschrock 	/*
1483560e6e96Seschrock 	 * We record the previous state before we close it, so that if we are
1484560e6e96Seschrock 	 * doing a reopen(), we don't generate FMA ereports if we notice that
1485560e6e96Seschrock 	 * it's still faulted.
1486560e6e96Seschrock 	 */
1487560e6e96Seschrock 	vd->vdev_prevstate = vd->vdev_state;
1488560e6e96Seschrock 
1489fa9e4066Sahrens 	if (vd->vdev_offline)
1490fa9e4066Sahrens 		vd->vdev_state = VDEV_STATE_OFFLINE;
1491fa9e4066Sahrens 	else
1492fa9e4066Sahrens 		vd->vdev_state = VDEV_STATE_CLOSED;
1493ea8dc4b6Seschrock 	vd->vdev_stat.vs_aux = VDEV_AUX_NONE;
1494fa9e4066Sahrens }
1495fa9e4066Sahrens 
1496dcba9f3fSGeorge Wilson void
1497dcba9f3fSGeorge Wilson vdev_hold(vdev_t *vd)
1498dcba9f3fSGeorge Wilson {
1499dcba9f3fSGeorge Wilson 	spa_t *spa = vd->vdev_spa;
1500dcba9f3fSGeorge Wilson 
1501dcba9f3fSGeorge Wilson 	ASSERT(spa_is_root(spa));
1502dcba9f3fSGeorge Wilson 	if (spa->spa_state == POOL_STATE_UNINITIALIZED)
1503dcba9f3fSGeorge Wilson 		return;
1504dcba9f3fSGeorge Wilson 
1505dcba9f3fSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++)
1506dcba9f3fSGeorge Wilson 		vdev_hold(vd->vdev_child[c]);
1507dcba9f3fSGeorge Wilson 
1508dcba9f3fSGeorge Wilson 	if (vd->vdev_ops->vdev_op_leaf)
1509dcba9f3fSGeorge Wilson 		vd->vdev_ops->vdev_op_hold(vd);
1510dcba9f3fSGeorge Wilson }
1511dcba9f3fSGeorge Wilson 
1512dcba9f3fSGeorge Wilson void
1513dcba9f3fSGeorge Wilson vdev_rele(vdev_t *vd)
1514dcba9f3fSGeorge Wilson {
1515dcba9f3fSGeorge Wilson 	spa_t *spa = vd->vdev_spa;
1516dcba9f3fSGeorge Wilson 
1517dcba9f3fSGeorge Wilson 	ASSERT(spa_is_root(spa));
1518dcba9f3fSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++)
1519dcba9f3fSGeorge Wilson 		vdev_rele(vd->vdev_child[c]);
1520dcba9f3fSGeorge Wilson 
1521dcba9f3fSGeorge Wilson 	if (vd->vdev_ops->vdev_op_leaf)
1522dcba9f3fSGeorge Wilson 		vd->vdev_ops->vdev_op_rele(vd);
1523dcba9f3fSGeorge Wilson }
1524dcba9f3fSGeorge Wilson 
1525095bcd66SGeorge Wilson /*
1526095bcd66SGeorge Wilson  * Reopen all interior vdevs and any unopened leaves.  We don't actually
1527095bcd66SGeorge Wilson  * reopen leaf vdevs which had previously been opened as they might deadlock
1528095bcd66SGeorge Wilson  * on the spa_config_lock.  Instead we only obtain the leaf's physical size.
1529095bcd66SGeorge Wilson  * If the leaf has never been opened then open it, as usual.
1530095bcd66SGeorge Wilson  */
1531fa9e4066Sahrens void
1532ea8dc4b6Seschrock vdev_reopen(vdev_t *vd)
1533fa9e4066Sahrens {
1534ea8dc4b6Seschrock 	spa_t *spa = vd->vdev_spa;
1535fa9e4066Sahrens 
1536e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_STATE_ALL, RW_WRITER) == SCL_STATE_ALL);
1537ea8dc4b6Seschrock 
15381195e687SMark J Musante 	/* set the reopening flag unless we're taking the vdev offline */
15391195e687SMark J Musante 	vd->vdev_reopening = !vd->vdev_offline;
1540fa9e4066Sahrens 	vdev_close(vd);
1541fa9e4066Sahrens 	(void) vdev_open(vd);
1542fa9e4066Sahrens 
1543fa9e4066Sahrens 	/*
154439c23413Seschrock 	 * Call vdev_validate() here to make sure we have the same device.
154539c23413Seschrock 	 * Otherwise, a device with an invalid label could be successfully
154639c23413Seschrock 	 * opened in response to vdev_reopen().
154739c23413Seschrock 	 */
1548c5904d13Seschrock 	if (vd->vdev_aux) {
1549c5904d13Seschrock 		(void) vdev_validate_aux(vd);
1550e14bb325SJeff Bonwick 		if (vdev_readable(vd) && vdev_writeable(vd) &&
15516809eb4eSEric Schrock 		    vd->vdev_aux == &spa->spa_l2cache &&
1552*5f992543SArne Jansen 		    !l2arc_vdev_present(vd))
1553*5f992543SArne Jansen 			l2arc_add_vdev(spa, vd);
1554c5904d13Seschrock 	} else {
1555bda88194SGeorge Wilson 		(void) vdev_validate(vd, B_TRUE);
1556c5904d13Seschrock 	}
155739c23413Seschrock 
155839c23413Seschrock 	/*
15593d7072f8Seschrock 	 * Reassess parent vdev's health.
1560fa9e4066Sahrens 	 */
15613d7072f8Seschrock 	vdev_propagate_state(vd);
1562fa9e4066Sahrens }
1563fa9e4066Sahrens 
1564fa9e4066Sahrens int
156599653d4eSeschrock vdev_create(vdev_t *vd, uint64_t txg, boolean_t isreplacing)
1566fa9e4066Sahrens {
1567fa9e4066Sahrens 	int error;
1568fa9e4066Sahrens 
1569fa9e4066Sahrens 	/*
1570fa9e4066Sahrens 	 * Normally, partial opens (e.g. of a mirror) are allowed.
1571fa9e4066Sahrens 	 * For a create, however, we want to fail the request if
1572fa9e4066Sahrens 	 * there are any components we can't open.
1573fa9e4066Sahrens 	 */
1574fa9e4066Sahrens 	error = vdev_open(vd);
1575fa9e4066Sahrens 
1576fa9e4066Sahrens 	if (error || vd->vdev_state != VDEV_STATE_HEALTHY) {
1577fa9e4066Sahrens 		vdev_close(vd);
1578fa9e4066Sahrens 		return (error ? error : ENXIO);
1579fa9e4066Sahrens 	}
1580fa9e4066Sahrens 
1581fa9e4066Sahrens 	/*
15820713e232SGeorge Wilson 	 * Recursively load DTLs and initialize all labels.
1583fa9e4066Sahrens 	 */
15840713e232SGeorge Wilson 	if ((error = vdev_dtl_load(vd)) != 0 ||
15850713e232SGeorge Wilson 	    (error = vdev_label_init(vd, txg, isreplacing ?
158639c23413Seschrock 	    VDEV_LABEL_REPLACE : VDEV_LABEL_CREATE)) != 0) {
1587fa9e4066Sahrens 		vdev_close(vd);
1588fa9e4066Sahrens 		return (error);
1589fa9e4066Sahrens 	}
1590fa9e4066Sahrens 
1591fa9e4066Sahrens 	return (0);
1592fa9e4066Sahrens }
1593fa9e4066Sahrens 
15940e34b6a7Sbonwick void
1595573ca77eSGeorge Wilson vdev_metaslab_set_size(vdev_t *vd)
1596fa9e4066Sahrens {
1597fa9e4066Sahrens 	/*
1598bf3e216cSMatthew Ahrens 	 * Aim for roughly metaslabs_per_vdev (default 200) metaslabs per vdev.
1599fa9e4066Sahrens 	 */
1600bf3e216cSMatthew Ahrens 	vd->vdev_ms_shift = highbit64(vd->vdev_asize / metaslabs_per_vdev);
1601fa9e4066Sahrens 	vd->vdev_ms_shift = MAX(vd->vdev_ms_shift, SPA_MAXBLOCKSHIFT);
1602fa9e4066Sahrens }
1603fa9e4066Sahrens 
1604fa9e4066Sahrens void
1605ecc2d604Sbonwick vdev_dirty(vdev_t *vd, int flags, void *arg, uint64_t txg)
1606fa9e4066Sahrens {
1607ecc2d604Sbonwick 	ASSERT(vd == vd->vdev_top);
160888ecc943SGeorge Wilson 	ASSERT(!vd->vdev_ishole);
1609ecc2d604Sbonwick 	ASSERT(ISP2(flags));
1610f9af39baSGeorge Wilson 	ASSERT(spa_writeable(vd->vdev_spa));
1611fa9e4066Sahrens 
1612ecc2d604Sbonwick 	if (flags & VDD_METASLAB)
1613ecc2d604Sbonwick 		(void) txg_list_add(&vd->vdev_ms_list, arg, txg);
1614ecc2d604Sbonwick 
1615ecc2d604Sbonwick 	if (flags & VDD_DTL)
1616ecc2d604Sbonwick 		(void) txg_list_add(&vd->vdev_dtl_list, arg, txg);
1617ecc2d604Sbonwick 
1618ecc2d604Sbonwick 	(void) txg_list_add(&vd->vdev_spa->spa_vdev_txg_list, vd, txg);
1619fa9e4066Sahrens }
1620fa9e4066Sahrens 
16210713e232SGeorge Wilson void
16220713e232SGeorge Wilson vdev_dirty_leaves(vdev_t *vd, int flags, uint64_t txg)
16230713e232SGeorge Wilson {
16240713e232SGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++)
16250713e232SGeorge Wilson 		vdev_dirty_leaves(vd->vdev_child[c], flags, txg);
16260713e232SGeorge Wilson 
16270713e232SGeorge Wilson 	if (vd->vdev_ops->vdev_op_leaf)
16280713e232SGeorge Wilson 		vdev_dirty(vd->vdev_top, flags, vd, txg);
16290713e232SGeorge Wilson }
16300713e232SGeorge Wilson 
16318ad4d6ddSJeff Bonwick /*
16328ad4d6ddSJeff Bonwick  * DTLs.
16338ad4d6ddSJeff Bonwick  *
16348ad4d6ddSJeff Bonwick  * A vdev's DTL (dirty time log) is the set of transaction groups for which
16359fb35debSEric Taylor  * the vdev has less than perfect replication.  There are four kinds of DTL:
16368ad4d6ddSJeff Bonwick  *
16378ad4d6ddSJeff Bonwick  * DTL_MISSING: txgs for which the vdev has no valid copies of the data
16388ad4d6ddSJeff Bonwick  *
16398ad4d6ddSJeff Bonwick  * DTL_PARTIAL: txgs for which data is available, but not fully replicated
16408ad4d6ddSJeff Bonwick  *
16418ad4d6ddSJeff Bonwick  * DTL_SCRUB: the txgs that could not be repaired by the last scrub; upon
16428ad4d6ddSJeff Bonwick  *	scrub completion, DTL_SCRUB replaces DTL_MISSING in the range of
16438ad4d6ddSJeff Bonwick  *	txgs that was scrubbed.
16448ad4d6ddSJeff Bonwick  *
16458ad4d6ddSJeff Bonwick  * DTL_OUTAGE: txgs which cannot currently be read, whether due to
16468ad4d6ddSJeff Bonwick  *	persistent errors or just some device being offline.
16478ad4d6ddSJeff Bonwick  *	Unlike the other three, the DTL_OUTAGE map is not generally
16488ad4d6ddSJeff Bonwick  *	maintained; it's only computed when needed, typically to
16498ad4d6ddSJeff Bonwick  *	determine whether a device can be detached.
16508ad4d6ddSJeff Bonwick  *
16518ad4d6ddSJeff Bonwick  * For leaf vdevs, DTL_MISSING and DTL_PARTIAL are identical: the device
16528ad4d6ddSJeff Bonwick  * either has the data or it doesn't.
16538ad4d6ddSJeff Bonwick  *
16548ad4d6ddSJeff Bonwick  * For interior vdevs such as mirror and RAID-Z the picture is more complex.
16558ad4d6ddSJeff Bonwick  * A vdev's DTL_PARTIAL is the union of its children's DTL_PARTIALs, because
16568ad4d6ddSJeff Bonwick  * if any child is less than fully replicated, then so is its parent.
16578ad4d6ddSJeff Bonwick  * A vdev's DTL_MISSING is a modified union of its children's DTL_MISSINGs,
16588ad4d6ddSJeff Bonwick  * comprising only those txgs which appear in 'maxfaults' or more children;
16598ad4d6ddSJeff Bonwick  * those are the txgs we don't have enough replication to read.  For example,
16608ad4d6ddSJeff Bonwick  * double-parity RAID-Z can tolerate up to two missing devices (maxfaults == 2);
16618ad4d6ddSJeff Bonwick  * thus, its DTL_MISSING consists of the set of txgs that appear in more than
16628ad4d6ddSJeff Bonwick  * two child DTL_MISSING maps.
16638ad4d6ddSJeff Bonwick  *
16648ad4d6ddSJeff Bonwick  * It should be clear from the above that to compute the DTLs and outage maps
16658ad4d6ddSJeff Bonwick  * for all vdevs, it suffices to know just the leaf vdevs' DTL_MISSING maps.
16668ad4d6ddSJeff Bonwick  * Therefore, that is all we keep on disk.  When loading the pool, or after
16678ad4d6ddSJeff Bonwick  * a configuration change, we generate all other DTLs from first principles.
16688ad4d6ddSJeff Bonwick  */
1669fa9e4066Sahrens void
16708ad4d6ddSJeff Bonwick vdev_dtl_dirty(vdev_t *vd, vdev_dtl_type_t t, uint64_t txg, uint64_t size)
1671fa9e4066Sahrens {
16720713e232SGeorge Wilson 	range_tree_t *rt = vd->vdev_dtl[t];
16738ad4d6ddSJeff Bonwick 
16748ad4d6ddSJeff Bonwick 	ASSERT(t < DTL_TYPES);
16758ad4d6ddSJeff Bonwick 	ASSERT(vd != vd->vdev_spa->spa_root_vdev);
1676f9af39baSGeorge Wilson 	ASSERT(spa_writeable(vd->vdev_spa));
16778ad4d6ddSJeff Bonwick 
16780713e232SGeorge Wilson 	mutex_enter(rt->rt_lock);
16790713e232SGeorge Wilson 	if (!range_tree_contains(rt, txg, size))
16800713e232SGeorge Wilson 		range_tree_add(rt, txg, size);
16810713e232SGeorge Wilson 	mutex_exit(rt->rt_lock);
1682fa9e4066Sahrens }
1683fa9e4066Sahrens 
16848ad4d6ddSJeff Bonwick boolean_t
16858ad4d6ddSJeff Bonwick vdev_dtl_contains(vdev_t *vd, vdev_dtl_type_t t, uint64_t txg, uint64_t size)
1686fa9e4066Sahrens {
16870713e232SGeorge Wilson 	range_tree_t *rt = vd->vdev_dtl[t];
16888ad4d6ddSJeff Bonwick 	boolean_t dirty = B_FALSE;
1689fa9e4066Sahrens 
16908ad4d6ddSJeff Bonwick 	ASSERT(t < DTL_TYPES);
16918ad4d6ddSJeff Bonwick 	ASSERT(vd != vd->vdev_spa->spa_root_vdev);
1692fa9e4066Sahrens 
16930713e232SGeorge Wilson 	mutex_enter(rt->rt_lock);
16940713e232SGeorge Wilson 	if (range_tree_space(rt) != 0)
16950713e232SGeorge Wilson 		dirty = range_tree_contains(rt, txg, size);
16960713e232SGeorge Wilson 	mutex_exit(rt->rt_lock);
1697fa9e4066Sahrens 
1698fa9e4066Sahrens 	return (dirty);
1699fa9e4066Sahrens }
1700fa9e4066Sahrens 
17018ad4d6ddSJeff Bonwick boolean_t
17028ad4d6ddSJeff Bonwick vdev_dtl_empty(vdev_t *vd, vdev_dtl_type_t t)
17038ad4d6ddSJeff Bonwick {
17040713e232SGeorge Wilson 	range_tree_t *rt = vd->vdev_dtl[t];
17058ad4d6ddSJeff Bonwick 	boolean_t empty;
17068ad4d6ddSJeff Bonwick 
17070713e232SGeorge Wilson 	mutex_enter(rt->rt_lock);
17080713e232SGeorge Wilson 	empty = (range_tree_space(rt) == 0);
17090713e232SGeorge Wilson 	mutex_exit(rt->rt_lock);
17108ad4d6ddSJeff Bonwick 
17118ad4d6ddSJeff Bonwick 	return (empty);
17128ad4d6ddSJeff Bonwick }
17138ad4d6ddSJeff Bonwick 
1714fa9e4066Sahrens /*
1715b4952e17SGeorge Wilson  * Returns the lowest txg in the DTL range.
1716b4952e17SGeorge Wilson  */
1717b4952e17SGeorge Wilson static uint64_t
1718b4952e17SGeorge Wilson vdev_dtl_min(vdev_t *vd)
1719b4952e17SGeorge Wilson {
17200713e232SGeorge Wilson 	range_seg_t *rs;
1721b4952e17SGeorge Wilson 
1722b4952e17SGeorge Wilson 	ASSERT(MUTEX_HELD(&vd->vdev_dtl_lock));
17230713e232SGeorge Wilson 	ASSERT3U(range_tree_space(vd->vdev_dtl[DTL_MISSING]), !=, 0);
1724b4952e17SGeorge Wilson 	ASSERT0(vd->vdev_children);
1725b4952e17SGeorge Wilson 
17260713e232SGeorge Wilson 	rs = avl_first(&vd->vdev_dtl[DTL_MISSING]->rt_root);
17270713e232SGeorge Wilson 	return (rs->rs_start - 1);
1728b4952e17SGeorge Wilson }
1729b4952e17SGeorge Wilson 
1730b4952e17SGeorge Wilson /*
1731b4952e17SGeorge Wilson  * Returns the highest txg in the DTL.
1732b4952e17SGeorge Wilson  */
1733b4952e17SGeorge Wilson static uint64_t
1734b4952e17SGeorge Wilson vdev_dtl_max(vdev_t *vd)
1735b4952e17SGeorge Wilson {
17360713e232SGeorge Wilson 	range_seg_t *rs;
1737b4952e17SGeorge Wilson 
1738b4952e17SGeorge Wilson 	ASSERT(MUTEX_HELD(&vd->vdev_dtl_lock));
17390713e232SGeorge Wilson 	ASSERT3U(range_tree_space(vd->vdev_dtl[DTL_MISSING]), !=, 0);
1740b4952e17SGeorge Wilson 	ASSERT0(vd->vdev_children);
1741b4952e17SGeorge Wilson 
17420713e232SGeorge Wilson 	rs = avl_last(&vd->vdev_dtl[DTL_MISSING]->rt_root);
17430713e232SGeorge Wilson 	return (rs->rs_end);
1744b4952e17SGeorge Wilson }
1745b4952e17SGeorge Wilson 
1746b4952e17SGeorge Wilson /*
1747b4952e17SGeorge Wilson  * Determine if a resilvering vdev should remove any DTL entries from
1748b4952e17SGeorge Wilson  * its range. If the vdev was resilvering for the entire duration of the
1749b4952e17SGeorge Wilson  * scan then it should excise that range from its DTLs. Otherwise, this
1750b4952e17SGeorge Wilson  * vdev is considered partially resilvered and should leave its DTL
1751b4952e17SGeorge Wilson  * entries intact. The comment in vdev_dtl_reassess() describes how we
1752b4952e17SGeorge Wilson  * excise the DTLs.
1753b4952e17SGeorge Wilson  */
1754b4952e17SGeorge Wilson static boolean_t
1755b4952e17SGeorge Wilson vdev_dtl_should_excise(vdev_t *vd)
1756b4952e17SGeorge Wilson {
1757b4952e17SGeorge Wilson 	spa_t *spa = vd->vdev_spa;
1758b4952e17SGeorge Wilson 	dsl_scan_t *scn = spa->spa_dsl_pool->dp_scan;
1759b4952e17SGeorge Wilson 
1760b4952e17SGeorge Wilson 	ASSERT0(scn->scn_phys.scn_errors);
1761b4952e17SGeorge Wilson 	ASSERT0(vd->vdev_children);
1762b4952e17SGeorge Wilson 
1763b4952e17SGeorge Wilson 	if (vd->vdev_resilver_txg == 0 ||
17640713e232SGeorge Wilson 	    range_tree_space(vd->vdev_dtl[DTL_MISSING]) == 0)
1765b4952e17SGeorge Wilson 		return (B_TRUE);
1766b4952e17SGeorge Wilson 
1767b4952e17SGeorge Wilson 	/*
1768b4952e17SGeorge Wilson 	 * When a resilver is initiated the scan will assign the scn_max_txg
1769b4952e17SGeorge Wilson 	 * value to the highest txg value that exists in all DTLs. If this
1770b4952e17SGeorge Wilson 	 * device's max DTL is not part of this scan (i.e. it is not in
1771b4952e17SGeorge Wilson 	 * the range (scn_min_txg, scn_max_txg] then it is not eligible
1772b4952e17SGeorge Wilson 	 * for excision.
1773b4952e17SGeorge Wilson 	 */
1774b4952e17SGeorge Wilson 	if (vdev_dtl_max(vd) <= scn->scn_phys.scn_max_txg) {
1775b4952e17SGeorge Wilson 		ASSERT3U(scn->scn_phys.scn_min_txg, <=, vdev_dtl_min(vd));
1776b4952e17SGeorge Wilson 		ASSERT3U(scn->scn_phys.scn_min_txg, <, vd->vdev_resilver_txg);
1777b4952e17SGeorge Wilson 		ASSERT3U(vd->vdev_resilver_txg, <=, scn->scn_phys.scn_max_txg);
1778b4952e17SGeorge Wilson 		return (B_TRUE);
1779b4952e17SGeorge Wilson 	}
1780b4952e17SGeorge Wilson 	return (B_FALSE);
1781b4952e17SGeorge Wilson }
1782b4952e17SGeorge Wilson 
1783b4952e17SGeorge Wilson /*
1784fa9e4066Sahrens  * Reassess DTLs after a config change or scrub completion.
1785fa9e4066Sahrens  */
1786fa9e4066Sahrens void
1787fa9e4066Sahrens vdev_dtl_reassess(vdev_t *vd, uint64_t txg, uint64_t scrub_txg, int scrub_done)
1788fa9e4066Sahrens {
1789ea8dc4b6Seschrock 	spa_t *spa = vd->vdev_spa;
17908ad4d6ddSJeff Bonwick 	avl_tree_t reftree;
17918ad4d6ddSJeff Bonwick 	int minref;
1792fa9e4066Sahrens 
17938ad4d6ddSJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_ALL, RW_READER) != 0);
1794fa9e4066Sahrens 
17958ad4d6ddSJeff Bonwick 	for (int c = 0; c < vd->vdev_children; c++)
17968ad4d6ddSJeff Bonwick 		vdev_dtl_reassess(vd->vdev_child[c], txg,
17978ad4d6ddSJeff Bonwick 		    scrub_txg, scrub_done);
17988ad4d6ddSJeff Bonwick 
1799b24ab676SJeff Bonwick 	if (vd == spa->spa_root_vdev || vd->vdev_ishole || vd->vdev_aux)
18008ad4d6ddSJeff Bonwick 		return;
18018ad4d6ddSJeff Bonwick 
18028ad4d6ddSJeff Bonwick 	if (vd->vdev_ops->vdev_op_leaf) {
18033f9d6ad7SLin Ling 		dsl_scan_t *scn = spa->spa_dsl_pool->dp_scan;
18043f9d6ad7SLin Ling 
1805fa9e4066Sahrens 		mutex_enter(&vd->vdev_dtl_lock);
1806b4952e17SGeorge Wilson 
1807b4952e17SGeorge Wilson 		/*
1808b4952e17SGeorge Wilson 		 * If we've completed a scan cleanly then determine
1809b4952e17SGeorge Wilson 		 * if this vdev should remove any DTLs. We only want to
1810b4952e17SGeorge Wilson 		 * excise regions on vdevs that were available during
1811b4952e17SGeorge Wilson 		 * the entire duration of this scan.
1812b4952e17SGeorge Wilson 		 */
1813088f3894Sahrens 		if (scrub_txg != 0 &&
18143f9d6ad7SLin Ling 		    (spa->spa_scrub_started ||
1815b4952e17SGeorge Wilson 		    (scn != NULL && scn->scn_phys.scn_errors == 0)) &&
1816b4952e17SGeorge Wilson 		    vdev_dtl_should_excise(vd)) {
1817fa9e4066Sahrens 			/*
1818088f3894Sahrens 			 * We completed a scrub up to scrub_txg.  If we
1819088f3894Sahrens 			 * did it without rebooting, then the scrub dtl
1820088f3894Sahrens 			 * will be valid, so excise the old region and
1821088f3894Sahrens 			 * fold in the scrub dtl.  Otherwise, leave the
1822088f3894Sahrens 			 * dtl as-is if there was an error.
18238ad4d6ddSJeff Bonwick 			 *
18248ad4d6ddSJeff Bonwick 			 * There's little trick here: to excise the beginning
18258ad4d6ddSJeff Bonwick 			 * of the DTL_MISSING map, we put it into a reference
18268ad4d6ddSJeff Bonwick 			 * tree and then add a segment with refcnt -1 that
18278ad4d6ddSJeff Bonwick 			 * covers the range [0, scrub_txg).  This means
18288ad4d6ddSJeff Bonwick 			 * that each txg in that range has refcnt -1 or 0.
18298ad4d6ddSJeff Bonwick 			 * We then add DTL_SCRUB with a refcnt of 2, so that
18308ad4d6ddSJeff Bonwick 			 * entries in the range [0, scrub_txg) will have a
18318ad4d6ddSJeff Bonwick 			 * positive refcnt -- either 1 or 2.  We then convert
18328ad4d6ddSJeff Bonwick 			 * the reference tree into the new DTL_MISSING map.
1833fa9e4066Sahrens 			 */
18340713e232SGeorge Wilson 			space_reftree_create(&reftree);
18350713e232SGeorge Wilson 			space_reftree_add_map(&reftree,
18360713e232SGeorge Wilson 			    vd->vdev_dtl[DTL_MISSING], 1);
18370713e232SGeorge Wilson 			space_reftree_add_seg(&reftree, 0, scrub_txg, -1);
18380713e232SGeorge Wilson 			space_reftree_add_map(&reftree,
18390713e232SGeorge Wilson 			    vd->vdev_dtl[DTL_SCRUB], 2);
18400713e232SGeorge Wilson 			space_reftree_generate_map(&reftree,
18410713e232SGeorge Wilson 			    vd->vdev_dtl[DTL_MISSING], 1);
18420713e232SGeorge Wilson 			space_reftree_destroy(&reftree);
1843fa9e4066Sahrens 		}
18440713e232SGeorge Wilson 		range_tree_vacate(vd->vdev_dtl[DTL_PARTIAL], NULL, NULL);
18450713e232SGeorge Wilson 		range_tree_walk(vd->vdev_dtl[DTL_MISSING],
18460713e232SGeorge Wilson 		    range_tree_add, vd->vdev_dtl[DTL_PARTIAL]);
1847fa9e4066Sahrens 		if (scrub_done)
18480713e232SGeorge Wilson 			range_tree_vacate(vd->vdev_dtl[DTL_SCRUB], NULL, NULL);
18490713e232SGeorge Wilson 		range_tree_vacate(vd->vdev_dtl[DTL_OUTAGE], NULL, NULL);
18508ad4d6ddSJeff Bonwick 		if (!vdev_readable(vd))
18510713e232SGeorge Wilson 			range_tree_add(vd->vdev_dtl[DTL_OUTAGE], 0, -1ULL);
18528ad4d6ddSJeff Bonwick 		else
18530713e232SGeorge Wilson 			range_tree_walk(vd->vdev_dtl[DTL_MISSING],
18540713e232SGeorge Wilson 			    range_tree_add, vd->vdev_dtl[DTL_OUTAGE]);
1855b4952e17SGeorge Wilson 
1856b4952e17SGeorge Wilson 		/*
1857b4952e17SGeorge Wilson 		 * If the vdev was resilvering and no longer has any
1858b4952e17SGeorge Wilson 		 * DTLs then reset its resilvering flag.
1859b4952e17SGeorge Wilson 		 */
1860b4952e17SGeorge Wilson 		if (vd->vdev_resilver_txg != 0 &&
18610713e232SGeorge Wilson 		    range_tree_space(vd->vdev_dtl[DTL_MISSING]) == 0 &&
18620713e232SGeorge Wilson 		    range_tree_space(vd->vdev_dtl[DTL_OUTAGE]) == 0)
1863b4952e17SGeorge Wilson 			vd->vdev_resilver_txg = 0;
1864b4952e17SGeorge Wilson 
1865fa9e4066Sahrens 		mutex_exit(&vd->vdev_dtl_lock);
1866088f3894Sahrens 
1867ecc2d604Sbonwick 		if (txg != 0)
1868ecc2d604Sbonwick 			vdev_dirty(vd->vdev_top, VDD_DTL, vd, txg);
1869fa9e4066Sahrens 		return;
1870fa9e4066Sahrens 	}
1871fa9e4066Sahrens 
1872fa9e4066Sahrens 	mutex_enter(&vd->vdev_dtl_lock);
18738ad4d6ddSJeff Bonwick 	for (int t = 0; t < DTL_TYPES; t++) {
187499bb17e2SEric Taylor 		/* account for child's outage in parent's missing map */
187599bb17e2SEric Taylor 		int s = (t == DTL_MISSING) ? DTL_OUTAGE: t;
18768ad4d6ddSJeff Bonwick 		if (t == DTL_SCRUB)
18778ad4d6ddSJeff Bonwick 			continue;			/* leaf vdevs only */
18788ad4d6ddSJeff Bonwick 		if (t == DTL_PARTIAL)
18798ad4d6ddSJeff Bonwick 			minref = 1;			/* i.e. non-zero */
18808ad4d6ddSJeff Bonwick 		else if (vd->vdev_nparity != 0)
18818ad4d6ddSJeff Bonwick 			minref = vd->vdev_nparity + 1;	/* RAID-Z */
18828ad4d6ddSJeff Bonwick 		else
18838ad4d6ddSJeff Bonwick 			minref = vd->vdev_children;	/* any kind of mirror */
18840713e232SGeorge Wilson 		space_reftree_create(&reftree);
18858ad4d6ddSJeff Bonwick 		for (int c = 0; c < vd->vdev_children; c++) {
1886fa9e4066Sahrens 			vdev_t *cvd = vd->vdev_child[c];
18878ad4d6ddSJeff Bonwick 			mutex_enter(&cvd->vdev_dtl_lock);
18880713e232SGeorge Wilson 			space_reftree_add_map(&reftree, cvd->vdev_dtl[s], 1);
18898ad4d6ddSJeff Bonwick 			mutex_exit(&cvd->vdev_dtl_lock);
1890fa9e4066Sahrens 		}
18910713e232SGeorge Wilson 		space_reftree_generate_map(&reftree, vd->vdev_dtl[t], minref);
18920713e232SGeorge Wilson 		space_reftree_destroy(&reftree);
18938ad4d6ddSJeff Bonwick 	}
18948ad4d6ddSJeff Bonwick 	mutex_exit(&vd->vdev_dtl_lock);
1895fa9e4066Sahrens }
1896fa9e4066Sahrens 
18970713e232SGeorge Wilson int
1898fa9e4066Sahrens vdev_dtl_load(vdev_t *vd)
1899fa9e4066Sahrens {
1900fa9e4066Sahrens 	spa_t *spa = vd->vdev_spa;
1901ecc2d604Sbonwick 	objset_t *mos = spa->spa_meta_objset;
19020713e232SGeorge Wilson 	int error = 0;
1903fa9e4066Sahrens 
19040713e232SGeorge Wilson 	if (vd->vdev_ops->vdev_op_leaf && vd->vdev_dtl_object != 0) {
190588ecc943SGeorge Wilson 		ASSERT(!vd->vdev_ishole);
190688ecc943SGeorge Wilson 
19070713e232SGeorge Wilson 		error = space_map_open(&vd->vdev_dtl_sm, mos,
19080713e232SGeorge Wilson 		    vd->vdev_dtl_object, 0, -1ULL, 0, &vd->vdev_dtl_lock);
19090713e232SGeorge Wilson 		if (error)
1910ea8dc4b6Seschrock 			return (error);
19110713e232SGeorge Wilson 		ASSERT(vd->vdev_dtl_sm != NULL);
1912fa9e4066Sahrens 
1913fa9e4066Sahrens 		mutex_enter(&vd->vdev_dtl_lock);
19140713e232SGeorge Wilson 
19150713e232SGeorge Wilson 		/*
19160713e232SGeorge Wilson 		 * Now that we've opened the space_map we need to update
19170713e232SGeorge Wilson 		 * the in-core DTL.
19180713e232SGeorge Wilson 		 */
19190713e232SGeorge Wilson 		space_map_update(vd->vdev_dtl_sm);
19200713e232SGeorge Wilson 
19210713e232SGeorge Wilson 		error = space_map_load(vd->vdev_dtl_sm,
19220713e232SGeorge Wilson 		    vd->vdev_dtl[DTL_MISSING], SM_ALLOC);
1923fa9e4066Sahrens 		mutex_exit(&vd->vdev_dtl_lock);
1924fa9e4066Sahrens 
1925fa9e4066Sahrens 		return (error);
1926fa9e4066Sahrens 	}
1927fa9e4066Sahrens 
19280713e232SGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++) {
19290713e232SGeorge Wilson 		error = vdev_dtl_load(vd->vdev_child[c]);
19300713e232SGeorge Wilson 		if (error != 0)
19310713e232SGeorge Wilson 			break;
19320713e232SGeorge Wilson 	}
19330713e232SGeorge Wilson 
19340713e232SGeorge Wilson 	return (error);
19350713e232SGeorge Wilson }
19360713e232SGeorge Wilson 
1937fa9e4066Sahrens void
1938fa9e4066Sahrens vdev_dtl_sync(vdev_t *vd, uint64_t txg)
1939fa9e4066Sahrens {
1940fa9e4066Sahrens 	spa_t *spa = vd->vdev_spa;
19410713e232SGeorge Wilson 	range_tree_t *rt = vd->vdev_dtl[DTL_MISSING];
1942ecc2d604Sbonwick 	objset_t *mos = spa->spa_meta_objset;
19430713e232SGeorge Wilson 	range_tree_t *rtsync;
19440713e232SGeorge Wilson 	kmutex_t rtlock;
1945fa9e4066Sahrens 	dmu_tx_t *tx;
19460713e232SGeorge Wilson 	uint64_t object = space_map_object(vd->vdev_dtl_sm);
1947fa9e4066Sahrens 
194888ecc943SGeorge Wilson 	ASSERT(!vd->vdev_ishole);
19490713e232SGeorge Wilson 	ASSERT(vd->vdev_ops->vdev_op_leaf);
195088ecc943SGeorge Wilson 
1951fa9e4066Sahrens 	tx = dmu_tx_create_assigned(spa->spa_dsl_pool, txg);
1952fa9e4066Sahrens 
19530713e232SGeorge Wilson 	if (vd->vdev_detached || vd->vdev_top->vdev_removing) {
19540713e232SGeorge Wilson 		mutex_enter(&vd->vdev_dtl_lock);
19550713e232SGeorge Wilson 		space_map_free(vd->vdev_dtl_sm, tx);
19560713e232SGeorge Wilson 		space_map_close(vd->vdev_dtl_sm);
19570713e232SGeorge Wilson 		vd->vdev_dtl_sm = NULL;
19580713e232SGeorge Wilson 		mutex_exit(&vd->vdev_dtl_lock);
1959fa9e4066Sahrens 		dmu_tx_commit(tx);
1960fa9e4066Sahrens 		return;
1961fa9e4066Sahrens 	}
1962fa9e4066Sahrens 
19630713e232SGeorge Wilson 	if (vd->vdev_dtl_sm == NULL) {
19640713e232SGeorge Wilson 		uint64_t new_object;
19650713e232SGeorge Wilson 
19660713e232SGeorge Wilson 		new_object = space_map_alloc(mos, tx);
19670713e232SGeorge Wilson 		VERIFY3U(new_object, !=, 0);
19680713e232SGeorge Wilson 
19690713e232SGeorge Wilson 		VERIFY0(space_map_open(&vd->vdev_dtl_sm, mos, new_object,
19700713e232SGeorge Wilson 		    0, -1ULL, 0, &vd->vdev_dtl_lock));
19710713e232SGeorge Wilson 		ASSERT(vd->vdev_dtl_sm != NULL);
19720713e232SGeorge Wilson 	}
19730713e232SGeorge Wilson 
19740713e232SGeorge Wilson 	mutex_init(&rtlock, NULL, MUTEX_DEFAULT, NULL);
19750713e232SGeorge Wilson 
19760713e232SGeorge Wilson 	rtsync = range_tree_create(NULL, NULL, &rtlock);
19770713e232SGeorge Wilson 
19780713e232SGeorge Wilson 	mutex_enter(&rtlock);
19790713e232SGeorge Wilson 
19800713e232SGeorge Wilson 	mutex_enter(&vd->vdev_dtl_lock);
19810713e232SGeorge Wilson 	range_tree_walk(rt, range_tree_add, rtsync);
19820713e232SGeorge Wilson 	mutex_exit(&vd->vdev_dtl_lock);
19830713e232SGeorge Wilson 
19840713e232SGeorge Wilson 	space_map_truncate(vd->vdev_dtl_sm, tx);
19850713e232SGeorge Wilson 	space_map_write(vd->vdev_dtl_sm, rtsync, SM_ALLOC, tx);
19860713e232SGeorge Wilson 	range_tree_vacate(rtsync, NULL, NULL);
19870713e232SGeorge Wilson 
19880713e232SGeorge Wilson 	range_tree_destroy(rtsync);
19890713e232SGeorge Wilson 
19900713e232SGeorge Wilson 	mutex_exit(&rtlock);
19910713e232SGeorge Wilson 	mutex_destroy(&rtlock);
19920713e232SGeorge Wilson 
19930713e232SGeorge Wilson 	/*
19940713e232SGeorge Wilson 	 * If the object for the space map has changed then dirty
19950713e232SGeorge Wilson 	 * the top level so that we update the config.
19960713e232SGeorge Wilson 	 */
19970713e232SGeorge Wilson 	if (object != space_map_object(vd->vdev_dtl_sm)) {
19980713e232SGeorge Wilson 		zfs_dbgmsg("txg %llu, spa %s, DTL old object %llu, "
19990713e232SGeorge Wilson 		    "new object %llu", txg, spa_name(spa), object,
20000713e232SGeorge Wilson 		    space_map_object(vd->vdev_dtl_sm));
2001fa9e4066Sahrens 		vdev_config_dirty(vd->vdev_top);
2002fa9e4066Sahrens 	}
2003fa9e4066Sahrens 
20040713e232SGeorge Wilson 	dmu_tx_commit(tx);
2005fa9e4066Sahrens 
2006fa9e4066Sahrens 	mutex_enter(&vd->vdev_dtl_lock);
20070713e232SGeorge Wilson 	space_map_update(vd->vdev_dtl_sm);
2008fa9e4066Sahrens 	mutex_exit(&vd->vdev_dtl_lock);
2009fa9e4066Sahrens }
2010fa9e4066Sahrens 
2011088f3894Sahrens /*
20128ad4d6ddSJeff Bonwick  * Determine whether the specified vdev can be offlined/detached/removed
20138ad4d6ddSJeff Bonwick  * without losing data.
20148ad4d6ddSJeff Bonwick  */
20158ad4d6ddSJeff Bonwick boolean_t
20168ad4d6ddSJeff Bonwick vdev_dtl_required(vdev_t *vd)
20178ad4d6ddSJeff Bonwick {
20188ad4d6ddSJeff Bonwick 	spa_t *spa = vd->vdev_spa;
20198ad4d6ddSJeff Bonwick 	vdev_t *tvd = vd->vdev_top;
20208ad4d6ddSJeff Bonwick 	uint8_t cant_read = vd->vdev_cant_read;
20218ad4d6ddSJeff Bonwick 	boolean_t required;
20228ad4d6ddSJeff Bonwick 
20238ad4d6ddSJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_STATE_ALL, RW_WRITER) == SCL_STATE_ALL);
20248ad4d6ddSJeff Bonwick 
20258ad4d6ddSJeff Bonwick 	if (vd == spa->spa_root_vdev || vd == tvd)
20268ad4d6ddSJeff Bonwick 		return (B_TRUE);
20278ad4d6ddSJeff Bonwick 
20288ad4d6ddSJeff Bonwick 	/*
20298ad4d6ddSJeff Bonwick 	 * Temporarily mark the device as unreadable, and then determine
20308ad4d6ddSJeff Bonwick 	 * whether this results in any DTL outages in the top-level vdev.
20318ad4d6ddSJeff Bonwick 	 * If not, we can safely offline/detach/remove the device.
20328ad4d6ddSJeff Bonwick 	 */
20338ad4d6ddSJeff Bonwick 	vd->vdev_cant_read = B_TRUE;
20348ad4d6ddSJeff Bonwick 	vdev_dtl_reassess(tvd, 0, 0, B_FALSE);
20358ad4d6ddSJeff Bonwick 	required = !vdev_dtl_empty(tvd, DTL_OUTAGE);
20368ad4d6ddSJeff Bonwick 	vd->vdev_cant_read = cant_read;
20378ad4d6ddSJeff Bonwick 	vdev_dtl_reassess(tvd, 0, 0, B_FALSE);
20388ad4d6ddSJeff Bonwick 
2039cb04b873SMark J Musante 	if (!required && zio_injection_enabled)
2040cb04b873SMark J Musante 		required = !!zio_handle_device_injection(vd, NULL, ECHILD);
2041cb04b873SMark J Musante 
20428ad4d6ddSJeff Bonwick 	return (required);
20438ad4d6ddSJeff Bonwick }
20448ad4d6ddSJeff Bonwick 
20458ad4d6ddSJeff Bonwick /*
2046088f3894Sahrens  * Determine if resilver is needed, and if so the txg range.
2047088f3894Sahrens  */
2048088f3894Sahrens boolean_t
2049088f3894Sahrens vdev_resilver_needed(vdev_t *vd, uint64_t *minp, uint64_t *maxp)
2050088f3894Sahrens {
2051088f3894Sahrens 	boolean_t needed = B_FALSE;
2052088f3894Sahrens 	uint64_t thismin = UINT64_MAX;
2053088f3894Sahrens 	uint64_t thismax = 0;
2054088f3894Sahrens 
2055088f3894Sahrens 	if (vd->vdev_children == 0) {
2056088f3894Sahrens 		mutex_enter(&vd->vdev_dtl_lock);
20570713e232SGeorge Wilson 		if (range_tree_space(vd->vdev_dtl[DTL_MISSING]) != 0 &&
20588ad4d6ddSJeff Bonwick 		    vdev_writeable(vd)) {
2059088f3894Sahrens 
2060b4952e17SGeorge Wilson 			thismin = vdev_dtl_min(vd);
2061b4952e17SGeorge Wilson 			thismax = vdev_dtl_max(vd);
2062088f3894Sahrens 			needed = B_TRUE;
2063088f3894Sahrens 		}
2064088f3894Sahrens 		mutex_exit(&vd->vdev_dtl_lock);
2065088f3894Sahrens 	} else {
20668ad4d6ddSJeff Bonwick 		for (int c = 0; c < vd->vdev_children; c++) {
2067088f3894Sahrens 			vdev_t *cvd = vd->vdev_child[c];
2068088f3894Sahrens 			uint64_t cmin, cmax;
2069088f3894Sahrens 
2070088f3894Sahrens 			if (vdev_resilver_needed(cvd, &cmin, &cmax)) {
2071088f3894Sahrens 				thismin = MIN(thismin, cmin);
2072088f3894Sahrens 				thismax = MAX(thismax, cmax);
2073088f3894Sahrens 				needed = B_TRUE;
2074088f3894Sahrens 			}
2075088f3894Sahrens 		}
2076088f3894Sahrens 	}
2077088f3894Sahrens 
2078088f3894Sahrens 	if (needed && minp) {
2079088f3894Sahrens 		*minp = thismin;
2080088f3894Sahrens 		*maxp = thismax;
2081088f3894Sahrens 	}
2082088f3894Sahrens 	return (needed);
2083088f3894Sahrens }
2084088f3894Sahrens 
2085560e6e96Seschrock void
2086ea8dc4b6Seschrock vdev_load(vdev_t *vd)
2087fa9e4066Sahrens {
2088fa9e4066Sahrens 	/*
2089fa9e4066Sahrens 	 * Recursively load all children.
2090fa9e4066Sahrens 	 */
20918ad4d6ddSJeff Bonwick 	for (int c = 0; c < vd->vdev_children; c++)
2092560e6e96Seschrock 		vdev_load(vd->vdev_child[c]);
2093fa9e4066Sahrens 
2094fa9e4066Sahrens 	/*
20950e34b6a7Sbonwick 	 * If this is a top-level vdev, initialize its metaslabs.
2096fa9e4066Sahrens 	 */
209788ecc943SGeorge Wilson 	if (vd == vd->vdev_top && !vd->vdev_ishole &&
2098560e6e96Seschrock 	    (vd->vdev_ashift == 0 || vd->vdev_asize == 0 ||
2099560e6e96Seschrock 	    vdev_metaslab_init(vd, 0) != 0))
2100ea8dc4b6Seschrock 		vdev_set_state(vd, B_FALSE, VDEV_STATE_CANT_OPEN,
2101fa9e4066Sahrens 		    VDEV_AUX_CORRUPT_DATA);
2102fa9e4066Sahrens 
2103fa9e4066Sahrens 	/*
2104fa9e4066Sahrens 	 * If this is a leaf vdev, load its DTL.
2105fa9e4066Sahrens 	 */
2106560e6e96Seschrock 	if (vd->vdev_ops->vdev_op_leaf && vdev_dtl_load(vd) != 0)
2107ea8dc4b6Seschrock 		vdev_set_state(vd, B_FALSE, VDEV_STATE_CANT_OPEN,
2108fa9e4066Sahrens 		    VDEV_AUX_CORRUPT_DATA);
2109fa9e4066Sahrens }
2110fa9e4066Sahrens 
211199653d4eSeschrock /*
2112fa94a07fSbrendan  * The special vdev case is used for hot spares and l2cache devices.  Its
2113fa94a07fSbrendan  * sole purpose it to set the vdev state for the associated vdev.  To do this,
2114fa94a07fSbrendan  * we make sure that we can open the underlying device, then try to read the
2115fa94a07fSbrendan  * label, and make sure that the label is sane and that it hasn't been
2116fa94a07fSbrendan  * repurposed to another pool.
211799653d4eSeschrock  */
211899653d4eSeschrock int
2119fa94a07fSbrendan vdev_validate_aux(vdev_t *vd)
212099653d4eSeschrock {
212199653d4eSeschrock 	nvlist_t *label;
212299653d4eSeschrock 	uint64_t guid, version;
212399653d4eSeschrock 	uint64_t state;
212499653d4eSeschrock 
2125e14bb325SJeff Bonwick 	if (!vdev_readable(vd))
2126c5904d13Seschrock 		return (0);
2127c5904d13Seschrock 
2128dfbb9432SGeorge Wilson 	if ((label = vdev_label_read_config(vd, -1ULL)) == NULL) {
212999653d4eSeschrock 		vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
213099653d4eSeschrock 		    VDEV_AUX_CORRUPT_DATA);
213199653d4eSeschrock 		return (-1);
213299653d4eSeschrock 	}
213399653d4eSeschrock 
213499653d4eSeschrock 	if (nvlist_lookup_uint64(label, ZPOOL_CONFIG_VERSION, &version) != 0 ||
2135ad135b5dSChristopher Siden 	    !SPA_VERSION_IS_SUPPORTED(version) ||
213699653d4eSeschrock 	    nvlist_lookup_uint64(label, ZPOOL_CONFIG_GUID, &guid) != 0 ||
213799653d4eSeschrock 	    guid != vd->vdev_guid ||
213899653d4eSeschrock 	    nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_STATE, &state) != 0) {
213999653d4eSeschrock 		vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
214099653d4eSeschrock 		    VDEV_AUX_CORRUPT_DATA);
214199653d4eSeschrock 		nvlist_free(label);
214299653d4eSeschrock 		return (-1);
214399653d4eSeschrock 	}
214499653d4eSeschrock 
214599653d4eSeschrock 	/*
214699653d4eSeschrock 	 * We don't actually check the pool state here.  If it's in fact in
214799653d4eSeschrock 	 * use by another pool, we update this fact on the fly when requested.
214899653d4eSeschrock 	 */
214999653d4eSeschrock 	nvlist_free(label);
215099653d4eSeschrock 	return (0);
215199653d4eSeschrock }
215299653d4eSeschrock 
2153fa9e4066Sahrens void
215488ecc943SGeorge Wilson vdev_remove(vdev_t *vd, uint64_t txg)
215588ecc943SGeorge Wilson {
215688ecc943SGeorge Wilson 	spa_t *spa = vd->vdev_spa;
215788ecc943SGeorge Wilson 	objset_t *mos = spa->spa_meta_objset;
215888ecc943SGeorge Wilson 	dmu_tx_t *tx;
215988ecc943SGeorge Wilson 
216088ecc943SGeorge Wilson 	tx = dmu_tx_create_assigned(spa_get_dsl(spa), txg);
216188ecc943SGeorge Wilson 
216288ecc943SGeorge Wilson 	if (vd->vdev_ms != NULL) {
21632e4c9986SGeorge Wilson 		metaslab_group_t *mg = vd->vdev_mg;
21642e4c9986SGeorge Wilson 
21652e4c9986SGeorge Wilson 		metaslab_group_histogram_verify(mg);
21662e4c9986SGeorge Wilson 		metaslab_class_histogram_verify(mg->mg_class);
21672e4c9986SGeorge Wilson 
216888ecc943SGeorge Wilson 		for (int m = 0; m < vd->vdev_ms_count; m++) {
216988ecc943SGeorge Wilson 			metaslab_t *msp = vd->vdev_ms[m];
217088ecc943SGeorge Wilson 
21710713e232SGeorge Wilson 			if (msp == NULL || msp->ms_sm == NULL)
217288ecc943SGeorge Wilson 				continue;
217388ecc943SGeorge Wilson 
21740713e232SGeorge Wilson 			mutex_enter(&msp->ms_lock);
21752e4c9986SGeorge Wilson 			/*
21762e4c9986SGeorge Wilson 			 * If the metaslab was not loaded when the vdev
21772e4c9986SGeorge Wilson 			 * was removed then the histogram accounting may
21782e4c9986SGeorge Wilson 			 * not be accurate. Update the histogram information
21792e4c9986SGeorge Wilson 			 * here so that we ensure that the metaslab group
21802e4c9986SGeorge Wilson 			 * and metaslab class are up-to-date.
21812e4c9986SGeorge Wilson 			 */
21822e4c9986SGeorge Wilson 			metaslab_group_histogram_remove(mg, msp);
21832e4c9986SGeorge Wilson 
21840713e232SGeorge Wilson 			VERIFY0(space_map_allocated(msp->ms_sm));
21850713e232SGeorge Wilson 			space_map_free(msp->ms_sm, tx);
21860713e232SGeorge Wilson 			space_map_close(msp->ms_sm);
21870713e232SGeorge Wilson 			msp->ms_sm = NULL;
21880713e232SGeorge Wilson 			mutex_exit(&msp->ms_lock);
218988ecc943SGeorge Wilson 		}
21902e4c9986SGeorge Wilson 
21912e4c9986SGeorge Wilson 		metaslab_group_histogram_verify(mg);
21922e4c9986SGeorge Wilson 		metaslab_class_histogram_verify(mg->mg_class);
21932e4c9986SGeorge Wilson 		for (int i = 0; i < RANGE_TREE_HISTOGRAM_SIZE; i++)
21942e4c9986SGeorge Wilson 			ASSERT0(mg->mg_histogram[i]);
21952e4c9986SGeorge Wilson 
219688ecc943SGeorge Wilson 	}
219788ecc943SGeorge Wilson 
219888ecc943SGeorge Wilson 	if (vd->vdev_ms_array) {
219988ecc943SGeorge Wilson 		(void) dmu_object_free(mos, vd->vdev_ms_array, tx);
220088ecc943SGeorge Wilson 		vd->vdev_ms_array = 0;
220188ecc943SGeorge Wilson 	}
220288ecc943SGeorge Wilson 	dmu_tx_commit(tx);
220388ecc943SGeorge Wilson }
220488ecc943SGeorge Wilson 
220588ecc943SGeorge Wilson void
2206fa9e4066Sahrens vdev_sync_done(vdev_t *vd, uint64_t txg)
2207fa9e4066Sahrens {
2208fa9e4066Sahrens 	metaslab_t *msp;
220980eb36f2SGeorge Wilson 	boolean_t reassess = !txg_list_empty(&vd->vdev_ms_list, TXG_CLEAN(txg));
2210fa9e4066Sahrens 
221188ecc943SGeorge Wilson 	ASSERT(!vd->vdev_ishole);
221288ecc943SGeorge Wilson 
2213fa9e4066Sahrens 	while (msp = txg_list_remove(&vd->vdev_ms_list, TXG_CLEAN(txg)))
2214fa9e4066Sahrens 		metaslab_sync_done(msp, txg);
221580eb36f2SGeorge Wilson 
221680eb36f2SGeorge Wilson 	if (reassess)
221780eb36f2SGeorge Wilson 		metaslab_sync_reassess(vd->vdev_mg);
2218fa9e4066Sahrens }
2219fa9e4066Sahrens 
2220fa9e4066Sahrens void
2221fa9e4066Sahrens vdev_sync(vdev_t *vd, uint64_t txg)
2222fa9e4066Sahrens {
2223fa9e4066Sahrens 	spa_t *spa = vd->vdev_spa;
2224fa9e4066Sahrens 	vdev_t *lvd;
2225fa9e4066Sahrens 	metaslab_t *msp;
2226ecc2d604Sbonwick 	dmu_tx_t *tx;
2227fa9e4066Sahrens 
222888ecc943SGeorge Wilson 	ASSERT(!vd->vdev_ishole);
222988ecc943SGeorge Wilson 
2230ecc2d604Sbonwick 	if (vd->vdev_ms_array == 0 && vd->vdev_ms_shift != 0) {
2231ecc2d604Sbonwick 		ASSERT(vd == vd->vdev_top);
2232ecc2d604Sbonwick 		tx = dmu_tx_create_assigned(spa->spa_dsl_pool, txg);
2233ecc2d604Sbonwick 		vd->vdev_ms_array = dmu_object_alloc(spa->spa_meta_objset,
2234ecc2d604Sbonwick 		    DMU_OT_OBJECT_ARRAY, 0, DMU_OT_NONE, 0, tx);
2235ecc2d604Sbonwick 		ASSERT(vd->vdev_ms_array != 0);
2236ecc2d604Sbonwick 		vdev_config_dirty(vd);
2237ecc2d604Sbonwick 		dmu_tx_commit(tx);
2238ecc2d604Sbonwick 	}
2239fa9e4066Sahrens 
22403f9d6ad7SLin Ling 	/*
22413f9d6ad7SLin Ling 	 * Remove the metadata associated with this vdev once it's empty.
22423f9d6ad7SLin Ling 	 */
22433f9d6ad7SLin Ling 	if (vd->vdev_stat.vs_alloc == 0 && vd->vdev_removing)
224488ecc943SGeorge Wilson 		vdev_remove(vd, txg);
224588ecc943SGeorge Wilson 
2246ecc2d604Sbonwick 	while ((msp = txg_list_remove(&vd->vdev_ms_list, txg)) != NULL) {
2247fa9e4066Sahrens 		metaslab_sync(msp, txg);
2248ecc2d604Sbonwick 		(void) txg_list_add(&vd->vdev_ms_list, msp, TXG_CLEAN(txg));
2249ecc2d604Sbonwick 	}
2250fa9e4066Sahrens 
2251fa9e4066Sahrens 	while ((lvd = txg_list_remove(&vd->vdev_dtl_list, txg)) != NULL)
2252fa9e4066Sahrens 		vdev_dtl_sync(lvd, txg);
2253fa9e4066Sahrens 
2254fa9e4066Sahrens 	(void) txg_list_add(&spa->spa_vdev_txg_list, vd, TXG_CLEAN(txg));
2255fa9e4066Sahrens }
2256fa9e4066Sahrens 
2257fa9e4066Sahrens uint64_t
2258fa9e4066Sahrens vdev_psize_to_asize(vdev_t *vd, uint64_t psize)
2259fa9e4066Sahrens {
2260fa9e4066Sahrens 	return (vd->vdev_ops->vdev_op_asize(vd, psize));
2261fa9e4066Sahrens }
2262fa9e4066Sahrens 
22633d7072f8Seschrock /*
22643d7072f8Seschrock  * Mark the given vdev faulted.  A faulted vdev behaves as if the device could
22653d7072f8Seschrock  * not be opened, and no I/O is attempted.
22663d7072f8Seschrock  */
2267fa9e4066Sahrens int
2268069f55e2SEric Schrock vdev_fault(spa_t *spa, uint64_t guid, vdev_aux_t aux)
2269fa9e4066Sahrens {
22704b964adaSGeorge Wilson 	vdev_t *vd, *tvd;
2271fa9e4066Sahrens 
22728f18d1faSGeorge Wilson 	spa_vdev_state_enter(spa, SCL_NONE);
2273fa9e4066Sahrens 
2274c5904d13Seschrock 	if ((vd = spa_lookup_by_guid(spa, guid, B_TRUE)) == NULL)
2275e14bb325SJeff Bonwick 		return (spa_vdev_state_exit(spa, NULL, ENODEV));
2276e14bb325SJeff Bonwick 
22770e34b6a7Sbonwick 	if (!vd->vdev_ops->vdev_op_leaf)
2278e14bb325SJeff Bonwick 		return (spa_vdev_state_exit(spa, NULL, ENOTSUP));
22790e34b6a7Sbonwick 
22804b964adaSGeorge Wilson 	tvd = vd->vdev_top;
22814b964adaSGeorge Wilson 
22823d7072f8Seschrock 	/*
2283069f55e2SEric Schrock 	 * We don't directly use the aux state here, but if we do a
2284069f55e2SEric Schrock 	 * vdev_reopen(), we need this value to be present to remember why we
2285069f55e2SEric Schrock 	 * were faulted.
2286069f55e2SEric Schrock 	 */
2287069f55e2SEric Schrock 	vd->vdev_label_aux = aux;
2288069f55e2SEric Schrock 
2289069f55e2SEric Schrock 	/*
22903d7072f8Seschrock 	 * Faulted state takes precedence over degraded.
22913d7072f8Seschrock 	 */
229298d1cbfeSGeorge Wilson 	vd->vdev_delayed_close = B_FALSE;
22933d7072f8Seschrock 	vd->vdev_faulted = 1ULL;
22943d7072f8Seschrock 	vd->vdev_degraded = 0ULL;
2295069f55e2SEric Schrock 	vdev_set_state(vd, B_FALSE, VDEV_STATE_FAULTED, aux);
2296fa9e4066Sahrens 
22973d7072f8Seschrock 	/*
2298c79790bcSGeorge Wilson 	 * If this device has the only valid copy of the data, then
2299c79790bcSGeorge Wilson 	 * back off and simply mark the vdev as degraded instead.
23003d7072f8Seschrock 	 */
23014b964adaSGeorge Wilson 	if (!tvd->vdev_islog && vd->vdev_aux == NULL && vdev_dtl_required(vd)) {
23023d7072f8Seschrock 		vd->vdev_degraded = 1ULL;
23033d7072f8Seschrock 		vd->vdev_faulted = 0ULL;
23043d7072f8Seschrock 
23053d7072f8Seschrock 		/*
23063d7072f8Seschrock 		 * If we reopen the device and it's not dead, only then do we
23073d7072f8Seschrock 		 * mark it degraded.
23083d7072f8Seschrock 		 */
23094b964adaSGeorge Wilson 		vdev_reopen(tvd);
23103d7072f8Seschrock 
2311069f55e2SEric Schrock 		if (vdev_readable(vd))
2312069f55e2SEric Schrock 			vdev_set_state(vd, B_FALSE, VDEV_STATE_DEGRADED, aux);
23133d7072f8Seschrock 	}
2314fa9e4066Sahrens 
2315e14bb325SJeff Bonwick 	return (spa_vdev_state_exit(spa, vd, 0));
23163d7072f8Seschrock }
23173d7072f8Seschrock 
23183d7072f8Seschrock /*
23193d7072f8Seschrock  * Mark the given vdev degraded.  A degraded vdev is purely an indication to the
23203d7072f8Seschrock  * user that something is wrong.  The vdev continues to operate as normal as far
23213d7072f8Seschrock  * as I/O is concerned.
23223d7072f8Seschrock  */
23233d7072f8Seschrock int
2324069f55e2SEric Schrock vdev_degrade(spa_t *spa, uint64_t guid, vdev_aux_t aux)
23253d7072f8Seschrock {
2326c5904d13Seschrock 	vdev_t *vd;
23273d7072f8Seschrock 
23288f18d1faSGeorge Wilson 	spa_vdev_state_enter(spa, SCL_NONE);
23293d7072f8Seschrock 
2330c5904d13Seschrock 	if ((vd = spa_lookup_by_guid(spa, guid, B_TRUE)) == NULL)
2331e14bb325SJeff Bonwick 		return (spa_vdev_state_exit(spa, NULL, ENODEV));
2332e14bb325SJeff Bonwick 
23333d7072f8Seschrock 	if (!vd->vdev_ops->vdev_op_leaf)
2334e14bb325SJeff Bonwick 		return (spa_vdev_state_exit(spa, NULL, ENOTSUP));
23353d7072f8Seschrock 
23363d7072f8Seschrock 	/*
23373d7072f8Seschrock 	 * If the vdev is already faulted, then don't do anything.
23383d7072f8Seschrock 	 */
2339e14bb325SJeff Bonwick 	if (vd->vdev_faulted || vd->vdev_degraded)
2340e14bb325SJeff Bonwick 		return (spa_vdev_state_exit(spa, NULL, 0));
23413d7072f8Seschrock 
23423d7072f8Seschrock 	vd->vdev_degraded = 1ULL;
23433d7072f8Seschrock 	if (!vdev_is_dead(vd))
23443d7072f8Seschrock 		vdev_set_state(vd, B_FALSE, VDEV_STATE_DEGRADED,
2345069f55e2SEric Schrock 		    aux);
23463d7072f8Seschrock 
2347e14bb325SJeff Bonwick 	return (spa_vdev_state_exit(spa, vd, 0));
2348fa9e4066Sahrens }
2349fa9e4066Sahrens 
23503d7072f8Seschrock /*
2351f7170741SWill Andrews  * Online the given vdev.
2352f7170741SWill Andrews  *
2353f7170741SWill Andrews  * If 'ZFS_ONLINE_UNSPARE' is set, it implies two things.  First, any attached
2354f7170741SWill Andrews  * spare device should be detached when the device finishes resilvering.
2355f7170741SWill Andrews  * Second, the online should be treated like a 'test' online case, so no FMA
2356f7170741SWill Andrews  * events are generated if the device fails to open.
23573d7072f8Seschrock  */
2358fa9e4066Sahrens int
2359e14bb325SJeff Bonwick vdev_online(spa_t *spa, uint64_t guid, uint64_t flags, vdev_state_t *newstate)
2360fa9e4066Sahrens {
2361573ca77eSGeorge Wilson 	vdev_t *vd, *tvd, *pvd, *rvd = spa->spa_root_vdev;
236214372834SHans Rosenfeld 	boolean_t postevent = B_FALSE;
2363fa9e4066Sahrens 
23648f18d1faSGeorge Wilson 	spa_vdev_state_enter(spa, SCL_NONE);
2365fa9e4066Sahrens 
2366c5904d13Seschrock 	if ((vd = spa_lookup_by_guid(spa, guid, B_TRUE)) == NULL)
2367e14bb325SJeff Bonwick 		return (spa_vdev_state_exit(spa, NULL, ENODEV));
2368fa9e4066Sahrens 
23690e34b6a7Sbonwick 	if (!vd->vdev_ops->vdev_op_leaf)
2370e14bb325SJeff Bonwick 		return (spa_vdev_state_exit(spa, NULL, ENOTSUP));
23710e34b6a7Sbonwick 
237214372834SHans Rosenfeld 	postevent =
237314372834SHans Rosenfeld 	    (vd->vdev_offline == B_TRUE || vd->vdev_tmpoffline == B_TRUE) ?
237414372834SHans Rosenfeld 	    B_TRUE : B_FALSE;
237514372834SHans Rosenfeld 
2376573ca77eSGeorge Wilson 	tvd = vd->vdev_top;
23773d7072f8Seschrock 	vd->vdev_offline = B_FALSE;
23783d7072f8Seschrock 	vd->vdev_tmpoffline = B_FALSE;
2379e14bb325SJeff Bonwick 	vd->vdev_checkremove = !!(flags & ZFS_ONLINE_CHECKREMOVE);
2380e14bb325SJeff Bonwick 	vd->vdev_forcefault = !!(flags & ZFS_ONLINE_FORCEFAULT);
2381573ca77eSGeorge Wilson 
2382573ca77eSGeorge Wilson 	/* XXX - L2ARC 1.0 does not support expansion */
2383573ca77eSGeorge Wilson 	if (!vd->vdev_aux) {
2384573ca77eSGeorge Wilson 		for (pvd = vd; pvd != rvd; pvd = pvd->vdev_parent)
2385573ca77eSGeorge Wilson 			pvd->vdev_expanding = !!(flags & ZFS_ONLINE_EXPAND);
2386573ca77eSGeorge Wilson 	}
2387573ca77eSGeorge Wilson 
2388573ca77eSGeorge Wilson 	vdev_reopen(tvd);
23893d7072f8Seschrock 	vd->vdev_checkremove = vd->vdev_forcefault = B_FALSE;
23903d7072f8Seschrock 
2391573ca77eSGeorge Wilson 	if (!vd->vdev_aux) {
2392573ca77eSGeorge Wilson 		for (pvd = vd; pvd != rvd; pvd = pvd->vdev_parent)
2393573ca77eSGeorge Wilson 			pvd->vdev_expanding = B_FALSE;
2394573ca77eSGeorge Wilson 	}
2395573ca77eSGeorge Wilson 
23963d7072f8Seschrock 	if (newstate)
23973d7072f8Seschrock 		*newstate = vd->vdev_state;
23983d7072f8Seschrock 	if ((flags & ZFS_ONLINE_UNSPARE) &&
23993d7072f8Seschrock 	    !vdev_is_dead(vd) && vd->vdev_parent &&
24003d7072f8Seschrock 	    vd->vdev_parent->vdev_ops == &vdev_spare_ops &&
24013d7072f8Seschrock 	    vd->vdev_parent->vdev_child[0] == vd)
24023d7072f8Seschrock 		vd->vdev_unspare = B_TRUE;
24033d7072f8Seschrock 
2404573ca77eSGeorge Wilson 	if ((flags & ZFS_ONLINE_EXPAND) || spa->spa_autoexpand) {
2405573ca77eSGeorge Wilson 
2406573ca77eSGeorge Wilson 		/* XXX - L2ARC 1.0 does not support expansion */
2407573ca77eSGeorge Wilson 		if (vd->vdev_aux)
2408573ca77eSGeorge Wilson 			return (spa_vdev_state_exit(spa, vd, ENOTSUP));
2409573ca77eSGeorge Wilson 		spa_async_request(spa, SPA_ASYNC_CONFIG_UPDATE);
2410573ca77eSGeorge Wilson 	}
241114372834SHans Rosenfeld 
241214372834SHans Rosenfeld 	if (postevent)
241314372834SHans Rosenfeld 		spa_event_notify(spa, vd, ESC_ZFS_VDEV_ONLINE);
241414372834SHans Rosenfeld 
24158ad4d6ddSJeff Bonwick 	return (spa_vdev_state_exit(spa, vd, 0));
24163d7072f8Seschrock }
24173d7072f8Seschrock 
2418a1521560SJeff Bonwick static int
2419a1521560SJeff Bonwick vdev_offline_locked(spa_t *spa, uint64_t guid, uint64_t flags)
24203d7072f8Seschrock {
2421e6ca193dSGeorge Wilson 	vdev_t *vd, *tvd;
24228f18d1faSGeorge Wilson 	int error = 0;
24238f18d1faSGeorge Wilson 	uint64_t generation;
24248f18d1faSGeorge Wilson 	metaslab_group_t *mg;
24253d7072f8Seschrock 
24268f18d1faSGeorge Wilson top:
24278f18d1faSGeorge Wilson 	spa_vdev_state_enter(spa, SCL_ALLOC);
24283d7072f8Seschrock 
2429c5904d13Seschrock 	if ((vd = spa_lookup_by_guid(spa, guid, B_TRUE)) == NULL)
2430e14bb325SJeff Bonwick 		return (spa_vdev_state_exit(spa, NULL, ENODEV));
24313d7072f8Seschrock 
24323d7072f8Seschrock 	if (!vd->vdev_ops->vdev_op_leaf)
2433e14bb325SJeff Bonwick 		return (spa_vdev_state_exit(spa, NULL, ENOTSUP));
2434fa9e4066Sahrens 
2435e6ca193dSGeorge Wilson 	tvd = vd->vdev_top;
24368f18d1faSGeorge Wilson 	mg = tvd->vdev_mg;
24378f18d1faSGeorge Wilson 	generation = spa->spa_config_generation + 1;
2438e6ca193dSGeorge Wilson 
2439ecc2d604Sbonwick 	/*
2440ecc2d604Sbonwick 	 * If the device isn't already offline, try to offline it.
2441ecc2d604Sbonwick 	 */
2442ecc2d604Sbonwick 	if (!vd->vdev_offline) {
2443fa9e4066Sahrens 		/*
24448ad4d6ddSJeff Bonwick 		 * If this device has the only valid copy of some data,
2445e6ca193dSGeorge Wilson 		 * don't allow it to be offlined. Log devices are always
2446e6ca193dSGeorge Wilson 		 * expendable.
2447fa9e4066Sahrens 		 */
2448e6ca193dSGeorge Wilson 		if (!tvd->vdev_islog && vd->vdev_aux == NULL &&
2449e6ca193dSGeorge Wilson 		    vdev_dtl_required(vd))
2450e14bb325SJeff Bonwick 			return (spa_vdev_state_exit(spa, NULL, EBUSY));
2451fa9e4066Sahrens 
2452fa9e4066Sahrens 		/*
2453b24ab676SJeff Bonwick 		 * If the top-level is a slog and it has had allocations
2454b24ab676SJeff Bonwick 		 * then proceed.  We check that the vdev's metaslab group
2455b24ab676SJeff Bonwick 		 * is not NULL since it's possible that we may have just
2456b24ab676SJeff Bonwick 		 * added this vdev but not yet initialized its metaslabs.
24578f18d1faSGeorge Wilson 		 */
24588f18d1faSGeorge Wilson 		if (tvd->vdev_islog && mg != NULL) {
24598f18d1faSGeorge Wilson 			/*
24608f18d1faSGeorge Wilson 			 * Prevent any future allocations.
24618f18d1faSGeorge Wilson 			 */
2462a1521560SJeff Bonwick 			metaslab_group_passivate(mg);
24638f18d1faSGeorge Wilson 			(void) spa_vdev_state_exit(spa, vd, 0);
24648f18d1faSGeorge Wilson 
24651195e687SMark J Musante 			error = spa_offline_log(spa);
24668f18d1faSGeorge Wilson 
24678f18d1faSGeorge Wilson 			spa_vdev_state_enter(spa, SCL_ALLOC);
24688f18d1faSGeorge Wilson 
24698f18d1faSGeorge Wilson 			/*
24708f18d1faSGeorge Wilson 			 * Check to see if the config has changed.
24718f18d1faSGeorge Wilson 			 */
24728f18d1faSGeorge Wilson 			if (error || generation != spa->spa_config_generation) {
2473a1521560SJeff Bonwick 				metaslab_group_activate(mg);
24748f18d1faSGeorge Wilson 				if (error)
24758f18d1faSGeorge Wilson 					return (spa_vdev_state_exit(spa,
24768f18d1faSGeorge Wilson 					    vd, error));
24778f18d1faSGeorge Wilson 				(void) spa_vdev_state_exit(spa, vd, 0);
24788f18d1faSGeorge Wilson 				goto top;
24798f18d1faSGeorge Wilson 			}
2480fb09f5aaSMadhav Suresh 			ASSERT0(tvd->vdev_stat.vs_alloc);
24818f18d1faSGeorge Wilson 		}
24828f18d1faSGeorge Wilson 
24838f18d1faSGeorge Wilson 		/*
2484ecc2d604Sbonwick 		 * Offline this device and reopen its top-level vdev.
2485e6ca193dSGeorge Wilson 		 * If the top-level vdev is a log device then just offline
2486e6ca193dSGeorge Wilson 		 * it. Otherwise, if this action results in the top-level
2487e6ca193dSGeorge Wilson 		 * vdev becoming unusable, undo it and fail the request.
2488fa9e4066Sahrens 		 */
2489fa9e4066Sahrens 		vd->vdev_offline = B_TRUE;
2490e6ca193dSGeorge Wilson 		vdev_reopen(tvd);
2491e6ca193dSGeorge Wilson 
2492e6ca193dSGeorge Wilson 		if (!tvd->vdev_islog && vd->vdev_aux == NULL &&
2493e6ca193dSGeorge Wilson 		    vdev_is_dead(tvd)) {
2494fa9e4066Sahrens 			vd->vdev_offline = B_FALSE;
2495e6ca193dSGeorge Wilson 			vdev_reopen(tvd);
2496e14bb325SJeff Bonwick 			return (spa_vdev_state_exit(spa, NULL, EBUSY));
2497fa9e4066Sahrens 		}
24988f18d1faSGeorge Wilson 
24998f18d1faSGeorge Wilson 		/*
25008f18d1faSGeorge Wilson 		 * Add the device back into the metaslab rotor so that
25018f18d1faSGeorge Wilson 		 * once we online the device it's open for business.
25028f18d1faSGeorge Wilson 		 */
25038f18d1faSGeorge Wilson 		if (tvd->vdev_islog && mg != NULL)
2504a1521560SJeff Bonwick 			metaslab_group_activate(mg);
2505ecc2d604Sbonwick 	}
2506fa9e4066Sahrens 
2507e14bb325SJeff Bonwick 	vd->vdev_tmpoffline = !!(flags & ZFS_OFFLINE_TEMPORARY);
2508ecc2d604Sbonwick 
2509e14bb325SJeff Bonwick 	return (spa_vdev_state_exit(spa, vd, 0));
2510fa9e4066Sahrens }
2511fa9e4066Sahrens 
2512a1521560SJeff Bonwick int
2513a1521560SJeff Bonwick vdev_offline(spa_t *spa, uint64_t guid, uint64_t flags)
2514a1521560SJeff Bonwick {
2515a1521560SJeff Bonwick 	int error;
2516a1521560SJeff Bonwick 
2517a1521560SJeff Bonwick 	mutex_enter(&spa->spa_vdev_top_lock);
2518a1521560SJeff Bonwick 	error = vdev_offline_locked(spa, guid, flags);
2519a1521560SJeff Bonwick 	mutex_exit(&spa->spa_vdev_top_lock);
2520a1521560SJeff Bonwick 
2521a1521560SJeff Bonwick 	return (error);
2522a1521560SJeff Bonwick }
2523a1521560SJeff Bonwick 
2524ea8dc4b6Seschrock /*
2525ea8dc4b6Seschrock  * Clear the error counts associated with this vdev.  Unlike vdev_online() and
2526ea8dc4b6Seschrock  * vdev_offline(), we assume the spa config is locked.  We also clear all
2527ea8dc4b6Seschrock  * children.  If 'vd' is NULL, then the user wants to clear all vdevs.
2528ea8dc4b6Seschrock  */
2529ea8dc4b6Seschrock void
2530e14bb325SJeff Bonwick vdev_clear(spa_t *spa, vdev_t *vd)
2531fa9e4066Sahrens {
2532e14bb325SJeff Bonwick 	vdev_t *rvd = spa->spa_root_vdev;
2533e14bb325SJeff Bonwick 
2534e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_STATE_ALL, RW_WRITER) == SCL_STATE_ALL);
2535fa9e4066Sahrens 
2536ea8dc4b6Seschrock 	if (vd == NULL)
2537e14bb325SJeff Bonwick 		vd = rvd;
2538fa9e4066Sahrens 
2539ea8dc4b6Seschrock 	vd->vdev_stat.vs_read_errors = 0;
2540ea8dc4b6Seschrock 	vd->vdev_stat.vs_write_errors = 0;
2541ea8dc4b6Seschrock 	vd->vdev_stat.vs_checksum_errors = 0;
2542fa9e4066Sahrens 
2543e14bb325SJeff Bonwick 	for (int c = 0; c < vd->vdev_children; c++)
2544e14bb325SJeff Bonwick 		vdev_clear(spa, vd->vdev_child[c]);
25453d7072f8Seschrock 
25463d7072f8Seschrock 	/*
25478a79c1b5Sek110237 	 * If we're in the FAULTED state or have experienced failed I/O, then
25488a79c1b5Sek110237 	 * clear the persistent state and attempt to reopen the device.  We
25498a79c1b5Sek110237 	 * also mark the vdev config dirty, so that the new faulted state is
25508a79c1b5Sek110237 	 * written out to disk.
25513d7072f8Seschrock 	 */
2552e14bb325SJeff Bonwick 	if (vd->vdev_faulted || vd->vdev_degraded ||
2553e14bb325SJeff Bonwick 	    !vdev_readable(vd) || !vdev_writeable(vd)) {
25548a79c1b5Sek110237 
2555096d22d4SEric Schrock 		/*
2556096d22d4SEric Schrock 		 * When reopening in reponse to a clear event, it may be due to
2557096d22d4SEric Schrock 		 * a fmadm repair request.  In this case, if the device is
2558096d22d4SEric Schrock 		 * still broken, we want to still post the ereport again.
2559096d22d4SEric Schrock 		 */
2560096d22d4SEric Schrock 		vd->vdev_forcefault = B_TRUE;
2561096d22d4SEric Schrock 
25624b964adaSGeorge Wilson 		vd->vdev_faulted = vd->vdev_degraded = 0ULL;
2563e14bb325SJeff Bonwick 		vd->vdev_cant_read = B_FALSE;
2564e14bb325SJeff Bonwick 		vd->vdev_cant_write = B_FALSE;
25653d7072f8Seschrock 
2566f9af39baSGeorge Wilson 		vdev_reopen(vd == rvd ? rvd : vd->vdev_top);
2567e14bb325SJeff Bonwick 
2568096d22d4SEric Schrock 		vd->vdev_forcefault = B_FALSE;
2569096d22d4SEric Schrock 
2570f9af39baSGeorge Wilson 		if (vd != rvd && vdev_writeable(vd->vdev_top))
2571e14bb325SJeff Bonwick 			vdev_state_dirty(vd->vdev_top);
2572e14bb325SJeff Bonwick 
2573e14bb325SJeff Bonwick 		if (vd->vdev_aux == NULL && !vdev_is_dead(vd))
2574bb8b5132Sek110237 			spa_async_request(spa, SPA_ASYNC_RESILVER);
25753d7072f8Seschrock 
25763d7072f8Seschrock 		spa_event_notify(spa, vd, ESC_ZFS_VDEV_CLEAR);
25773d7072f8Seschrock 	}
2578096d22d4SEric Schrock 
2579096d22d4SEric Schrock 	/*
2580096d22d4SEric Schrock 	 * When clearing a FMA-diagnosed fault, we always want to
2581096d22d4SEric Schrock 	 * unspare the device, as we assume that the original spare was
2582096d22d4SEric Schrock 	 * done in response to the FMA fault.
2583096d22d4SEric Schrock 	 */
2584096d22d4SEric Schrock 	if (!vdev_is_dead(vd) && vd->vdev_parent != NULL &&
2585096d22d4SEric Schrock 	    vd->vdev_parent->vdev_ops == &vdev_spare_ops &&
2586096d22d4SEric Schrock 	    vd->vdev_parent->vdev_child[0] == vd)
2587096d22d4SEric Schrock 		vd->vdev_unspare = B_TRUE;
2588fa9e4066Sahrens }
2589fa9e4066Sahrens 
2590e14bb325SJeff Bonwick boolean_t
2591fa9e4066Sahrens vdev_is_dead(vdev_t *vd)
2592fa9e4066Sahrens {
259388ecc943SGeorge Wilson 	/*
259488ecc943SGeorge Wilson 	 * Holes and missing devices are always considered "dead".
259588ecc943SGeorge Wilson 	 * This simplifies the code since we don't have to check for
259688ecc943SGeorge Wilson 	 * these types of devices in the various code paths.
259788ecc943SGeorge Wilson 	 * Instead we rely on the fact that we skip over dead devices
259888ecc943SGeorge Wilson 	 * before issuing I/O to them.
259988ecc943SGeorge Wilson 	 */
260088ecc943SGeorge Wilson 	return (vd->vdev_state < VDEV_STATE_DEGRADED || vd->vdev_ishole ||
260188ecc943SGeorge Wilson 	    vd->vdev_ops == &vdev_missing_ops);
2602fa9e4066Sahrens }
2603fa9e4066Sahrens 
2604e14bb325SJeff Bonwick boolean_t
2605e14bb325SJeff Bonwick vdev_readable(vdev_t *vd)
2606fa9e4066Sahrens {
2607e14bb325SJeff Bonwick 	return (!vdev_is_dead(vd) && !vd->vdev_cant_read);
2608fa9e4066Sahrens }
2609fa9e4066Sahrens 
2610e14bb325SJeff Bonwick boolean_t
2611e14bb325SJeff Bonwick vdev_writeable(vdev_t *vd)
2612e14bb325SJeff Bonwick {
2613e14bb325SJeff Bonwick 	return (!vdev_is_dead(vd) && !vd->vdev_cant_write);
2614e14bb325SJeff Bonwick }
2615e14bb325SJeff Bonwick 
2616e14bb325SJeff Bonwick boolean_t
2617a31e6787SGeorge Wilson vdev_allocatable(vdev_t *vd)
2618a31e6787SGeorge Wilson {
26198ad4d6ddSJeff Bonwick 	uint64_t state = vd->vdev_state;
26208ad4d6ddSJeff Bonwick 
2621a31e6787SGeorge Wilson 	/*
2622a31e6787SGeorge Wilson 	 * We currently allow allocations from vdevs which may be in the
2623a31e6787SGeorge Wilson 	 * process of reopening (i.e. VDEV_STATE_CLOSED). If the device
2624a31e6787SGeorge Wilson 	 * fails to reopen then we'll catch it later when we're holding
26258ad4d6ddSJeff Bonwick 	 * the proper locks.  Note that we have to get the vdev state
26268ad4d6ddSJeff Bonwick 	 * in a local variable because although it changes atomically,
26278ad4d6ddSJeff Bonwick 	 * we're asking two separate questions about it.
2628a31e6787SGeorge Wilson 	 */
26298ad4d6ddSJeff Bonwick 	return (!(state < VDEV_STATE_DEGRADED && state != VDEV_STATE_CLOSED) &&
26303f9d6ad7SLin Ling 	    !vd->vdev_cant_write && !vd->vdev_ishole);
2631a31e6787SGeorge Wilson }
2632a31e6787SGeorge Wilson 
2633a31e6787SGeorge Wilson boolean_t
2634e14bb325SJeff Bonwick vdev_accessible(vdev_t *vd, zio_t *zio)
2635e14bb325SJeff Bonwick {
2636e14bb325SJeff Bonwick 	ASSERT(zio->io_vd == vd);
2637e14bb325SJeff Bonwick 
2638e14bb325SJeff Bonwick 	if (vdev_is_dead(vd) || vd->vdev_remove_wanted)
2639e14bb325SJeff Bonwick 		return (B_FALSE);
2640e14bb325SJeff Bonwick 
2641e14bb325SJeff Bonwick 	if (zio->io_type == ZIO_TYPE_READ)
2642e14bb325SJeff Bonwick 		return (!vd->vdev_cant_read);
2643e14bb325SJeff Bonwick 
2644e14bb325SJeff Bonwick 	if (zio->io_type == ZIO_TYPE_WRITE)
2645e14bb325SJeff Bonwick 		return (!vd->vdev_cant_write);
2646e14bb325SJeff Bonwick 
2647e14bb325SJeff Bonwick 	return (B_TRUE);
2648fa9e4066Sahrens }
2649fa9e4066Sahrens 
2650fa9e4066Sahrens /*
2651fa9e4066Sahrens  * Get statistics for the given vdev.
2652fa9e4066Sahrens  */
2653fa9e4066Sahrens void
2654fa9e4066Sahrens vdev_get_stats(vdev_t *vd, vdev_stat_t *vs)
2655fa9e4066Sahrens {
26562e4c9986SGeorge Wilson 	spa_t *spa = vd->vdev_spa;
26572e4c9986SGeorge Wilson 	vdev_t *rvd = spa->spa_root_vdev;
26582e4c9986SGeorge Wilson 
26592e4c9986SGeorge Wilson 	ASSERT(spa_config_held(spa, SCL_ALL, RW_READER) != 0);
2660fa9e4066Sahrens 
2661fa9e4066Sahrens 	mutex_enter(&vd->vdev_stat_lock);
2662fa9e4066Sahrens 	bcopy(&vd->vdev_stat, vs, sizeof (*vs));
2663fa9e4066Sahrens 	vs->vs_timestamp = gethrtime() - vs->vs_timestamp;
2664fa9e4066Sahrens 	vs->vs_state = vd->vdev_state;
2665573ca77eSGeorge Wilson 	vs->vs_rsize = vdev_get_min_asize(vd);
2666573ca77eSGeorge Wilson 	if (vd->vdev_ops->vdev_op_leaf)
2667573ca77eSGeorge Wilson 		vs->vs_rsize += VDEV_LABEL_START_SIZE + VDEV_LABEL_END_SIZE;
26684263d13fSGeorge Wilson 	vs->vs_esize = vd->vdev_max_asize - vd->vdev_asize;
26692986efa8SAlex Reece 	if (vd->vdev_aux == NULL && vd == vd->vdev_top && !vd->vdev_ishole) {
26702e4c9986SGeorge Wilson 		vs->vs_fragmentation = vd->vdev_mg->mg_fragmentation;
26712986efa8SAlex Reece 	}
2672fa9e4066Sahrens 
2673fa9e4066Sahrens 	/*
2674fa9e4066Sahrens 	 * If we're getting stats on the root vdev, aggregate the I/O counts
2675fa9e4066Sahrens 	 * over all top-level vdevs (i.e. the direct children of the root).
2676fa9e4066Sahrens 	 */
2677fa9e4066Sahrens 	if (vd == rvd) {
2678e14bb325SJeff Bonwick 		for (int c = 0; c < rvd->vdev_children; c++) {
2679fa9e4066Sahrens 			vdev_t *cvd = rvd->vdev_child[c];
2680fa9e4066Sahrens 			vdev_stat_t *cvs = &cvd->vdev_stat;
2681fa9e4066Sahrens 
2682e14bb325SJeff Bonwick 			for (int t = 0; t < ZIO_TYPES; t++) {
2683fa9e4066Sahrens 				vs->vs_ops[t] += cvs->vs_ops[t];
2684fa9e4066Sahrens 				vs->vs_bytes[t] += cvs->vs_bytes[t];
2685fa9e4066Sahrens 			}
26863f9d6ad7SLin Ling 			cvs->vs_scan_removing = cvd->vdev_removing;
26872e4c9986SGeorge Wilson 		}
26882e4c9986SGeorge Wilson 	}
2689fa9e4066Sahrens 	mutex_exit(&vd->vdev_stat_lock);
2690fa9e4066Sahrens }
2691fa9e4066Sahrens 
2692fa9e4066Sahrens void
2693fa94a07fSbrendan vdev_clear_stats(vdev_t *vd)
2694fa94a07fSbrendan {
2695fa94a07fSbrendan 	mutex_enter(&vd->vdev_stat_lock);
2696fa94a07fSbrendan 	vd->vdev_stat.vs_space = 0;
2697fa94a07fSbrendan 	vd->vdev_stat.vs_dspace = 0;
2698fa94a07fSbrendan 	vd->vdev_stat.vs_alloc = 0;
2699fa94a07fSbrendan 	mutex_exit(&vd->vdev_stat_lock);
2700fa94a07fSbrendan }
2701fa94a07fSbrendan 
2702fa94a07fSbrendan void
27033f9d6ad7SLin Ling vdev_scan_stat_init(vdev_t *vd)
27043f9d6ad7SLin Ling {
27053f9d6ad7SLin Ling 	vdev_stat_t *vs = &vd->vdev_stat;
27063f9d6ad7SLin Ling 
27073f9d6ad7SLin Ling 	for (int c = 0; c < vd->vdev_children; c++)
27083f9d6ad7SLin Ling 		vdev_scan_stat_init(vd->vdev_child[c]);
27093f9d6ad7SLin Ling 
27103f9d6ad7SLin Ling 	mutex_enter(&vd->vdev_stat_lock);
27113f9d6ad7SLin Ling 	vs->vs_scan_processed = 0;
27123f9d6ad7SLin Ling 	mutex_exit(&vd->vdev_stat_lock);
27133f9d6ad7SLin Ling }
27143f9d6ad7SLin Ling 
27153f9d6ad7SLin Ling void
2716e14bb325SJeff Bonwick vdev_stat_update(zio_t *zio, uint64_t psize)
2717fa9e4066Sahrens {
27188ad4d6ddSJeff Bonwick 	spa_t *spa = zio->io_spa;
27198ad4d6ddSJeff Bonwick 	vdev_t *rvd = spa->spa_root_vdev;
2720e14bb325SJeff Bonwick 	vdev_t *vd = zio->io_vd ? zio->io_vd : rvd;
2721fa9e4066Sahrens 	vdev_t *pvd;
2722fa9e4066Sahrens 	uint64_t txg = zio->io_txg;
2723fa9e4066Sahrens 	vdev_stat_t *vs = &vd->vdev_stat;
2724fa9e4066Sahrens 	zio_type_t type = zio->io_type;
2725fa9e4066Sahrens 	int flags = zio->io_flags;
2726fa9e4066Sahrens 
2727e14bb325SJeff Bonwick 	/*
2728e14bb325SJeff Bonwick 	 * If this i/o is a gang leader, it didn't do any actual work.
2729e14bb325SJeff Bonwick 	 */
2730e14bb325SJeff Bonwick 	if (zio->io_gang_tree)
2731e14bb325SJeff Bonwick 		return;
2732e14bb325SJeff Bonwick 
2733fa9e4066Sahrens 	if (zio->io_error == 0) {
2734e14bb325SJeff Bonwick 		/*
2735e14bb325SJeff Bonwick 		 * If this is a root i/o, don't count it -- we've already
2736e14bb325SJeff Bonwick 		 * counted the top-level vdevs, and vdev_get_stats() will
2737e14bb325SJeff Bonwick 		 * aggregate them when asked.  This reduces contention on
2738e14bb325SJeff Bonwick 		 * the root vdev_stat_lock and implicitly handles blocks
2739e14bb325SJeff Bonwick 		 * that compress away to holes, for which there is no i/o.
2740e14bb325SJeff Bonwick 		 * (Holes never create vdev children, so all the counters
2741e14bb325SJeff Bonwick 		 * remain zero, which is what we want.)
2742e14bb325SJeff Bonwick 		 *
2743e14bb325SJeff Bonwick 		 * Note: this only applies to successful i/o (io_error == 0)
2744e14bb325SJeff Bonwick 		 * because unlike i/o counts, errors are not additive.
2745e14bb325SJeff Bonwick 		 * When reading a ditto block, for example, failure of
2746e14bb325SJeff Bonwick 		 * one top-level vdev does not imply a root-level error.
2747e14bb325SJeff Bonwick 		 */
2748e14bb325SJeff Bonwick 		if (vd == rvd)
2749e14bb325SJeff Bonwick 			return;
2750e14bb325SJeff Bonwick 
2751e14bb325SJeff Bonwick 		ASSERT(vd == zio->io_vd);
27528ad4d6ddSJeff Bonwick 
27538ad4d6ddSJeff Bonwick 		if (flags & ZIO_FLAG_IO_BYPASS)
27548ad4d6ddSJeff Bonwick 			return;
27558ad4d6ddSJeff Bonwick 
2756fa9e4066Sahrens 		mutex_enter(&vd->vdev_stat_lock);
27578ad4d6ddSJeff Bonwick 
2758e14bb325SJeff Bonwick 		if (flags & ZIO_FLAG_IO_REPAIR) {
275944ecc532SGeorge Wilson 			if (flags & ZIO_FLAG_SCAN_THREAD) {
27603f9d6ad7SLin Ling 				dsl_scan_phys_t *scn_phys =
27613f9d6ad7SLin Ling 				    &spa->spa_dsl_pool->dp_scan->scn_phys;
27623f9d6ad7SLin Ling 				uint64_t *processed = &scn_phys->scn_processed;
27633f9d6ad7SLin Ling 
27643f9d6ad7SLin Ling 				/* XXX cleanup? */
27653f9d6ad7SLin Ling 				if (vd->vdev_ops->vdev_op_leaf)
27663f9d6ad7SLin Ling 					atomic_add_64(processed, psize);
27673f9d6ad7SLin Ling 				vs->vs_scan_processed += psize;
27683f9d6ad7SLin Ling 			}
27693f9d6ad7SLin Ling 
27708ad4d6ddSJeff Bonwick 			if (flags & ZIO_FLAG_SELF_HEAL)
2771e14bb325SJeff Bonwick 				vs->vs_self_healed += psize;
2772fa9e4066Sahrens 		}
27738ad4d6ddSJeff Bonwick 
27748ad4d6ddSJeff Bonwick 		vs->vs_ops[type]++;
27758ad4d6ddSJeff Bonwick 		vs->vs_bytes[type] += psize;
27768ad4d6ddSJeff Bonwick 
27778ad4d6ddSJeff Bonwick 		mutex_exit(&vd->vdev_stat_lock);
2778fa9e4066Sahrens 		return;
2779fa9e4066Sahrens 	}
2780fa9e4066Sahrens 
2781fa9e4066Sahrens 	if (flags & ZIO_FLAG_SPECULATIVE)
2782fa9e4066Sahrens 		return;
2783fa9e4066Sahrens 
27848956713aSEric Schrock 	/*
27858956713aSEric Schrock 	 * If this is an I/O error that is going to be retried, then ignore the
27868956713aSEric Schrock 	 * error.  Otherwise, the user may interpret B_FAILFAST I/O errors as
27878956713aSEric Schrock 	 * hard errors, when in reality they can happen for any number of
27888956713aSEric Schrock 	 * innocuous reasons (bus resets, MPxIO link failure, etc).
27898956713aSEric Schrock 	 */
27908956713aSEric Schrock 	if (zio->io_error == EIO &&
27918956713aSEric Schrock 	    !(zio->io_flags & ZIO_FLAG_IO_RETRY))
27928956713aSEric Schrock 		return;
27938956713aSEric Schrock 
27948f18d1faSGeorge Wilson 	/*
27958f18d1faSGeorge Wilson 	 * Intent logs writes won't propagate their error to the root
27968f18d1faSGeorge Wilson 	 * I/O so don't mark these types of failures as pool-level
27978f18d1faSGeorge Wilson 	 * errors.
27988f18d1faSGeorge Wilson 	 */
27998f18d1faSGeorge Wilson 	if (zio->io_vd == NULL && (zio->io_flags & ZIO_FLAG_DONT_PROPAGATE))
28008f18d1faSGeorge Wilson 		return;
28018f18d1faSGeorge Wilson 
2802fa9e4066Sahrens 	mutex_enter(&vd->vdev_stat_lock);
2803b47119fdSGeorge Wilson 	if (type == ZIO_TYPE_READ && !vdev_is_dead(vd)) {
2804fa9e4066Sahrens 		if (zio->io_error == ECKSUM)
2805fa9e4066Sahrens 			vs->vs_checksum_errors++;
2806fa9e4066Sahrens 		else
2807fa9e4066Sahrens 			vs->vs_read_errors++;
2808fa9e4066Sahrens 	}
2809b47119fdSGeorge Wilson 	if (type == ZIO_TYPE_WRITE && !vdev_is_dead(vd))
2810fa9e4066Sahrens 		vs->vs_write_errors++;
2811fa9e4066Sahrens 	mutex_exit(&vd->vdev_stat_lock);
2812fa9e4066Sahrens 
28138ad4d6ddSJeff Bonwick 	if (type == ZIO_TYPE_WRITE && txg != 0 &&
28148ad4d6ddSJeff Bonwick 	    (!(flags & ZIO_FLAG_IO_REPAIR) ||
281544ecc532SGeorge Wilson 	    (flags & ZIO_FLAG_SCAN_THREAD) ||
2816b24ab676SJeff Bonwick 	    spa->spa_claiming)) {
28178ad4d6ddSJeff Bonwick 		/*
2818b24ab676SJeff Bonwick 		 * This is either a normal write (not a repair), or it's
2819b24ab676SJeff Bonwick 		 * a repair induced by the scrub thread, or it's a repair
2820b24ab676SJeff Bonwick 		 * made by zil_claim() during spa_load() in the first txg.
2821b24ab676SJeff Bonwick 		 * In the normal case, we commit the DTL change in the same
2822b24ab676SJeff Bonwick 		 * txg as the block was born.  In the scrub-induced repair
2823b24ab676SJeff Bonwick 		 * case, we know that scrubs run in first-pass syncing context,
2824b24ab676SJeff Bonwick 		 * so we commit the DTL change in spa_syncing_txg(spa).
2825b24ab676SJeff Bonwick 		 * In the zil_claim() case, we commit in spa_first_txg(spa).
28268ad4d6ddSJeff Bonwick 		 *
28278ad4d6ddSJeff Bonwick 		 * We currently do not make DTL entries for failed spontaneous
28288ad4d6ddSJeff Bonwick 		 * self-healing writes triggered by normal (non-scrubbing)
28298ad4d6ddSJeff Bonwick 		 * reads, because we have no transactional context in which to
28308ad4d6ddSJeff Bonwick 		 * do so -- and it's not clear that it'd be desirable anyway.
28318ad4d6ddSJeff Bonwick 		 */
28328ad4d6ddSJeff Bonwick 		if (vd->vdev_ops->vdev_op_leaf) {
28338ad4d6ddSJeff Bonwick 			uint64_t commit_txg = txg;
283444ecc532SGeorge Wilson 			if (flags & ZIO_FLAG_SCAN_THREAD) {
2835fa9e4066Sahrens 				ASSERT(flags & ZIO_FLAG_IO_REPAIR);
28368ad4d6ddSJeff Bonwick 				ASSERT(spa_sync_pass(spa) == 1);
28378ad4d6ddSJeff Bonwick 				vdev_dtl_dirty(vd, DTL_SCRUB, txg, 1);
2838b24ab676SJeff Bonwick 				commit_txg = spa_syncing_txg(spa);
2839b24ab676SJeff Bonwick 			} else if (spa->spa_claiming) {
2840b24ab676SJeff Bonwick 				ASSERT(flags & ZIO_FLAG_IO_REPAIR);
2841b24ab676SJeff Bonwick 				commit_txg = spa_first_txg(spa);
2842fa9e4066Sahrens 			}
2843b24ab676SJeff Bonwick 			ASSERT(commit_txg >= spa_syncing_txg(spa));
28448ad4d6ddSJeff Bonwick 			if (vdev_dtl_contains(vd, DTL_MISSING, txg, 1))
2845fa9e4066Sahrens 				return;
28468ad4d6ddSJeff Bonwick 			for (pvd = vd; pvd != rvd; pvd = pvd->vdev_parent)
28478ad4d6ddSJeff Bonwick 				vdev_dtl_dirty(pvd, DTL_PARTIAL, txg, 1);
28488ad4d6ddSJeff Bonwick 			vdev_dirty(vd->vdev_top, VDD_DTL, vd, commit_txg);
2849fa9e4066Sahrens 		}
28508ad4d6ddSJeff Bonwick 		if (vd != rvd)
28518ad4d6ddSJeff Bonwick 			vdev_dtl_dirty(vd, DTL_MISSING, txg, 1);
2852fa9e4066Sahrens 	}
2853fa9e4066Sahrens }
2854fa9e4066Sahrens 
2855fa9e4066Sahrens /*
2856b24ab676SJeff Bonwick  * Update the in-core space usage stats for this vdev, its metaslab class,
2857b24ab676SJeff Bonwick  * and the root vdev.
2858fa9e4066Sahrens  */
2859fa9e4066Sahrens void
2860b24ab676SJeff Bonwick vdev_space_update(vdev_t *vd, int64_t alloc_delta, int64_t defer_delta,
2861b24ab676SJeff Bonwick     int64_t space_delta)
2862fa9e4066Sahrens {
286399653d4eSeschrock 	int64_t dspace_delta = space_delta;
28648654d025Sperrin 	spa_t *spa = vd->vdev_spa;
28658654d025Sperrin 	vdev_t *rvd = spa->spa_root_vdev;
2866b24ab676SJeff Bonwick 	metaslab_group_t *mg = vd->vdev_mg;
2867b24ab676SJeff Bonwick 	metaslab_class_t *mc = mg ? mg->mg_class : NULL;
2868fa9e4066Sahrens 
28698654d025Sperrin 	ASSERT(vd == vd->vdev_top);
28708654d025Sperrin 
287199653d4eSeschrock 	/*
28728654d025Sperrin 	 * Apply the inverse of the psize-to-asize (ie. RAID-Z) space-expansion
28738654d025Sperrin 	 * factor.  We must calculate this here and not at the root vdev
28748654d025Sperrin 	 * because the root vdev's psize-to-asize is simply the max of its
28758654d025Sperrin 	 * childrens', thus not accurate enough for us.
287699653d4eSeschrock 	 */
287799653d4eSeschrock 	ASSERT((dspace_delta & (SPA_MINBLOCKSIZE-1)) == 0);
2878e6ca193dSGeorge Wilson 	ASSERT(vd->vdev_deflate_ratio != 0 || vd->vdev_isl2cache);
287999653d4eSeschrock 	dspace_delta = (dspace_delta >> SPA_MINBLOCKSHIFT) *
288099653d4eSeschrock 	    vd->vdev_deflate_ratio;
288199653d4eSeschrock 
2882fa9e4066Sahrens 	mutex_enter(&vd->vdev_stat_lock);
2883fa9e4066Sahrens 	vd->vdev_stat.vs_alloc += alloc_delta;
2884b24ab676SJeff Bonwick 	vd->vdev_stat.vs_space += space_delta;
288599653d4eSeschrock 	vd->vdev_stat.vs_dspace += dspace_delta;
2886fa9e4066Sahrens 	mutex_exit(&vd->vdev_stat_lock);
28878654d025Sperrin 
2888b24ab676SJeff Bonwick 	if (mc == spa_normal_class(spa)) {
2889b24ab676SJeff Bonwick 		mutex_enter(&rvd->vdev_stat_lock);
2890b24ab676SJeff Bonwick 		rvd->vdev_stat.vs_alloc += alloc_delta;
2891b24ab676SJeff Bonwick 		rvd->vdev_stat.vs_space += space_delta;
2892b24ab676SJeff Bonwick 		rvd->vdev_stat.vs_dspace += dspace_delta;
2893b24ab676SJeff Bonwick 		mutex_exit(&rvd->vdev_stat_lock);
2894b24ab676SJeff Bonwick 	}
2895b24ab676SJeff Bonwick 
2896b24ab676SJeff Bonwick 	if (mc != NULL) {
2897fa94a07fSbrendan 		ASSERT(rvd == vd->vdev_parent);
2898fa94a07fSbrendan 		ASSERT(vd->vdev_ms_count != 0);
2899fa94a07fSbrendan 
2900b24ab676SJeff Bonwick 		metaslab_class_space_update(mc,
2901b24ab676SJeff Bonwick 		    alloc_delta, defer_delta, space_delta, dspace_delta);
2902fa9e4066Sahrens 	}
2903fa94a07fSbrendan }
2904fa9e4066Sahrens 
2905fa9e4066Sahrens /*
2906fa9e4066Sahrens  * Mark a top-level vdev's config as dirty, placing it on the dirty list
2907fa9e4066Sahrens  * so that it will be written out next time the vdev configuration is synced.
2908fa9e4066Sahrens  * If the root vdev is specified (vdev_top == NULL), dirty all top-level vdevs.
2909fa9e4066Sahrens  */
2910fa9e4066Sahrens void
2911fa9e4066Sahrens vdev_config_dirty(vdev_t *vd)
2912fa9e4066Sahrens {
2913fa9e4066Sahrens 	spa_t *spa = vd->vdev_spa;
2914fa9e4066Sahrens 	vdev_t *rvd = spa->spa_root_vdev;
2915fa9e4066Sahrens 	int c;
2916fa9e4066Sahrens 
2917f9af39baSGeorge Wilson 	ASSERT(spa_writeable(spa));
2918f9af39baSGeorge Wilson 
29195dabedeeSbonwick 	/*
29206809eb4eSEric Schrock 	 * If this is an aux vdev (as with l2cache and spare devices), then we
29216809eb4eSEric Schrock 	 * update the vdev config manually and set the sync flag.
2922c5904d13Seschrock 	 */
2923c5904d13Seschrock 	if (vd->vdev_aux != NULL) {
2924c5904d13Seschrock 		spa_aux_vdev_t *sav = vd->vdev_aux;
2925c5904d13Seschrock 		nvlist_t **aux;
2926c5904d13Seschrock 		uint_t naux;
2927c5904d13Seschrock 
2928c5904d13Seschrock 		for (c = 0; c < sav->sav_count; c++) {
2929c5904d13Seschrock 			if (sav->sav_vdevs[c] == vd)
2930c5904d13Seschrock 				break;
2931c5904d13Seschrock 		}
2932c5904d13Seschrock 
2933e14bb325SJeff Bonwick 		if (c == sav->sav_count) {
2934e14bb325SJeff Bonwick 			/*
2935e14bb325SJeff Bonwick 			 * We're being removed.  There's nothing more to do.
2936e14bb325SJeff Bonwick 			 */
2937e14bb325SJeff Bonwick 			ASSERT(sav->sav_sync == B_TRUE);
2938e14bb325SJeff Bonwick 			return;
2939e14bb325SJeff Bonwick 		}
2940e14bb325SJeff Bonwick 
2941c5904d13Seschrock 		sav->sav_sync = B_TRUE;
2942c5904d13Seschrock 
29436809eb4eSEric Schrock 		if (nvlist_lookup_nvlist_array(sav->sav_config,
29446809eb4eSEric Schrock 		    ZPOOL_CONFIG_L2CACHE, &aux, &naux) != 0) {
2945c5904d13Seschrock 			VERIFY(nvlist_lookup_nvlist_array(sav->sav_config,
29466809eb4eSEric Schrock 			    ZPOOL_CONFIG_SPARES, &aux, &naux) == 0);
29476809eb4eSEric Schrock 		}
2948c5904d13Seschrock 
2949c5904d13Seschrock 		ASSERT(c < naux);
2950c5904d13Seschrock 
2951c5904d13Seschrock 		/*
2952c5904d13Seschrock 		 * Setting the nvlist in the middle if the array is a little
2953c5904d13Seschrock 		 * sketchy, but it will work.
2954c5904d13Seschrock 		 */
2955c5904d13Seschrock 		nvlist_free(aux[c]);
29563f9d6ad7SLin Ling 		aux[c] = vdev_config_generate(spa, vd, B_TRUE, 0);
2957c5904d13Seschrock 
2958c5904d13Seschrock 		return;
2959c5904d13Seschrock 	}
2960c5904d13Seschrock 
2961c5904d13Seschrock 	/*
2962e14bb325SJeff Bonwick 	 * The dirty list is protected by the SCL_CONFIG lock.  The caller
2963e14bb325SJeff Bonwick 	 * must either hold SCL_CONFIG as writer, or must be the sync thread
2964e14bb325SJeff Bonwick 	 * (which holds SCL_CONFIG as reader).  There's only one sync thread,
29655dabedeeSbonwick 	 * so this is sufficient to ensure mutual exclusion.
29665dabedeeSbonwick 	 */
2967e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_CONFIG, RW_WRITER) ||
2968e14bb325SJeff Bonwick 	    (dsl_pool_sync_context(spa_get_dsl(spa)) &&
2969e14bb325SJeff Bonwick 	    spa_config_held(spa, SCL_CONFIG, RW_READER)));
29705dabedeeSbonwick 
2971fa9e4066Sahrens 	if (vd == rvd) {
2972fa9e4066Sahrens 		for (c = 0; c < rvd->vdev_children; c++)
2973fa9e4066Sahrens 			vdev_config_dirty(rvd->vdev_child[c]);
2974fa9e4066Sahrens 	} else {
2975fa9e4066Sahrens 		ASSERT(vd == vd->vdev_top);
2976fa9e4066Sahrens 
297788ecc943SGeorge Wilson 		if (!list_link_active(&vd->vdev_config_dirty_node) &&
297888ecc943SGeorge Wilson 		    !vd->vdev_ishole)
2979e14bb325SJeff Bonwick 			list_insert_head(&spa->spa_config_dirty_list, vd);
2980fa9e4066Sahrens 	}
2981fa9e4066Sahrens }
2982fa9e4066Sahrens 
2983fa9e4066Sahrens void
2984fa9e4066Sahrens vdev_config_clean(vdev_t *vd)
2985fa9e4066Sahrens {
29865dabedeeSbonwick 	spa_t *spa = vd->vdev_spa;
29875dabedeeSbonwick 
2988e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_CONFIG, RW_WRITER) ||
2989e14bb325SJeff Bonwick 	    (dsl_pool_sync_context(spa_get_dsl(spa)) &&
2990e14bb325SJeff Bonwick 	    spa_config_held(spa, SCL_CONFIG, RW_READER)));
29915dabedeeSbonwick 
2992e14bb325SJeff Bonwick 	ASSERT(list_link_active(&vd->vdev_config_dirty_node));
2993e14bb325SJeff Bonwick 	list_remove(&spa->spa_config_dirty_list, vd);
2994e14bb325SJeff Bonwick }
2995e14bb325SJeff Bonwick 
2996e14bb325SJeff Bonwick /*
2997e14bb325SJeff Bonwick  * Mark a top-level vdev's state as dirty, so that the next pass of
2998e14bb325SJeff Bonwick  * spa_sync() can convert this into vdev_config_dirty().  We distinguish
2999e14bb325SJeff Bonwick  * the state changes from larger config changes because they require
3000e14bb325SJeff Bonwick  * much less locking, and are often needed for administrative actions.
3001e14bb325SJeff Bonwick  */
3002e14bb325SJeff Bonwick void
3003e14bb325SJeff Bonwick vdev_state_dirty(vdev_t *vd)
3004e14bb325SJeff Bonwick {
3005e14bb325SJeff Bonwick 	spa_t *spa = vd->vdev_spa;
3006e14bb325SJeff Bonwick 
3007f9af39baSGeorge Wilson 	ASSERT(spa_writeable(spa));
3008e14bb325SJeff Bonwick 	ASSERT(vd == vd->vdev_top);
3009e14bb325SJeff Bonwick 
3010e14bb325SJeff Bonwick 	/*
3011e14bb325SJeff Bonwick 	 * The state list is protected by the SCL_STATE lock.  The caller
3012e14bb325SJeff Bonwick 	 * must either hold SCL_STATE as writer, or must be the sync thread
3013e14bb325SJeff Bonwick 	 * (which holds SCL_STATE as reader).  There's only one sync thread,
3014e14bb325SJeff Bonwick 	 * so this is sufficient to ensure mutual exclusion.
3015e14bb325SJeff Bonwick 	 */
3016e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_STATE, RW_WRITER) ||
3017e14bb325SJeff Bonwick 	    (dsl_pool_sync_context(spa_get_dsl(spa)) &&
3018e14bb325SJeff Bonwick 	    spa_config_held(spa, SCL_STATE, RW_READER)));
3019e14bb325SJeff Bonwick 
3020b24ab676SJeff Bonwick 	if (!list_link_active(&vd->vdev_state_dirty_node) && !vd->vdev_ishole)
3021e14bb325SJeff Bonwick 		list_insert_head(&spa->spa_state_dirty_list, vd);
3022e14bb325SJeff Bonwick }
3023e14bb325SJeff Bonwick 
3024e14bb325SJeff Bonwick void
3025e14bb325SJeff Bonwick vdev_state_clean(vdev_t *vd)
3026e14bb325SJeff Bonwick {
3027e14bb325SJeff Bonwick 	spa_t *spa = vd->vdev_spa;
3028e14bb325SJeff Bonwick 
3029e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_STATE, RW_WRITER) ||
3030e14bb325SJeff Bonwick 	    (dsl_pool_sync_context(spa_get_dsl(spa)) &&
3031e14bb325SJeff Bonwick 	    spa_config_held(spa, SCL_STATE, RW_READER)));
3032e14bb325SJeff Bonwick 
3033e14bb325SJeff Bonwick 	ASSERT(list_link_active(&vd->vdev_state_dirty_node));
3034e14bb325SJeff Bonwick 	list_remove(&spa->spa_state_dirty_list, vd);
3035fa9e4066Sahrens }
3036fa9e4066Sahrens 
303732b87932Sek110237 /*
303832b87932Sek110237  * Propagate vdev state up from children to parent.
303932b87932Sek110237  */
304044cd46caSbillm void
304144cd46caSbillm vdev_propagate_state(vdev_t *vd)
304244cd46caSbillm {
30438ad4d6ddSJeff Bonwick 	spa_t *spa = vd->vdev_spa;
30448ad4d6ddSJeff Bonwick 	vdev_t *rvd = spa->spa_root_vdev;
304544cd46caSbillm 	int degraded = 0, faulted = 0;
304644cd46caSbillm 	int corrupted = 0;
304744cd46caSbillm 	vdev_t *child;
304844cd46caSbillm 
30493d7072f8Seschrock 	if (vd->vdev_children > 0) {
3050573ca77eSGeorge Wilson 		for (int c = 0; c < vd->vdev_children; c++) {
305144cd46caSbillm 			child = vd->vdev_child[c];
305251ece835Seschrock 
305388ecc943SGeorge Wilson 			/*
305488ecc943SGeorge Wilson 			 * Don't factor holes into the decision.
305588ecc943SGeorge Wilson 			 */
305688ecc943SGeorge Wilson 			if (child->vdev_ishole)
305788ecc943SGeorge Wilson 				continue;
305888ecc943SGeorge Wilson 
3059e14bb325SJeff Bonwick 			if (!vdev_readable(child) ||
30608ad4d6ddSJeff Bonwick 			    (!vdev_writeable(child) && spa_writeable(spa))) {
306151ece835Seschrock 				/*
306251ece835Seschrock 				 * Root special: if there is a top-level log
306351ece835Seschrock 				 * device, treat the root vdev as if it were
306451ece835Seschrock 				 * degraded.
306551ece835Seschrock 				 */
306651ece835Seschrock 				if (child->vdev_islog && vd == rvd)
306744cd46caSbillm 					degraded++;
306851ece835Seschrock 				else
306951ece835Seschrock 					faulted++;
307051ece835Seschrock 			} else if (child->vdev_state <= VDEV_STATE_DEGRADED) {
307151ece835Seschrock 				degraded++;
307251ece835Seschrock 			}
307344cd46caSbillm 
307444cd46caSbillm 			if (child->vdev_stat.vs_aux == VDEV_AUX_CORRUPT_DATA)
307544cd46caSbillm 				corrupted++;
307644cd46caSbillm 		}
307744cd46caSbillm 
307844cd46caSbillm 		vd->vdev_ops->vdev_op_state_change(vd, faulted, degraded);
307944cd46caSbillm 
308044cd46caSbillm 		/*
3081e14bb325SJeff Bonwick 		 * Root special: if there is a top-level vdev that cannot be
308244cd46caSbillm 		 * opened due to corrupted metadata, then propagate the root
308344cd46caSbillm 		 * vdev's aux state as 'corrupt' rather than 'insufficient
308444cd46caSbillm 		 * replicas'.
308544cd46caSbillm 		 */
30863d7072f8Seschrock 		if (corrupted && vd == rvd &&
30873d7072f8Seschrock 		    rvd->vdev_state == VDEV_STATE_CANT_OPEN)
308844cd46caSbillm 			vdev_set_state(rvd, B_FALSE, VDEV_STATE_CANT_OPEN,
308944cd46caSbillm 			    VDEV_AUX_CORRUPT_DATA);
309044cd46caSbillm 	}
309144cd46caSbillm 
309251ece835Seschrock 	if (vd->vdev_parent)
30933d7072f8Seschrock 		vdev_propagate_state(vd->vdev_parent);
30943d7072f8Seschrock }
30953d7072f8Seschrock 
3096fa9e4066Sahrens /*
3097ea8dc4b6Seschrock  * Set a vdev's state.  If this is during an open, we don't update the parent
3098ea8dc4b6Seschrock  * state, because we're in the process of opening children depth-first.
3099ea8dc4b6Seschrock  * Otherwise, we propagate the change to the parent.
3100ea8dc4b6Seschrock  *
3101ea8dc4b6Seschrock  * If this routine places a device in a faulted state, an appropriate ereport is
3102ea8dc4b6Seschrock  * generated.
3103fa9e4066Sahrens  */
3104fa9e4066Sahrens void
3105ea8dc4b6Seschrock vdev_set_state(vdev_t *vd, boolean_t isopen, vdev_state_t state, vdev_aux_t aux)
3106fa9e4066Sahrens {
3107560e6e96Seschrock 	uint64_t save_state;
3108c5904d13Seschrock 	spa_t *spa = vd->vdev_spa;
3109ea8dc4b6Seschrock 
3110ea8dc4b6Seschrock 	if (state == vd->vdev_state) {
3111ea8dc4b6Seschrock 		vd->vdev_stat.vs_aux = aux;
3112fa9e4066Sahrens 		return;
3113ea8dc4b6Seschrock 	}
3114ea8dc4b6Seschrock 
3115560e6e96Seschrock 	save_state = vd->vdev_state;
3116fa9e4066Sahrens 
3117fa9e4066Sahrens 	vd->vdev_state = state;
3118fa9e4066Sahrens 	vd->vdev_stat.vs_aux = aux;
3119fa9e4066Sahrens 
31203d7072f8Seschrock 	/*
31213d7072f8Seschrock 	 * If we are setting the vdev state to anything but an open state, then
312298d1cbfeSGeorge Wilson 	 * always close the underlying device unless the device has requested
312398d1cbfeSGeorge Wilson 	 * a delayed close (i.e. we're about to remove or fault the device).
312498d1cbfeSGeorge Wilson 	 * Otherwise, we keep accessible but invalid devices open forever.
312598d1cbfeSGeorge Wilson 	 * We don't call vdev_close() itself, because that implies some extra
312698d1cbfeSGeorge Wilson 	 * checks (offline, etc) that we don't want here.  This is limited to
312798d1cbfeSGeorge Wilson 	 * leaf devices, because otherwise closing the device will affect other
312898d1cbfeSGeorge Wilson 	 * children.
31293d7072f8Seschrock 	 */
313098d1cbfeSGeorge Wilson 	if (!vd->vdev_delayed_close && vdev_is_dead(vd) &&
313198d1cbfeSGeorge Wilson 	    vd->vdev_ops->vdev_op_leaf)
31323d7072f8Seschrock 		vd->vdev_ops->vdev_op_close(vd);
31333d7072f8Seschrock 
3134069f55e2SEric Schrock 	/*
3135069f55e2SEric Schrock 	 * If we have brought this vdev back into service, we need
3136069f55e2SEric Schrock 	 * to notify fmd so that it can gracefully repair any outstanding
3137069f55e2SEric Schrock 	 * cases due to a missing device.  We do this in all cases, even those
3138069f55e2SEric Schrock 	 * that probably don't correlate to a repaired fault.  This is sure to
3139069f55e2SEric Schrock 	 * catch all cases, and we let the zfs-retire agent sort it out.  If
3140069f55e2SEric Schrock 	 * this is a transient state it's OK, as the retire agent will
3141069f55e2SEric Schrock 	 * double-check the state of the vdev before repairing it.
3142069f55e2SEric Schrock 	 */
3143069f55e2SEric Schrock 	if (state == VDEV_STATE_HEALTHY && vd->vdev_ops->vdev_op_leaf &&
3144069f55e2SEric Schrock 	    vd->vdev_prevstate != state)
3145069f55e2SEric Schrock 		zfs_post_state_change(spa, vd);
3146069f55e2SEric Schrock 
31473d7072f8Seschrock 	if (vd->vdev_removed &&
31483d7072f8Seschrock 	    state == VDEV_STATE_CANT_OPEN &&
31493d7072f8Seschrock 	    (aux == VDEV_AUX_OPEN_FAILED || vd->vdev_checkremove)) {
31503d7072f8Seschrock 		/*
31513d7072f8Seschrock 		 * If the previous state is set to VDEV_STATE_REMOVED, then this
31523d7072f8Seschrock 		 * device was previously marked removed and someone attempted to
31533d7072f8Seschrock 		 * reopen it.  If this failed due to a nonexistent device, then
31543d7072f8Seschrock 		 * keep the device in the REMOVED state.  We also let this be if
31553d7072f8Seschrock 		 * it is one of our special test online cases, which is only
31563d7072f8Seschrock 		 * attempting to online the device and shouldn't generate an FMA
31573d7072f8Seschrock 		 * fault.
31583d7072f8Seschrock 		 */
31593d7072f8Seschrock 		vd->vdev_state = VDEV_STATE_REMOVED;
31603d7072f8Seschrock 		vd->vdev_stat.vs_aux = VDEV_AUX_NONE;
31613d7072f8Seschrock 	} else if (state == VDEV_STATE_REMOVED) {
31623d7072f8Seschrock 		vd->vdev_removed = B_TRUE;
31633d7072f8Seschrock 	} else if (state == VDEV_STATE_CANT_OPEN) {
3164ea8dc4b6Seschrock 		/*
3165cb04b873SMark J Musante 		 * If we fail to open a vdev during an import or recovery, we
3166cb04b873SMark J Musante 		 * mark it as "not available", which signifies that it was
3167cb04b873SMark J Musante 		 * never there to begin with.  Failure to open such a device
3168cb04b873SMark J Musante 		 * is not considered an error.
3169ea8dc4b6Seschrock 		 */
3170cb04b873SMark J Musante 		if ((spa_load_state(spa) == SPA_LOAD_IMPORT ||
3171cb04b873SMark J Musante 		    spa_load_state(spa) == SPA_LOAD_RECOVER) &&
3172560e6e96Seschrock 		    vd->vdev_ops->vdev_op_leaf)
3173560e6e96Seschrock 			vd->vdev_not_present = 1;
3174560e6e96Seschrock 
3175560e6e96Seschrock 		/*
3176560e6e96Seschrock 		 * Post the appropriate ereport.  If the 'prevstate' field is
3177560e6e96Seschrock 		 * set to something other than VDEV_STATE_UNKNOWN, it indicates
3178560e6e96Seschrock 		 * that this is part of a vdev_reopen().  In this case, we don't
3179560e6e96Seschrock 		 * want to post the ereport if the device was already in the
3180560e6e96Seschrock 		 * CANT_OPEN state beforehand.
31813d7072f8Seschrock 		 *
31823d7072f8Seschrock 		 * If the 'checkremove' flag is set, then this is an attempt to
31833d7072f8Seschrock 		 * online the device in response to an insertion event.  If we
31843d7072f8Seschrock 		 * hit this case, then we have detected an insertion event for a
31853d7072f8Seschrock 		 * faulted or offline device that wasn't in the removed state.
31863d7072f8Seschrock 		 * In this scenario, we don't post an ereport because we are
31873d7072f8Seschrock 		 * about to replace the device, or attempt an online with
31883d7072f8Seschrock 		 * vdev_forcefault, which will generate the fault for us.
3189560e6e96Seschrock 		 */
31903d7072f8Seschrock 		if ((vd->vdev_prevstate != state || vd->vdev_forcefault) &&
31913d7072f8Seschrock 		    !vd->vdev_not_present && !vd->vdev_checkremove &&
3192c5904d13Seschrock 		    vd != spa->spa_root_vdev) {
3193ea8dc4b6Seschrock 			const char *class;
3194ea8dc4b6Seschrock 
3195ea8dc4b6Seschrock 			switch (aux) {
3196ea8dc4b6Seschrock 			case VDEV_AUX_OPEN_FAILED:
3197ea8dc4b6Seschrock 				class = FM_EREPORT_ZFS_DEVICE_OPEN_FAILED;
3198ea8dc4b6Seschrock 				break;
3199ea8dc4b6Seschrock 			case VDEV_AUX_CORRUPT_DATA:
3200ea8dc4b6Seschrock 				class = FM_EREPORT_ZFS_DEVICE_CORRUPT_DATA;
3201ea8dc4b6Seschrock 				break;
3202ea8dc4b6Seschrock 			case VDEV_AUX_NO_REPLICAS:
3203ea8dc4b6Seschrock 				class = FM_EREPORT_ZFS_DEVICE_NO_REPLICAS;
3204ea8dc4b6Seschrock 				break;
3205ea8dc4b6Seschrock 			case VDEV_AUX_BAD_GUID_SUM:
3206ea8dc4b6Seschrock 				class = FM_EREPORT_ZFS_DEVICE_BAD_GUID_SUM;
3207ea8dc4b6Seschrock 				break;
3208ea8dc4b6Seschrock 			case VDEV_AUX_TOO_SMALL:
3209ea8dc4b6Seschrock 				class = FM_EREPORT_ZFS_DEVICE_TOO_SMALL;
3210ea8dc4b6Seschrock 				break;
3211ea8dc4b6Seschrock 			case VDEV_AUX_BAD_LABEL:
3212ea8dc4b6Seschrock 				class = FM_EREPORT_ZFS_DEVICE_BAD_LABEL;
3213ea8dc4b6Seschrock 				break;
3214ea8dc4b6Seschrock 			default:
3215ea8dc4b6Seschrock 				class = FM_EREPORT_ZFS_DEVICE_UNKNOWN;
3216ea8dc4b6Seschrock 			}
3217ea8dc4b6Seschrock 
3218c5904d13Seschrock 			zfs_ereport_post(class, spa, vd, NULL, save_state, 0);
3219ea8dc4b6Seschrock 		}
32203d7072f8Seschrock 
32213d7072f8Seschrock 		/* Erase any notion of persistent removed state */
32223d7072f8Seschrock 		vd->vdev_removed = B_FALSE;
32233d7072f8Seschrock 	} else {
32243d7072f8Seschrock 		vd->vdev_removed = B_FALSE;
3225ea8dc4b6Seschrock 	}
3226ea8dc4b6Seschrock 
32278b33d774STim Haley 	if (!isopen && vd->vdev_parent)
32288b33d774STim Haley 		vdev_propagate_state(vd->vdev_parent);
3229fa9e4066Sahrens }
323015e6edf1Sgw25295 
323115e6edf1Sgw25295 /*
323215e6edf1Sgw25295  * Check the vdev configuration to ensure that it's capable of supporting
32339b6cddcfSToomas Soome  * a root pool. We do not support partial configuration.
32349b6cddcfSToomas Soome  * In addition, only a single top-level vdev is allowed.
323515e6edf1Sgw25295  */
323615e6edf1Sgw25295 boolean_t
323715e6edf1Sgw25295 vdev_is_bootable(vdev_t *vd)
323815e6edf1Sgw25295 {
323915e6edf1Sgw25295 	if (!vd->vdev_ops->vdev_op_leaf) {
324015e6edf1Sgw25295 		char *vdev_type = vd->vdev_ops->vdev_op_type;
324115e6edf1Sgw25295 
324215e6edf1Sgw25295 		if (strcmp(vdev_type, VDEV_TYPE_ROOT) == 0 &&
324315e6edf1Sgw25295 		    vd->vdev_children > 1) {
324415e6edf1Sgw25295 			return (B_FALSE);
32459b6cddcfSToomas Soome 		} else if (strcmp(vdev_type, VDEV_TYPE_MISSING) == 0) {
324615e6edf1Sgw25295 			return (B_FALSE);
324715e6edf1Sgw25295 		}
324815e6edf1Sgw25295 	}
324915e6edf1Sgw25295 
3250573ca77eSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++) {
325115e6edf1Sgw25295 		if (!vdev_is_bootable(vd->vdev_child[c]))
325215e6edf1Sgw25295 			return (B_FALSE);
325315e6edf1Sgw25295 	}
325415e6edf1Sgw25295 	return (B_TRUE);
325515e6edf1Sgw25295 }
3256e6ca193dSGeorge Wilson 
325788ecc943SGeorge Wilson /*
325888ecc943SGeorge Wilson  * Load the state from the original vdev tree (ovd) which
325988ecc943SGeorge Wilson  * we've retrieved from the MOS config object. If the original
32604b964adaSGeorge Wilson  * vdev was offline or faulted then we transfer that state to the
32614b964adaSGeorge Wilson  * device in the current vdev tree (nvd).
326288ecc943SGeorge Wilson  */
3263e6ca193dSGeorge Wilson void
326488ecc943SGeorge Wilson vdev_load_log_state(vdev_t *nvd, vdev_t *ovd)
3265e6ca193dSGeorge Wilson {
326688ecc943SGeorge Wilson 	spa_t *spa = nvd->vdev_spa;
3267e6ca193dSGeorge Wilson 
32684b964adaSGeorge Wilson 	ASSERT(nvd->vdev_top->vdev_islog);
326988ecc943SGeorge Wilson 	ASSERT(spa_config_held(spa, SCL_STATE_ALL, RW_WRITER) == SCL_STATE_ALL);
327088ecc943SGeorge Wilson 	ASSERT3U(nvd->vdev_guid, ==, ovd->vdev_guid);
3271e6ca193dSGeorge Wilson 
327288ecc943SGeorge Wilson 	for (int c = 0; c < nvd->vdev_children; c++)
327388ecc943SGeorge Wilson 		vdev_load_log_state(nvd->vdev_child[c], ovd->vdev_child[c]);
3274e6ca193dSGeorge Wilson 
32754b964adaSGeorge Wilson 	if (nvd->vdev_ops->vdev_op_leaf) {
3276e6ca193dSGeorge Wilson 		/*
32774b964adaSGeorge Wilson 		 * Restore the persistent vdev state
3278e6ca193dSGeorge Wilson 		 */
327988ecc943SGeorge Wilson 		nvd->vdev_offline = ovd->vdev_offline;
32804b964adaSGeorge Wilson 		nvd->vdev_faulted = ovd->vdev_faulted;
32814b964adaSGeorge Wilson 		nvd->vdev_degraded = ovd->vdev_degraded;
32824b964adaSGeorge Wilson 		nvd->vdev_removed = ovd->vdev_removed;
3283e6ca193dSGeorge Wilson 	}
3284e6ca193dSGeorge Wilson }
3285573ca77eSGeorge Wilson 
3286573ca77eSGeorge Wilson /*
32874b964adaSGeorge Wilson  * Determine if a log device has valid content.  If the vdev was
32884b964adaSGeorge Wilson  * removed or faulted in the MOS config then we know that
32894b964adaSGeorge Wilson  * the content on the log device has already been written to the pool.
32904b964adaSGeorge Wilson  */
32914b964adaSGeorge Wilson boolean_t
32924b964adaSGeorge Wilson vdev_log_state_valid(vdev_t *vd)
32934b964adaSGeorge Wilson {
32944b964adaSGeorge Wilson 	if (vd->vdev_ops->vdev_op_leaf && !vd->vdev_faulted &&
32954b964adaSGeorge Wilson 	    !vd->vdev_removed)
32964b964adaSGeorge Wilson 		return (B_TRUE);
32974b964adaSGeorge Wilson 
32984b964adaSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++)
32994b964adaSGeorge Wilson 		if (vdev_log_state_valid(vd->vdev_child[c]))
33004b964adaSGeorge Wilson 			return (B_TRUE);
33014b964adaSGeorge Wilson 
33024b964adaSGeorge Wilson 	return (B_FALSE);
33034b964adaSGeorge Wilson }
33044b964adaSGeorge Wilson 
33054b964adaSGeorge Wilson /*
3306573ca77eSGeorge Wilson  * Expand a vdev if possible.
3307573ca77eSGeorge Wilson  */
3308573ca77eSGeorge Wilson void
3309573ca77eSGeorge Wilson vdev_expand(vdev_t *vd, uint64_t txg)
3310573ca77eSGeorge Wilson {
3311573ca77eSGeorge Wilson 	ASSERT(vd->vdev_top == vd);
3312573ca77eSGeorge Wilson 	ASSERT(spa_config_held(vd->vdev_spa, SCL_ALL, RW_WRITER) == SCL_ALL);
3313573ca77eSGeorge Wilson 
3314573ca77eSGeorge Wilson 	if ((vd->vdev_asize >> vd->vdev_ms_shift) > vd->vdev_ms_count) {
3315573ca77eSGeorge Wilson 		VERIFY(vdev_metaslab_init(vd, txg) == 0);
3316573ca77eSGeorge Wilson 		vdev_config_dirty(vd);
3317573ca77eSGeorge Wilson 	}
3318573ca77eSGeorge Wilson }
33191195e687SMark J Musante 
33201195e687SMark J Musante /*
33211195e687SMark J Musante  * Split a vdev.
33221195e687SMark J Musante  */
33231195e687SMark J Musante void
33241195e687SMark J Musante vdev_split(vdev_t *vd)
33251195e687SMark J Musante {
33261195e687SMark J Musante 	vdev_t *cvd, *pvd = vd->vdev_parent;
33271195e687SMark J Musante 
33281195e687SMark J Musante 	vdev_remove_child(pvd, vd);
33291195e687SMark J Musante 	vdev_compact_children(pvd);
33301195e687SMark J Musante 
33311195e687SMark J Musante 	cvd = pvd->vdev_child[0];
33321195e687SMark J Musante 	if (pvd->vdev_children == 1) {
33331195e687SMark J Musante 		vdev_remove_parent(cvd);
33341195e687SMark J Musante 		cvd->vdev_splitting = B_TRUE;
33351195e687SMark J Musante 	}
33361195e687SMark J Musante 	vdev_propagate_state(cvd);
33371195e687SMark J Musante }
3338283b8460SGeorge.Wilson 
3339283b8460SGeorge.Wilson void
3340283b8460SGeorge.Wilson vdev_deadman(vdev_t *vd)
3341283b8460SGeorge.Wilson {
3342283b8460SGeorge.Wilson 	for (int c = 0; c < vd->vdev_children; c++) {
3343283b8460SGeorge.Wilson 		vdev_t *cvd = vd->vdev_child[c];
3344283b8460SGeorge.Wilson 
3345283b8460SGeorge.Wilson 		vdev_deadman(cvd);
3346283b8460SGeorge.Wilson 	}
3347283b8460SGeorge.Wilson 
3348283b8460SGeorge.Wilson 	if (vd->vdev_ops->vdev_op_leaf) {
3349283b8460SGeorge.Wilson 		vdev_queue_t *vq = &vd->vdev_queue;
3350283b8460SGeorge.Wilson 
3351283b8460SGeorge.Wilson 		mutex_enter(&vq->vq_lock);
335269962b56SMatthew Ahrens 		if (avl_numnodes(&vq->vq_active_tree) > 0) {
3353283b8460SGeorge.Wilson 			spa_t *spa = vd->vdev_spa;
3354283b8460SGeorge.Wilson 			zio_t *fio;
3355283b8460SGeorge.Wilson 			uint64_t delta;
3356283b8460SGeorge.Wilson 
3357283b8460SGeorge.Wilson 			/*
3358283b8460SGeorge.Wilson 			 * Look at the head of all the pending queues,
3359283b8460SGeorge.Wilson 			 * if any I/O has been outstanding for longer than
3360283b8460SGeorge.Wilson 			 * the spa_deadman_synctime we panic the system.
3361283b8460SGeorge.Wilson 			 */
336269962b56SMatthew Ahrens 			fio = avl_first(&vq->vq_active_tree);
3363c55e05cbSMatthew Ahrens 			delta = gethrtime() - fio->io_timestamp;
3364c55e05cbSMatthew Ahrens 			if (delta > spa_deadman_synctime(spa)) {
3365c55e05cbSMatthew Ahrens 				zfs_dbgmsg("SLOW IO: zio timestamp %lluns, "
3366c55e05cbSMatthew Ahrens 				    "delta %lluns, last io %lluns",
3367283b8460SGeorge.Wilson 				    fio->io_timestamp, delta,
3368283b8460SGeorge.Wilson 				    vq->vq_io_complete_ts);
3369283b8460SGeorge.Wilson 				fm_panic("I/O to pool '%s' appears to be "
3370283b8460SGeorge.Wilson 				    "hung.", spa_name(spa));
3371283b8460SGeorge.Wilson 			}
3372283b8460SGeorge.Wilson 		}
3373283b8460SGeorge.Wilson 		mutex_exit(&vq->vq_lock);
3374283b8460SGeorge.Wilson 	}
3375283b8460SGeorge.Wilson }
3376