xref: /titanic_44/usr/src/uts/common/fs/zfs/spa.c (revision e2dcee5754c56d91c6e1ff847db294541069ca0d)
1fa9e4066Sahrens /*
2fa9e4066Sahrens  * CDDL HEADER START
3fa9e4066Sahrens  *
4fa9e4066Sahrens  * The contents of this file are subject to the terms of the
5ea8dc4b6Seschrock  * Common Development and Distribution License (the "License").
6ea8dc4b6Seschrock  * 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.
241b497ab8SAdam H. Leventhal  * Copyright (c) 2011, 2014 by Delphix. All rights reserved.
25b8289d24SDaniil Lunev  * Copyright (c) 2013, 2014, Nexenta Systems, Inc.  All rights reserved.
26bc9014e6SJustin Gibbs  * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
275aeb9474SGarrett D'Amore  */
28fa9e4066Sahrens 
29fa9e4066Sahrens /*
303e30c24aSWill Andrews  * SPA: Storage Pool Allocator
313e30c24aSWill Andrews  *
32fa9e4066Sahrens  * This file contains all the routines used when modifying on-disk SPA state.
33fa9e4066Sahrens  * This includes opening, importing, destroying, exporting a pool, and syncing a
34fa9e4066Sahrens  * pool.
35fa9e4066Sahrens  */
36fa9e4066Sahrens 
37fa9e4066Sahrens #include <sys/zfs_context.h>
38ea8dc4b6Seschrock #include <sys/fm/fs/zfs.h>
39fa9e4066Sahrens #include <sys/spa_impl.h>
40fa9e4066Sahrens #include <sys/zio.h>
41fa9e4066Sahrens #include <sys/zio_checksum.h>
42fa9e4066Sahrens #include <sys/dmu.h>
43fa9e4066Sahrens #include <sys/dmu_tx.h>
44fa9e4066Sahrens #include <sys/zap.h>
45fa9e4066Sahrens #include <sys/zil.h>
46b24ab676SJeff Bonwick #include <sys/ddt.h>
47fa9e4066Sahrens #include <sys/vdev_impl.h>
48fa9e4066Sahrens #include <sys/metaslab.h>
4988ecc943SGeorge Wilson #include <sys/metaslab_impl.h>
50fa9e4066Sahrens #include <sys/uberblock_impl.h>
51fa9e4066Sahrens #include <sys/txg.h>
52fa9e4066Sahrens #include <sys/avl.h>
53fa9e4066Sahrens #include <sys/dmu_traverse.h>
54b1b8ab34Slling #include <sys/dmu_objset.h>
55fa9e4066Sahrens #include <sys/unique.h>
56fa9e4066Sahrens #include <sys/dsl_pool.h>
57b1b8ab34Slling #include <sys/dsl_dataset.h>
58fa9e4066Sahrens #include <sys/dsl_dir.h>
59fa9e4066Sahrens #include <sys/dsl_prop.h>
60b1b8ab34Slling #include <sys/dsl_synctask.h>
61fa9e4066Sahrens #include <sys/fs/zfs.h>
62fa94a07fSbrendan #include <sys/arc.h>
63fa9e4066Sahrens #include <sys/callb.h>
6495173954Sek110237 #include <sys/systeminfo.h>
65e7cbe64fSgw25295 #include <sys/spa_boot.h>
66573ca77eSGeorge Wilson #include <sys/zfs_ioctl.h>
673f9d6ad7SLin Ling #include <sys/dsl_scan.h>
68ad135b5dSChristopher Siden #include <sys/zfeature.h>
693b2aab18SMatthew Ahrens #include <sys/dsl_destroy.h>
70fa9e4066Sahrens 
715679c89fSjv227347 #ifdef	_KERNEL
72dedec472SJack Meng #include <sys/bootprops.h>
7335a5a358SJonathan Adams #include <sys/callb.h>
7435a5a358SJonathan Adams #include <sys/cpupart.h>
7535a5a358SJonathan Adams #include <sys/pool.h>
7635a5a358SJonathan Adams #include <sys/sysdc.h>
7735a5a358SJonathan Adams #include <sys/zone.h>
785679c89fSjv227347 #endif	/* _KERNEL */
795679c89fSjv227347 
80990b4856Slling #include "zfs_prop.h"
81b7b97454Sperrin #include "zfs_comutil.h"
82990b4856Slling 
833cb69f73SWill Andrews /*
843cb69f73SWill Andrews  * The interval, in seconds, at which failed configuration cache file writes
853cb69f73SWill Andrews  * should be retried.
863cb69f73SWill Andrews  */
873cb69f73SWill Andrews static int zfs_ccw_retry_interval = 300;
883cb69f73SWill Andrews 
8935a5a358SJonathan Adams typedef enum zti_modes {
90ec94d322SAdam Leventhal 	ZTI_MODE_FIXED,			/* value is # of threads (min 1) */
91ec94d322SAdam Leventhal 	ZTI_MODE_BATCH,			/* cpu-intensive; value is ignored */
92ec94d322SAdam Leventhal 	ZTI_MODE_NULL,			/* don't create a taskq */
93ec94d322SAdam Leventhal 	ZTI_NMODES
9435a5a358SJonathan Adams } zti_modes_t;
95416e0cd8Sek110237 
96ec94d322SAdam Leventhal #define	ZTI_P(n, q)	{ ZTI_MODE_FIXED, (n), (q) }
97ec94d322SAdam Leventhal #define	ZTI_BATCH	{ ZTI_MODE_BATCH, 0, 1 }
98ec94d322SAdam Leventhal #define	ZTI_NULL	{ ZTI_MODE_NULL, 0, 0 }
992e0c549eSJonathan Adams 
100ec94d322SAdam Leventhal #define	ZTI_N(n)	ZTI_P(n, 1)
101ec94d322SAdam Leventhal #define	ZTI_ONE		ZTI_N(1)
1022e0c549eSJonathan Adams 
1032e0c549eSJonathan Adams typedef struct zio_taskq_info {
104ec94d322SAdam Leventhal 	zti_modes_t zti_mode;
1052e0c549eSJonathan Adams 	uint_t zti_value;
106ec94d322SAdam Leventhal 	uint_t zti_count;
1072e0c549eSJonathan Adams } zio_taskq_info_t;
1082e0c549eSJonathan Adams 
1092e0c549eSJonathan Adams static const char *const zio_taskq_types[ZIO_TASKQ_TYPES] = {
11080eb36f2SGeorge Wilson 	"issue", "issue_high", "intr", "intr_high"
1112e0c549eSJonathan Adams };
1122e0c549eSJonathan Adams 
11380eb36f2SGeorge Wilson /*
114ec94d322SAdam Leventhal  * This table defines the taskq settings for each ZFS I/O type. When
115ec94d322SAdam Leventhal  * initializing a pool, we use this table to create an appropriately sized
116ec94d322SAdam Leventhal  * taskq. Some operations are low volume and therefore have a small, static
117ec94d322SAdam Leventhal  * number of threads assigned to their taskqs using the ZTI_N(#) or ZTI_ONE
118ec94d322SAdam Leventhal  * macros. Other operations process a large amount of data; the ZTI_BATCH
119ec94d322SAdam Leventhal  * macro causes us to create a taskq oriented for throughput. Some operations
120ec94d322SAdam Leventhal  * are so high frequency and short-lived that the taskq itself can become a a
121ec94d322SAdam Leventhal  * point of lock contention. The ZTI_P(#, #) macro indicates that we need an
122ec94d322SAdam Leventhal  * additional degree of parallelism specified by the number of threads per-
123ec94d322SAdam Leventhal  * taskq and the number of taskqs; when dispatching an event in this case, the
124ec94d322SAdam Leventhal  * particular taskq is chosen at random.
125ec94d322SAdam Leventhal  *
126ec94d322SAdam Leventhal  * The different taskq priorities are to handle the different contexts (issue
127ec94d322SAdam Leventhal  * and interrupt) and then to reserve threads for ZIO_PRIORITY_NOW I/Os that
128ec94d322SAdam Leventhal  * need to be handled with minimum delay.
12980eb36f2SGeorge Wilson  */
13080eb36f2SGeorge Wilson const zio_taskq_info_t zio_taskqs[ZIO_TYPES][ZIO_TASKQ_TYPES] = {
13180eb36f2SGeorge Wilson 	/* ISSUE	ISSUE_HIGH	INTR		INTR_HIGH */
132ec94d322SAdam Leventhal 	{ ZTI_ONE,	ZTI_NULL,	ZTI_ONE,	ZTI_NULL }, /* NULL */
1331b497ab8SAdam H. Leventhal 	{ ZTI_N(8),	ZTI_NULL,	ZTI_P(12, 8),	ZTI_NULL }, /* READ */
134ec94d322SAdam Leventhal 	{ ZTI_BATCH,	ZTI_N(5),	ZTI_N(8),	ZTI_N(5) }, /* WRITE */
135ec94d322SAdam Leventhal 	{ ZTI_P(12, 8),	ZTI_NULL,	ZTI_ONE,	ZTI_NULL }, /* FREE */
136ec94d322SAdam Leventhal 	{ ZTI_ONE,	ZTI_NULL,	ZTI_ONE,	ZTI_NULL }, /* CLAIM */
137ec94d322SAdam Leventhal 	{ ZTI_ONE,	ZTI_NULL,	ZTI_ONE,	ZTI_NULL }, /* IOCTL */
1382e0c549eSJonathan Adams };
1392e0c549eSJonathan Adams 
1403b2aab18SMatthew Ahrens static void spa_sync_version(void *arg, dmu_tx_t *tx);
1413b2aab18SMatthew Ahrens static void spa_sync_props(void *arg, dmu_tx_t *tx);
14289a89ebfSlling static boolean_t spa_has_active_shared_spare(spa_t *spa);
1431195e687SMark J Musante static int spa_load_impl(spa_t *spa, uint64_t, nvlist_t *config,
1441195e687SMark J Musante     spa_load_state_t state, spa_import_type_t type, boolean_t mosconfig,
1451195e687SMark J Musante     char **ereport);
146cb04b873SMark J Musante static void spa_vdev_resilver_done(spa_t *spa);
147990b4856Slling 
14869962b56SMatthew Ahrens uint_t		zio_taskq_batch_pct = 75;	/* 1 thread per cpu in pset */
14935a5a358SJonathan Adams id_t		zio_taskq_psrset_bind = PS_NONE;
15035a5a358SJonathan Adams boolean_t	zio_taskq_sysdc = B_TRUE;	/* use SDC scheduling class */
15135a5a358SJonathan Adams uint_t		zio_taskq_basedc = 80;		/* base duty cycle */
15235a5a358SJonathan Adams 
15335a5a358SJonathan Adams boolean_t	spa_create_process = B_TRUE;	/* no process ==> no sysdc */
15401f55e48SGeorge Wilson extern int	zfs_sync_pass_deferred_free;
15535a5a358SJonathan Adams 
15635a5a358SJonathan Adams /*
15735a5a358SJonathan Adams  * This (illegal) pool name is used when temporarily importing a spa_t in order
15835a5a358SJonathan Adams  * to get the vdev stats associated with the imported devices.
15935a5a358SJonathan Adams  */
16035a5a358SJonathan Adams #define	TRYIMPORT_NAME	"$import"
16135a5a358SJonathan Adams 
162990b4856Slling /*
163990b4856Slling  * ==========================================================================
164990b4856Slling  * SPA properties routines
165990b4856Slling  * ==========================================================================
166990b4856Slling  */
167990b4856Slling 
168990b4856Slling /*
169990b4856Slling  * Add a (source=src, propname=propval) list to an nvlist.
170990b4856Slling  */
1719d82f4f6Slling static void
spa_prop_add_list(nvlist_t * nvl,zpool_prop_t prop,char * strval,uint64_t intval,zprop_source_t src)172990b4856Slling spa_prop_add_list(nvlist_t *nvl, zpool_prop_t prop, char *strval,
173990b4856Slling     uint64_t intval, zprop_source_t src)
174990b4856Slling {
175990b4856Slling 	const char *propname = zpool_prop_to_name(prop);
176990b4856Slling 	nvlist_t *propval;
177990b4856Slling 
1789d82f4f6Slling 	VERIFY(nvlist_alloc(&propval, NV_UNIQUE_NAME, KM_SLEEP) == 0);
1799d82f4f6Slling 	VERIFY(nvlist_add_uint64(propval, ZPROP_SOURCE, src) == 0);
180990b4856Slling 
1819d82f4f6Slling 	if (strval != NULL)
1829d82f4f6Slling 		VERIFY(nvlist_add_string(propval, ZPROP_VALUE, strval) == 0);
1839d82f4f6Slling 	else
1849d82f4f6Slling 		VERIFY(nvlist_add_uint64(propval, ZPROP_VALUE, intval) == 0);
185990b4856Slling 
1869d82f4f6Slling 	VERIFY(nvlist_add_nvlist(nvl, propname, propval) == 0);
187990b4856Slling 	nvlist_free(propval);
188990b4856Slling }
189990b4856Slling 
190990b4856Slling /*
191990b4856Slling  * Get property values from the spa configuration.
192990b4856Slling  */
1939d82f4f6Slling static void
spa_prop_get_config(spa_t * spa,nvlist_t ** nvp)194990b4856Slling spa_prop_get_config(spa_t *spa, nvlist_t **nvp)
195990b4856Slling {
1964263d13fSGeorge Wilson 	vdev_t *rvd = spa->spa_root_vdev;
197ad135b5dSChristopher Siden 	dsl_pool_t *pool = spa->spa_dsl_pool;
1982e4c9986SGeorge Wilson 	uint64_t size, alloc, cap, version;
199990b4856Slling 	zprop_source_t src = ZPROP_SRC_NONE;
200c5904d13Seschrock 	spa_config_dirent_t *dp;
2012e4c9986SGeorge Wilson 	metaslab_class_t *mc = spa_normal_class(spa);
202990b4856Slling 
203e14bb325SJeff Bonwick 	ASSERT(MUTEX_HELD(&spa->spa_props_lock));
204e14bb325SJeff Bonwick 
2054263d13fSGeorge Wilson 	if (rvd != NULL) {
206485bbbf5SGeorge Wilson 		alloc = metaslab_class_get_alloc(spa_normal_class(spa));
207b24ab676SJeff Bonwick 		size = metaslab_class_get_space(spa_normal_class(spa));
208e14bb325SJeff Bonwick 		spa_prop_add_list(*nvp, ZPOOL_PROP_NAME, spa_name(spa), 0, src);
2099d82f4f6Slling 		spa_prop_add_list(*nvp, ZPOOL_PROP_SIZE, NULL, size, src);
210485bbbf5SGeorge Wilson 		spa_prop_add_list(*nvp, ZPOOL_PROP_ALLOCATED, NULL, alloc, src);
211485bbbf5SGeorge Wilson 		spa_prop_add_list(*nvp, ZPOOL_PROP_FREE, NULL,
212485bbbf5SGeorge Wilson 		    size - alloc, src);
2134263d13fSGeorge Wilson 
2142e4c9986SGeorge Wilson 		spa_prop_add_list(*nvp, ZPOOL_PROP_FRAGMENTATION, NULL,
2152e4c9986SGeorge Wilson 		    metaslab_class_fragmentation(mc), src);
2162e4c9986SGeorge Wilson 		spa_prop_add_list(*nvp, ZPOOL_PROP_EXPANDSZ, NULL,
2172e4c9986SGeorge Wilson 		    metaslab_class_expandable_space(mc), src);
218f9af39baSGeorge Wilson 		spa_prop_add_list(*nvp, ZPOOL_PROP_READONLY, NULL,
219f9af39baSGeorge Wilson 		    (spa_mode(spa) == FREAD), src);
220990b4856Slling 
221485bbbf5SGeorge Wilson 		cap = (size == 0) ? 0 : (alloc * 100 / size);
2229d82f4f6Slling 		spa_prop_add_list(*nvp, ZPOOL_PROP_CAPACITY, NULL, cap, src);
223990b4856Slling 
224b24ab676SJeff Bonwick 		spa_prop_add_list(*nvp, ZPOOL_PROP_DEDUPRATIO, NULL,
225b24ab676SJeff Bonwick 		    ddt_get_pool_dedup_ratio(spa), src);
226b24ab676SJeff Bonwick 
2279d82f4f6Slling 		spa_prop_add_list(*nvp, ZPOOL_PROP_HEALTH, NULL,
2284263d13fSGeorge Wilson 		    rvd->vdev_state, src);
229990b4856Slling 
230990b4856Slling 		version = spa_version(spa);
231990b4856Slling 		if (version == zpool_prop_default_numeric(ZPOOL_PROP_VERSION))
232990b4856Slling 			src = ZPROP_SRC_DEFAULT;
233990b4856Slling 		else
234990b4856Slling 			src = ZPROP_SRC_LOCAL;
2359d82f4f6Slling 		spa_prop_add_list(*nvp, ZPOOL_PROP_VERSION, NULL, version, src);
236379c004dSEric Schrock 	}
237379c004dSEric Schrock 
238ad135b5dSChristopher Siden 	if (pool != NULL) {
239ad135b5dSChristopher Siden 		/*
240ad135b5dSChristopher Siden 		 * The $FREE directory was introduced in SPA_VERSION_DEADLISTS,
241ad135b5dSChristopher Siden 		 * when opening pools before this version freedir will be NULL.
242ad135b5dSChristopher Siden 		 */
2437fd05ac4SMatthew Ahrens 		if (pool->dp_free_dir != NULL) {
244ad135b5dSChristopher Siden 			spa_prop_add_list(*nvp, ZPOOL_PROP_FREEING, NULL,
245c1379625SJustin T. Gibbs 			    dsl_dir_phys(pool->dp_free_dir)->dd_used_bytes,
246c1379625SJustin T. Gibbs 			    src);
247ad135b5dSChristopher Siden 		} else {
248ad135b5dSChristopher Siden 			spa_prop_add_list(*nvp, ZPOOL_PROP_FREEING,
249ad135b5dSChristopher Siden 			    NULL, 0, src);
250ad135b5dSChristopher Siden 		}
2517fd05ac4SMatthew Ahrens 
2527fd05ac4SMatthew Ahrens 		if (pool->dp_leak_dir != NULL) {
2537fd05ac4SMatthew Ahrens 			spa_prop_add_list(*nvp, ZPOOL_PROP_LEAKED, NULL,
254c1379625SJustin T. Gibbs 			    dsl_dir_phys(pool->dp_leak_dir)->dd_used_bytes,
255c1379625SJustin T. Gibbs 			    src);
2567fd05ac4SMatthew Ahrens 		} else {
2577fd05ac4SMatthew Ahrens 			spa_prop_add_list(*nvp, ZPOOL_PROP_LEAKED,
2587fd05ac4SMatthew Ahrens 			    NULL, 0, src);
2597fd05ac4SMatthew Ahrens 		}
260ad135b5dSChristopher Siden 	}
261ad135b5dSChristopher Siden 
262379c004dSEric Schrock 	spa_prop_add_list(*nvp, ZPOOL_PROP_GUID, NULL, spa_guid(spa), src);
263990b4856Slling 
2648704186eSDan McDonald 	if (spa->spa_comment != NULL) {
2658704186eSDan McDonald 		spa_prop_add_list(*nvp, ZPOOL_PROP_COMMENT, spa->spa_comment,
2668704186eSDan McDonald 		    0, ZPROP_SRC_LOCAL);
2678704186eSDan McDonald 	}
2688704186eSDan McDonald 
2699d82f4f6Slling 	if (spa->spa_root != NULL)
2709d82f4f6Slling 		spa_prop_add_list(*nvp, ZPOOL_PROP_ALTROOT, spa->spa_root,
2719d82f4f6Slling 		    0, ZPROP_SRC_LOCAL);
272990b4856Slling 
273b5152584SMatthew Ahrens 	if (spa_feature_is_enabled(spa, SPA_FEATURE_LARGE_BLOCKS)) {
274b5152584SMatthew Ahrens 		spa_prop_add_list(*nvp, ZPOOL_PROP_MAXBLOCKSIZE, NULL,
275b5152584SMatthew Ahrens 		    MIN(zfs_max_recordsize, SPA_MAXBLOCKSIZE), ZPROP_SRC_NONE);
276b5152584SMatthew Ahrens 	} else {
277b5152584SMatthew Ahrens 		spa_prop_add_list(*nvp, ZPOOL_PROP_MAXBLOCKSIZE, NULL,
278b5152584SMatthew Ahrens 		    SPA_OLD_MAXBLOCKSIZE, ZPROP_SRC_NONE);
279b5152584SMatthew Ahrens 	}
280b5152584SMatthew Ahrens 
281c5904d13Seschrock 	if ((dp = list_head(&spa->spa_config_list)) != NULL) {
282c5904d13Seschrock 		if (dp->scd_path == NULL) {
2839d82f4f6Slling 			spa_prop_add_list(*nvp, ZPOOL_PROP_CACHEFILE,
284c5904d13Seschrock 			    "none", 0, ZPROP_SRC_LOCAL);
285c5904d13Seschrock 		} else if (strcmp(dp->scd_path, spa_config_path) != 0) {
2869d82f4f6Slling 			spa_prop_add_list(*nvp, ZPOOL_PROP_CACHEFILE,
287c5904d13Seschrock 			    dp->scd_path, 0, ZPROP_SRC_LOCAL);
2882f8aaab3Seschrock 		}
2892f8aaab3Seschrock 	}
290990b4856Slling }
291990b4856Slling 
292990b4856Slling /*
293990b4856Slling  * Get zpool property values.
294990b4856Slling  */
295990b4856Slling int
spa_prop_get(spa_t * spa,nvlist_t ** nvp)296990b4856Slling spa_prop_get(spa_t *spa, nvlist_t **nvp)
297990b4856Slling {
298b24ab676SJeff Bonwick 	objset_t *mos = spa->spa_meta_objset;
299990b4856Slling 	zap_cursor_t zc;
300990b4856Slling 	zap_attribute_t za;
301990b4856Slling 	int err;
302990b4856Slling 
3039d82f4f6Slling 	VERIFY(nvlist_alloc(nvp, NV_UNIQUE_NAME, KM_SLEEP) == 0);
304990b4856Slling 
305e14bb325SJeff Bonwick 	mutex_enter(&spa->spa_props_lock);
306e14bb325SJeff Bonwick 
307990b4856Slling 	/*
308990b4856Slling 	 * Get properties from the spa config.
309990b4856Slling 	 */
3109d82f4f6Slling 	spa_prop_get_config(spa, nvp);
311990b4856Slling 
312990b4856Slling 	/* If no pool property object, no more prop to get. */
313afee20e4SGeorge Wilson 	if (mos == NULL || spa->spa_pool_props_object == 0) {
314990b4856Slling 		mutex_exit(&spa->spa_props_lock);
315990b4856Slling 		return (0);
316990b4856Slling 	}
317990b4856Slling 
318990b4856Slling 	/*
319990b4856Slling 	 * Get properties from the MOS pool property object.
320990b4856Slling 	 */
321990b4856Slling 	for (zap_cursor_init(&zc, mos, spa->spa_pool_props_object);
322990b4856Slling 	    (err = zap_cursor_retrieve(&zc, &za)) == 0;
323990b4856Slling 	    zap_cursor_advance(&zc)) {
324990b4856Slling 		uint64_t intval = 0;
325990b4856Slling 		char *strval = NULL;
326990b4856Slling 		zprop_source_t src = ZPROP_SRC_DEFAULT;
327990b4856Slling 		zpool_prop_t prop;
328990b4856Slling 
329990b4856Slling 		if ((prop = zpool_name_to_prop(za.za_name)) == ZPROP_INVAL)
330990b4856Slling 			continue;
331990b4856Slling 
332990b4856Slling 		switch (za.za_integer_length) {
333990b4856Slling 		case 8:
334990b4856Slling 			/* integer property */
335990b4856Slling 			if (za.za_first_integer !=
336990b4856Slling 			    zpool_prop_default_numeric(prop))
337990b4856Slling 				src = ZPROP_SRC_LOCAL;
338990b4856Slling 
339990b4856Slling 			if (prop == ZPOOL_PROP_BOOTFS) {
340990b4856Slling 				dsl_pool_t *dp;
341990b4856Slling 				dsl_dataset_t *ds = NULL;
342990b4856Slling 
343990b4856Slling 				dp = spa_get_dsl(spa);
3443b2aab18SMatthew Ahrens 				dsl_pool_config_enter(dp, FTAG);
345745cd3c5Smaybee 				if (err = dsl_dataset_hold_obj(dp,
346745cd3c5Smaybee 				    za.za_first_integer, FTAG, &ds)) {
3473b2aab18SMatthew Ahrens 					dsl_pool_config_exit(dp, FTAG);
348990b4856Slling 					break;
349990b4856Slling 				}
350990b4856Slling 
351*a1988827SMatthew Ahrens 				strval = kmem_alloc(ZFS_MAX_DATASET_NAME_LEN,
352990b4856Slling 				    KM_SLEEP);
353990b4856Slling 				dsl_dataset_name(ds, strval);
354745cd3c5Smaybee 				dsl_dataset_rele(ds, FTAG);
3553b2aab18SMatthew Ahrens 				dsl_pool_config_exit(dp, FTAG);
356990b4856Slling 			} else {
357990b4856Slling 				strval = NULL;
358990b4856Slling 				intval = za.za_first_integer;
359990b4856Slling 			}
360990b4856Slling 
3619d82f4f6Slling 			spa_prop_add_list(*nvp, prop, strval, intval, src);
362990b4856Slling 
363990b4856Slling 			if (strval != NULL)
364*a1988827SMatthew Ahrens 				kmem_free(strval, ZFS_MAX_DATASET_NAME_LEN);
365990b4856Slling 
366990b4856Slling 			break;
367990b4856Slling 
368990b4856Slling 		case 1:
369990b4856Slling 			/* string property */
370990b4856Slling 			strval = kmem_alloc(za.za_num_integers, KM_SLEEP);
371990b4856Slling 			err = zap_lookup(mos, spa->spa_pool_props_object,
372990b4856Slling 			    za.za_name, 1, za.za_num_integers, strval);
373990b4856Slling 			if (err) {
374990b4856Slling 				kmem_free(strval, za.za_num_integers);
375990b4856Slling 				break;
376990b4856Slling 			}
3779d82f4f6Slling 			spa_prop_add_list(*nvp, prop, strval, 0, src);
378990b4856Slling 			kmem_free(strval, za.za_num_integers);
379990b4856Slling 			break;
380990b4856Slling 
381990b4856Slling 		default:
382990b4856Slling 			break;
383990b4856Slling 		}
384990b4856Slling 	}
385990b4856Slling 	zap_cursor_fini(&zc);
386990b4856Slling 	mutex_exit(&spa->spa_props_lock);
387990b4856Slling out:
388990b4856Slling 	if (err && err != ENOENT) {
389990b4856Slling 		nvlist_free(*nvp);
3909d82f4f6Slling 		*nvp = NULL;
391990b4856Slling 		return (err);
392990b4856Slling 	}
393990b4856Slling 
394990b4856Slling 	return (0);
395990b4856Slling }
396990b4856Slling 
397990b4856Slling /*
398990b4856Slling  * Validate the given pool properties nvlist and modify the list
399990b4856Slling  * for the property values to be set.
400990b4856Slling  */
401990b4856Slling static int
spa_prop_validate(spa_t * spa,nvlist_t * props)402990b4856Slling spa_prop_validate(spa_t *spa, nvlist_t *props)
403990b4856Slling {
404990b4856Slling 	nvpair_t *elem;
405990b4856Slling 	int error = 0, reset_bootfs = 0;
406d5285caeSGeorge Wilson 	uint64_t objnum = 0;
407ad135b5dSChristopher Siden 	boolean_t has_feature = B_FALSE;
408990b4856Slling 
409990b4856Slling 	elem = NULL;
410990b4856Slling 	while ((elem = nvlist_next_nvpair(props, elem)) != NULL) {
411990b4856Slling 		uint64_t intval;
412ad135b5dSChristopher Siden 		char *strval, *slash, *check, *fname;
413ad135b5dSChristopher Siden 		const char *propname = nvpair_name(elem);
414ad135b5dSChristopher Siden 		zpool_prop_t prop = zpool_name_to_prop(propname);
415990b4856Slling 
416990b4856Slling 		switch (prop) {
417ad135b5dSChristopher Siden 		case ZPROP_INVAL:
418ad135b5dSChristopher Siden 			if (!zpool_prop_feature(propname)) {
419be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
420ad135b5dSChristopher Siden 				break;
421ad135b5dSChristopher Siden 			}
422ad135b5dSChristopher Siden 
423ad135b5dSChristopher Siden 			/*
424ad135b5dSChristopher Siden 			 * Sanitize the input.
425ad135b5dSChristopher Siden 			 */
426ad135b5dSChristopher Siden 			if (nvpair_type(elem) != DATA_TYPE_UINT64) {
427be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
428ad135b5dSChristopher Siden 				break;
429ad135b5dSChristopher Siden 			}
430ad135b5dSChristopher Siden 
431ad135b5dSChristopher Siden 			if (nvpair_value_uint64(elem, &intval) != 0) {
432be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
433ad135b5dSChristopher Siden 				break;
434ad135b5dSChristopher Siden 			}
435ad135b5dSChristopher Siden 
436ad135b5dSChristopher Siden 			if (intval != 0) {
437be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
438ad135b5dSChristopher Siden 				break;
439ad135b5dSChristopher Siden 			}
440ad135b5dSChristopher Siden 
441ad135b5dSChristopher Siden 			fname = strchr(propname, '@') + 1;
442ad135b5dSChristopher Siden 			if (zfeature_lookup_name(fname, NULL) != 0) {
443be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
444ad135b5dSChristopher Siden 				break;
445ad135b5dSChristopher Siden 			}
446ad135b5dSChristopher Siden 
447ad135b5dSChristopher Siden 			has_feature = B_TRUE;
448ad135b5dSChristopher Siden 			break;
449ad135b5dSChristopher Siden 
450990b4856Slling 		case ZPOOL_PROP_VERSION:
451990b4856Slling 			error = nvpair_value_uint64(elem, &intval);
452990b4856Slling 			if (!error &&
453ad135b5dSChristopher Siden 			    (intval < spa_version(spa) ||
454ad135b5dSChristopher Siden 			    intval > SPA_VERSION_BEFORE_FEATURES ||
455ad135b5dSChristopher Siden 			    has_feature))
456be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
457990b4856Slling 			break;
458990b4856Slling 
459990b4856Slling 		case ZPOOL_PROP_DELEGATION:
460990b4856Slling 		case ZPOOL_PROP_AUTOREPLACE:
461d5b5bb25SRich Morris 		case ZPOOL_PROP_LISTSNAPS:
462573ca77eSGeorge Wilson 		case ZPOOL_PROP_AUTOEXPAND:
463990b4856Slling 			error = nvpair_value_uint64(elem, &intval);
464990b4856Slling 			if (!error && intval > 1)
465be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
466990b4856Slling 			break;
467990b4856Slling 
468990b4856Slling 		case ZPOOL_PROP_BOOTFS:
46925f89ee2SJeff Bonwick 			/*
47025f89ee2SJeff Bonwick 			 * If the pool version is less than SPA_VERSION_BOOTFS,
47125f89ee2SJeff Bonwick 			 * or the pool is still being created (version == 0),
47225f89ee2SJeff Bonwick 			 * the bootfs property cannot be set.
47325f89ee2SJeff Bonwick 			 */
474990b4856Slling 			if (spa_version(spa) < SPA_VERSION_BOOTFS) {
475be6fd75aSMatthew Ahrens 				error = SET_ERROR(ENOTSUP);
476990b4856Slling 				break;
477990b4856Slling 			}
478990b4856Slling 
479990b4856Slling 			/*
48015e6edf1Sgw25295 			 * Make sure the vdev config is bootable
481990b4856Slling 			 */
48215e6edf1Sgw25295 			if (!vdev_is_bootable(spa->spa_root_vdev)) {
483be6fd75aSMatthew Ahrens 				error = SET_ERROR(ENOTSUP);
484990b4856Slling 				break;
485990b4856Slling 			}
486990b4856Slling 
487990b4856Slling 			reset_bootfs = 1;
488990b4856Slling 
489990b4856Slling 			error = nvpair_value_string(elem, &strval);
490990b4856Slling 
491990b4856Slling 			if (!error) {
492ad135b5dSChristopher Siden 				objset_t *os;
493b5152584SMatthew Ahrens 				uint64_t propval;
49415e6edf1Sgw25295 
495990b4856Slling 				if (strval == NULL || strval[0] == '\0') {
496990b4856Slling 					objnum = zpool_prop_default_numeric(
497990b4856Slling 					    ZPOOL_PROP_BOOTFS);
498990b4856Slling 					break;
499990b4856Slling 				}
500990b4856Slling 
501503ad85cSMatthew Ahrens 				if (error = dmu_objset_hold(strval, FTAG, &os))
502990b4856Slling 					break;
50315e6edf1Sgw25295 
504b5152584SMatthew Ahrens 				/*
505b5152584SMatthew Ahrens 				 * Must be ZPL, and its property settings
506b5152584SMatthew Ahrens 				 * must be supported by GRUB (compression
507b5152584SMatthew Ahrens 				 * is not gzip, and large blocks are not used).
508b5152584SMatthew Ahrens 				 */
509503ad85cSMatthew Ahrens 
510503ad85cSMatthew Ahrens 				if (dmu_objset_type(os) != DMU_OST_ZFS) {
511be6fd75aSMatthew Ahrens 					error = SET_ERROR(ENOTSUP);
5123b2aab18SMatthew Ahrens 				} else if ((error =
5133b2aab18SMatthew Ahrens 				    dsl_prop_get_int_ds(dmu_objset_ds(os),
51415e6edf1Sgw25295 				    zfs_prop_to_name(ZFS_PROP_COMPRESSION),
515b5152584SMatthew Ahrens 				    &propval)) == 0 &&
516b5152584SMatthew Ahrens 				    !BOOTFS_COMPRESS_VALID(propval)) {
517b5152584SMatthew Ahrens 					error = SET_ERROR(ENOTSUP);
518b5152584SMatthew Ahrens 				} else if ((error =
519b5152584SMatthew Ahrens 				    dsl_prop_get_int_ds(dmu_objset_ds(os),
520b5152584SMatthew Ahrens 				    zfs_prop_to_name(ZFS_PROP_RECORDSIZE),
521b5152584SMatthew Ahrens 				    &propval)) == 0 &&
522b5152584SMatthew Ahrens 				    propval > SPA_OLD_MAXBLOCKSIZE) {
523be6fd75aSMatthew Ahrens 					error = SET_ERROR(ENOTSUP);
52415e6edf1Sgw25295 				} else {
525990b4856Slling 					objnum = dmu_objset_id(os);
52615e6edf1Sgw25295 				}
527503ad85cSMatthew Ahrens 				dmu_objset_rele(os, FTAG);
528990b4856Slling 			}
529990b4856Slling 			break;
530e14bb325SJeff Bonwick 
5310a4e9518Sgw25295 		case ZPOOL_PROP_FAILUREMODE:
5320a4e9518Sgw25295 			error = nvpair_value_uint64(elem, &intval);
5330a4e9518Sgw25295 			if (!error && (intval < ZIO_FAILURE_MODE_WAIT ||
5340a4e9518Sgw25295 			    intval > ZIO_FAILURE_MODE_PANIC))
535be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
5360a4e9518Sgw25295 
5370a4e9518Sgw25295 			/*
5380a4e9518Sgw25295 			 * This is a special case which only occurs when
5390a4e9518Sgw25295 			 * the pool has completely failed. This allows
5400a4e9518Sgw25295 			 * the user to change the in-core failmode property
5410a4e9518Sgw25295 			 * without syncing it out to disk (I/Os might
5420a4e9518Sgw25295 			 * currently be blocked). We do this by returning
5430a4e9518Sgw25295 			 * EIO to the caller (spa_prop_set) to trick it
5440a4e9518Sgw25295 			 * into thinking we encountered a property validation
5450a4e9518Sgw25295 			 * error.
5460a4e9518Sgw25295 			 */
547e14bb325SJeff Bonwick 			if (!error && spa_suspended(spa)) {
5480a4e9518Sgw25295 				spa->spa_failmode = intval;
549be6fd75aSMatthew Ahrens 				error = SET_ERROR(EIO);
5500a4e9518Sgw25295 			}
5510a4e9518Sgw25295 			break;
5522f8aaab3Seschrock 
5532f8aaab3Seschrock 		case ZPOOL_PROP_CACHEFILE:
5542f8aaab3Seschrock 			if ((error = nvpair_value_string(elem, &strval)) != 0)
5552f8aaab3Seschrock 				break;
5562f8aaab3Seschrock 
5572f8aaab3Seschrock 			if (strval[0] == '\0')
5582f8aaab3Seschrock 				break;
5592f8aaab3Seschrock 
5602f8aaab3Seschrock 			if (strcmp(strval, "none") == 0)
5612f8aaab3Seschrock 				break;
5622f8aaab3Seschrock 
5632f8aaab3Seschrock 			if (strval[0] != '/') {
564be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
5652f8aaab3Seschrock 				break;
5662f8aaab3Seschrock 			}
5672f8aaab3Seschrock 
5682f8aaab3Seschrock 			slash = strrchr(strval, '/');
5692f8aaab3Seschrock 			ASSERT(slash != NULL);
5702f8aaab3Seschrock 
5712f8aaab3Seschrock 			if (slash[1] == '\0' || strcmp(slash, "/.") == 0 ||
5722f8aaab3Seschrock 			    strcmp(slash, "/..") == 0)
573be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
5742f8aaab3Seschrock 			break;
575b24ab676SJeff Bonwick 
5768704186eSDan McDonald 		case ZPOOL_PROP_COMMENT:
5778704186eSDan McDonald 			if ((error = nvpair_value_string(elem, &strval)) != 0)
5788704186eSDan McDonald 				break;
5798704186eSDan McDonald 			for (check = strval; *check != '\0'; check++) {
5808704186eSDan McDonald 				/*
5818704186eSDan McDonald 				 * The kernel doesn't have an easy isprint()
5828704186eSDan McDonald 				 * check.  For this kernel check, we merely
5838704186eSDan McDonald 				 * check ASCII apart from DEL.  Fix this if
5848704186eSDan McDonald 				 * there is an easy-to-use kernel isprint().
5858704186eSDan McDonald 				 */
5868704186eSDan McDonald 				if (*check >= 0x7f) {
587be6fd75aSMatthew Ahrens 					error = SET_ERROR(EINVAL);
5888704186eSDan McDonald 					break;
5898704186eSDan McDonald 				}
5908704186eSDan McDonald 				check++;
5918704186eSDan McDonald 			}
5928704186eSDan McDonald 			if (strlen(strval) > ZPROP_MAX_COMMENT)
5938704186eSDan McDonald 				error = E2BIG;
5948704186eSDan McDonald 			break;
5958704186eSDan McDonald 
596b24ab676SJeff Bonwick 		case ZPOOL_PROP_DEDUPDITTO:
597b24ab676SJeff Bonwick 			if (spa_version(spa) < SPA_VERSION_DEDUP)
598be6fd75aSMatthew Ahrens 				error = SET_ERROR(ENOTSUP);
599b24ab676SJeff Bonwick 			else
600b24ab676SJeff Bonwick 				error = nvpair_value_uint64(elem, &intval);
601b24ab676SJeff Bonwick 			if (error == 0 &&
602b24ab676SJeff Bonwick 			    intval != 0 && intval < ZIO_DEDUPDITTO_MIN)
603be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
604b24ab676SJeff Bonwick 			break;
605990b4856Slling 		}
606990b4856Slling 
607990b4856Slling 		if (error)
608990b4856Slling 			break;
609990b4856Slling 	}
610990b4856Slling 
611990b4856Slling 	if (!error && reset_bootfs) {
612990b4856Slling 		error = nvlist_remove(props,
613990b4856Slling 		    zpool_prop_to_name(ZPOOL_PROP_BOOTFS), DATA_TYPE_STRING);
614990b4856Slling 
615990b4856Slling 		if (!error) {
616990b4856Slling 			error = nvlist_add_uint64(props,
617990b4856Slling 			    zpool_prop_to_name(ZPOOL_PROP_BOOTFS), objnum);
618990b4856Slling 		}
619990b4856Slling 	}
620990b4856Slling 
621990b4856Slling 	return (error);
622990b4856Slling }
623990b4856Slling 
624379c004dSEric Schrock void
spa_configfile_set(spa_t * spa,nvlist_t * nvp,boolean_t need_sync)625379c004dSEric Schrock spa_configfile_set(spa_t *spa, nvlist_t *nvp, boolean_t need_sync)
626379c004dSEric Schrock {
627379c004dSEric Schrock 	char *cachefile;
628379c004dSEric Schrock 	spa_config_dirent_t *dp;
629379c004dSEric Schrock 
630379c004dSEric Schrock 	if (nvlist_lookup_string(nvp, zpool_prop_to_name(ZPOOL_PROP_CACHEFILE),
631379c004dSEric Schrock 	    &cachefile) != 0)
632379c004dSEric Schrock 		return;
633379c004dSEric Schrock 
634379c004dSEric Schrock 	dp = kmem_alloc(sizeof (spa_config_dirent_t),
635379c004dSEric Schrock 	    KM_SLEEP);
636379c004dSEric Schrock 
637379c004dSEric Schrock 	if (cachefile[0] == '\0')
638379c004dSEric Schrock 		dp->scd_path = spa_strdup(spa_config_path);
639379c004dSEric Schrock 	else if (strcmp(cachefile, "none") == 0)
640379c004dSEric Schrock 		dp->scd_path = NULL;
641379c004dSEric Schrock 	else
642379c004dSEric Schrock 		dp->scd_path = spa_strdup(cachefile);
643379c004dSEric Schrock 
644379c004dSEric Schrock 	list_insert_head(&spa->spa_config_list, dp);
645379c004dSEric Schrock 	if (need_sync)
646379c004dSEric Schrock 		spa_async_request(spa, SPA_ASYNC_CONFIG_UPDATE);
647379c004dSEric Schrock }
648379c004dSEric Schrock 
649990b4856Slling int
spa_prop_set(spa_t * spa,nvlist_t * nvp)650990b4856Slling spa_prop_set(spa_t *spa, nvlist_t *nvp)
651990b4856Slling {
652990b4856Slling 	int error;
653ad135b5dSChristopher Siden 	nvpair_t *elem = NULL;
654379c004dSEric Schrock 	boolean_t need_sync = B_FALSE;
655990b4856Slling 
656990b4856Slling 	if ((error = spa_prop_validate(spa, nvp)) != 0)
657990b4856Slling 		return (error);
658990b4856Slling 
659379c004dSEric Schrock 	while ((elem = nvlist_next_nvpair(nvp, elem)) != NULL) {
660ad135b5dSChristopher Siden 		zpool_prop_t prop = zpool_name_to_prop(nvpair_name(elem));
661379c004dSEric Schrock 
662f9af39baSGeorge Wilson 		if (prop == ZPOOL_PROP_CACHEFILE ||
663f9af39baSGeorge Wilson 		    prop == ZPOOL_PROP_ALTROOT ||
664f9af39baSGeorge Wilson 		    prop == ZPOOL_PROP_READONLY)
665379c004dSEric Schrock 			continue;
666379c004dSEric Schrock 
667ad135b5dSChristopher Siden 		if (prop == ZPOOL_PROP_VERSION || prop == ZPROP_INVAL) {
668ad135b5dSChristopher Siden 			uint64_t ver;
669ad135b5dSChristopher Siden 
670ad135b5dSChristopher Siden 			if (prop == ZPOOL_PROP_VERSION) {
671ad135b5dSChristopher Siden 				VERIFY(nvpair_value_uint64(elem, &ver) == 0);
672ad135b5dSChristopher Siden 			} else {
673ad135b5dSChristopher Siden 				ASSERT(zpool_prop_feature(nvpair_name(elem)));
674ad135b5dSChristopher Siden 				ver = SPA_VERSION_FEATURES;
675ad135b5dSChristopher Siden 				need_sync = B_TRUE;
676ad135b5dSChristopher Siden 			}
677ad135b5dSChristopher Siden 
678ad135b5dSChristopher Siden 			/* Save time if the version is already set. */
679ad135b5dSChristopher Siden 			if (ver == spa_version(spa))
680ad135b5dSChristopher Siden 				continue;
681ad135b5dSChristopher Siden 
682ad135b5dSChristopher Siden 			/*
683ad135b5dSChristopher Siden 			 * In addition to the pool directory object, we might
684ad135b5dSChristopher Siden 			 * create the pool properties object, the features for
685ad135b5dSChristopher Siden 			 * read object, the features for write object, or the
686ad135b5dSChristopher Siden 			 * feature descriptions object.
687ad135b5dSChristopher Siden 			 */
6883b2aab18SMatthew Ahrens 			error = dsl_sync_task(spa->spa_name, NULL,
6897d46dc6cSMatthew Ahrens 			    spa_sync_version, &ver,
6907d46dc6cSMatthew Ahrens 			    6, ZFS_SPACE_CHECK_RESERVED);
691ad135b5dSChristopher Siden 			if (error)
692ad135b5dSChristopher Siden 				return (error);
693ad135b5dSChristopher Siden 			continue;
694ad135b5dSChristopher Siden 		}
695ad135b5dSChristopher Siden 
696379c004dSEric Schrock 		need_sync = B_TRUE;
697379c004dSEric Schrock 		break;
698379c004dSEric Schrock 	}
699379c004dSEric Schrock 
700ad135b5dSChristopher Siden 	if (need_sync) {
7013b2aab18SMatthew Ahrens 		return (dsl_sync_task(spa->spa_name, NULL, spa_sync_props,
7027d46dc6cSMatthew Ahrens 		    nvp, 6, ZFS_SPACE_CHECK_RESERVED));
703ad135b5dSChristopher Siden 	}
704ad135b5dSChristopher Siden 
705379c004dSEric Schrock 	return (0);
706990b4856Slling }
707990b4856Slling 
708990b4856Slling /*
709990b4856Slling  * If the bootfs property value is dsobj, clear it.
710990b4856Slling  */
711990b4856Slling void
spa_prop_clear_bootfs(spa_t * spa,uint64_t dsobj,dmu_tx_t * tx)712990b4856Slling spa_prop_clear_bootfs(spa_t *spa, uint64_t dsobj, dmu_tx_t *tx)
713990b4856Slling {
714990b4856Slling 	if (spa->spa_bootfs == dsobj && spa->spa_pool_props_object != 0) {
715990b4856Slling 		VERIFY(zap_remove(spa->spa_meta_objset,
716990b4856Slling 		    spa->spa_pool_props_object,
717990b4856Slling 		    zpool_prop_to_name(ZPOOL_PROP_BOOTFS), tx) == 0);
718990b4856Slling 		spa->spa_bootfs = 0;
719990b4856Slling 	}
720990b4856Slling }
721990b4856Slling 
722dfbb9432SGeorge Wilson /*ARGSUSED*/
723dfbb9432SGeorge Wilson static int
spa_change_guid_check(void * arg,dmu_tx_t * tx)7243b2aab18SMatthew Ahrens spa_change_guid_check(void *arg, dmu_tx_t *tx)
725dfbb9432SGeorge Wilson {
7263b2aab18SMatthew Ahrens 	uint64_t *newguid = arg;
7273b2aab18SMatthew Ahrens 	spa_t *spa = dmu_tx_pool(tx)->dp_spa;
728dfbb9432SGeorge Wilson 	vdev_t *rvd = spa->spa_root_vdev;
729dfbb9432SGeorge Wilson 	uint64_t vdev_state;
730dfbb9432SGeorge Wilson 
731dfbb9432SGeorge Wilson 	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
732dfbb9432SGeorge Wilson 	vdev_state = rvd->vdev_state;
733dfbb9432SGeorge Wilson 	spa_config_exit(spa, SCL_STATE, FTAG);
734dfbb9432SGeorge Wilson 
735dfbb9432SGeorge Wilson 	if (vdev_state != VDEV_STATE_HEALTHY)
736be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENXIO));
737dfbb9432SGeorge Wilson 
738dfbb9432SGeorge Wilson 	ASSERT3U(spa_guid(spa), !=, *newguid);
739dfbb9432SGeorge Wilson 
740dfbb9432SGeorge Wilson 	return (0);
741dfbb9432SGeorge Wilson }
742dfbb9432SGeorge Wilson 
743dfbb9432SGeorge Wilson static void
spa_change_guid_sync(void * arg,dmu_tx_t * tx)7443b2aab18SMatthew Ahrens spa_change_guid_sync(void *arg, dmu_tx_t *tx)
745dfbb9432SGeorge Wilson {
7463b2aab18SMatthew Ahrens 	uint64_t *newguid = arg;
7473b2aab18SMatthew Ahrens 	spa_t *spa = dmu_tx_pool(tx)->dp_spa;
748dfbb9432SGeorge Wilson 	uint64_t oldguid;
749dfbb9432SGeorge Wilson 	vdev_t *rvd = spa->spa_root_vdev;
750dfbb9432SGeorge Wilson 
751dfbb9432SGeorge Wilson 	oldguid = spa_guid(spa);
752dfbb9432SGeorge Wilson 
753dfbb9432SGeorge Wilson 	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
754dfbb9432SGeorge Wilson 	rvd->vdev_guid = *newguid;
755dfbb9432SGeorge Wilson 	rvd->vdev_guid_sum += (*newguid - oldguid);
756dfbb9432SGeorge Wilson 	vdev_config_dirty(rvd);
757dfbb9432SGeorge Wilson 	spa_config_exit(spa, SCL_STATE, FTAG);
758dfbb9432SGeorge Wilson 
75920128a08SGeorge Wilson 	spa_history_log_internal(spa, "guid change", tx, "old=%llu new=%llu",
760dfbb9432SGeorge Wilson 	    oldguid, *newguid);
761dfbb9432SGeorge Wilson }
762dfbb9432SGeorge Wilson 
763fa9e4066Sahrens /*
764e9103aaeSGarrett D'Amore  * Change the GUID for the pool.  This is done so that we can later
765e9103aaeSGarrett D'Amore  * re-import a pool built from a clone of our own vdevs.  We will modify
766e9103aaeSGarrett D'Amore  * the root vdev's guid, our own pool guid, and then mark all of our
767e9103aaeSGarrett D'Amore  * vdevs dirty.  Note that we must make sure that all our vdevs are
768e9103aaeSGarrett D'Amore  * online when we do this, or else any vdevs that weren't present
769e9103aaeSGarrett D'Amore  * would be orphaned from our pool.  We are also going to issue a
770e9103aaeSGarrett D'Amore  * sysevent to update any watchers.
771e9103aaeSGarrett D'Amore  */
772e9103aaeSGarrett D'Amore int
spa_change_guid(spa_t * spa)773e9103aaeSGarrett D'Amore spa_change_guid(spa_t *spa)
774e9103aaeSGarrett D'Amore {
775dfbb9432SGeorge Wilson 	int error;
776dfbb9432SGeorge Wilson 	uint64_t guid;
777e9103aaeSGarrett D'Amore 
7782c1e2b44SGeorge Wilson 	mutex_enter(&spa->spa_vdev_top_lock);
779dfbb9432SGeorge Wilson 	mutex_enter(&spa_namespace_lock);
780dfbb9432SGeorge Wilson 	guid = spa_generate_guid(NULL);
781e9103aaeSGarrett D'Amore 
7823b2aab18SMatthew Ahrens 	error = dsl_sync_task(spa->spa_name, spa_change_guid_check,
7837d46dc6cSMatthew Ahrens 	    spa_change_guid_sync, &guid, 5, ZFS_SPACE_CHECK_RESERVED);
784e9103aaeSGarrett D'Amore 
785dfbb9432SGeorge Wilson 	if (error == 0) {
786dfbb9432SGeorge Wilson 		spa_config_sync(spa, B_FALSE, B_TRUE);
787e9103aaeSGarrett D'Amore 		spa_event_notify(spa, NULL, ESC_ZFS_POOL_REGUID);
788dfbb9432SGeorge Wilson 	}
789e9103aaeSGarrett D'Amore 
790dfbb9432SGeorge Wilson 	mutex_exit(&spa_namespace_lock);
7912c1e2b44SGeorge Wilson 	mutex_exit(&spa->spa_vdev_top_lock);
792dfbb9432SGeorge Wilson 
793dfbb9432SGeorge Wilson 	return (error);
794e9103aaeSGarrett D'Amore }
795e9103aaeSGarrett D'Amore 
796e9103aaeSGarrett D'Amore /*
797fa9e4066Sahrens  * ==========================================================================
798fa9e4066Sahrens  * SPA state manipulation (open/create/destroy/import/export)
799fa9e4066Sahrens  * ==========================================================================
800fa9e4066Sahrens  */
801fa9e4066Sahrens 
802ea8dc4b6Seschrock static int
spa_error_entry_compare(const void * a,const void * b)803ea8dc4b6Seschrock spa_error_entry_compare(const void *a, const void *b)
804ea8dc4b6Seschrock {
805ea8dc4b6Seschrock 	spa_error_entry_t *sa = (spa_error_entry_t *)a;
806ea8dc4b6Seschrock 	spa_error_entry_t *sb = (spa_error_entry_t *)b;
807ea8dc4b6Seschrock 	int ret;
808ea8dc4b6Seschrock 
809ea8dc4b6Seschrock 	ret = bcmp(&sa->se_bookmark, &sb->se_bookmark,
8107802d7bfSMatthew Ahrens 	    sizeof (zbookmark_phys_t));
811ea8dc4b6Seschrock 
812ea8dc4b6Seschrock 	if (ret < 0)
813ea8dc4b6Seschrock 		return (-1);
814ea8dc4b6Seschrock 	else if (ret > 0)
815ea8dc4b6Seschrock 		return (1);
816ea8dc4b6Seschrock 	else
817ea8dc4b6Seschrock 		return (0);
818ea8dc4b6Seschrock }
819ea8dc4b6Seschrock 
820ea8dc4b6Seschrock /*
821ea8dc4b6Seschrock  * Utility function which retrieves copies of the current logs and
822ea8dc4b6Seschrock  * re-initializes them in the process.
823ea8dc4b6Seschrock  */
824ea8dc4b6Seschrock void
spa_get_errlists(spa_t * spa,avl_tree_t * last,avl_tree_t * scrub)825ea8dc4b6Seschrock spa_get_errlists(spa_t *spa, avl_tree_t *last, avl_tree_t *scrub)
826ea8dc4b6Seschrock {
827ea8dc4b6Seschrock 	ASSERT(MUTEX_HELD(&spa->spa_errlist_lock));
828ea8dc4b6Seschrock 
829ea8dc4b6Seschrock 	bcopy(&spa->spa_errlist_last, last, sizeof (avl_tree_t));
830ea8dc4b6Seschrock 	bcopy(&spa->spa_errlist_scrub, scrub, sizeof (avl_tree_t));
831ea8dc4b6Seschrock 
832ea8dc4b6Seschrock 	avl_create(&spa->spa_errlist_scrub,
833ea8dc4b6Seschrock 	    spa_error_entry_compare, sizeof (spa_error_entry_t),
834ea8dc4b6Seschrock 	    offsetof(spa_error_entry_t, se_avl));
835ea8dc4b6Seschrock 	avl_create(&spa->spa_errlist_last,
836ea8dc4b6Seschrock 	    spa_error_entry_compare, sizeof (spa_error_entry_t),
837ea8dc4b6Seschrock 	    offsetof(spa_error_entry_t, se_avl));
838ea8dc4b6Seschrock }
839ea8dc4b6Seschrock 
840ec94d322SAdam Leventhal static void
spa_taskqs_init(spa_t * spa,zio_type_t t,zio_taskq_type_t q)841ec94d322SAdam Leventhal spa_taskqs_init(spa_t *spa, zio_type_t t, zio_taskq_type_t q)
84235a5a358SJonathan Adams {
843ec94d322SAdam Leventhal 	const zio_taskq_info_t *ztip = &zio_taskqs[t][q];
844ec94d322SAdam Leventhal 	enum zti_modes mode = ztip->zti_mode;
845ec94d322SAdam Leventhal 	uint_t value = ztip->zti_value;
846ec94d322SAdam Leventhal 	uint_t count = ztip->zti_count;
847ec94d322SAdam Leventhal 	spa_taskqs_t *tqs = &spa->spa_zio_taskq[t][q];
848ec94d322SAdam Leventhal 	char name[32];
8495aeb9474SGarrett D'Amore 	uint_t flags = 0;
85035a5a358SJonathan Adams 	boolean_t batch = B_FALSE;
85135a5a358SJonathan Adams 
852ec94d322SAdam Leventhal 	if (mode == ZTI_MODE_NULL) {
853ec94d322SAdam Leventhal 		tqs->stqs_count = 0;
854ec94d322SAdam Leventhal 		tqs->stqs_taskq = NULL;
855ec94d322SAdam Leventhal 		return;
856ec94d322SAdam Leventhal 	}
85735a5a358SJonathan Adams 
858ec94d322SAdam Leventhal 	ASSERT3U(count, >, 0);
859ec94d322SAdam Leventhal 
860ec94d322SAdam Leventhal 	tqs->stqs_count = count;
861ec94d322SAdam Leventhal 	tqs->stqs_taskq = kmem_alloc(count * sizeof (taskq_t *), KM_SLEEP);
862ec94d322SAdam Leventhal 
863ec94d322SAdam Leventhal 	switch (mode) {
864ec94d322SAdam Leventhal 	case ZTI_MODE_FIXED:
86535a5a358SJonathan Adams 		ASSERT3U(value, >=, 1);
86635a5a358SJonathan Adams 		value = MAX(value, 1);
86735a5a358SJonathan Adams 		break;
86835a5a358SJonathan Adams 
869ec94d322SAdam Leventhal 	case ZTI_MODE_BATCH:
87035a5a358SJonathan Adams 		batch = B_TRUE;
87135a5a358SJonathan Adams 		flags |= TASKQ_THREADS_CPU_PCT;
87235a5a358SJonathan Adams 		value = zio_taskq_batch_pct;
87335a5a358SJonathan Adams 		break;
87435a5a358SJonathan Adams 
87535a5a358SJonathan Adams 	default:
876ec94d322SAdam Leventhal 		panic("unrecognized mode for %s_%s taskq (%u:%u) in "
87735a5a358SJonathan Adams 		    "spa_activate()",
878ec94d322SAdam Leventhal 		    zio_type_name[t], zio_taskq_types[q], mode, value);
87935a5a358SJonathan Adams 		break;
88035a5a358SJonathan Adams 	}
88135a5a358SJonathan Adams 
88269962b56SMatthew Ahrens 	for (uint_t i = 0; i < count; i++) {
88369962b56SMatthew Ahrens 		taskq_t *tq;
88469962b56SMatthew Ahrens 
885ec94d322SAdam Leventhal 		if (count > 1) {
886ec94d322SAdam Leventhal 			(void) snprintf(name, sizeof (name), "%s_%s_%u",
887ec94d322SAdam Leventhal 			    zio_type_name[t], zio_taskq_types[q], i);
888ec94d322SAdam Leventhal 		} else {
889ec94d322SAdam Leventhal 			(void) snprintf(name, sizeof (name), "%s_%s",
890ec94d322SAdam Leventhal 			    zio_type_name[t], zio_taskq_types[q]);
891ec94d322SAdam Leventhal 		}
892ec94d322SAdam Leventhal 
89335a5a358SJonathan Adams 		if (zio_taskq_sysdc && spa->spa_proc != &p0) {
89435a5a358SJonathan Adams 			if (batch)
89535a5a358SJonathan Adams 				flags |= TASKQ_DC_BATCH;
89635a5a358SJonathan Adams 
897ec94d322SAdam Leventhal 			tq = taskq_create_sysdc(name, value, 50, INT_MAX,
898ec94d322SAdam Leventhal 			    spa->spa_proc, zio_taskq_basedc, flags);
899ec94d322SAdam Leventhal 		} else {
90069962b56SMatthew Ahrens 			pri_t pri = maxclsyspri;
90169962b56SMatthew Ahrens 			/*
90269962b56SMatthew Ahrens 			 * The write issue taskq can be extremely CPU
90369962b56SMatthew Ahrens 			 * intensive.  Run it at slightly lower priority
90469962b56SMatthew Ahrens 			 * than the other taskqs.
90569962b56SMatthew Ahrens 			 */
90669962b56SMatthew Ahrens 			if (t == ZIO_TYPE_WRITE && q == ZIO_TASKQ_ISSUE)
90769962b56SMatthew Ahrens 				pri--;
90869962b56SMatthew Ahrens 
90969962b56SMatthew Ahrens 			tq = taskq_create_proc(name, value, pri, 50,
910ec94d322SAdam Leventhal 			    INT_MAX, spa->spa_proc, flags);
91135a5a358SJonathan Adams 		}
912ec94d322SAdam Leventhal 
913ec94d322SAdam Leventhal 		tqs->stqs_taskq[i] = tq;
914ec94d322SAdam Leventhal 	}
915ec94d322SAdam Leventhal }
916ec94d322SAdam Leventhal 
917ec94d322SAdam Leventhal static void
spa_taskqs_fini(spa_t * spa,zio_type_t t,zio_taskq_type_t q)918ec94d322SAdam Leventhal spa_taskqs_fini(spa_t *spa, zio_type_t t, zio_taskq_type_t q)
919ec94d322SAdam Leventhal {
920ec94d322SAdam Leventhal 	spa_taskqs_t *tqs = &spa->spa_zio_taskq[t][q];
921ec94d322SAdam Leventhal 
922ec94d322SAdam Leventhal 	if (tqs->stqs_taskq == NULL) {
923ec94d322SAdam Leventhal 		ASSERT0(tqs->stqs_count);
924ec94d322SAdam Leventhal 		return;
925ec94d322SAdam Leventhal 	}
926ec94d322SAdam Leventhal 
927ec94d322SAdam Leventhal 	for (uint_t i = 0; i < tqs->stqs_count; i++) {
928ec94d322SAdam Leventhal 		ASSERT3P(tqs->stqs_taskq[i], !=, NULL);
929ec94d322SAdam Leventhal 		taskq_destroy(tqs->stqs_taskq[i]);
930ec94d322SAdam Leventhal 	}
931ec94d322SAdam Leventhal 
932ec94d322SAdam Leventhal 	kmem_free(tqs->stqs_taskq, tqs->stqs_count * sizeof (taskq_t *));
933ec94d322SAdam Leventhal 	tqs->stqs_taskq = NULL;
934ec94d322SAdam Leventhal }
935ec94d322SAdam Leventhal 
936ec94d322SAdam Leventhal /*
937ec94d322SAdam Leventhal  * Dispatch a task to the appropriate taskq for the ZFS I/O type and priority.
938ec94d322SAdam Leventhal  * Note that a type may have multiple discrete taskqs to avoid lock contention
939ec94d322SAdam Leventhal  * on the taskq itself. In that case we choose which taskq at random by using
940ec94d322SAdam Leventhal  * the low bits of gethrtime().
941ec94d322SAdam Leventhal  */
942ec94d322SAdam Leventhal void
spa_taskq_dispatch_ent(spa_t * spa,zio_type_t t,zio_taskq_type_t q,task_func_t * func,void * arg,uint_t flags,taskq_ent_t * ent)943ec94d322SAdam Leventhal spa_taskq_dispatch_ent(spa_t *spa, zio_type_t t, zio_taskq_type_t q,
944ec94d322SAdam Leventhal     task_func_t *func, void *arg, uint_t flags, taskq_ent_t *ent)
945ec94d322SAdam Leventhal {
946ec94d322SAdam Leventhal 	spa_taskqs_t *tqs = &spa->spa_zio_taskq[t][q];
947ec94d322SAdam Leventhal 	taskq_t *tq;
948ec94d322SAdam Leventhal 
949ec94d322SAdam Leventhal 	ASSERT3P(tqs->stqs_taskq, !=, NULL);
950ec94d322SAdam Leventhal 	ASSERT3U(tqs->stqs_count, !=, 0);
951ec94d322SAdam Leventhal 
952ec94d322SAdam Leventhal 	if (tqs->stqs_count == 1) {
953ec94d322SAdam Leventhal 		tq = tqs->stqs_taskq[0];
954ec94d322SAdam Leventhal 	} else {
955ec94d322SAdam Leventhal 		tq = tqs->stqs_taskq[gethrtime() % tqs->stqs_count];
956ec94d322SAdam Leventhal 	}
957ec94d322SAdam Leventhal 
958ec94d322SAdam Leventhal 	taskq_dispatch_ent(tq, func, arg, flags, ent);
95935a5a358SJonathan Adams }
96035a5a358SJonathan Adams 
96135a5a358SJonathan Adams static void
spa_create_zio_taskqs(spa_t * spa)96235a5a358SJonathan Adams spa_create_zio_taskqs(spa_t *spa)
96335a5a358SJonathan Adams {
96435a5a358SJonathan Adams 	for (int t = 0; t < ZIO_TYPES; t++) {
96535a5a358SJonathan Adams 		for (int q = 0; q < ZIO_TASKQ_TYPES; q++) {
966ec94d322SAdam Leventhal 			spa_taskqs_init(spa, t, q);
96735a5a358SJonathan Adams 		}
96835a5a358SJonathan Adams 	}
96935a5a358SJonathan Adams }
97035a5a358SJonathan Adams 
97135a5a358SJonathan Adams #ifdef _KERNEL
97235a5a358SJonathan Adams static void
spa_thread(void * arg)97335a5a358SJonathan Adams spa_thread(void *arg)
97435a5a358SJonathan Adams {
97535a5a358SJonathan Adams 	callb_cpr_t cprinfo;
97635a5a358SJonathan Adams 
97735a5a358SJonathan Adams 	spa_t *spa = arg;
97835a5a358SJonathan Adams 	user_t *pu = PTOU(curproc);
97935a5a358SJonathan Adams 
98035a5a358SJonathan Adams 	CALLB_CPR_INIT(&cprinfo, &spa->spa_proc_lock, callb_generic_cpr,
98135a5a358SJonathan Adams 	    spa->spa_name);
98235a5a358SJonathan Adams 
98335a5a358SJonathan Adams 	ASSERT(curproc != &p0);
98435a5a358SJonathan Adams 	(void) snprintf(pu->u_psargs, sizeof (pu->u_psargs),
98535a5a358SJonathan Adams 	    "zpool-%s", spa->spa_name);
98635a5a358SJonathan Adams 	(void) strlcpy(pu->u_comm, pu->u_psargs, sizeof (pu->u_comm));
98735a5a358SJonathan Adams 
98835a5a358SJonathan Adams 	/* bind this thread to the requested psrset */
98935a5a358SJonathan Adams 	if (zio_taskq_psrset_bind != PS_NONE) {
99035a5a358SJonathan Adams 		pool_lock();
99135a5a358SJonathan Adams 		mutex_enter(&cpu_lock);
99235a5a358SJonathan Adams 		mutex_enter(&pidlock);
99335a5a358SJonathan Adams 		mutex_enter(&curproc->p_lock);
99435a5a358SJonathan Adams 
99535a5a358SJonathan Adams 		if (cpupart_bind_thread(curthread, zio_taskq_psrset_bind,
99635a5a358SJonathan Adams 		    0, NULL, NULL) == 0)  {
99735a5a358SJonathan Adams 			curthread->t_bind_pset = zio_taskq_psrset_bind;
99835a5a358SJonathan Adams 		} else {
99935a5a358SJonathan Adams 			cmn_err(CE_WARN,
100035a5a358SJonathan Adams 			    "Couldn't bind process for zfs pool \"%s\" to "
100135a5a358SJonathan Adams 			    "pset %d\n", spa->spa_name, zio_taskq_psrset_bind);
100235a5a358SJonathan Adams 		}
100335a5a358SJonathan Adams 
100435a5a358SJonathan Adams 		mutex_exit(&curproc->p_lock);
100535a5a358SJonathan Adams 		mutex_exit(&pidlock);
100635a5a358SJonathan Adams 		mutex_exit(&cpu_lock);
100735a5a358SJonathan Adams 		pool_unlock();
100835a5a358SJonathan Adams 	}
100935a5a358SJonathan Adams 
101035a5a358SJonathan Adams 	if (zio_taskq_sysdc) {
101135a5a358SJonathan Adams 		sysdc_thread_enter(curthread, 100, 0);
101235a5a358SJonathan Adams 	}
101335a5a358SJonathan Adams 
101435a5a358SJonathan Adams 	spa->spa_proc = curproc;
101535a5a358SJonathan Adams 	spa->spa_did = curthread->t_did;
101635a5a358SJonathan Adams 
101735a5a358SJonathan Adams 	spa_create_zio_taskqs(spa);
101835a5a358SJonathan Adams 
101935a5a358SJonathan Adams 	mutex_enter(&spa->spa_proc_lock);
102035a5a358SJonathan Adams 	ASSERT(spa->spa_proc_state == SPA_PROC_CREATED);
102135a5a358SJonathan Adams 
102235a5a358SJonathan Adams 	spa->spa_proc_state = SPA_PROC_ACTIVE;
102335a5a358SJonathan Adams 	cv_broadcast(&spa->spa_proc_cv);
102435a5a358SJonathan Adams 
102535a5a358SJonathan Adams 	CALLB_CPR_SAFE_BEGIN(&cprinfo);
102635a5a358SJonathan Adams 	while (spa->spa_proc_state == SPA_PROC_ACTIVE)
102735a5a358SJonathan Adams 		cv_wait(&spa->spa_proc_cv, &spa->spa_proc_lock);
102835a5a358SJonathan Adams 	CALLB_CPR_SAFE_END(&cprinfo, &spa->spa_proc_lock);
102935a5a358SJonathan Adams 
103035a5a358SJonathan Adams 	ASSERT(spa->spa_proc_state == SPA_PROC_DEACTIVATE);
103135a5a358SJonathan Adams 	spa->spa_proc_state = SPA_PROC_GONE;
103235a5a358SJonathan Adams 	spa->spa_proc = &p0;
103335a5a358SJonathan Adams 	cv_broadcast(&spa->spa_proc_cv);
103435a5a358SJonathan Adams 	CALLB_CPR_EXIT(&cprinfo);	/* drops spa_proc_lock */
103535a5a358SJonathan Adams 
103635a5a358SJonathan Adams 	mutex_enter(&curproc->p_lock);
103735a5a358SJonathan Adams 	lwp_exit();
103835a5a358SJonathan Adams }
103935a5a358SJonathan Adams #endif
104035a5a358SJonathan Adams 
1041fa9e4066Sahrens /*
1042fa9e4066Sahrens  * Activate an uninitialized pool.
1043fa9e4066Sahrens  */
1044fa9e4066Sahrens static void
spa_activate(spa_t * spa,int mode)10458ad4d6ddSJeff Bonwick spa_activate(spa_t *spa, int mode)
1046fa9e4066Sahrens {
1047fa9e4066Sahrens 	ASSERT(spa->spa_state == POOL_STATE_UNINITIALIZED);
1048fa9e4066Sahrens 
1049fa9e4066Sahrens 	spa->spa_state = POOL_STATE_ACTIVE;
10508ad4d6ddSJeff Bonwick 	spa->spa_mode = mode;
1051fa9e4066Sahrens 
105288ecc943SGeorge Wilson 	spa->spa_normal_class = metaslab_class_create(spa, zfs_metaslab_ops);
105388ecc943SGeorge Wilson 	spa->spa_log_class = metaslab_class_create(spa, zfs_metaslab_ops);
1054fa9e4066Sahrens 
105535a5a358SJonathan Adams 	/* Try to create a covering process */
105635a5a358SJonathan Adams 	mutex_enter(&spa->spa_proc_lock);
105735a5a358SJonathan Adams 	ASSERT(spa->spa_proc_state == SPA_PROC_NONE);
105835a5a358SJonathan Adams 	ASSERT(spa->spa_proc == &p0);
105935a5a358SJonathan Adams 	spa->spa_did = 0;
10602e0c549eSJonathan Adams 
106135a5a358SJonathan Adams 	/* Only create a process if we're going to be around a while. */
106235a5a358SJonathan Adams 	if (spa_create_process && strcmp(spa->spa_name, TRYIMPORT_NAME) != 0) {
106335a5a358SJonathan Adams 		if (newproc(spa_thread, (caddr_t)spa, syscid, maxclsyspri,
106435a5a358SJonathan Adams 		    NULL, 0) == 0) {
106535a5a358SJonathan Adams 			spa->spa_proc_state = SPA_PROC_CREATED;
106635a5a358SJonathan Adams 			while (spa->spa_proc_state == SPA_PROC_CREATED) {
106735a5a358SJonathan Adams 				cv_wait(&spa->spa_proc_cv,
106835a5a358SJonathan Adams 				    &spa->spa_proc_lock);
10692e0c549eSJonathan Adams 			}
107035a5a358SJonathan Adams 			ASSERT(spa->spa_proc_state == SPA_PROC_ACTIVE);
107135a5a358SJonathan Adams 			ASSERT(spa->spa_proc != &p0);
107235a5a358SJonathan Adams 			ASSERT(spa->spa_did != 0);
107335a5a358SJonathan Adams 		} else {
107435a5a358SJonathan Adams #ifdef _KERNEL
107535a5a358SJonathan Adams 			cmn_err(CE_WARN,
107635a5a358SJonathan Adams 			    "Couldn't create process for zfs pool \"%s\"\n",
107735a5a358SJonathan Adams 			    spa->spa_name);
107835a5a358SJonathan Adams #endif
10792e0c549eSJonathan Adams 		}
1080e14bb325SJeff Bonwick 	}
108135a5a358SJonathan Adams 	mutex_exit(&spa->spa_proc_lock);
108235a5a358SJonathan Adams 
108335a5a358SJonathan Adams 	/* If we didn't create a process, we need to create our taskqs. */
108435a5a358SJonathan Adams 	if (spa->spa_proc == &p0) {
108535a5a358SJonathan Adams 		spa_create_zio_taskqs(spa);
1086fa9e4066Sahrens 	}
1087fa9e4066Sahrens 
1088e14bb325SJeff Bonwick 	list_create(&spa->spa_config_dirty_list, sizeof (vdev_t),
1089e14bb325SJeff Bonwick 	    offsetof(vdev_t, vdev_config_dirty_node));
1090bc9014e6SJustin Gibbs 	list_create(&spa->spa_evicting_os_list, sizeof (objset_t),
1091bc9014e6SJustin Gibbs 	    offsetof(objset_t, os_evicting_node));
1092e14bb325SJeff Bonwick 	list_create(&spa->spa_state_dirty_list, sizeof (vdev_t),
1093e14bb325SJeff Bonwick 	    offsetof(vdev_t, vdev_state_dirty_node));
1094fa9e4066Sahrens 
1095fa9e4066Sahrens 	txg_list_create(&spa->spa_vdev_txg_list,
1096fa9e4066Sahrens 	    offsetof(struct vdev, vdev_txg_node));
1097ea8dc4b6Seschrock 
1098ea8dc4b6Seschrock 	avl_create(&spa->spa_errlist_scrub,
1099ea8dc4b6Seschrock 	    spa_error_entry_compare, sizeof (spa_error_entry_t),
1100ea8dc4b6Seschrock 	    offsetof(spa_error_entry_t, se_avl));
1101ea8dc4b6Seschrock 	avl_create(&spa->spa_errlist_last,
1102ea8dc4b6Seschrock 	    spa_error_entry_compare, sizeof (spa_error_entry_t),
1103ea8dc4b6Seschrock 	    offsetof(spa_error_entry_t, se_avl));
1104fa9e4066Sahrens }
1105fa9e4066Sahrens 
1106fa9e4066Sahrens /*
1107fa9e4066Sahrens  * Opposite of spa_activate().
1108fa9e4066Sahrens  */
1109fa9e4066Sahrens static void
spa_deactivate(spa_t * spa)1110fa9e4066Sahrens spa_deactivate(spa_t *spa)
1111fa9e4066Sahrens {
1112fa9e4066Sahrens 	ASSERT(spa->spa_sync_on == B_FALSE);
1113fa9e4066Sahrens 	ASSERT(spa->spa_dsl_pool == NULL);
1114fa9e4066Sahrens 	ASSERT(spa->spa_root_vdev == NULL);
111525f89ee2SJeff Bonwick 	ASSERT(spa->spa_async_zio_root == NULL);
1116fa9e4066Sahrens 	ASSERT(spa->spa_state != POOL_STATE_UNINITIALIZED);
1117fa9e4066Sahrens 
1118bc9014e6SJustin Gibbs 	spa_evicting_os_wait(spa);
1119bc9014e6SJustin Gibbs 
1120fa9e4066Sahrens 	txg_list_destroy(&spa->spa_vdev_txg_list);
1121fa9e4066Sahrens 
1122e14bb325SJeff Bonwick 	list_destroy(&spa->spa_config_dirty_list);
1123bc9014e6SJustin Gibbs 	list_destroy(&spa->spa_evicting_os_list);
1124e14bb325SJeff Bonwick 	list_destroy(&spa->spa_state_dirty_list);
1125fa9e4066Sahrens 
1126e14bb325SJeff Bonwick 	for (int t = 0; t < ZIO_TYPES; t++) {
1127e14bb325SJeff Bonwick 		for (int q = 0; q < ZIO_TASKQ_TYPES; q++) {
1128ec94d322SAdam Leventhal 			spa_taskqs_fini(spa, t, q);
1129e14bb325SJeff Bonwick 		}
1130fa9e4066Sahrens 	}
1131fa9e4066Sahrens 
1132fa9e4066Sahrens 	metaslab_class_destroy(spa->spa_normal_class);
1133fa9e4066Sahrens 	spa->spa_normal_class = NULL;
1134fa9e4066Sahrens 
11358654d025Sperrin 	metaslab_class_destroy(spa->spa_log_class);
11368654d025Sperrin 	spa->spa_log_class = NULL;
11378654d025Sperrin 
1138ea8dc4b6Seschrock 	/*
1139ea8dc4b6Seschrock 	 * If this was part of an import or the open otherwise failed, we may
1140ea8dc4b6Seschrock 	 * still have errors left in the queues.  Empty them just in case.
1141ea8dc4b6Seschrock 	 */
1142ea8dc4b6Seschrock 	spa_errlog_drain(spa);
1143ea8dc4b6Seschrock 
1144ea8dc4b6Seschrock 	avl_destroy(&spa->spa_errlist_scrub);
1145ea8dc4b6Seschrock 	avl_destroy(&spa->spa_errlist_last);
1146ea8dc4b6Seschrock 
1147fa9e4066Sahrens 	spa->spa_state = POOL_STATE_UNINITIALIZED;
114835a5a358SJonathan Adams 
114935a5a358SJonathan Adams 	mutex_enter(&spa->spa_proc_lock);
115035a5a358SJonathan Adams 	if (spa->spa_proc_state != SPA_PROC_NONE) {
115135a5a358SJonathan Adams 		ASSERT(spa->spa_proc_state == SPA_PROC_ACTIVE);
115235a5a358SJonathan Adams 		spa->spa_proc_state = SPA_PROC_DEACTIVATE;
115335a5a358SJonathan Adams 		cv_broadcast(&spa->spa_proc_cv);
115435a5a358SJonathan Adams 		while (spa->spa_proc_state == SPA_PROC_DEACTIVATE) {
115535a5a358SJonathan Adams 			ASSERT(spa->spa_proc != &p0);
115635a5a358SJonathan Adams 			cv_wait(&spa->spa_proc_cv, &spa->spa_proc_lock);
115735a5a358SJonathan Adams 		}
115835a5a358SJonathan Adams 		ASSERT(spa->spa_proc_state == SPA_PROC_GONE);
115935a5a358SJonathan Adams 		spa->spa_proc_state = SPA_PROC_NONE;
116035a5a358SJonathan Adams 	}
116135a5a358SJonathan Adams 	ASSERT(spa->spa_proc == &p0);
116235a5a358SJonathan Adams 	mutex_exit(&spa->spa_proc_lock);
116335a5a358SJonathan Adams 
116435a5a358SJonathan Adams 	/*
116535a5a358SJonathan Adams 	 * We want to make sure spa_thread() has actually exited the ZFS
116635a5a358SJonathan Adams 	 * module, so that the module can't be unloaded out from underneath
116735a5a358SJonathan Adams 	 * it.
116835a5a358SJonathan Adams 	 */
116935a5a358SJonathan Adams 	if (spa->spa_did != 0) {
117035a5a358SJonathan Adams 		thread_join(spa->spa_did);
117135a5a358SJonathan Adams 		spa->spa_did = 0;
117235a5a358SJonathan Adams 	}
1173fa9e4066Sahrens }
1174fa9e4066Sahrens 
1175fa9e4066Sahrens /*
1176fa9e4066Sahrens  * Verify a pool configuration, and construct the vdev tree appropriately.  This
1177fa9e4066Sahrens  * will create all the necessary vdevs in the appropriate layout, with each vdev
1178fa9e4066Sahrens  * in the CLOSED state.  This will prep the pool before open/creation/import.
1179fa9e4066Sahrens  * All vdev validation is done by the vdev_alloc() routine.
1180fa9e4066Sahrens  */
118199653d4eSeschrock static int
spa_config_parse(spa_t * spa,vdev_t ** vdp,nvlist_t * nv,vdev_t * parent,uint_t id,int atype)118299653d4eSeschrock spa_config_parse(spa_t *spa, vdev_t **vdp, nvlist_t *nv, vdev_t *parent,
118399653d4eSeschrock     uint_t id, int atype)
1184fa9e4066Sahrens {
1185fa9e4066Sahrens 	nvlist_t **child;
1186573ca77eSGeorge Wilson 	uint_t children;
118799653d4eSeschrock 	int error;
1188fa9e4066Sahrens 
118999653d4eSeschrock 	if ((error = vdev_alloc(spa, vdp, nv, parent, id, atype)) != 0)
119099653d4eSeschrock 		return (error);
1191fa9e4066Sahrens 
119299653d4eSeschrock 	if ((*vdp)->vdev_ops->vdev_op_leaf)
119399653d4eSeschrock 		return (0);
1194fa9e4066Sahrens 
1195e14bb325SJeff Bonwick 	error = nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_CHILDREN,
1196e14bb325SJeff Bonwick 	    &child, &children);
1197e14bb325SJeff Bonwick 
1198e14bb325SJeff Bonwick 	if (error == ENOENT)
1199e14bb325SJeff Bonwick 		return (0);
1200e14bb325SJeff Bonwick 
1201e14bb325SJeff Bonwick 	if (error) {
120299653d4eSeschrock 		vdev_free(*vdp);
120399653d4eSeschrock 		*vdp = NULL;
1204be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
1205fa9e4066Sahrens 	}
1206fa9e4066Sahrens 
1207573ca77eSGeorge Wilson 	for (int c = 0; c < children; c++) {
120899653d4eSeschrock 		vdev_t *vd;
120999653d4eSeschrock 		if ((error = spa_config_parse(spa, &vd, child[c], *vdp, c,
121099653d4eSeschrock 		    atype)) != 0) {
121199653d4eSeschrock 			vdev_free(*vdp);
121299653d4eSeschrock 			*vdp = NULL;
121399653d4eSeschrock 			return (error);
1214fa9e4066Sahrens 		}
1215fa9e4066Sahrens 	}
1216fa9e4066Sahrens 
121799653d4eSeschrock 	ASSERT(*vdp != NULL);
121899653d4eSeschrock 
121999653d4eSeschrock 	return (0);
1220fa9e4066Sahrens }
1221fa9e4066Sahrens 
1222fa9e4066Sahrens /*
1223fa9e4066Sahrens  * Opposite of spa_load().
1224fa9e4066Sahrens  */
1225fa9e4066Sahrens static void
spa_unload(spa_t * spa)1226fa9e4066Sahrens spa_unload(spa_t *spa)
1227fa9e4066Sahrens {
122899653d4eSeschrock 	int i;
122999653d4eSeschrock 
1230e14bb325SJeff Bonwick 	ASSERT(MUTEX_HELD(&spa_namespace_lock));
1231e14bb325SJeff Bonwick 
1232fa9e4066Sahrens 	/*
1233ea8dc4b6Seschrock 	 * Stop async tasks.
1234ea8dc4b6Seschrock 	 */
1235ea8dc4b6Seschrock 	spa_async_suspend(spa);
1236ea8dc4b6Seschrock 
1237ea8dc4b6Seschrock 	/*
1238fa9e4066Sahrens 	 * Stop syncing.
1239fa9e4066Sahrens 	 */
1240fa9e4066Sahrens 	if (spa->spa_sync_on) {
1241fa9e4066Sahrens 		txg_sync_stop(spa->spa_dsl_pool);
1242fa9e4066Sahrens 		spa->spa_sync_on = B_FALSE;
1243fa9e4066Sahrens 	}
1244fa9e4066Sahrens 
1245fa9e4066Sahrens 	/*
1246e14bb325SJeff Bonwick 	 * Wait for any outstanding async I/O to complete.
1247fa9e4066Sahrens 	 */
124854d692b7SGeorge Wilson 	if (spa->spa_async_zio_root != NULL) {
12496f834bc1SMatthew Ahrens 		for (int i = 0; i < max_ncpus; i++)
12506f834bc1SMatthew Ahrens 			(void) zio_wait(spa->spa_async_zio_root[i]);
12516f834bc1SMatthew Ahrens 		kmem_free(spa->spa_async_zio_root, max_ncpus * sizeof (void *));
125254d692b7SGeorge Wilson 		spa->spa_async_zio_root = NULL;
125354d692b7SGeorge Wilson 	}
1254fa9e4066Sahrens 
1255cde58dbcSMatthew Ahrens 	bpobj_close(&spa->spa_deferred_bpobj);
1256cde58dbcSMatthew Ahrens 
12570713e232SGeorge Wilson 	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
12580713e232SGeorge Wilson 
12590713e232SGeorge Wilson 	/*
12600713e232SGeorge Wilson 	 * Close all vdevs.
12610713e232SGeorge Wilson 	 */
12620713e232SGeorge Wilson 	if (spa->spa_root_vdev)
12630713e232SGeorge Wilson 		vdev_free(spa->spa_root_vdev);
12640713e232SGeorge Wilson 	ASSERT(spa->spa_root_vdev == NULL);
12650713e232SGeorge Wilson 
1266fa9e4066Sahrens 	/*
1267fa9e4066Sahrens 	 * Close the dsl pool.
1268fa9e4066Sahrens 	 */
1269fa9e4066Sahrens 	if (spa->spa_dsl_pool) {
1270fa9e4066Sahrens 		dsl_pool_close(spa->spa_dsl_pool);
1271fa9e4066Sahrens 		spa->spa_dsl_pool = NULL;
1272afee20e4SGeorge Wilson 		spa->spa_meta_objset = NULL;
1273fa9e4066Sahrens 	}
1274fa9e4066Sahrens 
1275b24ab676SJeff Bonwick 	ddt_unload(spa);
1276b24ab676SJeff Bonwick 
12778ad4d6ddSJeff Bonwick 
12788ad4d6ddSJeff Bonwick 	/*
12798ad4d6ddSJeff Bonwick 	 * Drop and purge level 2 cache
12808ad4d6ddSJeff Bonwick 	 */
12818ad4d6ddSJeff Bonwick 	spa_l2cache_drop(spa);
12828ad4d6ddSJeff Bonwick 
1283fa94a07fSbrendan 	for (i = 0; i < spa->spa_spares.sav_count; i++)
1284fa94a07fSbrendan 		vdev_free(spa->spa_spares.sav_vdevs[i]);
1285fa94a07fSbrendan 	if (spa->spa_spares.sav_vdevs) {
1286fa94a07fSbrendan 		kmem_free(spa->spa_spares.sav_vdevs,
1287fa94a07fSbrendan 		    spa->spa_spares.sav_count * sizeof (void *));
1288fa94a07fSbrendan 		spa->spa_spares.sav_vdevs = NULL;
128999653d4eSeschrock 	}
1290fa94a07fSbrendan 	if (spa->spa_spares.sav_config) {
1291fa94a07fSbrendan 		nvlist_free(spa->spa_spares.sav_config);
1292fa94a07fSbrendan 		spa->spa_spares.sav_config = NULL;
1293fa94a07fSbrendan 	}
12942ce8af81SEric Schrock 	spa->spa_spares.sav_count = 0;
1295fa94a07fSbrendan 
1296cd0837ccSGeorge Wilson 	for (i = 0; i < spa->spa_l2cache.sav_count; i++) {
1297cd0837ccSGeorge Wilson 		vdev_clear_stats(spa->spa_l2cache.sav_vdevs[i]);
1298fa94a07fSbrendan 		vdev_free(spa->spa_l2cache.sav_vdevs[i]);
1299cd0837ccSGeorge Wilson 	}
1300fa94a07fSbrendan 	if (spa->spa_l2cache.sav_vdevs) {
1301fa94a07fSbrendan 		kmem_free(spa->spa_l2cache.sav_vdevs,
1302fa94a07fSbrendan 		    spa->spa_l2cache.sav_count * sizeof (void *));
1303fa94a07fSbrendan 		spa->spa_l2cache.sav_vdevs = NULL;
1304fa94a07fSbrendan 	}
1305fa94a07fSbrendan 	if (spa->spa_l2cache.sav_config) {
1306fa94a07fSbrendan 		nvlist_free(spa->spa_l2cache.sav_config);
1307fa94a07fSbrendan 		spa->spa_l2cache.sav_config = NULL;
130899653d4eSeschrock 	}
13092ce8af81SEric Schrock 	spa->spa_l2cache.sav_count = 0;
131099653d4eSeschrock 
1311ea8dc4b6Seschrock 	spa->spa_async_suspended = 0;
13128ad4d6ddSJeff Bonwick 
13138704186eSDan McDonald 	if (spa->spa_comment != NULL) {
13148704186eSDan McDonald 		spa_strfree(spa->spa_comment);
13158704186eSDan McDonald 		spa->spa_comment = NULL;
13168704186eSDan McDonald 	}
13178704186eSDan McDonald 
13188ad4d6ddSJeff Bonwick 	spa_config_exit(spa, SCL_ALL, FTAG);
1319fa9e4066Sahrens }
1320fa9e4066Sahrens 
1321fa9e4066Sahrens /*
132299653d4eSeschrock  * Load (or re-load) the current list of vdevs describing the active spares for
132399653d4eSeschrock  * this pool.  When this is called, we have some form of basic information in
1324fa94a07fSbrendan  * 'spa_spares.sav_config'.  We parse this into vdevs, try to open them, and
1325fa94a07fSbrendan  * then re-generate a more complete list including status information.
132699653d4eSeschrock  */
132799653d4eSeschrock static void
spa_load_spares(spa_t * spa)132899653d4eSeschrock spa_load_spares(spa_t *spa)
132999653d4eSeschrock {
133099653d4eSeschrock 	nvlist_t **spares;
133199653d4eSeschrock 	uint_t nspares;
133299653d4eSeschrock 	int i;
133339c23413Seschrock 	vdev_t *vd, *tvd;
133499653d4eSeschrock 
1335e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
1336e14bb325SJeff Bonwick 
133799653d4eSeschrock 	/*
133899653d4eSeschrock 	 * First, close and free any existing spare vdevs.
133999653d4eSeschrock 	 */
1340fa94a07fSbrendan 	for (i = 0; i < spa->spa_spares.sav_count; i++) {
1341fa94a07fSbrendan 		vd = spa->spa_spares.sav_vdevs[i];
134239c23413Seschrock 
134339c23413Seschrock 		/* Undo the call to spa_activate() below */
1344c5904d13Seschrock 		if ((tvd = spa_lookup_by_guid(spa, vd->vdev_guid,
1345c5904d13Seschrock 		    B_FALSE)) != NULL && tvd->vdev_isspare)
134639c23413Seschrock 			spa_spare_remove(tvd);
134739c23413Seschrock 		vdev_close(vd);
134839c23413Seschrock 		vdev_free(vd);
134999653d4eSeschrock 	}
135039c23413Seschrock 
1351fa94a07fSbrendan 	if (spa->spa_spares.sav_vdevs)
1352fa94a07fSbrendan 		kmem_free(spa->spa_spares.sav_vdevs,
1353fa94a07fSbrendan 		    spa->spa_spares.sav_count * sizeof (void *));
135499653d4eSeschrock 
1355fa94a07fSbrendan 	if (spa->spa_spares.sav_config == NULL)
135699653d4eSeschrock 		nspares = 0;
135799653d4eSeschrock 	else
1358fa94a07fSbrendan 		VERIFY(nvlist_lookup_nvlist_array(spa->spa_spares.sav_config,
135999653d4eSeschrock 		    ZPOOL_CONFIG_SPARES, &spares, &nspares) == 0);
136099653d4eSeschrock 
1361fa94a07fSbrendan 	spa->spa_spares.sav_count = (int)nspares;
1362fa94a07fSbrendan 	spa->spa_spares.sav_vdevs = NULL;
136399653d4eSeschrock 
136499653d4eSeschrock 	if (nspares == 0)
136599653d4eSeschrock 		return;
136699653d4eSeschrock 
136799653d4eSeschrock 	/*
136899653d4eSeschrock 	 * Construct the array of vdevs, opening them to get status in the
136939c23413Seschrock 	 * process.   For each spare, there is potentially two different vdev_t
137039c23413Seschrock 	 * structures associated with it: one in the list of spares (used only
137139c23413Seschrock 	 * for basic validation purposes) and one in the active vdev
137239c23413Seschrock 	 * configuration (if it's spared in).  During this phase we open and
137339c23413Seschrock 	 * validate each vdev on the spare list.  If the vdev also exists in the
137439c23413Seschrock 	 * active configuration, then we also mark this vdev as an active spare.
137599653d4eSeschrock 	 */
1376fa94a07fSbrendan 	spa->spa_spares.sav_vdevs = kmem_alloc(nspares * sizeof (void *),
1377fa94a07fSbrendan 	    KM_SLEEP);
1378fa94a07fSbrendan 	for (i = 0; i < spa->spa_spares.sav_count; i++) {
137999653d4eSeschrock 		VERIFY(spa_config_parse(spa, &vd, spares[i], NULL, 0,
138099653d4eSeschrock 		    VDEV_ALLOC_SPARE) == 0);
138199653d4eSeschrock 		ASSERT(vd != NULL);
138299653d4eSeschrock 
1383fa94a07fSbrendan 		spa->spa_spares.sav_vdevs[i] = vd;
138499653d4eSeschrock 
1385c5904d13Seschrock 		if ((tvd = spa_lookup_by_guid(spa, vd->vdev_guid,
1386c5904d13Seschrock 		    B_FALSE)) != NULL) {
138739c23413Seschrock 			if (!tvd->vdev_isspare)
138839c23413Seschrock 				spa_spare_add(tvd);
138939c23413Seschrock 
139039c23413Seschrock 			/*
139139c23413Seschrock 			 * We only mark the spare active if we were successfully
139239c23413Seschrock 			 * able to load the vdev.  Otherwise, importing a pool
139339c23413Seschrock 			 * with a bad active spare would result in strange
139439c23413Seschrock 			 * behavior, because multiple pool would think the spare
139539c23413Seschrock 			 * is actively in use.
139639c23413Seschrock 			 *
139739c23413Seschrock 			 * There is a vulnerability here to an equally bizarre
139839c23413Seschrock 			 * circumstance, where a dead active spare is later
139939c23413Seschrock 			 * brought back to life (onlined or otherwise).  Given
140039c23413Seschrock 			 * the rarity of this scenario, and the extra complexity
140139c23413Seschrock 			 * it adds, we ignore the possibility.
140239c23413Seschrock 			 */
140339c23413Seschrock 			if (!vdev_is_dead(tvd))
140439c23413Seschrock 				spa_spare_activate(tvd);
140539c23413Seschrock 		}
140639c23413Seschrock 
1407e14bb325SJeff Bonwick 		vd->vdev_top = vd;
14086809eb4eSEric Schrock 		vd->vdev_aux = &spa->spa_spares;
1409e14bb325SJeff Bonwick 
141099653d4eSeschrock 		if (vdev_open(vd) != 0)
141199653d4eSeschrock 			continue;
141299653d4eSeschrock 
1413fa94a07fSbrendan 		if (vdev_validate_aux(vd) == 0)
1414fa94a07fSbrendan 			spa_spare_add(vd);
141599653d4eSeschrock 	}
141699653d4eSeschrock 
141799653d4eSeschrock 	/*
141899653d4eSeschrock 	 * Recompute the stashed list of spares, with status information
141999653d4eSeschrock 	 * this time.
142099653d4eSeschrock 	 */
1421fa94a07fSbrendan 	VERIFY(nvlist_remove(spa->spa_spares.sav_config, ZPOOL_CONFIG_SPARES,
142299653d4eSeschrock 	    DATA_TYPE_NVLIST_ARRAY) == 0);
142399653d4eSeschrock 
1424fa94a07fSbrendan 	spares = kmem_alloc(spa->spa_spares.sav_count * sizeof (void *),
1425fa94a07fSbrendan 	    KM_SLEEP);
1426fa94a07fSbrendan 	for (i = 0; i < spa->spa_spares.sav_count; i++)
1427fa94a07fSbrendan 		spares[i] = vdev_config_generate(spa,
14283f9d6ad7SLin Ling 		    spa->spa_spares.sav_vdevs[i], B_TRUE, VDEV_CONFIG_SPARE);
1429fa94a07fSbrendan 	VERIFY(nvlist_add_nvlist_array(spa->spa_spares.sav_config,
1430fa94a07fSbrendan 	    ZPOOL_CONFIG_SPARES, spares, spa->spa_spares.sav_count) == 0);
1431fa94a07fSbrendan 	for (i = 0; i < spa->spa_spares.sav_count; i++)
143299653d4eSeschrock 		nvlist_free(spares[i]);
1433fa94a07fSbrendan 	kmem_free(spares, spa->spa_spares.sav_count * sizeof (void *));
1434fa94a07fSbrendan }
1435fa94a07fSbrendan 
1436fa94a07fSbrendan /*
1437fa94a07fSbrendan  * Load (or re-load) the current list of vdevs describing the active l2cache for
1438fa94a07fSbrendan  * this pool.  When this is called, we have some form of basic information in
1439fa94a07fSbrendan  * 'spa_l2cache.sav_config'.  We parse this into vdevs, try to open them, and
1440fa94a07fSbrendan  * then re-generate a more complete list including status information.
1441fa94a07fSbrendan  * Devices which are already active have their details maintained, and are
1442fa94a07fSbrendan  * not re-opened.
1443fa94a07fSbrendan  */
1444fa94a07fSbrendan static void
spa_load_l2cache(spa_t * spa)1445fa94a07fSbrendan spa_load_l2cache(spa_t *spa)
1446fa94a07fSbrendan {
1447fa94a07fSbrendan 	nvlist_t **l2cache;
1448fa94a07fSbrendan 	uint_t nl2cache;
1449fa94a07fSbrendan 	int i, j, oldnvdevs;
1450573ca77eSGeorge Wilson 	uint64_t guid;
1451fa94a07fSbrendan 	vdev_t *vd, **oldvdevs, **newvdevs;
1452fa94a07fSbrendan 	spa_aux_vdev_t *sav = &spa->spa_l2cache;
1453fa94a07fSbrendan 
1454e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
1455e14bb325SJeff Bonwick 
1456fa94a07fSbrendan 	if (sav->sav_config != NULL) {
1457fa94a07fSbrendan 		VERIFY(nvlist_lookup_nvlist_array(sav->sav_config,
1458fa94a07fSbrendan 		    ZPOOL_CONFIG_L2CACHE, &l2cache, &nl2cache) == 0);
1459fa94a07fSbrendan 		newvdevs = kmem_alloc(nl2cache * sizeof (void *), KM_SLEEP);
1460fa94a07fSbrendan 	} else {
1461fa94a07fSbrendan 		nl2cache = 0;
1462d5285caeSGeorge Wilson 		newvdevs = NULL;
1463fa94a07fSbrendan 	}
1464fa94a07fSbrendan 
1465fa94a07fSbrendan 	oldvdevs = sav->sav_vdevs;
1466fa94a07fSbrendan 	oldnvdevs = sav->sav_count;
1467fa94a07fSbrendan 	sav->sav_vdevs = NULL;
1468fa94a07fSbrendan 	sav->sav_count = 0;
1469fa94a07fSbrendan 
1470fa94a07fSbrendan 	/*
1471fa94a07fSbrendan 	 * Process new nvlist of vdevs.
1472fa94a07fSbrendan 	 */
1473fa94a07fSbrendan 	for (i = 0; i < nl2cache; i++) {
1474fa94a07fSbrendan 		VERIFY(nvlist_lookup_uint64(l2cache[i], ZPOOL_CONFIG_GUID,
1475fa94a07fSbrendan 		    &guid) == 0);
1476fa94a07fSbrendan 
1477fa94a07fSbrendan 		newvdevs[i] = NULL;
1478fa94a07fSbrendan 		for (j = 0; j < oldnvdevs; j++) {
1479fa94a07fSbrendan 			vd = oldvdevs[j];
1480fa94a07fSbrendan 			if (vd != NULL && guid == vd->vdev_guid) {
1481fa94a07fSbrendan 				/*
1482fa94a07fSbrendan 				 * Retain previous vdev for add/remove ops.
1483fa94a07fSbrendan 				 */
1484fa94a07fSbrendan 				newvdevs[i] = vd;
1485fa94a07fSbrendan 				oldvdevs[j] = NULL;
1486fa94a07fSbrendan 				break;
1487fa94a07fSbrendan 			}
1488fa94a07fSbrendan 		}
1489fa94a07fSbrendan 
1490fa94a07fSbrendan 		if (newvdevs[i] == NULL) {
1491fa94a07fSbrendan 			/*
1492fa94a07fSbrendan 			 * Create new vdev
1493fa94a07fSbrendan 			 */
1494fa94a07fSbrendan 			VERIFY(spa_config_parse(spa, &vd, l2cache[i], NULL, 0,
1495fa94a07fSbrendan 			    VDEV_ALLOC_L2CACHE) == 0);
1496fa94a07fSbrendan 			ASSERT(vd != NULL);
1497fa94a07fSbrendan 			newvdevs[i] = vd;
1498fa94a07fSbrendan 
1499fa94a07fSbrendan 			/*
1500fa94a07fSbrendan 			 * Commit this vdev as an l2cache device,
1501fa94a07fSbrendan 			 * even if it fails to open.
1502fa94a07fSbrendan 			 */
1503fa94a07fSbrendan 			spa_l2cache_add(vd);
1504fa94a07fSbrendan 
1505c5904d13Seschrock 			vd->vdev_top = vd;
1506c5904d13Seschrock 			vd->vdev_aux = sav;
1507c5904d13Seschrock 
1508c5904d13Seschrock 			spa_l2cache_activate(vd);
1509c5904d13Seschrock 
1510fa94a07fSbrendan 			if (vdev_open(vd) != 0)
1511fa94a07fSbrendan 				continue;
1512fa94a07fSbrendan 
1513fa94a07fSbrendan 			(void) vdev_validate_aux(vd);
1514fa94a07fSbrendan 
15152142e035SSaso Kiselkov 			if (!vdev_is_dead(vd)) {
15162142e035SSaso Kiselkov 				boolean_t do_rebuild = B_FALSE;
15172142e035SSaso Kiselkov 
15182142e035SSaso Kiselkov 				(void) nvlist_lookup_boolean_value(l2cache[i],
15192142e035SSaso Kiselkov 				    ZPOOL_CONFIG_L2CACHE_PERSISTENT,
15202142e035SSaso Kiselkov 				    &do_rebuild);
15212142e035SSaso Kiselkov 				l2arc_add_vdev(spa, vd, do_rebuild);
15222142e035SSaso Kiselkov 			}
1523fa94a07fSbrendan 		}
1524fa94a07fSbrendan 	}
1525fa94a07fSbrendan 
1526fa94a07fSbrendan 	/*
1527fa94a07fSbrendan 	 * Purge vdevs that were dropped
1528fa94a07fSbrendan 	 */
1529fa94a07fSbrendan 	for (i = 0; i < oldnvdevs; i++) {
1530fa94a07fSbrendan 		uint64_t pool;
1531fa94a07fSbrendan 
1532fa94a07fSbrendan 		vd = oldvdevs[i];
1533fa94a07fSbrendan 		if (vd != NULL) {
1534cd0837ccSGeorge Wilson 			ASSERT(vd->vdev_isl2cache);
1535cd0837ccSGeorge Wilson 
15368ad4d6ddSJeff Bonwick 			if (spa_l2cache_exists(vd->vdev_guid, &pool) &&
15378ad4d6ddSJeff Bonwick 			    pool != 0ULL && l2arc_vdev_present(vd))
1538fa94a07fSbrendan 				l2arc_remove_vdev(vd);
1539cd0837ccSGeorge Wilson 			vdev_clear_stats(vd);
1540cd0837ccSGeorge Wilson 			vdev_free(vd);
1541fa94a07fSbrendan 		}
1542fa94a07fSbrendan 	}
1543fa94a07fSbrendan 
1544fa94a07fSbrendan 	if (oldvdevs)
1545fa94a07fSbrendan 		kmem_free(oldvdevs, oldnvdevs * sizeof (void *));
1546fa94a07fSbrendan 
1547fa94a07fSbrendan 	if (sav->sav_config == NULL)
1548fa94a07fSbrendan 		goto out;
1549fa94a07fSbrendan 
1550fa94a07fSbrendan 	sav->sav_vdevs = newvdevs;
1551fa94a07fSbrendan 	sav->sav_count = (int)nl2cache;
1552fa94a07fSbrendan 
1553fa94a07fSbrendan 	/*
1554fa94a07fSbrendan 	 * Recompute the stashed list of l2cache devices, with status
1555fa94a07fSbrendan 	 * information this time.
1556fa94a07fSbrendan 	 */
1557fa94a07fSbrendan 	VERIFY(nvlist_remove(sav->sav_config, ZPOOL_CONFIG_L2CACHE,
1558fa94a07fSbrendan 	    DATA_TYPE_NVLIST_ARRAY) == 0);
1559fa94a07fSbrendan 
1560fa94a07fSbrendan 	l2cache = kmem_alloc(sav->sav_count * sizeof (void *), KM_SLEEP);
1561fa94a07fSbrendan 	for (i = 0; i < sav->sav_count; i++)
1562fa94a07fSbrendan 		l2cache[i] = vdev_config_generate(spa,
15633f9d6ad7SLin Ling 		    sav->sav_vdevs[i], B_TRUE, VDEV_CONFIG_L2CACHE);
1564fa94a07fSbrendan 	VERIFY(nvlist_add_nvlist_array(sav->sav_config,
1565fa94a07fSbrendan 	    ZPOOL_CONFIG_L2CACHE, l2cache, sav->sav_count) == 0);
1566fa94a07fSbrendan out:
1567fa94a07fSbrendan 	for (i = 0; i < sav->sav_count; i++)
1568fa94a07fSbrendan 		nvlist_free(l2cache[i]);
1569fa94a07fSbrendan 	if (sav->sav_count)
1570fa94a07fSbrendan 		kmem_free(l2cache, sav->sav_count * sizeof (void *));
157199653d4eSeschrock }
157299653d4eSeschrock 
157399653d4eSeschrock static int
load_nvlist(spa_t * spa,uint64_t obj,nvlist_t ** value)157499653d4eSeschrock load_nvlist(spa_t *spa, uint64_t obj, nvlist_t **value)
157599653d4eSeschrock {
157699653d4eSeschrock 	dmu_buf_t *db;
157799653d4eSeschrock 	char *packed = NULL;
157899653d4eSeschrock 	size_t nvsize = 0;
157999653d4eSeschrock 	int error;
158099653d4eSeschrock 	*value = NULL;
158199653d4eSeschrock 
1582a45f1c3cSBrian Behlendorf 	error = dmu_bonus_hold(spa->spa_meta_objset, obj, FTAG, &db);
1583a45f1c3cSBrian Behlendorf 	if (error != 0)
1584a45f1c3cSBrian Behlendorf 		return (error);
1585a45f1c3cSBrian Behlendorf 
158699653d4eSeschrock 	nvsize = *(uint64_t *)db->db_data;
158799653d4eSeschrock 	dmu_buf_rele(db, FTAG);
158899653d4eSeschrock 
158999653d4eSeschrock 	packed = kmem_alloc(nvsize, KM_SLEEP);
15907bfdf011SNeil Perrin 	error = dmu_read(spa->spa_meta_objset, obj, 0, nvsize, packed,
15917bfdf011SNeil Perrin 	    DMU_READ_PREFETCH);
159299653d4eSeschrock 	if (error == 0)
159399653d4eSeschrock 		error = nvlist_unpack(packed, nvsize, value, 0);
159499653d4eSeschrock 	kmem_free(packed, nvsize);
159599653d4eSeschrock 
159699653d4eSeschrock 	return (error);
159799653d4eSeschrock }
159899653d4eSeschrock 
159999653d4eSeschrock /*
16003d7072f8Seschrock  * Checks to see if the given vdev could not be opened, in which case we post a
16013d7072f8Seschrock  * sysevent to notify the autoreplace code that the device has been removed.
16023d7072f8Seschrock  */
16033d7072f8Seschrock static void
spa_check_removed(vdev_t * vd)16043d7072f8Seschrock spa_check_removed(vdev_t *vd)
16053d7072f8Seschrock {
1606573ca77eSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++)
16073d7072f8Seschrock 		spa_check_removed(vd->vdev_child[c]);
16083d7072f8Seschrock 
1609efb4a871SYuri Pankov 	if (vd->vdev_ops->vdev_op_leaf && vdev_is_dead(vd) &&
1610efb4a871SYuri Pankov 	    !vd->vdev_ishole) {
16113d7072f8Seschrock 		zfs_post_autoreplace(vd->vdev_spa, vd);
16123d7072f8Seschrock 		spa_event_notify(vd->vdev_spa, vd, ESC_ZFS_VDEV_CHECK);
16133d7072f8Seschrock 	}
16143d7072f8Seschrock }
16153d7072f8Seschrock 
16163d7072f8Seschrock /*
16174b964adaSGeorge Wilson  * Validate the current config against the MOS config
1618e6ca193dSGeorge Wilson  */
16194b964adaSGeorge Wilson static boolean_t
spa_config_valid(spa_t * spa,nvlist_t * config)16204b964adaSGeorge Wilson spa_config_valid(spa_t *spa, nvlist_t *config)
1621e6ca193dSGeorge Wilson {
16224b964adaSGeorge Wilson 	vdev_t *mrvd, *rvd = spa->spa_root_vdev;
16234b964adaSGeorge Wilson 	nvlist_t *nv;
16244b964adaSGeorge Wilson 
16254b964adaSGeorge Wilson 	VERIFY(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, &nv) == 0);
16264b964adaSGeorge Wilson 
16274b964adaSGeorge Wilson 	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
16284b964adaSGeorge Wilson 	VERIFY(spa_config_parse(spa, &mrvd, nv, NULL, 0, VDEV_ALLOC_LOAD) == 0);
16294b964adaSGeorge Wilson 
16304b964adaSGeorge Wilson 	ASSERT3U(rvd->vdev_children, ==, mrvd->vdev_children);
1631e6ca193dSGeorge Wilson 
163288ecc943SGeorge Wilson 	/*
16334b964adaSGeorge Wilson 	 * If we're doing a normal import, then build up any additional
16344b964adaSGeorge Wilson 	 * diagnostic information about missing devices in this config.
16354b964adaSGeorge Wilson 	 * We'll pass this up to the user for further processing.
163688ecc943SGeorge Wilson 	 */
16374b964adaSGeorge Wilson 	if (!(spa->spa_import_flags & ZFS_IMPORT_MISSING_LOG)) {
16384b964adaSGeorge Wilson 		nvlist_t **child, *nv;
16394b964adaSGeorge Wilson 		uint64_t idx = 0;
16404b964adaSGeorge Wilson 
16414b964adaSGeorge Wilson 		child = kmem_alloc(rvd->vdev_children * sizeof (nvlist_t **),
16424b964adaSGeorge Wilson 		    KM_SLEEP);
16434b964adaSGeorge Wilson 		VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
1644e6ca193dSGeorge Wilson 
164588ecc943SGeorge Wilson 		for (int c = 0; c < rvd->vdev_children; c++) {
16464b964adaSGeorge Wilson 			vdev_t *tvd = rvd->vdev_child[c];
16474b964adaSGeorge Wilson 			vdev_t *mtvd  = mrvd->vdev_child[c];
16484b964adaSGeorge Wilson 
16494b964adaSGeorge Wilson 			if (tvd->vdev_ops == &vdev_missing_ops &&
16504b964adaSGeorge Wilson 			    mtvd->vdev_ops != &vdev_missing_ops &&
16514b964adaSGeorge Wilson 			    mtvd->vdev_islog)
16524b964adaSGeorge Wilson 				child[idx++] = vdev_config_generate(spa, mtvd,
16534b964adaSGeorge Wilson 				    B_FALSE, 0);
1654e6ca193dSGeorge Wilson 		}
16554b964adaSGeorge Wilson 
16564b964adaSGeorge Wilson 		if (idx) {
16574b964adaSGeorge Wilson 			VERIFY(nvlist_add_nvlist_array(nv,
16584b964adaSGeorge Wilson 			    ZPOOL_CONFIG_CHILDREN, child, idx) == 0);
16594b964adaSGeorge Wilson 			VERIFY(nvlist_add_nvlist(spa->spa_load_info,
16604b964adaSGeorge Wilson 			    ZPOOL_CONFIG_MISSING_DEVICES, nv) == 0);
16614b964adaSGeorge Wilson 
16624b964adaSGeorge Wilson 			for (int i = 0; i < idx; i++)
16634b964adaSGeorge Wilson 				nvlist_free(child[i]);
16644b964adaSGeorge Wilson 		}
16654b964adaSGeorge Wilson 		nvlist_free(nv);
16664b964adaSGeorge Wilson 		kmem_free(child, rvd->vdev_children * sizeof (char **));
16674b964adaSGeorge Wilson 	}
16684b964adaSGeorge Wilson 
16694b964adaSGeorge Wilson 	/*
16704b964adaSGeorge Wilson 	 * Compare the root vdev tree with the information we have
16714b964adaSGeorge Wilson 	 * from the MOS config (mrvd). Check each top-level vdev
16724b964adaSGeorge Wilson 	 * with the corresponding MOS config top-level (mtvd).
16734b964adaSGeorge Wilson 	 */
16744b964adaSGeorge Wilson 	for (int c = 0; c < rvd->vdev_children; c++) {
16754b964adaSGeorge Wilson 		vdev_t *tvd = rvd->vdev_child[c];
16764b964adaSGeorge Wilson 		vdev_t *mtvd  = mrvd->vdev_child[c];
16774b964adaSGeorge Wilson 
16784b964adaSGeorge Wilson 		/*
16794b964adaSGeorge Wilson 		 * Resolve any "missing" vdevs in the current configuration.
16804b964adaSGeorge Wilson 		 * If we find that the MOS config has more accurate information
16814b964adaSGeorge Wilson 		 * about the top-level vdev then use that vdev instead.
16824b964adaSGeorge Wilson 		 */
16834b964adaSGeorge Wilson 		if (tvd->vdev_ops == &vdev_missing_ops &&
16844b964adaSGeorge Wilson 		    mtvd->vdev_ops != &vdev_missing_ops) {
16854b964adaSGeorge Wilson 
16864b964adaSGeorge Wilson 			if (!(spa->spa_import_flags & ZFS_IMPORT_MISSING_LOG))
16874b964adaSGeorge Wilson 				continue;
16884b964adaSGeorge Wilson 
16894b964adaSGeorge Wilson 			/*
16904b964adaSGeorge Wilson 			 * Device specific actions.
16914b964adaSGeorge Wilson 			 */
16924b964adaSGeorge Wilson 			if (mtvd->vdev_islog) {
16934b964adaSGeorge Wilson 				spa_set_log_state(spa, SPA_LOG_CLEAR);
16944b964adaSGeorge Wilson 			} else {
16954b964adaSGeorge Wilson 				/*
16964b964adaSGeorge Wilson 				 * XXX - once we have 'readonly' pool
16974b964adaSGeorge Wilson 				 * support we should be able to handle
16984b964adaSGeorge Wilson 				 * missing data devices by transitioning
16994b964adaSGeorge Wilson 				 * the pool to readonly.
17004b964adaSGeorge Wilson 				 */
17014b964adaSGeorge Wilson 				continue;
17024b964adaSGeorge Wilson 			}
17034b964adaSGeorge Wilson 
17044b964adaSGeorge Wilson 			/*
17054b964adaSGeorge Wilson 			 * Swap the missing vdev with the data we were
17064b964adaSGeorge Wilson 			 * able to obtain from the MOS config.
17074b964adaSGeorge Wilson 			 */
17084b964adaSGeorge Wilson 			vdev_remove_child(rvd, tvd);
17094b964adaSGeorge Wilson 			vdev_remove_child(mrvd, mtvd);
17104b964adaSGeorge Wilson 
17114b964adaSGeorge Wilson 			vdev_add_child(rvd, mtvd);
17124b964adaSGeorge Wilson 			vdev_add_child(mrvd, tvd);
17134b964adaSGeorge Wilson 
171488ecc943SGeorge Wilson 			spa_config_exit(spa, SCL_ALL, FTAG);
17154b964adaSGeorge Wilson 			vdev_load(mtvd);
17164b964adaSGeorge Wilson 			spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
17174b964adaSGeorge Wilson 
17184b964adaSGeorge Wilson 			vdev_reopen(rvd);
17194b964adaSGeorge Wilson 		} else if (mtvd->vdev_islog) {
17204b964adaSGeorge Wilson 			/*
17214b964adaSGeorge Wilson 			 * Load the slog device's state from the MOS config
17224b964adaSGeorge Wilson 			 * since it's possible that the label does not
17234b964adaSGeorge Wilson 			 * contain the most up-to-date information.
17244b964adaSGeorge Wilson 			 */
17254b964adaSGeorge Wilson 			vdev_load_log_state(tvd, mtvd);
17264b964adaSGeorge Wilson 			vdev_reopen(tvd);
17274b964adaSGeorge Wilson 		}
17284b964adaSGeorge Wilson 	}
17294b964adaSGeorge Wilson 	vdev_free(mrvd);
17304b964adaSGeorge Wilson 	spa_config_exit(spa, SCL_ALL, FTAG);
17314b964adaSGeorge Wilson 
17324b964adaSGeorge Wilson 	/*
17334b964adaSGeorge Wilson 	 * Ensure we were able to validate the config.
17344b964adaSGeorge Wilson 	 */
17354b964adaSGeorge Wilson 	return (rvd->vdev_guid_sum == spa->spa_uberblock.ub_guid_sum);
1736e6ca193dSGeorge Wilson }
1737e6ca193dSGeorge Wilson 
1738e6ca193dSGeorge Wilson /*
1739b87f3af3Sperrin  * Check for missing log devices
1740b87f3af3Sperrin  */
17413b2aab18SMatthew Ahrens static boolean_t
spa_check_logs(spa_t * spa)1742b87f3af3Sperrin spa_check_logs(spa_t *spa)
1743b87f3af3Sperrin {
17443b2aab18SMatthew Ahrens 	boolean_t rv = B_FALSE;
174512380e1eSArne Jansen 	dsl_pool_t *dp = spa_get_dsl(spa);
17463b2aab18SMatthew Ahrens 
1747b87f3af3Sperrin 	switch (spa->spa_log_state) {
1748b87f3af3Sperrin 	case SPA_LOG_MISSING:
1749b87f3af3Sperrin 		/* need to recheck in case slog has been restored */
1750b87f3af3Sperrin 	case SPA_LOG_UNKNOWN:
175112380e1eSArne Jansen 		rv = (dmu_objset_find_dp(dp, dp->dp_root_dir_obj,
175212380e1eSArne Jansen 		    zil_check_log_chain, NULL, DS_FIND_CHILDREN) != 0);
17533b2aab18SMatthew Ahrens 		if (rv)
17541195e687SMark J Musante 			spa_set_log_state(spa, SPA_LOG_MISSING);
1755b87f3af3Sperrin 		break;
1756b87f3af3Sperrin 	}
17573b2aab18SMatthew Ahrens 	return (rv);
1758b87f3af3Sperrin }
1759b87f3af3Sperrin 
17601195e687SMark J Musante static boolean_t
spa_passivate_log(spa_t * spa)17611195e687SMark J Musante spa_passivate_log(spa_t *spa)
17621195e687SMark J Musante {
17631195e687SMark J Musante 	vdev_t *rvd = spa->spa_root_vdev;
17641195e687SMark J Musante 	boolean_t slog_found = B_FALSE;
17651195e687SMark J Musante 
17661195e687SMark J Musante 	ASSERT(spa_config_held(spa, SCL_ALLOC, RW_WRITER));
17671195e687SMark J Musante 
17681195e687SMark J Musante 	if (!spa_has_slogs(spa))
17691195e687SMark J Musante 		return (B_FALSE);
17701195e687SMark J Musante 
17711195e687SMark J Musante 	for (int c = 0; c < rvd->vdev_children; c++) {
17721195e687SMark J Musante 		vdev_t *tvd = rvd->vdev_child[c];
17731195e687SMark J Musante 		metaslab_group_t *mg = tvd->vdev_mg;
17741195e687SMark J Musante 
17751195e687SMark J Musante 		if (tvd->vdev_islog) {
17761195e687SMark J Musante 			metaslab_group_passivate(mg);
17771195e687SMark J Musante 			slog_found = B_TRUE;
17781195e687SMark J Musante 		}
17791195e687SMark J Musante 	}
17801195e687SMark J Musante 
17811195e687SMark J Musante 	return (slog_found);
17821195e687SMark J Musante }
17831195e687SMark J Musante 
17841195e687SMark J Musante static void
spa_activate_log(spa_t * spa)17851195e687SMark J Musante spa_activate_log(spa_t *spa)
17861195e687SMark J Musante {
17871195e687SMark J Musante 	vdev_t *rvd = spa->spa_root_vdev;
17881195e687SMark J Musante 
17891195e687SMark J Musante 	ASSERT(spa_config_held(spa, SCL_ALLOC, RW_WRITER));
17901195e687SMark J Musante 
17911195e687SMark J Musante 	for (int c = 0; c < rvd->vdev_children; c++) {
17921195e687SMark J Musante 		vdev_t *tvd = rvd->vdev_child[c];
17931195e687SMark J Musante 		metaslab_group_t *mg = tvd->vdev_mg;
17941195e687SMark J Musante 
17951195e687SMark J Musante 		if (tvd->vdev_islog)
17961195e687SMark J Musante 			metaslab_group_activate(mg);
17971195e687SMark J Musante 	}
17981195e687SMark J Musante }
17991195e687SMark J Musante 
18001195e687SMark J Musante int
spa_offline_log(spa_t * spa)18011195e687SMark J Musante spa_offline_log(spa_t *spa)
18021195e687SMark J Musante {
18033b2aab18SMatthew Ahrens 	int error;
18041195e687SMark J Musante 
18053b2aab18SMatthew Ahrens 	error = dmu_objset_find(spa_name(spa), zil_vdev_offline,
18063b2aab18SMatthew Ahrens 	    NULL, DS_FIND_CHILDREN);
18073b2aab18SMatthew Ahrens 	if (error == 0) {
18081195e687SMark J Musante 		/*
18091195e687SMark J Musante 		 * We successfully offlined the log device, sync out the
18101195e687SMark J Musante 		 * current txg so that the "stubby" block can be removed
18111195e687SMark J Musante 		 * by zil_sync().
18121195e687SMark J Musante 		 */
18131195e687SMark J Musante 		txg_wait_synced(spa->spa_dsl_pool, 0);
18141195e687SMark J Musante 	}
18151195e687SMark J Musante 	return (error);
18161195e687SMark J Musante }
18171195e687SMark J Musante 
1818b693757aSEric Schrock static void
spa_aux_check_removed(spa_aux_vdev_t * sav)1819b693757aSEric Schrock spa_aux_check_removed(spa_aux_vdev_t *sav)
1820b693757aSEric Schrock {
1821b24ab676SJeff Bonwick 	for (int i = 0; i < sav->sav_count; i++)
1822b693757aSEric Schrock 		spa_check_removed(sav->sav_vdevs[i]);
1823b693757aSEric Schrock }
1824b693757aSEric Schrock 
1825b24ab676SJeff Bonwick void
spa_claim_notify(zio_t * zio)1826b24ab676SJeff Bonwick spa_claim_notify(zio_t *zio)
1827b24ab676SJeff Bonwick {
1828b24ab676SJeff Bonwick 	spa_t *spa = zio->io_spa;
1829b24ab676SJeff Bonwick 
1830b24ab676SJeff Bonwick 	if (zio->io_error)
1831b24ab676SJeff Bonwick 		return;
1832b24ab676SJeff Bonwick 
1833b24ab676SJeff Bonwick 	mutex_enter(&spa->spa_props_lock);	/* any mutex will do */
1834b24ab676SJeff Bonwick 	if (spa->spa_claim_max_txg < zio->io_bp->blk_birth)
1835b24ab676SJeff Bonwick 		spa->spa_claim_max_txg = zio->io_bp->blk_birth;
1836b24ab676SJeff Bonwick 	mutex_exit(&spa->spa_props_lock);
1837b24ab676SJeff Bonwick }
1838b24ab676SJeff Bonwick 
1839468c413aSTim Haley typedef struct spa_load_error {
1840c8ee1847SVictor Latushkin 	uint64_t	sle_meta_count;
1841468c413aSTim Haley 	uint64_t	sle_data_count;
1842468c413aSTim Haley } spa_load_error_t;
1843468c413aSTim Haley 
1844468c413aSTim Haley static void
spa_load_verify_done(zio_t * zio)1845468c413aSTim Haley spa_load_verify_done(zio_t *zio)
1846468c413aSTim Haley {
1847468c413aSTim Haley 	blkptr_t *bp = zio->io_bp;
1848468c413aSTim Haley 	spa_load_error_t *sle = zio->io_private;
1849468c413aSTim Haley 	dmu_object_type_t type = BP_GET_TYPE(bp);
1850468c413aSTim Haley 	int error = zio->io_error;
1851e42d2059SMatthew Ahrens 	spa_t *spa = zio->io_spa;
1852468c413aSTim Haley 
1853468c413aSTim Haley 	if (error) {
1854ad135b5dSChristopher Siden 		if ((BP_GET_LEVEL(bp) != 0 || DMU_OT_IS_METADATA(type)) &&
1855468c413aSTim Haley 		    type != DMU_OT_INTENT_LOG)
18561a5e258fSJosef 'Jeff' Sipek 			atomic_inc_64(&sle->sle_meta_count);
1857468c413aSTim Haley 		else
18581a5e258fSJosef 'Jeff' Sipek 			atomic_inc_64(&sle->sle_data_count);
1859468c413aSTim Haley 	}
1860468c413aSTim Haley 	zio_data_buf_free(zio->io_data, zio->io_size);
1861e42d2059SMatthew Ahrens 
1862e42d2059SMatthew Ahrens 	mutex_enter(&spa->spa_scrub_lock);
1863e42d2059SMatthew Ahrens 	spa->spa_scrub_inflight--;
1864e42d2059SMatthew Ahrens 	cv_broadcast(&spa->spa_scrub_io_cv);
1865e42d2059SMatthew Ahrens 	mutex_exit(&spa->spa_scrub_lock);
1866468c413aSTim Haley }
1867468c413aSTim Haley 
1868e42d2059SMatthew Ahrens /*
1869e42d2059SMatthew Ahrens  * Maximum number of concurrent scrub i/os to create while verifying
1870e42d2059SMatthew Ahrens  * a pool while importing it.
1871e42d2059SMatthew Ahrens  */
1872e42d2059SMatthew Ahrens int spa_load_verify_maxinflight = 10000;
1873e42d2059SMatthew Ahrens boolean_t spa_load_verify_metadata = B_TRUE;
1874e42d2059SMatthew Ahrens boolean_t spa_load_verify_data = B_TRUE;
1875e42d2059SMatthew Ahrens 
1876468c413aSTim Haley /*ARGSUSED*/
1877468c413aSTim Haley static int
spa_load_verify_cb(spa_t * spa,zilog_t * zilog,const blkptr_t * bp,const zbookmark_phys_t * zb,const dnode_phys_t * dnp,void * arg)1878b24ab676SJeff Bonwick spa_load_verify_cb(spa_t *spa, zilog_t *zilog, const blkptr_t *bp,
18797802d7bfSMatthew Ahrens     const zbookmark_phys_t *zb, const dnode_phys_t *dnp, void *arg)
1880468c413aSTim Haley {
1881a2cdcdd2SPaul Dagnelie 	if (bp == NULL || BP_IS_HOLE(bp) || BP_IS_EMBEDDED(bp))
1882e42d2059SMatthew Ahrens 		return (0);
1883e42d2059SMatthew Ahrens 	/*
1884e42d2059SMatthew Ahrens 	 * Note: normally this routine will not be called if
1885e42d2059SMatthew Ahrens 	 * spa_load_verify_metadata is not set.  However, it may be useful
1886e42d2059SMatthew Ahrens 	 * to manually set the flag after the traversal has begun.
1887e42d2059SMatthew Ahrens 	 */
1888e42d2059SMatthew Ahrens 	if (!spa_load_verify_metadata)
1889e42d2059SMatthew Ahrens 		return (0);
1890e42d2059SMatthew Ahrens 	if (BP_GET_BUFC_TYPE(bp) == ARC_BUFC_DATA && !spa_load_verify_data)
1891e42d2059SMatthew Ahrens 		return (0);
1892e42d2059SMatthew Ahrens 
1893468c413aSTim Haley 	zio_t *rio = arg;
1894468c413aSTim Haley 	size_t size = BP_GET_PSIZE(bp);
1895468c413aSTim Haley 	void *data = zio_data_buf_alloc(size);
1896468c413aSTim Haley 
1897e42d2059SMatthew Ahrens 	mutex_enter(&spa->spa_scrub_lock);
1898e42d2059SMatthew Ahrens 	while (spa->spa_scrub_inflight >= spa_load_verify_maxinflight)
1899e42d2059SMatthew Ahrens 		cv_wait(&spa->spa_scrub_io_cv, &spa->spa_scrub_lock);
1900e42d2059SMatthew Ahrens 	spa->spa_scrub_inflight++;
1901e42d2059SMatthew Ahrens 	mutex_exit(&spa->spa_scrub_lock);
1902e42d2059SMatthew Ahrens 
1903468c413aSTim Haley 	zio_nowait(zio_read(rio, spa, bp, data, size,
1904468c413aSTim Haley 	    spa_load_verify_done, rio->io_private, ZIO_PRIORITY_SCRUB,
1905468c413aSTim Haley 	    ZIO_FLAG_SPECULATIVE | ZIO_FLAG_CANFAIL |
1906468c413aSTim Haley 	    ZIO_FLAG_SCRUB | ZIO_FLAG_RAW, zb));
1907468c413aSTim Haley 	return (0);
1908468c413aSTim Haley }
1909468c413aSTim Haley 
1910468c413aSTim Haley static int
spa_load_verify(spa_t * spa)1911468c413aSTim Haley spa_load_verify(spa_t *spa)
1912468c413aSTim Haley {
1913468c413aSTim Haley 	zio_t *rio;
1914468c413aSTim Haley 	spa_load_error_t sle = { 0 };
1915468c413aSTim Haley 	zpool_rewind_policy_t policy;
1916468c413aSTim Haley 	boolean_t verify_ok = B_FALSE;
1917e42d2059SMatthew Ahrens 	int error = 0;
1918468c413aSTim Haley 
1919c8ee1847SVictor Latushkin 	zpool_get_rewind_policy(spa->spa_config, &policy);
1920c8ee1847SVictor Latushkin 
1921c8ee1847SVictor Latushkin 	if (policy.zrp_request & ZPOOL_NEVER_REWIND)
1922c8ee1847SVictor Latushkin 		return (0);
1923c8ee1847SVictor Latushkin 
1924468c413aSTim Haley 	rio = zio_root(spa, NULL, &sle,
1925468c413aSTim Haley 	    ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE);
1926468c413aSTim Haley 
1927e42d2059SMatthew Ahrens 	if (spa_load_verify_metadata) {
1928bbfd46c4SJeff Bonwick 		error = traverse_pool(spa, spa->spa_verify_min_txg,
1929e42d2059SMatthew Ahrens 		    TRAVERSE_PRE | TRAVERSE_PREFETCH_METADATA,
1930e42d2059SMatthew Ahrens 		    spa_load_verify_cb, rio);
1931e42d2059SMatthew Ahrens 	}
1932468c413aSTim Haley 
1933468c413aSTim Haley 	(void) zio_wait(rio);
1934468c413aSTim Haley 
1935c8ee1847SVictor Latushkin 	spa->spa_load_meta_errors = sle.sle_meta_count;
1936468c413aSTim Haley 	spa->spa_load_data_errors = sle.sle_data_count;
1937468c413aSTim Haley 
1938c8ee1847SVictor Latushkin 	if (!error && sle.sle_meta_count <= policy.zrp_maxmeta &&
1939468c413aSTim Haley 	    sle.sle_data_count <= policy.zrp_maxdata) {
19404b964adaSGeorge Wilson 		int64_t loss = 0;
19414b964adaSGeorge Wilson 
1942468c413aSTim Haley 		verify_ok = B_TRUE;
1943468c413aSTim Haley 		spa->spa_load_txg = spa->spa_uberblock.ub_txg;
1944468c413aSTim Haley 		spa->spa_load_txg_ts = spa->spa_uberblock.ub_timestamp;
19454b964adaSGeorge Wilson 
19464b964adaSGeorge Wilson 		loss = spa->spa_last_ubsync_txg_ts - spa->spa_load_txg_ts;
19474b964adaSGeorge Wilson 		VERIFY(nvlist_add_uint64(spa->spa_load_info,
19484b964adaSGeorge Wilson 		    ZPOOL_CONFIG_LOAD_TIME, spa->spa_load_txg_ts) == 0);
19494b964adaSGeorge Wilson 		VERIFY(nvlist_add_int64(spa->spa_load_info,
19504b964adaSGeorge Wilson 		    ZPOOL_CONFIG_REWIND_TIME, loss) == 0);
19514b964adaSGeorge Wilson 		VERIFY(nvlist_add_uint64(spa->spa_load_info,
19524b964adaSGeorge Wilson 		    ZPOOL_CONFIG_LOAD_DATA_ERRORS, sle.sle_data_count) == 0);
1953a33cae98STim Haley 	} else {
1954a33cae98STim Haley 		spa->spa_load_max_txg = spa->spa_uberblock.ub_txg;
1955468c413aSTim Haley 	}
1956468c413aSTim Haley 
1957468c413aSTim Haley 	if (error) {
1958468c413aSTim Haley 		if (error != ENXIO && error != EIO)
1959be6fd75aSMatthew Ahrens 			error = SET_ERROR(EIO);
1960468c413aSTim Haley 		return (error);
1961468c413aSTim Haley 	}
1962468c413aSTim Haley 
1963468c413aSTim Haley 	return (verify_ok ? 0 : EIO);
1964468c413aSTim Haley }
1965468c413aSTim Haley 
1966b87f3af3Sperrin /*
19671195e687SMark J Musante  * Find a value in the pool props object.
19681195e687SMark J Musante  */
19691195e687SMark J Musante static void
spa_prop_find(spa_t * spa,zpool_prop_t prop,uint64_t * val)19701195e687SMark J Musante spa_prop_find(spa_t *spa, zpool_prop_t prop, uint64_t *val)
19711195e687SMark J Musante {
19721195e687SMark J Musante 	(void) zap_lookup(spa->spa_meta_objset, spa->spa_pool_props_object,
19731195e687SMark J Musante 	    zpool_prop_to_name(prop), sizeof (uint64_t), 1, val);
19741195e687SMark J Musante }
19751195e687SMark J Musante 
19761195e687SMark J Musante /*
19771195e687SMark J Musante  * Find a value in the pool directory object.
19781195e687SMark J Musante  */
19791195e687SMark J Musante static int
spa_dir_prop(spa_t * spa,const char * name,uint64_t * val)19801195e687SMark J Musante spa_dir_prop(spa_t *spa, const char *name, uint64_t *val)
19811195e687SMark J Musante {
19821195e687SMark J Musante 	return (zap_lookup(spa->spa_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
19831195e687SMark J Musante 	    name, sizeof (uint64_t), 1, val));
19841195e687SMark J Musante }
19851195e687SMark J Musante 
19861195e687SMark J Musante static int
spa_vdev_err(vdev_t * vdev,vdev_aux_t aux,int err)19871195e687SMark J Musante spa_vdev_err(vdev_t *vdev, vdev_aux_t aux, int err)
19881195e687SMark J Musante {
19891195e687SMark J Musante 	vdev_set_state(vdev, B_TRUE, VDEV_STATE_CANT_OPEN, aux);
19901195e687SMark J Musante 	return (err);
19911195e687SMark J Musante }
19921195e687SMark J Musante 
19931195e687SMark J Musante /*
19941195e687SMark J Musante  * Fix up config after a partly-completed split.  This is done with the
19951195e687SMark J Musante  * ZPOOL_CONFIG_SPLIT nvlist.  Both the splitting pool and the split-off
19961195e687SMark J Musante  * pool have that entry in their config, but only the splitting one contains
19971195e687SMark J Musante  * a list of all the guids of the vdevs that are being split off.
19981195e687SMark J Musante  *
19991195e687SMark J Musante  * This function determines what to do with that list: either rejoin
20001195e687SMark J Musante  * all the disks to the pool, or complete the splitting process.  To attempt
20011195e687SMark J Musante  * the rejoin, each disk that is offlined is marked online again, and
20021195e687SMark J Musante  * we do a reopen() call.  If the vdev label for every disk that was
20031195e687SMark J Musante  * marked online indicates it was successfully split off (VDEV_AUX_SPLIT_POOL)
20041195e687SMark J Musante  * then we call vdev_split() on each disk, and complete the split.
20051195e687SMark J Musante  *
2006d41c4376SMark J Musante  * Otherwise we leave the config alone, with all the vdevs in place in
2007d41c4376SMark J Musante  * the original pool.
20081195e687SMark J Musante  */
20091195e687SMark J Musante static void
spa_try_repair(spa_t * spa,nvlist_t * config)20101195e687SMark J Musante spa_try_repair(spa_t *spa, nvlist_t *config)
20111195e687SMark J Musante {
20121195e687SMark J Musante 	uint_t extracted;
20131195e687SMark J Musante 	uint64_t *glist;
20141195e687SMark J Musante 	uint_t i, gcount;
20151195e687SMark J Musante 	nvlist_t *nvl;
20161195e687SMark J Musante 	vdev_t **vd;
20171195e687SMark J Musante 	boolean_t attempt_reopen;
20181195e687SMark J Musante 
20191195e687SMark J Musante 	if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_SPLIT, &nvl) != 0)
20201195e687SMark J Musante 		return;
20211195e687SMark J Musante 
20221195e687SMark J Musante 	/* check that the config is complete */
20231195e687SMark J Musante 	if (nvlist_lookup_uint64_array(nvl, ZPOOL_CONFIG_SPLIT_LIST,
20241195e687SMark J Musante 	    &glist, &gcount) != 0)
20251195e687SMark J Musante 		return;
20261195e687SMark J Musante 
20271195e687SMark J Musante 	vd = kmem_zalloc(gcount * sizeof (vdev_t *), KM_SLEEP);
20281195e687SMark J Musante 
20291195e687SMark J Musante 	/* attempt to online all the vdevs & validate */
20301195e687SMark J Musante 	attempt_reopen = B_TRUE;
20311195e687SMark J Musante 	for (i = 0; i < gcount; i++) {
20321195e687SMark J Musante 		if (glist[i] == 0)	/* vdev is hole */
20331195e687SMark J Musante 			continue;
20341195e687SMark J Musante 
20351195e687SMark J Musante 		vd[i] = spa_lookup_by_guid(spa, glist[i], B_FALSE);
20361195e687SMark J Musante 		if (vd[i] == NULL) {
20371195e687SMark J Musante 			/*
20381195e687SMark J Musante 			 * Don't bother attempting to reopen the disks;
20391195e687SMark J Musante 			 * just do the split.
20401195e687SMark J Musante 			 */
20411195e687SMark J Musante 			attempt_reopen = B_FALSE;
20421195e687SMark J Musante 		} else {
20431195e687SMark J Musante 			/* attempt to re-online it */
20441195e687SMark J Musante 			vd[i]->vdev_offline = B_FALSE;
20451195e687SMark J Musante 		}
20461195e687SMark J Musante 	}
20471195e687SMark J Musante 
20481195e687SMark J Musante 	if (attempt_reopen) {
20491195e687SMark J Musante 		vdev_reopen(spa->spa_root_vdev);
20501195e687SMark J Musante 
20511195e687SMark J Musante 		/* check each device to see what state it's in */
20521195e687SMark J Musante 		for (extracted = 0, i = 0; i < gcount; i++) {
20531195e687SMark J Musante 			if (vd[i] != NULL &&
20541195e687SMark J Musante 			    vd[i]->vdev_stat.vs_aux != VDEV_AUX_SPLIT_POOL)
20551195e687SMark J Musante 				break;
20561195e687SMark J Musante 			++extracted;
20571195e687SMark J Musante 		}
20581195e687SMark J Musante 	}
20591195e687SMark J Musante 
20601195e687SMark J Musante 	/*
20611195e687SMark J Musante 	 * If every disk has been moved to the new pool, or if we never
20621195e687SMark J Musante 	 * even attempted to look at them, then we split them off for
20631195e687SMark J Musante 	 * good.
20641195e687SMark J Musante 	 */
20651195e687SMark J Musante 	if (!attempt_reopen || gcount == extracted) {
20661195e687SMark J Musante 		for (i = 0; i < gcount; i++)
20671195e687SMark J Musante 			if (vd[i] != NULL)
20681195e687SMark J Musante 				vdev_split(vd[i]);
20691195e687SMark J Musante 		vdev_reopen(spa->spa_root_vdev);
20701195e687SMark J Musante 	}
20711195e687SMark J Musante 
20721195e687SMark J Musante 	kmem_free(vd, gcount * sizeof (vdev_t *));
20731195e687SMark J Musante }
20741195e687SMark J Musante 
20751195e687SMark J Musante static int
spa_load(spa_t * spa,spa_load_state_t state,spa_import_type_t type,boolean_t mosconfig)20761195e687SMark J Musante spa_load(spa_t *spa, spa_load_state_t state, spa_import_type_t type,
20771195e687SMark J Musante     boolean_t mosconfig)
20781195e687SMark J Musante {
20791195e687SMark J Musante 	nvlist_t *config = spa->spa_config;
20801195e687SMark J Musante 	char *ereport = FM_EREPORT_ZFS_POOL;
20818704186eSDan McDonald 	char *comment;
20821195e687SMark J Musante 	int error;
20831195e687SMark J Musante 	uint64_t pool_guid;
20841195e687SMark J Musante 	nvlist_t *nvl;
20851195e687SMark J Musante 
20861195e687SMark J Musante 	if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_GUID, &pool_guid))
2087be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
20881195e687SMark J Musante 
20898704186eSDan McDonald 	ASSERT(spa->spa_comment == NULL);
20908704186eSDan McDonald 	if (nvlist_lookup_string(config, ZPOOL_CONFIG_COMMENT, &comment) == 0)
20918704186eSDan McDonald 		spa->spa_comment = spa_strdup(comment);
20928704186eSDan McDonald 
20931195e687SMark J Musante 	/*
20941195e687SMark J Musante 	 * Versioning wasn't explicitly added to the label until later, so if
20951195e687SMark J Musante 	 * it's not present treat it as the initial version.
20961195e687SMark J Musante 	 */
20971195e687SMark J Musante 	if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_VERSION,
20981195e687SMark J Musante 	    &spa->spa_ubsync.ub_version) != 0)
20991195e687SMark J Musante 		spa->spa_ubsync.ub_version = SPA_VERSION_INITIAL;
21001195e687SMark J Musante 
21011195e687SMark J Musante 	(void) nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_TXG,
21021195e687SMark J Musante 	    &spa->spa_config_txg);
21031195e687SMark J Musante 
21041195e687SMark J Musante 	if ((state == SPA_LOAD_IMPORT || state == SPA_LOAD_TRYIMPORT) &&
21051195e687SMark J Musante 	    spa_guid_exists(pool_guid, 0)) {
2106be6fd75aSMatthew Ahrens 		error = SET_ERROR(EEXIST);
21071195e687SMark J Musante 	} else {
2108e9103aaeSGarrett D'Amore 		spa->spa_config_guid = pool_guid;
21091195e687SMark J Musante 
21101195e687SMark J Musante 		if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_SPLIT,
21111195e687SMark J Musante 		    &nvl) == 0) {
21121195e687SMark J Musante 			VERIFY(nvlist_dup(nvl, &spa->spa_config_splitting,
21131195e687SMark J Musante 			    KM_SLEEP) == 0);
21141195e687SMark J Musante 		}
21151195e687SMark J Musante 
2116ad135b5dSChristopher Siden 		nvlist_free(spa->spa_load_info);
2117ad135b5dSChristopher Siden 		spa->spa_load_info = fnvlist_alloc();
2118ad135b5dSChristopher Siden 
211911027bc7STim Haley 		gethrestime(&spa->spa_loaded_ts);
21201195e687SMark J Musante 		error = spa_load_impl(spa, pool_guid, config, state, type,
21211195e687SMark J Musante 		    mosconfig, &ereport);
21221195e687SMark J Musante 	}
21231195e687SMark J Musante 
2124bc9014e6SJustin Gibbs 	/*
2125bc9014e6SJustin Gibbs 	 * Don't count references from objsets that are already closed
2126bc9014e6SJustin Gibbs 	 * and are making their way through the eviction process.
2127bc9014e6SJustin Gibbs 	 */
2128bc9014e6SJustin Gibbs 	spa_evicting_os_wait(spa);
21291195e687SMark J Musante 	spa->spa_minref = refcount_count(&spa->spa_refcount);
213011027bc7STim Haley 	if (error) {
213111027bc7STim Haley 		if (error != EEXIST) {
213211027bc7STim Haley 			spa->spa_loaded_ts.tv_sec = 0;
213311027bc7STim Haley 			spa->spa_loaded_ts.tv_nsec = 0;
213411027bc7STim Haley 		}
213511027bc7STim Haley 		if (error != EBADF) {
21361195e687SMark J Musante 			zfs_ereport_post(ereport, spa, NULL, NULL, 0, 0);
213711027bc7STim Haley 		}
213811027bc7STim Haley 	}
21391195e687SMark J Musante 	spa->spa_load_state = error ? SPA_LOAD_ERROR : SPA_LOAD_NONE;
21401195e687SMark J Musante 	spa->spa_ena = 0;
21411195e687SMark J Musante 
21421195e687SMark J Musante 	return (error);
21431195e687SMark J Musante }
21441195e687SMark J Musante 
21451195e687SMark J Musante /*
2146fa9e4066Sahrens  * Load an existing storage pool, using the pool's builtin spa_config as a
2147ea8dc4b6Seschrock  * source of configuration information.
2148fa9e4066Sahrens  */
2149fa9e4066Sahrens static int
spa_load_impl(spa_t * spa,uint64_t pool_guid,nvlist_t * config,spa_load_state_t state,spa_import_type_t type,boolean_t mosconfig,char ** ereport)21501195e687SMark J Musante spa_load_impl(spa_t *spa, uint64_t pool_guid, nvlist_t *config,
21511195e687SMark J Musante     spa_load_state_t state, spa_import_type_t type, boolean_t mosconfig,
21521195e687SMark J Musante     char **ereport)
2153fa9e4066Sahrens {
2154fa9e4066Sahrens 	int error = 0;
2155871a9500SMark J Musante 	nvlist_t *nvroot = NULL;
2156ad135b5dSChristopher Siden 	nvlist_t *label;
2157fa9e4066Sahrens 	vdev_t *rvd;
2158fa9e4066Sahrens 	uberblock_t *ub = &spa->spa_uberblock;
21594b964adaSGeorge Wilson 	uint64_t children, config_cache_txg = spa->spa_config_txg;
21608ad4d6ddSJeff Bonwick 	int orig_mode = spa->spa_mode;
21611195e687SMark J Musante 	int parse;
2162cde58dbcSMatthew Ahrens 	uint64_t obj;
2163ad135b5dSChristopher Siden 	boolean_t missing_feat_write = B_FALSE;
2164fa9e4066Sahrens 
21658ad4d6ddSJeff Bonwick 	/*
21668ad4d6ddSJeff Bonwick 	 * If this is an untrusted config, access the pool in read-only mode.
21678ad4d6ddSJeff Bonwick 	 * This prevents things like resilvering recently removed devices.
21688ad4d6ddSJeff Bonwick 	 */
21698ad4d6ddSJeff Bonwick 	if (!mosconfig)
21708ad4d6ddSJeff Bonwick 		spa->spa_mode = FREAD;
21718ad4d6ddSJeff Bonwick 
2172e14bb325SJeff Bonwick 	ASSERT(MUTEX_HELD(&spa_namespace_lock));
2173e14bb325SJeff Bonwick 
2174ea8dc4b6Seschrock 	spa->spa_load_state = state;
21750373e76bSbonwick 
21761195e687SMark J Musante 	if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, &nvroot))
2177be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
2178fa9e4066Sahrens 
21791195e687SMark J Musante 	parse = (type == SPA_IMPORT_EXISTING ?
21801195e687SMark J Musante 	    VDEV_ALLOC_LOAD : VDEV_ALLOC_SPLIT);
2181b5989ec7Seschrock 
2182fa9e4066Sahrens 	/*
218354d692b7SGeorge Wilson 	 * Create "The Godfather" zio to hold all async IOs
218454d692b7SGeorge Wilson 	 */
21856f834bc1SMatthew Ahrens 	spa->spa_async_zio_root = kmem_alloc(max_ncpus * sizeof (void *),
21866f834bc1SMatthew Ahrens 	    KM_SLEEP);
21876f834bc1SMatthew Ahrens 	for (int i = 0; i < max_ncpus; i++) {
21886f834bc1SMatthew Ahrens 		spa->spa_async_zio_root[i] = zio_root(spa, NULL, NULL,
21896f834bc1SMatthew Ahrens 		    ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE |
21906f834bc1SMatthew Ahrens 		    ZIO_FLAG_GODFATHER);
21916f834bc1SMatthew Ahrens 	}
219254d692b7SGeorge Wilson 
219354d692b7SGeorge Wilson 	/*
219499653d4eSeschrock 	 * Parse the configuration into a vdev tree.  We explicitly set the
219599653d4eSeschrock 	 * value that will be returned by spa_version() since parsing the
219699653d4eSeschrock 	 * configuration requires knowing the version number.
2197fa9e4066Sahrens 	 */
2198e14bb325SJeff Bonwick 	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
21991195e687SMark J Musante 	error = spa_config_parse(spa, &rvd, nvroot, NULL, 0, parse);
2200e14bb325SJeff Bonwick 	spa_config_exit(spa, SCL_ALL, FTAG);
2201fa9e4066Sahrens 
220299653d4eSeschrock 	if (error != 0)
22031195e687SMark J Musante 		return (error);
2204fa9e4066Sahrens 
22050e34b6a7Sbonwick 	ASSERT(spa->spa_root_vdev == rvd);
220681cd5c55SMatthew Ahrens 	ASSERT3U(spa->spa_min_ashift, >=, SPA_MINBLOCKSHIFT);
220781cd5c55SMatthew Ahrens 	ASSERT3U(spa->spa_max_ashift, <=, SPA_MAXBLOCKSHIFT);
22081195e687SMark J Musante 
22091195e687SMark J Musante 	if (type != SPA_IMPORT_ASSEMBLE) {
2210fa9e4066Sahrens 		ASSERT(spa_guid(spa) == pool_guid);
22111195e687SMark J Musante 	}
2212fa9e4066Sahrens 
2213fa9e4066Sahrens 	/*
2214fa9e4066Sahrens 	 * Try to open all vdevs, loading each label in the process.
2215fa9e4066Sahrens 	 */
2216e14bb325SJeff Bonwick 	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
22170bf246f5Smc142369 	error = vdev_open(rvd);
2218e14bb325SJeff Bonwick 	spa_config_exit(spa, SCL_ALL, FTAG);
22190bf246f5Smc142369 	if (error != 0)
22201195e687SMark J Musante 		return (error);
2221fa9e4066Sahrens 
2222fa9e4066Sahrens 	/*
222377e3a39cSMark J Musante 	 * We need to validate the vdev labels against the configuration that
222477e3a39cSMark J Musante 	 * we have in hand, which is dependent on the setting of mosconfig. If
222577e3a39cSMark J Musante 	 * mosconfig is true then we're validating the vdev labels based on
222677e3a39cSMark J Musante 	 * that config.  Otherwise, we're validating against the cached config
222777e3a39cSMark J Musante 	 * (zpool.cache) that was read when we loaded the zfs module, and then
222877e3a39cSMark J Musante 	 * later we will recursively call spa_load() and validate against
222977e3a39cSMark J Musante 	 * the vdev config.
22301195e687SMark J Musante 	 *
22311195e687SMark J Musante 	 * If we're assembling a new pool that's been split off from an
22321195e687SMark J Musante 	 * existing pool, the labels haven't yet been updated so we skip
22331195e687SMark J Musante 	 * validation for now.
2234560e6e96Seschrock 	 */
22351195e687SMark J Musante 	if (type != SPA_IMPORT_ASSEMBLE) {
2236e14bb325SJeff Bonwick 		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
2237d7f601efSGeorge Wilson 		error = vdev_validate(rvd, mosconfig);
2238e14bb325SJeff Bonwick 		spa_config_exit(spa, SCL_ALL, FTAG);
2239560e6e96Seschrock 
22401195e687SMark J Musante 		if (error != 0)
22411195e687SMark J Musante 			return (error);
22421195e687SMark J Musante 
22431195e687SMark J Musante 		if (rvd->vdev_state <= VDEV_STATE_CANT_OPEN)
2244be6fd75aSMatthew Ahrens 			return (SET_ERROR(ENXIO));
2245560e6e96Seschrock 	}
2246560e6e96Seschrock 
2247560e6e96Seschrock 	/*
2248fa9e4066Sahrens 	 * Find the best uberblock.
2249fa9e4066Sahrens 	 */
2250ad135b5dSChristopher Siden 	vdev_uberblock_load(rvd, ub, &label);
2251fa9e4066Sahrens 
2252fa9e4066Sahrens 	/*
2253fa9e4066Sahrens 	 * If we weren't able to find a single valid uberblock, return failure.
2254fa9e4066Sahrens 	 */
2255ad135b5dSChristopher Siden 	if (ub->ub_txg == 0) {
2256ad135b5dSChristopher Siden 		nvlist_free(label);
22571195e687SMark J Musante 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, ENXIO));
2258ad135b5dSChristopher Siden 	}
2259ea8dc4b6Seschrock 
2260ea8dc4b6Seschrock 	/*
2261ad135b5dSChristopher Siden 	 * If the pool has an unsupported version we can't open it.
2262ea8dc4b6Seschrock 	 */
2263ad135b5dSChristopher Siden 	if (!SPA_VERSION_IS_SUPPORTED(ub->ub_version)) {
2264ad135b5dSChristopher Siden 		nvlist_free(label);
22651195e687SMark J Musante 		return (spa_vdev_err(rvd, VDEV_AUX_VERSION_NEWER, ENOTSUP));
2266ad135b5dSChristopher Siden 	}
2267ad135b5dSChristopher Siden 
2268ad135b5dSChristopher Siden 	if (ub->ub_version >= SPA_VERSION_FEATURES) {
2269ad135b5dSChristopher Siden 		nvlist_t *features;
2270ad135b5dSChristopher Siden 
2271ad135b5dSChristopher Siden 		/*
2272ad135b5dSChristopher Siden 		 * If we weren't able to find what's necessary for reading the
2273ad135b5dSChristopher Siden 		 * MOS in the label, return failure.
2274ad135b5dSChristopher Siden 		 */
2275ad135b5dSChristopher Siden 		if (label == NULL || nvlist_lookup_nvlist(label,
2276ad135b5dSChristopher Siden 		    ZPOOL_CONFIG_FEATURES_FOR_READ, &features) != 0) {
2277ad135b5dSChristopher Siden 			nvlist_free(label);
2278ad135b5dSChristopher Siden 			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA,
2279ad135b5dSChristopher Siden 			    ENXIO));
2280ad135b5dSChristopher Siden 		}
2281ad135b5dSChristopher Siden 
2282ad135b5dSChristopher Siden 		/*
2283ad135b5dSChristopher Siden 		 * Update our in-core representation with the definitive values
2284ad135b5dSChristopher Siden 		 * from the label.
2285ad135b5dSChristopher Siden 		 */
2286ad135b5dSChristopher Siden 		nvlist_free(spa->spa_label_features);
2287ad135b5dSChristopher Siden 		VERIFY(nvlist_dup(features, &spa->spa_label_features, 0) == 0);
2288ad135b5dSChristopher Siden 	}
2289ad135b5dSChristopher Siden 
2290ad135b5dSChristopher Siden 	nvlist_free(label);
2291ad135b5dSChristopher Siden 
2292ad135b5dSChristopher Siden 	/*
2293ad135b5dSChristopher Siden 	 * Look through entries in the label nvlist's features_for_read. If
2294ad135b5dSChristopher Siden 	 * there is a feature listed there which we don't understand then we
2295ad135b5dSChristopher Siden 	 * cannot open a pool.
2296ad135b5dSChristopher Siden 	 */
2297ad135b5dSChristopher Siden 	if (ub->ub_version >= SPA_VERSION_FEATURES) {
2298ad135b5dSChristopher Siden 		nvlist_t *unsup_feat;
2299ad135b5dSChristopher Siden 
2300ad135b5dSChristopher Siden 		VERIFY(nvlist_alloc(&unsup_feat, NV_UNIQUE_NAME, KM_SLEEP) ==
2301ad135b5dSChristopher Siden 		    0);
2302ad135b5dSChristopher Siden 
2303ad135b5dSChristopher Siden 		for (nvpair_t *nvp = nvlist_next_nvpair(spa->spa_label_features,
2304ad135b5dSChristopher Siden 		    NULL); nvp != NULL;
2305ad135b5dSChristopher Siden 		    nvp = nvlist_next_nvpair(spa->spa_label_features, nvp)) {
2306ad135b5dSChristopher Siden 			if (!zfeature_is_supported(nvpair_name(nvp))) {
2307ad135b5dSChristopher Siden 				VERIFY(nvlist_add_string(unsup_feat,
2308ad135b5dSChristopher Siden 				    nvpair_name(nvp), "") == 0);
2309ad135b5dSChristopher Siden 			}
2310ad135b5dSChristopher Siden 		}
2311ad135b5dSChristopher Siden 
2312ad135b5dSChristopher Siden 		if (!nvlist_empty(unsup_feat)) {
2313ad135b5dSChristopher Siden 			VERIFY(nvlist_add_nvlist(spa->spa_load_info,
2314ad135b5dSChristopher Siden 			    ZPOOL_CONFIG_UNSUP_FEAT, unsup_feat) == 0);
2315ad135b5dSChristopher Siden 			nvlist_free(unsup_feat);
2316ad135b5dSChristopher Siden 			return (spa_vdev_err(rvd, VDEV_AUX_UNSUP_FEAT,
2317ad135b5dSChristopher Siden 			    ENOTSUP));
2318ad135b5dSChristopher Siden 		}
2319ad135b5dSChristopher Siden 
2320ad135b5dSChristopher Siden 		nvlist_free(unsup_feat);
2321ad135b5dSChristopher Siden 	}
2322fa9e4066Sahrens 
2323fa9e4066Sahrens 	/*
2324fa9e4066Sahrens 	 * If the vdev guid sum doesn't match the uberblock, we have an
23254b964adaSGeorge Wilson 	 * incomplete configuration.  We first check to see if the pool
23264b964adaSGeorge Wilson 	 * is aware of the complete config (i.e ZPOOL_CONFIG_VDEV_CHILDREN).
23274b964adaSGeorge Wilson 	 * If it is, defer the vdev_guid_sum check till later so we
23284b964adaSGeorge Wilson 	 * can handle missing vdevs.
2329fa9e4066Sahrens 	 */
23304b964adaSGeorge Wilson 	if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_VDEV_CHILDREN,
23314b964adaSGeorge Wilson 	    &children) != 0 && mosconfig && type != SPA_IMPORT_ASSEMBLE &&
23321195e687SMark J Musante 	    rvd->vdev_guid_sum != ub->ub_guid_sum)
23331195e687SMark J Musante 		return (spa_vdev_err(rvd, VDEV_AUX_BAD_GUID_SUM, ENXIO));
23341195e687SMark J Musante 
23351195e687SMark J Musante 	if (type != SPA_IMPORT_ASSEMBLE && spa->spa_config_splitting) {
23361195e687SMark J Musante 		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
23371195e687SMark J Musante 		spa_try_repair(spa, config);
23381195e687SMark J Musante 		spa_config_exit(spa, SCL_ALL, FTAG);
23391195e687SMark J Musante 		nvlist_free(spa->spa_config_splitting);
23401195e687SMark J Musante 		spa->spa_config_splitting = NULL;
2341fa9e4066Sahrens 	}
2342fa9e4066Sahrens 
2343fa9e4066Sahrens 	/*
2344fa9e4066Sahrens 	 * Initialize internal SPA structures.
2345fa9e4066Sahrens 	 */
2346fa9e4066Sahrens 	spa->spa_state = POOL_STATE_ACTIVE;
2347fa9e4066Sahrens 	spa->spa_ubsync = spa->spa_uberblock;
2348468c413aSTim Haley 	spa->spa_verify_min_txg = spa->spa_extreme_rewind ?
2349c8ee1847SVictor Latushkin 	    TXG_INITIAL - 1 : spa_last_synced_txg(spa) - TXG_DEFER_SIZE - 1;
2350468c413aSTim Haley 	spa->spa_first_txg = spa->spa_last_ubsync_txg ?
2351468c413aSTim Haley 	    spa->spa_last_ubsync_txg : spa_last_synced_txg(spa) + 1;
2352b24ab676SJeff Bonwick 	spa->spa_claim_max_txg = spa->spa_first_txg;
23533f9d6ad7SLin Ling 	spa->spa_prev_software_version = ub->ub_software_version;
2354b24ab676SJeff Bonwick 
2355ad135b5dSChristopher Siden 	error = dsl_pool_init(spa, spa->spa_first_txg, &spa->spa_dsl_pool);
23561195e687SMark J Musante 	if (error)
23571195e687SMark J Musante 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2358fa9e4066Sahrens 	spa->spa_meta_objset = spa->spa_dsl_pool->dp_meta_objset;
2359fa9e4066Sahrens 
23601195e687SMark J Musante 	if (spa_dir_prop(spa, DMU_POOL_CONFIG, &spa->spa_config_object) != 0)
23611195e687SMark J Musante 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2362fa9e4066Sahrens 
2363ad135b5dSChristopher Siden 	if (spa_version(spa) >= SPA_VERSION_FEATURES) {
2364ad135b5dSChristopher Siden 		boolean_t missing_feat_read = B_FALSE;
236557221772SChristopher Siden 		nvlist_t *unsup_feat, *enabled_feat;
2366ad135b5dSChristopher Siden 
2367ad135b5dSChristopher Siden 		if (spa_dir_prop(spa, DMU_POOL_FEATURES_FOR_READ,
2368ad135b5dSChristopher Siden 		    &spa->spa_feat_for_read_obj) != 0) {
2369ad135b5dSChristopher Siden 			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2370ad135b5dSChristopher Siden 		}
2371ad135b5dSChristopher Siden 
2372ad135b5dSChristopher Siden 		if (spa_dir_prop(spa, DMU_POOL_FEATURES_FOR_WRITE,
2373ad135b5dSChristopher Siden 		    &spa->spa_feat_for_write_obj) != 0) {
2374ad135b5dSChristopher Siden 			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2375ad135b5dSChristopher Siden 		}
2376ad135b5dSChristopher Siden 
2377ad135b5dSChristopher Siden 		if (spa_dir_prop(spa, DMU_POOL_FEATURE_DESCRIPTIONS,
2378ad135b5dSChristopher Siden 		    &spa->spa_feat_desc_obj) != 0) {
2379ad135b5dSChristopher Siden 			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2380ad135b5dSChristopher Siden 		}
2381ad135b5dSChristopher Siden 
238257221772SChristopher Siden 		enabled_feat = fnvlist_alloc();
238357221772SChristopher Siden 		unsup_feat = fnvlist_alloc();
2384ad135b5dSChristopher Siden 
23852acef22dSMatthew Ahrens 		if (!spa_features_check(spa, B_FALSE,
238657221772SChristopher Siden 		    unsup_feat, enabled_feat))
2387ad135b5dSChristopher Siden 			missing_feat_read = B_TRUE;
2388ad135b5dSChristopher Siden 
2389ad135b5dSChristopher Siden 		if (spa_writeable(spa) || state == SPA_LOAD_TRYIMPORT) {
23902acef22dSMatthew Ahrens 			if (!spa_features_check(spa, B_TRUE,
239157221772SChristopher Siden 			    unsup_feat, enabled_feat)) {
2392ad135b5dSChristopher Siden 				missing_feat_write = B_TRUE;
2393ad135b5dSChristopher Siden 			}
2394ad135b5dSChristopher Siden 		}
2395ad135b5dSChristopher Siden 
239657221772SChristopher Siden 		fnvlist_add_nvlist(spa->spa_load_info,
239757221772SChristopher Siden 		    ZPOOL_CONFIG_ENABLED_FEAT, enabled_feat);
239857221772SChristopher Siden 
239957221772SChristopher Siden 		if (!nvlist_empty(unsup_feat)) {
240057221772SChristopher Siden 			fnvlist_add_nvlist(spa->spa_load_info,
240157221772SChristopher Siden 			    ZPOOL_CONFIG_UNSUP_FEAT, unsup_feat);
240257221772SChristopher Siden 		}
240357221772SChristopher Siden 
240457221772SChristopher Siden 		fnvlist_free(enabled_feat);
240557221772SChristopher Siden 		fnvlist_free(unsup_feat);
2406ad135b5dSChristopher Siden 
2407ad135b5dSChristopher Siden 		if (!missing_feat_read) {
2408ad135b5dSChristopher Siden 			fnvlist_add_boolean(spa->spa_load_info,
2409ad135b5dSChristopher Siden 			    ZPOOL_CONFIG_CAN_RDONLY);
2410ad135b5dSChristopher Siden 		}
2411ad135b5dSChristopher Siden 
2412ad135b5dSChristopher Siden 		/*
2413ad135b5dSChristopher Siden 		 * If the state is SPA_LOAD_TRYIMPORT, our objective is
2414ad135b5dSChristopher Siden 		 * twofold: to determine whether the pool is available for
2415ad135b5dSChristopher Siden 		 * import in read-write mode and (if it is not) whether the
2416ad135b5dSChristopher Siden 		 * pool is available for import in read-only mode. If the pool
2417ad135b5dSChristopher Siden 		 * is available for import in read-write mode, it is displayed
2418ad135b5dSChristopher Siden 		 * as available in userland; if it is not available for import
2419ad135b5dSChristopher Siden 		 * in read-only mode, it is displayed as unavailable in
2420ad135b5dSChristopher Siden 		 * userland. If the pool is available for import in read-only
2421ad135b5dSChristopher Siden 		 * mode but not read-write mode, it is displayed as unavailable
2422ad135b5dSChristopher Siden 		 * in userland with a special note that the pool is actually
2423ad135b5dSChristopher Siden 		 * available for open in read-only mode.
2424ad135b5dSChristopher Siden 		 *
2425ad135b5dSChristopher Siden 		 * As a result, if the state is SPA_LOAD_TRYIMPORT and we are
2426ad135b5dSChristopher Siden 		 * missing a feature for write, we must first determine whether
2427ad135b5dSChristopher Siden 		 * the pool can be opened read-only before returning to
2428ad135b5dSChristopher Siden 		 * userland in order to know whether to display the
2429ad135b5dSChristopher Siden 		 * abovementioned note.
2430ad135b5dSChristopher Siden 		 */
2431ad135b5dSChristopher Siden 		if (missing_feat_read || (missing_feat_write &&
2432ad135b5dSChristopher Siden 		    spa_writeable(spa))) {
2433ad135b5dSChristopher Siden 			return (spa_vdev_err(rvd, VDEV_AUX_UNSUP_FEAT,
2434ad135b5dSChristopher Siden 			    ENOTSUP));
2435ad135b5dSChristopher Siden 		}
243643466aaeSMax Grossman 
243743466aaeSMax Grossman 		/*
243843466aaeSMax Grossman 		 * Load refcounts for ZFS features from disk into an in-memory
243943466aaeSMax Grossman 		 * cache during SPA initialization.
244043466aaeSMax Grossman 		 */
244143466aaeSMax Grossman 		for (spa_feature_t i = 0; i < SPA_FEATURES; i++) {
244243466aaeSMax Grossman 			uint64_t refcount;
244343466aaeSMax Grossman 
244443466aaeSMax Grossman 			error = feature_get_refcount_from_disk(spa,
244543466aaeSMax Grossman 			    &spa_feature_table[i], &refcount);
244643466aaeSMax Grossman 			if (error == 0) {
244743466aaeSMax Grossman 				spa->spa_feat_refcount_cache[i] = refcount;
244843466aaeSMax Grossman 			} else if (error == ENOTSUP) {
244943466aaeSMax Grossman 				spa->spa_feat_refcount_cache[i] =
245043466aaeSMax Grossman 				    SPA_FEATURE_DISABLED;
245143466aaeSMax Grossman 			} else {
245243466aaeSMax Grossman 				return (spa_vdev_err(rvd,
245343466aaeSMax Grossman 				    VDEV_AUX_CORRUPT_DATA, EIO));
245443466aaeSMax Grossman 			}
245543466aaeSMax Grossman 		}
245643466aaeSMax Grossman 	}
245743466aaeSMax Grossman 
245843466aaeSMax Grossman 	if (spa_feature_is_active(spa, SPA_FEATURE_ENABLED_TXG)) {
245943466aaeSMax Grossman 		if (spa_dir_prop(spa, DMU_POOL_FEATURE_ENABLED_TXG,
24605d7b4d43SMatthew Ahrens 		    &spa->spa_feat_enabled_txg_obj) != 0)
246143466aaeSMax Grossman 			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
246243466aaeSMax Grossman 	}
2463ad135b5dSChristopher Siden 
2464ad135b5dSChristopher Siden 	spa->spa_is_initializing = B_TRUE;
2465ad135b5dSChristopher Siden 	error = dsl_pool_open(spa->spa_dsl_pool);
2466ad135b5dSChristopher Siden 	spa->spa_is_initializing = B_FALSE;
2467ad135b5dSChristopher Siden 	if (error != 0)
2468ad135b5dSChristopher Siden 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2469ad135b5dSChristopher Siden 
247088ecc943SGeorge Wilson 	if (!mosconfig) {
247188ecc943SGeorge Wilson 		uint64_t hostid;
2472871a9500SMark J Musante 		nvlist_t *policy = NULL, *nvconfig;
2473871a9500SMark J Musante 
2474871a9500SMark J Musante 		if (load_nvlist(spa, spa->spa_config_object, &nvconfig) != 0)
2475871a9500SMark J Musante 			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
247688ecc943SGeorge Wilson 
247788ecc943SGeorge Wilson 		if (!spa_is_root(spa) && nvlist_lookup_uint64(nvconfig,
247877650510SLin Ling 		    ZPOOL_CONFIG_HOSTID, &hostid) == 0) {
247995173954Sek110237 			char *hostname;
248095173954Sek110237 			unsigned long myhostid = 0;
248195173954Sek110237 
248288ecc943SGeorge Wilson 			VERIFY(nvlist_lookup_string(nvconfig,
248395173954Sek110237 			    ZPOOL_CONFIG_HOSTNAME, &hostname) == 0);
248495173954Sek110237 
24855679c89fSjv227347 #ifdef	_KERNEL
24865679c89fSjv227347 			myhostid = zone_get_hostid(NULL);
24875679c89fSjv227347 #else	/* _KERNEL */
24885679c89fSjv227347 			/*
24895679c89fSjv227347 			 * We're emulating the system's hostid in userland, so
24905679c89fSjv227347 			 * we can't use zone_get_hostid().
24915679c89fSjv227347 			 */
249295173954Sek110237 			(void) ddi_strtoul(hw_serial, NULL, 10, &myhostid);
24935679c89fSjv227347 #endif	/* _KERNEL */
249417194a52Slling 			if (hostid != 0 && myhostid != 0 &&
24955679c89fSjv227347 			    hostid != myhostid) {
2496871a9500SMark J Musante 				nvlist_free(nvconfig);
249795173954Sek110237 				cmn_err(CE_WARN, "pool '%s' could not be "
249895173954Sek110237 				    "loaded as it was last accessed by "
249995173954Sek110237 				    "another system (host: %s hostid: 0x%lx). "
2500654b400cSJoshua M. Clulow 				    "See: http://illumos.org/msg/ZFS-8000-EY",
2501e14bb325SJeff Bonwick 				    spa_name(spa), hostname,
250295173954Sek110237 				    (unsigned long)hostid);
2503be6fd75aSMatthew Ahrens 				return (SET_ERROR(EBADF));
250495173954Sek110237 			}
250595173954Sek110237 		}
2506c8ee1847SVictor Latushkin 		if (nvlist_lookup_nvlist(spa->spa_config,
2507c8ee1847SVictor Latushkin 		    ZPOOL_REWIND_POLICY, &policy) == 0)
2508c8ee1847SVictor Latushkin 			VERIFY(nvlist_add_nvlist(nvconfig,
2509c8ee1847SVictor Latushkin 			    ZPOOL_REWIND_POLICY, policy) == 0);
251095173954Sek110237 
251188ecc943SGeorge Wilson 		spa_config_set(spa, nvconfig);
2512fa9e4066Sahrens 		spa_unload(spa);
2513fa9e4066Sahrens 		spa_deactivate(spa);
25148ad4d6ddSJeff Bonwick 		spa_activate(spa, orig_mode);
2515fa9e4066Sahrens 
25161195e687SMark J Musante 		return (spa_load(spa, state, SPA_IMPORT_EXISTING, B_TRUE));
2517fa9e4066Sahrens 	}
2518fa9e4066Sahrens 
2519cde58dbcSMatthew Ahrens 	if (spa_dir_prop(spa, DMU_POOL_SYNC_BPOBJ, &obj) != 0)
2520cde58dbcSMatthew Ahrens 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2521cde58dbcSMatthew Ahrens 	error = bpobj_open(&spa->spa_deferred_bpobj, spa->spa_meta_objset, obj);
2522cde58dbcSMatthew Ahrens 	if (error != 0)
25231195e687SMark J Musante 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2524fa9e4066Sahrens 
2525fa9e4066Sahrens 	/*
252699653d4eSeschrock 	 * Load the bit that tells us to use the new accounting function
252799653d4eSeschrock 	 * (raid-z deflation).  If we have an older pool, this will not
252899653d4eSeschrock 	 * be present.
252999653d4eSeschrock 	 */
25301195e687SMark J Musante 	error = spa_dir_prop(spa, DMU_POOL_DEFLATE, &spa->spa_deflate);
25311195e687SMark J Musante 	if (error != 0 && error != ENOENT)
25321195e687SMark J Musante 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
253399653d4eSeschrock 
25343f9d6ad7SLin Ling 	error = spa_dir_prop(spa, DMU_POOL_CREATION_VERSION,
25353f9d6ad7SLin Ling 	    &spa->spa_creation_version);
25363f9d6ad7SLin Ling 	if (error != 0 && error != ENOENT)
25373f9d6ad7SLin Ling 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
25383f9d6ad7SLin Ling 
253999653d4eSeschrock 	/*
2540ea8dc4b6Seschrock 	 * Load the persistent error log.  If we have an older pool, this will
2541ea8dc4b6Seschrock 	 * not be present.
2542fa9e4066Sahrens 	 */
25431195e687SMark J Musante 	error = spa_dir_prop(spa, DMU_POOL_ERRLOG_LAST, &spa->spa_errlog_last);
25441195e687SMark J Musante 	if (error != 0 && error != ENOENT)
25451195e687SMark J Musante 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2546ea8dc4b6Seschrock 
25471195e687SMark J Musante 	error = spa_dir_prop(spa, DMU_POOL_ERRLOG_SCRUB,
25481195e687SMark J Musante 	    &spa->spa_errlog_scrub);
25491195e687SMark J Musante 	if (error != 0 && error != ENOENT)
25501195e687SMark J Musante 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2551ea8dc4b6Seschrock 
2552ea8dc4b6Seschrock 	/*
255306eeb2adSek110237 	 * Load the history object.  If we have an older pool, this
255406eeb2adSek110237 	 * will not be present.
255506eeb2adSek110237 	 */
25561195e687SMark J Musante 	error = spa_dir_prop(spa, DMU_POOL_HISTORY, &spa->spa_history);
25571195e687SMark J Musante 	if (error != 0 && error != ENOENT)
25581195e687SMark J Musante 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
25591195e687SMark J Musante 
25601195e687SMark J Musante 	/*
25611195e687SMark J Musante 	 * If we're assembling the pool from the split-off vdevs of
25621195e687SMark J Musante 	 * an existing pool, we don't want to attach the spares & cache
25631195e687SMark J Musante 	 * devices.
25641195e687SMark J Musante 	 */
256506eeb2adSek110237 
256606eeb2adSek110237 	/*
256799653d4eSeschrock 	 * Load any hot spares for this pool.
256899653d4eSeschrock 	 */
25691195e687SMark J Musante 	error = spa_dir_prop(spa, DMU_POOL_SPARES, &spa->spa_spares.sav_object);
25701195e687SMark J Musante 	if (error != 0 && error != ENOENT)
25711195e687SMark J Musante 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
25721195e687SMark J Musante 	if (error == 0 && type != SPA_IMPORT_ASSEMBLE) {
2573e7437265Sahrens 		ASSERT(spa_version(spa) >= SPA_VERSION_SPARES);
2574fa94a07fSbrendan 		if (load_nvlist(spa, spa->spa_spares.sav_object,
25751195e687SMark J Musante 		    &spa->spa_spares.sav_config) != 0)
25761195e687SMark J Musante 			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
257799653d4eSeschrock 
2578e14bb325SJeff Bonwick 		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
257999653d4eSeschrock 		spa_load_spares(spa);
2580e14bb325SJeff Bonwick 		spa_config_exit(spa, SCL_ALL, FTAG);
25811195e687SMark J Musante 	} else if (error == 0) {
25821195e687SMark J Musante 		spa->spa_spares.sav_sync = B_TRUE;
258399653d4eSeschrock 	}
258499653d4eSeschrock 
2585fa94a07fSbrendan 	/*
2586fa94a07fSbrendan 	 * Load any level 2 ARC devices for this pool.
2587fa94a07fSbrendan 	 */
25881195e687SMark J Musante 	error = spa_dir_prop(spa, DMU_POOL_L2CACHE,
2589fa94a07fSbrendan 	    &spa->spa_l2cache.sav_object);
25901195e687SMark J Musante 	if (error != 0 && error != ENOENT)
25911195e687SMark J Musante 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
25921195e687SMark J Musante 	if (error == 0 && type != SPA_IMPORT_ASSEMBLE) {
2593fa94a07fSbrendan 		ASSERT(spa_version(spa) >= SPA_VERSION_L2CACHE);
2594fa94a07fSbrendan 		if (load_nvlist(spa, spa->spa_l2cache.sav_object,
25951195e687SMark J Musante 		    &spa->spa_l2cache.sav_config) != 0)
25961195e687SMark J Musante 			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2597fa94a07fSbrendan 
2598e14bb325SJeff Bonwick 		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
2599fa94a07fSbrendan 		spa_load_l2cache(spa);
2600e14bb325SJeff Bonwick 		spa_config_exit(spa, SCL_ALL, FTAG);
26011195e687SMark J Musante 	} else if (error == 0) {
26021195e687SMark J Musante 		spa->spa_l2cache.sav_sync = B_TRUE;
2603fa94a07fSbrendan 	}
2604fa94a07fSbrendan 
2605990b4856Slling 	spa->spa_delegation = zpool_prop_default_numeric(ZPOOL_PROP_DELEGATION);
2606ecd6cf80Smarks 
26071195e687SMark J Musante 	error = spa_dir_prop(spa, DMU_POOL_PROPS, &spa->spa_pool_props_object);
26081195e687SMark J Musante 	if (error && error != ENOENT)
26091195e687SMark J Musante 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2610b1b8ab34Slling 
2611b1b8ab34Slling 	if (error == 0) {
26121195e687SMark J Musante 		uint64_t autoreplace;
26131195e687SMark J Musante 
26141195e687SMark J Musante 		spa_prop_find(spa, ZPOOL_PROP_BOOTFS, &spa->spa_bootfs);
26151195e687SMark J Musante 		spa_prop_find(spa, ZPOOL_PROP_AUTOREPLACE, &autoreplace);
26161195e687SMark J Musante 		spa_prop_find(spa, ZPOOL_PROP_DELEGATION, &spa->spa_delegation);
26171195e687SMark J Musante 		spa_prop_find(spa, ZPOOL_PROP_FAILUREMODE, &spa->spa_failmode);
26181195e687SMark J Musante 		spa_prop_find(spa, ZPOOL_PROP_AUTOEXPAND, &spa->spa_autoexpand);
26191195e687SMark J Musante 		spa_prop_find(spa, ZPOOL_PROP_DEDUPDITTO,
26201195e687SMark J Musante 		    &spa->spa_dedup_ditto);
26211195e687SMark J Musante 
2622b693757aSEric Schrock 		spa->spa_autoreplace = (autoreplace != 0);
2623b1b8ab34Slling 	}
2624b1b8ab34Slling 
262599653d4eSeschrock 	/*
26263d7072f8Seschrock 	 * If the 'autoreplace' property is set, then post a resource notifying
26273d7072f8Seschrock 	 * the ZFS DE that it should not issue any faults for unopenable
26283d7072f8Seschrock 	 * devices.  We also iterate over the vdevs, and post a sysevent for any
26293d7072f8Seschrock 	 * unopenable vdevs so that the normal autoreplace handler can take
26303d7072f8Seschrock 	 * over.
26313d7072f8Seschrock 	 */
2632b693757aSEric Schrock 	if (spa->spa_autoreplace && state != SPA_LOAD_TRYIMPORT) {
26333d7072f8Seschrock 		spa_check_removed(spa->spa_root_vdev);
2634b693757aSEric Schrock 		/*
2635b693757aSEric Schrock 		 * For the import case, this is done in spa_import(), because
2636b693757aSEric Schrock 		 * at this point we're using the spare definitions from
2637b693757aSEric Schrock 		 * the MOS config, not necessarily from the userland config.
2638b693757aSEric Schrock 		 */
2639b693757aSEric Schrock 		if (state != SPA_LOAD_IMPORT) {
2640b693757aSEric Schrock 			spa_aux_check_removed(&spa->spa_spares);
2641b693757aSEric Schrock 			spa_aux_check_removed(&spa->spa_l2cache);
2642b693757aSEric Schrock 		}
2643b693757aSEric Schrock 	}
26443d7072f8Seschrock 
26453d7072f8Seschrock 	/*
2646560e6e96Seschrock 	 * Load the vdev state for all toplevel vdevs.
2647ea8dc4b6Seschrock 	 */
2648560e6e96Seschrock 	vdev_load(rvd);
2649fa9e4066Sahrens 
2650fa9e4066Sahrens 	/*
2651fa9e4066Sahrens 	 * Propagate the leaf DTLs we just loaded all the way up the tree.
2652fa9e4066Sahrens 	 */
2653e14bb325SJeff Bonwick 	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
2654fa9e4066Sahrens 	vdev_dtl_reassess(rvd, 0, 0, B_FALSE);
2655e14bb325SJeff Bonwick 	spa_config_exit(spa, SCL_ALL, FTAG);
2656fa9e4066Sahrens 
2657fa9e4066Sahrens 	/*
2658b24ab676SJeff Bonwick 	 * Load the DDTs (dedup tables).
2659b24ab676SJeff Bonwick 	 */
2660b24ab676SJeff Bonwick 	error = ddt_load(spa);
26611195e687SMark J Musante 	if (error != 0)
26621195e687SMark J Musante 		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2663b24ab676SJeff Bonwick 
2664485bbbf5SGeorge Wilson 	spa_update_dspace(spa);
2665485bbbf5SGeorge Wilson 
2666b24ab676SJeff Bonwick 	/*
26674b964adaSGeorge Wilson 	 * Validate the config, using the MOS config to fill in any
26684b964adaSGeorge Wilson 	 * information which might be missing.  If we fail to validate
26694b964adaSGeorge Wilson 	 * the config then declare the pool unfit for use. If we're
26704b964adaSGeorge Wilson 	 * assembling a pool from a split, the log is not transferred
26714b964adaSGeorge Wilson 	 * over.
2672b24ab676SJeff Bonwick 	 */
26731195e687SMark J Musante 	if (type != SPA_IMPORT_ASSEMBLE) {
2674871a9500SMark J Musante 		nvlist_t *nvconfig;
2675871a9500SMark J Musante 
2676871a9500SMark J Musante 		if (load_nvlist(spa, spa->spa_config_object, &nvconfig) != 0)
2677871a9500SMark J Musante 			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2678871a9500SMark J Musante 
26794b964adaSGeorge Wilson 		if (!spa_config_valid(spa, nvconfig)) {
2680b24ab676SJeff Bonwick 			nvlist_free(nvconfig);
26814b964adaSGeorge Wilson 			return (spa_vdev_err(rvd, VDEV_AUX_BAD_GUID_SUM,
26824b964adaSGeorge Wilson 			    ENXIO));
26834b964adaSGeorge Wilson 		}
26844b964adaSGeorge Wilson 		nvlist_free(nvconfig);
26854b964adaSGeorge Wilson 
26864b964adaSGeorge Wilson 		/*
2687ad135b5dSChristopher Siden 		 * Now that we've validated the config, check the state of the
26884b964adaSGeorge Wilson 		 * root vdev.  If it can't be opened, it indicates one or
26894b964adaSGeorge Wilson 		 * more toplevel vdevs are faulted.
26904b964adaSGeorge Wilson 		 */
26914b964adaSGeorge Wilson 		if (rvd->vdev_state <= VDEV_STATE_CANT_OPEN)
2692be6fd75aSMatthew Ahrens 			return (SET_ERROR(ENXIO));
2693b24ab676SJeff Bonwick 
269423367a2fSMatthew Ahrens 		if (spa_writeable(spa) && spa_check_logs(spa)) {
26951195e687SMark J Musante 			*ereport = FM_EREPORT_ZFS_LOG_REPLAY;
26961195e687SMark J Musante 			return (spa_vdev_err(rvd, VDEV_AUX_BAD_LOG, ENXIO));
26971195e687SMark J Musante 		}
2698b24ab676SJeff Bonwick 	}
2699b24ab676SJeff Bonwick 
2700ad135b5dSChristopher Siden 	if (missing_feat_write) {
2701ad135b5dSChristopher Siden 		ASSERT(state == SPA_LOAD_TRYIMPORT);
2702ad135b5dSChristopher Siden 
2703ad135b5dSChristopher Siden 		/*
2704ad135b5dSChristopher Siden 		 * At this point, we know that we can open the pool in
2705ad135b5dSChristopher Siden 		 * read-only mode but not read-write mode. We now have enough
2706ad135b5dSChristopher Siden 		 * information and can return to userland.
2707ad135b5dSChristopher Siden 		 */
2708ad135b5dSChristopher Siden 		return (spa_vdev_err(rvd, VDEV_AUX_UNSUP_FEAT, ENOTSUP));
2709ad135b5dSChristopher Siden 	}
2710ad135b5dSChristopher Siden 
27114b964adaSGeorge Wilson 	/*
27124b964adaSGeorge Wilson 	 * We've successfully opened the pool, verify that we're ready
27134b964adaSGeorge Wilson 	 * to start pushing transactions.
27144b964adaSGeorge Wilson 	 */
27154b964adaSGeorge Wilson 	if (state != SPA_LOAD_TRYIMPORT) {
27164b964adaSGeorge Wilson 		if (error = spa_load_verify(spa))
27174b964adaSGeorge Wilson 			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA,
27184b964adaSGeorge Wilson 			    error));
27194b964adaSGeorge Wilson 	}
27204b964adaSGeorge Wilson 
2721468c413aSTim Haley 	if (spa_writeable(spa) && (state == SPA_LOAD_RECOVER ||
2722468c413aSTim Haley 	    spa->spa_load_max_txg == UINT64_MAX)) {
27230373e76bSbonwick 		dmu_tx_t *tx;
27240373e76bSbonwick 		int need_update = B_FALSE;
272512380e1eSArne Jansen 		dsl_pool_t *dp = spa_get_dsl(spa);
27268ad4d6ddSJeff Bonwick 
27278ad4d6ddSJeff Bonwick 		ASSERT(state != SPA_LOAD_TRYIMPORT);
27280373e76bSbonwick 
2729fa9e4066Sahrens 		/*
27300373e76bSbonwick 		 * Claim log blocks that haven't been committed yet.
2731fa9e4066Sahrens 		 * This must all happen in a single txg.
2732b24ab676SJeff Bonwick 		 * Note: spa_claim_max_txg is updated by spa_claim_notify(),
2733b24ab676SJeff Bonwick 		 * invoked from zil_claim_log_block()'s i/o done callback.
2734468c413aSTim Haley 		 * Price of rollback is that we abandon the log.
2735fa9e4066Sahrens 		 */
2736b24ab676SJeff Bonwick 		spa->spa_claiming = B_TRUE;
2737b24ab676SJeff Bonwick 
273812380e1eSArne Jansen 		tx = dmu_tx_create_assigned(dp, spa_first_txg(spa));
273912380e1eSArne Jansen 		(void) dmu_objset_find_dp(dp, dp->dp_root_dir_obj,
27400b69c2f0Sahrens 		    zil_claim, tx, DS_FIND_CHILDREN);
2741fa9e4066Sahrens 		dmu_tx_commit(tx);
2742fa9e4066Sahrens 
2743b24ab676SJeff Bonwick 		spa->spa_claiming = B_FALSE;
2744b24ab676SJeff Bonwick 
27451195e687SMark J Musante 		spa_set_log_state(spa, SPA_LOG_GOOD);
2746fa9e4066Sahrens 		spa->spa_sync_on = B_TRUE;
2747fa9e4066Sahrens 		txg_sync_start(spa->spa_dsl_pool);
2748fa9e4066Sahrens 
2749fa9e4066Sahrens 		/*
2750b24ab676SJeff Bonwick 		 * Wait for all claims to sync.  We sync up to the highest
2751b24ab676SJeff Bonwick 		 * claimed log block birth time so that claimed log blocks
2752b24ab676SJeff Bonwick 		 * don't appear to be from the future.  spa_claim_max_txg
2753b24ab676SJeff Bonwick 		 * will have been set for us by either zil_check_log_chain()
2754b24ab676SJeff Bonwick 		 * (invoked from spa_check_logs()) or zil_claim() above.
2755fa9e4066Sahrens 		 */
2756b24ab676SJeff Bonwick 		txg_wait_synced(spa->spa_dsl_pool, spa->spa_claim_max_txg);
27570e34b6a7Sbonwick 
27580e34b6a7Sbonwick 		/*
27590373e76bSbonwick 		 * If the config cache is stale, or we have uninitialized
27600373e76bSbonwick 		 * metaslabs (see spa_vdev_add()), then update the config.
2761bc758434SLin Ling 		 *
27624b964adaSGeorge Wilson 		 * If this is a verbatim import, trust the current
2763bc758434SLin Ling 		 * in-core spa_config and update the disk labels.
27640e34b6a7Sbonwick 		 */
27650373e76bSbonwick 		if (config_cache_txg != spa->spa_config_txg ||
27664b964adaSGeorge Wilson 		    state == SPA_LOAD_IMPORT ||
27674b964adaSGeorge Wilson 		    state == SPA_LOAD_RECOVER ||
27684b964adaSGeorge Wilson 		    (spa->spa_import_flags & ZFS_IMPORT_VERBATIM))
27690373e76bSbonwick 			need_update = B_TRUE;
27700373e76bSbonwick 
27718ad4d6ddSJeff Bonwick 		for (int c = 0; c < rvd->vdev_children; c++)
27720373e76bSbonwick 			if (rvd->vdev_child[c]->vdev_ms_array == 0)
27730373e76bSbonwick 				need_update = B_TRUE;
27740e34b6a7Sbonwick 
27750e34b6a7Sbonwick 		/*
27760373e76bSbonwick 		 * Update the config cache asychronously in case we're the
27770373e76bSbonwick 		 * root pool, in which case the config cache isn't writable yet.
27780e34b6a7Sbonwick 		 */
27790373e76bSbonwick 		if (need_update)
27800373e76bSbonwick 			spa_async_request(spa, SPA_ASYNC_CONFIG_UPDATE);
27818ad4d6ddSJeff Bonwick 
27828ad4d6ddSJeff Bonwick 		/*
27838ad4d6ddSJeff Bonwick 		 * Check all DTLs to see if anything needs resilvering.
27848ad4d6ddSJeff Bonwick 		 */
27853f9d6ad7SLin Ling 		if (!dsl_scan_resilvering(spa->spa_dsl_pool) &&
27863f9d6ad7SLin Ling 		    vdev_resilver_needed(rvd, NULL, NULL))
27878ad4d6ddSJeff Bonwick 			spa_async_request(spa, SPA_ASYNC_RESILVER);
2788503ad85cSMatthew Ahrens 
2789503ad85cSMatthew Ahrens 		/*
27904445fffbSMatthew Ahrens 		 * Log the fact that we booted up (so that we can detect if
27914445fffbSMatthew Ahrens 		 * we rebooted in the middle of an operation).
27924445fffbSMatthew Ahrens 		 */
27934445fffbSMatthew Ahrens 		spa_history_log_version(spa, "open");
27944445fffbSMatthew Ahrens 
27954445fffbSMatthew Ahrens 		/*
2796503ad85cSMatthew Ahrens 		 * Delete any inconsistent datasets.
2797503ad85cSMatthew Ahrens 		 */
2798503ad85cSMatthew Ahrens 		(void) dmu_objset_find(spa_name(spa),
2799503ad85cSMatthew Ahrens 		    dsl_destroy_inconsistent, NULL, DS_FIND_CHILDREN);
2800ca45db41SChris Kirby 
2801ca45db41SChris Kirby 		/*
2802ca45db41SChris Kirby 		 * Clean up any stale temporary dataset userrefs.
2803ca45db41SChris Kirby 		 */
2804ca45db41SChris Kirby 		dsl_pool_clean_tmp_userrefs(spa->spa_dsl_pool);
2805fa9e4066Sahrens 	}
2806fa9e4066Sahrens 
28072142e035SSaso Kiselkov 	spa_async_request(spa, SPA_ASYNC_L2CACHE_REBUILD);
28082142e035SSaso Kiselkov 
28091195e687SMark J Musante 	return (0);
2810fa9e4066Sahrens }
2811fa9e4066Sahrens 
2812468c413aSTim Haley static int
spa_load_retry(spa_t * spa,spa_load_state_t state,int mosconfig)2813468c413aSTim Haley spa_load_retry(spa_t *spa, spa_load_state_t state, int mosconfig)
2814468c413aSTim Haley {
2815f9af39baSGeorge Wilson 	int mode = spa->spa_mode;
2816f9af39baSGeorge Wilson 
2817468c413aSTim Haley 	spa_unload(spa);
2818468c413aSTim Haley 	spa_deactivate(spa);
2819468c413aSTim Haley 
2820e42d2059SMatthew Ahrens 	spa->spa_load_max_txg = spa->spa_uberblock.ub_txg - 1;
2821468c413aSTim Haley 
2822f9af39baSGeorge Wilson 	spa_activate(spa, mode);
2823468c413aSTim Haley 	spa_async_suspend(spa);
2824468c413aSTim Haley 
28251195e687SMark J Musante 	return (spa_load(spa, state, SPA_IMPORT_EXISTING, mosconfig));
2826468c413aSTim Haley }
2827468c413aSTim Haley 
2828ad135b5dSChristopher Siden /*
2829ad135b5dSChristopher Siden  * If spa_load() fails this function will try loading prior txg's. If
2830ad135b5dSChristopher Siden  * 'state' is SPA_LOAD_RECOVER and one of these loads succeeds the pool
2831ad135b5dSChristopher Siden  * will be rewound to that txg. If 'state' is not SPA_LOAD_RECOVER this
2832ad135b5dSChristopher Siden  * function will not rewind the pool and will return the same error as
2833ad135b5dSChristopher Siden  * spa_load().
2834ad135b5dSChristopher Siden  */
2835468c413aSTim Haley static int
spa_load_best(spa_t * spa,spa_load_state_t state,int mosconfig,uint64_t max_request,int rewind_flags)2836468c413aSTim Haley spa_load_best(spa_t *spa, spa_load_state_t state, int mosconfig,
2837c8ee1847SVictor Latushkin     uint64_t max_request, int rewind_flags)
2838468c413aSTim Haley {
2839ad135b5dSChristopher Siden 	nvlist_t *loadinfo = NULL;
2840468c413aSTim Haley 	nvlist_t *config = NULL;
2841468c413aSTim Haley 	int load_error, rewind_error;
2842c8ee1847SVictor Latushkin 	uint64_t safe_rewind_txg;
2843468c413aSTim Haley 	uint64_t min_txg;
2844468c413aSTim Haley 
2845a33cae98STim Haley 	if (spa->spa_load_txg && state == SPA_LOAD_RECOVER) {
2846468c413aSTim Haley 		spa->spa_load_max_txg = spa->spa_load_txg;
28471195e687SMark J Musante 		spa_set_log_state(spa, SPA_LOG_CLEAR);
2848a33cae98STim Haley 	} else {
2849468c413aSTim Haley 		spa->spa_load_max_txg = max_request;
2850e42d2059SMatthew Ahrens 		if (max_request != UINT64_MAX)
2851e42d2059SMatthew Ahrens 			spa->spa_extreme_rewind = B_TRUE;
2852a33cae98STim Haley 	}
2853468c413aSTim Haley 
28541195e687SMark J Musante 	load_error = rewind_error = spa_load(spa, state, SPA_IMPORT_EXISTING,
28551195e687SMark J Musante 	    mosconfig);
2856468c413aSTim Haley 	if (load_error == 0)
2857468c413aSTim Haley 		return (0);
2858468c413aSTim Haley 
2859468c413aSTim Haley 	if (spa->spa_root_vdev != NULL)
2860468c413aSTim Haley 		config = spa_config_generate(spa, NULL, -1ULL, B_TRUE);
2861468c413aSTim Haley 
2862468c413aSTim Haley 	spa->spa_last_ubsync_txg = spa->spa_uberblock.ub_txg;
2863468c413aSTim Haley 	spa->spa_last_ubsync_txg_ts = spa->spa_uberblock.ub_timestamp;
2864468c413aSTim Haley 
2865c8ee1847SVictor Latushkin 	if (rewind_flags & ZPOOL_NEVER_REWIND) {
2866468c413aSTim Haley 		nvlist_free(config);
2867468c413aSTim Haley 		return (load_error);
2868468c413aSTim Haley 	}
2869468c413aSTim Haley 
2870ad135b5dSChristopher Siden 	if (state == SPA_LOAD_RECOVER) {
2871468c413aSTim Haley 		/* Price of rolling back is discarding txgs, including log */
28721195e687SMark J Musante 		spa_set_log_state(spa, SPA_LOG_CLEAR);
2873ad135b5dSChristopher Siden 	} else {
2874ad135b5dSChristopher Siden 		/*
2875ad135b5dSChristopher Siden 		 * If we aren't rolling back save the load info from our first
2876ad135b5dSChristopher Siden 		 * import attempt so that we can restore it after attempting
2877ad135b5dSChristopher Siden 		 * to rewind.
2878ad135b5dSChristopher Siden 		 */
2879ad135b5dSChristopher Siden 		loadinfo = spa->spa_load_info;
2880ad135b5dSChristopher Siden 		spa->spa_load_info = fnvlist_alloc();
2881ad135b5dSChristopher Siden 	}
2882468c413aSTim Haley 
2883c8ee1847SVictor Latushkin 	spa->spa_load_max_txg = spa->spa_last_ubsync_txg;
2884c8ee1847SVictor Latushkin 	safe_rewind_txg = spa->spa_last_ubsync_txg - TXG_DEFER_SIZE;
2885c8ee1847SVictor Latushkin 	min_txg = (rewind_flags & ZPOOL_EXTREME_REWIND) ?
2886c8ee1847SVictor Latushkin 	    TXG_INITIAL : safe_rewind_txg;
2887468c413aSTim Haley 
2888c8ee1847SVictor Latushkin 	/*
2889c8ee1847SVictor Latushkin 	 * Continue as long as we're finding errors, we're still within
2890c8ee1847SVictor Latushkin 	 * the acceptable rewind range, and we're still finding uberblocks
2891c8ee1847SVictor Latushkin 	 */
2892c8ee1847SVictor Latushkin 	while (rewind_error && spa->spa_uberblock.ub_txg >= min_txg &&
2893c8ee1847SVictor Latushkin 	    spa->spa_uberblock.ub_txg <= spa->spa_load_max_txg) {
2894c8ee1847SVictor Latushkin 		if (spa->spa_load_max_txg < safe_rewind_txg)
2895468c413aSTim Haley 			spa->spa_extreme_rewind = B_TRUE;
2896468c413aSTim Haley 		rewind_error = spa_load_retry(spa, state, mosconfig);
2897468c413aSTim Haley 	}
2898468c413aSTim Haley 
2899468c413aSTim Haley 	spa->spa_extreme_rewind = B_FALSE;
2900468c413aSTim Haley 	spa->spa_load_max_txg = UINT64_MAX;
2901468c413aSTim Haley 
2902468c413aSTim Haley 	if (config && (rewind_error || state != SPA_LOAD_RECOVER))
2903468c413aSTim Haley 		spa_config_set(spa, config);
2904468c413aSTim Haley 
2905ad135b5dSChristopher Siden 	if (state == SPA_LOAD_RECOVER) {
2906ad135b5dSChristopher Siden 		ASSERT3P(loadinfo, ==, NULL);
2907ad135b5dSChristopher Siden 		return (rewind_error);
2908ad135b5dSChristopher Siden 	} else {
2909ad135b5dSChristopher Siden 		/* Store the rewind info as part of the initial load info */
2910ad135b5dSChristopher Siden 		fnvlist_add_nvlist(loadinfo, ZPOOL_CONFIG_REWIND_INFO,
2911ad135b5dSChristopher Siden 		    spa->spa_load_info);
2912ad135b5dSChristopher Siden 
2913ad135b5dSChristopher Siden 		/* Restore the initial load info */
2914ad135b5dSChristopher Siden 		fnvlist_free(spa->spa_load_info);
2915ad135b5dSChristopher Siden 		spa->spa_load_info = loadinfo;
2916ad135b5dSChristopher Siden 
2917ad135b5dSChristopher Siden 		return (load_error);
2918ad135b5dSChristopher Siden 	}
2919468c413aSTim Haley }
2920468c413aSTim Haley 
2921fa9e4066Sahrens /*
2922fa9e4066Sahrens  * Pool Open/Import
2923fa9e4066Sahrens  *
2924fa9e4066Sahrens  * The import case is identical to an open except that the configuration is sent
2925fa9e4066Sahrens  * down from userland, instead of grabbed from the configuration cache.  For the
2926fa9e4066Sahrens  * case of an open, the pool configuration will exist in the
29273d7072f8Seschrock  * POOL_STATE_UNINITIALIZED state.
2928fa9e4066Sahrens  *
2929fa9e4066Sahrens  * The stats information (gen/count/ustats) is used to gather vdev statistics at
2930fa9e4066Sahrens  * the same time open the pool, without having to keep around the spa_t in some
2931fa9e4066Sahrens  * ambiguous state.
2932fa9e4066Sahrens  */
2933fa9e4066Sahrens static int
spa_open_common(const char * pool,spa_t ** spapp,void * tag,nvlist_t * nvpolicy,nvlist_t ** config)2934468c413aSTim Haley spa_open_common(const char *pool, spa_t **spapp, void *tag, nvlist_t *nvpolicy,
2935468c413aSTim Haley     nvlist_t **config)
2936fa9e4066Sahrens {
2937fa9e4066Sahrens 	spa_t *spa;
29384b964adaSGeorge Wilson 	spa_load_state_t state = SPA_LOAD_OPEN;
2939fa9e4066Sahrens 	int error;
2940fa9e4066Sahrens 	int locked = B_FALSE;
2941fa9e4066Sahrens 
2942fa9e4066Sahrens 	*spapp = NULL;
2943fa9e4066Sahrens 
2944fa9e4066Sahrens 	/*
2945fa9e4066Sahrens 	 * As disgusting as this is, we need to support recursive calls to this
2946fa9e4066Sahrens 	 * function because dsl_dir_open() is called during spa_load(), and ends
2947fa9e4066Sahrens 	 * up calling spa_open() again.  The real fix is to figure out how to
2948fa9e4066Sahrens 	 * avoid dsl_dir_open() calling this in the first place.
2949fa9e4066Sahrens 	 */
2950fa9e4066Sahrens 	if (mutex_owner(&spa_namespace_lock) != curthread) {
2951fa9e4066Sahrens 		mutex_enter(&spa_namespace_lock);
2952fa9e4066Sahrens 		locked = B_TRUE;
2953fa9e4066Sahrens 	}
2954fa9e4066Sahrens 
2955fa9e4066Sahrens 	if ((spa = spa_lookup(pool)) == NULL) {
2956fa9e4066Sahrens 		if (locked)
2957fa9e4066Sahrens 			mutex_exit(&spa_namespace_lock);
2958be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOENT));
2959fa9e4066Sahrens 	}
2960468c413aSTim Haley 
29614b44c88cSTim Haley 	if (spa->spa_state == POOL_STATE_UNINITIALIZED) {
29624b44c88cSTim Haley 		zpool_rewind_policy_t policy;
29634b44c88cSTim Haley 
29644b44c88cSTim Haley 		zpool_get_rewind_policy(nvpolicy ? nvpolicy : spa->spa_config,
29654b44c88cSTim Haley 		    &policy);
2966c8ee1847SVictor Latushkin 		if (policy.zrp_request & ZPOOL_DO_REWIND)
2967c8ee1847SVictor Latushkin 			state = SPA_LOAD_RECOVER;
2968c8ee1847SVictor Latushkin 
29698ad4d6ddSJeff Bonwick 		spa_activate(spa, spa_mode_global);
2970fa9e4066Sahrens 
2971468c413aSTim Haley 		if (state != SPA_LOAD_RECOVER)
2972468c413aSTim Haley 			spa->spa_last_ubsync_txg = spa->spa_load_txg = 0;
2973468c413aSTim Haley 
2974468c413aSTim Haley 		error = spa_load_best(spa, state, B_FALSE, policy.zrp_txg,
2975c8ee1847SVictor Latushkin 		    policy.zrp_request);
2976fa9e4066Sahrens 
2977fa9e4066Sahrens 		if (error == EBADF) {
2978fa9e4066Sahrens 			/*
2979560e6e96Seschrock 			 * If vdev_validate() returns failure (indicated by
2980560e6e96Seschrock 			 * EBADF), it indicates that one of the vdevs indicates
2981560e6e96Seschrock 			 * that the pool has been exported or destroyed.  If
2982560e6e96Seschrock 			 * this is the case, the config cache is out of sync and
2983560e6e96Seschrock 			 * we should remove the pool from the namespace.
2984fa9e4066Sahrens 			 */
2985fa9e4066Sahrens 			spa_unload(spa);
2986fa9e4066Sahrens 			spa_deactivate(spa);
2987c5904d13Seschrock 			spa_config_sync(spa, B_TRUE, B_TRUE);
2988fa9e4066Sahrens 			spa_remove(spa);
2989fa9e4066Sahrens 			if (locked)
2990fa9e4066Sahrens 				mutex_exit(&spa_namespace_lock);
2991be6fd75aSMatthew Ahrens 			return (SET_ERROR(ENOENT));
2992ea8dc4b6Seschrock 		}
2993ea8dc4b6Seschrock 
2994ea8dc4b6Seschrock 		if (error) {
2995fa9e4066Sahrens 			/*
2996fa9e4066Sahrens 			 * We can't open the pool, but we still have useful
2997fa9e4066Sahrens 			 * information: the state of each vdev after the
2998fa9e4066Sahrens 			 * attempted vdev_open().  Return this to the user.
2999fa9e4066Sahrens 			 */
30004b964adaSGeorge Wilson 			if (config != NULL && spa->spa_config) {
3001468c413aSTim Haley 				VERIFY(nvlist_dup(spa->spa_config, config,
3002468c413aSTim Haley 				    KM_SLEEP) == 0);
30034b964adaSGeorge Wilson 				VERIFY(nvlist_add_nvlist(*config,
30044b964adaSGeorge Wilson 				    ZPOOL_CONFIG_LOAD_INFO,
30054b964adaSGeorge Wilson 				    spa->spa_load_info) == 0);
30064b964adaSGeorge Wilson 			}
3007fa9e4066Sahrens 			spa_unload(spa);
3008fa9e4066Sahrens 			spa_deactivate(spa);
3009468c413aSTim Haley 			spa->spa_last_open_failed = error;
3010fa9e4066Sahrens 			if (locked)
3011fa9e4066Sahrens 				mutex_exit(&spa_namespace_lock);
3012fa9e4066Sahrens 			*spapp = NULL;
3013fa9e4066Sahrens 			return (error);
3014fa9e4066Sahrens 		}
3015fa9e4066Sahrens 	}
3016fa9e4066Sahrens 
3017fa9e4066Sahrens 	spa_open_ref(spa, tag);
30183d7072f8Seschrock 
3019468c413aSTim Haley 	if (config != NULL)
3020468c413aSTim Haley 		*config = spa_config_generate(spa, NULL, -1ULL, B_TRUE);
3021468c413aSTim Haley 
30224b964adaSGeorge Wilson 	/*
30234b964adaSGeorge Wilson 	 * If we've recovered the pool, pass back any information we
30244b964adaSGeorge Wilson 	 * gathered while doing the load.
30254b964adaSGeorge Wilson 	 */
30264b964adaSGeorge Wilson 	if (state == SPA_LOAD_RECOVER) {
30274b964adaSGeorge Wilson 		VERIFY(nvlist_add_nvlist(*config, ZPOOL_CONFIG_LOAD_INFO,
30284b964adaSGeorge Wilson 		    spa->spa_load_info) == 0);
30294b964adaSGeorge Wilson 	}
30304b964adaSGeorge Wilson 
3031a33cae98STim Haley 	if (locked) {
3032a33cae98STim Haley 		spa->spa_last_open_failed = 0;
3033468c413aSTim Haley 		spa->spa_last_ubsync_txg = 0;
3034468c413aSTim Haley 		spa->spa_load_txg = 0;
3035fa9e4066Sahrens 		mutex_exit(&spa_namespace_lock);
3036a33cae98STim Haley 	}
3037fa9e4066Sahrens 
3038fa9e4066Sahrens 	*spapp = spa;
3039fa9e4066Sahrens 
3040fa9e4066Sahrens 	return (0);
3041fa9e4066Sahrens }
3042fa9e4066Sahrens 
3043fa9e4066Sahrens int
spa_open_rewind(const char * name,spa_t ** spapp,void * tag,nvlist_t * policy,nvlist_t ** config)3044468c413aSTim Haley spa_open_rewind(const char *name, spa_t **spapp, void *tag, nvlist_t *policy,
3045468c413aSTim Haley     nvlist_t **config)
3046468c413aSTim Haley {
3047468c413aSTim Haley 	return (spa_open_common(name, spapp, tag, policy, config));
3048468c413aSTim Haley }
3049468c413aSTim Haley 
3050468c413aSTim Haley int
spa_open(const char * name,spa_t ** spapp,void * tag)3051fa9e4066Sahrens spa_open(const char *name, spa_t **spapp, void *tag)
3052fa9e4066Sahrens {
3053468c413aSTim Haley 	return (spa_open_common(name, spapp, tag, NULL, NULL));
3054fa9e4066Sahrens }
3055fa9e4066Sahrens 
3056ea8dc4b6Seschrock /*
3057ea8dc4b6Seschrock  * Lookup the given spa_t, incrementing the inject count in the process,
3058ea8dc4b6Seschrock  * preventing it from being exported or destroyed.
3059ea8dc4b6Seschrock  */
3060ea8dc4b6Seschrock spa_t *
spa_inject_addref(char * name)3061ea8dc4b6Seschrock spa_inject_addref(char *name)
3062ea8dc4b6Seschrock {
3063ea8dc4b6Seschrock 	spa_t *spa;
3064ea8dc4b6Seschrock 
3065ea8dc4b6Seschrock 	mutex_enter(&spa_namespace_lock);
3066ea8dc4b6Seschrock 	if ((spa = spa_lookup(name)) == NULL) {
3067ea8dc4b6Seschrock 		mutex_exit(&spa_namespace_lock);
3068ea8dc4b6Seschrock 		return (NULL);
3069ea8dc4b6Seschrock 	}
3070ea8dc4b6Seschrock 	spa->spa_inject_ref++;
3071ea8dc4b6Seschrock 	mutex_exit(&spa_namespace_lock);
3072ea8dc4b6Seschrock 
3073ea8dc4b6Seschrock 	return (spa);
3074ea8dc4b6Seschrock }
3075ea8dc4b6Seschrock 
3076ea8dc4b6Seschrock void
spa_inject_delref(spa_t * spa)3077ea8dc4b6Seschrock spa_inject_delref(spa_t *spa)
3078ea8dc4b6Seschrock {
3079ea8dc4b6Seschrock 	mutex_enter(&spa_namespace_lock);
3080ea8dc4b6Seschrock 	spa->spa_inject_ref--;
3081ea8dc4b6Seschrock 	mutex_exit(&spa_namespace_lock);
3082ea8dc4b6Seschrock }
3083ea8dc4b6Seschrock 
3084fa94a07fSbrendan /*
3085fa94a07fSbrendan  * Add spares device information to the nvlist.
3086fa94a07fSbrendan  */
308799653d4eSeschrock static void
spa_add_spares(spa_t * spa,nvlist_t * config)308899653d4eSeschrock spa_add_spares(spa_t *spa, nvlist_t *config)
308999653d4eSeschrock {
309099653d4eSeschrock 	nvlist_t **spares;
309199653d4eSeschrock 	uint_t i, nspares;
309299653d4eSeschrock 	nvlist_t *nvroot;
309399653d4eSeschrock 	uint64_t guid;
309499653d4eSeschrock 	vdev_stat_t *vs;
309599653d4eSeschrock 	uint_t vsc;
309639c23413Seschrock 	uint64_t pool;
309799653d4eSeschrock 
30986809eb4eSEric Schrock 	ASSERT(spa_config_held(spa, SCL_CONFIG, RW_READER));
30996809eb4eSEric Schrock 
3100fa94a07fSbrendan 	if (spa->spa_spares.sav_count == 0)
310199653d4eSeschrock 		return;
310299653d4eSeschrock 
310399653d4eSeschrock 	VERIFY(nvlist_lookup_nvlist(config,
310499653d4eSeschrock 	    ZPOOL_CONFIG_VDEV_TREE, &nvroot) == 0);
3105fa94a07fSbrendan 	VERIFY(nvlist_lookup_nvlist_array(spa->spa_spares.sav_config,
310699653d4eSeschrock 	    ZPOOL_CONFIG_SPARES, &spares, &nspares) == 0);
310799653d4eSeschrock 	if (nspares != 0) {
310899653d4eSeschrock 		VERIFY(nvlist_add_nvlist_array(nvroot,
310999653d4eSeschrock 		    ZPOOL_CONFIG_SPARES, spares, nspares) == 0);
311099653d4eSeschrock 		VERIFY(nvlist_lookup_nvlist_array(nvroot,
311199653d4eSeschrock 		    ZPOOL_CONFIG_SPARES, &spares, &nspares) == 0);
311299653d4eSeschrock 
311399653d4eSeschrock 		/*
311499653d4eSeschrock 		 * Go through and find any spares which have since been
311599653d4eSeschrock 		 * repurposed as an active spare.  If this is the case, update
311699653d4eSeschrock 		 * their status appropriately.
311799653d4eSeschrock 		 */
311899653d4eSeschrock 		for (i = 0; i < nspares; i++) {
311999653d4eSeschrock 			VERIFY(nvlist_lookup_uint64(spares[i],
312099653d4eSeschrock 			    ZPOOL_CONFIG_GUID, &guid) == 0);
312189a89ebfSlling 			if (spa_spare_exists(guid, &pool, NULL) &&
312289a89ebfSlling 			    pool != 0ULL) {
312399653d4eSeschrock 				VERIFY(nvlist_lookup_uint64_array(
31243f9d6ad7SLin Ling 				    spares[i], ZPOOL_CONFIG_VDEV_STATS,
312599653d4eSeschrock 				    (uint64_t **)&vs, &vsc) == 0);
312699653d4eSeschrock 				vs->vs_state = VDEV_STATE_CANT_OPEN;
312799653d4eSeschrock 				vs->vs_aux = VDEV_AUX_SPARED;
312899653d4eSeschrock 			}
312999653d4eSeschrock 		}
313099653d4eSeschrock 	}
313199653d4eSeschrock }
313299653d4eSeschrock 
3133fa94a07fSbrendan /*
3134fa94a07fSbrendan  * Add l2cache device information to the nvlist, including vdev stats.
3135fa94a07fSbrendan  */
3136fa94a07fSbrendan static void
spa_add_l2cache(spa_t * spa,nvlist_t * config)3137fa94a07fSbrendan spa_add_l2cache(spa_t *spa, nvlist_t *config)
3138fa94a07fSbrendan {
3139fa94a07fSbrendan 	nvlist_t **l2cache;
3140fa94a07fSbrendan 	uint_t i, j, nl2cache;
3141fa94a07fSbrendan 	nvlist_t *nvroot;
3142fa94a07fSbrendan 	uint64_t guid;
3143fa94a07fSbrendan 	vdev_t *vd;
3144fa94a07fSbrendan 	vdev_stat_t *vs;
3145fa94a07fSbrendan 	uint_t vsc;
3146fa94a07fSbrendan 
31476809eb4eSEric Schrock 	ASSERT(spa_config_held(spa, SCL_CONFIG, RW_READER));
31486809eb4eSEric Schrock 
3149fa94a07fSbrendan 	if (spa->spa_l2cache.sav_count == 0)
3150fa94a07fSbrendan 		return;
3151fa94a07fSbrendan 
3152fa94a07fSbrendan 	VERIFY(nvlist_lookup_nvlist(config,
3153fa94a07fSbrendan 	    ZPOOL_CONFIG_VDEV_TREE, &nvroot) == 0);
3154fa94a07fSbrendan 	VERIFY(nvlist_lookup_nvlist_array(spa->spa_l2cache.sav_config,
3155fa94a07fSbrendan 	    ZPOOL_CONFIG_L2CACHE, &l2cache, &nl2cache) == 0);
3156fa94a07fSbrendan 	if (nl2cache != 0) {
3157fa94a07fSbrendan 		VERIFY(nvlist_add_nvlist_array(nvroot,
3158fa94a07fSbrendan 		    ZPOOL_CONFIG_L2CACHE, l2cache, nl2cache) == 0);
3159fa94a07fSbrendan 		VERIFY(nvlist_lookup_nvlist_array(nvroot,
3160fa94a07fSbrendan 		    ZPOOL_CONFIG_L2CACHE, &l2cache, &nl2cache) == 0);
3161fa94a07fSbrendan 
3162fa94a07fSbrendan 		/*
3163fa94a07fSbrendan 		 * Update level 2 cache device stats.
3164fa94a07fSbrendan 		 */
3165fa94a07fSbrendan 
3166fa94a07fSbrendan 		for (i = 0; i < nl2cache; i++) {
3167fa94a07fSbrendan 			VERIFY(nvlist_lookup_uint64(l2cache[i],
3168fa94a07fSbrendan 			    ZPOOL_CONFIG_GUID, &guid) == 0);
3169fa94a07fSbrendan 
3170fa94a07fSbrendan 			vd = NULL;
3171fa94a07fSbrendan 			for (j = 0; j < spa->spa_l2cache.sav_count; j++) {
3172fa94a07fSbrendan 				if (guid ==
3173fa94a07fSbrendan 				    spa->spa_l2cache.sav_vdevs[j]->vdev_guid) {
3174fa94a07fSbrendan 					vd = spa->spa_l2cache.sav_vdevs[j];
3175fa94a07fSbrendan 					break;
3176fa94a07fSbrendan 				}
3177fa94a07fSbrendan 			}
3178fa94a07fSbrendan 			ASSERT(vd != NULL);
3179fa94a07fSbrendan 
3180fa94a07fSbrendan 			VERIFY(nvlist_lookup_uint64_array(l2cache[i],
31813f9d6ad7SLin Ling 			    ZPOOL_CONFIG_VDEV_STATS, (uint64_t **)&vs, &vsc)
31823f9d6ad7SLin Ling 			    == 0);
3183fa94a07fSbrendan 			vdev_get_stats(vd, vs);
3184fa94a07fSbrendan 		}
3185fa94a07fSbrendan 	}
3186fa94a07fSbrendan }
3187fa94a07fSbrendan 
3188ad135b5dSChristopher Siden static void
spa_add_feature_stats(spa_t * spa,nvlist_t * config)3189ad135b5dSChristopher Siden spa_add_feature_stats(spa_t *spa, nvlist_t *config)
3190ad135b5dSChristopher Siden {
3191ad135b5dSChristopher Siden 	nvlist_t *features;
3192ad135b5dSChristopher Siden 	zap_cursor_t zc;
3193ad135b5dSChristopher Siden 	zap_attribute_t za;
3194ad135b5dSChristopher Siden 
3195ad135b5dSChristopher Siden 	ASSERT(spa_config_held(spa, SCL_CONFIG, RW_READER));
3196ad135b5dSChristopher Siden 	VERIFY(nvlist_alloc(&features, NV_UNIQUE_NAME, KM_SLEEP) == 0);
3197ad135b5dSChristopher Siden 
3198ad135b5dSChristopher Siden 	if (spa->spa_feat_for_read_obj != 0) {
3199ad135b5dSChristopher Siden 		for (zap_cursor_init(&zc, spa->spa_meta_objset,
3200ad135b5dSChristopher Siden 		    spa->spa_feat_for_read_obj);
3201ad135b5dSChristopher Siden 		    zap_cursor_retrieve(&zc, &za) == 0;
3202ad135b5dSChristopher Siden 		    zap_cursor_advance(&zc)) {
3203ad135b5dSChristopher Siden 			ASSERT(za.za_integer_length == sizeof (uint64_t) &&
3204ad135b5dSChristopher Siden 			    za.za_num_integers == 1);
3205b420f3adSRichard Lowe 			VERIFY3U(0, ==, nvlist_add_uint64(features, za.za_name,
3206ad135b5dSChristopher Siden 			    za.za_first_integer));
3207ad135b5dSChristopher Siden 		}
3208ad135b5dSChristopher Siden 		zap_cursor_fini(&zc);
3209ad135b5dSChristopher Siden 	}
3210ad135b5dSChristopher Siden 
3211ad135b5dSChristopher Siden 	if (spa->spa_feat_for_write_obj != 0) {
3212ad135b5dSChristopher Siden 		for (zap_cursor_init(&zc, spa->spa_meta_objset,
3213ad135b5dSChristopher Siden 		    spa->spa_feat_for_write_obj);
3214ad135b5dSChristopher Siden 		    zap_cursor_retrieve(&zc, &za) == 0;
3215ad135b5dSChristopher Siden 		    zap_cursor_advance(&zc)) {
3216ad135b5dSChristopher Siden 			ASSERT(za.za_integer_length == sizeof (uint64_t) &&
3217ad135b5dSChristopher Siden 			    za.za_num_integers == 1);
3218b420f3adSRichard Lowe 			VERIFY3U(0, ==, nvlist_add_uint64(features, za.za_name,
3219ad135b5dSChristopher Siden 			    za.za_first_integer));
3220ad135b5dSChristopher Siden 		}
3221ad135b5dSChristopher Siden 		zap_cursor_fini(&zc);
3222ad135b5dSChristopher Siden 	}
3223ad135b5dSChristopher Siden 
3224ad135b5dSChristopher Siden 	VERIFY(nvlist_add_nvlist(config, ZPOOL_CONFIG_FEATURE_STATS,
3225ad135b5dSChristopher Siden 	    features) == 0);
3226ad135b5dSChristopher Siden 	nvlist_free(features);
3227ad135b5dSChristopher Siden }
3228ad135b5dSChristopher Siden 
3229fa9e4066Sahrens int
spa_get_stats(const char * name,nvlist_t ** config,char * altroot,size_t buflen)3230ad135b5dSChristopher Siden spa_get_stats(const char *name, nvlist_t **config,
3231ad135b5dSChristopher Siden     char *altroot, size_t buflen)
3232fa9e4066Sahrens {
3233fa9e4066Sahrens 	int error;
3234fa9e4066Sahrens 	spa_t *spa;
3235fa9e4066Sahrens 
3236fa9e4066Sahrens 	*config = NULL;
3237468c413aSTim Haley 	error = spa_open_common(name, &spa, FTAG, NULL, config);
3238fa9e4066Sahrens 
32396809eb4eSEric Schrock 	if (spa != NULL) {
32406809eb4eSEric Schrock 		/*
32416809eb4eSEric Schrock 		 * This still leaves a window of inconsistency where the spares
32426809eb4eSEric Schrock 		 * or l2cache devices could change and the config would be
32436809eb4eSEric Schrock 		 * self-inconsistent.
32446809eb4eSEric Schrock 		 */
32456809eb4eSEric Schrock 		spa_config_enter(spa, SCL_CONFIG, FTAG, RW_READER);
32466809eb4eSEric Schrock 
32476809eb4eSEric Schrock 		if (*config != NULL) {
324811027bc7STim Haley 			uint64_t loadtimes[2];
324911027bc7STim Haley 
325011027bc7STim Haley 			loadtimes[0] = spa->spa_loaded_ts.tv_sec;
325111027bc7STim Haley 			loadtimes[1] = spa->spa_loaded_ts.tv_nsec;
325211027bc7STim Haley 			VERIFY(nvlist_add_uint64_array(*config,
325311027bc7STim Haley 			    ZPOOL_CONFIG_LOADED_TIME, loadtimes, 2) == 0);
325411027bc7STim Haley 
32556809eb4eSEric Schrock 			VERIFY(nvlist_add_uint64(*config,
32566809eb4eSEric Schrock 			    ZPOOL_CONFIG_ERRCOUNT,
3257ea8dc4b6Seschrock 			    spa_get_errlog_size(spa)) == 0);
3258ea8dc4b6Seschrock 
3259e14bb325SJeff Bonwick 			if (spa_suspended(spa))
3260e14bb325SJeff Bonwick 				VERIFY(nvlist_add_uint64(*config,
32616809eb4eSEric Schrock 				    ZPOOL_CONFIG_SUSPENDED,
32626809eb4eSEric Schrock 				    spa->spa_failmode) == 0);
3263e14bb325SJeff Bonwick 
326499653d4eSeschrock 			spa_add_spares(spa, *config);
3265fa94a07fSbrendan 			spa_add_l2cache(spa, *config);
3266ad135b5dSChristopher Siden 			spa_add_feature_stats(spa, *config);
326799653d4eSeschrock 		}
32686809eb4eSEric Schrock 	}
326999653d4eSeschrock 
3270ea8dc4b6Seschrock 	/*
3271ea8dc4b6Seschrock 	 * We want to get the alternate root even for faulted pools, so we cheat
3272ea8dc4b6Seschrock 	 * and call spa_lookup() directly.
3273ea8dc4b6Seschrock 	 */
3274ea8dc4b6Seschrock 	if (altroot) {
3275ea8dc4b6Seschrock 		if (spa == NULL) {
3276ea8dc4b6Seschrock 			mutex_enter(&spa_namespace_lock);
3277ea8dc4b6Seschrock 			spa = spa_lookup(name);
3278ea8dc4b6Seschrock 			if (spa)
3279ea8dc4b6Seschrock 				spa_altroot(spa, altroot, buflen);
3280ea8dc4b6Seschrock 			else
3281ea8dc4b6Seschrock 				altroot[0] = '\0';
3282ea8dc4b6Seschrock 			spa = NULL;
3283ea8dc4b6Seschrock 			mutex_exit(&spa_namespace_lock);
3284ea8dc4b6Seschrock 		} else {
3285ea8dc4b6Seschrock 			spa_altroot(spa, altroot, buflen);
3286ea8dc4b6Seschrock 		}
3287ea8dc4b6Seschrock 	}
3288ea8dc4b6Seschrock 
32896809eb4eSEric Schrock 	if (spa != NULL) {
32906809eb4eSEric Schrock 		spa_config_exit(spa, SCL_CONFIG, FTAG);
3291fa9e4066Sahrens 		spa_close(spa, FTAG);
32926809eb4eSEric Schrock 	}
3293fa9e4066Sahrens 
3294fa9e4066Sahrens 	return (error);
3295fa9e4066Sahrens }
3296fa9e4066Sahrens 
3297fa9e4066Sahrens /*
3298fa94a07fSbrendan  * Validate that the auxiliary device array is well formed.  We must have an
3299fa94a07fSbrendan  * array of nvlists, each which describes a valid leaf vdev.  If this is an
3300fa94a07fSbrendan  * import (mode is VDEV_ALLOC_SPARE), then we allow corrupted spares to be
3301fa94a07fSbrendan  * specified, as long as they are well-formed.
330299653d4eSeschrock  */
330399653d4eSeschrock static int
spa_validate_aux_devs(spa_t * spa,nvlist_t * nvroot,uint64_t crtxg,int mode,spa_aux_vdev_t * sav,const char * config,uint64_t version,vdev_labeltype_t label)3304fa94a07fSbrendan spa_validate_aux_devs(spa_t *spa, nvlist_t *nvroot, uint64_t crtxg, int mode,
3305fa94a07fSbrendan     spa_aux_vdev_t *sav, const char *config, uint64_t version,
3306fa94a07fSbrendan     vdev_labeltype_t label)
330799653d4eSeschrock {
3308fa94a07fSbrendan 	nvlist_t **dev;
3309fa94a07fSbrendan 	uint_t i, ndev;
331099653d4eSeschrock 	vdev_t *vd;
331199653d4eSeschrock 	int error;
331299653d4eSeschrock 
3313e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
3314e14bb325SJeff Bonwick 
331599653d4eSeschrock 	/*
3316fa94a07fSbrendan 	 * It's acceptable to have no devs specified.
331799653d4eSeschrock 	 */
3318fa94a07fSbrendan 	if (nvlist_lookup_nvlist_array(nvroot, config, &dev, &ndev) != 0)
331999653d4eSeschrock 		return (0);
332099653d4eSeschrock 
3321fa94a07fSbrendan 	if (ndev == 0)
3322be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
332399653d4eSeschrock 
332499653d4eSeschrock 	/*
3325fa94a07fSbrendan 	 * Make sure the pool is formatted with a version that supports this
3326fa94a07fSbrendan 	 * device type.
332799653d4eSeschrock 	 */
3328fa94a07fSbrendan 	if (spa_version(spa) < version)
3329be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOTSUP));
333099653d4eSeschrock 
333139c23413Seschrock 	/*
3332fa94a07fSbrendan 	 * Set the pending device list so we correctly handle device in-use
333339c23413Seschrock 	 * checking.
333439c23413Seschrock 	 */
3335fa94a07fSbrendan 	sav->sav_pending = dev;
3336fa94a07fSbrendan 	sav->sav_npending = ndev;
333739c23413Seschrock 
3338fa94a07fSbrendan 	for (i = 0; i < ndev; i++) {
3339fa94a07fSbrendan 		if ((error = spa_config_parse(spa, &vd, dev[i], NULL, 0,
334099653d4eSeschrock 		    mode)) != 0)
334139c23413Seschrock 			goto out;
334299653d4eSeschrock 
334399653d4eSeschrock 		if (!vd->vdev_ops->vdev_op_leaf) {
334499653d4eSeschrock 			vdev_free(vd);
3345be6fd75aSMatthew Ahrens 			error = SET_ERROR(EINVAL);
334639c23413Seschrock 			goto out;
334799653d4eSeschrock 		}
334899653d4eSeschrock 
3349fa94a07fSbrendan 		/*
3350e14bb325SJeff Bonwick 		 * The L2ARC currently only supports disk devices in
3351e14bb325SJeff Bonwick 		 * kernel context.  For user-level testing, we allow it.
3352fa94a07fSbrendan 		 */
3353e14bb325SJeff Bonwick #ifdef _KERNEL
3354fa94a07fSbrendan 		if ((strcmp(config, ZPOOL_CONFIG_L2CACHE) == 0) &&
3355fa94a07fSbrendan 		    strcmp(vd->vdev_ops->vdev_op_type, VDEV_TYPE_DISK) != 0) {
3356be6fd75aSMatthew Ahrens 			error = SET_ERROR(ENOTBLK);
3357cd0837ccSGeorge Wilson 			vdev_free(vd);
3358fa94a07fSbrendan 			goto out;
3359fa94a07fSbrendan 		}
3360e14bb325SJeff Bonwick #endif
336199653d4eSeschrock 		vd->vdev_top = vd;
336299653d4eSeschrock 
336339c23413Seschrock 		if ((error = vdev_open(vd)) == 0 &&
3364fa94a07fSbrendan 		    (error = vdev_label_init(vd, crtxg, label)) == 0) {
3365fa94a07fSbrendan 			VERIFY(nvlist_add_uint64(dev[i], ZPOOL_CONFIG_GUID,
336699653d4eSeschrock 			    vd->vdev_guid) == 0);
336799653d4eSeschrock 		}
336899653d4eSeschrock 
336939c23413Seschrock 		vdev_free(vd);
337039c23413Seschrock 
3371fa94a07fSbrendan 		if (error &&
3372fa94a07fSbrendan 		    (mode != VDEV_ALLOC_SPARE && mode != VDEV_ALLOC_L2CACHE))
337339c23413Seschrock 			goto out;
337439c23413Seschrock 		else
337539c23413Seschrock 			error = 0;
337639c23413Seschrock 	}
337739c23413Seschrock 
337839c23413Seschrock out:
3379fa94a07fSbrendan 	sav->sav_pending = NULL;
3380fa94a07fSbrendan 	sav->sav_npending = 0;
338139c23413Seschrock 	return (error);
338299653d4eSeschrock }
338399653d4eSeschrock 
3384fa94a07fSbrendan static int
spa_validate_aux(spa_t * spa,nvlist_t * nvroot,uint64_t crtxg,int mode)3385fa94a07fSbrendan spa_validate_aux(spa_t *spa, nvlist_t *nvroot, uint64_t crtxg, int mode)
3386fa94a07fSbrendan {
3387fa94a07fSbrendan 	int error;
3388fa94a07fSbrendan 
3389e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
3390e14bb325SJeff Bonwick 
3391fa94a07fSbrendan 	if ((error = spa_validate_aux_devs(spa, nvroot, crtxg, mode,
3392fa94a07fSbrendan 	    &spa->spa_spares, ZPOOL_CONFIG_SPARES, SPA_VERSION_SPARES,
3393fa94a07fSbrendan 	    VDEV_LABEL_SPARE)) != 0) {
3394fa94a07fSbrendan 		return (error);
3395fa94a07fSbrendan 	}
3396fa94a07fSbrendan 
3397fa94a07fSbrendan 	return (spa_validate_aux_devs(spa, nvroot, crtxg, mode,
3398fa94a07fSbrendan 	    &spa->spa_l2cache, ZPOOL_CONFIG_L2CACHE, SPA_VERSION_L2CACHE,
3399fa94a07fSbrendan 	    VDEV_LABEL_L2CACHE));
3400fa94a07fSbrendan }
3401fa94a07fSbrendan 
3402fa94a07fSbrendan static void
spa_set_aux_vdevs(spa_aux_vdev_t * sav,nvlist_t ** devs,int ndevs,const char * config)3403fa94a07fSbrendan spa_set_aux_vdevs(spa_aux_vdev_t *sav, nvlist_t **devs, int ndevs,
3404fa94a07fSbrendan     const char *config)
3405fa94a07fSbrendan {
3406fa94a07fSbrendan 	int i;
3407fa94a07fSbrendan 
3408fa94a07fSbrendan 	if (sav->sav_config != NULL) {
3409fa94a07fSbrendan 		nvlist_t **olddevs;
3410fa94a07fSbrendan 		uint_t oldndevs;
3411fa94a07fSbrendan 		nvlist_t **newdevs;
3412fa94a07fSbrendan 
3413fa94a07fSbrendan 		/*
3414fa94a07fSbrendan 		 * Generate new dev list by concatentating with the
3415fa94a07fSbrendan 		 * current dev list.
3416fa94a07fSbrendan 		 */
3417fa94a07fSbrendan 		VERIFY(nvlist_lookup_nvlist_array(sav->sav_config, config,
3418fa94a07fSbrendan 		    &olddevs, &oldndevs) == 0);
3419fa94a07fSbrendan 
3420fa94a07fSbrendan 		newdevs = kmem_alloc(sizeof (void *) *
3421fa94a07fSbrendan 		    (ndevs + oldndevs), KM_SLEEP);
3422fa94a07fSbrendan 		for (i = 0; i < oldndevs; i++)
3423fa94a07fSbrendan 			VERIFY(nvlist_dup(olddevs[i], &newdevs[i],
3424fa94a07fSbrendan 			    KM_SLEEP) == 0);
3425fa94a07fSbrendan 		for (i = 0; i < ndevs; i++)
3426fa94a07fSbrendan 			VERIFY(nvlist_dup(devs[i], &newdevs[i + oldndevs],
3427fa94a07fSbrendan 			    KM_SLEEP) == 0);
3428fa94a07fSbrendan 
3429fa94a07fSbrendan 		VERIFY(nvlist_remove(sav->sav_config, config,
3430fa94a07fSbrendan 		    DATA_TYPE_NVLIST_ARRAY) == 0);
3431fa94a07fSbrendan 
3432fa94a07fSbrendan 		VERIFY(nvlist_add_nvlist_array(sav->sav_config,
3433fa94a07fSbrendan 		    config, newdevs, ndevs + oldndevs) == 0);
3434fa94a07fSbrendan 		for (i = 0; i < oldndevs + ndevs; i++)
3435fa94a07fSbrendan 			nvlist_free(newdevs[i]);
3436fa94a07fSbrendan 		kmem_free(newdevs, (oldndevs + ndevs) * sizeof (void *));
3437fa94a07fSbrendan 	} else {
3438fa94a07fSbrendan 		/*
3439fa94a07fSbrendan 		 * Generate a new dev list.
3440fa94a07fSbrendan 		 */
3441fa94a07fSbrendan 		VERIFY(nvlist_alloc(&sav->sav_config, NV_UNIQUE_NAME,
3442fa94a07fSbrendan 		    KM_SLEEP) == 0);
3443fa94a07fSbrendan 		VERIFY(nvlist_add_nvlist_array(sav->sav_config, config,
3444fa94a07fSbrendan 		    devs, ndevs) == 0);
3445fa94a07fSbrendan 	}
3446fa94a07fSbrendan }
3447fa94a07fSbrendan 
3448fa94a07fSbrendan /*
3449fa94a07fSbrendan  * Stop and drop level 2 ARC devices
3450fa94a07fSbrendan  */
3451fa94a07fSbrendan void
spa_l2cache_drop(spa_t * spa)3452fa94a07fSbrendan spa_l2cache_drop(spa_t *spa)
3453fa94a07fSbrendan {
3454fa94a07fSbrendan 	vdev_t *vd;
3455fa94a07fSbrendan 	int i;
3456fa94a07fSbrendan 	spa_aux_vdev_t *sav = &spa->spa_l2cache;
3457fa94a07fSbrendan 
3458fa94a07fSbrendan 	for (i = 0; i < sav->sav_count; i++) {
3459fa94a07fSbrendan 		uint64_t pool;
3460fa94a07fSbrendan 
3461fa94a07fSbrendan 		vd = sav->sav_vdevs[i];
3462fa94a07fSbrendan 		ASSERT(vd != NULL);
3463fa94a07fSbrendan 
34648ad4d6ddSJeff Bonwick 		if (spa_l2cache_exists(vd->vdev_guid, &pool) &&
34658ad4d6ddSJeff Bonwick 		    pool != 0ULL && l2arc_vdev_present(vd))
3466fa94a07fSbrendan 			l2arc_remove_vdev(vd);
3467fa94a07fSbrendan 	}
3468fa94a07fSbrendan }
3469fa94a07fSbrendan 
347099653d4eSeschrock /*
3471fa9e4066Sahrens  * Pool Creation
3472fa9e4066Sahrens  */
3473fa9e4066Sahrens int
spa_create(const char * pool,nvlist_t * nvroot,nvlist_t * props,nvlist_t * zplprops)3474990b4856Slling spa_create(const char *pool, nvlist_t *nvroot, nvlist_t *props,
34754445fffbSMatthew Ahrens     nvlist_t *zplprops)
3476fa9e4066Sahrens {
3477fa9e4066Sahrens 	spa_t *spa;
3478990b4856Slling 	char *altroot = NULL;
34790373e76bSbonwick 	vdev_t *rvd;
3480fa9e4066Sahrens 	dsl_pool_t *dp;
3481fa9e4066Sahrens 	dmu_tx_t *tx;
3482573ca77eSGeorge Wilson 	int error = 0;
3483fa9e4066Sahrens 	uint64_t txg = TXG_INITIAL;
3484fa94a07fSbrendan 	nvlist_t **spares, **l2cache;
3485fa94a07fSbrendan 	uint_t nspares, nl2cache;
3486cde58dbcSMatthew Ahrens 	uint64_t version, obj;
3487ad135b5dSChristopher Siden 	boolean_t has_features;
3488fa9e4066Sahrens 
3489fa9e4066Sahrens 	/*
3490fa9e4066Sahrens 	 * If this pool already exists, return failure.
3491fa9e4066Sahrens 	 */
3492fa9e4066Sahrens 	mutex_enter(&spa_namespace_lock);
3493fa9e4066Sahrens 	if (spa_lookup(pool) != NULL) {
3494fa9e4066Sahrens 		mutex_exit(&spa_namespace_lock);
3495be6fd75aSMatthew Ahrens 		return (SET_ERROR(EEXIST));
3496fa9e4066Sahrens 	}
3497fa9e4066Sahrens 
3498fa9e4066Sahrens 	/*
3499fa9e4066Sahrens 	 * Allocate a new spa_t structure.
3500fa9e4066Sahrens 	 */
3501990b4856Slling 	(void) nvlist_lookup_string(props,
3502990b4856Slling 	    zpool_prop_to_name(ZPOOL_PROP_ALTROOT), &altroot);
3503468c413aSTim Haley 	spa = spa_add(pool, NULL, altroot);
35048ad4d6ddSJeff Bonwick 	spa_activate(spa, spa_mode_global);
3505fa9e4066Sahrens 
3506990b4856Slling 	if (props && (error = spa_prop_validate(spa, props))) {
3507990b4856Slling 		spa_deactivate(spa);
3508990b4856Slling 		spa_remove(spa);
3509c5904d13Seschrock 		mutex_exit(&spa_namespace_lock);
3510990b4856Slling 		return (error);
3511990b4856Slling 	}
3512990b4856Slling 
3513ad135b5dSChristopher Siden 	has_features = B_FALSE;
3514ad135b5dSChristopher Siden 	for (nvpair_t *elem = nvlist_next_nvpair(props, NULL);
3515ad135b5dSChristopher Siden 	    elem != NULL; elem = nvlist_next_nvpair(props, elem)) {
3516ad135b5dSChristopher Siden 		if (zpool_prop_feature(nvpair_name(elem)))
3517ad135b5dSChristopher Siden 			has_features = B_TRUE;
3518ad135b5dSChristopher Siden 	}
3519ad135b5dSChristopher Siden 
3520ad135b5dSChristopher Siden 	if (has_features || nvlist_lookup_uint64(props,
3521ad135b5dSChristopher Siden 	    zpool_prop_to_name(ZPOOL_PROP_VERSION), &version) != 0) {
3522990b4856Slling 		version = SPA_VERSION;
3523ad135b5dSChristopher Siden 	}
3524ad135b5dSChristopher Siden 	ASSERT(SPA_VERSION_IS_SUPPORTED(version));
3525b24ab676SJeff Bonwick 
3526b24ab676SJeff Bonwick 	spa->spa_first_txg = txg;
3527b24ab676SJeff Bonwick 	spa->spa_uberblock.ub_txg = txg - 1;
3528990b4856Slling 	spa->spa_uberblock.ub_version = version;
3529fa9e4066Sahrens 	spa->spa_ubsync = spa->spa_uberblock;
3530fa9e4066Sahrens 
35310373e76bSbonwick 	/*
353254d692b7SGeorge Wilson 	 * Create "The Godfather" zio to hold all async IOs
353354d692b7SGeorge Wilson 	 */
35346f834bc1SMatthew Ahrens 	spa->spa_async_zio_root = kmem_alloc(max_ncpus * sizeof (void *),
35356f834bc1SMatthew Ahrens 	    KM_SLEEP);
35366f834bc1SMatthew Ahrens 	for (int i = 0; i < max_ncpus; i++) {
35376f834bc1SMatthew Ahrens 		spa->spa_async_zio_root[i] = zio_root(spa, NULL, NULL,
35386f834bc1SMatthew Ahrens 		    ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE |
35396f834bc1SMatthew Ahrens 		    ZIO_FLAG_GODFATHER);
35406f834bc1SMatthew Ahrens 	}
354154d692b7SGeorge Wilson 
354254d692b7SGeorge Wilson 	/*
35430373e76bSbonwick 	 * Create the root vdev.
35440373e76bSbonwick 	 */
3545e14bb325SJeff Bonwick 	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
35460373e76bSbonwick 
354799653d4eSeschrock 	error = spa_config_parse(spa, &rvd, nvroot, NULL, 0, VDEV_ALLOC_ADD);
35480373e76bSbonwick 
354999653d4eSeschrock 	ASSERT(error != 0 || rvd != NULL);
355099653d4eSeschrock 	ASSERT(error != 0 || spa->spa_root_vdev == rvd);
35510373e76bSbonwick 
3552b7b97454Sperrin 	if (error == 0 && !zfs_allocatable_devs(nvroot))
3553be6fd75aSMatthew Ahrens 		error = SET_ERROR(EINVAL);
355499653d4eSeschrock 
355599653d4eSeschrock 	if (error == 0 &&
355699653d4eSeschrock 	    (error = vdev_create(rvd, txg, B_FALSE)) == 0 &&
3557fa94a07fSbrendan 	    (error = spa_validate_aux(spa, nvroot, txg,
355899653d4eSeschrock 	    VDEV_ALLOC_ADD)) == 0) {
3559573ca77eSGeorge Wilson 		for (int c = 0; c < rvd->vdev_children; c++) {
3560573ca77eSGeorge Wilson 			vdev_metaslab_set_size(rvd->vdev_child[c]);
3561573ca77eSGeorge Wilson 			vdev_expand(rvd->vdev_child[c], txg);
3562573ca77eSGeorge Wilson 		}
35630373e76bSbonwick 	}
35640373e76bSbonwick 
3565e14bb325SJeff Bonwick 	spa_config_exit(spa, SCL_ALL, FTAG);
3566fa9e4066Sahrens 
356799653d4eSeschrock 	if (error != 0) {
3568fa9e4066Sahrens 		spa_unload(spa);
3569fa9e4066Sahrens 		spa_deactivate(spa);
3570fa9e4066Sahrens 		spa_remove(spa);
3571fa9e4066Sahrens 		mutex_exit(&spa_namespace_lock);
3572fa9e4066Sahrens 		return (error);
3573fa9e4066Sahrens 	}
3574fa9e4066Sahrens 
357599653d4eSeschrock 	/*
357699653d4eSeschrock 	 * Get the list of spares, if specified.
357799653d4eSeschrock 	 */
357899653d4eSeschrock 	if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_SPARES,
357999653d4eSeschrock 	    &spares, &nspares) == 0) {
3580fa94a07fSbrendan 		VERIFY(nvlist_alloc(&spa->spa_spares.sav_config, NV_UNIQUE_NAME,
358199653d4eSeschrock 		    KM_SLEEP) == 0);
3582fa94a07fSbrendan 		VERIFY(nvlist_add_nvlist_array(spa->spa_spares.sav_config,
358399653d4eSeschrock 		    ZPOOL_CONFIG_SPARES, spares, nspares) == 0);
3584e14bb325SJeff Bonwick 		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
358599653d4eSeschrock 		spa_load_spares(spa);
3586e14bb325SJeff Bonwick 		spa_config_exit(spa, SCL_ALL, FTAG);
3587fa94a07fSbrendan 		spa->spa_spares.sav_sync = B_TRUE;
3588fa94a07fSbrendan 	}
3589fa94a07fSbrendan 
3590fa94a07fSbrendan 	/*
3591fa94a07fSbrendan 	 * Get the list of level 2 cache devices, if specified.
3592fa94a07fSbrendan 	 */
3593fa94a07fSbrendan 	if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_L2CACHE,
3594fa94a07fSbrendan 	    &l2cache, &nl2cache) == 0) {
3595fa94a07fSbrendan 		VERIFY(nvlist_alloc(&spa->spa_l2cache.sav_config,
3596fa94a07fSbrendan 		    NV_UNIQUE_NAME, KM_SLEEP) == 0);
3597fa94a07fSbrendan 		VERIFY(nvlist_add_nvlist_array(spa->spa_l2cache.sav_config,
3598fa94a07fSbrendan 		    ZPOOL_CONFIG_L2CACHE, l2cache, nl2cache) == 0);
3599e14bb325SJeff Bonwick 		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
3600fa94a07fSbrendan 		spa_load_l2cache(spa);
3601e14bb325SJeff Bonwick 		spa_config_exit(spa, SCL_ALL, FTAG);
3602fa94a07fSbrendan 		spa->spa_l2cache.sav_sync = B_TRUE;
360399653d4eSeschrock 	}
360499653d4eSeschrock 
3605ad135b5dSChristopher Siden 	spa->spa_is_initializing = B_TRUE;
36060a48a24eStimh 	spa->spa_dsl_pool = dp = dsl_pool_create(spa, zplprops, txg);
3607fa9e4066Sahrens 	spa->spa_meta_objset = dp->dp_meta_objset;
3608ad135b5dSChristopher Siden 	spa->spa_is_initializing = B_FALSE;
3609fa9e4066Sahrens 
3610485bbbf5SGeorge Wilson 	/*
3611485bbbf5SGeorge Wilson 	 * Create DDTs (dedup tables).
3612485bbbf5SGeorge Wilson 	 */
3613485bbbf5SGeorge Wilson 	ddt_create(spa);
3614485bbbf5SGeorge Wilson 
3615485bbbf5SGeorge Wilson 	spa_update_dspace(spa);
3616485bbbf5SGeorge Wilson 
3617fa9e4066Sahrens 	tx = dmu_tx_create_assigned(dp, txg);
3618fa9e4066Sahrens 
3619fa9e4066Sahrens 	/*
3620fa9e4066Sahrens 	 * Create the pool config object.
3621fa9e4066Sahrens 	 */
3622fa9e4066Sahrens 	spa->spa_config_object = dmu_object_alloc(spa->spa_meta_objset,
3623f7991ba4STim Haley 	    DMU_OT_PACKED_NVLIST, SPA_CONFIG_BLOCKSIZE,
3624fa9e4066Sahrens 	    DMU_OT_PACKED_NVLIST_SIZE, sizeof (uint64_t), tx);
3625fa9e4066Sahrens 
3626ea8dc4b6Seschrock 	if (zap_add(spa->spa_meta_objset,
3627fa9e4066Sahrens 	    DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_CONFIG,
3628ea8dc4b6Seschrock 	    sizeof (uint64_t), 1, &spa->spa_config_object, tx) != 0) {
3629ea8dc4b6Seschrock 		cmn_err(CE_PANIC, "failed to add pool config");
3630ea8dc4b6Seschrock 	}
3631fa9e4066Sahrens 
3632ad135b5dSChristopher Siden 	if (spa_version(spa) >= SPA_VERSION_FEATURES)
3633ad135b5dSChristopher Siden 		spa_feature_create_zap_objects(spa, tx);
3634ad135b5dSChristopher Siden 
36353f9d6ad7SLin Ling 	if (zap_add(spa->spa_meta_objset,
36363f9d6ad7SLin Ling 	    DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_CREATION_VERSION,
36373f9d6ad7SLin Ling 	    sizeof (uint64_t), 1, &version, tx) != 0) {
36383f9d6ad7SLin Ling 		cmn_err(CE_PANIC, "failed to add pool version");
36393f9d6ad7SLin Ling 	}
36403f9d6ad7SLin Ling 
3641990b4856Slling 	/* Newly created pools with the right version are always deflated. */
3642990b4856Slling 	if (version >= SPA_VERSION_RAIDZ_DEFLATE) {
364399653d4eSeschrock 		spa->spa_deflate = TRUE;
364499653d4eSeschrock 		if (zap_add(spa->spa_meta_objset,
364599653d4eSeschrock 		    DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_DEFLATE,
364699653d4eSeschrock 		    sizeof (uint64_t), 1, &spa->spa_deflate, tx) != 0) {
364799653d4eSeschrock 			cmn_err(CE_PANIC, "failed to add deflate");
364899653d4eSeschrock 		}
3649990b4856Slling 	}
365099653d4eSeschrock 
3651fa9e4066Sahrens 	/*
3652cde58dbcSMatthew Ahrens 	 * Create the deferred-free bpobj.  Turn off compression
3653fa9e4066Sahrens 	 * because sync-to-convergence takes longer if the blocksize
3654fa9e4066Sahrens 	 * keeps changing.
3655fa9e4066Sahrens 	 */
3656cde58dbcSMatthew Ahrens 	obj = bpobj_alloc(spa->spa_meta_objset, 1 << 14, tx);
3657cde58dbcSMatthew Ahrens 	dmu_object_set_compress(spa->spa_meta_objset, obj,
3658cde58dbcSMatthew Ahrens 	    ZIO_COMPRESS_OFF, tx);
3659ea8dc4b6Seschrock 	if (zap_add(spa->spa_meta_objset,
3660cde58dbcSMatthew Ahrens 	    DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_SYNC_BPOBJ,
3661cde58dbcSMatthew Ahrens 	    sizeof (uint64_t), 1, &obj, tx) != 0) {
3662cde58dbcSMatthew Ahrens 		cmn_err(CE_PANIC, "failed to add bpobj");
3663ea8dc4b6Seschrock 	}
3664b420f3adSRichard Lowe 	VERIFY3U(0, ==, bpobj_open(&spa->spa_deferred_bpobj,
3665cde58dbcSMatthew Ahrens 	    spa->spa_meta_objset, obj));
3666fa9e4066Sahrens 
366706eeb2adSek110237 	/*
366806eeb2adSek110237 	 * Create the pool's history object.
366906eeb2adSek110237 	 */
3670990b4856Slling 	if (version >= SPA_VERSION_ZPOOL_HISTORY)
367106eeb2adSek110237 		spa_history_create_obj(spa, tx);
367206eeb2adSek110237 
3673990b4856Slling 	/*
3674990b4856Slling 	 * Set pool properties.
3675990b4856Slling 	 */
3676990b4856Slling 	spa->spa_bootfs = zpool_prop_default_numeric(ZPOOL_PROP_BOOTFS);
3677990b4856Slling 	spa->spa_delegation = zpool_prop_default_numeric(ZPOOL_PROP_DELEGATION);
36780a4e9518Sgw25295 	spa->spa_failmode = zpool_prop_default_numeric(ZPOOL_PROP_FAILUREMODE);
3679573ca77eSGeorge Wilson 	spa->spa_autoexpand = zpool_prop_default_numeric(ZPOOL_PROP_AUTOEXPAND);
3680b24ab676SJeff Bonwick 
3681379c004dSEric Schrock 	if (props != NULL) {
3682379c004dSEric Schrock 		spa_configfile_set(spa, props, B_FALSE);
36833b2aab18SMatthew Ahrens 		spa_sync_props(props, tx);
3684379c004dSEric Schrock 	}
3685990b4856Slling 
3686fa9e4066Sahrens 	dmu_tx_commit(tx);
3687fa9e4066Sahrens 
3688fa9e4066Sahrens 	spa->spa_sync_on = B_TRUE;
3689fa9e4066Sahrens 	txg_sync_start(spa->spa_dsl_pool);
3690fa9e4066Sahrens 
3691fa9e4066Sahrens 	/*
3692fa9e4066Sahrens 	 * We explicitly wait for the first transaction to complete so that our
3693fa9e4066Sahrens 	 * bean counters are appropriately updated.
3694fa9e4066Sahrens 	 */
3695fa9e4066Sahrens 	txg_wait_synced(spa->spa_dsl_pool, txg);
3696fa9e4066Sahrens 
3697c5904d13Seschrock 	spa_config_sync(spa, B_FALSE, B_TRUE);
3698fa9e4066Sahrens 
36994445fffbSMatthew Ahrens 	spa_history_log_version(spa, "create");
3700228975ccSek110237 
3701bc9014e6SJustin Gibbs 	/*
3702bc9014e6SJustin Gibbs 	 * Don't count references from objsets that are already closed
3703bc9014e6SJustin Gibbs 	 * and are making their way through the eviction process.
3704bc9014e6SJustin Gibbs 	 */
3705bc9014e6SJustin Gibbs 	spa_evicting_os_wait(spa);
3706088f3894Sahrens 	spa->spa_minref = refcount_count(&spa->spa_refcount);
3707088f3894Sahrens 
3708daaa36a7SGeorge Wilson 	mutex_exit(&spa_namespace_lock);
3709daaa36a7SGeorge Wilson 
3710fa9e4066Sahrens 	return (0);
3711fa9e4066Sahrens }
3712fa9e4066Sahrens 
3713e7cbe64fSgw25295 #ifdef _KERNEL
3714e7cbe64fSgw25295 /*
371521ecdf64SLin Ling  * Get the root pool information from the root disk, then import the root pool
371621ecdf64SLin Ling  * during the system boot up time.
3717e7cbe64fSgw25295  */
371821ecdf64SLin Ling extern int vdev_disk_read_rootlabel(char *, char *, nvlist_t **);
371921ecdf64SLin Ling 
372021ecdf64SLin Ling static nvlist_t *
spa_generate_rootconf(char * devpath,char * devid,uint64_t * guid)372121ecdf64SLin Ling spa_generate_rootconf(char *devpath, char *devid, uint64_t *guid)
3722e7cbe64fSgw25295 {
372321ecdf64SLin Ling 	nvlist_t *config;
3724e7cbe64fSgw25295 	nvlist_t *nvtop, *nvroot;
3725e7cbe64fSgw25295 	uint64_t pgid;
3726e7cbe64fSgw25295 
372721ecdf64SLin Ling 	if (vdev_disk_read_rootlabel(devpath, devid, &config) != 0)
372821ecdf64SLin Ling 		return (NULL);
372921ecdf64SLin Ling 
3730e7cbe64fSgw25295 	/*
3731e7cbe64fSgw25295 	 * Add this top-level vdev to the child array.
3732e7cbe64fSgw25295 	 */
373321ecdf64SLin Ling 	VERIFY(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
373421ecdf64SLin Ling 	    &nvtop) == 0);
373521ecdf64SLin Ling 	VERIFY(nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_GUID,
373621ecdf64SLin Ling 	    &pgid) == 0);
373721ecdf64SLin Ling 	VERIFY(nvlist_lookup_uint64(config, ZPOOL_CONFIG_GUID, guid) == 0);
3738e7cbe64fSgw25295 
3739e7cbe64fSgw25295 	/*
3740e7cbe64fSgw25295 	 * Put this pool's top-level vdevs into a root vdev.
3741e7cbe64fSgw25295 	 */
3742e7cbe64fSgw25295 	VERIFY(nvlist_alloc(&nvroot, NV_UNIQUE_NAME, KM_SLEEP) == 0);
374321ecdf64SLin Ling 	VERIFY(nvlist_add_string(nvroot, ZPOOL_CONFIG_TYPE,
374421ecdf64SLin Ling 	    VDEV_TYPE_ROOT) == 0);
3745e7cbe64fSgw25295 	VERIFY(nvlist_add_uint64(nvroot, ZPOOL_CONFIG_ID, 0ULL) == 0);
3746e7cbe64fSgw25295 	VERIFY(nvlist_add_uint64(nvroot, ZPOOL_CONFIG_GUID, pgid) == 0);
3747e7cbe64fSgw25295 	VERIFY(nvlist_add_nvlist_array(nvroot, ZPOOL_CONFIG_CHILDREN,
3748e7cbe64fSgw25295 	    &nvtop, 1) == 0);
3749e7cbe64fSgw25295 
3750e7cbe64fSgw25295 	/*
3751e7cbe64fSgw25295 	 * Replace the existing vdev_tree with the new root vdev in
3752e7cbe64fSgw25295 	 * this pool's configuration (remove the old, add the new).
3753e7cbe64fSgw25295 	 */
3754e7cbe64fSgw25295 	VERIFY(nvlist_add_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, nvroot) == 0);
3755e7cbe64fSgw25295 	nvlist_free(nvroot);
375621ecdf64SLin Ling 	return (config);
3757e7cbe64fSgw25295 }
3758e7cbe64fSgw25295 
3759e7cbe64fSgw25295 /*
376021ecdf64SLin Ling  * Walk the vdev tree and see if we can find a device with "better"
376121ecdf64SLin Ling  * configuration. A configuration is "better" if the label on that
376221ecdf64SLin Ling  * device has a more recent txg.
3763e7cbe64fSgw25295  */
376421ecdf64SLin Ling static void
spa_alt_rootvdev(vdev_t * vd,vdev_t ** avd,uint64_t * txg)376521ecdf64SLin Ling spa_alt_rootvdev(vdev_t *vd, vdev_t **avd, uint64_t *txg)
3766e7cbe64fSgw25295 {
3767573ca77eSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++)
376821ecdf64SLin Ling 		spa_alt_rootvdev(vd->vdev_child[c], avd, txg);
3769e7cbe64fSgw25295 
377021ecdf64SLin Ling 	if (vd->vdev_ops->vdev_op_leaf) {
377121ecdf64SLin Ling 		nvlist_t *label;
377221ecdf64SLin Ling 		uint64_t label_txg;
3773e7cbe64fSgw25295 
377421ecdf64SLin Ling 		if (vdev_disk_read_rootlabel(vd->vdev_physpath, vd->vdev_devid,
377521ecdf64SLin Ling 		    &label) != 0)
377621ecdf64SLin Ling 			return;
3777e7cbe64fSgw25295 
377821ecdf64SLin Ling 		VERIFY(nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_TXG,
377921ecdf64SLin Ling 		    &label_txg) == 0);
3780051aabe6Staylor 
3781051aabe6Staylor 		/*
378221ecdf64SLin Ling 		 * Do we have a better boot device?
3783051aabe6Staylor 		 */
378421ecdf64SLin Ling 		if (label_txg > *txg) {
378521ecdf64SLin Ling 			*txg = label_txg;
378621ecdf64SLin Ling 			*avd = vd;
3787051aabe6Staylor 		}
378821ecdf64SLin Ling 		nvlist_free(label);
3789051aabe6Staylor 	}
3790051aabe6Staylor }
3791051aabe6Staylor 
3792e7cbe64fSgw25295 /*
3793e7cbe64fSgw25295  * Import a root pool.
3794e7cbe64fSgw25295  *
3795051aabe6Staylor  * For x86. devpath_list will consist of devid and/or physpath name of
3796051aabe6Staylor  * the vdev (e.g. "id1,sd@SSEAGATE..." or "/pci@1f,0/ide@d/disk@0,0:a").
3797051aabe6Staylor  * The GRUB "findroot" command will return the vdev we should boot.
3798e7cbe64fSgw25295  *
3799e7cbe64fSgw25295  * For Sparc, devpath_list consists the physpath name of the booting device
3800e7cbe64fSgw25295  * no matter the rootpool is a single device pool or a mirrored pool.
3801e7cbe64fSgw25295  * e.g.
3802e7cbe64fSgw25295  *	"/pci@1f,0/ide@d/disk@0,0:a"
3803e7cbe64fSgw25295  */
3804e7cbe64fSgw25295 int
spa_import_rootpool(char * devpath,char * devid)3805051aabe6Staylor spa_import_rootpool(char *devpath, char *devid)
3806e7cbe64fSgw25295 {
380721ecdf64SLin Ling 	spa_t *spa;
380821ecdf64SLin Ling 	vdev_t *rvd, *bvd, *avd = NULL;
380921ecdf64SLin Ling 	nvlist_t *config, *nvtop;
381021ecdf64SLin Ling 	uint64_t guid, txg;
3811e7cbe64fSgw25295 	char *pname;
3812e7cbe64fSgw25295 	int error;
3813e7cbe64fSgw25295 
3814e7cbe64fSgw25295 	/*
381521ecdf64SLin Ling 	 * Read the label from the boot device and generate a configuration.
3816e7cbe64fSgw25295 	 */
3817dedec472SJack Meng 	config = spa_generate_rootconf(devpath, devid, &guid);
3818dedec472SJack Meng #if defined(_OBP) && defined(_KERNEL)
3819dedec472SJack Meng 	if (config == NULL) {
3820dedec472SJack Meng 		if (strstr(devpath, "/iscsi/ssd") != NULL) {
3821dedec472SJack Meng 			/* iscsi boot */
3822dedec472SJack Meng 			get_iscsi_bootpath_phy(devpath);
3823dedec472SJack Meng 			config = spa_generate_rootconf(devpath, devid, &guid);
3824dedec472SJack Meng 		}
3825dedec472SJack Meng 	}
3826dedec472SJack Meng #endif
3827dedec472SJack Meng 	if (config == NULL) {
382821ecdf64SLin Ling 		cmn_err(CE_NOTE, "Cannot read the pool label from '%s'",
382921ecdf64SLin Ling 		    devpath);
3830be6fd75aSMatthew Ahrens 		return (SET_ERROR(EIO));
383121ecdf64SLin Ling 	}
3832e7cbe64fSgw25295 
383321ecdf64SLin Ling 	VERIFY(nvlist_lookup_string(config, ZPOOL_CONFIG_POOL_NAME,
383421ecdf64SLin Ling 	    &pname) == 0);
383521ecdf64SLin Ling 	VERIFY(nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_TXG, &txg) == 0);
3836e7cbe64fSgw25295 
38376809eb4eSEric Schrock 	mutex_enter(&spa_namespace_lock);
38386809eb4eSEric Schrock 	if ((spa = spa_lookup(pname)) != NULL) {
3839bf82a41bSeschrock 		/*
38406809eb4eSEric Schrock 		 * Remove the existing root pool from the namespace so that we
38416809eb4eSEric Schrock 		 * can replace it with the correct config we just read in.
3842bf82a41bSeschrock 		 */
38436809eb4eSEric Schrock 		spa_remove(spa);
38446809eb4eSEric Schrock 	}
38456809eb4eSEric Schrock 
3846468c413aSTim Haley 	spa = spa_add(pname, config, NULL);
38476809eb4eSEric Schrock 	spa->spa_is_root = B_TRUE;
38484b964adaSGeorge Wilson 	spa->spa_import_flags = ZFS_IMPORT_VERBATIM;
384921ecdf64SLin Ling 
385021ecdf64SLin Ling 	/*
385121ecdf64SLin Ling 	 * Build up a vdev tree based on the boot device's label config.
385221ecdf64SLin Ling 	 */
385321ecdf64SLin Ling 	VERIFY(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
385421ecdf64SLin Ling 	    &nvtop) == 0);
385521ecdf64SLin Ling 	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
385621ecdf64SLin Ling 	error = spa_config_parse(spa, &rvd, nvtop, NULL, 0,
385721ecdf64SLin Ling 	    VDEV_ALLOC_ROOTPOOL);
385821ecdf64SLin Ling 	spa_config_exit(spa, SCL_ALL, FTAG);
385921ecdf64SLin Ling 	if (error) {
38606809eb4eSEric Schrock 		mutex_exit(&spa_namespace_lock);
386121ecdf64SLin Ling 		nvlist_free(config);
386221ecdf64SLin Ling 		cmn_err(CE_NOTE, "Can not parse the config for pool '%s'",
386321ecdf64SLin Ling 		    pname);
3864e7cbe64fSgw25295 		return (error);
3865e7cbe64fSgw25295 	}
386621ecdf64SLin Ling 
386721ecdf64SLin Ling 	/*
386821ecdf64SLin Ling 	 * Get the boot vdev.
386921ecdf64SLin Ling 	 */
387021ecdf64SLin Ling 	if ((bvd = vdev_lookup_by_guid(rvd, guid)) == NULL) {
387121ecdf64SLin Ling 		cmn_err(CE_NOTE, "Can not find the boot vdev for guid %llu",
387221ecdf64SLin Ling 		    (u_longlong_t)guid);
3873be6fd75aSMatthew Ahrens 		error = SET_ERROR(ENOENT);
387421ecdf64SLin Ling 		goto out;
387521ecdf64SLin Ling 	}
387621ecdf64SLin Ling 
387721ecdf64SLin Ling 	/*
387821ecdf64SLin Ling 	 * Determine if there is a better boot device.
387921ecdf64SLin Ling 	 */
388021ecdf64SLin Ling 	avd = bvd;
388121ecdf64SLin Ling 	spa_alt_rootvdev(rvd, &avd, &txg);
388221ecdf64SLin Ling 	if (avd != bvd) {
388321ecdf64SLin Ling 		cmn_err(CE_NOTE, "The boot device is 'degraded'. Please "
388421ecdf64SLin Ling 		    "try booting from '%s'", avd->vdev_path);
3885be6fd75aSMatthew Ahrens 		error = SET_ERROR(EINVAL);
388621ecdf64SLin Ling 		goto out;
388721ecdf64SLin Ling 	}
388821ecdf64SLin Ling 
388921ecdf64SLin Ling 	/*
389021ecdf64SLin Ling 	 * If the boot device is part of a spare vdev then ensure that
389121ecdf64SLin Ling 	 * we're booting off the active spare.
389221ecdf64SLin Ling 	 */
389321ecdf64SLin Ling 	if (bvd->vdev_parent->vdev_ops == &vdev_spare_ops &&
389421ecdf64SLin Ling 	    !bvd->vdev_isspare) {
389521ecdf64SLin Ling 		cmn_err(CE_NOTE, "The boot device is currently spared. Please "
389621ecdf64SLin Ling 		    "try booting from '%s'",
3897cb04b873SMark J Musante 		    bvd->vdev_parent->
3898cb04b873SMark J Musante 		    vdev_child[bvd->vdev_parent->vdev_children - 1]->vdev_path);
3899be6fd75aSMatthew Ahrens 		error = SET_ERROR(EINVAL);
390021ecdf64SLin Ling 		goto out;
390121ecdf64SLin Ling 	}
390221ecdf64SLin Ling 
390321ecdf64SLin Ling 	error = 0;
390421ecdf64SLin Ling out:
390521ecdf64SLin Ling 	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
390621ecdf64SLin Ling 	vdev_free(rvd);
390721ecdf64SLin Ling 	spa_config_exit(spa, SCL_ALL, FTAG);
390821ecdf64SLin Ling 	mutex_exit(&spa_namespace_lock);
390921ecdf64SLin Ling 
391021ecdf64SLin Ling 	nvlist_free(config);
391121ecdf64SLin Ling 	return (error);
391221ecdf64SLin Ling }
391321ecdf64SLin Ling 
3914e7cbe64fSgw25295 #endif
3915e7cbe64fSgw25295 
3916e7cbe64fSgw25295 /*
3917e7cbe64fSgw25295  * Import a non-root pool into the system.
3918e7cbe64fSgw25295  */
3919e7cbe64fSgw25295 int
spa_import(const char * pool,nvlist_t * config,nvlist_t * props,uint64_t flags)39204b964adaSGeorge Wilson spa_import(const char *pool, nvlist_t *config, nvlist_t *props, uint64_t flags)
3921e7cbe64fSgw25295 {
39226809eb4eSEric Schrock 	spa_t *spa;
39236809eb4eSEric Schrock 	char *altroot = NULL;
3924468c413aSTim Haley 	spa_load_state_t state = SPA_LOAD_IMPORT;
3925468c413aSTim Haley 	zpool_rewind_policy_t policy;
3926f9af39baSGeorge Wilson 	uint64_t mode = spa_mode_global;
3927f9af39baSGeorge Wilson 	uint64_t readonly = B_FALSE;
39286809eb4eSEric Schrock 	int error;
39296809eb4eSEric Schrock 	nvlist_t *nvroot;
39306809eb4eSEric Schrock 	nvlist_t **spares, **l2cache;
39316809eb4eSEric Schrock 	uint_t nspares, nl2cache;
39326809eb4eSEric Schrock 
39336809eb4eSEric Schrock 	/*
39346809eb4eSEric Schrock 	 * If a pool with this name exists, return failure.
39356809eb4eSEric Schrock 	 */
39366809eb4eSEric Schrock 	mutex_enter(&spa_namespace_lock);
39371195e687SMark J Musante 	if (spa_lookup(pool) != NULL) {
39386809eb4eSEric Schrock 		mutex_exit(&spa_namespace_lock);
3939be6fd75aSMatthew Ahrens 		return (SET_ERROR(EEXIST));
3940e7cbe64fSgw25295 	}
3941e7cbe64fSgw25295 
39426809eb4eSEric Schrock 	/*
39436809eb4eSEric Schrock 	 * Create and initialize the spa structure.
39446809eb4eSEric Schrock 	 */
39456809eb4eSEric Schrock 	(void) nvlist_lookup_string(props,
39466809eb4eSEric Schrock 	    zpool_prop_to_name(ZPOOL_PROP_ALTROOT), &altroot);
3947f9af39baSGeorge Wilson 	(void) nvlist_lookup_uint64(props,
3948f9af39baSGeorge Wilson 	    zpool_prop_to_name(ZPOOL_PROP_READONLY), &readonly);
3949f9af39baSGeorge Wilson 	if (readonly)
3950f9af39baSGeorge Wilson 		mode = FREAD;
3951468c413aSTim Haley 	spa = spa_add(pool, config, altroot);
39524b964adaSGeorge Wilson 	spa->spa_import_flags = flags;
39534b964adaSGeorge Wilson 
39544b964adaSGeorge Wilson 	/*
39554b964adaSGeorge Wilson 	 * Verbatim import - Take a pool and insert it into the namespace
39564b964adaSGeorge Wilson 	 * as if it had been loaded at boot.
39574b964adaSGeorge Wilson 	 */
39584b964adaSGeorge Wilson 	if (spa->spa_import_flags & ZFS_IMPORT_VERBATIM) {
39594b964adaSGeorge Wilson 		if (props != NULL)
39604b964adaSGeorge Wilson 			spa_configfile_set(spa, props, B_FALSE);
39614b964adaSGeorge Wilson 
39624b964adaSGeorge Wilson 		spa_config_sync(spa, B_FALSE, B_TRUE);
39634b964adaSGeorge Wilson 
39644b964adaSGeorge Wilson 		mutex_exit(&spa_namespace_lock);
39654b964adaSGeorge Wilson 		return (0);
39664b964adaSGeorge Wilson 	}
39674b964adaSGeorge Wilson 
3968f9af39baSGeorge Wilson 	spa_activate(spa, mode);
39696809eb4eSEric Schrock 
39706809eb4eSEric Schrock 	/*
397125f89ee2SJeff Bonwick 	 * Don't start async tasks until we know everything is healthy.
397225f89ee2SJeff Bonwick 	 */
397325f89ee2SJeff Bonwick 	spa_async_suspend(spa);
397425f89ee2SJeff Bonwick 
39754b964adaSGeorge Wilson 	zpool_get_rewind_policy(config, &policy);
39764b964adaSGeorge Wilson 	if (policy.zrp_request & ZPOOL_DO_REWIND)
39774b964adaSGeorge Wilson 		state = SPA_LOAD_RECOVER;
39784b964adaSGeorge Wilson 
397925f89ee2SJeff Bonwick 	/*
39806809eb4eSEric Schrock 	 * Pass off the heavy lifting to spa_load().  Pass TRUE for mosconfig
39816809eb4eSEric Schrock 	 * because the user-supplied config is actually the one to trust when
39826809eb4eSEric Schrock 	 * doing an import.
39836809eb4eSEric Schrock 	 */
3984468c413aSTim Haley 	if (state != SPA_LOAD_RECOVER)
3985468c413aSTim Haley 		spa->spa_last_ubsync_txg = spa->spa_load_txg = 0;
39864b964adaSGeorge Wilson 
3987468c413aSTim Haley 	error = spa_load_best(spa, state, B_TRUE, policy.zrp_txg,
3988c8ee1847SVictor Latushkin 	    policy.zrp_request);
3989468c413aSTim Haley 
3990468c413aSTim Haley 	/*
39914b964adaSGeorge Wilson 	 * Propagate anything learned while loading the pool and pass it
39924b964adaSGeorge Wilson 	 * back to caller (i.e. rewind info, missing devices, etc).
3993468c413aSTim Haley 	 */
39944b964adaSGeorge Wilson 	VERIFY(nvlist_add_nvlist(config, ZPOOL_CONFIG_LOAD_INFO,
39954b964adaSGeorge Wilson 	    spa->spa_load_info) == 0);
39966809eb4eSEric Schrock 
39976809eb4eSEric Schrock 	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
39986809eb4eSEric Schrock 	/*
39996809eb4eSEric Schrock 	 * Toss any existing sparelist, as it doesn't have any validity
40006809eb4eSEric Schrock 	 * anymore, and conflicts with spa_has_spare().
40016809eb4eSEric Schrock 	 */
40026809eb4eSEric Schrock 	if (spa->spa_spares.sav_config) {
40036809eb4eSEric Schrock 		nvlist_free(spa->spa_spares.sav_config);
40046809eb4eSEric Schrock 		spa->spa_spares.sav_config = NULL;
40056809eb4eSEric Schrock 		spa_load_spares(spa);
40066809eb4eSEric Schrock 	}
40076809eb4eSEric Schrock 	if (spa->spa_l2cache.sav_config) {
40086809eb4eSEric Schrock 		nvlist_free(spa->spa_l2cache.sav_config);
40096809eb4eSEric Schrock 		spa->spa_l2cache.sav_config = NULL;
40106809eb4eSEric Schrock 		spa_load_l2cache(spa);
40116809eb4eSEric Schrock 	}
40126809eb4eSEric Schrock 
40136809eb4eSEric Schrock 	VERIFY(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
40146809eb4eSEric Schrock 	    &nvroot) == 0);
40156809eb4eSEric Schrock 	if (error == 0)
40166809eb4eSEric Schrock 		error = spa_validate_aux(spa, nvroot, -1ULL,
40176809eb4eSEric Schrock 		    VDEV_ALLOC_SPARE);
40186809eb4eSEric Schrock 	if (error == 0)
40196809eb4eSEric Schrock 		error = spa_validate_aux(spa, nvroot, -1ULL,
40206809eb4eSEric Schrock 		    VDEV_ALLOC_L2CACHE);
40216809eb4eSEric Schrock 	spa_config_exit(spa, SCL_ALL, FTAG);
40226809eb4eSEric Schrock 
40236809eb4eSEric Schrock 	if (props != NULL)
40246809eb4eSEric Schrock 		spa_configfile_set(spa, props, B_FALSE);
40256809eb4eSEric Schrock 
40266809eb4eSEric Schrock 	if (error != 0 || (props && spa_writeable(spa) &&
40276809eb4eSEric Schrock 	    (error = spa_prop_set(spa, props)))) {
40286809eb4eSEric Schrock 		spa_unload(spa);
40296809eb4eSEric Schrock 		spa_deactivate(spa);
40306809eb4eSEric Schrock 		spa_remove(spa);
40316809eb4eSEric Schrock 		mutex_exit(&spa_namespace_lock);
40326809eb4eSEric Schrock 		return (error);
40336809eb4eSEric Schrock 	}
40346809eb4eSEric Schrock 
4035955ef359SLin Ling 	spa_async_resume(spa);
4036955ef359SLin Ling 
40376809eb4eSEric Schrock 	/*
40386809eb4eSEric Schrock 	 * Override any spares and level 2 cache devices as specified by
40396809eb4eSEric Schrock 	 * the user, as these may have correct device names/devids, etc.
40406809eb4eSEric Schrock 	 */
40416809eb4eSEric Schrock 	if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_SPARES,
40426809eb4eSEric Schrock 	    &spares, &nspares) == 0) {
40436809eb4eSEric Schrock 		if (spa->spa_spares.sav_config)
40446809eb4eSEric Schrock 			VERIFY(nvlist_remove(spa->spa_spares.sav_config,
40456809eb4eSEric Schrock 			    ZPOOL_CONFIG_SPARES, DATA_TYPE_NVLIST_ARRAY) == 0);
40466809eb4eSEric Schrock 		else
40476809eb4eSEric Schrock 			VERIFY(nvlist_alloc(&spa->spa_spares.sav_config,
40486809eb4eSEric Schrock 			    NV_UNIQUE_NAME, KM_SLEEP) == 0);
40496809eb4eSEric Schrock 		VERIFY(nvlist_add_nvlist_array(spa->spa_spares.sav_config,
40506809eb4eSEric Schrock 		    ZPOOL_CONFIG_SPARES, spares, nspares) == 0);
40516809eb4eSEric Schrock 		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
40526809eb4eSEric Schrock 		spa_load_spares(spa);
40536809eb4eSEric Schrock 		spa_config_exit(spa, SCL_ALL, FTAG);
40546809eb4eSEric Schrock 		spa->spa_spares.sav_sync = B_TRUE;
40556809eb4eSEric Schrock 	}
40566809eb4eSEric Schrock 	if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_L2CACHE,
40576809eb4eSEric Schrock 	    &l2cache, &nl2cache) == 0) {
40586809eb4eSEric Schrock 		if (spa->spa_l2cache.sav_config)
40596809eb4eSEric Schrock 			VERIFY(nvlist_remove(spa->spa_l2cache.sav_config,
40606809eb4eSEric Schrock 			    ZPOOL_CONFIG_L2CACHE, DATA_TYPE_NVLIST_ARRAY) == 0);
40616809eb4eSEric Schrock 		else
40626809eb4eSEric Schrock 			VERIFY(nvlist_alloc(&spa->spa_l2cache.sav_config,
40636809eb4eSEric Schrock 			    NV_UNIQUE_NAME, KM_SLEEP) == 0);
40646809eb4eSEric Schrock 		VERIFY(nvlist_add_nvlist_array(spa->spa_l2cache.sav_config,
40656809eb4eSEric Schrock 		    ZPOOL_CONFIG_L2CACHE, l2cache, nl2cache) == 0);
40666809eb4eSEric Schrock 		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
40676809eb4eSEric Schrock 		spa_load_l2cache(spa);
40686809eb4eSEric Schrock 		spa_config_exit(spa, SCL_ALL, FTAG);
40696809eb4eSEric Schrock 		spa->spa_l2cache.sav_sync = B_TRUE;
40706809eb4eSEric Schrock 	}
40716809eb4eSEric Schrock 
4072b693757aSEric Schrock 	/*
4073b693757aSEric Schrock 	 * Check for any removed devices.
4074b693757aSEric Schrock 	 */
4075b693757aSEric Schrock 	if (spa->spa_autoreplace) {
4076b693757aSEric Schrock 		spa_aux_check_removed(&spa->spa_spares);
4077b693757aSEric Schrock 		spa_aux_check_removed(&spa->spa_l2cache);
4078b693757aSEric Schrock 	}
4079b693757aSEric Schrock 
40806809eb4eSEric Schrock 	if (spa_writeable(spa)) {
40816809eb4eSEric Schrock 		/*
40826809eb4eSEric Schrock 		 * Update the config cache to include the newly-imported pool.
40836809eb4eSEric Schrock 		 */
4084bc758434SLin Ling 		spa_config_update(spa, SPA_CONFIG_UPDATE_POOL);
40856809eb4eSEric Schrock 	}
40866809eb4eSEric Schrock 
4087573ca77eSGeorge Wilson 	/*
4088573ca77eSGeorge Wilson 	 * It's possible that the pool was expanded while it was exported.
4089573ca77eSGeorge Wilson 	 * We kick off an async task to handle this for us.
4090573ca77eSGeorge Wilson 	 */
4091573ca77eSGeorge Wilson 	spa_async_request(spa, SPA_ASYNC_AUTOEXPAND);
4092573ca77eSGeorge Wilson 
40936809eb4eSEric Schrock 	mutex_exit(&spa_namespace_lock);
40944445fffbSMatthew Ahrens 	spa_history_log_version(spa, "import");
40956809eb4eSEric Schrock 
40966809eb4eSEric Schrock 	return (0);
4097c5904d13Seschrock }
4098c5904d13Seschrock 
4099fa9e4066Sahrens nvlist_t *
spa_tryimport(nvlist_t * tryconfig)4100fa9e4066Sahrens spa_tryimport(nvlist_t *tryconfig)
4101fa9e4066Sahrens {
4102fa9e4066Sahrens 	nvlist_t *config = NULL;
4103fa9e4066Sahrens 	char *poolname;
4104fa9e4066Sahrens 	spa_t *spa;
4105fa9e4066Sahrens 	uint64_t state;
41067b7154beSLin Ling 	int error;
4107fa9e4066Sahrens 
4108fa9e4066Sahrens 	if (nvlist_lookup_string(tryconfig, ZPOOL_CONFIG_POOL_NAME, &poolname))
4109fa9e4066Sahrens 		return (NULL);
4110fa9e4066Sahrens 
4111fa9e4066Sahrens 	if (nvlist_lookup_uint64(tryconfig, ZPOOL_CONFIG_POOL_STATE, &state))
4112fa9e4066Sahrens 		return (NULL);
4113fa9e4066Sahrens 
4114fa9e4066Sahrens 	/*
41150373e76bSbonwick 	 * Create and initialize the spa structure.
4116fa9e4066Sahrens 	 */
41170373e76bSbonwick 	mutex_enter(&spa_namespace_lock);
4118468c413aSTim Haley 	spa = spa_add(TRYIMPORT_NAME, tryconfig, NULL);
41198ad4d6ddSJeff Bonwick 	spa_activate(spa, FREAD);
4120fa9e4066Sahrens 
4121fa9e4066Sahrens 	/*
41220373e76bSbonwick 	 * Pass off the heavy lifting to spa_load().
4123ecc2d604Sbonwick 	 * Pass TRUE for mosconfig because the user-supplied config
4124ecc2d604Sbonwick 	 * is actually the one to trust when doing an import.
4125fa9e4066Sahrens 	 */
41261195e687SMark J Musante 	error = spa_load(spa, SPA_LOAD_TRYIMPORT, SPA_IMPORT_EXISTING, B_TRUE);
4127fa9e4066Sahrens 
4128fa9e4066Sahrens 	/*
4129fa9e4066Sahrens 	 * If 'tryconfig' was at least parsable, return the current config.
4130fa9e4066Sahrens 	 */
4131fa9e4066Sahrens 	if (spa->spa_root_vdev != NULL) {
4132fa9e4066Sahrens 		config = spa_config_generate(spa, NULL, -1ULL, B_TRUE);
4133fa9e4066Sahrens 		VERIFY(nvlist_add_string(config, ZPOOL_CONFIG_POOL_NAME,
4134fa9e4066Sahrens 		    poolname) == 0);
4135fa9e4066Sahrens 		VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_STATE,
4136fa9e4066Sahrens 		    state) == 0);
413795173954Sek110237 		VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_TIMESTAMP,
413895173954Sek110237 		    spa->spa_uberblock.ub_timestamp) == 0);
4139ad135b5dSChristopher Siden 		VERIFY(nvlist_add_nvlist(config, ZPOOL_CONFIG_LOAD_INFO,
4140ad135b5dSChristopher Siden 		    spa->spa_load_info) == 0);
414199653d4eSeschrock 
414299653d4eSeschrock 		/*
4143e7cbe64fSgw25295 		 * If the bootfs property exists on this pool then we
4144e7cbe64fSgw25295 		 * copy it out so that external consumers can tell which
4145e7cbe64fSgw25295 		 * pools are bootable.
4146e7cbe64fSgw25295 		 */
41477b7154beSLin Ling 		if ((!error || error == EEXIST) && spa->spa_bootfs) {
4148e7cbe64fSgw25295 			char *tmpname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
4149e7cbe64fSgw25295 
4150e7cbe64fSgw25295 			/*
4151e7cbe64fSgw25295 			 * We have to play games with the name since the
4152e7cbe64fSgw25295 			 * pool was opened as TRYIMPORT_NAME.
4153e7cbe64fSgw25295 			 */
4154e14bb325SJeff Bonwick 			if (dsl_dsobj_to_dsname(spa_name(spa),
4155e7cbe64fSgw25295 			    spa->spa_bootfs, tmpname) == 0) {
4156e7cbe64fSgw25295 				char *cp;
4157e7cbe64fSgw25295 				char *dsname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
4158e7cbe64fSgw25295 
4159e7cbe64fSgw25295 				cp = strchr(tmpname, '/');
4160e7cbe64fSgw25295 				if (cp == NULL) {
4161e7cbe64fSgw25295 					(void) strlcpy(dsname, tmpname,
4162e7cbe64fSgw25295 					    MAXPATHLEN);
4163e7cbe64fSgw25295 				} else {
4164e7cbe64fSgw25295 					(void) snprintf(dsname, MAXPATHLEN,
4165e7cbe64fSgw25295 					    "%s/%s", poolname, ++cp);
4166e7cbe64fSgw25295 				}
4167e7cbe64fSgw25295 				VERIFY(nvlist_add_string(config,
4168e7cbe64fSgw25295 				    ZPOOL_CONFIG_BOOTFS, dsname) == 0);
4169e7cbe64fSgw25295 				kmem_free(dsname, MAXPATHLEN);
4170e7cbe64fSgw25295 			}
4171e7cbe64fSgw25295 			kmem_free(tmpname, MAXPATHLEN);
4172e7cbe64fSgw25295 		}
4173e7cbe64fSgw25295 
4174e7cbe64fSgw25295 		/*
4175fa94a07fSbrendan 		 * Add the list of hot spares and level 2 cache devices.
417699653d4eSeschrock 		 */
41776809eb4eSEric Schrock 		spa_config_enter(spa, SCL_CONFIG, FTAG, RW_READER);
417899653d4eSeschrock 		spa_add_spares(spa, config);
4179fa94a07fSbrendan 		spa_add_l2cache(spa, config);
41806809eb4eSEric Schrock 		spa_config_exit(spa, SCL_CONFIG, FTAG);
4181fa9e4066Sahrens 	}
4182fa9e4066Sahrens 
4183fa9e4066Sahrens 	spa_unload(spa);
4184fa9e4066Sahrens 	spa_deactivate(spa);
4185fa9e4066Sahrens 	spa_remove(spa);
4186fa9e4066Sahrens 	mutex_exit(&spa_namespace_lock);
4187fa9e4066Sahrens 
4188fa9e4066Sahrens 	return (config);
4189fa9e4066Sahrens }
4190fa9e4066Sahrens 
4191fa9e4066Sahrens /*
4192fa9e4066Sahrens  * Pool export/destroy
4193fa9e4066Sahrens  *
4194fa9e4066Sahrens  * The act of destroying or exporting a pool is very simple.  We make sure there
4195fa9e4066Sahrens  * is no more pending I/O and any references to the pool are gone.  Then, we
4196fa9e4066Sahrens  * update the pool state and sync all the labels to disk, removing the
4197394ab0cbSGeorge Wilson  * configuration from the cache afterwards. If the 'hardforce' flag is set, then
4198394ab0cbSGeorge Wilson  * we don't sync the labels or remove the configuration cache.
4199fa9e4066Sahrens  */
4200fa9e4066Sahrens static int
spa_export_common(char * pool,int new_state,nvlist_t ** oldconfig,boolean_t force,boolean_t hardforce)420189a89ebfSlling spa_export_common(char *pool, int new_state, nvlist_t **oldconfig,
4202394ab0cbSGeorge Wilson     boolean_t force, boolean_t hardforce)
4203fa9e4066Sahrens {
4204fa9e4066Sahrens 	spa_t *spa;
4205fa9e4066Sahrens 
420644cd46caSbillm 	if (oldconfig)
420744cd46caSbillm 		*oldconfig = NULL;
420844cd46caSbillm 
42098ad4d6ddSJeff Bonwick 	if (!(spa_mode_global & FWRITE))
4210be6fd75aSMatthew Ahrens 		return (SET_ERROR(EROFS));
4211fa9e4066Sahrens 
4212fa9e4066Sahrens 	mutex_enter(&spa_namespace_lock);
4213fa9e4066Sahrens 	if ((spa = spa_lookup(pool)) == NULL) {
4214fa9e4066Sahrens 		mutex_exit(&spa_namespace_lock);
4215be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOENT));
4216fa9e4066Sahrens 	}
4217fa9e4066Sahrens 
4218fa9e4066Sahrens 	/*
4219ea8dc4b6Seschrock 	 * Put a hold on the pool, drop the namespace lock, stop async tasks,
4220ea8dc4b6Seschrock 	 * reacquire the namespace lock, and see if we can export.
4221ea8dc4b6Seschrock 	 */
4222ea8dc4b6Seschrock 	spa_open_ref(spa, FTAG);
4223ea8dc4b6Seschrock 	mutex_exit(&spa_namespace_lock);
4224ea8dc4b6Seschrock 	spa_async_suspend(spa);
4225ea8dc4b6Seschrock 	mutex_enter(&spa_namespace_lock);
4226ea8dc4b6Seschrock 	spa_close(spa, FTAG);
4227ea8dc4b6Seschrock 
4228ea8dc4b6Seschrock 	/*
4229fa9e4066Sahrens 	 * The pool will be in core if it's openable,
4230fa9e4066Sahrens 	 * in which case we can modify its state.
4231fa9e4066Sahrens 	 */
4232fa9e4066Sahrens 	if (spa->spa_state != POOL_STATE_UNINITIALIZED && spa->spa_sync_on) {
4233fa9e4066Sahrens 		/*
4234fa9e4066Sahrens 		 * Objsets may be open only because they're dirty, so we
4235fa9e4066Sahrens 		 * have to force it to sync before checking spa_refcnt.
4236fa9e4066Sahrens 		 */
4237fa9e4066Sahrens 		txg_wait_synced(spa->spa_dsl_pool, 0);
4238bc9014e6SJustin Gibbs 		spa_evicting_os_wait(spa);
4239fa9e4066Sahrens 
4240ea8dc4b6Seschrock 		/*
4241ea8dc4b6Seschrock 		 * A pool cannot be exported or destroyed if there are active
4242ea8dc4b6Seschrock 		 * references.  If we are resetting a pool, allow references by
4243ea8dc4b6Seschrock 		 * fault injection handlers.
4244ea8dc4b6Seschrock 		 */
4245ea8dc4b6Seschrock 		if (!spa_refcount_zero(spa) ||
4246ea8dc4b6Seschrock 		    (spa->spa_inject_ref != 0 &&
4247ea8dc4b6Seschrock 		    new_state != POOL_STATE_UNINITIALIZED)) {
4248ea8dc4b6Seschrock 			spa_async_resume(spa);
4249fa9e4066Sahrens 			mutex_exit(&spa_namespace_lock);
4250be6fd75aSMatthew Ahrens 			return (SET_ERROR(EBUSY));
4251fa9e4066Sahrens 		}
4252fa9e4066Sahrens 
4253fa9e4066Sahrens 		/*
425489a89ebfSlling 		 * A pool cannot be exported if it has an active shared spare.
425589a89ebfSlling 		 * This is to prevent other pools stealing the active spare
425689a89ebfSlling 		 * from an exported pool. At user's own will, such pool can
425789a89ebfSlling 		 * be forcedly exported.
425889a89ebfSlling 		 */
425989a89ebfSlling 		if (!force && new_state == POOL_STATE_EXPORTED &&
426089a89ebfSlling 		    spa_has_active_shared_spare(spa)) {
426189a89ebfSlling 			spa_async_resume(spa);
426289a89ebfSlling 			mutex_exit(&spa_namespace_lock);
4263be6fd75aSMatthew Ahrens 			return (SET_ERROR(EXDEV));
426489a89ebfSlling 		}
426589a89ebfSlling 
426689a89ebfSlling 		/*
4267fa9e4066Sahrens 		 * We want this to be reflected on every label,
4268fa9e4066Sahrens 		 * so mark them all dirty.  spa_unload() will do the
4269fa9e4066Sahrens 		 * final sync that pushes these changes out.
4270fa9e4066Sahrens 		 */
4271394ab0cbSGeorge Wilson 		if (new_state != POOL_STATE_UNINITIALIZED && !hardforce) {
4272e14bb325SJeff Bonwick 			spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
4273ea8dc4b6Seschrock 			spa->spa_state = new_state;
42743f9d6ad7SLin Ling 			spa->spa_final_txg = spa_last_synced_txg(spa) +
42753f9d6ad7SLin Ling 			    TXG_DEFER_SIZE + 1;
4276fa9e4066Sahrens 			vdev_config_dirty(spa->spa_root_vdev);
4277e14bb325SJeff Bonwick 			spa_config_exit(spa, SCL_ALL, FTAG);
4278fa9e4066Sahrens 		}
4279ea8dc4b6Seschrock 	}
4280fa9e4066Sahrens 
42813d7072f8Seschrock 	spa_event_notify(spa, NULL, ESC_ZFS_POOL_DESTROY);
42823d7072f8Seschrock 
4283fa9e4066Sahrens 	if (spa->spa_state != POOL_STATE_UNINITIALIZED) {
4284fa9e4066Sahrens 		spa_unload(spa);
4285fa9e4066Sahrens 		spa_deactivate(spa);
4286fa9e4066Sahrens 	}
4287fa9e4066Sahrens 
428844cd46caSbillm 	if (oldconfig && spa->spa_config)
428944cd46caSbillm 		VERIFY(nvlist_dup(spa->spa_config, oldconfig, 0) == 0);
429044cd46caSbillm 
4291ea8dc4b6Seschrock 	if (new_state != POOL_STATE_UNINITIALIZED) {
4292394ab0cbSGeorge Wilson 		if (!hardforce)
4293c5904d13Seschrock 			spa_config_sync(spa, B_TRUE, B_TRUE);
4294fa9e4066Sahrens 		spa_remove(spa);
4295ea8dc4b6Seschrock 	}
4296fa9e4066Sahrens 	mutex_exit(&spa_namespace_lock);
4297fa9e4066Sahrens 
4298fa9e4066Sahrens 	return (0);
4299fa9e4066Sahrens }
4300fa9e4066Sahrens 
4301fa9e4066Sahrens /*
4302fa9e4066Sahrens  * Destroy a storage pool.
4303fa9e4066Sahrens  */
4304fa9e4066Sahrens int
spa_destroy(char * pool)4305fa9e4066Sahrens spa_destroy(char *pool)
4306fa9e4066Sahrens {
4307394ab0cbSGeorge Wilson 	return (spa_export_common(pool, POOL_STATE_DESTROYED, NULL,
4308394ab0cbSGeorge Wilson 	    B_FALSE, B_FALSE));
4309fa9e4066Sahrens }
4310fa9e4066Sahrens 
4311fa9e4066Sahrens /*
4312fa9e4066Sahrens  * Export a storage pool.
4313fa9e4066Sahrens  */
4314fa9e4066Sahrens int
spa_export(char * pool,nvlist_t ** oldconfig,boolean_t force,boolean_t hardforce)4315394ab0cbSGeorge Wilson spa_export(char *pool, nvlist_t **oldconfig, boolean_t force,
4316394ab0cbSGeorge Wilson     boolean_t hardforce)
4317fa9e4066Sahrens {
4318394ab0cbSGeorge Wilson 	return (spa_export_common(pool, POOL_STATE_EXPORTED, oldconfig,
4319394ab0cbSGeorge Wilson 	    force, hardforce));
4320fa9e4066Sahrens }
4321fa9e4066Sahrens 
4322fa9e4066Sahrens /*
4323ea8dc4b6Seschrock  * Similar to spa_export(), this unloads the spa_t without actually removing it
4324ea8dc4b6Seschrock  * from the namespace in any way.
4325ea8dc4b6Seschrock  */
4326ea8dc4b6Seschrock int
spa_reset(char * pool)4327ea8dc4b6Seschrock spa_reset(char *pool)
4328ea8dc4b6Seschrock {
432989a89ebfSlling 	return (spa_export_common(pool, POOL_STATE_UNINITIALIZED, NULL,
4330394ab0cbSGeorge Wilson 	    B_FALSE, B_FALSE));
4331ea8dc4b6Seschrock }
4332ea8dc4b6Seschrock 
4333ea8dc4b6Seschrock /*
4334fa9e4066Sahrens  * ==========================================================================
4335fa9e4066Sahrens  * Device manipulation
4336fa9e4066Sahrens  * ==========================================================================
4337fa9e4066Sahrens  */
4338fa9e4066Sahrens 
4339fa9e4066Sahrens /*
43408654d025Sperrin  * Add a device to a storage pool.
4341fa9e4066Sahrens  */
4342fa9e4066Sahrens int
spa_vdev_add(spa_t * spa,nvlist_t * nvroot)4343fa9e4066Sahrens spa_vdev_add(spa_t *spa, nvlist_t *nvroot)
4344fa9e4066Sahrens {
434588ecc943SGeorge Wilson 	uint64_t txg, id;
43468ad4d6ddSJeff Bonwick 	int error;
4347fa9e4066Sahrens 	vdev_t *rvd = spa->spa_root_vdev;
43480e34b6a7Sbonwick 	vdev_t *vd, *tvd;
4349fa94a07fSbrendan 	nvlist_t **spares, **l2cache;
4350fa94a07fSbrendan 	uint_t nspares, nl2cache;
4351fa9e4066Sahrens 
4352f9af39baSGeorge Wilson 	ASSERT(spa_writeable(spa));
4353f9af39baSGeorge Wilson 
4354fa9e4066Sahrens 	txg = spa_vdev_enter(spa);
4355fa9e4066Sahrens 
435699653d4eSeschrock 	if ((error = spa_config_parse(spa, &vd, nvroot, NULL, 0,
435799653d4eSeschrock 	    VDEV_ALLOC_ADD)) != 0)
435899653d4eSeschrock 		return (spa_vdev_exit(spa, NULL, txg, error));
4359fa9e4066Sahrens 
4360e14bb325SJeff Bonwick 	spa->spa_pending_vdev = vd;	/* spa_vdev_exit() will clear this */
436199653d4eSeschrock 
4362fa94a07fSbrendan 	if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_SPARES, &spares,
4363fa94a07fSbrendan 	    &nspares) != 0)
436499653d4eSeschrock 		nspares = 0;
436599653d4eSeschrock 
4366fa94a07fSbrendan 	if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_L2CACHE, &l2cache,
4367fa94a07fSbrendan 	    &nl2cache) != 0)
4368fa94a07fSbrendan 		nl2cache = 0;
4369fa94a07fSbrendan 
4370e14bb325SJeff Bonwick 	if (vd->vdev_children == 0 && nspares == 0 && nl2cache == 0)
4371fa9e4066Sahrens 		return (spa_vdev_exit(spa, vd, txg, EINVAL));
4372fa9e4066Sahrens 
4373e14bb325SJeff Bonwick 	if (vd->vdev_children != 0 &&
4374e14bb325SJeff Bonwick 	    (error = vdev_create(vd, txg, B_FALSE)) != 0)
4375fa9e4066Sahrens 		return (spa_vdev_exit(spa, vd, txg, error));
437639c23413Seschrock 
437739c23413Seschrock 	/*
4378fa94a07fSbrendan 	 * We must validate the spares and l2cache devices after checking the
4379fa94a07fSbrendan 	 * children.  Otherwise, vdev_inuse() will blindly overwrite the spare.
438039c23413Seschrock 	 */
4381e14bb325SJeff Bonwick 	if ((error = spa_validate_aux(spa, nvroot, txg, VDEV_ALLOC_ADD)) != 0)
438239c23413Seschrock 		return (spa_vdev_exit(spa, vd, txg, error));
4383fa9e4066Sahrens 
4384fa9e4066Sahrens 	/*
43850e34b6a7Sbonwick 	 * Transfer each new top-level vdev from vd to rvd.
4386fa9e4066Sahrens 	 */
43878ad4d6ddSJeff Bonwick 	for (int c = 0; c < vd->vdev_children; c++) {
438888ecc943SGeorge Wilson 
438988ecc943SGeorge Wilson 		/*
439088ecc943SGeorge Wilson 		 * Set the vdev id to the first hole, if one exists.
439188ecc943SGeorge Wilson 		 */
439288ecc943SGeorge Wilson 		for (id = 0; id < rvd->vdev_children; id++) {
439388ecc943SGeorge Wilson 			if (rvd->vdev_child[id]->vdev_ishole) {
439488ecc943SGeorge Wilson 				vdev_free(rvd->vdev_child[id]);
439588ecc943SGeorge Wilson 				break;
439688ecc943SGeorge Wilson 			}
439788ecc943SGeorge Wilson 		}
43980e34b6a7Sbonwick 		tvd = vd->vdev_child[c];
4399fa9e4066Sahrens 		vdev_remove_child(vd, tvd);
440088ecc943SGeorge Wilson 		tvd->vdev_id = id;
4401fa9e4066Sahrens 		vdev_add_child(rvd, tvd);
4402fa9e4066Sahrens 		vdev_config_dirty(tvd);
4403fa9e4066Sahrens 	}
440499653d4eSeschrock 
440599653d4eSeschrock 	if (nspares != 0) {
4406fa94a07fSbrendan 		spa_set_aux_vdevs(&spa->spa_spares, spares, nspares,
4407fa94a07fSbrendan 		    ZPOOL_CONFIG_SPARES);
4408fa94a07fSbrendan 		spa_load_spares(spa);
4409fa94a07fSbrendan 		spa->spa_spares.sav_sync = B_TRUE;
441099653d4eSeschrock 	}
441199653d4eSeschrock 
4412fa94a07fSbrendan 	if (nl2cache != 0) {
4413fa94a07fSbrendan 		spa_set_aux_vdevs(&spa->spa_l2cache, l2cache, nl2cache,
4414fa94a07fSbrendan 		    ZPOOL_CONFIG_L2CACHE);
4415fa94a07fSbrendan 		spa_load_l2cache(spa);
4416fa94a07fSbrendan 		spa->spa_l2cache.sav_sync = B_TRUE;
441799653d4eSeschrock 	}
4418fa9e4066Sahrens 
4419fa9e4066Sahrens 	/*
44200e34b6a7Sbonwick 	 * We have to be careful when adding new vdevs to an existing pool.
44210e34b6a7Sbonwick 	 * If other threads start allocating from these vdevs before we
44220e34b6a7Sbonwick 	 * sync the config cache, and we lose power, then upon reboot we may
44230e34b6a7Sbonwick 	 * fail to open the pool because there are DVAs that the config cache
44240e34b6a7Sbonwick 	 * can't translate.  Therefore, we first add the vdevs without
44250e34b6a7Sbonwick 	 * initializing metaslabs; sync the config cache (via spa_vdev_exit());
44260373e76bSbonwick 	 * and then let spa_config_update() initialize the new metaslabs.
44270e34b6a7Sbonwick 	 *
44280e34b6a7Sbonwick 	 * spa_load() checks for added-but-not-initialized vdevs, so that
44290e34b6a7Sbonwick 	 * if we lose power at any point in this sequence, the remaining
44300e34b6a7Sbonwick 	 * steps will be completed the next time we load the pool.
4431fa9e4066Sahrens 	 */
44320e34b6a7Sbonwick 	(void) spa_vdev_exit(spa, vd, txg, 0);
44330e34b6a7Sbonwick 
44340373e76bSbonwick 	mutex_enter(&spa_namespace_lock);
44350373e76bSbonwick 	spa_config_update(spa, SPA_CONFIG_UPDATE_POOL);
44360373e76bSbonwick 	mutex_exit(&spa_namespace_lock);
4437fa9e4066Sahrens 
44380373e76bSbonwick 	return (0);
4439fa9e4066Sahrens }
4440fa9e4066Sahrens 
4441fa9e4066Sahrens /*
4442fa9e4066Sahrens  * Attach a device to a mirror.  The arguments are the path to any device
4443fa9e4066Sahrens  * in the mirror, and the nvroot for the new device.  If the path specifies
4444fa9e4066Sahrens  * a device that is not mirrored, we automatically insert the mirror vdev.
4445fa9e4066Sahrens  *
4446fa9e4066Sahrens  * If 'replacing' is specified, the new device is intended to replace the
4447fa9e4066Sahrens  * existing device; in this case the two devices are made into their own
44483d7072f8Seschrock  * mirror using the 'replacing' vdev, which is functionally identical to
4449fa9e4066Sahrens  * the mirror vdev (it actually reuses all the same ops) but has a few
4450fa9e4066Sahrens  * extra rules: you can't attach to it after it's been created, and upon
4451fa9e4066Sahrens  * completion of resilvering, the first disk (the one being replaced)
4452fa9e4066Sahrens  * is automatically detached.
4453fa9e4066Sahrens  */
4454fa9e4066Sahrens int
spa_vdev_attach(spa_t * spa,uint64_t guid,nvlist_t * nvroot,int replacing)4455ea8dc4b6Seschrock spa_vdev_attach(spa_t *spa, uint64_t guid, nvlist_t *nvroot, int replacing)
4456fa9e4066Sahrens {
44573f9d6ad7SLin Ling 	uint64_t txg, dtl_max_txg;
4458fa9e4066Sahrens 	vdev_t *rvd = spa->spa_root_vdev;
4459fa9e4066Sahrens 	vdev_t *oldvd, *newvd, *newrootvd, *pvd, *tvd;
446099653d4eSeschrock 	vdev_ops_t *pvops;
44619b3f6b42SEric Kustarz 	char *oldvdpath, *newvdpath;
44629b3f6b42SEric Kustarz 	int newvd_isspare;
44639b3f6b42SEric Kustarz 	int error;
4464fa9e4066Sahrens 
4465f9af39baSGeorge Wilson 	ASSERT(spa_writeable(spa));
4466f9af39baSGeorge Wilson 
4467fa9e4066Sahrens 	txg = spa_vdev_enter(spa);
4468fa9e4066Sahrens 
4469c5904d13Seschrock 	oldvd = spa_lookup_by_guid(spa, guid, B_FALSE);
4470fa9e4066Sahrens 
4471fa9e4066Sahrens 	if (oldvd == NULL)
4472fa9e4066Sahrens 		return (spa_vdev_exit(spa, NULL, txg, ENODEV));
4473fa9e4066Sahrens 
44740e34b6a7Sbonwick 	if (!oldvd->vdev_ops->vdev_op_leaf)
44750e34b6a7Sbonwick 		return (spa_vdev_exit(spa, NULL, txg, ENOTSUP));
44760e34b6a7Sbonwick 
4477fa9e4066Sahrens 	pvd = oldvd->vdev_parent;
4478fa9e4066Sahrens 
447999653d4eSeschrock 	if ((error = spa_config_parse(spa, &newrootvd, nvroot, NULL, 0,
4480cd0837ccSGeorge Wilson 	    VDEV_ALLOC_ATTACH)) != 0)
44813d7072f8Seschrock 		return (spa_vdev_exit(spa, NULL, txg, EINVAL));
44823d7072f8Seschrock 
44833d7072f8Seschrock 	if (newrootvd->vdev_children != 1)
4484fa9e4066Sahrens 		return (spa_vdev_exit(spa, newrootvd, txg, EINVAL));
4485fa9e4066Sahrens 
4486fa9e4066Sahrens 	newvd = newrootvd->vdev_child[0];
4487fa9e4066Sahrens 
4488fa9e4066Sahrens 	if (!newvd->vdev_ops->vdev_op_leaf)
4489fa9e4066Sahrens 		return (spa_vdev_exit(spa, newrootvd, txg, EINVAL));
4490fa9e4066Sahrens 
449199653d4eSeschrock 	if ((error = vdev_create(newrootvd, txg, replacing)) != 0)
4492fa9e4066Sahrens 		return (spa_vdev_exit(spa, newrootvd, txg, error));
4493fa9e4066Sahrens 
44948654d025Sperrin 	/*
44958654d025Sperrin 	 * Spares can't replace logs
44968654d025Sperrin 	 */
4497ee0eb9f2SEric Schrock 	if (oldvd->vdev_top->vdev_islog && newvd->vdev_isspare)
44988654d025Sperrin 		return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
44998654d025Sperrin 
450099653d4eSeschrock 	if (!replacing) {
450199653d4eSeschrock 		/*
450299653d4eSeschrock 		 * For attach, the only allowable parent is a mirror or the root
450399653d4eSeschrock 		 * vdev.
450499653d4eSeschrock 		 */
450599653d4eSeschrock 		if (pvd->vdev_ops != &vdev_mirror_ops &&
450699653d4eSeschrock 		    pvd->vdev_ops != &vdev_root_ops)
450799653d4eSeschrock 			return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
450899653d4eSeschrock 
450999653d4eSeschrock 		pvops = &vdev_mirror_ops;
451099653d4eSeschrock 	} else {
451199653d4eSeschrock 		/*
451299653d4eSeschrock 		 * Active hot spares can only be replaced by inactive hot
451399653d4eSeschrock 		 * spares.
451499653d4eSeschrock 		 */
451599653d4eSeschrock 		if (pvd->vdev_ops == &vdev_spare_ops &&
4516cb04b873SMark J Musante 		    oldvd->vdev_isspare &&
451799653d4eSeschrock 		    !spa_has_spare(spa, newvd->vdev_guid))
451899653d4eSeschrock 			return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
451999653d4eSeschrock 
452099653d4eSeschrock 		/*
452199653d4eSeschrock 		 * If the source is a hot spare, and the parent isn't already a
452299653d4eSeschrock 		 * spare, then we want to create a new hot spare.  Otherwise, we
452339c23413Seschrock 		 * want to create a replacing vdev.  The user is not allowed to
452439c23413Seschrock 		 * attach to a spared vdev child unless the 'isspare' state is
452539c23413Seschrock 		 * the same (spare replaces spare, non-spare replaces
452639c23413Seschrock 		 * non-spare).
452799653d4eSeschrock 		 */
4528cb04b873SMark J Musante 		if (pvd->vdev_ops == &vdev_replacing_ops &&
4529cb04b873SMark J Musante 		    spa_version(spa) < SPA_VERSION_MULTI_REPLACE) {
453099653d4eSeschrock 			return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
4531cb04b873SMark J Musante 		} else if (pvd->vdev_ops == &vdev_spare_ops &&
4532cb04b873SMark J Musante 		    newvd->vdev_isspare != oldvd->vdev_isspare) {
453339c23413Seschrock 			return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
4534cb04b873SMark J Musante 		}
4535cb04b873SMark J Musante 
4536cb04b873SMark J Musante 		if (newvd->vdev_isspare)
453799653d4eSeschrock 			pvops = &vdev_spare_ops;
453899653d4eSeschrock 		else
453999653d4eSeschrock 			pvops = &vdev_replacing_ops;
454099653d4eSeschrock 	}
454199653d4eSeschrock 
45422a79c5feSlling 	/*
4543573ca77eSGeorge Wilson 	 * Make sure the new device is big enough.
45442a79c5feSlling 	 */
4545573ca77eSGeorge Wilson 	if (newvd->vdev_asize < vdev_get_min_asize(oldvd))
4546fa9e4066Sahrens 		return (spa_vdev_exit(spa, newrootvd, txg, EOVERFLOW));
4547fa9e4066Sahrens 
4548ecc2d604Sbonwick 	/*
4549ecc2d604Sbonwick 	 * The new device cannot have a higher alignment requirement
4550ecc2d604Sbonwick 	 * than the top-level vdev.
4551ecc2d604Sbonwick 	 */
4552ecc2d604Sbonwick 	if (newvd->vdev_ashift > oldvd->vdev_top->vdev_ashift)
4553fa9e4066Sahrens 		return (spa_vdev_exit(spa, newrootvd, txg, EDOM));
4554fa9e4066Sahrens 
4555fa9e4066Sahrens 	/*
4556fa9e4066Sahrens 	 * If this is an in-place replacement, update oldvd's path and devid
4557fa9e4066Sahrens 	 * to make it distinguishable from newvd, and unopenable from now on.
4558fa9e4066Sahrens 	 */
4559fa9e4066Sahrens 	if (strcmp(oldvd->vdev_path, newvd->vdev_path) == 0) {
4560fa9e4066Sahrens 		spa_strfree(oldvd->vdev_path);
4561fa9e4066Sahrens 		oldvd->vdev_path = kmem_alloc(strlen(newvd->vdev_path) + 5,
4562fa9e4066Sahrens 		    KM_SLEEP);
4563fa9e4066Sahrens 		(void) sprintf(oldvd->vdev_path, "%s/%s",
4564fa9e4066Sahrens 		    newvd->vdev_path, "old");
4565fa9e4066Sahrens 		if (oldvd->vdev_devid != NULL) {
4566fa9e4066Sahrens 			spa_strfree(oldvd->vdev_devid);
4567fa9e4066Sahrens 			oldvd->vdev_devid = NULL;
4568fa9e4066Sahrens 		}
4569fa9e4066Sahrens 	}
4570fa9e4066Sahrens 
4571cb04b873SMark J Musante 	/* mark the device being resilvered */
4572b4952e17SGeorge Wilson 	newvd->vdev_resilver_txg = txg;
4573cb04b873SMark J Musante 
4574fa9e4066Sahrens 	/*
457599653d4eSeschrock 	 * If the parent is not a mirror, or if we're replacing, insert the new
457699653d4eSeschrock 	 * mirror/replacing/spare vdev above oldvd.
4577fa9e4066Sahrens 	 */
4578fa9e4066Sahrens 	if (pvd->vdev_ops != pvops)
4579fa9e4066Sahrens 		pvd = vdev_add_parent(oldvd, pvops);
4580fa9e4066Sahrens 
4581fa9e4066Sahrens 	ASSERT(pvd->vdev_top->vdev_parent == rvd);
4582fa9e4066Sahrens 	ASSERT(pvd->vdev_ops == pvops);
4583fa9e4066Sahrens 	ASSERT(oldvd->vdev_parent == pvd);
4584fa9e4066Sahrens 
4585fa9e4066Sahrens 	/*
4586fa9e4066Sahrens 	 * Extract the new device from its root and add it to pvd.
4587fa9e4066Sahrens 	 */
4588fa9e4066Sahrens 	vdev_remove_child(newrootvd, newvd);
4589fa9e4066Sahrens 	newvd->vdev_id = pvd->vdev_children;
459088ecc943SGeorge Wilson 	newvd->vdev_crtxg = oldvd->vdev_crtxg;
4591fa9e4066Sahrens 	vdev_add_child(pvd, newvd);
4592fa9e4066Sahrens 
4593fa9e4066Sahrens 	tvd = newvd->vdev_top;
4594fa9e4066Sahrens 	ASSERT(pvd->vdev_top == tvd);
4595fa9e4066Sahrens 	ASSERT(tvd->vdev_parent == rvd);
4596fa9e4066Sahrens 
4597fa9e4066Sahrens 	vdev_config_dirty(tvd);
4598fa9e4066Sahrens 
4599fa9e4066Sahrens 	/*
46003f9d6ad7SLin Ling 	 * Set newvd's DTL to [TXG_INITIAL, dtl_max_txg) so that we account
46013f9d6ad7SLin Ling 	 * for any dmu_sync-ed blocks.  It will propagate upward when
46023f9d6ad7SLin Ling 	 * spa_vdev_exit() calls vdev_dtl_reassess().
4603fa9e4066Sahrens 	 */
46043f9d6ad7SLin Ling 	dtl_max_txg = txg + TXG_CONCURRENT_STATES;
4605fa9e4066Sahrens 
46063f9d6ad7SLin Ling 	vdev_dtl_dirty(newvd, DTL_MISSING, TXG_INITIAL,
46073f9d6ad7SLin Ling 	    dtl_max_txg - TXG_INITIAL);
4608fa9e4066Sahrens 
46096809eb4eSEric Schrock 	if (newvd->vdev_isspare) {
461039c23413Seschrock 		spa_spare_activate(newvd);
46116809eb4eSEric Schrock 		spa_event_notify(spa, newvd, ESC_ZFS_VDEV_SPARE);
46126809eb4eSEric Schrock 	}
46136809eb4eSEric Schrock 
4614e14bb325SJeff Bonwick 	oldvdpath = spa_strdup(oldvd->vdev_path);
4615e14bb325SJeff Bonwick 	newvdpath = spa_strdup(newvd->vdev_path);
46169b3f6b42SEric Kustarz 	newvd_isspare = newvd->vdev_isspare;
4617ea8dc4b6Seschrock 
4618fa9e4066Sahrens 	/*
4619fa9e4066Sahrens 	 * Mark newvd's DTL dirty in this txg.
4620fa9e4066Sahrens 	 */
4621ecc2d604Sbonwick 	vdev_dirty(tvd, VDD_DTL, newvd, txg);
4622fa9e4066Sahrens 
46233f9d6ad7SLin Ling 	/*
46240713e232SGeorge Wilson 	 * Schedule the resilver to restart in the future. We do this to
46250713e232SGeorge Wilson 	 * ensure that dmu_sync-ed blocks have been stitched into the
46260713e232SGeorge Wilson 	 * respective datasets.
46273f9d6ad7SLin Ling 	 */
46283f9d6ad7SLin Ling 	dsl_resilver_restart(spa->spa_dsl_pool, dtl_max_txg);
4629fa9e4066Sahrens 
46303f9d6ad7SLin Ling 	/*
46313f9d6ad7SLin Ling 	 * Commit the config
46323f9d6ad7SLin Ling 	 */
46333f9d6ad7SLin Ling 	(void) spa_vdev_exit(spa, newrootvd, dtl_max_txg, 0);
46343f9d6ad7SLin Ling 
46354445fffbSMatthew Ahrens 	spa_history_log_internal(spa, "vdev attach", NULL,
46363f9d6ad7SLin Ling 	    "%s vdev=%s %s vdev=%s",
46379b3f6b42SEric Kustarz 	    replacing && newvd_isspare ? "spare in" :
46389b3f6b42SEric Kustarz 	    replacing ? "replace" : "attach", newvdpath,
46399b3f6b42SEric Kustarz 	    replacing ? "for" : "to", oldvdpath);
46409b3f6b42SEric Kustarz 
46419b3f6b42SEric Kustarz 	spa_strfree(oldvdpath);
46429b3f6b42SEric Kustarz 	spa_strfree(newvdpath);
46439b3f6b42SEric Kustarz 
4644943e9869SLori Alt 	if (spa->spa_bootfs)
4645943e9869SLori Alt 		spa_event_notify(spa, newvd, ESC_ZFS_BOOTFS_VDEV_ATTACH);
4646943e9869SLori Alt 
4647fa9e4066Sahrens 	return (0);
4648fa9e4066Sahrens }
4649fa9e4066Sahrens 
4650fa9e4066Sahrens /*
4651fa9e4066Sahrens  * Detach a device from a mirror or replacing vdev.
4652f7170741SWill Andrews  *
4653fa9e4066Sahrens  * If 'replace_done' is specified, only detach if the parent
4654fa9e4066Sahrens  * is a replacing vdev.
4655fa9e4066Sahrens  */
4656fa9e4066Sahrens int
spa_vdev_detach(spa_t * spa,uint64_t guid,uint64_t pguid,int replace_done)46578ad4d6ddSJeff Bonwick spa_vdev_detach(spa_t *spa, uint64_t guid, uint64_t pguid, int replace_done)
4658fa9e4066Sahrens {
4659fa9e4066Sahrens 	uint64_t txg;
46608ad4d6ddSJeff Bonwick 	int error;
4661fa9e4066Sahrens 	vdev_t *rvd = spa->spa_root_vdev;
4662fa9e4066Sahrens 	vdev_t *vd, *pvd, *cvd, *tvd;
466399653d4eSeschrock 	boolean_t unspare = B_FALSE;
4664d5285caeSGeorge Wilson 	uint64_t unspare_guid = 0;
46651195e687SMark J Musante 	char *vdpath;
4666fa9e4066Sahrens 
4667f9af39baSGeorge Wilson 	ASSERT(spa_writeable(spa));
4668f9af39baSGeorge Wilson 
4669fa9e4066Sahrens 	txg = spa_vdev_enter(spa);
4670fa9e4066Sahrens 
4671c5904d13Seschrock 	vd = spa_lookup_by_guid(spa, guid, B_FALSE);
4672fa9e4066Sahrens 
4673fa9e4066Sahrens 	if (vd == NULL)
4674fa9e4066Sahrens 		return (spa_vdev_exit(spa, NULL, txg, ENODEV));
4675fa9e4066Sahrens 
46760e34b6a7Sbonwick 	if (!vd->vdev_ops->vdev_op_leaf)
46770e34b6a7Sbonwick 		return (spa_vdev_exit(spa, NULL, txg, ENOTSUP));
46780e34b6a7Sbonwick 
4679fa9e4066Sahrens 	pvd = vd->vdev_parent;
4680fa9e4066Sahrens 
4681fa9e4066Sahrens 	/*
46828ad4d6ddSJeff Bonwick 	 * If the parent/child relationship is not as expected, don't do it.
46838ad4d6ddSJeff Bonwick 	 * Consider M(A,R(B,C)) -- that is, a mirror of A with a replacing
46848ad4d6ddSJeff Bonwick 	 * vdev that's replacing B with C.  The user's intent in replacing
46858ad4d6ddSJeff Bonwick 	 * is to go from M(A,B) to M(A,C).  If the user decides to cancel
46868ad4d6ddSJeff Bonwick 	 * the replace by detaching C, the expected behavior is to end up
46878ad4d6ddSJeff Bonwick 	 * M(A,B).  But suppose that right after deciding to detach C,
46888ad4d6ddSJeff Bonwick 	 * the replacement of B completes.  We would have M(A,C), and then
46898ad4d6ddSJeff Bonwick 	 * ask to detach C, which would leave us with just A -- not what
46908ad4d6ddSJeff Bonwick 	 * the user wanted.  To prevent this, we make sure that the
46918ad4d6ddSJeff Bonwick 	 * parent/child relationship hasn't changed -- in this example,
46928ad4d6ddSJeff Bonwick 	 * that C's parent is still the replacing vdev R.
46938ad4d6ddSJeff Bonwick 	 */
46948ad4d6ddSJeff Bonwick 	if (pvd->vdev_guid != pguid && pguid != 0)
46958ad4d6ddSJeff Bonwick 		return (spa_vdev_exit(spa, NULL, txg, EBUSY));
46968ad4d6ddSJeff Bonwick 
46978ad4d6ddSJeff Bonwick 	/*
4698cb04b873SMark J Musante 	 * Only 'replacing' or 'spare' vdevs can be replaced.
4699fa9e4066Sahrens 	 */
4700cb04b873SMark J Musante 	if (replace_done && pvd->vdev_ops != &vdev_replacing_ops &&
4701cb04b873SMark J Musante 	    pvd->vdev_ops != &vdev_spare_ops)
4702fa9e4066Sahrens 		return (spa_vdev_exit(spa, NULL, txg, ENOTSUP));
470399653d4eSeschrock 
470499653d4eSeschrock 	ASSERT(pvd->vdev_ops != &vdev_spare_ops ||
4705e7437265Sahrens 	    spa_version(spa) >= SPA_VERSION_SPARES);
4706fa9e4066Sahrens 
4707fa9e4066Sahrens 	/*
470899653d4eSeschrock 	 * Only mirror, replacing, and spare vdevs support detach.
4709fa9e4066Sahrens 	 */
4710fa9e4066Sahrens 	if (pvd->vdev_ops != &vdev_replacing_ops &&
471199653d4eSeschrock 	    pvd->vdev_ops != &vdev_mirror_ops &&
471299653d4eSeschrock 	    pvd->vdev_ops != &vdev_spare_ops)
4713fa9e4066Sahrens 		return (spa_vdev_exit(spa, NULL, txg, ENOTSUP));
4714fa9e4066Sahrens 
4715fa9e4066Sahrens 	/*
47168ad4d6ddSJeff Bonwick 	 * If this device has the only valid copy of some data,
47178ad4d6ddSJeff Bonwick 	 * we cannot safely detach it.
4718fa9e4066Sahrens 	 */
47198ad4d6ddSJeff Bonwick 	if (vdev_dtl_required(vd))
4720fa9e4066Sahrens 		return (spa_vdev_exit(spa, NULL, txg, EBUSY));
4721fa9e4066Sahrens 
47228ad4d6ddSJeff Bonwick 	ASSERT(pvd->vdev_children >= 2);
4723fa9e4066Sahrens 
4724fa9e4066Sahrens 	/*
4725bf82a41bSeschrock 	 * If we are detaching the second disk from a replacing vdev, then
4726bf82a41bSeschrock 	 * check to see if we changed the original vdev's path to have "/old"
4727bf82a41bSeschrock 	 * at the end in spa_vdev_attach().  If so, undo that change now.
4728bf82a41bSeschrock 	 */
4729cb04b873SMark J Musante 	if (pvd->vdev_ops == &vdev_replacing_ops && vd->vdev_id > 0 &&
4730cb04b873SMark J Musante 	    vd->vdev_path != NULL) {
4731cb04b873SMark J Musante 		size_t len = strlen(vd->vdev_path);
4732cb04b873SMark J Musante 
4733cb04b873SMark J Musante 		for (int c = 0; c < pvd->vdev_children; c++) {
4734cb04b873SMark J Musante 			cvd = pvd->vdev_child[c];
4735cb04b873SMark J Musante 
4736cb04b873SMark J Musante 			if (cvd == vd || cvd->vdev_path == NULL)
4737cb04b873SMark J Musante 				continue;
4738cb04b873SMark J Musante 
4739bf82a41bSeschrock 			if (strncmp(cvd->vdev_path, vd->vdev_path, len) == 0 &&
4740bf82a41bSeschrock 			    strcmp(cvd->vdev_path + len, "/old") == 0) {
4741bf82a41bSeschrock 				spa_strfree(cvd->vdev_path);
4742bf82a41bSeschrock 				cvd->vdev_path = spa_strdup(vd->vdev_path);
4743cb04b873SMark J Musante 				break;
4744cb04b873SMark J Musante 			}
4745bf82a41bSeschrock 		}
4746bf82a41bSeschrock 	}
4747bf82a41bSeschrock 
4748bf82a41bSeschrock 	/*
474999653d4eSeschrock 	 * If we are detaching the original disk from a spare, then it implies
475099653d4eSeschrock 	 * that the spare should become a real disk, and be removed from the
475199653d4eSeschrock 	 * active spare list for the pool.
475299653d4eSeschrock 	 */
475399653d4eSeschrock 	if (pvd->vdev_ops == &vdev_spare_ops &&
4754cb04b873SMark J Musante 	    vd->vdev_id == 0 &&
4755cb04b873SMark J Musante 	    pvd->vdev_child[pvd->vdev_children - 1]->vdev_isspare)
475699653d4eSeschrock 		unspare = B_TRUE;
475799653d4eSeschrock 
475899653d4eSeschrock 	/*
4759fa9e4066Sahrens 	 * Erase the disk labels so the disk can be used for other things.
4760fa9e4066Sahrens 	 * This must be done after all other error cases are handled,
4761fa9e4066Sahrens 	 * but before we disembowel vd (so we can still do I/O to it).
4762fa9e4066Sahrens 	 * But if we can't do it, don't treat the error as fatal --
4763fa9e4066Sahrens 	 * it may be that the unwritability of the disk is the reason
4764fa9e4066Sahrens 	 * it's being detached!
4765fa9e4066Sahrens 	 */
476639c23413Seschrock 	error = vdev_label_init(vd, 0, VDEV_LABEL_REMOVE);
4767fa9e4066Sahrens 
4768fa9e4066Sahrens 	/*
4769fa9e4066Sahrens 	 * Remove vd from its parent and compact the parent's children.
4770fa9e4066Sahrens 	 */
4771fa9e4066Sahrens 	vdev_remove_child(pvd, vd);
4772fa9e4066Sahrens 	vdev_compact_children(pvd);
4773fa9e4066Sahrens 
4774fa9e4066Sahrens 	/*
4775fa9e4066Sahrens 	 * Remember one of the remaining children so we can get tvd below.
4776fa9e4066Sahrens 	 */
4777cb04b873SMark J Musante 	cvd = pvd->vdev_child[pvd->vdev_children - 1];
4778fa9e4066Sahrens 
4779fa9e4066Sahrens 	/*
478099653d4eSeschrock 	 * If we need to remove the remaining child from the list of hot spares,
47818ad4d6ddSJeff Bonwick 	 * do it now, marking the vdev as no longer a spare in the process.
47828ad4d6ddSJeff Bonwick 	 * We must do this before vdev_remove_parent(), because that can
47838ad4d6ddSJeff Bonwick 	 * change the GUID if it creates a new toplevel GUID.  For a similar
47848ad4d6ddSJeff Bonwick 	 * reason, we must remove the spare now, in the same txg as the detach;
47858ad4d6ddSJeff Bonwick 	 * otherwise someone could attach a new sibling, change the GUID, and
47868ad4d6ddSJeff Bonwick 	 * the subsequent attempt to spa_vdev_remove(unspare_guid) would fail.
478799653d4eSeschrock 	 */
478899653d4eSeschrock 	if (unspare) {
478999653d4eSeschrock 		ASSERT(cvd->vdev_isspare);
479039c23413Seschrock 		spa_spare_remove(cvd);
479199653d4eSeschrock 		unspare_guid = cvd->vdev_guid;
47928ad4d6ddSJeff Bonwick 		(void) spa_vdev_remove(spa, unspare_guid, B_TRUE);
4793cb04b873SMark J Musante 		cvd->vdev_unspare = B_TRUE;
479499653d4eSeschrock 	}
479599653d4eSeschrock 
479699653d4eSeschrock 	/*
4797fa9e4066Sahrens 	 * If the parent mirror/replacing vdev only has one child,
4798fa9e4066Sahrens 	 * the parent is no longer needed.  Remove it from the tree.
4799fa9e4066Sahrens 	 */
4800cb04b873SMark J Musante 	if (pvd->vdev_children == 1) {
4801cb04b873SMark J Musante 		if (pvd->vdev_ops == &vdev_spare_ops)
4802cb04b873SMark J Musante 			cvd->vdev_unspare = B_FALSE;
4803fa9e4066Sahrens 		vdev_remove_parent(cvd);
4804cb04b873SMark J Musante 	}
4805cb04b873SMark J Musante 
4806fa9e4066Sahrens 
4807fa9e4066Sahrens 	/*
4808fa9e4066Sahrens 	 * We don't set tvd until now because the parent we just removed
4809fa9e4066Sahrens 	 * may have been the previous top-level vdev.
4810fa9e4066Sahrens 	 */
4811fa9e4066Sahrens 	tvd = cvd->vdev_top;
4812fa9e4066Sahrens 	ASSERT(tvd->vdev_parent == rvd);
4813fa9e4066Sahrens 
4814fa9e4066Sahrens 	/*
481539c23413Seschrock 	 * Reevaluate the parent vdev state.
4816fa9e4066Sahrens 	 */
48173d7072f8Seschrock 	vdev_propagate_state(cvd);
4818fa9e4066Sahrens 
4819fa9e4066Sahrens 	/*
4820573ca77eSGeorge Wilson 	 * If the 'autoexpand' property is set on the pool then automatically
4821573ca77eSGeorge Wilson 	 * try to expand the size of the pool. For example if the device we
4822573ca77eSGeorge Wilson 	 * just detached was smaller than the others, it may be possible to
4823573ca77eSGeorge Wilson 	 * add metaslabs (i.e. grow the pool). We need to reopen the vdev
4824573ca77eSGeorge Wilson 	 * first so that we can obtain the updated sizes of the leaf vdevs.
4825fa9e4066Sahrens 	 */
4826573ca77eSGeorge Wilson 	if (spa->spa_autoexpand) {
4827573ca77eSGeorge Wilson 		vdev_reopen(tvd);
4828573ca77eSGeorge Wilson 		vdev_expand(tvd, txg);
4829573ca77eSGeorge Wilson 	}
4830fa9e4066Sahrens 
4831fa9e4066Sahrens 	vdev_config_dirty(tvd);
4832fa9e4066Sahrens 
4833fa9e4066Sahrens 	/*
483439c23413Seschrock 	 * Mark vd's DTL as dirty in this txg.  vdev_dtl_sync() will see that
483539c23413Seschrock 	 * vd->vdev_detached is set and free vd's DTL object in syncing context.
483639c23413Seschrock 	 * But first make sure we're not on any *other* txg's DTL list, to
483739c23413Seschrock 	 * prevent vd from being accessed after it's freed.
4838fa9e4066Sahrens 	 */
48391195e687SMark J Musante 	vdpath = spa_strdup(vd->vdev_path);
48408ad4d6ddSJeff Bonwick 	for (int t = 0; t < TXG_SIZE; t++)
4841fa9e4066Sahrens 		(void) txg_list_remove_this(&tvd->vdev_dtl_list, vd, t);
4842ecc2d604Sbonwick 	vd->vdev_detached = B_TRUE;
4843ecc2d604Sbonwick 	vdev_dirty(tvd, VDD_DTL, vd, txg);
4844fa9e4066Sahrens 
48453d7072f8Seschrock 	spa_event_notify(spa, vd, ESC_ZFS_VDEV_REMOVE);
48463d7072f8Seschrock 
4847cb04b873SMark J Musante 	/* hang on to the spa before we release the lock */
4848cb04b873SMark J Musante 	spa_open_ref(spa, FTAG);
4849cb04b873SMark J Musante 
485099653d4eSeschrock 	error = spa_vdev_exit(spa, vd, txg, 0);
485199653d4eSeschrock 
48524445fffbSMatthew Ahrens 	spa_history_log_internal(spa, "detach", NULL,
48531195e687SMark J Musante 	    "vdev=%s", vdpath);
48541195e687SMark J Musante 	spa_strfree(vdpath);
48551195e687SMark J Musante 
485699653d4eSeschrock 	/*
485739c23413Seschrock 	 * If this was the removal of the original device in a hot spare vdev,
485839c23413Seschrock 	 * then we want to go through and remove the device from the hot spare
485939c23413Seschrock 	 * list of every other pool.
486099653d4eSeschrock 	 */
486199653d4eSeschrock 	if (unspare) {
4862cb04b873SMark J Musante 		spa_t *altspa = NULL;
4863cb04b873SMark J Musante 
486499653d4eSeschrock 		mutex_enter(&spa_namespace_lock);
4865cb04b873SMark J Musante 		while ((altspa = spa_next(altspa)) != NULL) {
4866cb04b873SMark J Musante 			if (altspa->spa_state != POOL_STATE_ACTIVE ||
4867cb04b873SMark J Musante 			    altspa == spa)
486899653d4eSeschrock 				continue;
4869cb04b873SMark J Musante 
4870cb04b873SMark J Musante 			spa_open_ref(altspa, FTAG);
48719af0a4dfSJeff Bonwick 			mutex_exit(&spa_namespace_lock);
4872cb04b873SMark J Musante 			(void) spa_vdev_remove(altspa, unspare_guid, B_TRUE);
4873cb04b873SMark J Musante 			mutex_enter(&spa_namespace_lock);
4874cb04b873SMark J Musante 			spa_close(altspa, FTAG);
4875cb04b873SMark J Musante 		}
4876cb04b873SMark J Musante 		mutex_exit(&spa_namespace_lock);
4877cb04b873SMark J Musante 
4878cb04b873SMark J Musante 		/* search the rest of the vdevs for spares to remove */
4879cb04b873SMark J Musante 		spa_vdev_resilver_done(spa);
4880cb04b873SMark J Musante 	}
4881cb04b873SMark J Musante 
4882cb04b873SMark J Musante 	/* all done with the spa; OK to release */
48839af0a4dfSJeff Bonwick 	mutex_enter(&spa_namespace_lock);
48849af0a4dfSJeff Bonwick 	spa_close(spa, FTAG);
488599653d4eSeschrock 	mutex_exit(&spa_namespace_lock);
488699653d4eSeschrock 
488799653d4eSeschrock 	return (error);
488899653d4eSeschrock }
488999653d4eSeschrock 
48901195e687SMark J Musante /*
48911195e687SMark J Musante  * Split a set of devices from their mirrors, and create a new pool from them.
48921195e687SMark J Musante  */
48931195e687SMark J Musante int
spa_vdev_split_mirror(spa_t * spa,char * newname,nvlist_t * config,nvlist_t * props,boolean_t exp)48941195e687SMark J Musante spa_vdev_split_mirror(spa_t *spa, char *newname, nvlist_t *config,
48951195e687SMark J Musante     nvlist_t *props, boolean_t exp)
48961195e687SMark J Musante {
48971195e687SMark J Musante 	int error = 0;
48981195e687SMark J Musante 	uint64_t txg, *glist;
48991195e687SMark J Musante 	spa_t *newspa;
49001195e687SMark J Musante 	uint_t c, children, lastlog;
49011195e687SMark J Musante 	nvlist_t **child, *nvl, *tmp;
49021195e687SMark J Musante 	dmu_tx_t *tx;
49031195e687SMark J Musante 	char *altroot = NULL;
49041195e687SMark J Musante 	vdev_t *rvd, **vml = NULL;			/* vdev modify list */
49051195e687SMark J Musante 	boolean_t activate_slog;
49061195e687SMark J Musante 
4907f9af39baSGeorge Wilson 	ASSERT(spa_writeable(spa));
49081195e687SMark J Musante 
49091195e687SMark J Musante 	txg = spa_vdev_enter(spa);
49101195e687SMark J Musante 
49111195e687SMark J Musante 	/* clear the log and flush everything up to now */
49121195e687SMark J Musante 	activate_slog = spa_passivate_log(spa);
49131195e687SMark J Musante 	(void) spa_vdev_config_exit(spa, NULL, txg, 0, FTAG);
49141195e687SMark J Musante 	error = spa_offline_log(spa);
49151195e687SMark J Musante 	txg = spa_vdev_config_enter(spa);
49161195e687SMark J Musante 
49171195e687SMark J Musante 	if (activate_slog)
49181195e687SMark J Musante 		spa_activate_log(spa);
49191195e687SMark J Musante 
49201195e687SMark J Musante 	if (error != 0)
49211195e687SMark J Musante 		return (spa_vdev_exit(spa, NULL, txg, error));
49221195e687SMark J Musante 
49231195e687SMark J Musante 	/* check new spa name before going any further */
49241195e687SMark J Musante 	if (spa_lookup(newname) != NULL)
49251195e687SMark J Musante 		return (spa_vdev_exit(spa, NULL, txg, EEXIST));
49261195e687SMark J Musante 
49271195e687SMark J Musante 	/*
49281195e687SMark J Musante 	 * scan through all the children to ensure they're all mirrors
49291195e687SMark J Musante 	 */
49301195e687SMark J Musante 	if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, &nvl) != 0 ||
49311195e687SMark J Musante 	    nvlist_lookup_nvlist_array(nvl, ZPOOL_CONFIG_CHILDREN, &child,
49321195e687SMark J Musante 	    &children) != 0)
49331195e687SMark J Musante 		return (spa_vdev_exit(spa, NULL, txg, EINVAL));
49341195e687SMark J Musante 
49351195e687SMark J Musante 	/* first, check to ensure we've got the right child count */
49361195e687SMark J Musante 	rvd = spa->spa_root_vdev;
49371195e687SMark J Musante 	lastlog = 0;
49381195e687SMark J Musante 	for (c = 0; c < rvd->vdev_children; c++) {
49391195e687SMark J Musante 		vdev_t *vd = rvd->vdev_child[c];
49401195e687SMark J Musante 
49411195e687SMark J Musante 		/* don't count the holes & logs as children */
49421195e687SMark J Musante 		if (vd->vdev_islog || vd->vdev_ishole) {
49431195e687SMark J Musante 			if (lastlog == 0)
49441195e687SMark J Musante 				lastlog = c;
49451195e687SMark J Musante 			continue;
49461195e687SMark J Musante 		}
49471195e687SMark J Musante 
49481195e687SMark J Musante 		lastlog = 0;
49491195e687SMark J Musante 	}
49501195e687SMark J Musante 	if (children != (lastlog != 0 ? lastlog : rvd->vdev_children))
49511195e687SMark J Musante 		return (spa_vdev_exit(spa, NULL, txg, EINVAL));
49521195e687SMark J Musante 
49531195e687SMark J Musante 	/* next, ensure no spare or cache devices are part of the split */
49541195e687SMark J Musante 	if (nvlist_lookup_nvlist(nvl, ZPOOL_CONFIG_SPARES, &tmp) == 0 ||
49551195e687SMark J Musante 	    nvlist_lookup_nvlist(nvl, ZPOOL_CONFIG_L2CACHE, &tmp) == 0)
49561195e687SMark J Musante 		return (spa_vdev_exit(spa, NULL, txg, EINVAL));
49571195e687SMark J Musante 
49581195e687SMark J Musante 	vml = kmem_zalloc(children * sizeof (vdev_t *), KM_SLEEP);
49591195e687SMark J Musante 	glist = kmem_zalloc(children * sizeof (uint64_t), KM_SLEEP);
49601195e687SMark J Musante 
49611195e687SMark J Musante 	/* then, loop over each vdev and validate it */
49621195e687SMark J Musante 	for (c = 0; c < children; c++) {
49631195e687SMark J Musante 		uint64_t is_hole = 0;
49641195e687SMark J Musante 
49651195e687SMark J Musante 		(void) nvlist_lookup_uint64(child[c], ZPOOL_CONFIG_IS_HOLE,
49661195e687SMark J Musante 		    &is_hole);
49671195e687SMark J Musante 
49681195e687SMark J Musante 		if (is_hole != 0) {
49691195e687SMark J Musante 			if (spa->spa_root_vdev->vdev_child[c]->vdev_ishole ||
49701195e687SMark J Musante 			    spa->spa_root_vdev->vdev_child[c]->vdev_islog) {
49711195e687SMark J Musante 				continue;
49721195e687SMark J Musante 			} else {
4973be6fd75aSMatthew Ahrens 				error = SET_ERROR(EINVAL);
49741195e687SMark J Musante 				break;
49751195e687SMark J Musante 			}
49761195e687SMark J Musante 		}
49771195e687SMark J Musante 
49781195e687SMark J Musante 		/* which disk is going to be split? */
49791195e687SMark J Musante 		if (nvlist_lookup_uint64(child[c], ZPOOL_CONFIG_GUID,
49801195e687SMark J Musante 		    &glist[c]) != 0) {
4981be6fd75aSMatthew Ahrens 			error = SET_ERROR(EINVAL);
49821195e687SMark J Musante 			break;
49831195e687SMark J Musante 		}
49841195e687SMark J Musante 
49851195e687SMark J Musante 		/* look it up in the spa */
49861195e687SMark J Musante 		vml[c] = spa_lookup_by_guid(spa, glist[c], B_FALSE);
49871195e687SMark J Musante 		if (vml[c] == NULL) {
4988be6fd75aSMatthew Ahrens 			error = SET_ERROR(ENODEV);
49891195e687SMark J Musante 			break;
49901195e687SMark J Musante 		}
49911195e687SMark J Musante 
49921195e687SMark J Musante 		/* make sure there's nothing stopping the split */
49931195e687SMark J Musante 		if (vml[c]->vdev_parent->vdev_ops != &vdev_mirror_ops ||
49941195e687SMark J Musante 		    vml[c]->vdev_islog ||
49951195e687SMark J Musante 		    vml[c]->vdev_ishole ||
49961195e687SMark J Musante 		    vml[c]->vdev_isspare ||
49971195e687SMark J Musante 		    vml[c]->vdev_isl2cache ||
49981195e687SMark J Musante 		    !vdev_writeable(vml[c]) ||
4999d41c4376SMark J Musante 		    vml[c]->vdev_children != 0 ||
50001195e687SMark J Musante 		    vml[c]->vdev_state != VDEV_STATE_HEALTHY ||
50011195e687SMark J Musante 		    c != spa->spa_root_vdev->vdev_child[c]->vdev_id) {
5002be6fd75aSMatthew Ahrens 			error = SET_ERROR(EINVAL);
50031195e687SMark J Musante 			break;
50041195e687SMark J Musante 		}
50051195e687SMark J Musante 
50061195e687SMark J Musante 		if (vdev_dtl_required(vml[c])) {
5007be6fd75aSMatthew Ahrens 			error = SET_ERROR(EBUSY);
50081195e687SMark J Musante 			break;
50091195e687SMark J Musante 		}
50101195e687SMark J Musante 
50111195e687SMark J Musante 		/* we need certain info from the top level */
50121195e687SMark J Musante 		VERIFY(nvlist_add_uint64(child[c], ZPOOL_CONFIG_METASLAB_ARRAY,
50131195e687SMark J Musante 		    vml[c]->vdev_top->vdev_ms_array) == 0);
50141195e687SMark J Musante 		VERIFY(nvlist_add_uint64(child[c], ZPOOL_CONFIG_METASLAB_SHIFT,
50151195e687SMark J Musante 		    vml[c]->vdev_top->vdev_ms_shift) == 0);
50161195e687SMark J Musante 		VERIFY(nvlist_add_uint64(child[c], ZPOOL_CONFIG_ASIZE,
50171195e687SMark J Musante 		    vml[c]->vdev_top->vdev_asize) == 0);
50181195e687SMark J Musante 		VERIFY(nvlist_add_uint64(child[c], ZPOOL_CONFIG_ASHIFT,
50191195e687SMark J Musante 		    vml[c]->vdev_top->vdev_ashift) == 0);
50201195e687SMark J Musante 	}
50211195e687SMark J Musante 
50221195e687SMark J Musante 	if (error != 0) {
50231195e687SMark J Musante 		kmem_free(vml, children * sizeof (vdev_t *));
50241195e687SMark J Musante 		kmem_free(glist, children * sizeof (uint64_t));
50251195e687SMark J Musante 		return (spa_vdev_exit(spa, NULL, txg, error));
50261195e687SMark J Musante 	}
50271195e687SMark J Musante 
50281195e687SMark J Musante 	/* stop writers from using the disks */
50291195e687SMark J Musante 	for (c = 0; c < children; c++) {
50301195e687SMark J Musante 		if (vml[c] != NULL)
50311195e687SMark J Musante 			vml[c]->vdev_offline = B_TRUE;
50321195e687SMark J Musante 	}
50331195e687SMark J Musante 	vdev_reopen(spa->spa_root_vdev);
50341195e687SMark J Musante 
50351195e687SMark J Musante 	/*
50361195e687SMark J Musante 	 * Temporarily record the splitting vdevs in the spa config.  This
50371195e687SMark J Musante 	 * will disappear once the config is regenerated.
50381195e687SMark J Musante 	 */
50391195e687SMark J Musante 	VERIFY(nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) == 0);
50401195e687SMark J Musante 	VERIFY(nvlist_add_uint64_array(nvl, ZPOOL_CONFIG_SPLIT_LIST,
50411195e687SMark J Musante 	    glist, children) == 0);
50421195e687SMark J Musante 	kmem_free(glist, children * sizeof (uint64_t));
50431195e687SMark J Musante 
504498295d61SMark J Musante 	mutex_enter(&spa->spa_props_lock);
50451195e687SMark J Musante 	VERIFY(nvlist_add_nvlist(spa->spa_config, ZPOOL_CONFIG_SPLIT,
50461195e687SMark J Musante 	    nvl) == 0);
504798295d61SMark J Musante 	mutex_exit(&spa->spa_props_lock);
50481195e687SMark J Musante 	spa->spa_config_splitting = nvl;
50491195e687SMark J Musante 	vdev_config_dirty(spa->spa_root_vdev);
50501195e687SMark J Musante 
50511195e687SMark J Musante 	/* configure and create the new pool */
50521195e687SMark J Musante 	VERIFY(nvlist_add_string(config, ZPOOL_CONFIG_POOL_NAME, newname) == 0);
50531195e687SMark J Musante 	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_STATE,
50541195e687SMark J Musante 	    exp ? POOL_STATE_EXPORTED : POOL_STATE_ACTIVE) == 0);
50551195e687SMark J Musante 	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_VERSION,
50561195e687SMark J Musante 	    spa_version(spa)) == 0);
50571195e687SMark J Musante 	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_TXG,
50581195e687SMark J Musante 	    spa->spa_config_txg) == 0);
50591195e687SMark J Musante 	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_GUID,
50601195e687SMark J Musante 	    spa_generate_guid(NULL)) == 0);
50611195e687SMark J Musante 	(void) nvlist_lookup_string(props,
50621195e687SMark J Musante 	    zpool_prop_to_name(ZPOOL_PROP_ALTROOT), &altroot);
50631195e687SMark J Musante 
5064d41c4376SMark J Musante 	/* add the new pool to the namespace */
50651195e687SMark J Musante 	newspa = spa_add(newname, config, altroot);
50661195e687SMark J Musante 	newspa->spa_config_txg = spa->spa_config_txg;
50671195e687SMark J Musante 	spa_set_log_state(newspa, SPA_LOG_CLEAR);
50681195e687SMark J Musante 
50691195e687SMark J Musante 	/* release the spa config lock, retaining the namespace lock */
50701195e687SMark J Musante 	spa_vdev_config_exit(spa, NULL, txg, 0, FTAG);
50711195e687SMark J Musante 
50721195e687SMark J Musante 	if (zio_injection_enabled)
50731195e687SMark J Musante 		zio_handle_panic_injection(spa, FTAG, 1);
50741195e687SMark J Musante 
50751195e687SMark J Musante 	spa_activate(newspa, spa_mode_global);
50761195e687SMark J Musante 	spa_async_suspend(newspa);
50771195e687SMark J Musante 
50781195e687SMark J Musante 	/* create the new pool from the disks of the original pool */
50791195e687SMark J Musante 	error = spa_load(newspa, SPA_LOAD_IMPORT, SPA_IMPORT_ASSEMBLE, B_TRUE);
50801195e687SMark J Musante 	if (error)
50811195e687SMark J Musante 		goto out;
50821195e687SMark J Musante 
50831195e687SMark J Musante 	/* if that worked, generate a real config for the new pool */
50841195e687SMark J Musante 	if (newspa->spa_root_vdev != NULL) {
50851195e687SMark J Musante 		VERIFY(nvlist_alloc(&newspa->spa_config_splitting,
50861195e687SMark J Musante 		    NV_UNIQUE_NAME, KM_SLEEP) == 0);
50871195e687SMark J Musante 		VERIFY(nvlist_add_uint64(newspa->spa_config_splitting,
50881195e687SMark J Musante 		    ZPOOL_CONFIG_SPLIT_GUID, spa_guid(spa)) == 0);
50891195e687SMark J Musante 		spa_config_set(newspa, spa_config_generate(newspa, NULL, -1ULL,
50901195e687SMark J Musante 		    B_TRUE));
50911195e687SMark J Musante 	}
50921195e687SMark J Musante 
50931195e687SMark J Musante 	/* set the props */
50941195e687SMark J Musante 	if (props != NULL) {
50951195e687SMark J Musante 		spa_configfile_set(newspa, props, B_FALSE);
50961195e687SMark J Musante 		error = spa_prop_set(newspa, props);
50971195e687SMark J Musante 		if (error)
50981195e687SMark J Musante 			goto out;
50991195e687SMark J Musante 	}
51001195e687SMark J Musante 
51011195e687SMark J Musante 	/* flush everything */
51021195e687SMark J Musante 	txg = spa_vdev_config_enter(newspa);
51031195e687SMark J Musante 	vdev_config_dirty(newspa->spa_root_vdev);
51041195e687SMark J Musante 	(void) spa_vdev_config_exit(newspa, NULL, txg, 0, FTAG);
51051195e687SMark J Musante 
51061195e687SMark J Musante 	if (zio_injection_enabled)
51071195e687SMark J Musante 		zio_handle_panic_injection(spa, FTAG, 2);
51081195e687SMark J Musante 
51091195e687SMark J Musante 	spa_async_resume(newspa);
51101195e687SMark J Musante 
51111195e687SMark J Musante 	/* finally, update the original pool's config */
51121195e687SMark J Musante 	txg = spa_vdev_config_enter(spa);
51131195e687SMark J Musante 	tx = dmu_tx_create_dd(spa_get_dsl(spa)->dp_mos_dir);
51141195e687SMark J Musante 	error = dmu_tx_assign(tx, TXG_WAIT);
51151195e687SMark J Musante 	if (error != 0)
51161195e687SMark J Musante 		dmu_tx_abort(tx);
51171195e687SMark J Musante 	for (c = 0; c < children; c++) {
51181195e687SMark J Musante 		if (vml[c] != NULL) {
51191195e687SMark J Musante 			vdev_split(vml[c]);
51201195e687SMark J Musante 			if (error == 0)
51214445fffbSMatthew Ahrens 				spa_history_log_internal(spa, "detach", tx,
51224445fffbSMatthew Ahrens 				    "vdev=%s", vml[c]->vdev_path);
51231195e687SMark J Musante 			vdev_free(vml[c]);
51241195e687SMark J Musante 		}
51251195e687SMark J Musante 	}
51261195e687SMark J Musante 	vdev_config_dirty(spa->spa_root_vdev);
51271195e687SMark J Musante 	spa->spa_config_splitting = NULL;
51281195e687SMark J Musante 	nvlist_free(nvl);
51291195e687SMark J Musante 	if (error == 0)
51301195e687SMark J Musante 		dmu_tx_commit(tx);
51311195e687SMark J Musante 	(void) spa_vdev_exit(spa, NULL, txg, 0);
51321195e687SMark J Musante 
51331195e687SMark J Musante 	if (zio_injection_enabled)
51341195e687SMark J Musante 		zio_handle_panic_injection(spa, FTAG, 3);
51351195e687SMark J Musante 
51361195e687SMark J Musante 	/* split is complete; log a history record */
51374445fffbSMatthew Ahrens 	spa_history_log_internal(newspa, "split", NULL,
51384445fffbSMatthew Ahrens 	    "from pool %s", spa_name(spa));
51391195e687SMark J Musante 
51401195e687SMark J Musante 	kmem_free(vml, children * sizeof (vdev_t *));
51411195e687SMark J Musante 
51421195e687SMark J Musante 	/* if we're not going to mount the filesystems in userland, export */
51431195e687SMark J Musante 	if (exp)
51441195e687SMark J Musante 		error = spa_export_common(newname, POOL_STATE_EXPORTED, NULL,
51451195e687SMark J Musante 		    B_FALSE, B_FALSE);
51461195e687SMark J Musante 
51471195e687SMark J Musante 	return (error);
51481195e687SMark J Musante 
51491195e687SMark J Musante out:
51501195e687SMark J Musante 	spa_unload(newspa);
51511195e687SMark J Musante 	spa_deactivate(newspa);
51521195e687SMark J Musante 	spa_remove(newspa);
51531195e687SMark J Musante 
51541195e687SMark J Musante 	txg = spa_vdev_config_enter(spa);
515598295d61SMark J Musante 
515698295d61SMark J Musante 	/* re-online all offlined disks */
515798295d61SMark J Musante 	for (c = 0; c < children; c++) {
515898295d61SMark J Musante 		if (vml[c] != NULL)
515998295d61SMark J Musante 			vml[c]->vdev_offline = B_FALSE;
516098295d61SMark J Musante 	}
516198295d61SMark J Musante 	vdev_reopen(spa->spa_root_vdev);
516298295d61SMark J Musante 
51631195e687SMark J Musante 	nvlist_free(spa->spa_config_splitting);
51641195e687SMark J Musante 	spa->spa_config_splitting = NULL;
5165d41c4376SMark J Musante 	(void) spa_vdev_exit(spa, NULL, txg, error);
51661195e687SMark J Musante 
51671195e687SMark J Musante 	kmem_free(vml, children * sizeof (vdev_t *));
51681195e687SMark J Musante 	return (error);
51691195e687SMark J Musante }
51701195e687SMark J Musante 
5171e14bb325SJeff Bonwick static nvlist_t *
spa_nvlist_lookup_by_guid(nvlist_t ** nvpp,int count,uint64_t target_guid)5172e14bb325SJeff Bonwick spa_nvlist_lookup_by_guid(nvlist_t **nvpp, int count, uint64_t target_guid)
517399653d4eSeschrock {
5174e14bb325SJeff Bonwick 	for (int i = 0; i < count; i++) {
5175e14bb325SJeff Bonwick 		uint64_t guid;
517699653d4eSeschrock 
5177e14bb325SJeff Bonwick 		VERIFY(nvlist_lookup_uint64(nvpp[i], ZPOOL_CONFIG_GUID,
5178e14bb325SJeff Bonwick 		    &guid) == 0);
517999653d4eSeschrock 
5180e14bb325SJeff Bonwick 		if (guid == target_guid)
5181e14bb325SJeff Bonwick 			return (nvpp[i]);
518299653d4eSeschrock 	}
518399653d4eSeschrock 
5184e14bb325SJeff Bonwick 	return (NULL);
518599653d4eSeschrock }
518699653d4eSeschrock 
5187e14bb325SJeff Bonwick static void
spa_vdev_remove_aux(nvlist_t * config,char * name,nvlist_t ** dev,int count,nvlist_t * dev_to_remove)5188e14bb325SJeff Bonwick spa_vdev_remove_aux(nvlist_t *config, char *name, nvlist_t **dev, int count,
5189e14bb325SJeff Bonwick 	nvlist_t *dev_to_remove)
5190fa94a07fSbrendan {
5191e14bb325SJeff Bonwick 	nvlist_t **newdev = NULL;
5192fa94a07fSbrendan 
5193e14bb325SJeff Bonwick 	if (count > 1)
5194e14bb325SJeff Bonwick 		newdev = kmem_alloc((count - 1) * sizeof (void *), KM_SLEEP);
5195fa94a07fSbrendan 
5196e14bb325SJeff Bonwick 	for (int i = 0, j = 0; i < count; i++) {
5197e14bb325SJeff Bonwick 		if (dev[i] == dev_to_remove)
5198e14bb325SJeff Bonwick 			continue;
5199e14bb325SJeff Bonwick 		VERIFY(nvlist_dup(dev[i], &newdev[j++], KM_SLEEP) == 0);
5200fa94a07fSbrendan 	}
5201fa94a07fSbrendan 
5202e14bb325SJeff Bonwick 	VERIFY(nvlist_remove(config, name, DATA_TYPE_NVLIST_ARRAY) == 0);
5203e14bb325SJeff Bonwick 	VERIFY(nvlist_add_nvlist_array(config, name, newdev, count - 1) == 0);
5204fa94a07fSbrendan 
5205e14bb325SJeff Bonwick 	for (int i = 0; i < count - 1; i++)
5206e14bb325SJeff Bonwick 		nvlist_free(newdev[i]);
5207fa94a07fSbrendan 
5208e14bb325SJeff Bonwick 	if (count > 1)
5209e14bb325SJeff Bonwick 		kmem_free(newdev, (count - 1) * sizeof (void *));
5210fa94a07fSbrendan }
5211fa94a07fSbrendan 
5212fa94a07fSbrendan /*
521388ecc943SGeorge Wilson  * Evacuate the device.
521488ecc943SGeorge Wilson  */
52153f9d6ad7SLin Ling static int
spa_vdev_remove_evacuate(spa_t * spa,vdev_t * vd)521688ecc943SGeorge Wilson spa_vdev_remove_evacuate(spa_t *spa, vdev_t *vd)
521788ecc943SGeorge Wilson {
521888ecc943SGeorge Wilson 	uint64_t txg;
52193f9d6ad7SLin Ling 	int error = 0;
522088ecc943SGeorge Wilson 
522188ecc943SGeorge Wilson 	ASSERT(MUTEX_HELD(&spa_namespace_lock));
522288ecc943SGeorge Wilson 	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == 0);
5223b24ab676SJeff Bonwick 	ASSERT(vd == vd->vdev_top);
522488ecc943SGeorge Wilson 
522588ecc943SGeorge Wilson 	/*
522688ecc943SGeorge Wilson 	 * Evacuate the device.  We don't hold the config lock as writer
522788ecc943SGeorge Wilson 	 * since we need to do I/O but we do keep the
522888ecc943SGeorge Wilson 	 * spa_namespace_lock held.  Once this completes the device
522988ecc943SGeorge Wilson 	 * should no longer have any blocks allocated on it.
523088ecc943SGeorge Wilson 	 */
523188ecc943SGeorge Wilson 	if (vd->vdev_islog) {
52323f9d6ad7SLin Ling 		if (vd->vdev_stat.vs_alloc != 0)
52333f9d6ad7SLin Ling 			error = spa_offline_log(spa);
5234a1521560SJeff Bonwick 	} else {
5235be6fd75aSMatthew Ahrens 		error = SET_ERROR(ENOTSUP);
523688ecc943SGeorge Wilson 	}
5237a1521560SJeff Bonwick 
5238a1521560SJeff Bonwick 	if (error)
5239a1521560SJeff Bonwick 		return (error);
524088ecc943SGeorge Wilson 
524188ecc943SGeorge Wilson 	/*
5242a1521560SJeff Bonwick 	 * The evacuation succeeded.  Remove any remaining MOS metadata
5243a1521560SJeff Bonwick 	 * associated with this vdev, and wait for these changes to sync.
524488ecc943SGeorge Wilson 	 */
5245fb09f5aaSMadhav Suresh 	ASSERT0(vd->vdev_stat.vs_alloc);
524688ecc943SGeorge Wilson 	txg = spa_vdev_config_enter(spa);
524788ecc943SGeorge Wilson 	vd->vdev_removing = B_TRUE;
52480713e232SGeorge Wilson 	vdev_dirty_leaves(vd, VDD_DTL, txg);
524988ecc943SGeorge Wilson 	vdev_config_dirty(vd);
525088ecc943SGeorge Wilson 	spa_vdev_config_exit(spa, NULL, txg, 0, FTAG);
525188ecc943SGeorge Wilson 
525288ecc943SGeorge Wilson 	return (0);
525388ecc943SGeorge Wilson }
525488ecc943SGeorge Wilson 
525588ecc943SGeorge Wilson /*
525688ecc943SGeorge Wilson  * Complete the removal by cleaning up the namespace.
525788ecc943SGeorge Wilson  */
52583f9d6ad7SLin Ling static void
spa_vdev_remove_from_namespace(spa_t * spa,vdev_t * vd)5259a1521560SJeff Bonwick spa_vdev_remove_from_namespace(spa_t *spa, vdev_t *vd)
526088ecc943SGeorge Wilson {
526188ecc943SGeorge Wilson 	vdev_t *rvd = spa->spa_root_vdev;
526288ecc943SGeorge Wilson 	uint64_t id = vd->vdev_id;
526388ecc943SGeorge Wilson 	boolean_t last_vdev = (id == (rvd->vdev_children - 1));
526488ecc943SGeorge Wilson 
526588ecc943SGeorge Wilson 	ASSERT(MUTEX_HELD(&spa_namespace_lock));
526688ecc943SGeorge Wilson 	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
5267b24ab676SJeff Bonwick 	ASSERT(vd == vd->vdev_top);
526888ecc943SGeorge Wilson 
52693f9d6ad7SLin Ling 	/*
52703f9d6ad7SLin Ling 	 * Only remove any devices which are empty.
52713f9d6ad7SLin Ling 	 */
52723f9d6ad7SLin Ling 	if (vd->vdev_stat.vs_alloc != 0)
52733f9d6ad7SLin Ling 		return;
52743f9d6ad7SLin Ling 
527588ecc943SGeorge Wilson 	(void) vdev_label_init(vd, 0, VDEV_LABEL_REMOVE);
5276b24ab676SJeff Bonwick 
5277b24ab676SJeff Bonwick 	if (list_link_active(&vd->vdev_state_dirty_node))
5278b24ab676SJeff Bonwick 		vdev_state_clean(vd);
5279b24ab676SJeff Bonwick 	if (list_link_active(&vd->vdev_config_dirty_node))
5280b24ab676SJeff Bonwick 		vdev_config_clean(vd);
5281b24ab676SJeff Bonwick 
528288ecc943SGeorge Wilson 	vdev_free(vd);
528388ecc943SGeorge Wilson 
528488ecc943SGeorge Wilson 	if (last_vdev) {
528588ecc943SGeorge Wilson 		vdev_compact_children(rvd);
528688ecc943SGeorge Wilson 	} else {
528788ecc943SGeorge Wilson 		vd = vdev_alloc_common(spa, id, 0, &vdev_hole_ops);
528888ecc943SGeorge Wilson 		vdev_add_child(rvd, vd);
528988ecc943SGeorge Wilson 	}
5290fcbfa62bSLin Ling 	vdev_config_dirty(rvd);
5291fcbfa62bSLin Ling 
5292fcbfa62bSLin Ling 	/*
5293fcbfa62bSLin Ling 	 * Reassess the health of our root vdev.
5294fcbfa62bSLin Ling 	 */
5295fcbfa62bSLin Ling 	vdev_reopen(rvd);
52963f9d6ad7SLin Ling }
529788ecc943SGeorge Wilson 
529888ecc943SGeorge Wilson /*
52993f9d6ad7SLin Ling  * Remove a device from the pool -
53003f9d6ad7SLin Ling  *
53013f9d6ad7SLin Ling  * Removing a device from the vdev namespace requires several steps
53023f9d6ad7SLin Ling  * and can take a significant amount of time.  As a result we use
53033f9d6ad7SLin Ling  * the spa_vdev_config_[enter/exit] functions which allow us to
53043f9d6ad7SLin Ling  * grab and release the spa_config_lock while still holding the namespace
53053f9d6ad7SLin Ling  * lock.  During each step the configuration is synced out.
5306f7170741SWill Andrews  *
5307f7170741SWill Andrews  * Currently, this supports removing only hot spares, slogs, and level 2 ARC
5308f7170741SWill Andrews  * devices.
5309fa94a07fSbrendan  */
5310fa94a07fSbrendan int
spa_vdev_remove(spa_t * spa,uint64_t guid,boolean_t unspare)5311fa94a07fSbrendan spa_vdev_remove(spa_t *spa, uint64_t guid, boolean_t unspare)
5312fa94a07fSbrendan {
5313fa94a07fSbrendan 	vdev_t *vd;
5314a1521560SJeff Bonwick 	metaslab_group_t *mg;
5315e14bb325SJeff Bonwick 	nvlist_t **spares, **l2cache, *nv;
53168ad4d6ddSJeff Bonwick 	uint64_t txg = 0;
531788ecc943SGeorge Wilson 	uint_t nspares, nl2cache;
5318fa94a07fSbrendan 	int error = 0;
53198ad4d6ddSJeff Bonwick 	boolean_t locked = MUTEX_HELD(&spa_namespace_lock);
5320fa94a07fSbrendan 
5321f9af39baSGeorge Wilson 	ASSERT(spa_writeable(spa));
5322f9af39baSGeorge Wilson 
53238ad4d6ddSJeff Bonwick 	if (!locked)
5324e14bb325SJeff Bonwick 		txg = spa_vdev_enter(spa);
5325fa94a07fSbrendan 
5326c5904d13Seschrock 	vd = spa_lookup_by_guid(spa, guid, B_FALSE);
5327fa94a07fSbrendan 
5328fa94a07fSbrendan 	if (spa->spa_spares.sav_vdevs != NULL &&
5329fa94a07fSbrendan 	    nvlist_lookup_nvlist_array(spa->spa_spares.sav_config,
5330e14bb325SJeff Bonwick 	    ZPOOL_CONFIG_SPARES, &spares, &nspares) == 0 &&
5331e14bb325SJeff Bonwick 	    (nv = spa_nvlist_lookup_by_guid(spares, nspares, guid)) != NULL) {
5332e14bb325SJeff Bonwick 		/*
5333e14bb325SJeff Bonwick 		 * Only remove the hot spare if it's not currently in use
5334e14bb325SJeff Bonwick 		 * in this pool.
5335e14bb325SJeff Bonwick 		 */
5336e14bb325SJeff Bonwick 		if (vd == NULL || unspare) {
5337e14bb325SJeff Bonwick 			spa_vdev_remove_aux(spa->spa_spares.sav_config,
5338e14bb325SJeff Bonwick 			    ZPOOL_CONFIG_SPARES, spares, nspares, nv);
533999653d4eSeschrock 			spa_load_spares(spa);
5340fa94a07fSbrendan 			spa->spa_spares.sav_sync = B_TRUE;
5341e14bb325SJeff Bonwick 		} else {
5342be6fd75aSMatthew Ahrens 			error = SET_ERROR(EBUSY);
5343fa94a07fSbrendan 		}
5344e14bb325SJeff Bonwick 	} else if (spa->spa_l2cache.sav_vdevs != NULL &&
5345fa94a07fSbrendan 	    nvlist_lookup_nvlist_array(spa->spa_l2cache.sav_config,
5346e14bb325SJeff Bonwick 	    ZPOOL_CONFIG_L2CACHE, &l2cache, &nl2cache) == 0 &&
5347e14bb325SJeff Bonwick 	    (nv = spa_nvlist_lookup_by_guid(l2cache, nl2cache, guid)) != NULL) {
5348e14bb325SJeff Bonwick 		/*
5349e14bb325SJeff Bonwick 		 * Cache devices can always be removed.
5350e14bb325SJeff Bonwick 		 */
5351e14bb325SJeff Bonwick 		spa_vdev_remove_aux(spa->spa_l2cache.sav_config,
5352e14bb325SJeff Bonwick 		    ZPOOL_CONFIG_L2CACHE, l2cache, nl2cache, nv);
5353fa94a07fSbrendan 		spa_load_l2cache(spa);
5354fa94a07fSbrendan 		spa->spa_l2cache.sav_sync = B_TRUE;
535588ecc943SGeorge Wilson 	} else if (vd != NULL && vd->vdev_islog) {
535688ecc943SGeorge Wilson 		ASSERT(!locked);
5357b24ab676SJeff Bonwick 		ASSERT(vd == vd->vdev_top);
535888ecc943SGeorge Wilson 
5359a1521560SJeff Bonwick 		mg = vd->vdev_mg;
5360a1521560SJeff Bonwick 
536188ecc943SGeorge Wilson 		/*
5362a1521560SJeff Bonwick 		 * Stop allocating from this vdev.
536388ecc943SGeorge Wilson 		 */
5364a1521560SJeff Bonwick 		metaslab_group_passivate(mg);
536588ecc943SGeorge Wilson 
5366b24ab676SJeff Bonwick 		/*
5367b24ab676SJeff Bonwick 		 * Wait for the youngest allocations and frees to sync,
5368b24ab676SJeff Bonwick 		 * and then wait for the deferral of those frees to finish.
5369b24ab676SJeff Bonwick 		 */
5370b24ab676SJeff Bonwick 		spa_vdev_config_exit(spa, NULL,
5371b24ab676SJeff Bonwick 		    txg + TXG_CONCURRENT_STATES + TXG_DEFER_SIZE, 0, FTAG);
5372b24ab676SJeff Bonwick 
5373a1521560SJeff Bonwick 		/*
5374a1521560SJeff Bonwick 		 * Attempt to evacuate the vdev.
5375a1521560SJeff Bonwick 		 */
5376a1521560SJeff Bonwick 		error = spa_vdev_remove_evacuate(spa, vd);
5377a1521560SJeff Bonwick 
537888ecc943SGeorge Wilson 		txg = spa_vdev_config_enter(spa);
537988ecc943SGeorge Wilson 
5380a1521560SJeff Bonwick 		/*
5381a1521560SJeff Bonwick 		 * If we couldn't evacuate the vdev, unwind.
5382a1521560SJeff Bonwick 		 */
5383a1521560SJeff Bonwick 		if (error) {
5384a1521560SJeff Bonwick 			metaslab_group_activate(mg);
5385a1521560SJeff Bonwick 			return (spa_vdev_exit(spa, NULL, txg, error));
5386a1521560SJeff Bonwick 		}
5387a1521560SJeff Bonwick 
5388a1521560SJeff Bonwick 		/*
5389a1521560SJeff Bonwick 		 * Clean up the vdev namespace.
5390a1521560SJeff Bonwick 		 */
5391a1521560SJeff Bonwick 		spa_vdev_remove_from_namespace(spa, vd);
539288ecc943SGeorge Wilson 
5393e14bb325SJeff Bonwick 	} else if (vd != NULL) {
5394e14bb325SJeff Bonwick 		/*
5395e14bb325SJeff Bonwick 		 * Normal vdevs cannot be removed (yet).
5396e14bb325SJeff Bonwick 		 */
5397be6fd75aSMatthew Ahrens 		error = SET_ERROR(ENOTSUP);
5398e14bb325SJeff Bonwick 	} else {
5399e14bb325SJeff Bonwick 		/*
5400e14bb325SJeff Bonwick 		 * There is no vdev of any kind with the specified guid.
5401e14bb325SJeff Bonwick 		 */
5402be6fd75aSMatthew Ahrens 		error = SET_ERROR(ENOENT);
5403fa94a07fSbrendan 	}
540499653d4eSeschrock 
54058ad4d6ddSJeff Bonwick 	if (!locked)
5406e14bb325SJeff Bonwick 		return (spa_vdev_exit(spa, NULL, txg, error));
54078ad4d6ddSJeff Bonwick 
54088ad4d6ddSJeff Bonwick 	return (error);
5409fa9e4066Sahrens }
5410fa9e4066Sahrens 
5411fa9e4066Sahrens /*
54123d7072f8Seschrock  * Find any device that's done replacing, or a vdev marked 'unspare' that's
5413f7170741SWill Andrews  * currently spared, so we can detach it.
5414fa9e4066Sahrens  */
5415ea8dc4b6Seschrock static vdev_t *
spa_vdev_resilver_done_hunt(vdev_t * vd)54163d7072f8Seschrock spa_vdev_resilver_done_hunt(vdev_t *vd)
5417fa9e4066Sahrens {
5418ea8dc4b6Seschrock 	vdev_t *newvd, *oldvd;
5419fa9e4066Sahrens 
5420573ca77eSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++) {
54213d7072f8Seschrock 		oldvd = spa_vdev_resilver_done_hunt(vd->vdev_child[c]);
5422ea8dc4b6Seschrock 		if (oldvd != NULL)
5423ea8dc4b6Seschrock 			return (oldvd);
5424ea8dc4b6Seschrock 	}
5425fa9e4066Sahrens 
54263d7072f8Seschrock 	/*
5427cb04b873SMark J Musante 	 * Check for a completed replacement.  We always consider the first
5428cb04b873SMark J Musante 	 * vdev in the list to be the oldest vdev, and the last one to be
5429cb04b873SMark J Musante 	 * the newest (see spa_vdev_attach() for how that works).  In
5430cb04b873SMark J Musante 	 * the case where the newest vdev is faulted, we will not automatically
5431cb04b873SMark J Musante 	 * remove it after a resilver completes.  This is OK as it will require
5432cb04b873SMark J Musante 	 * user intervention to determine which disk the admin wishes to keep.
54333d7072f8Seschrock 	 */
5434cb04b873SMark J Musante 	if (vd->vdev_ops == &vdev_replacing_ops) {
5435cb04b873SMark J Musante 		ASSERT(vd->vdev_children > 1);
5436cb04b873SMark J Musante 
5437cb04b873SMark J Musante 		newvd = vd->vdev_child[vd->vdev_children - 1];
5438ea8dc4b6Seschrock 		oldvd = vd->vdev_child[0];
5439fa9e4066Sahrens 
54408ad4d6ddSJeff Bonwick 		if (vdev_dtl_empty(newvd, DTL_MISSING) &&
5441e69acc92SVictor Latushkin 		    vdev_dtl_empty(newvd, DTL_OUTAGE) &&
54428ad4d6ddSJeff Bonwick 		    !vdev_dtl_required(oldvd))
5443ea8dc4b6Seschrock 			return (oldvd);
5444fa9e4066Sahrens 	}
5445fa9e4066Sahrens 
54463d7072f8Seschrock 	/*
54473d7072f8Seschrock 	 * Check for a completed resilver with the 'unspare' flag set.
54483d7072f8Seschrock 	 */
5449cb04b873SMark J Musante 	if (vd->vdev_ops == &vdev_spare_ops) {
5450cb04b873SMark J Musante 		vdev_t *first = vd->vdev_child[0];
5451cb04b873SMark J Musante 		vdev_t *last = vd->vdev_child[vd->vdev_children - 1];
54523d7072f8Seschrock 
5453cb04b873SMark J Musante 		if (last->vdev_unspare) {
5454cb04b873SMark J Musante 			oldvd = first;
5455cb04b873SMark J Musante 			newvd = last;
5456cb04b873SMark J Musante 		} else if (first->vdev_unspare) {
5457cb04b873SMark J Musante 			oldvd = last;
5458cb04b873SMark J Musante 			newvd = first;
5459cb04b873SMark J Musante 		} else {
5460cb04b873SMark J Musante 			oldvd = NULL;
5461cb04b873SMark J Musante 		}
5462cb04b873SMark J Musante 
5463cb04b873SMark J Musante 		if (oldvd != NULL &&
54648ad4d6ddSJeff Bonwick 		    vdev_dtl_empty(newvd, DTL_MISSING) &&
5465e69acc92SVictor Latushkin 		    vdev_dtl_empty(newvd, DTL_OUTAGE) &&
5466cb04b873SMark J Musante 		    !vdev_dtl_required(oldvd))
54673d7072f8Seschrock 			return (oldvd);
5468cb04b873SMark J Musante 
5469cb04b873SMark J Musante 		/*
5470cb04b873SMark J Musante 		 * If there are more than two spares attached to a disk,
5471cb04b873SMark J Musante 		 * and those spares are not required, then we want to
5472cb04b873SMark J Musante 		 * attempt to free them up now so that they can be used
5473cb04b873SMark J Musante 		 * by other pools.  Once we're back down to a single
5474cb04b873SMark J Musante 		 * disk+spare, we stop removing them.
5475cb04b873SMark J Musante 		 */
5476cb04b873SMark J Musante 		if (vd->vdev_children > 2) {
5477cb04b873SMark J Musante 			newvd = vd->vdev_child[1];
5478cb04b873SMark J Musante 
5479cb04b873SMark J Musante 			if (newvd->vdev_isspare && last->vdev_isspare &&
5480cb04b873SMark J Musante 			    vdev_dtl_empty(last, DTL_MISSING) &&
5481cb04b873SMark J Musante 			    vdev_dtl_empty(last, DTL_OUTAGE) &&
5482cb04b873SMark J Musante 			    !vdev_dtl_required(newvd))
5483cb04b873SMark J Musante 				return (newvd);
54843d7072f8Seschrock 		}
54853d7072f8Seschrock 	}
54863d7072f8Seschrock 
5487ea8dc4b6Seschrock 	return (NULL);
5488ea8dc4b6Seschrock }
5489ea8dc4b6Seschrock 
5490ea8dc4b6Seschrock static void
spa_vdev_resilver_done(spa_t * spa)54913d7072f8Seschrock spa_vdev_resilver_done(spa_t *spa)
5492fa9e4066Sahrens {
54938ad4d6ddSJeff Bonwick 	vdev_t *vd, *pvd, *ppvd;
54948ad4d6ddSJeff Bonwick 	uint64_t guid, sguid, pguid, ppguid;
5495fa9e4066Sahrens 
54968ad4d6ddSJeff Bonwick 	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
5497fa9e4066Sahrens 
54983d7072f8Seschrock 	while ((vd = spa_vdev_resilver_done_hunt(spa->spa_root_vdev)) != NULL) {
54998ad4d6ddSJeff Bonwick 		pvd = vd->vdev_parent;
55008ad4d6ddSJeff Bonwick 		ppvd = pvd->vdev_parent;
5501ea8dc4b6Seschrock 		guid = vd->vdev_guid;
55028ad4d6ddSJeff Bonwick 		pguid = pvd->vdev_guid;
55038ad4d6ddSJeff Bonwick 		ppguid = ppvd->vdev_guid;
55048ad4d6ddSJeff Bonwick 		sguid = 0;
550599653d4eSeschrock 		/*
550699653d4eSeschrock 		 * If we have just finished replacing a hot spared device, then
550799653d4eSeschrock 		 * we need to detach the parent's first child (the original hot
550899653d4eSeschrock 		 * spare) as well.
550999653d4eSeschrock 		 */
5510cb04b873SMark J Musante 		if (ppvd->vdev_ops == &vdev_spare_ops && pvd->vdev_id == 0 &&
5511cb04b873SMark J Musante 		    ppvd->vdev_children == 2) {
551299653d4eSeschrock 			ASSERT(pvd->vdev_ops == &vdev_replacing_ops);
55138ad4d6ddSJeff Bonwick 			sguid = ppvd->vdev_child[1]->vdev_guid;
551499653d4eSeschrock 		}
5515b4952e17SGeorge Wilson 		ASSERT(vd->vdev_resilver_txg == 0 || !vdev_dtl_required(vd));
5516b4952e17SGeorge Wilson 
55178ad4d6ddSJeff Bonwick 		spa_config_exit(spa, SCL_ALL, FTAG);
55188ad4d6ddSJeff Bonwick 		if (spa_vdev_detach(spa, guid, pguid, B_TRUE) != 0)
5519ea8dc4b6Seschrock 			return;
55208ad4d6ddSJeff Bonwick 		if (sguid && spa_vdev_detach(spa, sguid, ppguid, B_TRUE) != 0)
552199653d4eSeschrock 			return;
55228ad4d6ddSJeff Bonwick 		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
5523fa9e4066Sahrens 	}
5524fa9e4066Sahrens 
55258ad4d6ddSJeff Bonwick 	spa_config_exit(spa, SCL_ALL, FTAG);
5526fa9e4066Sahrens }
5527fa9e4066Sahrens 
5528fa9e4066Sahrens /*
5529b3388e4fSEric Taylor  * Update the stored path or FRU for this vdev.
5530c67d9675Seschrock  */
5531c67d9675Seschrock int
spa_vdev_set_common(spa_t * spa,uint64_t guid,const char * value,boolean_t ispath)55326809eb4eSEric Schrock spa_vdev_set_common(spa_t *spa, uint64_t guid, const char *value,
55336809eb4eSEric Schrock     boolean_t ispath)
5534c67d9675Seschrock {
5535c5904d13Seschrock 	vdev_t *vd;
5536208044b8SGeorge Wilson 	boolean_t sync = B_FALSE;
5537c67d9675Seschrock 
5538f9af39baSGeorge Wilson 	ASSERT(spa_writeable(spa));
5539f9af39baSGeorge Wilson 
5540b3388e4fSEric Taylor 	spa_vdev_state_enter(spa, SCL_ALL);
5541c67d9675Seschrock 
55426809eb4eSEric Schrock 	if ((vd = spa_lookup_by_guid(spa, guid, B_TRUE)) == NULL)
5543b3388e4fSEric Taylor 		return (spa_vdev_state_exit(spa, NULL, ENOENT));
554499653d4eSeschrock 
55450e34b6a7Sbonwick 	if (!vd->vdev_ops->vdev_op_leaf)
5546b3388e4fSEric Taylor 		return (spa_vdev_state_exit(spa, NULL, ENOTSUP));
55470e34b6a7Sbonwick 
55486809eb4eSEric Schrock 	if (ispath) {
5549208044b8SGeorge Wilson 		if (strcmp(value, vd->vdev_path) != 0) {
5550c67d9675Seschrock 			spa_strfree(vd->vdev_path);
55516809eb4eSEric Schrock 			vd->vdev_path = spa_strdup(value);
5552208044b8SGeorge Wilson 			sync = B_TRUE;
5553208044b8SGeorge Wilson 		}
55546809eb4eSEric Schrock 	} else {
5555208044b8SGeorge Wilson 		if (vd->vdev_fru == NULL) {
5556208044b8SGeorge Wilson 			vd->vdev_fru = spa_strdup(value);
5557208044b8SGeorge Wilson 			sync = B_TRUE;
5558208044b8SGeorge Wilson 		} else if (strcmp(value, vd->vdev_fru) != 0) {
55596809eb4eSEric Schrock 			spa_strfree(vd->vdev_fru);
55606809eb4eSEric Schrock 			vd->vdev_fru = spa_strdup(value);
5561208044b8SGeorge Wilson 			sync = B_TRUE;
5562208044b8SGeorge Wilson 		}
55636809eb4eSEric Schrock 	}
5564c67d9675Seschrock 
5565208044b8SGeorge Wilson 	return (spa_vdev_state_exit(spa, sync ? vd : NULL, 0));
5566c67d9675Seschrock }
5567c67d9675Seschrock 
55686809eb4eSEric Schrock int
spa_vdev_setpath(spa_t * spa,uint64_t guid,const char * newpath)55696809eb4eSEric Schrock spa_vdev_setpath(spa_t *spa, uint64_t guid, const char *newpath)
55706809eb4eSEric Schrock {
55716809eb4eSEric Schrock 	return (spa_vdev_set_common(spa, guid, newpath, B_TRUE));
55726809eb4eSEric Schrock }
55736809eb4eSEric Schrock 
55746809eb4eSEric Schrock int
spa_vdev_setfru(spa_t * spa,uint64_t guid,const char * newfru)55756809eb4eSEric Schrock spa_vdev_setfru(spa_t *spa, uint64_t guid, const char *newfru)
55766809eb4eSEric Schrock {
55776809eb4eSEric Schrock 	return (spa_vdev_set_common(spa, guid, newfru, B_FALSE));
55786809eb4eSEric Schrock }
55796809eb4eSEric Schrock 
5580c67d9675Seschrock /*
5581fa9e4066Sahrens  * ==========================================================================
55823f9d6ad7SLin Ling  * SPA Scanning
5583fa9e4066Sahrens  * ==========================================================================
5584fa9e4066Sahrens  */
5585fa9e4066Sahrens 
5586ea8dc4b6Seschrock int
spa_scan_stop(spa_t * spa)55873f9d6ad7SLin Ling spa_scan_stop(spa_t *spa)
55883f9d6ad7SLin Ling {
55893f9d6ad7SLin Ling 	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == 0);
55903f9d6ad7SLin Ling 	if (dsl_scan_resilvering(spa->spa_dsl_pool))
5591be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
55923f9d6ad7SLin Ling 	return (dsl_scan_cancel(spa->spa_dsl_pool));
55933f9d6ad7SLin Ling }
55943f9d6ad7SLin Ling 
55953f9d6ad7SLin Ling int
spa_scan(spa_t * spa,pool_scan_func_t func)55963f9d6ad7SLin Ling spa_scan(spa_t *spa, pool_scan_func_t func)
5597fa9e4066Sahrens {
5598e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == 0);
5599bb8b5132Sek110237 
56003f9d6ad7SLin Ling 	if (func >= POOL_SCAN_FUNCS || func == POOL_SCAN_NONE)
5601be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOTSUP));
5602fa9e4066Sahrens 
5603fa9e4066Sahrens 	/*
5604088f3894Sahrens 	 * If a resilver was requested, but there is no DTL on a
5605088f3894Sahrens 	 * writeable leaf device, we have nothing to do.
5606fa9e4066Sahrens 	 */
56073f9d6ad7SLin Ling 	if (func == POOL_SCAN_RESILVER &&
5608088f3894Sahrens 	    !vdev_resilver_needed(spa->spa_root_vdev, NULL, NULL)) {
56093d7072f8Seschrock 		spa_async_request(spa, SPA_ASYNC_RESILVER_DONE);
5610fa9e4066Sahrens 		return (0);
5611fa9e4066Sahrens 	}
5612fa9e4066Sahrens 
56133f9d6ad7SLin Ling 	return (dsl_scan(spa->spa_dsl_pool, func));
5614088f3894Sahrens }
5615088f3894Sahrens 
5616ea8dc4b6Seschrock /*
5617ea8dc4b6Seschrock  * ==========================================================================
5618ea8dc4b6Seschrock  * SPA async task processing
5619ea8dc4b6Seschrock  * ==========================================================================
5620ea8dc4b6Seschrock  */
5621ea8dc4b6Seschrock 
5622ea8dc4b6Seschrock static void
spa_async_remove(spa_t * spa,vdev_t * vd)56233d7072f8Seschrock spa_async_remove(spa_t *spa, vdev_t *vd)
5624fa9e4066Sahrens {
562549cf58c0SBrendan Gregg - Sun Microsystems 	if (vd->vdev_remove_wanted) {
562698d1cbfeSGeorge Wilson 		vd->vdev_remove_wanted = B_FALSE;
562798d1cbfeSGeorge Wilson 		vd->vdev_delayed_close = B_FALSE;
562849cf58c0SBrendan Gregg - Sun Microsystems 		vdev_set_state(vd, B_FALSE, VDEV_STATE_REMOVED, VDEV_AUX_NONE);
56291d713200SEric Schrock 
56301d713200SEric Schrock 		/*
56311d713200SEric Schrock 		 * We want to clear the stats, but we don't want to do a full
56321d713200SEric Schrock 		 * vdev_clear() as that will cause us to throw away
56331d713200SEric Schrock 		 * degraded/faulted state as well as attempt to reopen the
56341d713200SEric Schrock 		 * device, all of which is a waste.
56351d713200SEric Schrock 		 */
56361d713200SEric Schrock 		vd->vdev_stat.vs_read_errors = 0;
56371d713200SEric Schrock 		vd->vdev_stat.vs_write_errors = 0;
56381d713200SEric Schrock 		vd->vdev_stat.vs_checksum_errors = 0;
56391d713200SEric Schrock 
5640e14bb325SJeff Bonwick 		vdev_state_dirty(vd->vdev_top);
5641ea8dc4b6Seschrock 	}
564249cf58c0SBrendan Gregg - Sun Microsystems 
5643e14bb325SJeff Bonwick 	for (int c = 0; c < vd->vdev_children; c++)
564449cf58c0SBrendan Gregg - Sun Microsystems 		spa_async_remove(spa, vd->vdev_child[c]);
5645ea8dc4b6Seschrock }
5646ea8dc4b6Seschrock 
5647ea8dc4b6Seschrock static void
spa_async_probe(spa_t * spa,vdev_t * vd)5648e14bb325SJeff Bonwick spa_async_probe(spa_t *spa, vdev_t *vd)
5649e14bb325SJeff Bonwick {
5650e14bb325SJeff Bonwick 	if (vd->vdev_probe_wanted) {
565198d1cbfeSGeorge Wilson 		vd->vdev_probe_wanted = B_FALSE;
5652e14bb325SJeff Bonwick 		vdev_reopen(vd);	/* vdev_open() does the actual probe */
5653e14bb325SJeff Bonwick 	}
5654e14bb325SJeff Bonwick 
5655e14bb325SJeff Bonwick 	for (int c = 0; c < vd->vdev_children; c++)
5656e14bb325SJeff Bonwick 		spa_async_probe(spa, vd->vdev_child[c]);
5657e14bb325SJeff Bonwick }
5658e14bb325SJeff Bonwick 
5659e14bb325SJeff Bonwick static void
spa_async_autoexpand(spa_t * spa,vdev_t * vd)5660573ca77eSGeorge Wilson spa_async_autoexpand(spa_t *spa, vdev_t *vd)
5661573ca77eSGeorge Wilson {
5662573ca77eSGeorge Wilson 	sysevent_id_t eid;
5663573ca77eSGeorge Wilson 	nvlist_t *attr;
5664573ca77eSGeorge Wilson 	char *physpath;
5665573ca77eSGeorge Wilson 
5666573ca77eSGeorge Wilson 	if (!spa->spa_autoexpand)
5667573ca77eSGeorge Wilson 		return;
5668573ca77eSGeorge Wilson 
5669573ca77eSGeorge Wilson 	for (int c = 0; c < vd->vdev_children; c++) {
5670573ca77eSGeorge Wilson 		vdev_t *cvd = vd->vdev_child[c];
5671573ca77eSGeorge Wilson 		spa_async_autoexpand(spa, cvd);
5672573ca77eSGeorge Wilson 	}
5673573ca77eSGeorge Wilson 
5674573ca77eSGeorge Wilson 	if (!vd->vdev_ops->vdev_op_leaf || vd->vdev_physpath == NULL)
5675573ca77eSGeorge Wilson 		return;
5676573ca77eSGeorge Wilson 
5677573ca77eSGeorge Wilson 	physpath = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
5678573ca77eSGeorge Wilson 	(void) snprintf(physpath, MAXPATHLEN, "/devices%s", vd->vdev_physpath);
5679573ca77eSGeorge Wilson 
5680573ca77eSGeorge Wilson 	VERIFY(nvlist_alloc(&attr, NV_UNIQUE_NAME, KM_SLEEP) == 0);
5681573ca77eSGeorge Wilson 	VERIFY(nvlist_add_string(attr, DEV_PHYS_PATH, physpath) == 0);
5682573ca77eSGeorge Wilson 
5683573ca77eSGeorge Wilson 	(void) ddi_log_sysevent(zfs_dip, SUNW_VENDOR, EC_DEV_STATUS,
5684573ca77eSGeorge Wilson 	    ESC_DEV_DLE, attr, &eid, DDI_SLEEP);
5685573ca77eSGeorge Wilson 
5686573ca77eSGeorge Wilson 	nvlist_free(attr);
5687573ca77eSGeorge Wilson 	kmem_free(physpath, MAXPATHLEN);
5688573ca77eSGeorge Wilson }
5689573ca77eSGeorge Wilson 
5690573ca77eSGeorge Wilson static void
spa_async_thread(spa_t * spa)5691ea8dc4b6Seschrock spa_async_thread(spa_t *spa)
5692ea8dc4b6Seschrock {
5693e14bb325SJeff Bonwick 	int tasks;
5694ea8dc4b6Seschrock 
5695ea8dc4b6Seschrock 	ASSERT(spa->spa_sync_on);
5696ea8dc4b6Seschrock 
5697ea8dc4b6Seschrock 	mutex_enter(&spa->spa_async_lock);
5698ea8dc4b6Seschrock 	tasks = spa->spa_async_tasks;
5699ea8dc4b6Seschrock 	spa->spa_async_tasks = 0;
5700ea8dc4b6Seschrock 	mutex_exit(&spa->spa_async_lock);
5701ea8dc4b6Seschrock 
5702ea8dc4b6Seschrock 	/*
57030373e76bSbonwick 	 * See if the config needs to be updated.
57040373e76bSbonwick 	 */
57050373e76bSbonwick 	if (tasks & SPA_ASYNC_CONFIG_UPDATE) {
5706b24ab676SJeff Bonwick 		uint64_t old_space, new_space;
5707573ca77eSGeorge Wilson 
57080373e76bSbonwick 		mutex_enter(&spa_namespace_lock);
5709b24ab676SJeff Bonwick 		old_space = metaslab_class_get_space(spa_normal_class(spa));
57100373e76bSbonwick 		spa_config_update(spa, SPA_CONFIG_UPDATE_POOL);
5711b24ab676SJeff Bonwick 		new_space = metaslab_class_get_space(spa_normal_class(spa));
57120373e76bSbonwick 		mutex_exit(&spa_namespace_lock);
5713573ca77eSGeorge Wilson 
5714573ca77eSGeorge Wilson 		/*
5715573ca77eSGeorge Wilson 		 * If the pool grew as a result of the config update,
5716573ca77eSGeorge Wilson 		 * then log an internal history event.
5717573ca77eSGeorge Wilson 		 */
5718b24ab676SJeff Bonwick 		if (new_space != old_space) {
57194445fffbSMatthew Ahrens 			spa_history_log_internal(spa, "vdev online", NULL,
5720573ca77eSGeorge Wilson 			    "pool '%s' size: %llu(+%llu)",
5721b24ab676SJeff Bonwick 			    spa_name(spa), new_space, new_space - old_space);
5722573ca77eSGeorge Wilson 		}
57230373e76bSbonwick 	}
57240373e76bSbonwick 
57250373e76bSbonwick 	/*
57263d7072f8Seschrock 	 * See if any devices need to be marked REMOVED.
5727ea8dc4b6Seschrock 	 */
5728e14bb325SJeff Bonwick 	if (tasks & SPA_ASYNC_REMOVE) {
57298f18d1faSGeorge Wilson 		spa_vdev_state_enter(spa, SCL_NONE);
57303d7072f8Seschrock 		spa_async_remove(spa, spa->spa_root_vdev);
5731e14bb325SJeff Bonwick 		for (int i = 0; i < spa->spa_l2cache.sav_count; i++)
573249cf58c0SBrendan Gregg - Sun Microsystems 			spa_async_remove(spa, spa->spa_l2cache.sav_vdevs[i]);
5733e14bb325SJeff Bonwick 		for (int i = 0; i < spa->spa_spares.sav_count; i++)
573449cf58c0SBrendan Gregg - Sun Microsystems 			spa_async_remove(spa, spa->spa_spares.sav_vdevs[i]);
5735e14bb325SJeff Bonwick 		(void) spa_vdev_state_exit(spa, NULL, 0);
5736e14bb325SJeff Bonwick 	}
5737e14bb325SJeff Bonwick 
5738573ca77eSGeorge Wilson 	if ((tasks & SPA_ASYNC_AUTOEXPAND) && !spa_suspended(spa)) {
5739573ca77eSGeorge Wilson 		spa_config_enter(spa, SCL_CONFIG, FTAG, RW_READER);
5740573ca77eSGeorge Wilson 		spa_async_autoexpand(spa, spa->spa_root_vdev);
5741573ca77eSGeorge Wilson 		spa_config_exit(spa, SCL_CONFIG, FTAG);
5742573ca77eSGeorge Wilson 	}
5743573ca77eSGeorge Wilson 
5744e14bb325SJeff Bonwick 	/*
5745e14bb325SJeff Bonwick 	 * See if any devices need to be probed.
5746e14bb325SJeff Bonwick 	 */
5747e14bb325SJeff Bonwick 	if (tasks & SPA_ASYNC_PROBE) {
57488f18d1faSGeorge Wilson 		spa_vdev_state_enter(spa, SCL_NONE);
5749e14bb325SJeff Bonwick 		spa_async_probe(spa, spa->spa_root_vdev);
5750e14bb325SJeff Bonwick 		(void) spa_vdev_state_exit(spa, NULL, 0);
57513d7072f8Seschrock 	}
5752ea8dc4b6Seschrock 
5753ea8dc4b6Seschrock 	/*
5754ea8dc4b6Seschrock 	 * If any devices are done replacing, detach them.
5755ea8dc4b6Seschrock 	 */
57563d7072f8Seschrock 	if (tasks & SPA_ASYNC_RESILVER_DONE)
57573d7072f8Seschrock 		spa_vdev_resilver_done(spa);
5758fa9e4066Sahrens 
5759ea8dc4b6Seschrock 	/*
5760ea8dc4b6Seschrock 	 * Kick off a resilver.
5761ea8dc4b6Seschrock 	 */
5762088f3894Sahrens 	if (tasks & SPA_ASYNC_RESILVER)
57633f9d6ad7SLin Ling 		dsl_resilver_restart(spa->spa_dsl_pool, 0);
5764ea8dc4b6Seschrock 
5765ea8dc4b6Seschrock 	/*
57662142e035SSaso Kiselkov 	 * Kick off L2 cache rebuilding.
57672142e035SSaso Kiselkov 	 */
57682142e035SSaso Kiselkov 	if (tasks & SPA_ASYNC_L2CACHE_REBUILD)
57692142e035SSaso Kiselkov 		l2arc_spa_rebuild_start(spa);
57702142e035SSaso Kiselkov 
57712142e035SSaso Kiselkov 	/*
5772ea8dc4b6Seschrock 	 * Let the world know that we're done.
5773ea8dc4b6Seschrock 	 */
5774ea8dc4b6Seschrock 	mutex_enter(&spa->spa_async_lock);
5775ea8dc4b6Seschrock 	spa->spa_async_thread = NULL;
5776ea8dc4b6Seschrock 	cv_broadcast(&spa->spa_async_cv);
5777ea8dc4b6Seschrock 	mutex_exit(&spa->spa_async_lock);
5778ea8dc4b6Seschrock 	thread_exit();
5779ea8dc4b6Seschrock }
5780ea8dc4b6Seschrock 
5781ea8dc4b6Seschrock void
spa_async_suspend(spa_t * spa)5782ea8dc4b6Seschrock spa_async_suspend(spa_t *spa)
5783ea8dc4b6Seschrock {
5784ea8dc4b6Seschrock 	mutex_enter(&spa->spa_async_lock);
5785ea8dc4b6Seschrock 	spa->spa_async_suspended++;
5786ea8dc4b6Seschrock 	while (spa->spa_async_thread != NULL)
5787ea8dc4b6Seschrock 		cv_wait(&spa->spa_async_cv, &spa->spa_async_lock);
5788ea8dc4b6Seschrock 	mutex_exit(&spa->spa_async_lock);
5789ea8dc4b6Seschrock }
5790ea8dc4b6Seschrock 
5791ea8dc4b6Seschrock void
spa_async_resume(spa_t * spa)5792ea8dc4b6Seschrock spa_async_resume(spa_t *spa)
5793ea8dc4b6Seschrock {
5794ea8dc4b6Seschrock 	mutex_enter(&spa->spa_async_lock);
5795ea8dc4b6Seschrock 	ASSERT(spa->spa_async_suspended != 0);
5796ea8dc4b6Seschrock 	spa->spa_async_suspended--;
5797ea8dc4b6Seschrock 	mutex_exit(&spa->spa_async_lock);
5798ea8dc4b6Seschrock }
5799ea8dc4b6Seschrock 
58003cb69f73SWill Andrews static boolean_t
spa_async_tasks_pending(spa_t * spa)58013cb69f73SWill Andrews spa_async_tasks_pending(spa_t *spa)
58023cb69f73SWill Andrews {
58033cb69f73SWill Andrews 	uint_t non_config_tasks;
58043cb69f73SWill Andrews 	uint_t config_task;
58053cb69f73SWill Andrews 	boolean_t config_task_suspended;
58063cb69f73SWill Andrews 
58073cb69f73SWill Andrews 	non_config_tasks = spa->spa_async_tasks & ~SPA_ASYNC_CONFIG_UPDATE;
58083cb69f73SWill Andrews 	config_task = spa->spa_async_tasks & SPA_ASYNC_CONFIG_UPDATE;
58093cb69f73SWill Andrews 	if (spa->spa_ccw_fail_time == 0) {
58103cb69f73SWill Andrews 		config_task_suspended = B_FALSE;
58113cb69f73SWill Andrews 	} else {
58123cb69f73SWill Andrews 		config_task_suspended =
58133cb69f73SWill Andrews 		    (gethrtime() - spa->spa_ccw_fail_time) <
58143cb69f73SWill Andrews 		    (zfs_ccw_retry_interval * NANOSEC);
58153cb69f73SWill Andrews 	}
58163cb69f73SWill Andrews 
58173cb69f73SWill Andrews 	return (non_config_tasks || (config_task && !config_task_suspended));
58183cb69f73SWill Andrews }
58193cb69f73SWill Andrews 
5820ea8dc4b6Seschrock static void
spa_async_dispatch(spa_t * spa)5821ea8dc4b6Seschrock spa_async_dispatch(spa_t *spa)
5822ea8dc4b6Seschrock {
5823ea8dc4b6Seschrock 	mutex_enter(&spa->spa_async_lock);
58243cb69f73SWill Andrews 	if (spa_async_tasks_pending(spa) &&
58253cb69f73SWill Andrews 	    !spa->spa_async_suspended &&
58260373e76bSbonwick 	    spa->spa_async_thread == NULL &&
58273cb69f73SWill Andrews 	    rootdir != NULL)
5828ea8dc4b6Seschrock 		spa->spa_async_thread = thread_create(NULL, 0,
5829ea8dc4b6Seschrock 		    spa_async_thread, spa, 0, &p0, TS_RUN, maxclsyspri);
5830ea8dc4b6Seschrock 	mutex_exit(&spa->spa_async_lock);
5831ea8dc4b6Seschrock }
5832ea8dc4b6Seschrock 
5833ea8dc4b6Seschrock void
spa_async_request(spa_t * spa,int task)5834ea8dc4b6Seschrock spa_async_request(spa_t *spa, int task)
5835ea8dc4b6Seschrock {
58363f9d6ad7SLin Ling 	zfs_dbgmsg("spa=%s async request task=%u", spa->spa_name, task);
5837ea8dc4b6Seschrock 	mutex_enter(&spa->spa_async_lock);
5838ea8dc4b6Seschrock 	spa->spa_async_tasks |= task;
5839ea8dc4b6Seschrock 	mutex_exit(&spa->spa_async_lock);
5840fa9e4066Sahrens }
5841fa9e4066Sahrens 
5842fa9e4066Sahrens /*
5843fa9e4066Sahrens  * ==========================================================================
5844fa9e4066Sahrens  * SPA syncing routines
5845fa9e4066Sahrens  * ==========================================================================
5846fa9e4066Sahrens  */
5847cde58dbcSMatthew Ahrens 
5848cde58dbcSMatthew Ahrens static int
bpobj_enqueue_cb(void * arg,const blkptr_t * bp,dmu_tx_t * tx)5849cde58dbcSMatthew Ahrens bpobj_enqueue_cb(void *arg, const blkptr_t *bp, dmu_tx_t *tx)
5850fa9e4066Sahrens {
5851cde58dbcSMatthew Ahrens 	bpobj_t *bpo = arg;
5852cde58dbcSMatthew Ahrens 	bpobj_enqueue(bpo, bp, tx);
5853cde58dbcSMatthew Ahrens 	return (0);
5854e14bb325SJeff Bonwick }
5855fa9e4066Sahrens 
5856cde58dbcSMatthew Ahrens static int
spa_free_sync_cb(void * arg,const blkptr_t * bp,dmu_tx_t * tx)5857cde58dbcSMatthew Ahrens spa_free_sync_cb(void *arg, const blkptr_t *bp, dmu_tx_t *tx)
5858b24ab676SJeff Bonwick {
5859b24ab676SJeff Bonwick 	zio_t *zio = arg;
5860b24ab676SJeff Bonwick 
5861b24ab676SJeff Bonwick 	zio_nowait(zio_free_sync(zio, zio->io_spa, dmu_tx_get_txg(tx), bp,
5862b24ab676SJeff Bonwick 	    zio->io_flags));
5863cde58dbcSMatthew Ahrens 	return (0);
5864fa9e4066Sahrens }
5865fa9e4066Sahrens 
586669962b56SMatthew Ahrens /*
586769962b56SMatthew Ahrens  * Note: this simple function is not inlined to make it easier to dtrace the
586869962b56SMatthew Ahrens  * amount of time spent syncing frees.
586969962b56SMatthew Ahrens  */
587069962b56SMatthew Ahrens static void
spa_sync_frees(spa_t * spa,bplist_t * bpl,dmu_tx_t * tx)587169962b56SMatthew Ahrens spa_sync_frees(spa_t *spa, bplist_t *bpl, dmu_tx_t *tx)
587269962b56SMatthew Ahrens {
587369962b56SMatthew Ahrens 	zio_t *zio = zio_root(spa, NULL, NULL, 0);
587469962b56SMatthew Ahrens 	bplist_iterate(bpl, spa_free_sync_cb, zio, tx);
587569962b56SMatthew Ahrens 	VERIFY(zio_wait(zio) == 0);
587669962b56SMatthew Ahrens }
587769962b56SMatthew Ahrens 
587869962b56SMatthew Ahrens /*
587969962b56SMatthew Ahrens  * Note: this simple function is not inlined to make it easier to dtrace the
588069962b56SMatthew Ahrens  * amount of time spent syncing deferred frees.
588169962b56SMatthew Ahrens  */
588269962b56SMatthew Ahrens static void
spa_sync_deferred_frees(spa_t * spa,dmu_tx_t * tx)588369962b56SMatthew Ahrens spa_sync_deferred_frees(spa_t *spa, dmu_tx_t *tx)
588469962b56SMatthew Ahrens {
588569962b56SMatthew Ahrens 	zio_t *zio = zio_root(spa, NULL, NULL, 0);
588669962b56SMatthew Ahrens 	VERIFY3U(bpobj_iterate(&spa->spa_deferred_bpobj,
588769962b56SMatthew Ahrens 	    spa_free_sync_cb, zio, tx), ==, 0);
588869962b56SMatthew Ahrens 	VERIFY0(zio_wait(zio));
588969962b56SMatthew Ahrens }
589069962b56SMatthew Ahrens 
589169962b56SMatthew Ahrens 
5892fa9e4066Sahrens static void
spa_sync_nvlist(spa_t * spa,uint64_t obj,nvlist_t * nv,dmu_tx_t * tx)589399653d4eSeschrock spa_sync_nvlist(spa_t *spa, uint64_t obj, nvlist_t *nv, dmu_tx_t *tx)
5894fa9e4066Sahrens {
5895fa9e4066Sahrens 	char *packed = NULL;
5896f7991ba4STim Haley 	size_t bufsize;
5897fa9e4066Sahrens 	size_t nvsize = 0;
5898fa9e4066Sahrens 	dmu_buf_t *db;
5899fa9e4066Sahrens 
590099653d4eSeschrock 	VERIFY(nvlist_size(nv, &nvsize, NV_ENCODE_XDR) == 0);
590199653d4eSeschrock 
5902f7991ba4STim Haley 	/*
5903f7991ba4STim Haley 	 * Write full (SPA_CONFIG_BLOCKSIZE) blocks of configuration
590443466aaeSMax Grossman 	 * information.  This avoids the dmu_buf_will_dirty() path and
5905f7991ba4STim Haley 	 * saves us a pre-read to get data we don't actually care about.
5906f7991ba4STim Haley 	 */
5907ad135b5dSChristopher Siden 	bufsize = P2ROUNDUP((uint64_t)nvsize, SPA_CONFIG_BLOCKSIZE);
5908f7991ba4STim Haley 	packed = kmem_alloc(bufsize, KM_SLEEP);
590999653d4eSeschrock 
591099653d4eSeschrock 	VERIFY(nvlist_pack(nv, &packed, &nvsize, NV_ENCODE_XDR,
591199653d4eSeschrock 	    KM_SLEEP) == 0);
5912f7991ba4STim Haley 	bzero(packed + nvsize, bufsize - nvsize);
591399653d4eSeschrock 
5914f7991ba4STim Haley 	dmu_write(spa->spa_meta_objset, obj, 0, bufsize, packed, tx);
591599653d4eSeschrock 
5916f7991ba4STim Haley 	kmem_free(packed, bufsize);
591799653d4eSeschrock 
591899653d4eSeschrock 	VERIFY(0 == dmu_bonus_hold(spa->spa_meta_objset, obj, FTAG, &db));
591999653d4eSeschrock 	dmu_buf_will_dirty(db, tx);
592099653d4eSeschrock 	*(uint64_t *)db->db_data = nvsize;
592199653d4eSeschrock 	dmu_buf_rele(db, FTAG);
592299653d4eSeschrock }
592399653d4eSeschrock 
592499653d4eSeschrock static void
spa_sync_aux_dev(spa_t * spa,spa_aux_vdev_t * sav,dmu_tx_t * tx,const char * config,const char * entry)5925fa94a07fSbrendan spa_sync_aux_dev(spa_t *spa, spa_aux_vdev_t *sav, dmu_tx_t *tx,
5926fa94a07fSbrendan     const char *config, const char *entry)
592799653d4eSeschrock {
592899653d4eSeschrock 	nvlist_t *nvroot;
5929fa94a07fSbrendan 	nvlist_t **list;
593099653d4eSeschrock 	int i;
593199653d4eSeschrock 
5932fa94a07fSbrendan 	if (!sav->sav_sync)
593399653d4eSeschrock 		return;
593499653d4eSeschrock 
593599653d4eSeschrock 	/*
5936fa94a07fSbrendan 	 * Update the MOS nvlist describing the list of available devices.
5937fa94a07fSbrendan 	 * spa_validate_aux() will have already made sure this nvlist is
59383d7072f8Seschrock 	 * valid and the vdevs are labeled appropriately.
593999653d4eSeschrock 	 */
5940fa94a07fSbrendan 	if (sav->sav_object == 0) {
5941fa94a07fSbrendan 		sav->sav_object = dmu_object_alloc(spa->spa_meta_objset,
5942fa94a07fSbrendan 		    DMU_OT_PACKED_NVLIST, 1 << 14, DMU_OT_PACKED_NVLIST_SIZE,
5943fa94a07fSbrendan 		    sizeof (uint64_t), tx);
594499653d4eSeschrock 		VERIFY(zap_update(spa->spa_meta_objset,
5945fa94a07fSbrendan 		    DMU_POOL_DIRECTORY_OBJECT, entry, sizeof (uint64_t), 1,
5946fa94a07fSbrendan 		    &sav->sav_object, tx) == 0);
594799653d4eSeschrock 	}
594899653d4eSeschrock 
594999653d4eSeschrock 	VERIFY(nvlist_alloc(&nvroot, NV_UNIQUE_NAME, KM_SLEEP) == 0);
5950fa94a07fSbrendan 	if (sav->sav_count == 0) {
5951fa94a07fSbrendan 		VERIFY(nvlist_add_nvlist_array(nvroot, config, NULL, 0) == 0);
595299653d4eSeschrock 	} else {
5953fa94a07fSbrendan 		list = kmem_alloc(sav->sav_count * sizeof (void *), KM_SLEEP);
5954fa94a07fSbrendan 		for (i = 0; i < sav->sav_count; i++)
5955fa94a07fSbrendan 			list[i] = vdev_config_generate(spa, sav->sav_vdevs[i],
59563f9d6ad7SLin Ling 			    B_FALSE, VDEV_CONFIG_L2CACHE);
5957fa94a07fSbrendan 		VERIFY(nvlist_add_nvlist_array(nvroot, config, list,
5958fa94a07fSbrendan 		    sav->sav_count) == 0);
5959fa94a07fSbrendan 		for (i = 0; i < sav->sav_count; i++)
5960fa94a07fSbrendan 			nvlist_free(list[i]);
5961fa94a07fSbrendan 		kmem_free(list, sav->sav_count * sizeof (void *));
596299653d4eSeschrock 	}
596399653d4eSeschrock 
5964fa94a07fSbrendan 	spa_sync_nvlist(spa, sav->sav_object, nvroot, tx);
596506eeb2adSek110237 	nvlist_free(nvroot);
596699653d4eSeschrock 
5967fa94a07fSbrendan 	sav->sav_sync = B_FALSE;
596899653d4eSeschrock }
596999653d4eSeschrock 
597099653d4eSeschrock static void
spa_sync_config_object(spa_t * spa,dmu_tx_t * tx)597199653d4eSeschrock spa_sync_config_object(spa_t *spa, dmu_tx_t *tx)
597299653d4eSeschrock {
597399653d4eSeschrock 	nvlist_t *config;
597499653d4eSeschrock 
5975e14bb325SJeff Bonwick 	if (list_is_empty(&spa->spa_config_dirty_list))
5976fa9e4066Sahrens 		return;
5977fa9e4066Sahrens 
5978e14bb325SJeff Bonwick 	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
5979e14bb325SJeff Bonwick 
5980e14bb325SJeff Bonwick 	config = spa_config_generate(spa, spa->spa_root_vdev,
5981e14bb325SJeff Bonwick 	    dmu_tx_get_txg(tx), B_FALSE);
5982e14bb325SJeff Bonwick 
598325345e46SGeorge Wilson 	/*
598425345e46SGeorge Wilson 	 * If we're upgrading the spa version then make sure that
598525345e46SGeorge Wilson 	 * the config object gets updated with the correct version.
598625345e46SGeorge Wilson 	 */
598725345e46SGeorge Wilson 	if (spa->spa_ubsync.ub_version < spa->spa_uberblock.ub_version)
598825345e46SGeorge Wilson 		fnvlist_add_uint64(config, ZPOOL_CONFIG_VERSION,
598925345e46SGeorge Wilson 		    spa->spa_uberblock.ub_version);
599025345e46SGeorge Wilson 
5991e14bb325SJeff Bonwick 	spa_config_exit(spa, SCL_STATE, FTAG);
5992fa9e4066Sahrens 
59930373e76bSbonwick 	nvlist_free(spa->spa_config_syncing);
59940373e76bSbonwick 	spa->spa_config_syncing = config;
5995fa9e4066Sahrens 
599699653d4eSeschrock 	spa_sync_nvlist(spa, spa->spa_config_object, config, tx);
5997fa9e4066Sahrens }
5998fa9e4066Sahrens 
5999ad135b5dSChristopher Siden static void
spa_sync_version(void * arg,dmu_tx_t * tx)60003b2aab18SMatthew Ahrens spa_sync_version(void *arg, dmu_tx_t *tx)
6001ad135b5dSChristopher Siden {
60023b2aab18SMatthew Ahrens 	uint64_t *versionp = arg;
60033b2aab18SMatthew Ahrens 	uint64_t version = *versionp;
60043b2aab18SMatthew Ahrens 	spa_t *spa = dmu_tx_pool(tx)->dp_spa;
6005ad135b5dSChristopher Siden 
6006ad135b5dSChristopher Siden 	/*
6007ad135b5dSChristopher Siden 	 * Setting the version is special cased when first creating the pool.
6008ad135b5dSChristopher Siden 	 */
6009ad135b5dSChristopher Siden 	ASSERT(tx->tx_txg != TXG_INITIAL);
6010ad135b5dSChristopher Siden 
601162eae887SRichard Yao 	ASSERT(SPA_VERSION_IS_SUPPORTED(version));
6012ad135b5dSChristopher Siden 	ASSERT(version >= spa_version(spa));
6013ad135b5dSChristopher Siden 
6014ad135b5dSChristopher Siden 	spa->spa_uberblock.ub_version = version;
6015ad135b5dSChristopher Siden 	vdev_config_dirty(spa->spa_root_vdev);
60164445fffbSMatthew Ahrens 	spa_history_log_internal(spa, "set", tx, "version=%lld", version);
6017ad135b5dSChristopher Siden }
6018ad135b5dSChristopher Siden 
6019990b4856Slling /*
6020990b4856Slling  * Set zpool properties.
6021990b4856Slling  */
6022b1b8ab34Slling static void
spa_sync_props(void * arg,dmu_tx_t * tx)60233b2aab18SMatthew Ahrens spa_sync_props(void *arg, dmu_tx_t *tx)
6024b1b8ab34Slling {
60253b2aab18SMatthew Ahrens 	nvlist_t *nvp = arg;
60263b2aab18SMatthew Ahrens 	spa_t *spa = dmu_tx_pool(tx)->dp_spa;
6027b1b8ab34Slling 	objset_t *mos = spa->spa_meta_objset;
6028ad135b5dSChristopher Siden 	nvpair_t *elem = NULL;
6029b1b8ab34Slling 
6030e14bb325SJeff Bonwick 	mutex_enter(&spa->spa_props_lock);
6031e14bb325SJeff Bonwick 
6032990b4856Slling 	while ((elem = nvlist_next_nvpair(nvp, elem))) {
6033ad135b5dSChristopher Siden 		uint64_t intval;
6034ad135b5dSChristopher Siden 		char *strval, *fname;
6035ad135b5dSChristopher Siden 		zpool_prop_t prop;
6036ad135b5dSChristopher Siden 		const char *propname;
6037ad135b5dSChristopher Siden 		zprop_type_t proptype;
60382acef22dSMatthew Ahrens 		spa_feature_t fid;
6039ad135b5dSChristopher Siden 
6040990b4856Slling 		switch (prop = zpool_name_to_prop(nvpair_name(elem))) {
6041ad135b5dSChristopher Siden 		case ZPROP_INVAL:
6042990b4856Slling 			/*
6043ad135b5dSChristopher Siden 			 * We checked this earlier in spa_prop_validate().
6044990b4856Slling 			 */
6045ad135b5dSChristopher Siden 			ASSERT(zpool_prop_feature(nvpair_name(elem)));
6046ad135b5dSChristopher Siden 
6047ad135b5dSChristopher Siden 			fname = strchr(nvpair_name(elem), '@') + 1;
60482acef22dSMatthew Ahrens 			VERIFY0(zfeature_lookup_name(fname, &fid));
6049ad135b5dSChristopher Siden 
60502acef22dSMatthew Ahrens 			spa_feature_enable(spa, fid, tx);
60514445fffbSMatthew Ahrens 			spa_history_log_internal(spa, "set", tx,
60524445fffbSMatthew Ahrens 			    "%s=enabled", nvpair_name(elem));
6053ad135b5dSChristopher Siden 			break;
6054ad135b5dSChristopher Siden 
6055ad135b5dSChristopher Siden 		case ZPOOL_PROP_VERSION:
60560713e232SGeorge Wilson 			intval = fnvpair_value_uint64(elem);
6057ad135b5dSChristopher Siden 			/*
6058ad135b5dSChristopher Siden 			 * The version is synced seperatly before other
6059ad135b5dSChristopher Siden 			 * properties and should be correct by now.
6060ad135b5dSChristopher Siden 			 */
6061ad135b5dSChristopher Siden 			ASSERT3U(spa_version(spa), >=, intval);
6062990b4856Slling 			break;
6063990b4856Slling 
6064990b4856Slling 		case ZPOOL_PROP_ALTROOT:
6065990b4856Slling 			/*
6066990b4856Slling 			 * 'altroot' is a non-persistent property. It should
6067990b4856Slling 			 * have been set temporarily at creation or import time.
6068990b4856Slling 			 */
6069990b4856Slling 			ASSERT(spa->spa_root != NULL);
6070990b4856Slling 			break;
6071990b4856Slling 
6072f9af39baSGeorge Wilson 		case ZPOOL_PROP_READONLY:
60732f8aaab3Seschrock 		case ZPOOL_PROP_CACHEFILE:
6074990b4856Slling 			/*
6075f9af39baSGeorge Wilson 			 * 'readonly' and 'cachefile' are also non-persisitent
6076f9af39baSGeorge Wilson 			 * properties.
6077990b4856Slling 			 */
6078990b4856Slling 			break;
60798704186eSDan McDonald 		case ZPOOL_PROP_COMMENT:
60800713e232SGeorge Wilson 			strval = fnvpair_value_string(elem);
60818704186eSDan McDonald 			if (spa->spa_comment != NULL)
60828704186eSDan McDonald 				spa_strfree(spa->spa_comment);
60838704186eSDan McDonald 			spa->spa_comment = spa_strdup(strval);
60848704186eSDan McDonald 			/*
60858704186eSDan McDonald 			 * We need to dirty the configuration on all the vdevs
60868704186eSDan McDonald 			 * so that their labels get updated.  It's unnecessary
60878704186eSDan McDonald 			 * to do this for pool creation since the vdev's
60888704186eSDan McDonald 			 * configuratoin has already been dirtied.
60898704186eSDan McDonald 			 */
60908704186eSDan McDonald 			if (tx->tx_txg != TXG_INITIAL)
60918704186eSDan McDonald 				vdev_config_dirty(spa->spa_root_vdev);
60924445fffbSMatthew Ahrens 			spa_history_log_internal(spa, "set", tx,
60934445fffbSMatthew Ahrens 			    "%s=%s", nvpair_name(elem), strval);
60948704186eSDan McDonald 			break;
6095990b4856Slling 		default:
6096990b4856Slling 			/*
6097990b4856Slling 			 * Set pool property values in the poolprops mos object.
6098990b4856Slling 			 */
6099b1b8ab34Slling 			if (spa->spa_pool_props_object == 0) {
6100ad135b5dSChristopher Siden 				spa->spa_pool_props_object =
6101ad135b5dSChristopher Siden 				    zap_create_link(mos, DMU_OT_POOL_PROPS,
6102990b4856Slling 				    DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_PROPS,
6103ad135b5dSChristopher Siden 				    tx);
6104b1b8ab34Slling 			}
6105b1b8ab34Slling 
6106990b4856Slling 			/* normalize the property name */
6107990b4856Slling 			propname = zpool_prop_to_name(prop);
6108990b4856Slling 			proptype = zpool_prop_get_type(prop);
61093d7072f8Seschrock 
6110990b4856Slling 			if (nvpair_type(elem) == DATA_TYPE_STRING) {
6111990b4856Slling 				ASSERT(proptype == PROP_TYPE_STRING);
61120713e232SGeorge Wilson 				strval = fnvpair_value_string(elem);
61130713e232SGeorge Wilson 				VERIFY0(zap_update(mos,
6114990b4856Slling 				    spa->spa_pool_props_object, propname,
61150713e232SGeorge Wilson 				    1, strlen(strval) + 1, strval, tx));
61164445fffbSMatthew Ahrens 				spa_history_log_internal(spa, "set", tx,
61174445fffbSMatthew Ahrens 				    "%s=%s", nvpair_name(elem), strval);
6118990b4856Slling 			} else if (nvpair_type(elem) == DATA_TYPE_UINT64) {
61190713e232SGeorge Wilson 				intval = fnvpair_value_uint64(elem);
6120990b4856Slling 
6121990b4856Slling 				if (proptype == PROP_TYPE_INDEX) {
6122990b4856Slling 					const char *unused;
61230713e232SGeorge Wilson 					VERIFY0(zpool_prop_index_to_string(
61240713e232SGeorge Wilson 					    prop, intval, &unused));
6125b1b8ab34Slling 				}
61260713e232SGeorge Wilson 				VERIFY0(zap_update(mos,
6127990b4856Slling 				    spa->spa_pool_props_object, propname,
61280713e232SGeorge Wilson 				    8, 1, &intval, tx));
61294445fffbSMatthew Ahrens 				spa_history_log_internal(spa, "set", tx,
61304445fffbSMatthew Ahrens 				    "%s=%lld", nvpair_name(elem), intval);
6131990b4856Slling 			} else {
6132990b4856Slling 				ASSERT(0); /* not allowed */
6133990b4856Slling 			}
6134990b4856Slling 
61350a4e9518Sgw25295 			switch (prop) {
61360a4e9518Sgw25295 			case ZPOOL_PROP_DELEGATION:
6137990b4856Slling 				spa->spa_delegation = intval;
61380a4e9518Sgw25295 				break;
61390a4e9518Sgw25295 			case ZPOOL_PROP_BOOTFS:
6140990b4856Slling 				spa->spa_bootfs = intval;
61410a4e9518Sgw25295 				break;
61420a4e9518Sgw25295 			case ZPOOL_PROP_FAILUREMODE:
61430a4e9518Sgw25295 				spa->spa_failmode = intval;
61440a4e9518Sgw25295 				break;
6145573ca77eSGeorge Wilson 			case ZPOOL_PROP_AUTOEXPAND:
6146573ca77eSGeorge Wilson 				spa->spa_autoexpand = intval;
6147b98131cfSEric Taylor 				if (tx->tx_txg != TXG_INITIAL)
6148b98131cfSEric Taylor 					spa_async_request(spa,
6149b98131cfSEric Taylor 					    SPA_ASYNC_AUTOEXPAND);
6150573ca77eSGeorge Wilson 				break;
6151b24ab676SJeff Bonwick 			case ZPOOL_PROP_DEDUPDITTO:
6152b24ab676SJeff Bonwick 				spa->spa_dedup_ditto = intval;
6153b24ab676SJeff Bonwick 				break;
61540a4e9518Sgw25295 			default:
61550a4e9518Sgw25295 				break;
61560a4e9518Sgw25295 			}
6157990b4856Slling 		}
6158990b4856Slling 
6159b1b8ab34Slling 	}
6160e14bb325SJeff Bonwick 
6161e14bb325SJeff Bonwick 	mutex_exit(&spa->spa_props_lock);
6162b1b8ab34Slling }
6163b1b8ab34Slling 
6164fa9e4066Sahrens /*
6165cde58dbcSMatthew Ahrens  * Perform one-time upgrade on-disk changes.  spa_version() does not
6166cde58dbcSMatthew Ahrens  * reflect the new version this txg, so there must be no changes this
6167cde58dbcSMatthew Ahrens  * txg to anything that the upgrade code depends on after it executes.
6168cde58dbcSMatthew Ahrens  * Therefore this must be called after dsl_pool_sync() does the sync
6169cde58dbcSMatthew Ahrens  * tasks.
6170cde58dbcSMatthew Ahrens  */
6171cde58dbcSMatthew Ahrens static void
spa_sync_upgrades(spa_t * spa,dmu_tx_t * tx)6172cde58dbcSMatthew Ahrens spa_sync_upgrades(spa_t *spa, dmu_tx_t *tx)
6173cde58dbcSMatthew Ahrens {
6174cde58dbcSMatthew Ahrens 	dsl_pool_t *dp = spa->spa_dsl_pool;
6175cde58dbcSMatthew Ahrens 
6176cde58dbcSMatthew Ahrens 	ASSERT(spa->spa_sync_pass == 1);
6177cde58dbcSMatthew Ahrens 
61783b2aab18SMatthew Ahrens 	rrw_enter(&dp->dp_config_rwlock, RW_WRITER, FTAG);
61793b2aab18SMatthew Ahrens 
6180cde58dbcSMatthew Ahrens 	if (spa->spa_ubsync.ub_version < SPA_VERSION_ORIGIN &&
6181cde58dbcSMatthew Ahrens 	    spa->spa_uberblock.ub_version >= SPA_VERSION_ORIGIN) {
6182cde58dbcSMatthew Ahrens 		dsl_pool_create_origin(dp, tx);
6183cde58dbcSMatthew Ahrens 
6184cde58dbcSMatthew Ahrens 		/* Keeping the origin open increases spa_minref */
6185cde58dbcSMatthew Ahrens 		spa->spa_minref += 3;
6186cde58dbcSMatthew Ahrens 	}
6187cde58dbcSMatthew Ahrens 
6188cde58dbcSMatthew Ahrens 	if (spa->spa_ubsync.ub_version < SPA_VERSION_NEXT_CLONES &&
6189cde58dbcSMatthew Ahrens 	    spa->spa_uberblock.ub_version >= SPA_VERSION_NEXT_CLONES) {
6190cde58dbcSMatthew Ahrens 		dsl_pool_upgrade_clones(dp, tx);
6191cde58dbcSMatthew Ahrens 	}
6192cde58dbcSMatthew Ahrens 
6193cde58dbcSMatthew Ahrens 	if (spa->spa_ubsync.ub_version < SPA_VERSION_DIR_CLONES &&
6194cde58dbcSMatthew Ahrens 	    spa->spa_uberblock.ub_version >= SPA_VERSION_DIR_CLONES) {
6195cde58dbcSMatthew Ahrens 		dsl_pool_upgrade_dir_clones(dp, tx);
6196cde58dbcSMatthew Ahrens 
6197cde58dbcSMatthew Ahrens 		/* Keeping the freedir open increases spa_minref */
6198cde58dbcSMatthew Ahrens 		spa->spa_minref += 3;
6199cde58dbcSMatthew Ahrens 	}
6200ad135b5dSChristopher Siden 
6201ad135b5dSChristopher Siden 	if (spa->spa_ubsync.ub_version < SPA_VERSION_FEATURES &&
6202ad135b5dSChristopher Siden 	    spa->spa_uberblock.ub_version >= SPA_VERSION_FEATURES) {
6203ad135b5dSChristopher Siden 		spa_feature_create_zap_objects(spa, tx);
6204ad135b5dSChristopher Siden 	}
6205b8289d24SDaniil Lunev 
6206b8289d24SDaniil Lunev 	/*
6207b8289d24SDaniil Lunev 	 * LZ4_COMPRESS feature's behaviour was changed to activate_on_enable
6208b8289d24SDaniil Lunev 	 * when possibility to use lz4 compression for metadata was added
6209b8289d24SDaniil Lunev 	 * Old pools that have this feature enabled must be upgraded to have
6210b8289d24SDaniil Lunev 	 * this feature active
6211b8289d24SDaniil Lunev 	 */
6212b8289d24SDaniil Lunev 	if (spa->spa_uberblock.ub_version >= SPA_VERSION_FEATURES) {
6213b8289d24SDaniil Lunev 		boolean_t lz4_en = spa_feature_is_enabled(spa,
6214b8289d24SDaniil Lunev 		    SPA_FEATURE_LZ4_COMPRESS);
6215b8289d24SDaniil Lunev 		boolean_t lz4_ac = spa_feature_is_active(spa,
6216b8289d24SDaniil Lunev 		    SPA_FEATURE_LZ4_COMPRESS);
6217b8289d24SDaniil Lunev 
6218b8289d24SDaniil Lunev 		if (lz4_en && !lz4_ac)
6219b8289d24SDaniil Lunev 			spa_feature_incr(spa, SPA_FEATURE_LZ4_COMPRESS, tx);
6220b8289d24SDaniil Lunev 	}
62213b2aab18SMatthew Ahrens 	rrw_exit(&dp->dp_config_rwlock, FTAG);
6222cde58dbcSMatthew Ahrens }
6223cde58dbcSMatthew Ahrens 
6224cde58dbcSMatthew Ahrens /*
6225fa9e4066Sahrens  * Sync the specified transaction group.  New blocks may be dirtied as
6226fa9e4066Sahrens  * part of the process, so we iterate until it converges.
6227fa9e4066Sahrens  */
6228fa9e4066Sahrens void
spa_sync(spa_t * spa,uint64_t txg)6229fa9e4066Sahrens spa_sync(spa_t *spa, uint64_t txg)
6230fa9e4066Sahrens {
6231fa9e4066Sahrens 	dsl_pool_t *dp = spa->spa_dsl_pool;
6232fa9e4066Sahrens 	objset_t *mos = spa->spa_meta_objset;
6233b24ab676SJeff Bonwick 	bplist_t *free_bpl = &spa->spa_free_bplist[txg & TXG_MASK];
62340373e76bSbonwick 	vdev_t *rvd = spa->spa_root_vdev;
6235fa9e4066Sahrens 	vdev_t *vd;
6236fa9e4066Sahrens 	dmu_tx_t *tx;
6237e14bb325SJeff Bonwick 	int error;
6238fa9e4066Sahrens 
6239f9af39baSGeorge Wilson 	VERIFY(spa_writeable(spa));
6240f9af39baSGeorge Wilson 
6241fa9e4066Sahrens 	/*
6242fa9e4066Sahrens 	 * Lock out configuration changes.
6243fa9e4066Sahrens 	 */
6244e14bb325SJeff Bonwick 	spa_config_enter(spa, SCL_CONFIG, FTAG, RW_READER);
6245fa9e4066Sahrens 
6246fa9e4066Sahrens 	spa->spa_syncing_txg = txg;
6247fa9e4066Sahrens 	spa->spa_sync_pass = 0;
6248fa9e4066Sahrens 
6249e14bb325SJeff Bonwick 	/*
6250e14bb325SJeff Bonwick 	 * If there are any pending vdev state changes, convert them
6251e14bb325SJeff Bonwick 	 * into config changes that go out with this transaction group.
6252e14bb325SJeff Bonwick 	 */
6253e14bb325SJeff Bonwick 	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
62548ad4d6ddSJeff Bonwick 	while (list_head(&spa->spa_state_dirty_list) != NULL) {
62558ad4d6ddSJeff Bonwick 		/*
62568ad4d6ddSJeff Bonwick 		 * We need the write lock here because, for aux vdevs,
62578ad4d6ddSJeff Bonwick 		 * calling vdev_config_dirty() modifies sav_config.
62588ad4d6ddSJeff Bonwick 		 * This is ugly and will become unnecessary when we
62598ad4d6ddSJeff Bonwick 		 * eliminate the aux vdev wart by integrating all vdevs
62608ad4d6ddSJeff Bonwick 		 * into the root vdev tree.
62618ad4d6ddSJeff Bonwick 		 */
62628ad4d6ddSJeff Bonwick 		spa_config_exit(spa, SCL_CONFIG | SCL_STATE, FTAG);
62638ad4d6ddSJeff Bonwick 		spa_config_enter(spa, SCL_CONFIG | SCL_STATE, FTAG, RW_WRITER);
6264e14bb325SJeff Bonwick 		while ((vd = list_head(&spa->spa_state_dirty_list)) != NULL) {
6265e14bb325SJeff Bonwick 			vdev_state_clean(vd);
6266e14bb325SJeff Bonwick 			vdev_config_dirty(vd);
6267e14bb325SJeff Bonwick 		}
62688ad4d6ddSJeff Bonwick 		spa_config_exit(spa, SCL_CONFIG | SCL_STATE, FTAG);
62698ad4d6ddSJeff Bonwick 		spa_config_enter(spa, SCL_CONFIG | SCL_STATE, FTAG, RW_READER);
62708ad4d6ddSJeff Bonwick 	}
6271e14bb325SJeff Bonwick 	spa_config_exit(spa, SCL_STATE, FTAG);
6272e14bb325SJeff Bonwick 
627399653d4eSeschrock 	tx = dmu_tx_create_assigned(dp, txg);
627499653d4eSeschrock 
6275283b8460SGeorge.Wilson 	spa->spa_sync_starttime = gethrtime();
6276283b8460SGeorge.Wilson 	VERIFY(cyclic_reprogram(spa->spa_deadman_cycid,
6277283b8460SGeorge.Wilson 	    spa->spa_sync_starttime + spa->spa_deadman_synctime));
6278283b8460SGeorge.Wilson 
627999653d4eSeschrock 	/*
6280e7437265Sahrens 	 * If we are upgrading to SPA_VERSION_RAIDZ_DEFLATE this txg,
628199653d4eSeschrock 	 * set spa_deflate if we have no raid-z vdevs.
628299653d4eSeschrock 	 */
6283e7437265Sahrens 	if (spa->spa_ubsync.ub_version < SPA_VERSION_RAIDZ_DEFLATE &&
6284e7437265Sahrens 	    spa->spa_uberblock.ub_version >= SPA_VERSION_RAIDZ_DEFLATE) {
628599653d4eSeschrock 		int i;
628699653d4eSeschrock 
628799653d4eSeschrock 		for (i = 0; i < rvd->vdev_children; i++) {
628899653d4eSeschrock 			vd = rvd->vdev_child[i];
628999653d4eSeschrock 			if (vd->vdev_deflate_ratio != SPA_MINBLOCKSIZE)
629099653d4eSeschrock 				break;
629199653d4eSeschrock 		}
629299653d4eSeschrock 		if (i == rvd->vdev_children) {
629399653d4eSeschrock 			spa->spa_deflate = TRUE;
629499653d4eSeschrock 			VERIFY(0 == zap_add(spa->spa_meta_objset,
629599653d4eSeschrock 			    DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_DEFLATE,
629699653d4eSeschrock 			    sizeof (uint64_t), 1, &spa->spa_deflate, tx));
629799653d4eSeschrock 		}
629899653d4eSeschrock 	}
629999653d4eSeschrock 
6300fa9e4066Sahrens 	/*
6301fa9e4066Sahrens 	 * Iterate to convergence.
6302fa9e4066Sahrens 	 */
6303fa9e4066Sahrens 	do {
6304b24ab676SJeff Bonwick 		int pass = ++spa->spa_sync_pass;
6305fa9e4066Sahrens 
6306fa9e4066Sahrens 		spa_sync_config_object(spa, tx);
6307fa94a07fSbrendan 		spa_sync_aux_dev(spa, &spa->spa_spares, tx,
6308fa94a07fSbrendan 		    ZPOOL_CONFIG_SPARES, DMU_POOL_SPARES);
6309fa94a07fSbrendan 		spa_sync_aux_dev(spa, &spa->spa_l2cache, tx,
6310fa94a07fSbrendan 		    ZPOOL_CONFIG_L2CACHE, DMU_POOL_L2CACHE);
6311ea8dc4b6Seschrock 		spa_errlog_sync(spa, txg);
6312fa9e4066Sahrens 		dsl_pool_sync(dp, txg);
6313fa9e4066Sahrens 
631401f55e48SGeorge Wilson 		if (pass < zfs_sync_pass_deferred_free) {
631569962b56SMatthew Ahrens 			spa_sync_frees(spa, free_bpl, tx);
6316b24ab676SJeff Bonwick 		} else {
6317231aab85SMatthew Ahrens 			/*
6318231aab85SMatthew Ahrens 			 * We can not defer frees in pass 1, because
6319231aab85SMatthew Ahrens 			 * we sync the deferred frees later in pass 1.
6320231aab85SMatthew Ahrens 			 */
6321231aab85SMatthew Ahrens 			ASSERT3U(pass, >, 1);
6322cde58dbcSMatthew Ahrens 			bplist_iterate(free_bpl, bpobj_enqueue_cb,
632369962b56SMatthew Ahrens 			    &spa->spa_deferred_bpobj, tx);
6324fa9e4066Sahrens 		}
6325fa9e4066Sahrens 
6326b24ab676SJeff Bonwick 		ddt_sync(spa, txg);
63273f9d6ad7SLin Ling 		dsl_scan_sync(dp, tx);
6328afee20e4SGeorge Wilson 
6329b24ab676SJeff Bonwick 		while (vd = txg_list_remove(&spa->spa_vdev_txg_list, txg))
6330b24ab676SJeff Bonwick 			vdev_sync(vd, txg);
6331fa9e4066Sahrens 
6332231aab85SMatthew Ahrens 		if (pass == 1) {
6333cde58dbcSMatthew Ahrens 			spa_sync_upgrades(spa, tx);
6334231aab85SMatthew Ahrens 			ASSERT3U(txg, >=,
6335231aab85SMatthew Ahrens 			    spa->spa_uberblock.ub_rootbp.blk_birth);
6336231aab85SMatthew Ahrens 			/*
6337231aab85SMatthew Ahrens 			 * Note: We need to check if the MOS is dirty
6338231aab85SMatthew Ahrens 			 * because we could have marked the MOS dirty
6339231aab85SMatthew Ahrens 			 * without updating the uberblock (e.g. if we
6340231aab85SMatthew Ahrens 			 * have sync tasks but no dirty user data).  We
6341231aab85SMatthew Ahrens 			 * need to check the uberblock's rootbp because
6342231aab85SMatthew Ahrens 			 * it is updated if we have synced out dirty
6343231aab85SMatthew Ahrens 			 * data (though in this case the MOS will most
6344231aab85SMatthew Ahrens 			 * likely also be dirty due to second order
6345231aab85SMatthew Ahrens 			 * effects, we don't want to rely on that here).
6346231aab85SMatthew Ahrens 			 */
6347231aab85SMatthew Ahrens 			if (spa->spa_uberblock.ub_rootbp.blk_birth < txg &&
6348231aab85SMatthew Ahrens 			    !dmu_objset_is_dirty(mos, txg)) {
6349231aab85SMatthew Ahrens 				/*
6350231aab85SMatthew Ahrens 				 * Nothing changed on the first pass,
6351231aab85SMatthew Ahrens 				 * therefore this TXG is a no-op.  Avoid
6352231aab85SMatthew Ahrens 				 * syncing deferred frees, so that we
6353231aab85SMatthew Ahrens 				 * can keep this TXG as a no-op.
6354231aab85SMatthew Ahrens 				 */
6355231aab85SMatthew Ahrens 				ASSERT(txg_list_empty(&dp->dp_dirty_datasets,
6356231aab85SMatthew Ahrens 				    txg));
6357231aab85SMatthew Ahrens 				ASSERT(txg_list_empty(&dp->dp_dirty_dirs, txg));
6358231aab85SMatthew Ahrens 				ASSERT(txg_list_empty(&dp->dp_sync_tasks, txg));
6359231aab85SMatthew Ahrens 				break;
6360231aab85SMatthew Ahrens 			}
6361231aab85SMatthew Ahrens 			spa_sync_deferred_frees(spa, tx);
6362231aab85SMatthew Ahrens 		}
6363cde58dbcSMatthew Ahrens 
6364b24ab676SJeff Bonwick 	} while (dmu_objset_is_dirty(mos, txg));
6365b24ab676SJeff Bonwick 
6366fa9e4066Sahrens 	/*
6367fa9e4066Sahrens 	 * Rewrite the vdev configuration (which includes the uberblock)
6368fa9e4066Sahrens 	 * to commit the transaction group.
63690373e76bSbonwick 	 *
637017f17c2dSbonwick 	 * If there are no dirty vdevs, we sync the uberblock to a few
637117f17c2dSbonwick 	 * random top-level vdevs that are known to be visible in the
6372e14bb325SJeff Bonwick 	 * config cache (see spa_vdev_add() for a complete description).
6373e14bb325SJeff Bonwick 	 * If there *are* dirty vdevs, sync the uberblock to all vdevs.
6374fa9e4066Sahrens 	 */
6375e14bb325SJeff Bonwick 	for (;;) {
6376e14bb325SJeff Bonwick 		/*
6377e14bb325SJeff Bonwick 		 * We hold SCL_STATE to prevent vdev open/close/etc.
6378e14bb325SJeff Bonwick 		 * while we're attempting to write the vdev labels.
6379e14bb325SJeff Bonwick 		 */
6380e14bb325SJeff Bonwick 		spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
6381e14bb325SJeff Bonwick 
6382e14bb325SJeff Bonwick 		if (list_is_empty(&spa->spa_config_dirty_list)) {
638321bf64a7Sgw25295 			vdev_t *svd[SPA_DVAS_PER_BP];
638421bf64a7Sgw25295 			int svdcount = 0;
63850373e76bSbonwick 			int children = rvd->vdev_children;
63860373e76bSbonwick 			int c0 = spa_get_random(children);
63870373e76bSbonwick 
6388573ca77eSGeorge Wilson 			for (int c = 0; c < children; c++) {
63890373e76bSbonwick 				vd = rvd->vdev_child[(c0 + c) % children];
639017f17c2dSbonwick 				if (vd->vdev_ms_array == 0 || vd->vdev_islog)
63910373e76bSbonwick 					continue;
639217f17c2dSbonwick 				svd[svdcount++] = vd;
639317f17c2dSbonwick 				if (svdcount == SPA_DVAS_PER_BP)
63940373e76bSbonwick 					break;
63950373e76bSbonwick 			}
63968956713aSEric Schrock 			error = vdev_config_sync(svd, svdcount, txg, B_FALSE);
63978956713aSEric Schrock 			if (error != 0)
63988956713aSEric Schrock 				error = vdev_config_sync(svd, svdcount, txg,
63998956713aSEric Schrock 				    B_TRUE);
640021bf64a7Sgw25295 		} else {
6401e14bb325SJeff Bonwick 			error = vdev_config_sync(rvd->vdev_child,
64028956713aSEric Schrock 			    rvd->vdev_children, txg, B_FALSE);
64038956713aSEric Schrock 			if (error != 0)
64048956713aSEric Schrock 				error = vdev_config_sync(rvd->vdev_child,
64058956713aSEric Schrock 				    rvd->vdev_children, txg, B_TRUE);
6406e14bb325SJeff Bonwick 		}
6407e14bb325SJeff Bonwick 
6408dfbb9432SGeorge Wilson 		if (error == 0)
6409dfbb9432SGeorge Wilson 			spa->spa_last_synced_guid = rvd->vdev_guid;
6410dfbb9432SGeorge Wilson 
6411e14bb325SJeff Bonwick 		spa_config_exit(spa, SCL_STATE, FTAG);
6412e14bb325SJeff Bonwick 
6413e14bb325SJeff Bonwick 		if (error == 0)
6414e14bb325SJeff Bonwick 			break;
6415e14bb325SJeff Bonwick 		zio_suspend(spa, NULL);
6416e14bb325SJeff Bonwick 		zio_resume_wait(spa);
64170373e76bSbonwick 	}
641899653d4eSeschrock 	dmu_tx_commit(tx);
641999653d4eSeschrock 
6420283b8460SGeorge.Wilson 	VERIFY(cyclic_reprogram(spa->spa_deadman_cycid, CY_INFINITY));
6421283b8460SGeorge.Wilson 
64220373e76bSbonwick 	/*
64230373e76bSbonwick 	 * Clear the dirty config list.
64240373e76bSbonwick 	 */
6425e14bb325SJeff Bonwick 	while ((vd = list_head(&spa->spa_config_dirty_list)) != NULL)
64260373e76bSbonwick 		vdev_config_clean(vd);
64270373e76bSbonwick 
64280373e76bSbonwick 	/*
64290373e76bSbonwick 	 * Now that the new config has synced transactionally,
64300373e76bSbonwick 	 * let it become visible to the config cache.
64310373e76bSbonwick 	 */
64320373e76bSbonwick 	if (spa->spa_config_syncing != NULL) {
64330373e76bSbonwick 		spa_config_set(spa, spa->spa_config_syncing);
64340373e76bSbonwick 		spa->spa_config_txg = txg;
64350373e76bSbonwick 		spa->spa_config_syncing = NULL;
64360373e76bSbonwick 	}
6437fa9e4066Sahrens 
6438fa9e4066Sahrens 	spa->spa_ubsync = spa->spa_uberblock;
6439fa9e4066Sahrens 
6440b24ab676SJeff Bonwick 	dsl_pool_sync_done(dp, txg);
6441fa9e4066Sahrens 
6442fa9e4066Sahrens 	/*
6443fa9e4066Sahrens 	 * Update usable space statistics.
6444fa9e4066Sahrens 	 */
6445fa9e4066Sahrens 	while (vd = txg_list_remove(&spa->spa_vdev_txg_list, TXG_CLEAN(txg)))
6446fa9e4066Sahrens 		vdev_sync_done(vd, txg);
6447fa9e4066Sahrens 
6448485bbbf5SGeorge Wilson 	spa_update_dspace(spa);
6449485bbbf5SGeorge Wilson 
6450fa9e4066Sahrens 	/*
6451fa9e4066Sahrens 	 * It had better be the case that we didn't dirty anything
645299653d4eSeschrock 	 * since vdev_config_sync().
6453fa9e4066Sahrens 	 */
6454fa9e4066Sahrens 	ASSERT(txg_list_empty(&dp->dp_dirty_datasets, txg));
6455fa9e4066Sahrens 	ASSERT(txg_list_empty(&dp->dp_dirty_dirs, txg));
6456fa9e4066Sahrens 	ASSERT(txg_list_empty(&spa->spa_vdev_txg_list, txg));
6457b24ab676SJeff Bonwick 
6458b24ab676SJeff Bonwick 	spa->spa_sync_pass = 0;
6459fa9e4066Sahrens 
6460e14bb325SJeff Bonwick 	spa_config_exit(spa, SCL_CONFIG, FTAG);
6461ea8dc4b6Seschrock 
6462468c413aSTim Haley 	spa_handle_ignored_writes(spa);
6463468c413aSTim Haley 
6464ea8dc4b6Seschrock 	/*
6465ea8dc4b6Seschrock 	 * If any async tasks have been requested, kick them off.
6466ea8dc4b6Seschrock 	 */
6467ea8dc4b6Seschrock 	spa_async_dispatch(spa);
6468fa9e4066Sahrens }
6469fa9e4066Sahrens 
6470fa9e4066Sahrens /*
6471fa9e4066Sahrens  * Sync all pools.  We don't want to hold the namespace lock across these
6472fa9e4066Sahrens  * operations, so we take a reference on the spa_t and drop the lock during the
6473fa9e4066Sahrens  * sync.
6474fa9e4066Sahrens  */
6475fa9e4066Sahrens void
spa_sync_allpools(void)6476fa9e4066Sahrens spa_sync_allpools(void)
6477fa9e4066Sahrens {
6478fa9e4066Sahrens 	spa_t *spa = NULL;
6479fa9e4066Sahrens 	mutex_enter(&spa_namespace_lock);
6480fa9e4066Sahrens 	while ((spa = spa_next(spa)) != NULL) {
6481f9af39baSGeorge Wilson 		if (spa_state(spa) != POOL_STATE_ACTIVE ||
6482f9af39baSGeorge Wilson 		    !spa_writeable(spa) || spa_suspended(spa))
6483fa9e4066Sahrens 			continue;
6484fa9e4066Sahrens 		spa_open_ref(spa, FTAG);
6485fa9e4066Sahrens 		mutex_exit(&spa_namespace_lock);
6486fa9e4066Sahrens 		txg_wait_synced(spa_get_dsl(spa), 0);
6487fa9e4066Sahrens 		mutex_enter(&spa_namespace_lock);
6488fa9e4066Sahrens 		spa_close(spa, FTAG);
6489fa9e4066Sahrens 	}
6490fa9e4066Sahrens 	mutex_exit(&spa_namespace_lock);
6491fa9e4066Sahrens }
6492fa9e4066Sahrens 
6493fa9e4066Sahrens /*
6494fa9e4066Sahrens  * ==========================================================================
6495fa9e4066Sahrens  * Miscellaneous routines
6496fa9e4066Sahrens  * ==========================================================================
6497fa9e4066Sahrens  */
6498fa9e4066Sahrens 
6499fa9e4066Sahrens /*
6500fa9e4066Sahrens  * Remove all pools in the system.
6501fa9e4066Sahrens  */
6502fa9e4066Sahrens void
spa_evict_all(void)6503fa9e4066Sahrens spa_evict_all(void)
6504fa9e4066Sahrens {
6505fa9e4066Sahrens 	spa_t *spa;
6506fa9e4066Sahrens 
6507fa9e4066Sahrens 	/*
6508fa9e4066Sahrens 	 * Remove all cached state.  All pools should be closed now,
6509fa9e4066Sahrens 	 * so every spa in the AVL tree should be unreferenced.
6510fa9e4066Sahrens 	 */
6511fa9e4066Sahrens 	mutex_enter(&spa_namespace_lock);
6512fa9e4066Sahrens 	while ((spa = spa_next(NULL)) != NULL) {
6513fa9e4066Sahrens 		/*
6514ea8dc4b6Seschrock 		 * Stop async tasks.  The async thread may need to detach
6515ea8dc4b6Seschrock 		 * a device that's been replaced, which requires grabbing
6516ea8dc4b6Seschrock 		 * spa_namespace_lock, so we must drop it here.
6517fa9e4066Sahrens 		 */
6518fa9e4066Sahrens 		spa_open_ref(spa, FTAG);
6519fa9e4066Sahrens 		mutex_exit(&spa_namespace_lock);
6520ea8dc4b6Seschrock 		spa_async_suspend(spa);
6521fa9e4066Sahrens 		mutex_enter(&spa_namespace_lock);
6522fa9e4066Sahrens 		spa_close(spa, FTAG);
6523fa9e4066Sahrens 
6524fa9e4066Sahrens 		if (spa->spa_state != POOL_STATE_UNINITIALIZED) {
6525fa9e4066Sahrens 			spa_unload(spa);
6526fa9e4066Sahrens 			spa_deactivate(spa);
6527fa9e4066Sahrens 		}
6528fa9e4066Sahrens 		spa_remove(spa);
6529fa9e4066Sahrens 	}
6530fa9e4066Sahrens 	mutex_exit(&spa_namespace_lock);
6531fa9e4066Sahrens }
6532ea8dc4b6Seschrock 
6533ea8dc4b6Seschrock vdev_t *
spa_lookup_by_guid(spa_t * spa,uint64_t guid,boolean_t aux)65346809eb4eSEric Schrock spa_lookup_by_guid(spa_t *spa, uint64_t guid, boolean_t aux)
6535ea8dc4b6Seschrock {
6536c5904d13Seschrock 	vdev_t *vd;
6537c5904d13Seschrock 	int i;
6538c5904d13Seschrock 
6539c5904d13Seschrock 	if ((vd = vdev_lookup_by_guid(spa->spa_root_vdev, guid)) != NULL)
6540c5904d13Seschrock 		return (vd);
6541c5904d13Seschrock 
65426809eb4eSEric Schrock 	if (aux) {
6543c5904d13Seschrock 		for (i = 0; i < spa->spa_l2cache.sav_count; i++) {
6544c5904d13Seschrock 			vd = spa->spa_l2cache.sav_vdevs[i];
6545c5904d13Seschrock 			if (vd->vdev_guid == guid)
6546c5904d13Seschrock 				return (vd);
6547c5904d13Seschrock 		}
65486809eb4eSEric Schrock 
65496809eb4eSEric Schrock 		for (i = 0; i < spa->spa_spares.sav_count; i++) {
65506809eb4eSEric Schrock 			vd = spa->spa_spares.sav_vdevs[i];
65516809eb4eSEric Schrock 			if (vd->vdev_guid == guid)
65526809eb4eSEric Schrock 				return (vd);
65536809eb4eSEric Schrock 		}
6554c5904d13Seschrock 	}
6555c5904d13Seschrock 
6556c5904d13Seschrock 	return (NULL);
6557ea8dc4b6Seschrock }
6558eaca9bbdSeschrock 
6559eaca9bbdSeschrock void
spa_upgrade(spa_t * spa,uint64_t version)6560990b4856Slling spa_upgrade(spa_t *spa, uint64_t version)
6561eaca9bbdSeschrock {
6562f9af39baSGeorge Wilson 	ASSERT(spa_writeable(spa));
6563f9af39baSGeorge Wilson 
6564e14bb325SJeff Bonwick 	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
6565eaca9bbdSeschrock 
6566eaca9bbdSeschrock 	/*
6567eaca9bbdSeschrock 	 * This should only be called for a non-faulted pool, and since a
6568eaca9bbdSeschrock 	 * future version would result in an unopenable pool, this shouldn't be
6569eaca9bbdSeschrock 	 * possible.
6570eaca9bbdSeschrock 	 */
657162eae887SRichard Yao 	ASSERT(SPA_VERSION_IS_SUPPORTED(spa->spa_uberblock.ub_version));
65725d7b4d43SMatthew Ahrens 	ASSERT3U(version, >=, spa->spa_uberblock.ub_version);
6573eaca9bbdSeschrock 
6574990b4856Slling 	spa->spa_uberblock.ub_version = version;
6575eaca9bbdSeschrock 	vdev_config_dirty(spa->spa_root_vdev);
6576eaca9bbdSeschrock 
6577e14bb325SJeff Bonwick 	spa_config_exit(spa, SCL_ALL, FTAG);
657899653d4eSeschrock 
657999653d4eSeschrock 	txg_wait_synced(spa_get_dsl(spa), 0);
658099653d4eSeschrock }
658199653d4eSeschrock 
658299653d4eSeschrock boolean_t
spa_has_spare(spa_t * spa,uint64_t guid)658399653d4eSeschrock spa_has_spare(spa_t *spa, uint64_t guid)
658499653d4eSeschrock {
658599653d4eSeschrock 	int i;
658639c23413Seschrock 	uint64_t spareguid;
6587fa94a07fSbrendan 	spa_aux_vdev_t *sav = &spa->spa_spares;
658899653d4eSeschrock 
6589fa94a07fSbrendan 	for (i = 0; i < sav->sav_count; i++)
6590fa94a07fSbrendan 		if (sav->sav_vdevs[i]->vdev_guid == guid)
659199653d4eSeschrock 			return (B_TRUE);
659299653d4eSeschrock 
6593fa94a07fSbrendan 	for (i = 0; i < sav->sav_npending; i++) {
6594fa94a07fSbrendan 		if (nvlist_lookup_uint64(sav->sav_pending[i], ZPOOL_CONFIG_GUID,
6595fa94a07fSbrendan 		    &spareguid) == 0 && spareguid == guid)
659639c23413Seschrock 			return (B_TRUE);
659739c23413Seschrock 	}
659839c23413Seschrock 
659999653d4eSeschrock 	return (B_FALSE);
6600eaca9bbdSeschrock }
6601b1b8ab34Slling 
66023d7072f8Seschrock /*
660389a89ebfSlling  * Check if a pool has an active shared spare device.
660489a89ebfSlling  * Note: reference count of an active spare is 2, as a spare and as a replace
660589a89ebfSlling  */
660689a89ebfSlling static boolean_t
spa_has_active_shared_spare(spa_t * spa)660789a89ebfSlling spa_has_active_shared_spare(spa_t *spa)
660889a89ebfSlling {
660989a89ebfSlling 	int i, refcnt;
661089a89ebfSlling 	uint64_t pool;
661189a89ebfSlling 	spa_aux_vdev_t *sav = &spa->spa_spares;
661289a89ebfSlling 
661389a89ebfSlling 	for (i = 0; i < sav->sav_count; i++) {
661489a89ebfSlling 		if (spa_spare_exists(sav->sav_vdevs[i]->vdev_guid, &pool,
661589a89ebfSlling 		    &refcnt) && pool != 0ULL && pool == spa_guid(spa) &&
661689a89ebfSlling 		    refcnt > 2)
661789a89ebfSlling 			return (B_TRUE);
661889a89ebfSlling 	}
661989a89ebfSlling 
662089a89ebfSlling 	return (B_FALSE);
662189a89ebfSlling }
662289a89ebfSlling 
662389a89ebfSlling /*
66243d7072f8Seschrock  * Post a sysevent corresponding to the given event.  The 'name' must be one of
66253d7072f8Seschrock  * the event definitions in sys/sysevent/eventdefs.h.  The payload will be
66263d7072f8Seschrock  * filled in from the spa and (optionally) the vdev.  This doesn't do anything
66273d7072f8Seschrock  * in the userland libzpool, as we don't want consumers to misinterpret ztest
66283d7072f8Seschrock  * or zdb as real changes.
66293d7072f8Seschrock  */
66303d7072f8Seschrock void
spa_event_notify(spa_t * spa,vdev_t * vd,const char * name)66313d7072f8Seschrock spa_event_notify(spa_t *spa, vdev_t *vd, const char *name)
66323d7072f8Seschrock {
66333d7072f8Seschrock #ifdef _KERNEL
66343d7072f8Seschrock 	sysevent_t		*ev;
66353d7072f8Seschrock 	sysevent_attr_list_t	*attr = NULL;
66363d7072f8Seschrock 	sysevent_value_t	value;
66373d7072f8Seschrock 	sysevent_id_t		eid;
66383d7072f8Seschrock 
66393d7072f8Seschrock 	ev = sysevent_alloc(EC_ZFS, (char *)name, SUNW_KERN_PUB "zfs",
66403d7072f8Seschrock 	    SE_SLEEP);
66413d7072f8Seschrock 
66423d7072f8Seschrock 	value.value_type = SE_DATA_TYPE_STRING;
66433d7072f8Seschrock 	value.value.sv_string = spa_name(spa);
66443d7072f8Seschrock 	if (sysevent_add_attr(&attr, ZFS_EV_POOL_NAME, &value, SE_SLEEP) != 0)
66453d7072f8Seschrock 		goto done;
66463d7072f8Seschrock 
66473d7072f8Seschrock 	value.value_type = SE_DATA_TYPE_UINT64;
66483d7072f8Seschrock 	value.value.sv_uint64 = spa_guid(spa);
66493d7072f8Seschrock 	if (sysevent_add_attr(&attr, ZFS_EV_POOL_GUID, &value, SE_SLEEP) != 0)
66503d7072f8Seschrock 		goto done;
66513d7072f8Seschrock 
66523d7072f8Seschrock 	if (vd) {
66533d7072f8Seschrock 		value.value_type = SE_DATA_TYPE_UINT64;
66543d7072f8Seschrock 		value.value.sv_uint64 = vd->vdev_guid;
66553d7072f8Seschrock 		if (sysevent_add_attr(&attr, ZFS_EV_VDEV_GUID, &value,
66563d7072f8Seschrock 		    SE_SLEEP) != 0)
66573d7072f8Seschrock 			goto done;
66583d7072f8Seschrock 
66593d7072f8Seschrock 		if (vd->vdev_path) {
66603d7072f8Seschrock 			value.value_type = SE_DATA_TYPE_STRING;
66613d7072f8Seschrock 			value.value.sv_string = vd->vdev_path;
66623d7072f8Seschrock 			if (sysevent_add_attr(&attr, ZFS_EV_VDEV_PATH,
66633d7072f8Seschrock 			    &value, SE_SLEEP) != 0)
66643d7072f8Seschrock 				goto done;
66653d7072f8Seschrock 		}
66663d7072f8Seschrock 	}
66673d7072f8Seschrock 
6668b01c3b58Seschrock 	if (sysevent_attach_attributes(ev, attr) != 0)
6669b01c3b58Seschrock 		goto done;
6670b01c3b58Seschrock 	attr = NULL;
6671b01c3b58Seschrock 
66723d7072f8Seschrock 	(void) log_sysevent(ev, SE_SLEEP, &eid);
66733d7072f8Seschrock 
66743d7072f8Seschrock done:
66753d7072f8Seschrock 	if (attr)
66763d7072f8Seschrock 		sysevent_free_attr(attr);
66773d7072f8Seschrock 	sysevent_free(ev);
66783d7072f8Seschrock #endif
66793d7072f8Seschrock }
6680