spa.c revision 240868
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22/*
23 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Copyright (c) 2012 by Delphix. All rights reserved.
25 */
26
27/*
28 * This file contains all the routines used when modifying on-disk SPA state.
29 * This includes opening, importing, destroying, exporting a pool, and syncing a
30 * pool.
31 */
32
33#include <sys/zfs_context.h>
34#include <sys/fm/fs/zfs.h>
35#include <sys/spa_impl.h>
36#include <sys/zio.h>
37#include <sys/zio_checksum.h>
38#include <sys/dmu.h>
39#include <sys/dmu_tx.h>
40#include <sys/zap.h>
41#include <sys/zil.h>
42#include <sys/ddt.h>
43#include <sys/vdev_impl.h>
44#include <sys/metaslab.h>
45#include <sys/metaslab_impl.h>
46#include <sys/uberblock_impl.h>
47#include <sys/txg.h>
48#include <sys/avl.h>
49#include <sys/dmu_traverse.h>
50#include <sys/dmu_objset.h>
51#include <sys/unique.h>
52#include <sys/dsl_pool.h>
53#include <sys/dsl_dataset.h>
54#include <sys/dsl_dir.h>
55#include <sys/dsl_prop.h>
56#include <sys/dsl_synctask.h>
57#include <sys/fs/zfs.h>
58#include <sys/arc.h>
59#include <sys/callb.h>
60#include <sys/spa_boot.h>
61#include <sys/zfs_ioctl.h>
62#include <sys/dsl_scan.h>
63#include <sys/zfeature.h>
64#include <sys/zvol.h>
65#include <sys/trim_map.h>
66
67#ifdef	_KERNEL
68#include <sys/callb.h>
69#include <sys/cpupart.h>
70#include <sys/zone.h>
71#endif	/* _KERNEL */
72
73#include "zfs_prop.h"
74#include "zfs_comutil.h"
75
76/* Check hostid on import? */
77static int check_hostid = 1;
78
79SYSCTL_DECL(_vfs_zfs);
80TUNABLE_INT("vfs.zfs.check_hostid", &check_hostid);
81SYSCTL_INT(_vfs_zfs, OID_AUTO, check_hostid, CTLFLAG_RW, &check_hostid, 0,
82    "Check hostid on import?");
83
84typedef enum zti_modes {
85	zti_mode_fixed,			/* value is # of threads (min 1) */
86	zti_mode_online_percent,	/* value is % of online CPUs */
87	zti_mode_batch,			/* cpu-intensive; value is ignored */
88	zti_mode_null,			/* don't create a taskq */
89	zti_nmodes
90} zti_modes_t;
91
92#define	ZTI_FIX(n)	{ zti_mode_fixed, (n) }
93#define	ZTI_PCT(n)	{ zti_mode_online_percent, (n) }
94#define	ZTI_BATCH	{ zti_mode_batch, 0 }
95#define	ZTI_NULL	{ zti_mode_null, 0 }
96
97#define	ZTI_ONE		ZTI_FIX(1)
98
99typedef struct zio_taskq_info {
100	enum zti_modes zti_mode;
101	uint_t zti_value;
102} zio_taskq_info_t;
103
104static const char *const zio_taskq_types[ZIO_TASKQ_TYPES] = {
105	"issue", "issue_high", "intr", "intr_high"
106};
107
108/*
109 * Define the taskq threads for the following I/O types:
110 * 	NULL, READ, WRITE, FREE, CLAIM, and IOCTL
111 */
112const zio_taskq_info_t zio_taskqs[ZIO_TYPES][ZIO_TASKQ_TYPES] = {
113	/* ISSUE	ISSUE_HIGH	INTR		INTR_HIGH */
114	{ ZTI_ONE,	ZTI_NULL,	ZTI_ONE,	ZTI_NULL },
115	{ ZTI_FIX(8),	ZTI_NULL,	ZTI_BATCH,	ZTI_NULL },
116	{ ZTI_BATCH,	ZTI_FIX(5),	ZTI_FIX(8),	ZTI_FIX(5) },
117	{ ZTI_FIX(100),	ZTI_NULL,	ZTI_ONE,	ZTI_NULL },
118	{ ZTI_ONE,	ZTI_NULL,	ZTI_ONE,	ZTI_NULL },
119	{ ZTI_ONE,	ZTI_NULL,	ZTI_ONE,	ZTI_NULL },
120};
121
122static dsl_syncfunc_t spa_sync_version;
123static dsl_syncfunc_t spa_sync_props;
124static dsl_checkfunc_t spa_change_guid_check;
125static dsl_syncfunc_t spa_change_guid_sync;
126static boolean_t spa_has_active_shared_spare(spa_t *spa);
127static int spa_load_impl(spa_t *spa, uint64_t, nvlist_t *config,
128    spa_load_state_t state, spa_import_type_t type, boolean_t mosconfig,
129    char **ereport);
130static void spa_vdev_resilver_done(spa_t *spa);
131
132uint_t		zio_taskq_batch_pct = 100;	/* 1 thread per cpu in pset */
133#ifdef PSRSET_BIND
134id_t		zio_taskq_psrset_bind = PS_NONE;
135#endif
136#ifdef SYSDC
137boolean_t	zio_taskq_sysdc = B_TRUE;	/* use SDC scheduling class */
138#endif
139uint_t		zio_taskq_basedc = 80;		/* base duty cycle */
140
141boolean_t	spa_create_process = B_TRUE;	/* no process ==> no sysdc */
142
143/*
144 * This (illegal) pool name is used when temporarily importing a spa_t in order
145 * to get the vdev stats associated with the imported devices.
146 */
147#define	TRYIMPORT_NAME	"$import"
148
149/*
150 * ==========================================================================
151 * SPA properties routines
152 * ==========================================================================
153 */
154
155/*
156 * Add a (source=src, propname=propval) list to an nvlist.
157 */
158static void
159spa_prop_add_list(nvlist_t *nvl, zpool_prop_t prop, char *strval,
160    uint64_t intval, zprop_source_t src)
161{
162	const char *propname = zpool_prop_to_name(prop);
163	nvlist_t *propval;
164
165	VERIFY(nvlist_alloc(&propval, NV_UNIQUE_NAME, KM_SLEEP) == 0);
166	VERIFY(nvlist_add_uint64(propval, ZPROP_SOURCE, src) == 0);
167
168	if (strval != NULL)
169		VERIFY(nvlist_add_string(propval, ZPROP_VALUE, strval) == 0);
170	else
171		VERIFY(nvlist_add_uint64(propval, ZPROP_VALUE, intval) == 0);
172
173	VERIFY(nvlist_add_nvlist(nvl, propname, propval) == 0);
174	nvlist_free(propval);
175}
176
177/*
178 * Get property values from the spa configuration.
179 */
180static void
181spa_prop_get_config(spa_t *spa, nvlist_t **nvp)
182{
183	vdev_t *rvd = spa->spa_root_vdev;
184	dsl_pool_t *pool = spa->spa_dsl_pool;
185	uint64_t size;
186	uint64_t alloc;
187	uint64_t space;
188	uint64_t cap, version;
189	zprop_source_t src = ZPROP_SRC_NONE;
190	spa_config_dirent_t *dp;
191
192	ASSERT(MUTEX_HELD(&spa->spa_props_lock));
193
194	if (rvd != NULL) {
195		alloc = metaslab_class_get_alloc(spa_normal_class(spa));
196		size = metaslab_class_get_space(spa_normal_class(spa));
197		spa_prop_add_list(*nvp, ZPOOL_PROP_NAME, spa_name(spa), 0, src);
198		spa_prop_add_list(*nvp, ZPOOL_PROP_SIZE, NULL, size, src);
199		spa_prop_add_list(*nvp, ZPOOL_PROP_ALLOCATED, NULL, alloc, src);
200		spa_prop_add_list(*nvp, ZPOOL_PROP_FREE, NULL,
201		    size - alloc, src);
202
203		space = 0;
204		for (int c = 0; c < rvd->vdev_children; c++) {
205			vdev_t *tvd = rvd->vdev_child[c];
206			space += tvd->vdev_max_asize - tvd->vdev_asize;
207		}
208		spa_prop_add_list(*nvp, ZPOOL_PROP_EXPANDSZ, NULL, space,
209		    src);
210
211		spa_prop_add_list(*nvp, ZPOOL_PROP_READONLY, NULL,
212		    (spa_mode(spa) == FREAD), src);
213
214		cap = (size == 0) ? 0 : (alloc * 100 / size);
215		spa_prop_add_list(*nvp, ZPOOL_PROP_CAPACITY, NULL, cap, src);
216
217		spa_prop_add_list(*nvp, ZPOOL_PROP_DEDUPRATIO, NULL,
218		    ddt_get_pool_dedup_ratio(spa), src);
219
220		spa_prop_add_list(*nvp, ZPOOL_PROP_HEALTH, NULL,
221		    rvd->vdev_state, src);
222
223		version = spa_version(spa);
224		if (version == zpool_prop_default_numeric(ZPOOL_PROP_VERSION))
225			src = ZPROP_SRC_DEFAULT;
226		else
227			src = ZPROP_SRC_LOCAL;
228		spa_prop_add_list(*nvp, ZPOOL_PROP_VERSION, NULL, version, src);
229	}
230
231	if (pool != NULL) {
232		dsl_dir_t *freedir = pool->dp_free_dir;
233
234		/*
235		 * The $FREE directory was introduced in SPA_VERSION_DEADLISTS,
236		 * when opening pools before this version freedir will be NULL.
237		 */
238		if (freedir != NULL) {
239			spa_prop_add_list(*nvp, ZPOOL_PROP_FREEING, NULL,
240			    freedir->dd_phys->dd_used_bytes, src);
241		} else {
242			spa_prop_add_list(*nvp, ZPOOL_PROP_FREEING,
243			    NULL, 0, src);
244		}
245	}
246
247	spa_prop_add_list(*nvp, ZPOOL_PROP_GUID, NULL, spa_guid(spa), src);
248
249	if (spa->spa_comment != NULL) {
250		spa_prop_add_list(*nvp, ZPOOL_PROP_COMMENT, spa->spa_comment,
251		    0, ZPROP_SRC_LOCAL);
252	}
253
254	if (spa->spa_root != NULL)
255		spa_prop_add_list(*nvp, ZPOOL_PROP_ALTROOT, spa->spa_root,
256		    0, ZPROP_SRC_LOCAL);
257
258	if ((dp = list_head(&spa->spa_config_list)) != NULL) {
259		if (dp->scd_path == NULL) {
260			spa_prop_add_list(*nvp, ZPOOL_PROP_CACHEFILE,
261			    "none", 0, ZPROP_SRC_LOCAL);
262		} else if (strcmp(dp->scd_path, spa_config_path) != 0) {
263			spa_prop_add_list(*nvp, ZPOOL_PROP_CACHEFILE,
264			    dp->scd_path, 0, ZPROP_SRC_LOCAL);
265		}
266	}
267}
268
269/*
270 * Get zpool property values.
271 */
272int
273spa_prop_get(spa_t *spa, nvlist_t **nvp)
274{
275	objset_t *mos = spa->spa_meta_objset;
276	zap_cursor_t zc;
277	zap_attribute_t za;
278	int err;
279
280	VERIFY(nvlist_alloc(nvp, NV_UNIQUE_NAME, KM_SLEEP) == 0);
281
282	mutex_enter(&spa->spa_props_lock);
283
284	/*
285	 * Get properties from the spa config.
286	 */
287	spa_prop_get_config(spa, nvp);
288
289	/* If no pool property object, no more prop to get. */
290	if (mos == NULL || spa->spa_pool_props_object == 0) {
291		mutex_exit(&spa->spa_props_lock);
292		return (0);
293	}
294
295	/*
296	 * Get properties from the MOS pool property object.
297	 */
298	for (zap_cursor_init(&zc, mos, spa->spa_pool_props_object);
299	    (err = zap_cursor_retrieve(&zc, &za)) == 0;
300	    zap_cursor_advance(&zc)) {
301		uint64_t intval = 0;
302		char *strval = NULL;
303		zprop_source_t src = ZPROP_SRC_DEFAULT;
304		zpool_prop_t prop;
305
306		if ((prop = zpool_name_to_prop(za.za_name)) == ZPROP_INVAL)
307			continue;
308
309		switch (za.za_integer_length) {
310		case 8:
311			/* integer property */
312			if (za.za_first_integer !=
313			    zpool_prop_default_numeric(prop))
314				src = ZPROP_SRC_LOCAL;
315
316			if (prop == ZPOOL_PROP_BOOTFS) {
317				dsl_pool_t *dp;
318				dsl_dataset_t *ds = NULL;
319
320				dp = spa_get_dsl(spa);
321				rw_enter(&dp->dp_config_rwlock, RW_READER);
322				if (err = dsl_dataset_hold_obj(dp,
323				    za.za_first_integer, FTAG, &ds)) {
324					rw_exit(&dp->dp_config_rwlock);
325					break;
326				}
327
328				strval = kmem_alloc(
329				    MAXNAMELEN + strlen(MOS_DIR_NAME) + 1,
330				    KM_SLEEP);
331				dsl_dataset_name(ds, strval);
332				dsl_dataset_rele(ds, FTAG);
333				rw_exit(&dp->dp_config_rwlock);
334			} else {
335				strval = NULL;
336				intval = za.za_first_integer;
337			}
338
339			spa_prop_add_list(*nvp, prop, strval, intval, src);
340
341			if (strval != NULL)
342				kmem_free(strval,
343				    MAXNAMELEN + strlen(MOS_DIR_NAME) + 1);
344
345			break;
346
347		case 1:
348			/* string property */
349			strval = kmem_alloc(za.za_num_integers, KM_SLEEP);
350			err = zap_lookup(mos, spa->spa_pool_props_object,
351			    za.za_name, 1, za.za_num_integers, strval);
352			if (err) {
353				kmem_free(strval, za.za_num_integers);
354				break;
355			}
356			spa_prop_add_list(*nvp, prop, strval, 0, src);
357			kmem_free(strval, za.za_num_integers);
358			break;
359
360		default:
361			break;
362		}
363	}
364	zap_cursor_fini(&zc);
365	mutex_exit(&spa->spa_props_lock);
366out:
367	if (err && err != ENOENT) {
368		nvlist_free(*nvp);
369		*nvp = NULL;
370		return (err);
371	}
372
373	return (0);
374}
375
376/*
377 * Validate the given pool properties nvlist and modify the list
378 * for the property values to be set.
379 */
380static int
381spa_prop_validate(spa_t *spa, nvlist_t *props)
382{
383	nvpair_t *elem;
384	int error = 0, reset_bootfs = 0;
385	uint64_t objnum;
386	boolean_t has_feature = B_FALSE;
387
388	elem = NULL;
389	while ((elem = nvlist_next_nvpair(props, elem)) != NULL) {
390		uint64_t intval;
391		char *strval, *slash, *check, *fname;
392		const char *propname = nvpair_name(elem);
393		zpool_prop_t prop = zpool_name_to_prop(propname);
394
395		switch (prop) {
396		case ZPROP_INVAL:
397			if (!zpool_prop_feature(propname)) {
398				error = EINVAL;
399				break;
400			}
401
402			/*
403			 * Sanitize the input.
404			 */
405			if (nvpair_type(elem) != DATA_TYPE_UINT64) {
406				error = EINVAL;
407				break;
408			}
409
410			if (nvpair_value_uint64(elem, &intval) != 0) {
411				error = EINVAL;
412				break;
413			}
414
415			if (intval != 0) {
416				error = EINVAL;
417				break;
418			}
419
420			fname = strchr(propname, '@') + 1;
421			if (zfeature_lookup_name(fname, NULL) != 0) {
422				error = EINVAL;
423				break;
424			}
425
426			has_feature = B_TRUE;
427			break;
428
429		case ZPOOL_PROP_VERSION:
430			error = nvpair_value_uint64(elem, &intval);
431			if (!error &&
432			    (intval < spa_version(spa) ||
433			    intval > SPA_VERSION_BEFORE_FEATURES ||
434			    has_feature))
435				error = EINVAL;
436			break;
437
438		case ZPOOL_PROP_DELEGATION:
439		case ZPOOL_PROP_AUTOREPLACE:
440		case ZPOOL_PROP_LISTSNAPS:
441		case ZPOOL_PROP_AUTOEXPAND:
442			error = nvpair_value_uint64(elem, &intval);
443			if (!error && intval > 1)
444				error = EINVAL;
445			break;
446
447		case ZPOOL_PROP_BOOTFS:
448			/*
449			 * If the pool version is less than SPA_VERSION_BOOTFS,
450			 * or the pool is still being created (version == 0),
451			 * the bootfs property cannot be set.
452			 */
453			if (spa_version(spa) < SPA_VERSION_BOOTFS) {
454				error = ENOTSUP;
455				break;
456			}
457
458			/*
459			 * Make sure the vdev config is bootable
460			 */
461			if (!vdev_is_bootable(spa->spa_root_vdev)) {
462				error = ENOTSUP;
463				break;
464			}
465
466			reset_bootfs = 1;
467
468			error = nvpair_value_string(elem, &strval);
469
470			if (!error) {
471				objset_t *os;
472				uint64_t compress;
473
474				if (strval == NULL || strval[0] == '\0') {
475					objnum = zpool_prop_default_numeric(
476					    ZPOOL_PROP_BOOTFS);
477					break;
478				}
479
480				if (error = dmu_objset_hold(strval, FTAG, &os))
481					break;
482
483				/* Must be ZPL and not gzip compressed. */
484
485				if (dmu_objset_type(os) != DMU_OST_ZFS) {
486					error = ENOTSUP;
487				} else if ((error = dsl_prop_get_integer(strval,
488				    zfs_prop_to_name(ZFS_PROP_COMPRESSION),
489				    &compress, NULL)) == 0 &&
490				    !BOOTFS_COMPRESS_VALID(compress)) {
491					error = ENOTSUP;
492				} else {
493					objnum = dmu_objset_id(os);
494				}
495				dmu_objset_rele(os, FTAG);
496			}
497			break;
498
499		case ZPOOL_PROP_FAILUREMODE:
500			error = nvpair_value_uint64(elem, &intval);
501			if (!error && (intval < ZIO_FAILURE_MODE_WAIT ||
502			    intval > ZIO_FAILURE_MODE_PANIC))
503				error = EINVAL;
504
505			/*
506			 * This is a special case which only occurs when
507			 * the pool has completely failed. This allows
508			 * the user to change the in-core failmode property
509			 * without syncing it out to disk (I/Os might
510			 * currently be blocked). We do this by returning
511			 * EIO to the caller (spa_prop_set) to trick it
512			 * into thinking we encountered a property validation
513			 * error.
514			 */
515			if (!error && spa_suspended(spa)) {
516				spa->spa_failmode = intval;
517				error = EIO;
518			}
519			break;
520
521		case ZPOOL_PROP_CACHEFILE:
522			if ((error = nvpair_value_string(elem, &strval)) != 0)
523				break;
524
525			if (strval[0] == '\0')
526				break;
527
528			if (strcmp(strval, "none") == 0)
529				break;
530
531			if (strval[0] != '/') {
532				error = EINVAL;
533				break;
534			}
535
536			slash = strrchr(strval, '/');
537			ASSERT(slash != NULL);
538
539			if (slash[1] == '\0' || strcmp(slash, "/.") == 0 ||
540			    strcmp(slash, "/..") == 0)
541				error = EINVAL;
542			break;
543
544		case ZPOOL_PROP_COMMENT:
545			if ((error = nvpair_value_string(elem, &strval)) != 0)
546				break;
547			for (check = strval; *check != '\0'; check++) {
548				/*
549				 * The kernel doesn't have an easy isprint()
550				 * check.  For this kernel check, we merely
551				 * check ASCII apart from DEL.  Fix this if
552				 * there is an easy-to-use kernel isprint().
553				 */
554				if (*check >= 0x7f) {
555					error = EINVAL;
556					break;
557				}
558				check++;
559			}
560			if (strlen(strval) > ZPROP_MAX_COMMENT)
561				error = E2BIG;
562			break;
563
564		case ZPOOL_PROP_DEDUPDITTO:
565			if (spa_version(spa) < SPA_VERSION_DEDUP)
566				error = ENOTSUP;
567			else
568				error = nvpair_value_uint64(elem, &intval);
569			if (error == 0 &&
570			    intval != 0 && intval < ZIO_DEDUPDITTO_MIN)
571				error = EINVAL;
572			break;
573		}
574
575		if (error)
576			break;
577	}
578
579	if (!error && reset_bootfs) {
580		error = nvlist_remove(props,
581		    zpool_prop_to_name(ZPOOL_PROP_BOOTFS), DATA_TYPE_STRING);
582
583		if (!error) {
584			error = nvlist_add_uint64(props,
585			    zpool_prop_to_name(ZPOOL_PROP_BOOTFS), objnum);
586		}
587	}
588
589	return (error);
590}
591
592void
593spa_configfile_set(spa_t *spa, nvlist_t *nvp, boolean_t need_sync)
594{
595	char *cachefile;
596	spa_config_dirent_t *dp;
597
598	if (nvlist_lookup_string(nvp, zpool_prop_to_name(ZPOOL_PROP_CACHEFILE),
599	    &cachefile) != 0)
600		return;
601
602	dp = kmem_alloc(sizeof (spa_config_dirent_t),
603	    KM_SLEEP);
604
605	if (cachefile[0] == '\0')
606		dp->scd_path = spa_strdup(spa_config_path);
607	else if (strcmp(cachefile, "none") == 0)
608		dp->scd_path = NULL;
609	else
610		dp->scd_path = spa_strdup(cachefile);
611
612	list_insert_head(&spa->spa_config_list, dp);
613	if (need_sync)
614		spa_async_request(spa, SPA_ASYNC_CONFIG_UPDATE);
615}
616
617int
618spa_prop_set(spa_t *spa, nvlist_t *nvp)
619{
620	int error;
621	nvpair_t *elem = NULL;
622	boolean_t need_sync = B_FALSE;
623
624	if ((error = spa_prop_validate(spa, nvp)) != 0)
625		return (error);
626
627	while ((elem = nvlist_next_nvpair(nvp, elem)) != NULL) {
628		zpool_prop_t prop = zpool_name_to_prop(nvpair_name(elem));
629
630		if (prop == ZPOOL_PROP_CACHEFILE ||
631		    prop == ZPOOL_PROP_ALTROOT ||
632		    prop == ZPOOL_PROP_READONLY)
633			continue;
634
635		if (prop == ZPOOL_PROP_VERSION || prop == ZPROP_INVAL) {
636			uint64_t ver;
637
638			if (prop == ZPOOL_PROP_VERSION) {
639				VERIFY(nvpair_value_uint64(elem, &ver) == 0);
640			} else {
641				ASSERT(zpool_prop_feature(nvpair_name(elem)));
642				ver = SPA_VERSION_FEATURES;
643				need_sync = B_TRUE;
644			}
645
646			/* Save time if the version is already set. */
647			if (ver == spa_version(spa))
648				continue;
649
650			/*
651			 * In addition to the pool directory object, we might
652			 * create the pool properties object, the features for
653			 * read object, the features for write object, or the
654			 * feature descriptions object.
655			 */
656			error = dsl_sync_task_do(spa_get_dsl(spa), NULL,
657			    spa_sync_version, spa, &ver, 6);
658			if (error)
659				return (error);
660			continue;
661		}
662
663		need_sync = B_TRUE;
664		break;
665	}
666
667	if (need_sync) {
668		return (dsl_sync_task_do(spa_get_dsl(spa), NULL, spa_sync_props,
669		    spa, nvp, 6));
670	}
671
672	return (0);
673}
674
675/*
676 * If the bootfs property value is dsobj, clear it.
677 */
678void
679spa_prop_clear_bootfs(spa_t *spa, uint64_t dsobj, dmu_tx_t *tx)
680{
681	if (spa->spa_bootfs == dsobj && spa->spa_pool_props_object != 0) {
682		VERIFY(zap_remove(spa->spa_meta_objset,
683		    spa->spa_pool_props_object,
684		    zpool_prop_to_name(ZPOOL_PROP_BOOTFS), tx) == 0);
685		spa->spa_bootfs = 0;
686	}
687}
688
689/*ARGSUSED*/
690static int
691spa_change_guid_check(void *arg1, void *arg2, dmu_tx_t *tx)
692{
693	spa_t *spa = arg1;
694	uint64_t *newguid = arg2;
695	vdev_t *rvd = spa->spa_root_vdev;
696	uint64_t vdev_state;
697
698	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
699	vdev_state = rvd->vdev_state;
700	spa_config_exit(spa, SCL_STATE, FTAG);
701
702	if (vdev_state != VDEV_STATE_HEALTHY)
703		return (ENXIO);
704
705	ASSERT3U(spa_guid(spa), !=, *newguid);
706
707	return (0);
708}
709
710static void
711spa_change_guid_sync(void *arg1, void *arg2, dmu_tx_t *tx)
712{
713	spa_t *spa = arg1;
714	uint64_t *newguid = arg2;
715	uint64_t oldguid;
716	vdev_t *rvd = spa->spa_root_vdev;
717
718	oldguid = spa_guid(spa);
719
720	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
721	rvd->vdev_guid = *newguid;
722	rvd->vdev_guid_sum += (*newguid - oldguid);
723	vdev_config_dirty(rvd);
724	spa_config_exit(spa, SCL_STATE, FTAG);
725
726#ifdef __FreeBSD__
727	/*
728	 * TODO: until recent illumos logging changes are merged
729	 *       log reguid as pool property change
730	 */
731	spa_history_log_internal(LOG_POOL_PROPSET, spa, tx,
732	    "guid change old=%llu new=%llu", oldguid, *newguid);
733#else
734	spa_history_log_internal(spa, "guid change", tx, "old=%lld new=%lld",
735	    oldguid, *newguid);
736#endif
737}
738
739/*
740 * Change the GUID for the pool.  This is done so that we can later
741 * re-import a pool built from a clone of our own vdevs.  We will modify
742 * the root vdev's guid, our own pool guid, and then mark all of our
743 * vdevs dirty.  Note that we must make sure that all our vdevs are
744 * online when we do this, or else any vdevs that weren't present
745 * would be orphaned from our pool.  We are also going to issue a
746 * sysevent to update any watchers.
747 */
748int
749spa_change_guid(spa_t *spa)
750{
751	int error;
752	uint64_t guid;
753
754	mutex_enter(&spa_namespace_lock);
755	guid = spa_generate_guid(NULL);
756
757	error = dsl_sync_task_do(spa_get_dsl(spa), spa_change_guid_check,
758	    spa_change_guid_sync, spa, &guid, 5);
759
760	if (error == 0) {
761		spa_config_sync(spa, B_FALSE, B_TRUE);
762		spa_event_notify(spa, NULL, ESC_ZFS_POOL_REGUID);
763	}
764
765	mutex_exit(&spa_namespace_lock);
766
767	return (error);
768}
769
770/*
771 * ==========================================================================
772 * SPA state manipulation (open/create/destroy/import/export)
773 * ==========================================================================
774 */
775
776static int
777spa_error_entry_compare(const void *a, const void *b)
778{
779	spa_error_entry_t *sa = (spa_error_entry_t *)a;
780	spa_error_entry_t *sb = (spa_error_entry_t *)b;
781	int ret;
782
783	ret = bcmp(&sa->se_bookmark, &sb->se_bookmark,
784	    sizeof (zbookmark_t));
785
786	if (ret < 0)
787		return (-1);
788	else if (ret > 0)
789		return (1);
790	else
791		return (0);
792}
793
794/*
795 * Utility function which retrieves copies of the current logs and
796 * re-initializes them in the process.
797 */
798void
799spa_get_errlists(spa_t *spa, avl_tree_t *last, avl_tree_t *scrub)
800{
801	ASSERT(MUTEX_HELD(&spa->spa_errlist_lock));
802
803	bcopy(&spa->spa_errlist_last, last, sizeof (avl_tree_t));
804	bcopy(&spa->spa_errlist_scrub, scrub, sizeof (avl_tree_t));
805
806	avl_create(&spa->spa_errlist_scrub,
807	    spa_error_entry_compare, sizeof (spa_error_entry_t),
808	    offsetof(spa_error_entry_t, se_avl));
809	avl_create(&spa->spa_errlist_last,
810	    spa_error_entry_compare, sizeof (spa_error_entry_t),
811	    offsetof(spa_error_entry_t, se_avl));
812}
813
814static taskq_t *
815spa_taskq_create(spa_t *spa, const char *name, enum zti_modes mode,
816    uint_t value)
817{
818	uint_t flags = TASKQ_PREPOPULATE;
819	boolean_t batch = B_FALSE;
820
821	switch (mode) {
822	case zti_mode_null:
823		return (NULL);		/* no taskq needed */
824
825	case zti_mode_fixed:
826		ASSERT3U(value, >=, 1);
827		value = MAX(value, 1);
828		break;
829
830	case zti_mode_batch:
831		batch = B_TRUE;
832		flags |= TASKQ_THREADS_CPU_PCT;
833		value = zio_taskq_batch_pct;
834		break;
835
836	case zti_mode_online_percent:
837		flags |= TASKQ_THREADS_CPU_PCT;
838		break;
839
840	default:
841		panic("unrecognized mode for %s taskq (%u:%u) in "
842		    "spa_activate()",
843		    name, mode, value);
844		break;
845	}
846
847#ifdef SYSDC
848	if (zio_taskq_sysdc && spa->spa_proc != &p0) {
849		if (batch)
850			flags |= TASKQ_DC_BATCH;
851
852		return (taskq_create_sysdc(name, value, 50, INT_MAX,
853		    spa->spa_proc, zio_taskq_basedc, flags));
854	}
855#endif
856	return (taskq_create_proc(name, value, maxclsyspri, 50, INT_MAX,
857	    spa->spa_proc, flags));
858}
859
860static void
861spa_create_zio_taskqs(spa_t *spa)
862{
863	for (int t = 0; t < ZIO_TYPES; t++) {
864		for (int q = 0; q < ZIO_TASKQ_TYPES; q++) {
865			const zio_taskq_info_t *ztip = &zio_taskqs[t][q];
866			enum zti_modes mode = ztip->zti_mode;
867			uint_t value = ztip->zti_value;
868			char name[32];
869
870			(void) snprintf(name, sizeof (name),
871			    "%s_%s", zio_type_name[t], zio_taskq_types[q]);
872
873			spa->spa_zio_taskq[t][q] =
874			    spa_taskq_create(spa, name, mode, value);
875		}
876	}
877}
878
879#ifdef _KERNEL
880#ifdef SPA_PROCESS
881static void
882spa_thread(void *arg)
883{
884	callb_cpr_t cprinfo;
885
886	spa_t *spa = arg;
887	user_t *pu = PTOU(curproc);
888
889	CALLB_CPR_INIT(&cprinfo, &spa->spa_proc_lock, callb_generic_cpr,
890	    spa->spa_name);
891
892	ASSERT(curproc != &p0);
893	(void) snprintf(pu->u_psargs, sizeof (pu->u_psargs),
894	    "zpool-%s", spa->spa_name);
895	(void) strlcpy(pu->u_comm, pu->u_psargs, sizeof (pu->u_comm));
896
897#ifdef PSRSET_BIND
898	/* bind this thread to the requested psrset */
899	if (zio_taskq_psrset_bind != PS_NONE) {
900		pool_lock();
901		mutex_enter(&cpu_lock);
902		mutex_enter(&pidlock);
903		mutex_enter(&curproc->p_lock);
904
905		if (cpupart_bind_thread(curthread, zio_taskq_psrset_bind,
906		    0, NULL, NULL) == 0)  {
907			curthread->t_bind_pset = zio_taskq_psrset_bind;
908		} else {
909			cmn_err(CE_WARN,
910			    "Couldn't bind process for zfs pool \"%s\" to "
911			    "pset %d\n", spa->spa_name, zio_taskq_psrset_bind);
912		}
913
914		mutex_exit(&curproc->p_lock);
915		mutex_exit(&pidlock);
916		mutex_exit(&cpu_lock);
917		pool_unlock();
918	}
919#endif
920
921#ifdef SYSDC
922	if (zio_taskq_sysdc) {
923		sysdc_thread_enter(curthread, 100, 0);
924	}
925#endif
926
927	spa->spa_proc = curproc;
928	spa->spa_did = curthread->t_did;
929
930	spa_create_zio_taskqs(spa);
931
932	mutex_enter(&spa->spa_proc_lock);
933	ASSERT(spa->spa_proc_state == SPA_PROC_CREATED);
934
935	spa->spa_proc_state = SPA_PROC_ACTIVE;
936	cv_broadcast(&spa->spa_proc_cv);
937
938	CALLB_CPR_SAFE_BEGIN(&cprinfo);
939	while (spa->spa_proc_state == SPA_PROC_ACTIVE)
940		cv_wait(&spa->spa_proc_cv, &spa->spa_proc_lock);
941	CALLB_CPR_SAFE_END(&cprinfo, &spa->spa_proc_lock);
942
943	ASSERT(spa->spa_proc_state == SPA_PROC_DEACTIVATE);
944	spa->spa_proc_state = SPA_PROC_GONE;
945	spa->spa_proc = &p0;
946	cv_broadcast(&spa->spa_proc_cv);
947	CALLB_CPR_EXIT(&cprinfo);	/* drops spa_proc_lock */
948
949	mutex_enter(&curproc->p_lock);
950	lwp_exit();
951}
952#endif	/* SPA_PROCESS */
953#endif
954
955/*
956 * Activate an uninitialized pool.
957 */
958static void
959spa_activate(spa_t *spa, int mode)
960{
961	ASSERT(spa->spa_state == POOL_STATE_UNINITIALIZED);
962
963	spa->spa_state = POOL_STATE_ACTIVE;
964	spa->spa_mode = mode;
965
966	spa->spa_normal_class = metaslab_class_create(spa, zfs_metaslab_ops);
967	spa->spa_log_class = metaslab_class_create(spa, zfs_metaslab_ops);
968
969	/* Try to create a covering process */
970	mutex_enter(&spa->spa_proc_lock);
971	ASSERT(spa->spa_proc_state == SPA_PROC_NONE);
972	ASSERT(spa->spa_proc == &p0);
973	spa->spa_did = 0;
974
975#ifdef SPA_PROCESS
976	/* Only create a process if we're going to be around a while. */
977	if (spa_create_process && strcmp(spa->spa_name, TRYIMPORT_NAME) != 0) {
978		if (newproc(spa_thread, (caddr_t)spa, syscid, maxclsyspri,
979		    NULL, 0) == 0) {
980			spa->spa_proc_state = SPA_PROC_CREATED;
981			while (spa->spa_proc_state == SPA_PROC_CREATED) {
982				cv_wait(&spa->spa_proc_cv,
983				    &spa->spa_proc_lock);
984			}
985			ASSERT(spa->spa_proc_state == SPA_PROC_ACTIVE);
986			ASSERT(spa->spa_proc != &p0);
987			ASSERT(spa->spa_did != 0);
988		} else {
989#ifdef _KERNEL
990			cmn_err(CE_WARN,
991			    "Couldn't create process for zfs pool \"%s\"\n",
992			    spa->spa_name);
993#endif
994		}
995	}
996#endif	/* SPA_PROCESS */
997	mutex_exit(&spa->spa_proc_lock);
998
999	/* If we didn't create a process, we need to create our taskqs. */
1000	ASSERT(spa->spa_proc == &p0);
1001	if (spa->spa_proc == &p0) {
1002		spa_create_zio_taskqs(spa);
1003	}
1004
1005	/*
1006	 * Start TRIM thread.
1007	 */
1008	trim_thread_create(spa);
1009
1010	list_create(&spa->spa_config_dirty_list, sizeof (vdev_t),
1011	    offsetof(vdev_t, vdev_config_dirty_node));
1012	list_create(&spa->spa_state_dirty_list, sizeof (vdev_t),
1013	    offsetof(vdev_t, vdev_state_dirty_node));
1014
1015	txg_list_create(&spa->spa_vdev_txg_list,
1016	    offsetof(struct vdev, vdev_txg_node));
1017
1018	avl_create(&spa->spa_errlist_scrub,
1019	    spa_error_entry_compare, sizeof (spa_error_entry_t),
1020	    offsetof(spa_error_entry_t, se_avl));
1021	avl_create(&spa->spa_errlist_last,
1022	    spa_error_entry_compare, sizeof (spa_error_entry_t),
1023	    offsetof(spa_error_entry_t, se_avl));
1024}
1025
1026/*
1027 * Opposite of spa_activate().
1028 */
1029static void
1030spa_deactivate(spa_t *spa)
1031{
1032	ASSERT(spa->spa_sync_on == B_FALSE);
1033	ASSERT(spa->spa_dsl_pool == NULL);
1034	ASSERT(spa->spa_root_vdev == NULL);
1035	ASSERT(spa->spa_async_zio_root == NULL);
1036	ASSERT(spa->spa_state != POOL_STATE_UNINITIALIZED);
1037
1038	/*
1039	 * Stop TRIM thread in case spa_unload() wasn't called directly
1040	 * before spa_deactivate().
1041	 */
1042	trim_thread_destroy(spa);
1043
1044	txg_list_destroy(&spa->spa_vdev_txg_list);
1045
1046	list_destroy(&spa->spa_config_dirty_list);
1047	list_destroy(&spa->spa_state_dirty_list);
1048
1049	for (int t = 0; t < ZIO_TYPES; t++) {
1050		for (int q = 0; q < ZIO_TASKQ_TYPES; q++) {
1051			if (spa->spa_zio_taskq[t][q] != NULL)
1052				taskq_destroy(spa->spa_zio_taskq[t][q]);
1053			spa->spa_zio_taskq[t][q] = NULL;
1054		}
1055	}
1056
1057	metaslab_class_destroy(spa->spa_normal_class);
1058	spa->spa_normal_class = NULL;
1059
1060	metaslab_class_destroy(spa->spa_log_class);
1061	spa->spa_log_class = NULL;
1062
1063	/*
1064	 * If this was part of an import or the open otherwise failed, we may
1065	 * still have errors left in the queues.  Empty them just in case.
1066	 */
1067	spa_errlog_drain(spa);
1068
1069	avl_destroy(&spa->spa_errlist_scrub);
1070	avl_destroy(&spa->spa_errlist_last);
1071
1072	spa->spa_state = POOL_STATE_UNINITIALIZED;
1073
1074	mutex_enter(&spa->spa_proc_lock);
1075	if (spa->spa_proc_state != SPA_PROC_NONE) {
1076		ASSERT(spa->spa_proc_state == SPA_PROC_ACTIVE);
1077		spa->spa_proc_state = SPA_PROC_DEACTIVATE;
1078		cv_broadcast(&spa->spa_proc_cv);
1079		while (spa->spa_proc_state == SPA_PROC_DEACTIVATE) {
1080			ASSERT(spa->spa_proc != &p0);
1081			cv_wait(&spa->spa_proc_cv, &spa->spa_proc_lock);
1082		}
1083		ASSERT(spa->spa_proc_state == SPA_PROC_GONE);
1084		spa->spa_proc_state = SPA_PROC_NONE;
1085	}
1086	ASSERT(spa->spa_proc == &p0);
1087	mutex_exit(&spa->spa_proc_lock);
1088
1089#ifdef SPA_PROCESS
1090	/*
1091	 * We want to make sure spa_thread() has actually exited the ZFS
1092	 * module, so that the module can't be unloaded out from underneath
1093	 * it.
1094	 */
1095	if (spa->spa_did != 0) {
1096		thread_join(spa->spa_did);
1097		spa->spa_did = 0;
1098	}
1099#endif	/* SPA_PROCESS */
1100}
1101
1102/*
1103 * Verify a pool configuration, and construct the vdev tree appropriately.  This
1104 * will create all the necessary vdevs in the appropriate layout, with each vdev
1105 * in the CLOSED state.  This will prep the pool before open/creation/import.
1106 * All vdev validation is done by the vdev_alloc() routine.
1107 */
1108static int
1109spa_config_parse(spa_t *spa, vdev_t **vdp, nvlist_t *nv, vdev_t *parent,
1110    uint_t id, int atype)
1111{
1112	nvlist_t **child;
1113	uint_t children;
1114	int error;
1115
1116	if ((error = vdev_alloc(spa, vdp, nv, parent, id, atype)) != 0)
1117		return (error);
1118
1119	if ((*vdp)->vdev_ops->vdev_op_leaf)
1120		return (0);
1121
1122	error = nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_CHILDREN,
1123	    &child, &children);
1124
1125	if (error == ENOENT)
1126		return (0);
1127
1128	if (error) {
1129		vdev_free(*vdp);
1130		*vdp = NULL;
1131		return (EINVAL);
1132	}
1133
1134	for (int c = 0; c < children; c++) {
1135		vdev_t *vd;
1136		if ((error = spa_config_parse(spa, &vd, child[c], *vdp, c,
1137		    atype)) != 0) {
1138			vdev_free(*vdp);
1139			*vdp = NULL;
1140			return (error);
1141		}
1142	}
1143
1144	ASSERT(*vdp != NULL);
1145
1146	return (0);
1147}
1148
1149/*
1150 * Opposite of spa_load().
1151 */
1152static void
1153spa_unload(spa_t *spa)
1154{
1155	int i;
1156
1157	ASSERT(MUTEX_HELD(&spa_namespace_lock));
1158
1159	/*
1160	 * Stop TRIM thread.
1161	 */
1162	trim_thread_destroy(spa);
1163
1164	/*
1165	 * Stop async tasks.
1166	 */
1167	spa_async_suspend(spa);
1168
1169	/*
1170	 * Stop syncing.
1171	 */
1172	if (spa->spa_sync_on) {
1173		txg_sync_stop(spa->spa_dsl_pool);
1174		spa->spa_sync_on = B_FALSE;
1175	}
1176
1177	/*
1178	 * Wait for any outstanding async I/O to complete.
1179	 */
1180	if (spa->spa_async_zio_root != NULL) {
1181		(void) zio_wait(spa->spa_async_zio_root);
1182		spa->spa_async_zio_root = NULL;
1183	}
1184
1185	bpobj_close(&spa->spa_deferred_bpobj);
1186
1187	/*
1188	 * Close the dsl pool.
1189	 */
1190	if (spa->spa_dsl_pool) {
1191		dsl_pool_close(spa->spa_dsl_pool);
1192		spa->spa_dsl_pool = NULL;
1193		spa->spa_meta_objset = NULL;
1194	}
1195
1196	ddt_unload(spa);
1197
1198	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
1199
1200	/*
1201	 * Drop and purge level 2 cache
1202	 */
1203	spa_l2cache_drop(spa);
1204
1205	/*
1206	 * Close all vdevs.
1207	 */
1208	if (spa->spa_root_vdev)
1209		vdev_free(spa->spa_root_vdev);
1210	ASSERT(spa->spa_root_vdev == NULL);
1211
1212	for (i = 0; i < spa->spa_spares.sav_count; i++)
1213		vdev_free(spa->spa_spares.sav_vdevs[i]);
1214	if (spa->spa_spares.sav_vdevs) {
1215		kmem_free(spa->spa_spares.sav_vdevs,
1216		    spa->spa_spares.sav_count * sizeof (void *));
1217		spa->spa_spares.sav_vdevs = NULL;
1218	}
1219	if (spa->spa_spares.sav_config) {
1220		nvlist_free(spa->spa_spares.sav_config);
1221		spa->spa_spares.sav_config = NULL;
1222	}
1223	spa->spa_spares.sav_count = 0;
1224
1225	for (i = 0; i < spa->spa_l2cache.sav_count; i++) {
1226		vdev_clear_stats(spa->spa_l2cache.sav_vdevs[i]);
1227		vdev_free(spa->spa_l2cache.sav_vdevs[i]);
1228	}
1229	if (spa->spa_l2cache.sav_vdevs) {
1230		kmem_free(spa->spa_l2cache.sav_vdevs,
1231		    spa->spa_l2cache.sav_count * sizeof (void *));
1232		spa->spa_l2cache.sav_vdevs = NULL;
1233	}
1234	if (spa->spa_l2cache.sav_config) {
1235		nvlist_free(spa->spa_l2cache.sav_config);
1236		spa->spa_l2cache.sav_config = NULL;
1237	}
1238	spa->spa_l2cache.sav_count = 0;
1239
1240	spa->spa_async_suspended = 0;
1241
1242	if (spa->spa_comment != NULL) {
1243		spa_strfree(spa->spa_comment);
1244		spa->spa_comment = NULL;
1245	}
1246
1247	spa_config_exit(spa, SCL_ALL, FTAG);
1248}
1249
1250/*
1251 * Load (or re-load) the current list of vdevs describing the active spares for
1252 * this pool.  When this is called, we have some form of basic information in
1253 * 'spa_spares.sav_config'.  We parse this into vdevs, try to open them, and
1254 * then re-generate a more complete list including status information.
1255 */
1256static void
1257spa_load_spares(spa_t *spa)
1258{
1259	nvlist_t **spares;
1260	uint_t nspares;
1261	int i;
1262	vdev_t *vd, *tvd;
1263
1264	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
1265
1266	/*
1267	 * First, close and free any existing spare vdevs.
1268	 */
1269	for (i = 0; i < spa->spa_spares.sav_count; i++) {
1270		vd = spa->spa_spares.sav_vdevs[i];
1271
1272		/* Undo the call to spa_activate() below */
1273		if ((tvd = spa_lookup_by_guid(spa, vd->vdev_guid,
1274		    B_FALSE)) != NULL && tvd->vdev_isspare)
1275			spa_spare_remove(tvd);
1276		vdev_close(vd);
1277		vdev_free(vd);
1278	}
1279
1280	if (spa->spa_spares.sav_vdevs)
1281		kmem_free(spa->spa_spares.sav_vdevs,
1282		    spa->spa_spares.sav_count * sizeof (void *));
1283
1284	if (spa->spa_spares.sav_config == NULL)
1285		nspares = 0;
1286	else
1287		VERIFY(nvlist_lookup_nvlist_array(spa->spa_spares.sav_config,
1288		    ZPOOL_CONFIG_SPARES, &spares, &nspares) == 0);
1289
1290	spa->spa_spares.sav_count = (int)nspares;
1291	spa->spa_spares.sav_vdevs = NULL;
1292
1293	if (nspares == 0)
1294		return;
1295
1296	/*
1297	 * Construct the array of vdevs, opening them to get status in the
1298	 * process.   For each spare, there is potentially two different vdev_t
1299	 * structures associated with it: one in the list of spares (used only
1300	 * for basic validation purposes) and one in the active vdev
1301	 * configuration (if it's spared in).  During this phase we open and
1302	 * validate each vdev on the spare list.  If the vdev also exists in the
1303	 * active configuration, then we also mark this vdev as an active spare.
1304	 */
1305	spa->spa_spares.sav_vdevs = kmem_alloc(nspares * sizeof (void *),
1306	    KM_SLEEP);
1307	for (i = 0; i < spa->spa_spares.sav_count; i++) {
1308		VERIFY(spa_config_parse(spa, &vd, spares[i], NULL, 0,
1309		    VDEV_ALLOC_SPARE) == 0);
1310		ASSERT(vd != NULL);
1311
1312		spa->spa_spares.sav_vdevs[i] = vd;
1313
1314		if ((tvd = spa_lookup_by_guid(spa, vd->vdev_guid,
1315		    B_FALSE)) != NULL) {
1316			if (!tvd->vdev_isspare)
1317				spa_spare_add(tvd);
1318
1319			/*
1320			 * We only mark the spare active if we were successfully
1321			 * able to load the vdev.  Otherwise, importing a pool
1322			 * with a bad active spare would result in strange
1323			 * behavior, because multiple pool would think the spare
1324			 * is actively in use.
1325			 *
1326			 * There is a vulnerability here to an equally bizarre
1327			 * circumstance, where a dead active spare is later
1328			 * brought back to life (onlined or otherwise).  Given
1329			 * the rarity of this scenario, and the extra complexity
1330			 * it adds, we ignore the possibility.
1331			 */
1332			if (!vdev_is_dead(tvd))
1333				spa_spare_activate(tvd);
1334		}
1335
1336		vd->vdev_top = vd;
1337		vd->vdev_aux = &spa->spa_spares;
1338
1339		if (vdev_open(vd) != 0)
1340			continue;
1341
1342		if (vdev_validate_aux(vd) == 0)
1343			spa_spare_add(vd);
1344	}
1345
1346	/*
1347	 * Recompute the stashed list of spares, with status information
1348	 * this time.
1349	 */
1350	VERIFY(nvlist_remove(spa->spa_spares.sav_config, ZPOOL_CONFIG_SPARES,
1351	    DATA_TYPE_NVLIST_ARRAY) == 0);
1352
1353	spares = kmem_alloc(spa->spa_spares.sav_count * sizeof (void *),
1354	    KM_SLEEP);
1355	for (i = 0; i < spa->spa_spares.sav_count; i++)
1356		spares[i] = vdev_config_generate(spa,
1357		    spa->spa_spares.sav_vdevs[i], B_TRUE, VDEV_CONFIG_SPARE);
1358	VERIFY(nvlist_add_nvlist_array(spa->spa_spares.sav_config,
1359	    ZPOOL_CONFIG_SPARES, spares, spa->spa_spares.sav_count) == 0);
1360	for (i = 0; i < spa->spa_spares.sav_count; i++)
1361		nvlist_free(spares[i]);
1362	kmem_free(spares, spa->spa_spares.sav_count * sizeof (void *));
1363}
1364
1365/*
1366 * Load (or re-load) the current list of vdevs describing the active l2cache for
1367 * this pool.  When this is called, we have some form of basic information in
1368 * 'spa_l2cache.sav_config'.  We parse this into vdevs, try to open them, and
1369 * then re-generate a more complete list including status information.
1370 * Devices which are already active have their details maintained, and are
1371 * not re-opened.
1372 */
1373static void
1374spa_load_l2cache(spa_t *spa)
1375{
1376	nvlist_t **l2cache;
1377	uint_t nl2cache;
1378	int i, j, oldnvdevs;
1379	uint64_t guid;
1380	vdev_t *vd, **oldvdevs, **newvdevs;
1381	spa_aux_vdev_t *sav = &spa->spa_l2cache;
1382
1383	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
1384
1385	if (sav->sav_config != NULL) {
1386		VERIFY(nvlist_lookup_nvlist_array(sav->sav_config,
1387		    ZPOOL_CONFIG_L2CACHE, &l2cache, &nl2cache) == 0);
1388		newvdevs = kmem_alloc(nl2cache * sizeof (void *), KM_SLEEP);
1389	} else {
1390		nl2cache = 0;
1391	}
1392
1393	oldvdevs = sav->sav_vdevs;
1394	oldnvdevs = sav->sav_count;
1395	sav->sav_vdevs = NULL;
1396	sav->sav_count = 0;
1397
1398	/*
1399	 * Process new nvlist of vdevs.
1400	 */
1401	for (i = 0; i < nl2cache; i++) {
1402		VERIFY(nvlist_lookup_uint64(l2cache[i], ZPOOL_CONFIG_GUID,
1403		    &guid) == 0);
1404
1405		newvdevs[i] = NULL;
1406		for (j = 0; j < oldnvdevs; j++) {
1407			vd = oldvdevs[j];
1408			if (vd != NULL && guid == vd->vdev_guid) {
1409				/*
1410				 * Retain previous vdev for add/remove ops.
1411				 */
1412				newvdevs[i] = vd;
1413				oldvdevs[j] = NULL;
1414				break;
1415			}
1416		}
1417
1418		if (newvdevs[i] == NULL) {
1419			/*
1420			 * Create new vdev
1421			 */
1422			VERIFY(spa_config_parse(spa, &vd, l2cache[i], NULL, 0,
1423			    VDEV_ALLOC_L2CACHE) == 0);
1424			ASSERT(vd != NULL);
1425			newvdevs[i] = vd;
1426
1427			/*
1428			 * Commit this vdev as an l2cache device,
1429			 * even if it fails to open.
1430			 */
1431			spa_l2cache_add(vd);
1432
1433			vd->vdev_top = vd;
1434			vd->vdev_aux = sav;
1435
1436			spa_l2cache_activate(vd);
1437
1438			if (vdev_open(vd) != 0)
1439				continue;
1440
1441			(void) vdev_validate_aux(vd);
1442
1443			if (!vdev_is_dead(vd))
1444				l2arc_add_vdev(spa, vd);
1445		}
1446	}
1447
1448	/*
1449	 * Purge vdevs that were dropped
1450	 */
1451	for (i = 0; i < oldnvdevs; i++) {
1452		uint64_t pool;
1453
1454		vd = oldvdevs[i];
1455		if (vd != NULL) {
1456			ASSERT(vd->vdev_isl2cache);
1457
1458			if (spa_l2cache_exists(vd->vdev_guid, &pool) &&
1459			    pool != 0ULL && l2arc_vdev_present(vd))
1460				l2arc_remove_vdev(vd);
1461			vdev_clear_stats(vd);
1462			vdev_free(vd);
1463		}
1464	}
1465
1466	if (oldvdevs)
1467		kmem_free(oldvdevs, oldnvdevs * sizeof (void *));
1468
1469	if (sav->sav_config == NULL)
1470		goto out;
1471
1472	sav->sav_vdevs = newvdevs;
1473	sav->sav_count = (int)nl2cache;
1474
1475	/*
1476	 * Recompute the stashed list of l2cache devices, with status
1477	 * information this time.
1478	 */
1479	VERIFY(nvlist_remove(sav->sav_config, ZPOOL_CONFIG_L2CACHE,
1480	    DATA_TYPE_NVLIST_ARRAY) == 0);
1481
1482	l2cache = kmem_alloc(sav->sav_count * sizeof (void *), KM_SLEEP);
1483	for (i = 0; i < sav->sav_count; i++)
1484		l2cache[i] = vdev_config_generate(spa,
1485		    sav->sav_vdevs[i], B_TRUE, VDEV_CONFIG_L2CACHE);
1486	VERIFY(nvlist_add_nvlist_array(sav->sav_config,
1487	    ZPOOL_CONFIG_L2CACHE, l2cache, sav->sav_count) == 0);
1488out:
1489	for (i = 0; i < sav->sav_count; i++)
1490		nvlist_free(l2cache[i]);
1491	if (sav->sav_count)
1492		kmem_free(l2cache, sav->sav_count * sizeof (void *));
1493}
1494
1495static int
1496load_nvlist(spa_t *spa, uint64_t obj, nvlist_t **value)
1497{
1498	dmu_buf_t *db;
1499	char *packed = NULL;
1500	size_t nvsize = 0;
1501	int error;
1502	*value = NULL;
1503
1504	VERIFY(0 == dmu_bonus_hold(spa->spa_meta_objset, obj, FTAG, &db));
1505	nvsize = *(uint64_t *)db->db_data;
1506	dmu_buf_rele(db, FTAG);
1507
1508	packed = kmem_alloc(nvsize, KM_SLEEP);
1509	error = dmu_read(spa->spa_meta_objset, obj, 0, nvsize, packed,
1510	    DMU_READ_PREFETCH);
1511	if (error == 0)
1512		error = nvlist_unpack(packed, nvsize, value, 0);
1513	kmem_free(packed, nvsize);
1514
1515	return (error);
1516}
1517
1518/*
1519 * Checks to see if the given vdev could not be opened, in which case we post a
1520 * sysevent to notify the autoreplace code that the device has been removed.
1521 */
1522static void
1523spa_check_removed(vdev_t *vd)
1524{
1525	for (int c = 0; c < vd->vdev_children; c++)
1526		spa_check_removed(vd->vdev_child[c]);
1527
1528	if (vd->vdev_ops->vdev_op_leaf && vdev_is_dead(vd)) {
1529		zfs_post_autoreplace(vd->vdev_spa, vd);
1530		spa_event_notify(vd->vdev_spa, vd, ESC_ZFS_VDEV_CHECK);
1531	}
1532}
1533
1534/*
1535 * Validate the current config against the MOS config
1536 */
1537static boolean_t
1538spa_config_valid(spa_t *spa, nvlist_t *config)
1539{
1540	vdev_t *mrvd, *rvd = spa->spa_root_vdev;
1541	nvlist_t *nv;
1542
1543	VERIFY(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, &nv) == 0);
1544
1545	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
1546	VERIFY(spa_config_parse(spa, &mrvd, nv, NULL, 0, VDEV_ALLOC_LOAD) == 0);
1547
1548	ASSERT3U(rvd->vdev_children, ==, mrvd->vdev_children);
1549
1550	/*
1551	 * If we're doing a normal import, then build up any additional
1552	 * diagnostic information about missing devices in this config.
1553	 * We'll pass this up to the user for further processing.
1554	 */
1555	if (!(spa->spa_import_flags & ZFS_IMPORT_MISSING_LOG)) {
1556		nvlist_t **child, *nv;
1557		uint64_t idx = 0;
1558
1559		child = kmem_alloc(rvd->vdev_children * sizeof (nvlist_t **),
1560		    KM_SLEEP);
1561		VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
1562
1563		for (int c = 0; c < rvd->vdev_children; c++) {
1564			vdev_t *tvd = rvd->vdev_child[c];
1565			vdev_t *mtvd  = mrvd->vdev_child[c];
1566
1567			if (tvd->vdev_ops == &vdev_missing_ops &&
1568			    mtvd->vdev_ops != &vdev_missing_ops &&
1569			    mtvd->vdev_islog)
1570				child[idx++] = vdev_config_generate(spa, mtvd,
1571				    B_FALSE, 0);
1572		}
1573
1574		if (idx) {
1575			VERIFY(nvlist_add_nvlist_array(nv,
1576			    ZPOOL_CONFIG_CHILDREN, child, idx) == 0);
1577			VERIFY(nvlist_add_nvlist(spa->spa_load_info,
1578			    ZPOOL_CONFIG_MISSING_DEVICES, nv) == 0);
1579
1580			for (int i = 0; i < idx; i++)
1581				nvlist_free(child[i]);
1582		}
1583		nvlist_free(nv);
1584		kmem_free(child, rvd->vdev_children * sizeof (char **));
1585	}
1586
1587	/*
1588	 * Compare the root vdev tree with the information we have
1589	 * from the MOS config (mrvd). Check each top-level vdev
1590	 * with the corresponding MOS config top-level (mtvd).
1591	 */
1592	for (int c = 0; c < rvd->vdev_children; c++) {
1593		vdev_t *tvd = rvd->vdev_child[c];
1594		vdev_t *mtvd  = mrvd->vdev_child[c];
1595
1596		/*
1597		 * Resolve any "missing" vdevs in the current configuration.
1598		 * If we find that the MOS config has more accurate information
1599		 * about the top-level vdev then use that vdev instead.
1600		 */
1601		if (tvd->vdev_ops == &vdev_missing_ops &&
1602		    mtvd->vdev_ops != &vdev_missing_ops) {
1603
1604			if (!(spa->spa_import_flags & ZFS_IMPORT_MISSING_LOG))
1605				continue;
1606
1607			/*
1608			 * Device specific actions.
1609			 */
1610			if (mtvd->vdev_islog) {
1611				spa_set_log_state(spa, SPA_LOG_CLEAR);
1612			} else {
1613				/*
1614				 * XXX - once we have 'readonly' pool
1615				 * support we should be able to handle
1616				 * missing data devices by transitioning
1617				 * the pool to readonly.
1618				 */
1619				continue;
1620			}
1621
1622			/*
1623			 * Swap the missing vdev with the data we were
1624			 * able to obtain from the MOS config.
1625			 */
1626			vdev_remove_child(rvd, tvd);
1627			vdev_remove_child(mrvd, mtvd);
1628
1629			vdev_add_child(rvd, mtvd);
1630			vdev_add_child(mrvd, tvd);
1631
1632			spa_config_exit(spa, SCL_ALL, FTAG);
1633			vdev_load(mtvd);
1634			spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
1635
1636			vdev_reopen(rvd);
1637		} else if (mtvd->vdev_islog) {
1638			/*
1639			 * Load the slog device's state from the MOS config
1640			 * since it's possible that the label does not
1641			 * contain the most up-to-date information.
1642			 */
1643			vdev_load_log_state(tvd, mtvd);
1644			vdev_reopen(tvd);
1645		}
1646	}
1647	vdev_free(mrvd);
1648	spa_config_exit(spa, SCL_ALL, FTAG);
1649
1650	/*
1651	 * Ensure we were able to validate the config.
1652	 */
1653	return (rvd->vdev_guid_sum == spa->spa_uberblock.ub_guid_sum);
1654}
1655
1656/*
1657 * Check for missing log devices
1658 */
1659static int
1660spa_check_logs(spa_t *spa)
1661{
1662	switch (spa->spa_log_state) {
1663	case SPA_LOG_MISSING:
1664		/* need to recheck in case slog has been restored */
1665	case SPA_LOG_UNKNOWN:
1666		if (dmu_objset_find(spa->spa_name, zil_check_log_chain, NULL,
1667		    DS_FIND_CHILDREN)) {
1668			spa_set_log_state(spa, SPA_LOG_MISSING);
1669			return (1);
1670		}
1671		break;
1672	}
1673	return (0);
1674}
1675
1676static boolean_t
1677spa_passivate_log(spa_t *spa)
1678{
1679	vdev_t *rvd = spa->spa_root_vdev;
1680	boolean_t slog_found = B_FALSE;
1681
1682	ASSERT(spa_config_held(spa, SCL_ALLOC, RW_WRITER));
1683
1684	if (!spa_has_slogs(spa))
1685		return (B_FALSE);
1686
1687	for (int c = 0; c < rvd->vdev_children; c++) {
1688		vdev_t *tvd = rvd->vdev_child[c];
1689		metaslab_group_t *mg = tvd->vdev_mg;
1690
1691		if (tvd->vdev_islog) {
1692			metaslab_group_passivate(mg);
1693			slog_found = B_TRUE;
1694		}
1695	}
1696
1697	return (slog_found);
1698}
1699
1700static void
1701spa_activate_log(spa_t *spa)
1702{
1703	vdev_t *rvd = spa->spa_root_vdev;
1704
1705	ASSERT(spa_config_held(spa, SCL_ALLOC, RW_WRITER));
1706
1707	for (int c = 0; c < rvd->vdev_children; c++) {
1708		vdev_t *tvd = rvd->vdev_child[c];
1709		metaslab_group_t *mg = tvd->vdev_mg;
1710
1711		if (tvd->vdev_islog)
1712			metaslab_group_activate(mg);
1713	}
1714}
1715
1716int
1717spa_offline_log(spa_t *spa)
1718{
1719	int error = 0;
1720
1721	if ((error = dmu_objset_find(spa_name(spa), zil_vdev_offline,
1722	    NULL, DS_FIND_CHILDREN)) == 0) {
1723
1724		/*
1725		 * We successfully offlined the log device, sync out the
1726		 * current txg so that the "stubby" block can be removed
1727		 * by zil_sync().
1728		 */
1729		txg_wait_synced(spa->spa_dsl_pool, 0);
1730	}
1731	return (error);
1732}
1733
1734static void
1735spa_aux_check_removed(spa_aux_vdev_t *sav)
1736{
1737	int i;
1738
1739	for (i = 0; i < sav->sav_count; i++)
1740		spa_check_removed(sav->sav_vdevs[i]);
1741}
1742
1743void
1744spa_claim_notify(zio_t *zio)
1745{
1746	spa_t *spa = zio->io_spa;
1747
1748	if (zio->io_error)
1749		return;
1750
1751	mutex_enter(&spa->spa_props_lock);	/* any mutex will do */
1752	if (spa->spa_claim_max_txg < zio->io_bp->blk_birth)
1753		spa->spa_claim_max_txg = zio->io_bp->blk_birth;
1754	mutex_exit(&spa->spa_props_lock);
1755}
1756
1757typedef struct spa_load_error {
1758	uint64_t	sle_meta_count;
1759	uint64_t	sle_data_count;
1760} spa_load_error_t;
1761
1762static void
1763spa_load_verify_done(zio_t *zio)
1764{
1765	blkptr_t *bp = zio->io_bp;
1766	spa_load_error_t *sle = zio->io_private;
1767	dmu_object_type_t type = BP_GET_TYPE(bp);
1768	int error = zio->io_error;
1769
1770	if (error) {
1771		if ((BP_GET_LEVEL(bp) != 0 || DMU_OT_IS_METADATA(type)) &&
1772		    type != DMU_OT_INTENT_LOG)
1773			atomic_add_64(&sle->sle_meta_count, 1);
1774		else
1775			atomic_add_64(&sle->sle_data_count, 1);
1776	}
1777	zio_data_buf_free(zio->io_data, zio->io_size);
1778}
1779
1780/*ARGSUSED*/
1781static int
1782spa_load_verify_cb(spa_t *spa, zilog_t *zilog, const blkptr_t *bp,
1783    arc_buf_t *pbuf, const zbookmark_t *zb, const dnode_phys_t *dnp, void *arg)
1784{
1785	if (bp != NULL) {
1786		zio_t *rio = arg;
1787		size_t size = BP_GET_PSIZE(bp);
1788		void *data = zio_data_buf_alloc(size);
1789
1790		zio_nowait(zio_read(rio, spa, bp, data, size,
1791		    spa_load_verify_done, rio->io_private, ZIO_PRIORITY_SCRUB,
1792		    ZIO_FLAG_SPECULATIVE | ZIO_FLAG_CANFAIL |
1793		    ZIO_FLAG_SCRUB | ZIO_FLAG_RAW, zb));
1794	}
1795	return (0);
1796}
1797
1798static int
1799spa_load_verify(spa_t *spa)
1800{
1801	zio_t *rio;
1802	spa_load_error_t sle = { 0 };
1803	zpool_rewind_policy_t policy;
1804	boolean_t verify_ok = B_FALSE;
1805	int error;
1806
1807	zpool_get_rewind_policy(spa->spa_config, &policy);
1808
1809	if (policy.zrp_request & ZPOOL_NEVER_REWIND)
1810		return (0);
1811
1812	rio = zio_root(spa, NULL, &sle,
1813	    ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE);
1814
1815	error = traverse_pool(spa, spa->spa_verify_min_txg,
1816	    TRAVERSE_PRE | TRAVERSE_PREFETCH, spa_load_verify_cb, rio);
1817
1818	(void) zio_wait(rio);
1819
1820	spa->spa_load_meta_errors = sle.sle_meta_count;
1821	spa->spa_load_data_errors = sle.sle_data_count;
1822
1823	if (!error && sle.sle_meta_count <= policy.zrp_maxmeta &&
1824	    sle.sle_data_count <= policy.zrp_maxdata) {
1825		int64_t loss = 0;
1826
1827		verify_ok = B_TRUE;
1828		spa->spa_load_txg = spa->spa_uberblock.ub_txg;
1829		spa->spa_load_txg_ts = spa->spa_uberblock.ub_timestamp;
1830
1831		loss = spa->spa_last_ubsync_txg_ts - spa->spa_load_txg_ts;
1832		VERIFY(nvlist_add_uint64(spa->spa_load_info,
1833		    ZPOOL_CONFIG_LOAD_TIME, spa->spa_load_txg_ts) == 0);
1834		VERIFY(nvlist_add_int64(spa->spa_load_info,
1835		    ZPOOL_CONFIG_REWIND_TIME, loss) == 0);
1836		VERIFY(nvlist_add_uint64(spa->spa_load_info,
1837		    ZPOOL_CONFIG_LOAD_DATA_ERRORS, sle.sle_data_count) == 0);
1838	} else {
1839		spa->spa_load_max_txg = spa->spa_uberblock.ub_txg;
1840	}
1841
1842	if (error) {
1843		if (error != ENXIO && error != EIO)
1844			error = EIO;
1845		return (error);
1846	}
1847
1848	return (verify_ok ? 0 : EIO);
1849}
1850
1851/*
1852 * Find a value in the pool props object.
1853 */
1854static void
1855spa_prop_find(spa_t *spa, zpool_prop_t prop, uint64_t *val)
1856{
1857	(void) zap_lookup(spa->spa_meta_objset, spa->spa_pool_props_object,
1858	    zpool_prop_to_name(prop), sizeof (uint64_t), 1, val);
1859}
1860
1861/*
1862 * Find a value in the pool directory object.
1863 */
1864static int
1865spa_dir_prop(spa_t *spa, const char *name, uint64_t *val)
1866{
1867	return (zap_lookup(spa->spa_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
1868	    name, sizeof (uint64_t), 1, val));
1869}
1870
1871static int
1872spa_vdev_err(vdev_t *vdev, vdev_aux_t aux, int err)
1873{
1874	vdev_set_state(vdev, B_TRUE, VDEV_STATE_CANT_OPEN, aux);
1875	return (err);
1876}
1877
1878/*
1879 * Fix up config after a partly-completed split.  This is done with the
1880 * ZPOOL_CONFIG_SPLIT nvlist.  Both the splitting pool and the split-off
1881 * pool have that entry in their config, but only the splitting one contains
1882 * a list of all the guids of the vdevs that are being split off.
1883 *
1884 * This function determines what to do with that list: either rejoin
1885 * all the disks to the pool, or complete the splitting process.  To attempt
1886 * the rejoin, each disk that is offlined is marked online again, and
1887 * we do a reopen() call.  If the vdev label for every disk that was
1888 * marked online indicates it was successfully split off (VDEV_AUX_SPLIT_POOL)
1889 * then we call vdev_split() on each disk, and complete the split.
1890 *
1891 * Otherwise we leave the config alone, with all the vdevs in place in
1892 * the original pool.
1893 */
1894static void
1895spa_try_repair(spa_t *spa, nvlist_t *config)
1896{
1897	uint_t extracted;
1898	uint64_t *glist;
1899	uint_t i, gcount;
1900	nvlist_t *nvl;
1901	vdev_t **vd;
1902	boolean_t attempt_reopen;
1903
1904	if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_SPLIT, &nvl) != 0)
1905		return;
1906
1907	/* check that the config is complete */
1908	if (nvlist_lookup_uint64_array(nvl, ZPOOL_CONFIG_SPLIT_LIST,
1909	    &glist, &gcount) != 0)
1910		return;
1911
1912	vd = kmem_zalloc(gcount * sizeof (vdev_t *), KM_SLEEP);
1913
1914	/* attempt to online all the vdevs & validate */
1915	attempt_reopen = B_TRUE;
1916	for (i = 0; i < gcount; i++) {
1917		if (glist[i] == 0)	/* vdev is hole */
1918			continue;
1919
1920		vd[i] = spa_lookup_by_guid(spa, glist[i], B_FALSE);
1921		if (vd[i] == NULL) {
1922			/*
1923			 * Don't bother attempting to reopen the disks;
1924			 * just do the split.
1925			 */
1926			attempt_reopen = B_FALSE;
1927		} else {
1928			/* attempt to re-online it */
1929			vd[i]->vdev_offline = B_FALSE;
1930		}
1931	}
1932
1933	if (attempt_reopen) {
1934		vdev_reopen(spa->spa_root_vdev);
1935
1936		/* check each device to see what state it's in */
1937		for (extracted = 0, i = 0; i < gcount; i++) {
1938			if (vd[i] != NULL &&
1939			    vd[i]->vdev_stat.vs_aux != VDEV_AUX_SPLIT_POOL)
1940				break;
1941			++extracted;
1942		}
1943	}
1944
1945	/*
1946	 * If every disk has been moved to the new pool, or if we never
1947	 * even attempted to look at them, then we split them off for
1948	 * good.
1949	 */
1950	if (!attempt_reopen || gcount == extracted) {
1951		for (i = 0; i < gcount; i++)
1952			if (vd[i] != NULL)
1953				vdev_split(vd[i]);
1954		vdev_reopen(spa->spa_root_vdev);
1955	}
1956
1957	kmem_free(vd, gcount * sizeof (vdev_t *));
1958}
1959
1960static int
1961spa_load(spa_t *spa, spa_load_state_t state, spa_import_type_t type,
1962    boolean_t mosconfig)
1963{
1964	nvlist_t *config = spa->spa_config;
1965	char *ereport = FM_EREPORT_ZFS_POOL;
1966	char *comment;
1967	int error;
1968	uint64_t pool_guid;
1969	nvlist_t *nvl;
1970
1971	if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_GUID, &pool_guid))
1972		return (EINVAL);
1973
1974	ASSERT(spa->spa_comment == NULL);
1975	if (nvlist_lookup_string(config, ZPOOL_CONFIG_COMMENT, &comment) == 0)
1976		spa->spa_comment = spa_strdup(comment);
1977
1978	/*
1979	 * Versioning wasn't explicitly added to the label until later, so if
1980	 * it's not present treat it as the initial version.
1981	 */
1982	if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_VERSION,
1983	    &spa->spa_ubsync.ub_version) != 0)
1984		spa->spa_ubsync.ub_version = SPA_VERSION_INITIAL;
1985
1986	(void) nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_TXG,
1987	    &spa->spa_config_txg);
1988
1989	if ((state == SPA_LOAD_IMPORT || state == SPA_LOAD_TRYIMPORT) &&
1990	    spa_guid_exists(pool_guid, 0)) {
1991		error = EEXIST;
1992	} else {
1993		spa->spa_config_guid = pool_guid;
1994
1995		if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_SPLIT,
1996		    &nvl) == 0) {
1997			VERIFY(nvlist_dup(nvl, &spa->spa_config_splitting,
1998			    KM_SLEEP) == 0);
1999		}
2000
2001		nvlist_free(spa->spa_load_info);
2002		spa->spa_load_info = fnvlist_alloc();
2003
2004		gethrestime(&spa->spa_loaded_ts);
2005		error = spa_load_impl(spa, pool_guid, config, state, type,
2006		    mosconfig, &ereport);
2007	}
2008
2009	spa->spa_minref = refcount_count(&spa->spa_refcount);
2010	if (error) {
2011		if (error != EEXIST) {
2012			spa->spa_loaded_ts.tv_sec = 0;
2013			spa->spa_loaded_ts.tv_nsec = 0;
2014		}
2015		if (error != EBADF) {
2016			zfs_ereport_post(ereport, spa, NULL, NULL, 0, 0);
2017		}
2018	}
2019	spa->spa_load_state = error ? SPA_LOAD_ERROR : SPA_LOAD_NONE;
2020	spa->spa_ena = 0;
2021
2022	return (error);
2023}
2024
2025/*
2026 * Load an existing storage pool, using the pool's builtin spa_config as a
2027 * source of configuration information.
2028 */
2029static int
2030spa_load_impl(spa_t *spa, uint64_t pool_guid, nvlist_t *config,
2031    spa_load_state_t state, spa_import_type_t type, boolean_t mosconfig,
2032    char **ereport)
2033{
2034	int error = 0;
2035	nvlist_t *nvroot = NULL;
2036	nvlist_t *label;
2037	vdev_t *rvd;
2038	uberblock_t *ub = &spa->spa_uberblock;
2039	uint64_t children, config_cache_txg = spa->spa_config_txg;
2040	int orig_mode = spa->spa_mode;
2041	int parse;
2042	uint64_t obj;
2043	boolean_t missing_feat_write = B_FALSE;
2044
2045	/*
2046	 * If this is an untrusted config, access the pool in read-only mode.
2047	 * This prevents things like resilvering recently removed devices.
2048	 */
2049	if (!mosconfig)
2050		spa->spa_mode = FREAD;
2051
2052	ASSERT(MUTEX_HELD(&spa_namespace_lock));
2053
2054	spa->spa_load_state = state;
2055
2056	if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, &nvroot))
2057		return (EINVAL);
2058
2059	parse = (type == SPA_IMPORT_EXISTING ?
2060	    VDEV_ALLOC_LOAD : VDEV_ALLOC_SPLIT);
2061
2062	/*
2063	 * Create "The Godfather" zio to hold all async IOs
2064	 */
2065	spa->spa_async_zio_root = zio_root(spa, NULL, NULL,
2066	    ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE | ZIO_FLAG_GODFATHER);
2067
2068	/*
2069	 * Parse the configuration into a vdev tree.  We explicitly set the
2070	 * value that will be returned by spa_version() since parsing the
2071	 * configuration requires knowing the version number.
2072	 */
2073	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
2074	error = spa_config_parse(spa, &rvd, nvroot, NULL, 0, parse);
2075	spa_config_exit(spa, SCL_ALL, FTAG);
2076
2077	if (error != 0)
2078		return (error);
2079
2080	ASSERT(spa->spa_root_vdev == rvd);
2081
2082	if (type != SPA_IMPORT_ASSEMBLE) {
2083		ASSERT(spa_guid(spa) == pool_guid);
2084	}
2085
2086	/*
2087	 * Try to open all vdevs, loading each label in the process.
2088	 */
2089	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
2090	error = vdev_open(rvd);
2091	spa_config_exit(spa, SCL_ALL, FTAG);
2092	if (error != 0)
2093		return (error);
2094
2095	/*
2096	 * We need to validate the vdev labels against the configuration that
2097	 * we have in hand, which is dependent on the setting of mosconfig. If
2098	 * mosconfig is true then we're validating the vdev labels based on
2099	 * that config.  Otherwise, we're validating against the cached config
2100	 * (zpool.cache) that was read when we loaded the zfs module, and then
2101	 * later we will recursively call spa_load() and validate against
2102	 * the vdev config.
2103	 *
2104	 * If we're assembling a new pool that's been split off from an
2105	 * existing pool, the labels haven't yet been updated so we skip
2106	 * validation for now.
2107	 */
2108	if (type != SPA_IMPORT_ASSEMBLE) {
2109		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
2110		error = vdev_validate(rvd, mosconfig);
2111		spa_config_exit(spa, SCL_ALL, FTAG);
2112
2113		if (error != 0)
2114			return (error);
2115
2116		if (rvd->vdev_state <= VDEV_STATE_CANT_OPEN)
2117			return (ENXIO);
2118	}
2119
2120	/*
2121	 * Find the best uberblock.
2122	 */
2123	vdev_uberblock_load(rvd, ub, &label);
2124
2125	/*
2126	 * If we weren't able to find a single valid uberblock, return failure.
2127	 */
2128	if (ub->ub_txg == 0) {
2129		nvlist_free(label);
2130		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, ENXIO));
2131	}
2132
2133	/*
2134	 * If the pool has an unsupported version we can't open it.
2135	 */
2136	if (!SPA_VERSION_IS_SUPPORTED(ub->ub_version)) {
2137		nvlist_free(label);
2138		return (spa_vdev_err(rvd, VDEV_AUX_VERSION_NEWER, ENOTSUP));
2139	}
2140
2141	if (ub->ub_version >= SPA_VERSION_FEATURES) {
2142		nvlist_t *features;
2143
2144		/*
2145		 * If we weren't able to find what's necessary for reading the
2146		 * MOS in the label, return failure.
2147		 */
2148		if (label == NULL || nvlist_lookup_nvlist(label,
2149		    ZPOOL_CONFIG_FEATURES_FOR_READ, &features) != 0) {
2150			nvlist_free(label);
2151			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA,
2152			    ENXIO));
2153		}
2154
2155		/*
2156		 * Update our in-core representation with the definitive values
2157		 * from the label.
2158		 */
2159		nvlist_free(spa->spa_label_features);
2160		VERIFY(nvlist_dup(features, &spa->spa_label_features, 0) == 0);
2161	}
2162
2163	nvlist_free(label);
2164
2165	/*
2166	 * Look through entries in the label nvlist's features_for_read. If
2167	 * there is a feature listed there which we don't understand then we
2168	 * cannot open a pool.
2169	 */
2170	if (ub->ub_version >= SPA_VERSION_FEATURES) {
2171		nvlist_t *unsup_feat;
2172
2173		VERIFY(nvlist_alloc(&unsup_feat, NV_UNIQUE_NAME, KM_SLEEP) ==
2174		    0);
2175
2176		for (nvpair_t *nvp = nvlist_next_nvpair(spa->spa_label_features,
2177		    NULL); nvp != NULL;
2178		    nvp = nvlist_next_nvpair(spa->spa_label_features, nvp)) {
2179			if (!zfeature_is_supported(nvpair_name(nvp))) {
2180				VERIFY(nvlist_add_string(unsup_feat,
2181				    nvpair_name(nvp), "") == 0);
2182			}
2183		}
2184
2185		if (!nvlist_empty(unsup_feat)) {
2186			VERIFY(nvlist_add_nvlist(spa->spa_load_info,
2187			    ZPOOL_CONFIG_UNSUP_FEAT, unsup_feat) == 0);
2188			nvlist_free(unsup_feat);
2189			return (spa_vdev_err(rvd, VDEV_AUX_UNSUP_FEAT,
2190			    ENOTSUP));
2191		}
2192
2193		nvlist_free(unsup_feat);
2194	}
2195
2196	/*
2197	 * If the vdev guid sum doesn't match the uberblock, we have an
2198	 * incomplete configuration.  We first check to see if the pool
2199	 * is aware of the complete config (i.e ZPOOL_CONFIG_VDEV_CHILDREN).
2200	 * If it is, defer the vdev_guid_sum check till later so we
2201	 * can handle missing vdevs.
2202	 */
2203	if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_VDEV_CHILDREN,
2204	    &children) != 0 && mosconfig && type != SPA_IMPORT_ASSEMBLE &&
2205	    rvd->vdev_guid_sum != ub->ub_guid_sum)
2206		return (spa_vdev_err(rvd, VDEV_AUX_BAD_GUID_SUM, ENXIO));
2207
2208	if (type != SPA_IMPORT_ASSEMBLE && spa->spa_config_splitting) {
2209		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
2210		spa_try_repair(spa, config);
2211		spa_config_exit(spa, SCL_ALL, FTAG);
2212		nvlist_free(spa->spa_config_splitting);
2213		spa->spa_config_splitting = NULL;
2214	}
2215
2216	/*
2217	 * Initialize internal SPA structures.
2218	 */
2219	spa->spa_state = POOL_STATE_ACTIVE;
2220	spa->spa_ubsync = spa->spa_uberblock;
2221	spa->spa_verify_min_txg = spa->spa_extreme_rewind ?
2222	    TXG_INITIAL - 1 : spa_last_synced_txg(spa) - TXG_DEFER_SIZE - 1;
2223	spa->spa_first_txg = spa->spa_last_ubsync_txg ?
2224	    spa->spa_last_ubsync_txg : spa_last_synced_txg(spa) + 1;
2225	spa->spa_claim_max_txg = spa->spa_first_txg;
2226	spa->spa_prev_software_version = ub->ub_software_version;
2227
2228	error = dsl_pool_init(spa, spa->spa_first_txg, &spa->spa_dsl_pool);
2229	if (error)
2230		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2231	spa->spa_meta_objset = spa->spa_dsl_pool->dp_meta_objset;
2232
2233	if (spa_dir_prop(spa, DMU_POOL_CONFIG, &spa->spa_config_object) != 0)
2234		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2235
2236	if (spa_version(spa) >= SPA_VERSION_FEATURES) {
2237		boolean_t missing_feat_read = B_FALSE;
2238		nvlist_t *unsup_feat, *enabled_feat;
2239
2240		if (spa_dir_prop(spa, DMU_POOL_FEATURES_FOR_READ,
2241		    &spa->spa_feat_for_read_obj) != 0) {
2242			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2243		}
2244
2245		if (spa_dir_prop(spa, DMU_POOL_FEATURES_FOR_WRITE,
2246		    &spa->spa_feat_for_write_obj) != 0) {
2247			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2248		}
2249
2250		if (spa_dir_prop(spa, DMU_POOL_FEATURE_DESCRIPTIONS,
2251		    &spa->spa_feat_desc_obj) != 0) {
2252			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2253		}
2254
2255		enabled_feat = fnvlist_alloc();
2256		unsup_feat = fnvlist_alloc();
2257
2258		if (!feature_is_supported(spa->spa_meta_objset,
2259		    spa->spa_feat_for_read_obj, spa->spa_feat_desc_obj,
2260		    unsup_feat, enabled_feat))
2261			missing_feat_read = B_TRUE;
2262
2263		if (spa_writeable(spa) || state == SPA_LOAD_TRYIMPORT) {
2264			if (!feature_is_supported(spa->spa_meta_objset,
2265			    spa->spa_feat_for_write_obj, spa->spa_feat_desc_obj,
2266			    unsup_feat, enabled_feat)) {
2267				missing_feat_write = B_TRUE;
2268			}
2269		}
2270
2271		fnvlist_add_nvlist(spa->spa_load_info,
2272		    ZPOOL_CONFIG_ENABLED_FEAT, enabled_feat);
2273
2274		if (!nvlist_empty(unsup_feat)) {
2275			fnvlist_add_nvlist(spa->spa_load_info,
2276			    ZPOOL_CONFIG_UNSUP_FEAT, unsup_feat);
2277		}
2278
2279		fnvlist_free(enabled_feat);
2280		fnvlist_free(unsup_feat);
2281
2282		if (!missing_feat_read) {
2283			fnvlist_add_boolean(spa->spa_load_info,
2284			    ZPOOL_CONFIG_CAN_RDONLY);
2285		}
2286
2287		/*
2288		 * If the state is SPA_LOAD_TRYIMPORT, our objective is
2289		 * twofold: to determine whether the pool is available for
2290		 * import in read-write mode and (if it is not) whether the
2291		 * pool is available for import in read-only mode. If the pool
2292		 * is available for import in read-write mode, it is displayed
2293		 * as available in userland; if it is not available for import
2294		 * in read-only mode, it is displayed as unavailable in
2295		 * userland. If the pool is available for import in read-only
2296		 * mode but not read-write mode, it is displayed as unavailable
2297		 * in userland with a special note that the pool is actually
2298		 * available for open in read-only mode.
2299		 *
2300		 * As a result, if the state is SPA_LOAD_TRYIMPORT and we are
2301		 * missing a feature for write, we must first determine whether
2302		 * the pool can be opened read-only before returning to
2303		 * userland in order to know whether to display the
2304		 * abovementioned note.
2305		 */
2306		if (missing_feat_read || (missing_feat_write &&
2307		    spa_writeable(spa))) {
2308			return (spa_vdev_err(rvd, VDEV_AUX_UNSUP_FEAT,
2309			    ENOTSUP));
2310		}
2311	}
2312
2313	spa->spa_is_initializing = B_TRUE;
2314	error = dsl_pool_open(spa->spa_dsl_pool);
2315	spa->spa_is_initializing = B_FALSE;
2316	if (error != 0)
2317		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2318
2319	if (!mosconfig) {
2320		uint64_t hostid;
2321		nvlist_t *policy = NULL, *nvconfig;
2322
2323		if (load_nvlist(spa, spa->spa_config_object, &nvconfig) != 0)
2324			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2325
2326		if (!spa_is_root(spa) && nvlist_lookup_uint64(nvconfig,
2327		    ZPOOL_CONFIG_HOSTID, &hostid) == 0) {
2328			char *hostname;
2329			unsigned long myhostid = 0;
2330
2331			VERIFY(nvlist_lookup_string(nvconfig,
2332			    ZPOOL_CONFIG_HOSTNAME, &hostname) == 0);
2333
2334#ifdef	_KERNEL
2335			myhostid = zone_get_hostid(NULL);
2336#else	/* _KERNEL */
2337			/*
2338			 * We're emulating the system's hostid in userland, so
2339			 * we can't use zone_get_hostid().
2340			 */
2341			(void) ddi_strtoul(hw_serial, NULL, 10, &myhostid);
2342#endif	/* _KERNEL */
2343			if (check_hostid && hostid != 0 && myhostid != 0 &&
2344			    hostid != myhostid) {
2345				nvlist_free(nvconfig);
2346				cmn_err(CE_WARN, "pool '%s' could not be "
2347				    "loaded as it was last accessed by "
2348				    "another system (host: %s hostid: 0x%lx). "
2349				    "See: http://illumos.org/msg/ZFS-8000-EY",
2350				    spa_name(spa), hostname,
2351				    (unsigned long)hostid);
2352				return (EBADF);
2353			}
2354		}
2355		if (nvlist_lookup_nvlist(spa->spa_config,
2356		    ZPOOL_REWIND_POLICY, &policy) == 0)
2357			VERIFY(nvlist_add_nvlist(nvconfig,
2358			    ZPOOL_REWIND_POLICY, policy) == 0);
2359
2360		spa_config_set(spa, nvconfig);
2361		spa_unload(spa);
2362		spa_deactivate(spa);
2363		spa_activate(spa, orig_mode);
2364
2365		return (spa_load(spa, state, SPA_IMPORT_EXISTING, B_TRUE));
2366	}
2367
2368	if (spa_dir_prop(spa, DMU_POOL_SYNC_BPOBJ, &obj) != 0)
2369		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2370	error = bpobj_open(&spa->spa_deferred_bpobj, spa->spa_meta_objset, obj);
2371	if (error != 0)
2372		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2373
2374	/*
2375	 * Load the bit that tells us to use the new accounting function
2376	 * (raid-z deflation).  If we have an older pool, this will not
2377	 * be present.
2378	 */
2379	error = spa_dir_prop(spa, DMU_POOL_DEFLATE, &spa->spa_deflate);
2380	if (error != 0 && error != ENOENT)
2381		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2382
2383	error = spa_dir_prop(spa, DMU_POOL_CREATION_VERSION,
2384	    &spa->spa_creation_version);
2385	if (error != 0 && error != ENOENT)
2386		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2387
2388	/*
2389	 * Load the persistent error log.  If we have an older pool, this will
2390	 * not be present.
2391	 */
2392	error = spa_dir_prop(spa, DMU_POOL_ERRLOG_LAST, &spa->spa_errlog_last);
2393	if (error != 0 && error != ENOENT)
2394		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2395
2396	error = spa_dir_prop(spa, DMU_POOL_ERRLOG_SCRUB,
2397	    &spa->spa_errlog_scrub);
2398	if (error != 0 && error != ENOENT)
2399		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2400
2401	/*
2402	 * Load the history object.  If we have an older pool, this
2403	 * will not be present.
2404	 */
2405	error = spa_dir_prop(spa, DMU_POOL_HISTORY, &spa->spa_history);
2406	if (error != 0 && error != ENOENT)
2407		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2408
2409	/*
2410	 * If we're assembling the pool from the split-off vdevs of
2411	 * an existing pool, we don't want to attach the spares & cache
2412	 * devices.
2413	 */
2414
2415	/*
2416	 * Load any hot spares for this pool.
2417	 */
2418	error = spa_dir_prop(spa, DMU_POOL_SPARES, &spa->spa_spares.sav_object);
2419	if (error != 0 && error != ENOENT)
2420		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2421	if (error == 0 && type != SPA_IMPORT_ASSEMBLE) {
2422		ASSERT(spa_version(spa) >= SPA_VERSION_SPARES);
2423		if (load_nvlist(spa, spa->spa_spares.sav_object,
2424		    &spa->spa_spares.sav_config) != 0)
2425			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2426
2427		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
2428		spa_load_spares(spa);
2429		spa_config_exit(spa, SCL_ALL, FTAG);
2430	} else if (error == 0) {
2431		spa->spa_spares.sav_sync = B_TRUE;
2432	}
2433
2434	/*
2435	 * Load any level 2 ARC devices for this pool.
2436	 */
2437	error = spa_dir_prop(spa, DMU_POOL_L2CACHE,
2438	    &spa->spa_l2cache.sav_object);
2439	if (error != 0 && error != ENOENT)
2440		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2441	if (error == 0 && type != SPA_IMPORT_ASSEMBLE) {
2442		ASSERT(spa_version(spa) >= SPA_VERSION_L2CACHE);
2443		if (load_nvlist(spa, spa->spa_l2cache.sav_object,
2444		    &spa->spa_l2cache.sav_config) != 0)
2445			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2446
2447		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
2448		spa_load_l2cache(spa);
2449		spa_config_exit(spa, SCL_ALL, FTAG);
2450	} else if (error == 0) {
2451		spa->spa_l2cache.sav_sync = B_TRUE;
2452	}
2453
2454	spa->spa_delegation = zpool_prop_default_numeric(ZPOOL_PROP_DELEGATION);
2455
2456	error = spa_dir_prop(spa, DMU_POOL_PROPS, &spa->spa_pool_props_object);
2457	if (error && error != ENOENT)
2458		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2459
2460	if (error == 0) {
2461		uint64_t autoreplace;
2462
2463		spa_prop_find(spa, ZPOOL_PROP_BOOTFS, &spa->spa_bootfs);
2464		spa_prop_find(spa, ZPOOL_PROP_AUTOREPLACE, &autoreplace);
2465		spa_prop_find(spa, ZPOOL_PROP_DELEGATION, &spa->spa_delegation);
2466		spa_prop_find(spa, ZPOOL_PROP_FAILUREMODE, &spa->spa_failmode);
2467		spa_prop_find(spa, ZPOOL_PROP_AUTOEXPAND, &spa->spa_autoexpand);
2468		spa_prop_find(spa, ZPOOL_PROP_DEDUPDITTO,
2469		    &spa->spa_dedup_ditto);
2470
2471		spa->spa_autoreplace = (autoreplace != 0);
2472	}
2473
2474	/*
2475	 * If the 'autoreplace' property is set, then post a resource notifying
2476	 * the ZFS DE that it should not issue any faults for unopenable
2477	 * devices.  We also iterate over the vdevs, and post a sysevent for any
2478	 * unopenable vdevs so that the normal autoreplace handler can take
2479	 * over.
2480	 */
2481	if (spa->spa_autoreplace && state != SPA_LOAD_TRYIMPORT) {
2482		spa_check_removed(spa->spa_root_vdev);
2483		/*
2484		 * For the import case, this is done in spa_import(), because
2485		 * at this point we're using the spare definitions from
2486		 * the MOS config, not necessarily from the userland config.
2487		 */
2488		if (state != SPA_LOAD_IMPORT) {
2489			spa_aux_check_removed(&spa->spa_spares);
2490			spa_aux_check_removed(&spa->spa_l2cache);
2491		}
2492	}
2493
2494	/*
2495	 * Load the vdev state for all toplevel vdevs.
2496	 */
2497	vdev_load(rvd);
2498
2499	/*
2500	 * Propagate the leaf DTLs we just loaded all the way up the tree.
2501	 */
2502	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
2503	vdev_dtl_reassess(rvd, 0, 0, B_FALSE);
2504	spa_config_exit(spa, SCL_ALL, FTAG);
2505
2506	/*
2507	 * Load the DDTs (dedup tables).
2508	 */
2509	error = ddt_load(spa);
2510	if (error != 0)
2511		return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2512
2513	spa_update_dspace(spa);
2514
2515	/*
2516	 * Validate the config, using the MOS config to fill in any
2517	 * information which might be missing.  If we fail to validate
2518	 * the config then declare the pool unfit for use. If we're
2519	 * assembling a pool from a split, the log is not transferred
2520	 * over.
2521	 */
2522	if (type != SPA_IMPORT_ASSEMBLE) {
2523		nvlist_t *nvconfig;
2524
2525		if (load_nvlist(spa, spa->spa_config_object, &nvconfig) != 0)
2526			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA, EIO));
2527
2528		if (!spa_config_valid(spa, nvconfig)) {
2529			nvlist_free(nvconfig);
2530			return (spa_vdev_err(rvd, VDEV_AUX_BAD_GUID_SUM,
2531			    ENXIO));
2532		}
2533		nvlist_free(nvconfig);
2534
2535		/*
2536		 * Now that we've validated the config, check the state of the
2537		 * root vdev.  If it can't be opened, it indicates one or
2538		 * more toplevel vdevs are faulted.
2539		 */
2540		if (rvd->vdev_state <= VDEV_STATE_CANT_OPEN)
2541			return (ENXIO);
2542
2543		if (spa_check_logs(spa)) {
2544			*ereport = FM_EREPORT_ZFS_LOG_REPLAY;
2545			return (spa_vdev_err(rvd, VDEV_AUX_BAD_LOG, ENXIO));
2546		}
2547	}
2548
2549	if (missing_feat_write) {
2550		ASSERT(state == SPA_LOAD_TRYIMPORT);
2551
2552		/*
2553		 * At this point, we know that we can open the pool in
2554		 * read-only mode but not read-write mode. We now have enough
2555		 * information and can return to userland.
2556		 */
2557		return (spa_vdev_err(rvd, VDEV_AUX_UNSUP_FEAT, ENOTSUP));
2558	}
2559
2560	/*
2561	 * We've successfully opened the pool, verify that we're ready
2562	 * to start pushing transactions.
2563	 */
2564	if (state != SPA_LOAD_TRYIMPORT) {
2565		if (error = spa_load_verify(spa))
2566			return (spa_vdev_err(rvd, VDEV_AUX_CORRUPT_DATA,
2567			    error));
2568	}
2569
2570	if (spa_writeable(spa) && (state == SPA_LOAD_RECOVER ||
2571	    spa->spa_load_max_txg == UINT64_MAX)) {
2572		dmu_tx_t *tx;
2573		int need_update = B_FALSE;
2574
2575		ASSERT(state != SPA_LOAD_TRYIMPORT);
2576
2577		/*
2578		 * Claim log blocks that haven't been committed yet.
2579		 * This must all happen in a single txg.
2580		 * Note: spa_claim_max_txg is updated by spa_claim_notify(),
2581		 * invoked from zil_claim_log_block()'s i/o done callback.
2582		 * Price of rollback is that we abandon the log.
2583		 */
2584		spa->spa_claiming = B_TRUE;
2585
2586		tx = dmu_tx_create_assigned(spa_get_dsl(spa),
2587		    spa_first_txg(spa));
2588		(void) dmu_objset_find(spa_name(spa),
2589		    zil_claim, tx, DS_FIND_CHILDREN);
2590		dmu_tx_commit(tx);
2591
2592		spa->spa_claiming = B_FALSE;
2593
2594		spa_set_log_state(spa, SPA_LOG_GOOD);
2595		spa->spa_sync_on = B_TRUE;
2596		txg_sync_start(spa->spa_dsl_pool);
2597
2598		/*
2599		 * Wait for all claims to sync.  We sync up to the highest
2600		 * claimed log block birth time so that claimed log blocks
2601		 * don't appear to be from the future.  spa_claim_max_txg
2602		 * will have been set for us by either zil_check_log_chain()
2603		 * (invoked from spa_check_logs()) or zil_claim() above.
2604		 */
2605		txg_wait_synced(spa->spa_dsl_pool, spa->spa_claim_max_txg);
2606
2607		/*
2608		 * If the config cache is stale, or we have uninitialized
2609		 * metaslabs (see spa_vdev_add()), then update the config.
2610		 *
2611		 * If this is a verbatim import, trust the current
2612		 * in-core spa_config and update the disk labels.
2613		 */
2614		if (config_cache_txg != spa->spa_config_txg ||
2615		    state == SPA_LOAD_IMPORT ||
2616		    state == SPA_LOAD_RECOVER ||
2617		    (spa->spa_import_flags & ZFS_IMPORT_VERBATIM))
2618			need_update = B_TRUE;
2619
2620		for (int c = 0; c < rvd->vdev_children; c++)
2621			if (rvd->vdev_child[c]->vdev_ms_array == 0)
2622				need_update = B_TRUE;
2623
2624		/*
2625		 * Update the config cache asychronously in case we're the
2626		 * root pool, in which case the config cache isn't writable yet.
2627		 */
2628		if (need_update)
2629			spa_async_request(spa, SPA_ASYNC_CONFIG_UPDATE);
2630
2631		/*
2632		 * Check all DTLs to see if anything needs resilvering.
2633		 */
2634		if (!dsl_scan_resilvering(spa->spa_dsl_pool) &&
2635		    vdev_resilver_needed(rvd, NULL, NULL))
2636			spa_async_request(spa, SPA_ASYNC_RESILVER);
2637
2638		/*
2639		 * Delete any inconsistent datasets.
2640		 */
2641		(void) dmu_objset_find(spa_name(spa),
2642		    dsl_destroy_inconsistent, NULL, DS_FIND_CHILDREN);
2643
2644		/*
2645		 * Clean up any stale temporary dataset userrefs.
2646		 */
2647		dsl_pool_clean_tmp_userrefs(spa->spa_dsl_pool);
2648	}
2649
2650	return (0);
2651}
2652
2653static int
2654spa_load_retry(spa_t *spa, spa_load_state_t state, int mosconfig)
2655{
2656	int mode = spa->spa_mode;
2657
2658	spa_unload(spa);
2659	spa_deactivate(spa);
2660
2661	spa->spa_load_max_txg--;
2662
2663	spa_activate(spa, mode);
2664	spa_async_suspend(spa);
2665
2666	return (spa_load(spa, state, SPA_IMPORT_EXISTING, mosconfig));
2667}
2668
2669/*
2670 * If spa_load() fails this function will try loading prior txg's. If
2671 * 'state' is SPA_LOAD_RECOVER and one of these loads succeeds the pool
2672 * will be rewound to that txg. If 'state' is not SPA_LOAD_RECOVER this
2673 * function will not rewind the pool and will return the same error as
2674 * spa_load().
2675 */
2676static int
2677spa_load_best(spa_t *spa, spa_load_state_t state, int mosconfig,
2678    uint64_t max_request, int rewind_flags)
2679{
2680	nvlist_t *loadinfo = NULL;
2681	nvlist_t *config = NULL;
2682	int load_error, rewind_error;
2683	uint64_t safe_rewind_txg;
2684	uint64_t min_txg;
2685
2686	if (spa->spa_load_txg && state == SPA_LOAD_RECOVER) {
2687		spa->spa_load_max_txg = spa->spa_load_txg;
2688		spa_set_log_state(spa, SPA_LOG_CLEAR);
2689	} else {
2690		spa->spa_load_max_txg = max_request;
2691	}
2692
2693	load_error = rewind_error = spa_load(spa, state, SPA_IMPORT_EXISTING,
2694	    mosconfig);
2695	if (load_error == 0)
2696		return (0);
2697
2698	if (spa->spa_root_vdev != NULL)
2699		config = spa_config_generate(spa, NULL, -1ULL, B_TRUE);
2700
2701	spa->spa_last_ubsync_txg = spa->spa_uberblock.ub_txg;
2702	spa->spa_last_ubsync_txg_ts = spa->spa_uberblock.ub_timestamp;
2703
2704	if (rewind_flags & ZPOOL_NEVER_REWIND) {
2705		nvlist_free(config);
2706		return (load_error);
2707	}
2708
2709	if (state == SPA_LOAD_RECOVER) {
2710		/* Price of rolling back is discarding txgs, including log */
2711		spa_set_log_state(spa, SPA_LOG_CLEAR);
2712	} else {
2713		/*
2714		 * If we aren't rolling back save the load info from our first
2715		 * import attempt so that we can restore it after attempting
2716		 * to rewind.
2717		 */
2718		loadinfo = spa->spa_load_info;
2719		spa->spa_load_info = fnvlist_alloc();
2720	}
2721
2722	spa->spa_load_max_txg = spa->spa_last_ubsync_txg;
2723	safe_rewind_txg = spa->spa_last_ubsync_txg - TXG_DEFER_SIZE;
2724	min_txg = (rewind_flags & ZPOOL_EXTREME_REWIND) ?
2725	    TXG_INITIAL : safe_rewind_txg;
2726
2727	/*
2728	 * Continue as long as we're finding errors, we're still within
2729	 * the acceptable rewind range, and we're still finding uberblocks
2730	 */
2731	while (rewind_error && spa->spa_uberblock.ub_txg >= min_txg &&
2732	    spa->spa_uberblock.ub_txg <= spa->spa_load_max_txg) {
2733		if (spa->spa_load_max_txg < safe_rewind_txg)
2734			spa->spa_extreme_rewind = B_TRUE;
2735		rewind_error = spa_load_retry(spa, state, mosconfig);
2736	}
2737
2738	spa->spa_extreme_rewind = B_FALSE;
2739	spa->spa_load_max_txg = UINT64_MAX;
2740
2741	if (config && (rewind_error || state != SPA_LOAD_RECOVER))
2742		spa_config_set(spa, config);
2743
2744	if (state == SPA_LOAD_RECOVER) {
2745		ASSERT3P(loadinfo, ==, NULL);
2746		return (rewind_error);
2747	} else {
2748		/* Store the rewind info as part of the initial load info */
2749		fnvlist_add_nvlist(loadinfo, ZPOOL_CONFIG_REWIND_INFO,
2750		    spa->spa_load_info);
2751
2752		/* Restore the initial load info */
2753		fnvlist_free(spa->spa_load_info);
2754		spa->spa_load_info = loadinfo;
2755
2756		return (load_error);
2757	}
2758}
2759
2760/*
2761 * Pool Open/Import
2762 *
2763 * The import case is identical to an open except that the configuration is sent
2764 * down from userland, instead of grabbed from the configuration cache.  For the
2765 * case of an open, the pool configuration will exist in the
2766 * POOL_STATE_UNINITIALIZED state.
2767 *
2768 * The stats information (gen/count/ustats) is used to gather vdev statistics at
2769 * the same time open the pool, without having to keep around the spa_t in some
2770 * ambiguous state.
2771 */
2772static int
2773spa_open_common(const char *pool, spa_t **spapp, void *tag, nvlist_t *nvpolicy,
2774    nvlist_t **config)
2775{
2776	spa_t *spa;
2777	spa_load_state_t state = SPA_LOAD_OPEN;
2778	int error;
2779	int locked = B_FALSE;
2780	int firstopen = B_FALSE;
2781
2782	*spapp = NULL;
2783
2784	/*
2785	 * As disgusting as this is, we need to support recursive calls to this
2786	 * function because dsl_dir_open() is called during spa_load(), and ends
2787	 * up calling spa_open() again.  The real fix is to figure out how to
2788	 * avoid dsl_dir_open() calling this in the first place.
2789	 */
2790	if (mutex_owner(&spa_namespace_lock) != curthread) {
2791		mutex_enter(&spa_namespace_lock);
2792		locked = B_TRUE;
2793	}
2794
2795	if ((spa = spa_lookup(pool)) == NULL) {
2796		if (locked)
2797			mutex_exit(&spa_namespace_lock);
2798		return (ENOENT);
2799	}
2800
2801	if (spa->spa_state == POOL_STATE_UNINITIALIZED) {
2802		zpool_rewind_policy_t policy;
2803
2804		firstopen = B_TRUE;
2805
2806		zpool_get_rewind_policy(nvpolicy ? nvpolicy : spa->spa_config,
2807		    &policy);
2808		if (policy.zrp_request & ZPOOL_DO_REWIND)
2809			state = SPA_LOAD_RECOVER;
2810
2811		spa_activate(spa, spa_mode_global);
2812
2813		if (state != SPA_LOAD_RECOVER)
2814			spa->spa_last_ubsync_txg = spa->spa_load_txg = 0;
2815
2816		error = spa_load_best(spa, state, B_FALSE, policy.zrp_txg,
2817		    policy.zrp_request);
2818
2819		if (error == EBADF) {
2820			/*
2821			 * If vdev_validate() returns failure (indicated by
2822			 * EBADF), it indicates that one of the vdevs indicates
2823			 * that the pool has been exported or destroyed.  If
2824			 * this is the case, the config cache is out of sync and
2825			 * we should remove the pool from the namespace.
2826			 */
2827			spa_unload(spa);
2828			spa_deactivate(spa);
2829			spa_config_sync(spa, B_TRUE, B_TRUE);
2830			spa_remove(spa);
2831			if (locked)
2832				mutex_exit(&spa_namespace_lock);
2833			return (ENOENT);
2834		}
2835
2836		if (error) {
2837			/*
2838			 * We can't open the pool, but we still have useful
2839			 * information: the state of each vdev after the
2840			 * attempted vdev_open().  Return this to the user.
2841			 */
2842			if (config != NULL && spa->spa_config) {
2843				VERIFY(nvlist_dup(spa->spa_config, config,
2844				    KM_SLEEP) == 0);
2845				VERIFY(nvlist_add_nvlist(*config,
2846				    ZPOOL_CONFIG_LOAD_INFO,
2847				    spa->spa_load_info) == 0);
2848			}
2849			spa_unload(spa);
2850			spa_deactivate(spa);
2851			spa->spa_last_open_failed = error;
2852			if (locked)
2853				mutex_exit(&spa_namespace_lock);
2854			*spapp = NULL;
2855			return (error);
2856		}
2857	}
2858
2859	spa_open_ref(spa, tag);
2860
2861	if (config != NULL)
2862		*config = spa_config_generate(spa, NULL, -1ULL, B_TRUE);
2863
2864	/*
2865	 * If we've recovered the pool, pass back any information we
2866	 * gathered while doing the load.
2867	 */
2868	if (state == SPA_LOAD_RECOVER) {
2869		VERIFY(nvlist_add_nvlist(*config, ZPOOL_CONFIG_LOAD_INFO,
2870		    spa->spa_load_info) == 0);
2871	}
2872
2873	if (locked) {
2874		spa->spa_last_open_failed = 0;
2875		spa->spa_last_ubsync_txg = 0;
2876		spa->spa_load_txg = 0;
2877		mutex_exit(&spa_namespace_lock);
2878#ifdef __FreeBSD__
2879#ifdef _KERNEL
2880		if (firstopen)
2881			zvol_create_minors(pool);
2882#endif
2883#endif
2884	}
2885
2886	*spapp = spa;
2887
2888	return (0);
2889}
2890
2891int
2892spa_open_rewind(const char *name, spa_t **spapp, void *tag, nvlist_t *policy,
2893    nvlist_t **config)
2894{
2895	return (spa_open_common(name, spapp, tag, policy, config));
2896}
2897
2898int
2899spa_open(const char *name, spa_t **spapp, void *tag)
2900{
2901	return (spa_open_common(name, spapp, tag, NULL, NULL));
2902}
2903
2904/*
2905 * Lookup the given spa_t, incrementing the inject count in the process,
2906 * preventing it from being exported or destroyed.
2907 */
2908spa_t *
2909spa_inject_addref(char *name)
2910{
2911	spa_t *spa;
2912
2913	mutex_enter(&spa_namespace_lock);
2914	if ((spa = spa_lookup(name)) == NULL) {
2915		mutex_exit(&spa_namespace_lock);
2916		return (NULL);
2917	}
2918	spa->spa_inject_ref++;
2919	mutex_exit(&spa_namespace_lock);
2920
2921	return (spa);
2922}
2923
2924void
2925spa_inject_delref(spa_t *spa)
2926{
2927	mutex_enter(&spa_namespace_lock);
2928	spa->spa_inject_ref--;
2929	mutex_exit(&spa_namespace_lock);
2930}
2931
2932/*
2933 * Add spares device information to the nvlist.
2934 */
2935static void
2936spa_add_spares(spa_t *spa, nvlist_t *config)
2937{
2938	nvlist_t **spares;
2939	uint_t i, nspares;
2940	nvlist_t *nvroot;
2941	uint64_t guid;
2942	vdev_stat_t *vs;
2943	uint_t vsc;
2944	uint64_t pool;
2945
2946	ASSERT(spa_config_held(spa, SCL_CONFIG, RW_READER));
2947
2948	if (spa->spa_spares.sav_count == 0)
2949		return;
2950
2951	VERIFY(nvlist_lookup_nvlist(config,
2952	    ZPOOL_CONFIG_VDEV_TREE, &nvroot) == 0);
2953	VERIFY(nvlist_lookup_nvlist_array(spa->spa_spares.sav_config,
2954	    ZPOOL_CONFIG_SPARES, &spares, &nspares) == 0);
2955	if (nspares != 0) {
2956		VERIFY(nvlist_add_nvlist_array(nvroot,
2957		    ZPOOL_CONFIG_SPARES, spares, nspares) == 0);
2958		VERIFY(nvlist_lookup_nvlist_array(nvroot,
2959		    ZPOOL_CONFIG_SPARES, &spares, &nspares) == 0);
2960
2961		/*
2962		 * Go through and find any spares which have since been
2963		 * repurposed as an active spare.  If this is the case, update
2964		 * their status appropriately.
2965		 */
2966		for (i = 0; i < nspares; i++) {
2967			VERIFY(nvlist_lookup_uint64(spares[i],
2968			    ZPOOL_CONFIG_GUID, &guid) == 0);
2969			if (spa_spare_exists(guid, &pool, NULL) &&
2970			    pool != 0ULL) {
2971				VERIFY(nvlist_lookup_uint64_array(
2972				    spares[i], ZPOOL_CONFIG_VDEV_STATS,
2973				    (uint64_t **)&vs, &vsc) == 0);
2974				vs->vs_state = VDEV_STATE_CANT_OPEN;
2975				vs->vs_aux = VDEV_AUX_SPARED;
2976			}
2977		}
2978	}
2979}
2980
2981/*
2982 * Add l2cache device information to the nvlist, including vdev stats.
2983 */
2984static void
2985spa_add_l2cache(spa_t *spa, nvlist_t *config)
2986{
2987	nvlist_t **l2cache;
2988	uint_t i, j, nl2cache;
2989	nvlist_t *nvroot;
2990	uint64_t guid;
2991	vdev_t *vd;
2992	vdev_stat_t *vs;
2993	uint_t vsc;
2994
2995	ASSERT(spa_config_held(spa, SCL_CONFIG, RW_READER));
2996
2997	if (spa->spa_l2cache.sav_count == 0)
2998		return;
2999
3000	VERIFY(nvlist_lookup_nvlist(config,
3001	    ZPOOL_CONFIG_VDEV_TREE, &nvroot) == 0);
3002	VERIFY(nvlist_lookup_nvlist_array(spa->spa_l2cache.sav_config,
3003	    ZPOOL_CONFIG_L2CACHE, &l2cache, &nl2cache) == 0);
3004	if (nl2cache != 0) {
3005		VERIFY(nvlist_add_nvlist_array(nvroot,
3006		    ZPOOL_CONFIG_L2CACHE, l2cache, nl2cache) == 0);
3007		VERIFY(nvlist_lookup_nvlist_array(nvroot,
3008		    ZPOOL_CONFIG_L2CACHE, &l2cache, &nl2cache) == 0);
3009
3010		/*
3011		 * Update level 2 cache device stats.
3012		 */
3013
3014		for (i = 0; i < nl2cache; i++) {
3015			VERIFY(nvlist_lookup_uint64(l2cache[i],
3016			    ZPOOL_CONFIG_GUID, &guid) == 0);
3017
3018			vd = NULL;
3019			for (j = 0; j < spa->spa_l2cache.sav_count; j++) {
3020				if (guid ==
3021				    spa->spa_l2cache.sav_vdevs[j]->vdev_guid) {
3022					vd = spa->spa_l2cache.sav_vdevs[j];
3023					break;
3024				}
3025			}
3026			ASSERT(vd != NULL);
3027
3028			VERIFY(nvlist_lookup_uint64_array(l2cache[i],
3029			    ZPOOL_CONFIG_VDEV_STATS, (uint64_t **)&vs, &vsc)
3030			    == 0);
3031			vdev_get_stats(vd, vs);
3032		}
3033	}
3034}
3035
3036static void
3037spa_add_feature_stats(spa_t *spa, nvlist_t *config)
3038{
3039	nvlist_t *features;
3040	zap_cursor_t zc;
3041	zap_attribute_t za;
3042
3043	ASSERT(spa_config_held(spa, SCL_CONFIG, RW_READER));
3044	VERIFY(nvlist_alloc(&features, NV_UNIQUE_NAME, KM_SLEEP) == 0);
3045
3046	if (spa->spa_feat_for_read_obj != 0) {
3047		for (zap_cursor_init(&zc, spa->spa_meta_objset,
3048		    spa->spa_feat_for_read_obj);
3049		    zap_cursor_retrieve(&zc, &za) == 0;
3050		    zap_cursor_advance(&zc)) {
3051			ASSERT(za.za_integer_length == sizeof (uint64_t) &&
3052			    za.za_num_integers == 1);
3053			VERIFY3U(0, ==, nvlist_add_uint64(features, za.za_name,
3054			    za.za_first_integer));
3055		}
3056		zap_cursor_fini(&zc);
3057	}
3058
3059	if (spa->spa_feat_for_write_obj != 0) {
3060		for (zap_cursor_init(&zc, spa->spa_meta_objset,
3061		    spa->spa_feat_for_write_obj);
3062		    zap_cursor_retrieve(&zc, &za) == 0;
3063		    zap_cursor_advance(&zc)) {
3064			ASSERT(za.za_integer_length == sizeof (uint64_t) &&
3065			    za.za_num_integers == 1);
3066			VERIFY3U(0, ==, nvlist_add_uint64(features, za.za_name,
3067			    za.za_first_integer));
3068		}
3069		zap_cursor_fini(&zc);
3070	}
3071
3072	VERIFY(nvlist_add_nvlist(config, ZPOOL_CONFIG_FEATURE_STATS,
3073	    features) == 0);
3074	nvlist_free(features);
3075}
3076
3077int
3078spa_get_stats(const char *name, nvlist_t **config,
3079    char *altroot, size_t buflen)
3080{
3081	int error;
3082	spa_t *spa;
3083
3084	*config = NULL;
3085	error = spa_open_common(name, &spa, FTAG, NULL, config);
3086
3087	if (spa != NULL) {
3088		/*
3089		 * This still leaves a window of inconsistency where the spares
3090		 * or l2cache devices could change and the config would be
3091		 * self-inconsistent.
3092		 */
3093		spa_config_enter(spa, SCL_CONFIG, FTAG, RW_READER);
3094
3095		if (*config != NULL) {
3096			uint64_t loadtimes[2];
3097
3098			loadtimes[0] = spa->spa_loaded_ts.tv_sec;
3099			loadtimes[1] = spa->spa_loaded_ts.tv_nsec;
3100			VERIFY(nvlist_add_uint64_array(*config,
3101			    ZPOOL_CONFIG_LOADED_TIME, loadtimes, 2) == 0);
3102
3103			VERIFY(nvlist_add_uint64(*config,
3104			    ZPOOL_CONFIG_ERRCOUNT,
3105			    spa_get_errlog_size(spa)) == 0);
3106
3107			if (spa_suspended(spa))
3108				VERIFY(nvlist_add_uint64(*config,
3109				    ZPOOL_CONFIG_SUSPENDED,
3110				    spa->spa_failmode) == 0);
3111
3112			spa_add_spares(spa, *config);
3113			spa_add_l2cache(spa, *config);
3114			spa_add_feature_stats(spa, *config);
3115		}
3116	}
3117
3118	/*
3119	 * We want to get the alternate root even for faulted pools, so we cheat
3120	 * and call spa_lookup() directly.
3121	 */
3122	if (altroot) {
3123		if (spa == NULL) {
3124			mutex_enter(&spa_namespace_lock);
3125			spa = spa_lookup(name);
3126			if (spa)
3127				spa_altroot(spa, altroot, buflen);
3128			else
3129				altroot[0] = '\0';
3130			spa = NULL;
3131			mutex_exit(&spa_namespace_lock);
3132		} else {
3133			spa_altroot(spa, altroot, buflen);
3134		}
3135	}
3136
3137	if (spa != NULL) {
3138		spa_config_exit(spa, SCL_CONFIG, FTAG);
3139		spa_close(spa, FTAG);
3140	}
3141
3142	return (error);
3143}
3144
3145/*
3146 * Validate that the auxiliary device array is well formed.  We must have an
3147 * array of nvlists, each which describes a valid leaf vdev.  If this is an
3148 * import (mode is VDEV_ALLOC_SPARE), then we allow corrupted spares to be
3149 * specified, as long as they are well-formed.
3150 */
3151static int
3152spa_validate_aux_devs(spa_t *spa, nvlist_t *nvroot, uint64_t crtxg, int mode,
3153    spa_aux_vdev_t *sav, const char *config, uint64_t version,
3154    vdev_labeltype_t label)
3155{
3156	nvlist_t **dev;
3157	uint_t i, ndev;
3158	vdev_t *vd;
3159	int error;
3160
3161	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
3162
3163	/*
3164	 * It's acceptable to have no devs specified.
3165	 */
3166	if (nvlist_lookup_nvlist_array(nvroot, config, &dev, &ndev) != 0)
3167		return (0);
3168
3169	if (ndev == 0)
3170		return (EINVAL);
3171
3172	/*
3173	 * Make sure the pool is formatted with a version that supports this
3174	 * device type.
3175	 */
3176	if (spa_version(spa) < version)
3177		return (ENOTSUP);
3178
3179	/*
3180	 * Set the pending device list so we correctly handle device in-use
3181	 * checking.
3182	 */
3183	sav->sav_pending = dev;
3184	sav->sav_npending = ndev;
3185
3186	for (i = 0; i < ndev; i++) {
3187		if ((error = spa_config_parse(spa, &vd, dev[i], NULL, 0,
3188		    mode)) != 0)
3189			goto out;
3190
3191		if (!vd->vdev_ops->vdev_op_leaf) {
3192			vdev_free(vd);
3193			error = EINVAL;
3194			goto out;
3195		}
3196
3197		/*
3198		 * The L2ARC currently only supports disk devices in
3199		 * kernel context.  For user-level testing, we allow it.
3200		 */
3201#ifdef _KERNEL
3202		if ((strcmp(config, ZPOOL_CONFIG_L2CACHE) == 0) &&
3203		    strcmp(vd->vdev_ops->vdev_op_type, VDEV_TYPE_DISK) != 0) {
3204			error = ENOTBLK;
3205			vdev_free(vd);
3206			goto out;
3207		}
3208#endif
3209		vd->vdev_top = vd;
3210
3211		if ((error = vdev_open(vd)) == 0 &&
3212		    (error = vdev_label_init(vd, crtxg, label)) == 0) {
3213			VERIFY(nvlist_add_uint64(dev[i], ZPOOL_CONFIG_GUID,
3214			    vd->vdev_guid) == 0);
3215		}
3216
3217		vdev_free(vd);
3218
3219		if (error &&
3220		    (mode != VDEV_ALLOC_SPARE && mode != VDEV_ALLOC_L2CACHE))
3221			goto out;
3222		else
3223			error = 0;
3224	}
3225
3226out:
3227	sav->sav_pending = NULL;
3228	sav->sav_npending = 0;
3229	return (error);
3230}
3231
3232static int
3233spa_validate_aux(spa_t *spa, nvlist_t *nvroot, uint64_t crtxg, int mode)
3234{
3235	int error;
3236
3237	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
3238
3239	if ((error = spa_validate_aux_devs(spa, nvroot, crtxg, mode,
3240	    &spa->spa_spares, ZPOOL_CONFIG_SPARES, SPA_VERSION_SPARES,
3241	    VDEV_LABEL_SPARE)) != 0) {
3242		return (error);
3243	}
3244
3245	return (spa_validate_aux_devs(spa, nvroot, crtxg, mode,
3246	    &spa->spa_l2cache, ZPOOL_CONFIG_L2CACHE, SPA_VERSION_L2CACHE,
3247	    VDEV_LABEL_L2CACHE));
3248}
3249
3250static void
3251spa_set_aux_vdevs(spa_aux_vdev_t *sav, nvlist_t **devs, int ndevs,
3252    const char *config)
3253{
3254	int i;
3255
3256	if (sav->sav_config != NULL) {
3257		nvlist_t **olddevs;
3258		uint_t oldndevs;
3259		nvlist_t **newdevs;
3260
3261		/*
3262		 * Generate new dev list by concatentating with the
3263		 * current dev list.
3264		 */
3265		VERIFY(nvlist_lookup_nvlist_array(sav->sav_config, config,
3266		    &olddevs, &oldndevs) == 0);
3267
3268		newdevs = kmem_alloc(sizeof (void *) *
3269		    (ndevs + oldndevs), KM_SLEEP);
3270		for (i = 0; i < oldndevs; i++)
3271			VERIFY(nvlist_dup(olddevs[i], &newdevs[i],
3272			    KM_SLEEP) == 0);
3273		for (i = 0; i < ndevs; i++)
3274			VERIFY(nvlist_dup(devs[i], &newdevs[i + oldndevs],
3275			    KM_SLEEP) == 0);
3276
3277		VERIFY(nvlist_remove(sav->sav_config, config,
3278		    DATA_TYPE_NVLIST_ARRAY) == 0);
3279
3280		VERIFY(nvlist_add_nvlist_array(sav->sav_config,
3281		    config, newdevs, ndevs + oldndevs) == 0);
3282		for (i = 0; i < oldndevs + ndevs; i++)
3283			nvlist_free(newdevs[i]);
3284		kmem_free(newdevs, (oldndevs + ndevs) * sizeof (void *));
3285	} else {
3286		/*
3287		 * Generate a new dev list.
3288		 */
3289		VERIFY(nvlist_alloc(&sav->sav_config, NV_UNIQUE_NAME,
3290		    KM_SLEEP) == 0);
3291		VERIFY(nvlist_add_nvlist_array(sav->sav_config, config,
3292		    devs, ndevs) == 0);
3293	}
3294}
3295
3296/*
3297 * Stop and drop level 2 ARC devices
3298 */
3299void
3300spa_l2cache_drop(spa_t *spa)
3301{
3302	vdev_t *vd;
3303	int i;
3304	spa_aux_vdev_t *sav = &spa->spa_l2cache;
3305
3306	for (i = 0; i < sav->sav_count; i++) {
3307		uint64_t pool;
3308
3309		vd = sav->sav_vdevs[i];
3310		ASSERT(vd != NULL);
3311
3312		if (spa_l2cache_exists(vd->vdev_guid, &pool) &&
3313		    pool != 0ULL && l2arc_vdev_present(vd))
3314			l2arc_remove_vdev(vd);
3315	}
3316}
3317
3318/*
3319 * Pool Creation
3320 */
3321int
3322spa_create(const char *pool, nvlist_t *nvroot, nvlist_t *props,
3323    const char *history_str, nvlist_t *zplprops)
3324{
3325	spa_t *spa;
3326	char *altroot = NULL;
3327	vdev_t *rvd;
3328	dsl_pool_t *dp;
3329	dmu_tx_t *tx;
3330	int error = 0;
3331	uint64_t txg = TXG_INITIAL;
3332	nvlist_t **spares, **l2cache;
3333	uint_t nspares, nl2cache;
3334	uint64_t version, obj;
3335	boolean_t has_features;
3336
3337	/*
3338	 * If this pool already exists, return failure.
3339	 */
3340	mutex_enter(&spa_namespace_lock);
3341	if (spa_lookup(pool) != NULL) {
3342		mutex_exit(&spa_namespace_lock);
3343		return (EEXIST);
3344	}
3345
3346	/*
3347	 * Allocate a new spa_t structure.
3348	 */
3349	(void) nvlist_lookup_string(props,
3350	    zpool_prop_to_name(ZPOOL_PROP_ALTROOT), &altroot);
3351	spa = spa_add(pool, NULL, altroot);
3352	spa_activate(spa, spa_mode_global);
3353
3354	if (props && (error = spa_prop_validate(spa, props))) {
3355		spa_deactivate(spa);
3356		spa_remove(spa);
3357		mutex_exit(&spa_namespace_lock);
3358		return (error);
3359	}
3360
3361	has_features = B_FALSE;
3362	for (nvpair_t *elem = nvlist_next_nvpair(props, NULL);
3363	    elem != NULL; elem = nvlist_next_nvpair(props, elem)) {
3364		if (zpool_prop_feature(nvpair_name(elem)))
3365			has_features = B_TRUE;
3366	}
3367
3368	if (has_features || nvlist_lookup_uint64(props,
3369	    zpool_prop_to_name(ZPOOL_PROP_VERSION), &version) != 0) {
3370		version = SPA_VERSION;
3371	}
3372	ASSERT(SPA_VERSION_IS_SUPPORTED(version));
3373
3374	spa->spa_first_txg = txg;
3375	spa->spa_uberblock.ub_txg = txg - 1;
3376	spa->spa_uberblock.ub_version = version;
3377	spa->spa_ubsync = spa->spa_uberblock;
3378
3379	/*
3380	 * Create "The Godfather" zio to hold all async IOs
3381	 */
3382	spa->spa_async_zio_root = zio_root(spa, NULL, NULL,
3383	    ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE | ZIO_FLAG_GODFATHER);
3384
3385	/*
3386	 * Create the root vdev.
3387	 */
3388	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
3389
3390	error = spa_config_parse(spa, &rvd, nvroot, NULL, 0, VDEV_ALLOC_ADD);
3391
3392	ASSERT(error != 0 || rvd != NULL);
3393	ASSERT(error != 0 || spa->spa_root_vdev == rvd);
3394
3395	if (error == 0 && !zfs_allocatable_devs(nvroot))
3396		error = EINVAL;
3397
3398	if (error == 0 &&
3399	    (error = vdev_create(rvd, txg, B_FALSE)) == 0 &&
3400	    (error = spa_validate_aux(spa, nvroot, txg,
3401	    VDEV_ALLOC_ADD)) == 0) {
3402		for (int c = 0; c < rvd->vdev_children; c++) {
3403			vdev_metaslab_set_size(rvd->vdev_child[c]);
3404			vdev_expand(rvd->vdev_child[c], txg);
3405		}
3406	}
3407
3408	spa_config_exit(spa, SCL_ALL, FTAG);
3409
3410	if (error != 0) {
3411		spa_unload(spa);
3412		spa_deactivate(spa);
3413		spa_remove(spa);
3414		mutex_exit(&spa_namespace_lock);
3415		return (error);
3416	}
3417
3418	/*
3419	 * Get the list of spares, if specified.
3420	 */
3421	if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_SPARES,
3422	    &spares, &nspares) == 0) {
3423		VERIFY(nvlist_alloc(&spa->spa_spares.sav_config, NV_UNIQUE_NAME,
3424		    KM_SLEEP) == 0);
3425		VERIFY(nvlist_add_nvlist_array(spa->spa_spares.sav_config,
3426		    ZPOOL_CONFIG_SPARES, spares, nspares) == 0);
3427		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
3428		spa_load_spares(spa);
3429		spa_config_exit(spa, SCL_ALL, FTAG);
3430		spa->spa_spares.sav_sync = B_TRUE;
3431	}
3432
3433	/*
3434	 * Get the list of level 2 cache devices, if specified.
3435	 */
3436	if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_L2CACHE,
3437	    &l2cache, &nl2cache) == 0) {
3438		VERIFY(nvlist_alloc(&spa->spa_l2cache.sav_config,
3439		    NV_UNIQUE_NAME, KM_SLEEP) == 0);
3440		VERIFY(nvlist_add_nvlist_array(spa->spa_l2cache.sav_config,
3441		    ZPOOL_CONFIG_L2CACHE, l2cache, nl2cache) == 0);
3442		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
3443		spa_load_l2cache(spa);
3444		spa_config_exit(spa, SCL_ALL, FTAG);
3445		spa->spa_l2cache.sav_sync = B_TRUE;
3446	}
3447
3448	spa->spa_is_initializing = B_TRUE;
3449	spa->spa_dsl_pool = dp = dsl_pool_create(spa, zplprops, txg);
3450	spa->spa_meta_objset = dp->dp_meta_objset;
3451	spa->spa_is_initializing = B_FALSE;
3452
3453	/*
3454	 * Create DDTs (dedup tables).
3455	 */
3456	ddt_create(spa);
3457
3458	spa_update_dspace(spa);
3459
3460	tx = dmu_tx_create_assigned(dp, txg);
3461
3462	/*
3463	 * Create the pool config object.
3464	 */
3465	spa->spa_config_object = dmu_object_alloc(spa->spa_meta_objset,
3466	    DMU_OT_PACKED_NVLIST, SPA_CONFIG_BLOCKSIZE,
3467	    DMU_OT_PACKED_NVLIST_SIZE, sizeof (uint64_t), tx);
3468
3469	if (zap_add(spa->spa_meta_objset,
3470	    DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_CONFIG,
3471	    sizeof (uint64_t), 1, &spa->spa_config_object, tx) != 0) {
3472		cmn_err(CE_PANIC, "failed to add pool config");
3473	}
3474
3475	if (spa_version(spa) >= SPA_VERSION_FEATURES)
3476		spa_feature_create_zap_objects(spa, tx);
3477
3478	if (zap_add(spa->spa_meta_objset,
3479	    DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_CREATION_VERSION,
3480	    sizeof (uint64_t), 1, &version, tx) != 0) {
3481		cmn_err(CE_PANIC, "failed to add pool version");
3482	}
3483
3484	/* Newly created pools with the right version are always deflated. */
3485	if (version >= SPA_VERSION_RAIDZ_DEFLATE) {
3486		spa->spa_deflate = TRUE;
3487		if (zap_add(spa->spa_meta_objset,
3488		    DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_DEFLATE,
3489		    sizeof (uint64_t), 1, &spa->spa_deflate, tx) != 0) {
3490			cmn_err(CE_PANIC, "failed to add deflate");
3491		}
3492	}
3493
3494	/*
3495	 * Create the deferred-free bpobj.  Turn off compression
3496	 * because sync-to-convergence takes longer if the blocksize
3497	 * keeps changing.
3498	 */
3499	obj = bpobj_alloc(spa->spa_meta_objset, 1 << 14, tx);
3500	dmu_object_set_compress(spa->spa_meta_objset, obj,
3501	    ZIO_COMPRESS_OFF, tx);
3502	if (zap_add(spa->spa_meta_objset,
3503	    DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_SYNC_BPOBJ,
3504	    sizeof (uint64_t), 1, &obj, tx) != 0) {
3505		cmn_err(CE_PANIC, "failed to add bpobj");
3506	}
3507	VERIFY3U(0, ==, bpobj_open(&spa->spa_deferred_bpobj,
3508	    spa->spa_meta_objset, obj));
3509
3510	/*
3511	 * Create the pool's history object.
3512	 */
3513	if (version >= SPA_VERSION_ZPOOL_HISTORY)
3514		spa_history_create_obj(spa, tx);
3515
3516	/*
3517	 * Set pool properties.
3518	 */
3519	spa->spa_bootfs = zpool_prop_default_numeric(ZPOOL_PROP_BOOTFS);
3520	spa->spa_delegation = zpool_prop_default_numeric(ZPOOL_PROP_DELEGATION);
3521	spa->spa_failmode = zpool_prop_default_numeric(ZPOOL_PROP_FAILUREMODE);
3522	spa->spa_autoexpand = zpool_prop_default_numeric(ZPOOL_PROP_AUTOEXPAND);
3523
3524	if (props != NULL) {
3525		spa_configfile_set(spa, props, B_FALSE);
3526		spa_sync_props(spa, props, tx);
3527	}
3528
3529	dmu_tx_commit(tx);
3530
3531	spa->spa_sync_on = B_TRUE;
3532	txg_sync_start(spa->spa_dsl_pool);
3533
3534	/*
3535	 * We explicitly wait for the first transaction to complete so that our
3536	 * bean counters are appropriately updated.
3537	 */
3538	txg_wait_synced(spa->spa_dsl_pool, txg);
3539
3540	spa_config_sync(spa, B_FALSE, B_TRUE);
3541
3542	if (version >= SPA_VERSION_ZPOOL_HISTORY && history_str != NULL)
3543		(void) spa_history_log(spa, history_str, LOG_CMD_POOL_CREATE);
3544	spa_history_log_version(spa, LOG_POOL_CREATE);
3545
3546	spa->spa_minref = refcount_count(&spa->spa_refcount);
3547
3548	mutex_exit(&spa_namespace_lock);
3549
3550	return (0);
3551}
3552
3553#if defined(sun)
3554#ifdef _KERNEL
3555/*
3556 * Get the root pool information from the root disk, then import the root pool
3557 * during the system boot up time.
3558 */
3559extern int vdev_disk_read_rootlabel(char *, char *, nvlist_t **);
3560
3561static nvlist_t *
3562spa_generate_rootconf(char *devpath, char *devid, uint64_t *guid)
3563{
3564	nvlist_t *config;
3565	nvlist_t *nvtop, *nvroot;
3566	uint64_t pgid;
3567
3568	if (vdev_disk_read_rootlabel(devpath, devid, &config) != 0)
3569		return (NULL);
3570
3571	/*
3572	 * Add this top-level vdev to the child array.
3573	 */
3574	VERIFY(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
3575	    &nvtop) == 0);
3576	VERIFY(nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_GUID,
3577	    &pgid) == 0);
3578	VERIFY(nvlist_lookup_uint64(config, ZPOOL_CONFIG_GUID, guid) == 0);
3579
3580	/*
3581	 * Put this pool's top-level vdevs into a root vdev.
3582	 */
3583	VERIFY(nvlist_alloc(&nvroot, NV_UNIQUE_NAME, KM_SLEEP) == 0);
3584	VERIFY(nvlist_add_string(nvroot, ZPOOL_CONFIG_TYPE,
3585	    VDEV_TYPE_ROOT) == 0);
3586	VERIFY(nvlist_add_uint64(nvroot, ZPOOL_CONFIG_ID, 0ULL) == 0);
3587	VERIFY(nvlist_add_uint64(nvroot, ZPOOL_CONFIG_GUID, pgid) == 0);
3588	VERIFY(nvlist_add_nvlist_array(nvroot, ZPOOL_CONFIG_CHILDREN,
3589	    &nvtop, 1) == 0);
3590
3591	/*
3592	 * Replace the existing vdev_tree with the new root vdev in
3593	 * this pool's configuration (remove the old, add the new).
3594	 */
3595	VERIFY(nvlist_add_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, nvroot) == 0);
3596	nvlist_free(nvroot);
3597	return (config);
3598}
3599
3600/*
3601 * Walk the vdev tree and see if we can find a device with "better"
3602 * configuration. A configuration is "better" if the label on that
3603 * device has a more recent txg.
3604 */
3605static void
3606spa_alt_rootvdev(vdev_t *vd, vdev_t **avd, uint64_t *txg)
3607{
3608	for (int c = 0; c < vd->vdev_children; c++)
3609		spa_alt_rootvdev(vd->vdev_child[c], avd, txg);
3610
3611	if (vd->vdev_ops->vdev_op_leaf) {
3612		nvlist_t *label;
3613		uint64_t label_txg;
3614
3615		if (vdev_disk_read_rootlabel(vd->vdev_physpath, vd->vdev_devid,
3616		    &label) != 0)
3617			return;
3618
3619		VERIFY(nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_TXG,
3620		    &label_txg) == 0);
3621
3622		/*
3623		 * Do we have a better boot device?
3624		 */
3625		if (label_txg > *txg) {
3626			*txg = label_txg;
3627			*avd = vd;
3628		}
3629		nvlist_free(label);
3630	}
3631}
3632
3633/*
3634 * Import a root pool.
3635 *
3636 * For x86. devpath_list will consist of devid and/or physpath name of
3637 * the vdev (e.g. "id1,sd@SSEAGATE..." or "/pci@1f,0/ide@d/disk@0,0:a").
3638 * The GRUB "findroot" command will return the vdev we should boot.
3639 *
3640 * For Sparc, devpath_list consists the physpath name of the booting device
3641 * no matter the rootpool is a single device pool or a mirrored pool.
3642 * e.g.
3643 *	"/pci@1f,0/ide@d/disk@0,0:a"
3644 */
3645int
3646spa_import_rootpool(char *devpath, char *devid)
3647{
3648	spa_t *spa;
3649	vdev_t *rvd, *bvd, *avd = NULL;
3650	nvlist_t *config, *nvtop;
3651	uint64_t guid, txg;
3652	char *pname;
3653	int error;
3654
3655	/*
3656	 * Read the label from the boot device and generate a configuration.
3657	 */
3658	config = spa_generate_rootconf(devpath, devid, &guid);
3659#if defined(_OBP) && defined(_KERNEL)
3660	if (config == NULL) {
3661		if (strstr(devpath, "/iscsi/ssd") != NULL) {
3662			/* iscsi boot */
3663			get_iscsi_bootpath_phy(devpath);
3664			config = spa_generate_rootconf(devpath, devid, &guid);
3665		}
3666	}
3667#endif
3668	if (config == NULL) {
3669		cmn_err(CE_NOTE, "Cannot read the pool label from '%s'",
3670		    devpath);
3671		return (EIO);
3672	}
3673
3674	VERIFY(nvlist_lookup_string(config, ZPOOL_CONFIG_POOL_NAME,
3675	    &pname) == 0);
3676	VERIFY(nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_TXG, &txg) == 0);
3677
3678	mutex_enter(&spa_namespace_lock);
3679	if ((spa = spa_lookup(pname)) != NULL) {
3680		/*
3681		 * Remove the existing root pool from the namespace so that we
3682		 * can replace it with the correct config we just read in.
3683		 */
3684		spa_remove(spa);
3685	}
3686
3687	spa = spa_add(pname, config, NULL);
3688	spa->spa_is_root = B_TRUE;
3689	spa->spa_import_flags = ZFS_IMPORT_VERBATIM;
3690
3691	/*
3692	 * Build up a vdev tree based on the boot device's label config.
3693	 */
3694	VERIFY(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
3695	    &nvtop) == 0);
3696	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
3697	error = spa_config_parse(spa, &rvd, nvtop, NULL, 0,
3698	    VDEV_ALLOC_ROOTPOOL);
3699	spa_config_exit(spa, SCL_ALL, FTAG);
3700	if (error) {
3701		mutex_exit(&spa_namespace_lock);
3702		nvlist_free(config);
3703		cmn_err(CE_NOTE, "Can not parse the config for pool '%s'",
3704		    pname);
3705		return (error);
3706	}
3707
3708	/*
3709	 * Get the boot vdev.
3710	 */
3711	if ((bvd = vdev_lookup_by_guid(rvd, guid)) == NULL) {
3712		cmn_err(CE_NOTE, "Can not find the boot vdev for guid %llu",
3713		    (u_longlong_t)guid);
3714		error = ENOENT;
3715		goto out;
3716	}
3717
3718	/*
3719	 * Determine if there is a better boot device.
3720	 */
3721	avd = bvd;
3722	spa_alt_rootvdev(rvd, &avd, &txg);
3723	if (avd != bvd) {
3724		cmn_err(CE_NOTE, "The boot device is 'degraded'. Please "
3725		    "try booting from '%s'", avd->vdev_path);
3726		error = EINVAL;
3727		goto out;
3728	}
3729
3730	/*
3731	 * If the boot device is part of a spare vdev then ensure that
3732	 * we're booting off the active spare.
3733	 */
3734	if (bvd->vdev_parent->vdev_ops == &vdev_spare_ops &&
3735	    !bvd->vdev_isspare) {
3736		cmn_err(CE_NOTE, "The boot device is currently spared. Please "
3737		    "try booting from '%s'",
3738		    bvd->vdev_parent->
3739		    vdev_child[bvd->vdev_parent->vdev_children - 1]->vdev_path);
3740		error = EINVAL;
3741		goto out;
3742	}
3743
3744	error = 0;
3745	spa_history_log_version(spa, LOG_POOL_IMPORT);
3746out:
3747	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
3748	vdev_free(rvd);
3749	spa_config_exit(spa, SCL_ALL, FTAG);
3750	mutex_exit(&spa_namespace_lock);
3751
3752	nvlist_free(config);
3753	return (error);
3754}
3755
3756#endif
3757#endif	/* sun */
3758
3759/*
3760 * Import a non-root pool into the system.
3761 */
3762int
3763spa_import(const char *pool, nvlist_t *config, nvlist_t *props, uint64_t flags)
3764{
3765	spa_t *spa;
3766	char *altroot = NULL;
3767	spa_load_state_t state = SPA_LOAD_IMPORT;
3768	zpool_rewind_policy_t policy;
3769	uint64_t mode = spa_mode_global;
3770	uint64_t readonly = B_FALSE;
3771	int error;
3772	nvlist_t *nvroot;
3773	nvlist_t **spares, **l2cache;
3774	uint_t nspares, nl2cache;
3775
3776	/*
3777	 * If a pool with this name exists, return failure.
3778	 */
3779	mutex_enter(&spa_namespace_lock);
3780	if (spa_lookup(pool) != NULL) {
3781		mutex_exit(&spa_namespace_lock);
3782		return (EEXIST);
3783	}
3784
3785	/*
3786	 * Create and initialize the spa structure.
3787	 */
3788	(void) nvlist_lookup_string(props,
3789	    zpool_prop_to_name(ZPOOL_PROP_ALTROOT), &altroot);
3790	(void) nvlist_lookup_uint64(props,
3791	    zpool_prop_to_name(ZPOOL_PROP_READONLY), &readonly);
3792	if (readonly)
3793		mode = FREAD;
3794	spa = spa_add(pool, config, altroot);
3795	spa->spa_import_flags = flags;
3796
3797	/*
3798	 * Verbatim import - Take a pool and insert it into the namespace
3799	 * as if it had been loaded at boot.
3800	 */
3801	if (spa->spa_import_flags & ZFS_IMPORT_VERBATIM) {
3802		if (props != NULL)
3803			spa_configfile_set(spa, props, B_FALSE);
3804
3805		spa_config_sync(spa, B_FALSE, B_TRUE);
3806
3807		mutex_exit(&spa_namespace_lock);
3808		spa_history_log_version(spa, LOG_POOL_IMPORT);
3809
3810		return (0);
3811	}
3812
3813	spa_activate(spa, mode);
3814
3815	/*
3816	 * Don't start async tasks until we know everything is healthy.
3817	 */
3818	spa_async_suspend(spa);
3819
3820	zpool_get_rewind_policy(config, &policy);
3821	if (policy.zrp_request & ZPOOL_DO_REWIND)
3822		state = SPA_LOAD_RECOVER;
3823
3824	/*
3825	 * Pass off the heavy lifting to spa_load().  Pass TRUE for mosconfig
3826	 * because the user-supplied config is actually the one to trust when
3827	 * doing an import.
3828	 */
3829	if (state != SPA_LOAD_RECOVER)
3830		spa->spa_last_ubsync_txg = spa->spa_load_txg = 0;
3831
3832	error = spa_load_best(spa, state, B_TRUE, policy.zrp_txg,
3833	    policy.zrp_request);
3834
3835	/*
3836	 * Propagate anything learned while loading the pool and pass it
3837	 * back to caller (i.e. rewind info, missing devices, etc).
3838	 */
3839	VERIFY(nvlist_add_nvlist(config, ZPOOL_CONFIG_LOAD_INFO,
3840	    spa->spa_load_info) == 0);
3841
3842	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
3843	/*
3844	 * Toss any existing sparelist, as it doesn't have any validity
3845	 * anymore, and conflicts with spa_has_spare().
3846	 */
3847	if (spa->spa_spares.sav_config) {
3848		nvlist_free(spa->spa_spares.sav_config);
3849		spa->spa_spares.sav_config = NULL;
3850		spa_load_spares(spa);
3851	}
3852	if (spa->spa_l2cache.sav_config) {
3853		nvlist_free(spa->spa_l2cache.sav_config);
3854		spa->spa_l2cache.sav_config = NULL;
3855		spa_load_l2cache(spa);
3856	}
3857
3858	VERIFY(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
3859	    &nvroot) == 0);
3860	if (error == 0)
3861		error = spa_validate_aux(spa, nvroot, -1ULL,
3862		    VDEV_ALLOC_SPARE);
3863	if (error == 0)
3864		error = spa_validate_aux(spa, nvroot, -1ULL,
3865		    VDEV_ALLOC_L2CACHE);
3866	spa_config_exit(spa, SCL_ALL, FTAG);
3867
3868	if (props != NULL)
3869		spa_configfile_set(spa, props, B_FALSE);
3870
3871	if (error != 0 || (props && spa_writeable(spa) &&
3872	    (error = spa_prop_set(spa, props)))) {
3873		spa_unload(spa);
3874		spa_deactivate(spa);
3875		spa_remove(spa);
3876		mutex_exit(&spa_namespace_lock);
3877		return (error);
3878	}
3879
3880	spa_async_resume(spa);
3881
3882	/*
3883	 * Override any spares and level 2 cache devices as specified by
3884	 * the user, as these may have correct device names/devids, etc.
3885	 */
3886	if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_SPARES,
3887	    &spares, &nspares) == 0) {
3888		if (spa->spa_spares.sav_config)
3889			VERIFY(nvlist_remove(spa->spa_spares.sav_config,
3890			    ZPOOL_CONFIG_SPARES, DATA_TYPE_NVLIST_ARRAY) == 0);
3891		else
3892			VERIFY(nvlist_alloc(&spa->spa_spares.sav_config,
3893			    NV_UNIQUE_NAME, KM_SLEEP) == 0);
3894		VERIFY(nvlist_add_nvlist_array(spa->spa_spares.sav_config,
3895		    ZPOOL_CONFIG_SPARES, spares, nspares) == 0);
3896		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
3897		spa_load_spares(spa);
3898		spa_config_exit(spa, SCL_ALL, FTAG);
3899		spa->spa_spares.sav_sync = B_TRUE;
3900	}
3901	if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_L2CACHE,
3902	    &l2cache, &nl2cache) == 0) {
3903		if (spa->spa_l2cache.sav_config)
3904			VERIFY(nvlist_remove(spa->spa_l2cache.sav_config,
3905			    ZPOOL_CONFIG_L2CACHE, DATA_TYPE_NVLIST_ARRAY) == 0);
3906		else
3907			VERIFY(nvlist_alloc(&spa->spa_l2cache.sav_config,
3908			    NV_UNIQUE_NAME, KM_SLEEP) == 0);
3909		VERIFY(nvlist_add_nvlist_array(spa->spa_l2cache.sav_config,
3910		    ZPOOL_CONFIG_L2CACHE, l2cache, nl2cache) == 0);
3911		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
3912		spa_load_l2cache(spa);
3913		spa_config_exit(spa, SCL_ALL, FTAG);
3914		spa->spa_l2cache.sav_sync = B_TRUE;
3915	}
3916
3917	/*
3918	 * Check for any removed devices.
3919	 */
3920	if (spa->spa_autoreplace) {
3921		spa_aux_check_removed(&spa->spa_spares);
3922		spa_aux_check_removed(&spa->spa_l2cache);
3923	}
3924
3925	if (spa_writeable(spa)) {
3926		/*
3927		 * Update the config cache to include the newly-imported pool.
3928		 */
3929		spa_config_update(spa, SPA_CONFIG_UPDATE_POOL);
3930	}
3931
3932	/*
3933	 * It's possible that the pool was expanded while it was exported.
3934	 * We kick off an async task to handle this for us.
3935	 */
3936	spa_async_request(spa, SPA_ASYNC_AUTOEXPAND);
3937
3938	mutex_exit(&spa_namespace_lock);
3939	spa_history_log_version(spa, LOG_POOL_IMPORT);
3940
3941#ifdef __FreeBSD__
3942#ifdef _KERNEL
3943	zvol_create_minors(pool);
3944#endif
3945#endif
3946	return (0);
3947}
3948
3949nvlist_t *
3950spa_tryimport(nvlist_t *tryconfig)
3951{
3952	nvlist_t *config = NULL;
3953	char *poolname;
3954	spa_t *spa;
3955	uint64_t state;
3956	int error;
3957
3958	if (nvlist_lookup_string(tryconfig, ZPOOL_CONFIG_POOL_NAME, &poolname))
3959		return (NULL);
3960
3961	if (nvlist_lookup_uint64(tryconfig, ZPOOL_CONFIG_POOL_STATE, &state))
3962		return (NULL);
3963
3964	/*
3965	 * Create and initialize the spa structure.
3966	 */
3967	mutex_enter(&spa_namespace_lock);
3968	spa = spa_add(TRYIMPORT_NAME, tryconfig, NULL);
3969	spa_activate(spa, FREAD);
3970
3971	/*
3972	 * Pass off the heavy lifting to spa_load().
3973	 * Pass TRUE for mosconfig because the user-supplied config
3974	 * is actually the one to trust when doing an import.
3975	 */
3976	error = spa_load(spa, SPA_LOAD_TRYIMPORT, SPA_IMPORT_EXISTING, B_TRUE);
3977
3978	/*
3979	 * If 'tryconfig' was at least parsable, return the current config.
3980	 */
3981	if (spa->spa_root_vdev != NULL) {
3982		config = spa_config_generate(spa, NULL, -1ULL, B_TRUE);
3983		VERIFY(nvlist_add_string(config, ZPOOL_CONFIG_POOL_NAME,
3984		    poolname) == 0);
3985		VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_STATE,
3986		    state) == 0);
3987		VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_TIMESTAMP,
3988		    spa->spa_uberblock.ub_timestamp) == 0);
3989		VERIFY(nvlist_add_nvlist(config, ZPOOL_CONFIG_LOAD_INFO,
3990		    spa->spa_load_info) == 0);
3991
3992		/*
3993		 * If the bootfs property exists on this pool then we
3994		 * copy it out so that external consumers can tell which
3995		 * pools are bootable.
3996		 */
3997		if ((!error || error == EEXIST) && spa->spa_bootfs) {
3998			char *tmpname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
3999
4000			/*
4001			 * We have to play games with the name since the
4002			 * pool was opened as TRYIMPORT_NAME.
4003			 */
4004			if (dsl_dsobj_to_dsname(spa_name(spa),
4005			    spa->spa_bootfs, tmpname) == 0) {
4006				char *cp;
4007				char *dsname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
4008
4009				cp = strchr(tmpname, '/');
4010				if (cp == NULL) {
4011					(void) strlcpy(dsname, tmpname,
4012					    MAXPATHLEN);
4013				} else {
4014					(void) snprintf(dsname, MAXPATHLEN,
4015					    "%s/%s", poolname, ++cp);
4016				}
4017				VERIFY(nvlist_add_string(config,
4018				    ZPOOL_CONFIG_BOOTFS, dsname) == 0);
4019				kmem_free(dsname, MAXPATHLEN);
4020			}
4021			kmem_free(tmpname, MAXPATHLEN);
4022		}
4023
4024		/*
4025		 * Add the list of hot spares and level 2 cache devices.
4026		 */
4027		spa_config_enter(spa, SCL_CONFIG, FTAG, RW_READER);
4028		spa_add_spares(spa, config);
4029		spa_add_l2cache(spa, config);
4030		spa_config_exit(spa, SCL_CONFIG, FTAG);
4031	}
4032
4033	spa_unload(spa);
4034	spa_deactivate(spa);
4035	spa_remove(spa);
4036	mutex_exit(&spa_namespace_lock);
4037
4038	return (config);
4039}
4040
4041/*
4042 * Pool export/destroy
4043 *
4044 * The act of destroying or exporting a pool is very simple.  We make sure there
4045 * is no more pending I/O and any references to the pool are gone.  Then, we
4046 * update the pool state and sync all the labels to disk, removing the
4047 * configuration from the cache afterwards. If the 'hardforce' flag is set, then
4048 * we don't sync the labels or remove the configuration cache.
4049 */
4050static int
4051spa_export_common(char *pool, int new_state, nvlist_t **oldconfig,
4052    boolean_t force, boolean_t hardforce)
4053{
4054	spa_t *spa;
4055
4056	if (oldconfig)
4057		*oldconfig = NULL;
4058
4059	if (!(spa_mode_global & FWRITE))
4060		return (EROFS);
4061
4062	mutex_enter(&spa_namespace_lock);
4063	if ((spa = spa_lookup(pool)) == NULL) {
4064		mutex_exit(&spa_namespace_lock);
4065		return (ENOENT);
4066	}
4067
4068	/*
4069	 * Put a hold on the pool, drop the namespace lock, stop async tasks,
4070	 * reacquire the namespace lock, and see if we can export.
4071	 */
4072	spa_open_ref(spa, FTAG);
4073	mutex_exit(&spa_namespace_lock);
4074	spa_async_suspend(spa);
4075	mutex_enter(&spa_namespace_lock);
4076	spa_close(spa, FTAG);
4077
4078	/*
4079	 * The pool will be in core if it's openable,
4080	 * in which case we can modify its state.
4081	 */
4082	if (spa->spa_state != POOL_STATE_UNINITIALIZED && spa->spa_sync_on) {
4083		/*
4084		 * Objsets may be open only because they're dirty, so we
4085		 * have to force it to sync before checking spa_refcnt.
4086		 */
4087		txg_wait_synced(spa->spa_dsl_pool, 0);
4088
4089		/*
4090		 * A pool cannot be exported or destroyed if there are active
4091		 * references.  If we are resetting a pool, allow references by
4092		 * fault injection handlers.
4093		 */
4094		if (!spa_refcount_zero(spa) ||
4095		    (spa->spa_inject_ref != 0 &&
4096		    new_state != POOL_STATE_UNINITIALIZED)) {
4097			spa_async_resume(spa);
4098			mutex_exit(&spa_namespace_lock);
4099			return (EBUSY);
4100		}
4101
4102		/*
4103		 * A pool cannot be exported if it has an active shared spare.
4104		 * This is to prevent other pools stealing the active spare
4105		 * from an exported pool. At user's own will, such pool can
4106		 * be forcedly exported.
4107		 */
4108		if (!force && new_state == POOL_STATE_EXPORTED &&
4109		    spa_has_active_shared_spare(spa)) {
4110			spa_async_resume(spa);
4111			mutex_exit(&spa_namespace_lock);
4112			return (EXDEV);
4113		}
4114
4115		/*
4116		 * We want this to be reflected on every label,
4117		 * so mark them all dirty.  spa_unload() will do the
4118		 * final sync that pushes these changes out.
4119		 */
4120		if (new_state != POOL_STATE_UNINITIALIZED && !hardforce) {
4121			spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
4122			spa->spa_state = new_state;
4123			spa->spa_final_txg = spa_last_synced_txg(spa) +
4124			    TXG_DEFER_SIZE + 1;
4125			vdev_config_dirty(spa->spa_root_vdev);
4126			spa_config_exit(spa, SCL_ALL, FTAG);
4127		}
4128	}
4129
4130	spa_event_notify(spa, NULL, ESC_ZFS_POOL_DESTROY);
4131
4132	if (spa->spa_state != POOL_STATE_UNINITIALIZED) {
4133		spa_unload(spa);
4134		spa_deactivate(spa);
4135	}
4136
4137	if (oldconfig && spa->spa_config)
4138		VERIFY(nvlist_dup(spa->spa_config, oldconfig, 0) == 0);
4139
4140	if (new_state != POOL_STATE_UNINITIALIZED) {
4141		if (!hardforce)
4142			spa_config_sync(spa, B_TRUE, B_TRUE);
4143		spa_remove(spa);
4144	}
4145	mutex_exit(&spa_namespace_lock);
4146
4147	return (0);
4148}
4149
4150/*
4151 * Destroy a storage pool.
4152 */
4153int
4154spa_destroy(char *pool)
4155{
4156	return (spa_export_common(pool, POOL_STATE_DESTROYED, NULL,
4157	    B_FALSE, B_FALSE));
4158}
4159
4160/*
4161 * Export a storage pool.
4162 */
4163int
4164spa_export(char *pool, nvlist_t **oldconfig, boolean_t force,
4165    boolean_t hardforce)
4166{
4167	return (spa_export_common(pool, POOL_STATE_EXPORTED, oldconfig,
4168	    force, hardforce));
4169}
4170
4171/*
4172 * Similar to spa_export(), this unloads the spa_t without actually removing it
4173 * from the namespace in any way.
4174 */
4175int
4176spa_reset(char *pool)
4177{
4178	return (spa_export_common(pool, POOL_STATE_UNINITIALIZED, NULL,
4179	    B_FALSE, B_FALSE));
4180}
4181
4182/*
4183 * ==========================================================================
4184 * Device manipulation
4185 * ==========================================================================
4186 */
4187
4188/*
4189 * Add a device to a storage pool.
4190 */
4191int
4192spa_vdev_add(spa_t *spa, nvlist_t *nvroot)
4193{
4194	uint64_t txg, id;
4195	int error;
4196	vdev_t *rvd = spa->spa_root_vdev;
4197	vdev_t *vd, *tvd;
4198	nvlist_t **spares, **l2cache;
4199	uint_t nspares, nl2cache;
4200
4201	ASSERT(spa_writeable(spa));
4202
4203	txg = spa_vdev_enter(spa);
4204
4205	if ((error = spa_config_parse(spa, &vd, nvroot, NULL, 0,
4206	    VDEV_ALLOC_ADD)) != 0)
4207		return (spa_vdev_exit(spa, NULL, txg, error));
4208
4209	spa->spa_pending_vdev = vd;	/* spa_vdev_exit() will clear this */
4210
4211	if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_SPARES, &spares,
4212	    &nspares) != 0)
4213		nspares = 0;
4214
4215	if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_L2CACHE, &l2cache,
4216	    &nl2cache) != 0)
4217		nl2cache = 0;
4218
4219	if (vd->vdev_children == 0 && nspares == 0 && nl2cache == 0)
4220		return (spa_vdev_exit(spa, vd, txg, EINVAL));
4221
4222	if (vd->vdev_children != 0 &&
4223	    (error = vdev_create(vd, txg, B_FALSE)) != 0)
4224		return (spa_vdev_exit(spa, vd, txg, error));
4225
4226	/*
4227	 * We must validate the spares and l2cache devices after checking the
4228	 * children.  Otherwise, vdev_inuse() will blindly overwrite the spare.
4229	 */
4230	if ((error = spa_validate_aux(spa, nvroot, txg, VDEV_ALLOC_ADD)) != 0)
4231		return (spa_vdev_exit(spa, vd, txg, error));
4232
4233	/*
4234	 * Transfer each new top-level vdev from vd to rvd.
4235	 */
4236	for (int c = 0; c < vd->vdev_children; c++) {
4237
4238		/*
4239		 * Set the vdev id to the first hole, if one exists.
4240		 */
4241		for (id = 0; id < rvd->vdev_children; id++) {
4242			if (rvd->vdev_child[id]->vdev_ishole) {
4243				vdev_free(rvd->vdev_child[id]);
4244				break;
4245			}
4246		}
4247		tvd = vd->vdev_child[c];
4248		vdev_remove_child(vd, tvd);
4249		tvd->vdev_id = id;
4250		vdev_add_child(rvd, tvd);
4251		vdev_config_dirty(tvd);
4252	}
4253
4254	if (nspares != 0) {
4255		spa_set_aux_vdevs(&spa->spa_spares, spares, nspares,
4256		    ZPOOL_CONFIG_SPARES);
4257		spa_load_spares(spa);
4258		spa->spa_spares.sav_sync = B_TRUE;
4259	}
4260
4261	if (nl2cache != 0) {
4262		spa_set_aux_vdevs(&spa->spa_l2cache, l2cache, nl2cache,
4263		    ZPOOL_CONFIG_L2CACHE);
4264		spa_load_l2cache(spa);
4265		spa->spa_l2cache.sav_sync = B_TRUE;
4266	}
4267
4268	/*
4269	 * We have to be careful when adding new vdevs to an existing pool.
4270	 * If other threads start allocating from these vdevs before we
4271	 * sync the config cache, and we lose power, then upon reboot we may
4272	 * fail to open the pool because there are DVAs that the config cache
4273	 * can't translate.  Therefore, we first add the vdevs without
4274	 * initializing metaslabs; sync the config cache (via spa_vdev_exit());
4275	 * and then let spa_config_update() initialize the new metaslabs.
4276	 *
4277	 * spa_load() checks for added-but-not-initialized vdevs, so that
4278	 * if we lose power at any point in this sequence, the remaining
4279	 * steps will be completed the next time we load the pool.
4280	 */
4281	(void) spa_vdev_exit(spa, vd, txg, 0);
4282
4283	mutex_enter(&spa_namespace_lock);
4284	spa_config_update(spa, SPA_CONFIG_UPDATE_POOL);
4285	mutex_exit(&spa_namespace_lock);
4286
4287	return (0);
4288}
4289
4290/*
4291 * Attach a device to a mirror.  The arguments are the path to any device
4292 * in the mirror, and the nvroot for the new device.  If the path specifies
4293 * a device that is not mirrored, we automatically insert the mirror vdev.
4294 *
4295 * If 'replacing' is specified, the new device is intended to replace the
4296 * existing device; in this case the two devices are made into their own
4297 * mirror using the 'replacing' vdev, which is functionally identical to
4298 * the mirror vdev (it actually reuses all the same ops) but has a few
4299 * extra rules: you can't attach to it after it's been created, and upon
4300 * completion of resilvering, the first disk (the one being replaced)
4301 * is automatically detached.
4302 */
4303int
4304spa_vdev_attach(spa_t *spa, uint64_t guid, nvlist_t *nvroot, int replacing)
4305{
4306	uint64_t txg, dtl_max_txg;
4307	vdev_t *rvd = spa->spa_root_vdev;
4308	vdev_t *oldvd, *newvd, *newrootvd, *pvd, *tvd;
4309	vdev_ops_t *pvops;
4310	char *oldvdpath, *newvdpath;
4311	int newvd_isspare;
4312	int error;
4313
4314	ASSERT(spa_writeable(spa));
4315
4316	txg = spa_vdev_enter(spa);
4317
4318	oldvd = spa_lookup_by_guid(spa, guid, B_FALSE);
4319
4320	if (oldvd == NULL)
4321		return (spa_vdev_exit(spa, NULL, txg, ENODEV));
4322
4323	if (!oldvd->vdev_ops->vdev_op_leaf)
4324		return (spa_vdev_exit(spa, NULL, txg, ENOTSUP));
4325
4326	pvd = oldvd->vdev_parent;
4327
4328	if ((error = spa_config_parse(spa, &newrootvd, nvroot, NULL, 0,
4329	    VDEV_ALLOC_ATTACH)) != 0)
4330		return (spa_vdev_exit(spa, NULL, txg, EINVAL));
4331
4332	if (newrootvd->vdev_children != 1)
4333		return (spa_vdev_exit(spa, newrootvd, txg, EINVAL));
4334
4335	newvd = newrootvd->vdev_child[0];
4336
4337	if (!newvd->vdev_ops->vdev_op_leaf)
4338		return (spa_vdev_exit(spa, newrootvd, txg, EINVAL));
4339
4340	if ((error = vdev_create(newrootvd, txg, replacing)) != 0)
4341		return (spa_vdev_exit(spa, newrootvd, txg, error));
4342
4343	/*
4344	 * Spares can't replace logs
4345	 */
4346	if (oldvd->vdev_top->vdev_islog && newvd->vdev_isspare)
4347		return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
4348
4349	if (!replacing) {
4350		/*
4351		 * For attach, the only allowable parent is a mirror or the root
4352		 * vdev.
4353		 */
4354		if (pvd->vdev_ops != &vdev_mirror_ops &&
4355		    pvd->vdev_ops != &vdev_root_ops)
4356			return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
4357
4358		pvops = &vdev_mirror_ops;
4359	} else {
4360		/*
4361		 * Active hot spares can only be replaced by inactive hot
4362		 * spares.
4363		 */
4364		if (pvd->vdev_ops == &vdev_spare_ops &&
4365		    oldvd->vdev_isspare &&
4366		    !spa_has_spare(spa, newvd->vdev_guid))
4367			return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
4368
4369		/*
4370		 * If the source is a hot spare, and the parent isn't already a
4371		 * spare, then we want to create a new hot spare.  Otherwise, we
4372		 * want to create a replacing vdev.  The user is not allowed to
4373		 * attach to a spared vdev child unless the 'isspare' state is
4374		 * the same (spare replaces spare, non-spare replaces
4375		 * non-spare).
4376		 */
4377		if (pvd->vdev_ops == &vdev_replacing_ops &&
4378		    spa_version(spa) < SPA_VERSION_MULTI_REPLACE) {
4379			return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
4380		} else if (pvd->vdev_ops == &vdev_spare_ops &&
4381		    newvd->vdev_isspare != oldvd->vdev_isspare) {
4382			return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
4383		}
4384
4385		if (newvd->vdev_isspare)
4386			pvops = &vdev_spare_ops;
4387		else
4388			pvops = &vdev_replacing_ops;
4389	}
4390
4391	/*
4392	 * Make sure the new device is big enough.
4393	 */
4394	if (newvd->vdev_asize < vdev_get_min_asize(oldvd))
4395		return (spa_vdev_exit(spa, newrootvd, txg, EOVERFLOW));
4396
4397	/*
4398	 * The new device cannot have a higher alignment requirement
4399	 * than the top-level vdev.
4400	 */
4401	if (newvd->vdev_ashift > oldvd->vdev_top->vdev_ashift)
4402		return (spa_vdev_exit(spa, newrootvd, txg, EDOM));
4403
4404	/*
4405	 * If this is an in-place replacement, update oldvd's path and devid
4406	 * to make it distinguishable from newvd, and unopenable from now on.
4407	 */
4408	if (strcmp(oldvd->vdev_path, newvd->vdev_path) == 0) {
4409		spa_strfree(oldvd->vdev_path);
4410		oldvd->vdev_path = kmem_alloc(strlen(newvd->vdev_path) + 5,
4411		    KM_SLEEP);
4412		(void) sprintf(oldvd->vdev_path, "%s/%s",
4413		    newvd->vdev_path, "old");
4414		if (oldvd->vdev_devid != NULL) {
4415			spa_strfree(oldvd->vdev_devid);
4416			oldvd->vdev_devid = NULL;
4417		}
4418	}
4419
4420	/* mark the device being resilvered */
4421	newvd->vdev_resilvering = B_TRUE;
4422
4423	/*
4424	 * If the parent is not a mirror, or if we're replacing, insert the new
4425	 * mirror/replacing/spare vdev above oldvd.
4426	 */
4427	if (pvd->vdev_ops != pvops)
4428		pvd = vdev_add_parent(oldvd, pvops);
4429
4430	ASSERT(pvd->vdev_top->vdev_parent == rvd);
4431	ASSERT(pvd->vdev_ops == pvops);
4432	ASSERT(oldvd->vdev_parent == pvd);
4433
4434	/*
4435	 * Extract the new device from its root and add it to pvd.
4436	 */
4437	vdev_remove_child(newrootvd, newvd);
4438	newvd->vdev_id = pvd->vdev_children;
4439	newvd->vdev_crtxg = oldvd->vdev_crtxg;
4440	vdev_add_child(pvd, newvd);
4441
4442	tvd = newvd->vdev_top;
4443	ASSERT(pvd->vdev_top == tvd);
4444	ASSERT(tvd->vdev_parent == rvd);
4445
4446	vdev_config_dirty(tvd);
4447
4448	/*
4449	 * Set newvd's DTL to [TXG_INITIAL, dtl_max_txg) so that we account
4450	 * for any dmu_sync-ed blocks.  It will propagate upward when
4451	 * spa_vdev_exit() calls vdev_dtl_reassess().
4452	 */
4453	dtl_max_txg = txg + TXG_CONCURRENT_STATES;
4454
4455	vdev_dtl_dirty(newvd, DTL_MISSING, TXG_INITIAL,
4456	    dtl_max_txg - TXG_INITIAL);
4457
4458	if (newvd->vdev_isspare) {
4459		spa_spare_activate(newvd);
4460		spa_event_notify(spa, newvd, ESC_ZFS_VDEV_SPARE);
4461	}
4462
4463	oldvdpath = spa_strdup(oldvd->vdev_path);
4464	newvdpath = spa_strdup(newvd->vdev_path);
4465	newvd_isspare = newvd->vdev_isspare;
4466
4467	/*
4468	 * Mark newvd's DTL dirty in this txg.
4469	 */
4470	vdev_dirty(tvd, VDD_DTL, newvd, txg);
4471
4472	/*
4473	 * Restart the resilver
4474	 */
4475	dsl_resilver_restart(spa->spa_dsl_pool, dtl_max_txg);
4476
4477	/*
4478	 * Commit the config
4479	 */
4480	(void) spa_vdev_exit(spa, newrootvd, dtl_max_txg, 0);
4481
4482	spa_history_log_internal(LOG_POOL_VDEV_ATTACH, spa, NULL,
4483	    "%s vdev=%s %s vdev=%s",
4484	    replacing && newvd_isspare ? "spare in" :
4485	    replacing ? "replace" : "attach", newvdpath,
4486	    replacing ? "for" : "to", oldvdpath);
4487
4488	spa_strfree(oldvdpath);
4489	spa_strfree(newvdpath);
4490
4491	if (spa->spa_bootfs)
4492		spa_event_notify(spa, newvd, ESC_ZFS_BOOTFS_VDEV_ATTACH);
4493
4494	return (0);
4495}
4496
4497/*
4498 * Detach a device from a mirror or replacing vdev.
4499 * If 'replace_done' is specified, only detach if the parent
4500 * is a replacing vdev.
4501 */
4502int
4503spa_vdev_detach(spa_t *spa, uint64_t guid, uint64_t pguid, int replace_done)
4504{
4505	uint64_t txg;
4506	int error;
4507	vdev_t *rvd = spa->spa_root_vdev;
4508	vdev_t *vd, *pvd, *cvd, *tvd;
4509	boolean_t unspare = B_FALSE;
4510	uint64_t unspare_guid;
4511	char *vdpath;
4512
4513	ASSERT(spa_writeable(spa));
4514
4515	txg = spa_vdev_enter(spa);
4516
4517	vd = spa_lookup_by_guid(spa, guid, B_FALSE);
4518
4519	if (vd == NULL)
4520		return (spa_vdev_exit(spa, NULL, txg, ENODEV));
4521
4522	if (!vd->vdev_ops->vdev_op_leaf)
4523		return (spa_vdev_exit(spa, NULL, txg, ENOTSUP));
4524
4525	pvd = vd->vdev_parent;
4526
4527	/*
4528	 * If the parent/child relationship is not as expected, don't do it.
4529	 * Consider M(A,R(B,C)) -- that is, a mirror of A with a replacing
4530	 * vdev that's replacing B with C.  The user's intent in replacing
4531	 * is to go from M(A,B) to M(A,C).  If the user decides to cancel
4532	 * the replace by detaching C, the expected behavior is to end up
4533	 * M(A,B).  But suppose that right after deciding to detach C,
4534	 * the replacement of B completes.  We would have M(A,C), and then
4535	 * ask to detach C, which would leave us with just A -- not what
4536	 * the user wanted.  To prevent this, we make sure that the
4537	 * parent/child relationship hasn't changed -- in this example,
4538	 * that C's parent is still the replacing vdev R.
4539	 */
4540	if (pvd->vdev_guid != pguid && pguid != 0)
4541		return (spa_vdev_exit(spa, NULL, txg, EBUSY));
4542
4543	/*
4544	 * Only 'replacing' or 'spare' vdevs can be replaced.
4545	 */
4546	if (replace_done && pvd->vdev_ops != &vdev_replacing_ops &&
4547	    pvd->vdev_ops != &vdev_spare_ops)
4548		return (spa_vdev_exit(spa, NULL, txg, ENOTSUP));
4549
4550	ASSERT(pvd->vdev_ops != &vdev_spare_ops ||
4551	    spa_version(spa) >= SPA_VERSION_SPARES);
4552
4553	/*
4554	 * Only mirror, replacing, and spare vdevs support detach.
4555	 */
4556	if (pvd->vdev_ops != &vdev_replacing_ops &&
4557	    pvd->vdev_ops != &vdev_mirror_ops &&
4558	    pvd->vdev_ops != &vdev_spare_ops)
4559		return (spa_vdev_exit(spa, NULL, txg, ENOTSUP));
4560
4561	/*
4562	 * If this device has the only valid copy of some data,
4563	 * we cannot safely detach it.
4564	 */
4565	if (vdev_dtl_required(vd))
4566		return (spa_vdev_exit(spa, NULL, txg, EBUSY));
4567
4568	ASSERT(pvd->vdev_children >= 2);
4569
4570	/*
4571	 * If we are detaching the second disk from a replacing vdev, then
4572	 * check to see if we changed the original vdev's path to have "/old"
4573	 * at the end in spa_vdev_attach().  If so, undo that change now.
4574	 */
4575	if (pvd->vdev_ops == &vdev_replacing_ops && vd->vdev_id > 0 &&
4576	    vd->vdev_path != NULL) {
4577		size_t len = strlen(vd->vdev_path);
4578
4579		for (int c = 0; c < pvd->vdev_children; c++) {
4580			cvd = pvd->vdev_child[c];
4581
4582			if (cvd == vd || cvd->vdev_path == NULL)
4583				continue;
4584
4585			if (strncmp(cvd->vdev_path, vd->vdev_path, len) == 0 &&
4586			    strcmp(cvd->vdev_path + len, "/old") == 0) {
4587				spa_strfree(cvd->vdev_path);
4588				cvd->vdev_path = spa_strdup(vd->vdev_path);
4589				break;
4590			}
4591		}
4592	}
4593
4594	/*
4595	 * If we are detaching the original disk from a spare, then it implies
4596	 * that the spare should become a real disk, and be removed from the
4597	 * active spare list for the pool.
4598	 */
4599	if (pvd->vdev_ops == &vdev_spare_ops &&
4600	    vd->vdev_id == 0 &&
4601	    pvd->vdev_child[pvd->vdev_children - 1]->vdev_isspare)
4602		unspare = B_TRUE;
4603
4604	/*
4605	 * Erase the disk labels so the disk can be used for other things.
4606	 * This must be done after all other error cases are handled,
4607	 * but before we disembowel vd (so we can still do I/O to it).
4608	 * But if we can't do it, don't treat the error as fatal --
4609	 * it may be that the unwritability of the disk is the reason
4610	 * it's being detached!
4611	 */
4612	error = vdev_label_init(vd, 0, VDEV_LABEL_REMOVE);
4613
4614	/*
4615	 * Remove vd from its parent and compact the parent's children.
4616	 */
4617	vdev_remove_child(pvd, vd);
4618	vdev_compact_children(pvd);
4619
4620	/*
4621	 * Remember one of the remaining children so we can get tvd below.
4622	 */
4623	cvd = pvd->vdev_child[pvd->vdev_children - 1];
4624
4625	/*
4626	 * If we need to remove the remaining child from the list of hot spares,
4627	 * do it now, marking the vdev as no longer a spare in the process.
4628	 * We must do this before vdev_remove_parent(), because that can
4629	 * change the GUID if it creates a new toplevel GUID.  For a similar
4630	 * reason, we must remove the spare now, in the same txg as the detach;
4631	 * otherwise someone could attach a new sibling, change the GUID, and
4632	 * the subsequent attempt to spa_vdev_remove(unspare_guid) would fail.
4633	 */
4634	if (unspare) {
4635		ASSERT(cvd->vdev_isspare);
4636		spa_spare_remove(cvd);
4637		unspare_guid = cvd->vdev_guid;
4638		(void) spa_vdev_remove(spa, unspare_guid, B_TRUE);
4639		cvd->vdev_unspare = B_TRUE;
4640	}
4641
4642	/*
4643	 * If the parent mirror/replacing vdev only has one child,
4644	 * the parent is no longer needed.  Remove it from the tree.
4645	 */
4646	if (pvd->vdev_children == 1) {
4647		if (pvd->vdev_ops == &vdev_spare_ops)
4648			cvd->vdev_unspare = B_FALSE;
4649		vdev_remove_parent(cvd);
4650		cvd->vdev_resilvering = B_FALSE;
4651	}
4652
4653
4654	/*
4655	 * We don't set tvd until now because the parent we just removed
4656	 * may have been the previous top-level vdev.
4657	 */
4658	tvd = cvd->vdev_top;
4659	ASSERT(tvd->vdev_parent == rvd);
4660
4661	/*
4662	 * Reevaluate the parent vdev state.
4663	 */
4664	vdev_propagate_state(cvd);
4665
4666	/*
4667	 * If the 'autoexpand' property is set on the pool then automatically
4668	 * try to expand the size of the pool. For example if the device we
4669	 * just detached was smaller than the others, it may be possible to
4670	 * add metaslabs (i.e. grow the pool). We need to reopen the vdev
4671	 * first so that we can obtain the updated sizes of the leaf vdevs.
4672	 */
4673	if (spa->spa_autoexpand) {
4674		vdev_reopen(tvd);
4675		vdev_expand(tvd, txg);
4676	}
4677
4678	vdev_config_dirty(tvd);
4679
4680	/*
4681	 * Mark vd's DTL as dirty in this txg.  vdev_dtl_sync() will see that
4682	 * vd->vdev_detached is set and free vd's DTL object in syncing context.
4683	 * But first make sure we're not on any *other* txg's DTL list, to
4684	 * prevent vd from being accessed after it's freed.
4685	 */
4686	vdpath = spa_strdup(vd->vdev_path);
4687	for (int t = 0; t < TXG_SIZE; t++)
4688		(void) txg_list_remove_this(&tvd->vdev_dtl_list, vd, t);
4689	vd->vdev_detached = B_TRUE;
4690	vdev_dirty(tvd, VDD_DTL, vd, txg);
4691
4692	spa_event_notify(spa, vd, ESC_ZFS_VDEV_REMOVE);
4693
4694	/* hang on to the spa before we release the lock */
4695	spa_open_ref(spa, FTAG);
4696
4697	error = spa_vdev_exit(spa, vd, txg, 0);
4698
4699	spa_history_log_internal(LOG_POOL_VDEV_DETACH, spa, NULL,
4700	    "vdev=%s", vdpath);
4701	spa_strfree(vdpath);
4702
4703	/*
4704	 * If this was the removal of the original device in a hot spare vdev,
4705	 * then we want to go through and remove the device from the hot spare
4706	 * list of every other pool.
4707	 */
4708	if (unspare) {
4709		spa_t *altspa = NULL;
4710
4711		mutex_enter(&spa_namespace_lock);
4712		while ((altspa = spa_next(altspa)) != NULL) {
4713			if (altspa->spa_state != POOL_STATE_ACTIVE ||
4714			    altspa == spa)
4715				continue;
4716
4717			spa_open_ref(altspa, FTAG);
4718			mutex_exit(&spa_namespace_lock);
4719			(void) spa_vdev_remove(altspa, unspare_guid, B_TRUE);
4720			mutex_enter(&spa_namespace_lock);
4721			spa_close(altspa, FTAG);
4722		}
4723		mutex_exit(&spa_namespace_lock);
4724
4725		/* search the rest of the vdevs for spares to remove */
4726		spa_vdev_resilver_done(spa);
4727	}
4728
4729	/* all done with the spa; OK to release */
4730	mutex_enter(&spa_namespace_lock);
4731	spa_close(spa, FTAG);
4732	mutex_exit(&spa_namespace_lock);
4733
4734	return (error);
4735}
4736
4737/*
4738 * Split a set of devices from their mirrors, and create a new pool from them.
4739 */
4740int
4741spa_vdev_split_mirror(spa_t *spa, char *newname, nvlist_t *config,
4742    nvlist_t *props, boolean_t exp)
4743{
4744	int error = 0;
4745	uint64_t txg, *glist;
4746	spa_t *newspa;
4747	uint_t c, children, lastlog;
4748	nvlist_t **child, *nvl, *tmp;
4749	dmu_tx_t *tx;
4750	char *altroot = NULL;
4751	vdev_t *rvd, **vml = NULL;			/* vdev modify list */
4752	boolean_t activate_slog;
4753
4754	ASSERT(spa_writeable(spa));
4755
4756	txg = spa_vdev_enter(spa);
4757
4758	/* clear the log and flush everything up to now */
4759	activate_slog = spa_passivate_log(spa);
4760	(void) spa_vdev_config_exit(spa, NULL, txg, 0, FTAG);
4761	error = spa_offline_log(spa);
4762	txg = spa_vdev_config_enter(spa);
4763
4764	if (activate_slog)
4765		spa_activate_log(spa);
4766
4767	if (error != 0)
4768		return (spa_vdev_exit(spa, NULL, txg, error));
4769
4770	/* check new spa name before going any further */
4771	if (spa_lookup(newname) != NULL)
4772		return (spa_vdev_exit(spa, NULL, txg, EEXIST));
4773
4774	/*
4775	 * scan through all the children to ensure they're all mirrors
4776	 */
4777	if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, &nvl) != 0 ||
4778	    nvlist_lookup_nvlist_array(nvl, ZPOOL_CONFIG_CHILDREN, &child,
4779	    &children) != 0)
4780		return (spa_vdev_exit(spa, NULL, txg, EINVAL));
4781
4782	/* first, check to ensure we've got the right child count */
4783	rvd = spa->spa_root_vdev;
4784	lastlog = 0;
4785	for (c = 0; c < rvd->vdev_children; c++) {
4786		vdev_t *vd = rvd->vdev_child[c];
4787
4788		/* don't count the holes & logs as children */
4789		if (vd->vdev_islog || vd->vdev_ishole) {
4790			if (lastlog == 0)
4791				lastlog = c;
4792			continue;
4793		}
4794
4795		lastlog = 0;
4796	}
4797	if (children != (lastlog != 0 ? lastlog : rvd->vdev_children))
4798		return (spa_vdev_exit(spa, NULL, txg, EINVAL));
4799
4800	/* next, ensure no spare or cache devices are part of the split */
4801	if (nvlist_lookup_nvlist(nvl, ZPOOL_CONFIG_SPARES, &tmp) == 0 ||
4802	    nvlist_lookup_nvlist(nvl, ZPOOL_CONFIG_L2CACHE, &tmp) == 0)
4803		return (spa_vdev_exit(spa, NULL, txg, EINVAL));
4804
4805	vml = kmem_zalloc(children * sizeof (vdev_t *), KM_SLEEP);
4806	glist = kmem_zalloc(children * sizeof (uint64_t), KM_SLEEP);
4807
4808	/* then, loop over each vdev and validate it */
4809	for (c = 0; c < children; c++) {
4810		uint64_t is_hole = 0;
4811
4812		(void) nvlist_lookup_uint64(child[c], ZPOOL_CONFIG_IS_HOLE,
4813		    &is_hole);
4814
4815		if (is_hole != 0) {
4816			if (spa->spa_root_vdev->vdev_child[c]->vdev_ishole ||
4817			    spa->spa_root_vdev->vdev_child[c]->vdev_islog) {
4818				continue;
4819			} else {
4820				error = EINVAL;
4821				break;
4822			}
4823		}
4824
4825		/* which disk is going to be split? */
4826		if (nvlist_lookup_uint64(child[c], ZPOOL_CONFIG_GUID,
4827		    &glist[c]) != 0) {
4828			error = EINVAL;
4829			break;
4830		}
4831
4832		/* look it up in the spa */
4833		vml[c] = spa_lookup_by_guid(spa, glist[c], B_FALSE);
4834		if (vml[c] == NULL) {
4835			error = ENODEV;
4836			break;
4837		}
4838
4839		/* make sure there's nothing stopping the split */
4840		if (vml[c]->vdev_parent->vdev_ops != &vdev_mirror_ops ||
4841		    vml[c]->vdev_islog ||
4842		    vml[c]->vdev_ishole ||
4843		    vml[c]->vdev_isspare ||
4844		    vml[c]->vdev_isl2cache ||
4845		    !vdev_writeable(vml[c]) ||
4846		    vml[c]->vdev_children != 0 ||
4847		    vml[c]->vdev_state != VDEV_STATE_HEALTHY ||
4848		    c != spa->spa_root_vdev->vdev_child[c]->vdev_id) {
4849			error = EINVAL;
4850			break;
4851		}
4852
4853		if (vdev_dtl_required(vml[c])) {
4854			error = EBUSY;
4855			break;
4856		}
4857
4858		/* we need certain info from the top level */
4859		VERIFY(nvlist_add_uint64(child[c], ZPOOL_CONFIG_METASLAB_ARRAY,
4860		    vml[c]->vdev_top->vdev_ms_array) == 0);
4861		VERIFY(nvlist_add_uint64(child[c], ZPOOL_CONFIG_METASLAB_SHIFT,
4862		    vml[c]->vdev_top->vdev_ms_shift) == 0);
4863		VERIFY(nvlist_add_uint64(child[c], ZPOOL_CONFIG_ASIZE,
4864		    vml[c]->vdev_top->vdev_asize) == 0);
4865		VERIFY(nvlist_add_uint64(child[c], ZPOOL_CONFIG_ASHIFT,
4866		    vml[c]->vdev_top->vdev_ashift) == 0);
4867	}
4868
4869	if (error != 0) {
4870		kmem_free(vml, children * sizeof (vdev_t *));
4871		kmem_free(glist, children * sizeof (uint64_t));
4872		return (spa_vdev_exit(spa, NULL, txg, error));
4873	}
4874
4875	/* stop writers from using the disks */
4876	for (c = 0; c < children; c++) {
4877		if (vml[c] != NULL)
4878			vml[c]->vdev_offline = B_TRUE;
4879	}
4880	vdev_reopen(spa->spa_root_vdev);
4881
4882	/*
4883	 * Temporarily record the splitting vdevs in the spa config.  This
4884	 * will disappear once the config is regenerated.
4885	 */
4886	VERIFY(nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) == 0);
4887	VERIFY(nvlist_add_uint64_array(nvl, ZPOOL_CONFIG_SPLIT_LIST,
4888	    glist, children) == 0);
4889	kmem_free(glist, children * sizeof (uint64_t));
4890
4891	mutex_enter(&spa->spa_props_lock);
4892	VERIFY(nvlist_add_nvlist(spa->spa_config, ZPOOL_CONFIG_SPLIT,
4893	    nvl) == 0);
4894	mutex_exit(&spa->spa_props_lock);
4895	spa->spa_config_splitting = nvl;
4896	vdev_config_dirty(spa->spa_root_vdev);
4897
4898	/* configure and create the new pool */
4899	VERIFY(nvlist_add_string(config, ZPOOL_CONFIG_POOL_NAME, newname) == 0);
4900	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_STATE,
4901	    exp ? POOL_STATE_EXPORTED : POOL_STATE_ACTIVE) == 0);
4902	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_VERSION,
4903	    spa_version(spa)) == 0);
4904	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_TXG,
4905	    spa->spa_config_txg) == 0);
4906	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_GUID,
4907	    spa_generate_guid(NULL)) == 0);
4908	(void) nvlist_lookup_string(props,
4909	    zpool_prop_to_name(ZPOOL_PROP_ALTROOT), &altroot);
4910
4911	/* add the new pool to the namespace */
4912	newspa = spa_add(newname, config, altroot);
4913	newspa->spa_config_txg = spa->spa_config_txg;
4914	spa_set_log_state(newspa, SPA_LOG_CLEAR);
4915
4916	/* release the spa config lock, retaining the namespace lock */
4917	spa_vdev_config_exit(spa, NULL, txg, 0, FTAG);
4918
4919	if (zio_injection_enabled)
4920		zio_handle_panic_injection(spa, FTAG, 1);
4921
4922	spa_activate(newspa, spa_mode_global);
4923	spa_async_suspend(newspa);
4924
4925#ifndef sun
4926	/* mark that we are creating new spa by splitting */
4927	newspa->spa_splitting_newspa = B_TRUE;
4928#endif
4929	/* create the new pool from the disks of the original pool */
4930	error = spa_load(newspa, SPA_LOAD_IMPORT, SPA_IMPORT_ASSEMBLE, B_TRUE);
4931#ifndef sun
4932	newspa->spa_splitting_newspa = B_FALSE;
4933#endif
4934	if (error)
4935		goto out;
4936
4937	/* if that worked, generate a real config for the new pool */
4938	if (newspa->spa_root_vdev != NULL) {
4939		VERIFY(nvlist_alloc(&newspa->spa_config_splitting,
4940		    NV_UNIQUE_NAME, KM_SLEEP) == 0);
4941		VERIFY(nvlist_add_uint64(newspa->spa_config_splitting,
4942		    ZPOOL_CONFIG_SPLIT_GUID, spa_guid(spa)) == 0);
4943		spa_config_set(newspa, spa_config_generate(newspa, NULL, -1ULL,
4944		    B_TRUE));
4945	}
4946
4947	/* set the props */
4948	if (props != NULL) {
4949		spa_configfile_set(newspa, props, B_FALSE);
4950		error = spa_prop_set(newspa, props);
4951		if (error)
4952			goto out;
4953	}
4954
4955	/* flush everything */
4956	txg = spa_vdev_config_enter(newspa);
4957	vdev_config_dirty(newspa->spa_root_vdev);
4958	(void) spa_vdev_config_exit(newspa, NULL, txg, 0, FTAG);
4959
4960	if (zio_injection_enabled)
4961		zio_handle_panic_injection(spa, FTAG, 2);
4962
4963	spa_async_resume(newspa);
4964
4965	/* finally, update the original pool's config */
4966	txg = spa_vdev_config_enter(spa);
4967	tx = dmu_tx_create_dd(spa_get_dsl(spa)->dp_mos_dir);
4968	error = dmu_tx_assign(tx, TXG_WAIT);
4969	if (error != 0)
4970		dmu_tx_abort(tx);
4971	for (c = 0; c < children; c++) {
4972		if (vml[c] != NULL) {
4973			vdev_split(vml[c]);
4974			if (error == 0)
4975				spa_history_log_internal(LOG_POOL_VDEV_DETACH,
4976				    spa, tx, "vdev=%s",
4977				    vml[c]->vdev_path);
4978			vdev_free(vml[c]);
4979		}
4980	}
4981	vdev_config_dirty(spa->spa_root_vdev);
4982	spa->spa_config_splitting = NULL;
4983	nvlist_free(nvl);
4984	if (error == 0)
4985		dmu_tx_commit(tx);
4986	(void) spa_vdev_exit(spa, NULL, txg, 0);
4987
4988	if (zio_injection_enabled)
4989		zio_handle_panic_injection(spa, FTAG, 3);
4990
4991	/* split is complete; log a history record */
4992	spa_history_log_internal(LOG_POOL_SPLIT, newspa, NULL,
4993	    "split new pool %s from pool %s", newname, spa_name(spa));
4994
4995	kmem_free(vml, children * sizeof (vdev_t *));
4996
4997	/* if we're not going to mount the filesystems in userland, export */
4998	if (exp)
4999		error = spa_export_common(newname, POOL_STATE_EXPORTED, NULL,
5000		    B_FALSE, B_FALSE);
5001
5002	return (error);
5003
5004out:
5005	spa_unload(newspa);
5006	spa_deactivate(newspa);
5007	spa_remove(newspa);
5008
5009	txg = spa_vdev_config_enter(spa);
5010
5011	/* re-online all offlined disks */
5012	for (c = 0; c < children; c++) {
5013		if (vml[c] != NULL)
5014			vml[c]->vdev_offline = B_FALSE;
5015	}
5016	vdev_reopen(spa->spa_root_vdev);
5017
5018	nvlist_free(spa->spa_config_splitting);
5019	spa->spa_config_splitting = NULL;
5020	(void) spa_vdev_exit(spa, NULL, txg, error);
5021
5022	kmem_free(vml, children * sizeof (vdev_t *));
5023	return (error);
5024}
5025
5026static nvlist_t *
5027spa_nvlist_lookup_by_guid(nvlist_t **nvpp, int count, uint64_t target_guid)
5028{
5029	for (int i = 0; i < count; i++) {
5030		uint64_t guid;
5031
5032		VERIFY(nvlist_lookup_uint64(nvpp[i], ZPOOL_CONFIG_GUID,
5033		    &guid) == 0);
5034
5035		if (guid == target_guid)
5036			return (nvpp[i]);
5037	}
5038
5039	return (NULL);
5040}
5041
5042static void
5043spa_vdev_remove_aux(nvlist_t *config, char *name, nvlist_t **dev, int count,
5044	nvlist_t *dev_to_remove)
5045{
5046	nvlist_t **newdev = NULL;
5047
5048	if (count > 1)
5049		newdev = kmem_alloc((count - 1) * sizeof (void *), KM_SLEEP);
5050
5051	for (int i = 0, j = 0; i < count; i++) {
5052		if (dev[i] == dev_to_remove)
5053			continue;
5054		VERIFY(nvlist_dup(dev[i], &newdev[j++], KM_SLEEP) == 0);
5055	}
5056
5057	VERIFY(nvlist_remove(config, name, DATA_TYPE_NVLIST_ARRAY) == 0);
5058	VERIFY(nvlist_add_nvlist_array(config, name, newdev, count - 1) == 0);
5059
5060	for (int i = 0; i < count - 1; i++)
5061		nvlist_free(newdev[i]);
5062
5063	if (count > 1)
5064		kmem_free(newdev, (count - 1) * sizeof (void *));
5065}
5066
5067/*
5068 * Evacuate the device.
5069 */
5070static int
5071spa_vdev_remove_evacuate(spa_t *spa, vdev_t *vd)
5072{
5073	uint64_t txg;
5074	int error = 0;
5075
5076	ASSERT(MUTEX_HELD(&spa_namespace_lock));
5077	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == 0);
5078	ASSERT(vd == vd->vdev_top);
5079
5080	/*
5081	 * Evacuate the device.  We don't hold the config lock as writer
5082	 * since we need to do I/O but we do keep the
5083	 * spa_namespace_lock held.  Once this completes the device
5084	 * should no longer have any blocks allocated on it.
5085	 */
5086	if (vd->vdev_islog) {
5087		if (vd->vdev_stat.vs_alloc != 0)
5088			error = spa_offline_log(spa);
5089	} else {
5090		error = ENOTSUP;
5091	}
5092
5093	if (error)
5094		return (error);
5095
5096	/*
5097	 * The evacuation succeeded.  Remove any remaining MOS metadata
5098	 * associated with this vdev, and wait for these changes to sync.
5099	 */
5100	ASSERT0(vd->vdev_stat.vs_alloc);
5101	txg = spa_vdev_config_enter(spa);
5102	vd->vdev_removing = B_TRUE;
5103	vdev_dirty(vd, 0, NULL, txg);
5104	vdev_config_dirty(vd);
5105	spa_vdev_config_exit(spa, NULL, txg, 0, FTAG);
5106
5107	return (0);
5108}
5109
5110/*
5111 * Complete the removal by cleaning up the namespace.
5112 */
5113static void
5114spa_vdev_remove_from_namespace(spa_t *spa, vdev_t *vd)
5115{
5116	vdev_t *rvd = spa->spa_root_vdev;
5117	uint64_t id = vd->vdev_id;
5118	boolean_t last_vdev = (id == (rvd->vdev_children - 1));
5119
5120	ASSERT(MUTEX_HELD(&spa_namespace_lock));
5121	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
5122	ASSERT(vd == vd->vdev_top);
5123
5124	/*
5125	 * Only remove any devices which are empty.
5126	 */
5127	if (vd->vdev_stat.vs_alloc != 0)
5128		return;
5129
5130	(void) vdev_label_init(vd, 0, VDEV_LABEL_REMOVE);
5131
5132	if (list_link_active(&vd->vdev_state_dirty_node))
5133		vdev_state_clean(vd);
5134	if (list_link_active(&vd->vdev_config_dirty_node))
5135		vdev_config_clean(vd);
5136
5137	vdev_free(vd);
5138
5139	if (last_vdev) {
5140		vdev_compact_children(rvd);
5141	} else {
5142		vd = vdev_alloc_common(spa, id, 0, &vdev_hole_ops);
5143		vdev_add_child(rvd, vd);
5144	}
5145	vdev_config_dirty(rvd);
5146
5147	/*
5148	 * Reassess the health of our root vdev.
5149	 */
5150	vdev_reopen(rvd);
5151}
5152
5153/*
5154 * Remove a device from the pool -
5155 *
5156 * Removing a device from the vdev namespace requires several steps
5157 * and can take a significant amount of time.  As a result we use
5158 * the spa_vdev_config_[enter/exit] functions which allow us to
5159 * grab and release the spa_config_lock while still holding the namespace
5160 * lock.  During each step the configuration is synced out.
5161 */
5162
5163/*
5164 * Remove a device from the pool.  Currently, this supports removing only hot
5165 * spares, slogs, and level 2 ARC devices.
5166 */
5167int
5168spa_vdev_remove(spa_t *spa, uint64_t guid, boolean_t unspare)
5169{
5170	vdev_t *vd;
5171	metaslab_group_t *mg;
5172	nvlist_t **spares, **l2cache, *nv;
5173	uint64_t txg = 0;
5174	uint_t nspares, nl2cache;
5175	int error = 0;
5176	boolean_t locked = MUTEX_HELD(&spa_namespace_lock);
5177
5178	ASSERT(spa_writeable(spa));
5179
5180	if (!locked)
5181		txg = spa_vdev_enter(spa);
5182
5183	vd = spa_lookup_by_guid(spa, guid, B_FALSE);
5184
5185	if (spa->spa_spares.sav_vdevs != NULL &&
5186	    nvlist_lookup_nvlist_array(spa->spa_spares.sav_config,
5187	    ZPOOL_CONFIG_SPARES, &spares, &nspares) == 0 &&
5188	    (nv = spa_nvlist_lookup_by_guid(spares, nspares, guid)) != NULL) {
5189		/*
5190		 * Only remove the hot spare if it's not currently in use
5191		 * in this pool.
5192		 */
5193		if (vd == NULL || unspare) {
5194			spa_vdev_remove_aux(spa->spa_spares.sav_config,
5195			    ZPOOL_CONFIG_SPARES, spares, nspares, nv);
5196			spa_load_spares(spa);
5197			spa->spa_spares.sav_sync = B_TRUE;
5198		} else {
5199			error = EBUSY;
5200		}
5201	} else if (spa->spa_l2cache.sav_vdevs != NULL &&
5202	    nvlist_lookup_nvlist_array(spa->spa_l2cache.sav_config,
5203	    ZPOOL_CONFIG_L2CACHE, &l2cache, &nl2cache) == 0 &&
5204	    (nv = spa_nvlist_lookup_by_guid(l2cache, nl2cache, guid)) != NULL) {
5205		/*
5206		 * Cache devices can always be removed.
5207		 */
5208		spa_vdev_remove_aux(spa->spa_l2cache.sav_config,
5209		    ZPOOL_CONFIG_L2CACHE, l2cache, nl2cache, nv);
5210		spa_load_l2cache(spa);
5211		spa->spa_l2cache.sav_sync = B_TRUE;
5212	} else if (vd != NULL && vd->vdev_islog) {
5213		ASSERT(!locked);
5214		ASSERT(vd == vd->vdev_top);
5215
5216		/*
5217		 * XXX - Once we have bp-rewrite this should
5218		 * become the common case.
5219		 */
5220
5221		mg = vd->vdev_mg;
5222
5223		/*
5224		 * Stop allocating from this vdev.
5225		 */
5226		metaslab_group_passivate(mg);
5227
5228		/*
5229		 * Wait for the youngest allocations and frees to sync,
5230		 * and then wait for the deferral of those frees to finish.
5231		 */
5232		spa_vdev_config_exit(spa, NULL,
5233		    txg + TXG_CONCURRENT_STATES + TXG_DEFER_SIZE, 0, FTAG);
5234
5235		/*
5236		 * Attempt to evacuate the vdev.
5237		 */
5238		error = spa_vdev_remove_evacuate(spa, vd);
5239
5240		txg = spa_vdev_config_enter(spa);
5241
5242		/*
5243		 * If we couldn't evacuate the vdev, unwind.
5244		 */
5245		if (error) {
5246			metaslab_group_activate(mg);
5247			return (spa_vdev_exit(spa, NULL, txg, error));
5248		}
5249
5250		/*
5251		 * Clean up the vdev namespace.
5252		 */
5253		spa_vdev_remove_from_namespace(spa, vd);
5254
5255	} else if (vd != NULL) {
5256		/*
5257		 * Normal vdevs cannot be removed (yet).
5258		 */
5259		error = ENOTSUP;
5260	} else {
5261		/*
5262		 * There is no vdev of any kind with the specified guid.
5263		 */
5264		error = ENOENT;
5265	}
5266
5267	if (!locked)
5268		return (spa_vdev_exit(spa, NULL, txg, error));
5269
5270	return (error);
5271}
5272
5273/*
5274 * Find any device that's done replacing, or a vdev marked 'unspare' that's
5275 * current spared, so we can detach it.
5276 */
5277static vdev_t *
5278spa_vdev_resilver_done_hunt(vdev_t *vd)
5279{
5280	vdev_t *newvd, *oldvd;
5281
5282	for (int c = 0; c < vd->vdev_children; c++) {
5283		oldvd = spa_vdev_resilver_done_hunt(vd->vdev_child[c]);
5284		if (oldvd != NULL)
5285			return (oldvd);
5286	}
5287
5288	/*
5289	 * Check for a completed replacement.  We always consider the first
5290	 * vdev in the list to be the oldest vdev, and the last one to be
5291	 * the newest (see spa_vdev_attach() for how that works).  In
5292	 * the case where the newest vdev is faulted, we will not automatically
5293	 * remove it after a resilver completes.  This is OK as it will require
5294	 * user intervention to determine which disk the admin wishes to keep.
5295	 */
5296	if (vd->vdev_ops == &vdev_replacing_ops) {
5297		ASSERT(vd->vdev_children > 1);
5298
5299		newvd = vd->vdev_child[vd->vdev_children - 1];
5300		oldvd = vd->vdev_child[0];
5301
5302		if (vdev_dtl_empty(newvd, DTL_MISSING) &&
5303		    vdev_dtl_empty(newvd, DTL_OUTAGE) &&
5304		    !vdev_dtl_required(oldvd))
5305			return (oldvd);
5306	}
5307
5308	/*
5309	 * Check for a completed resilver with the 'unspare' flag set.
5310	 */
5311	if (vd->vdev_ops == &vdev_spare_ops) {
5312		vdev_t *first = vd->vdev_child[0];
5313		vdev_t *last = vd->vdev_child[vd->vdev_children - 1];
5314
5315		if (last->vdev_unspare) {
5316			oldvd = first;
5317			newvd = last;
5318		} else if (first->vdev_unspare) {
5319			oldvd = last;
5320			newvd = first;
5321		} else {
5322			oldvd = NULL;
5323		}
5324
5325		if (oldvd != NULL &&
5326		    vdev_dtl_empty(newvd, DTL_MISSING) &&
5327		    vdev_dtl_empty(newvd, DTL_OUTAGE) &&
5328		    !vdev_dtl_required(oldvd))
5329			return (oldvd);
5330
5331		/*
5332		 * If there are more than two spares attached to a disk,
5333		 * and those spares are not required, then we want to
5334		 * attempt to free them up now so that they can be used
5335		 * by other pools.  Once we're back down to a single
5336		 * disk+spare, we stop removing them.
5337		 */
5338		if (vd->vdev_children > 2) {
5339			newvd = vd->vdev_child[1];
5340
5341			if (newvd->vdev_isspare && last->vdev_isspare &&
5342			    vdev_dtl_empty(last, DTL_MISSING) &&
5343			    vdev_dtl_empty(last, DTL_OUTAGE) &&
5344			    !vdev_dtl_required(newvd))
5345				return (newvd);
5346		}
5347	}
5348
5349	return (NULL);
5350}
5351
5352static void
5353spa_vdev_resilver_done(spa_t *spa)
5354{
5355	vdev_t *vd, *pvd, *ppvd;
5356	uint64_t guid, sguid, pguid, ppguid;
5357
5358	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
5359
5360	while ((vd = spa_vdev_resilver_done_hunt(spa->spa_root_vdev)) != NULL) {
5361		pvd = vd->vdev_parent;
5362		ppvd = pvd->vdev_parent;
5363		guid = vd->vdev_guid;
5364		pguid = pvd->vdev_guid;
5365		ppguid = ppvd->vdev_guid;
5366		sguid = 0;
5367		/*
5368		 * If we have just finished replacing a hot spared device, then
5369		 * we need to detach the parent's first child (the original hot
5370		 * spare) as well.
5371		 */
5372		if (ppvd->vdev_ops == &vdev_spare_ops && pvd->vdev_id == 0 &&
5373		    ppvd->vdev_children == 2) {
5374			ASSERT(pvd->vdev_ops == &vdev_replacing_ops);
5375			sguid = ppvd->vdev_child[1]->vdev_guid;
5376		}
5377		spa_config_exit(spa, SCL_ALL, FTAG);
5378		if (spa_vdev_detach(spa, guid, pguid, B_TRUE) != 0)
5379			return;
5380		if (sguid && spa_vdev_detach(spa, sguid, ppguid, B_TRUE) != 0)
5381			return;
5382		spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
5383	}
5384
5385	spa_config_exit(spa, SCL_ALL, FTAG);
5386}
5387
5388/*
5389 * Update the stored path or FRU for this vdev.
5390 */
5391int
5392spa_vdev_set_common(spa_t *spa, uint64_t guid, const char *value,
5393    boolean_t ispath)
5394{
5395	vdev_t *vd;
5396	boolean_t sync = B_FALSE;
5397
5398	ASSERT(spa_writeable(spa));
5399
5400	spa_vdev_state_enter(spa, SCL_ALL);
5401
5402	if ((vd = spa_lookup_by_guid(spa, guid, B_TRUE)) == NULL)
5403		return (spa_vdev_state_exit(spa, NULL, ENOENT));
5404
5405	if (!vd->vdev_ops->vdev_op_leaf)
5406		return (spa_vdev_state_exit(spa, NULL, ENOTSUP));
5407
5408	if (ispath) {
5409		if (strcmp(value, vd->vdev_path) != 0) {
5410			spa_strfree(vd->vdev_path);
5411			vd->vdev_path = spa_strdup(value);
5412			sync = B_TRUE;
5413		}
5414	} else {
5415		if (vd->vdev_fru == NULL) {
5416			vd->vdev_fru = spa_strdup(value);
5417			sync = B_TRUE;
5418		} else if (strcmp(value, vd->vdev_fru) != 0) {
5419			spa_strfree(vd->vdev_fru);
5420			vd->vdev_fru = spa_strdup(value);
5421			sync = B_TRUE;
5422		}
5423	}
5424
5425	return (spa_vdev_state_exit(spa, sync ? vd : NULL, 0));
5426}
5427
5428int
5429spa_vdev_setpath(spa_t *spa, uint64_t guid, const char *newpath)
5430{
5431	return (spa_vdev_set_common(spa, guid, newpath, B_TRUE));
5432}
5433
5434int
5435spa_vdev_setfru(spa_t *spa, uint64_t guid, const char *newfru)
5436{
5437	return (spa_vdev_set_common(spa, guid, newfru, B_FALSE));
5438}
5439
5440/*
5441 * ==========================================================================
5442 * SPA Scanning
5443 * ==========================================================================
5444 */
5445
5446int
5447spa_scan_stop(spa_t *spa)
5448{
5449	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == 0);
5450	if (dsl_scan_resilvering(spa->spa_dsl_pool))
5451		return (EBUSY);
5452	return (dsl_scan_cancel(spa->spa_dsl_pool));
5453}
5454
5455int
5456spa_scan(spa_t *spa, pool_scan_func_t func)
5457{
5458	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == 0);
5459
5460	if (func >= POOL_SCAN_FUNCS || func == POOL_SCAN_NONE)
5461		return (ENOTSUP);
5462
5463	/*
5464	 * If a resilver was requested, but there is no DTL on a
5465	 * writeable leaf device, we have nothing to do.
5466	 */
5467	if (func == POOL_SCAN_RESILVER &&
5468	    !vdev_resilver_needed(spa->spa_root_vdev, NULL, NULL)) {
5469		spa_async_request(spa, SPA_ASYNC_RESILVER_DONE);
5470		return (0);
5471	}
5472
5473	return (dsl_scan(spa->spa_dsl_pool, func));
5474}
5475
5476/*
5477 * ==========================================================================
5478 * SPA async task processing
5479 * ==========================================================================
5480 */
5481
5482static void
5483spa_async_remove(spa_t *spa, vdev_t *vd)
5484{
5485	if (vd->vdev_remove_wanted) {
5486		vd->vdev_remove_wanted = B_FALSE;
5487		vd->vdev_delayed_close = B_FALSE;
5488		vdev_set_state(vd, B_FALSE, VDEV_STATE_REMOVED, VDEV_AUX_NONE);
5489
5490		/*
5491		 * We want to clear the stats, but we don't want to do a full
5492		 * vdev_clear() as that will cause us to throw away
5493		 * degraded/faulted state as well as attempt to reopen the
5494		 * device, all of which is a waste.
5495		 */
5496		vd->vdev_stat.vs_read_errors = 0;
5497		vd->vdev_stat.vs_write_errors = 0;
5498		vd->vdev_stat.vs_checksum_errors = 0;
5499
5500		vdev_state_dirty(vd->vdev_top);
5501	}
5502
5503	for (int c = 0; c < vd->vdev_children; c++)
5504		spa_async_remove(spa, vd->vdev_child[c]);
5505}
5506
5507static void
5508spa_async_probe(spa_t *spa, vdev_t *vd)
5509{
5510	if (vd->vdev_probe_wanted) {
5511		vd->vdev_probe_wanted = B_FALSE;
5512		vdev_reopen(vd);	/* vdev_open() does the actual probe */
5513	}
5514
5515	for (int c = 0; c < vd->vdev_children; c++)
5516		spa_async_probe(spa, vd->vdev_child[c]);
5517}
5518
5519static void
5520spa_async_autoexpand(spa_t *spa, vdev_t *vd)
5521{
5522	sysevent_id_t eid;
5523	nvlist_t *attr;
5524	char *physpath;
5525
5526	if (!spa->spa_autoexpand)
5527		return;
5528
5529	for (int c = 0; c < vd->vdev_children; c++) {
5530		vdev_t *cvd = vd->vdev_child[c];
5531		spa_async_autoexpand(spa, cvd);
5532	}
5533
5534	if (!vd->vdev_ops->vdev_op_leaf || vd->vdev_physpath == NULL)
5535		return;
5536
5537	physpath = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
5538	(void) snprintf(physpath, MAXPATHLEN, "/devices%s", vd->vdev_physpath);
5539
5540	VERIFY(nvlist_alloc(&attr, NV_UNIQUE_NAME, KM_SLEEP) == 0);
5541	VERIFY(nvlist_add_string(attr, DEV_PHYS_PATH, physpath) == 0);
5542
5543	(void) ddi_log_sysevent(zfs_dip, SUNW_VENDOR, EC_DEV_STATUS,
5544	    ESC_ZFS_VDEV_AUTOEXPAND, attr, &eid, DDI_SLEEP);
5545
5546	nvlist_free(attr);
5547	kmem_free(physpath, MAXPATHLEN);
5548}
5549
5550static void
5551spa_async_thread(void *arg)
5552{
5553	spa_t *spa = arg;
5554	int tasks;
5555
5556	ASSERT(spa->spa_sync_on);
5557
5558	mutex_enter(&spa->spa_async_lock);
5559	tasks = spa->spa_async_tasks;
5560	spa->spa_async_tasks = 0;
5561	mutex_exit(&spa->spa_async_lock);
5562
5563	/*
5564	 * See if the config needs to be updated.
5565	 */
5566	if (tasks & SPA_ASYNC_CONFIG_UPDATE) {
5567		uint64_t old_space, new_space;
5568
5569		mutex_enter(&spa_namespace_lock);
5570		old_space = metaslab_class_get_space(spa_normal_class(spa));
5571		spa_config_update(spa, SPA_CONFIG_UPDATE_POOL);
5572		new_space = metaslab_class_get_space(spa_normal_class(spa));
5573		mutex_exit(&spa_namespace_lock);
5574
5575		/*
5576		 * If the pool grew as a result of the config update,
5577		 * then log an internal history event.
5578		 */
5579		if (new_space != old_space) {
5580			spa_history_log_internal(LOG_POOL_VDEV_ONLINE,
5581			    spa, NULL,
5582			    "pool '%s' size: %llu(+%llu)",
5583			    spa_name(spa), new_space, new_space - old_space);
5584		}
5585	}
5586
5587	/*
5588	 * See if any devices need to be marked REMOVED.
5589	 */
5590	if (tasks & SPA_ASYNC_REMOVE) {
5591		spa_vdev_state_enter(spa, SCL_NONE);
5592		spa_async_remove(spa, spa->spa_root_vdev);
5593		for (int i = 0; i < spa->spa_l2cache.sav_count; i++)
5594			spa_async_remove(spa, spa->spa_l2cache.sav_vdevs[i]);
5595		for (int i = 0; i < spa->spa_spares.sav_count; i++)
5596			spa_async_remove(spa, spa->spa_spares.sav_vdevs[i]);
5597		(void) spa_vdev_state_exit(spa, NULL, 0);
5598	}
5599
5600	if ((tasks & SPA_ASYNC_AUTOEXPAND) && !spa_suspended(spa)) {
5601		spa_config_enter(spa, SCL_CONFIG, FTAG, RW_READER);
5602		spa_async_autoexpand(spa, spa->spa_root_vdev);
5603		spa_config_exit(spa, SCL_CONFIG, FTAG);
5604	}
5605
5606	/*
5607	 * See if any devices need to be probed.
5608	 */
5609	if (tasks & SPA_ASYNC_PROBE) {
5610		spa_vdev_state_enter(spa, SCL_NONE);
5611		spa_async_probe(spa, spa->spa_root_vdev);
5612		(void) spa_vdev_state_exit(spa, NULL, 0);
5613	}
5614
5615	/*
5616	 * If any devices are done replacing, detach them.
5617	 */
5618	if (tasks & SPA_ASYNC_RESILVER_DONE)
5619		spa_vdev_resilver_done(spa);
5620
5621	/*
5622	 * Kick off a resilver.
5623	 */
5624	if (tasks & SPA_ASYNC_RESILVER)
5625		dsl_resilver_restart(spa->spa_dsl_pool, 0);
5626
5627	/*
5628	 * Let the world know that we're done.
5629	 */
5630	mutex_enter(&spa->spa_async_lock);
5631	spa->spa_async_thread = NULL;
5632	cv_broadcast(&spa->spa_async_cv);
5633	mutex_exit(&spa->spa_async_lock);
5634	thread_exit();
5635}
5636
5637void
5638spa_async_suspend(spa_t *spa)
5639{
5640	mutex_enter(&spa->spa_async_lock);
5641	spa->spa_async_suspended++;
5642	while (spa->spa_async_thread != NULL)
5643		cv_wait(&spa->spa_async_cv, &spa->spa_async_lock);
5644	mutex_exit(&spa->spa_async_lock);
5645}
5646
5647void
5648spa_async_resume(spa_t *spa)
5649{
5650	mutex_enter(&spa->spa_async_lock);
5651	ASSERT(spa->spa_async_suspended != 0);
5652	spa->spa_async_suspended--;
5653	mutex_exit(&spa->spa_async_lock);
5654}
5655
5656static void
5657spa_async_dispatch(spa_t *spa)
5658{
5659	mutex_enter(&spa->spa_async_lock);
5660	if (spa->spa_async_tasks && !spa->spa_async_suspended &&
5661	    spa->spa_async_thread == NULL &&
5662	    rootdir != NULL && !vn_is_readonly(rootdir))
5663		spa->spa_async_thread = thread_create(NULL, 0,
5664		    spa_async_thread, spa, 0, &p0, TS_RUN, maxclsyspri);
5665	mutex_exit(&spa->spa_async_lock);
5666}
5667
5668void
5669spa_async_request(spa_t *spa, int task)
5670{
5671	zfs_dbgmsg("spa=%s async request task=%u", spa->spa_name, task);
5672	mutex_enter(&spa->spa_async_lock);
5673	spa->spa_async_tasks |= task;
5674	mutex_exit(&spa->spa_async_lock);
5675}
5676
5677/*
5678 * ==========================================================================
5679 * SPA syncing routines
5680 * ==========================================================================
5681 */
5682
5683static int
5684bpobj_enqueue_cb(void *arg, const blkptr_t *bp, dmu_tx_t *tx)
5685{
5686	bpobj_t *bpo = arg;
5687	bpobj_enqueue(bpo, bp, tx);
5688	return (0);
5689}
5690
5691static int
5692spa_free_sync_cb(void *arg, const blkptr_t *bp, dmu_tx_t *tx)
5693{
5694	zio_t *zio = arg;
5695
5696	zio_nowait(zio_free_sync(zio, zio->io_spa, dmu_tx_get_txg(tx), bp,
5697	    BP_GET_PSIZE(bp), zio->io_flags));
5698	return (0);
5699}
5700
5701static void
5702spa_sync_nvlist(spa_t *spa, uint64_t obj, nvlist_t *nv, dmu_tx_t *tx)
5703{
5704	char *packed = NULL;
5705	size_t bufsize;
5706	size_t nvsize = 0;
5707	dmu_buf_t *db;
5708
5709	VERIFY(nvlist_size(nv, &nvsize, NV_ENCODE_XDR) == 0);
5710
5711	/*
5712	 * Write full (SPA_CONFIG_BLOCKSIZE) blocks of configuration
5713	 * information.  This avoids the dbuf_will_dirty() path and
5714	 * saves us a pre-read to get data we don't actually care about.
5715	 */
5716	bufsize = P2ROUNDUP((uint64_t)nvsize, SPA_CONFIG_BLOCKSIZE);
5717	packed = kmem_alloc(bufsize, KM_SLEEP);
5718
5719	VERIFY(nvlist_pack(nv, &packed, &nvsize, NV_ENCODE_XDR,
5720	    KM_SLEEP) == 0);
5721	bzero(packed + nvsize, bufsize - nvsize);
5722
5723	dmu_write(spa->spa_meta_objset, obj, 0, bufsize, packed, tx);
5724
5725	kmem_free(packed, bufsize);
5726
5727	VERIFY(0 == dmu_bonus_hold(spa->spa_meta_objset, obj, FTAG, &db));
5728	dmu_buf_will_dirty(db, tx);
5729	*(uint64_t *)db->db_data = nvsize;
5730	dmu_buf_rele(db, FTAG);
5731}
5732
5733static void
5734spa_sync_aux_dev(spa_t *spa, spa_aux_vdev_t *sav, dmu_tx_t *tx,
5735    const char *config, const char *entry)
5736{
5737	nvlist_t *nvroot;
5738	nvlist_t **list;
5739	int i;
5740
5741	if (!sav->sav_sync)
5742		return;
5743
5744	/*
5745	 * Update the MOS nvlist describing the list of available devices.
5746	 * spa_validate_aux() will have already made sure this nvlist is
5747	 * valid and the vdevs are labeled appropriately.
5748	 */
5749	if (sav->sav_object == 0) {
5750		sav->sav_object = dmu_object_alloc(spa->spa_meta_objset,
5751		    DMU_OT_PACKED_NVLIST, 1 << 14, DMU_OT_PACKED_NVLIST_SIZE,
5752		    sizeof (uint64_t), tx);
5753		VERIFY(zap_update(spa->spa_meta_objset,
5754		    DMU_POOL_DIRECTORY_OBJECT, entry, sizeof (uint64_t), 1,
5755		    &sav->sav_object, tx) == 0);
5756	}
5757
5758	VERIFY(nvlist_alloc(&nvroot, NV_UNIQUE_NAME, KM_SLEEP) == 0);
5759	if (sav->sav_count == 0) {
5760		VERIFY(nvlist_add_nvlist_array(nvroot, config, NULL, 0) == 0);
5761	} else {
5762		list = kmem_alloc(sav->sav_count * sizeof (void *), KM_SLEEP);
5763		for (i = 0; i < sav->sav_count; i++)
5764			list[i] = vdev_config_generate(spa, sav->sav_vdevs[i],
5765			    B_FALSE, VDEV_CONFIG_L2CACHE);
5766		VERIFY(nvlist_add_nvlist_array(nvroot, config, list,
5767		    sav->sav_count) == 0);
5768		for (i = 0; i < sav->sav_count; i++)
5769			nvlist_free(list[i]);
5770		kmem_free(list, sav->sav_count * sizeof (void *));
5771	}
5772
5773	spa_sync_nvlist(spa, sav->sav_object, nvroot, tx);
5774	nvlist_free(nvroot);
5775
5776	sav->sav_sync = B_FALSE;
5777}
5778
5779static void
5780spa_sync_config_object(spa_t *spa, dmu_tx_t *tx)
5781{
5782	nvlist_t *config;
5783
5784	if (list_is_empty(&spa->spa_config_dirty_list))
5785		return;
5786
5787	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
5788
5789	config = spa_config_generate(spa, spa->spa_root_vdev,
5790	    dmu_tx_get_txg(tx), B_FALSE);
5791
5792	spa_config_exit(spa, SCL_STATE, FTAG);
5793
5794	if (spa->spa_config_syncing)
5795		nvlist_free(spa->spa_config_syncing);
5796	spa->spa_config_syncing = config;
5797
5798	spa_sync_nvlist(spa, spa->spa_config_object, config, tx);
5799}
5800
5801static void
5802spa_sync_version(void *arg1, void *arg2, dmu_tx_t *tx)
5803{
5804	spa_t *spa = arg1;
5805	uint64_t version = *(uint64_t *)arg2;
5806
5807	/*
5808	 * Setting the version is special cased when first creating the pool.
5809	 */
5810	ASSERT(tx->tx_txg != TXG_INITIAL);
5811
5812	ASSERT(version <= SPA_VERSION);
5813	ASSERT(version >= spa_version(spa));
5814
5815	spa->spa_uberblock.ub_version = version;
5816	vdev_config_dirty(spa->spa_root_vdev);
5817}
5818
5819/*
5820 * Set zpool properties.
5821 */
5822static void
5823spa_sync_props(void *arg1, void *arg2, dmu_tx_t *tx)
5824{
5825	spa_t *spa = arg1;
5826	objset_t *mos = spa->spa_meta_objset;
5827	nvlist_t *nvp = arg2;
5828	nvpair_t *elem = NULL;
5829
5830	mutex_enter(&spa->spa_props_lock);
5831
5832	while ((elem = nvlist_next_nvpair(nvp, elem))) {
5833		uint64_t intval;
5834		char *strval, *fname;
5835		zpool_prop_t prop;
5836		const char *propname;
5837		zprop_type_t proptype;
5838		zfeature_info_t *feature;
5839
5840		switch (prop = zpool_name_to_prop(nvpair_name(elem))) {
5841		case ZPROP_INVAL:
5842			/*
5843			 * We checked this earlier in spa_prop_validate().
5844			 */
5845			ASSERT(zpool_prop_feature(nvpair_name(elem)));
5846
5847			fname = strchr(nvpair_name(elem), '@') + 1;
5848			VERIFY3U(0, ==, zfeature_lookup_name(fname, &feature));
5849
5850			spa_feature_enable(spa, feature, tx);
5851			break;
5852
5853		case ZPOOL_PROP_VERSION:
5854			VERIFY(nvpair_value_uint64(elem, &intval) == 0);
5855			/*
5856			 * The version is synced seperatly before other
5857			 * properties and should be correct by now.
5858			 */
5859			ASSERT3U(spa_version(spa), >=, intval);
5860			break;
5861
5862		case ZPOOL_PROP_ALTROOT:
5863			/*
5864			 * 'altroot' is a non-persistent property. It should
5865			 * have been set temporarily at creation or import time.
5866			 */
5867			ASSERT(spa->spa_root != NULL);
5868			break;
5869
5870		case ZPOOL_PROP_READONLY:
5871		case ZPOOL_PROP_CACHEFILE:
5872			/*
5873			 * 'readonly' and 'cachefile' are also non-persisitent
5874			 * properties.
5875			 */
5876			break;
5877		case ZPOOL_PROP_COMMENT:
5878			VERIFY(nvpair_value_string(elem, &strval) == 0);
5879			if (spa->spa_comment != NULL)
5880				spa_strfree(spa->spa_comment);
5881			spa->spa_comment = spa_strdup(strval);
5882			/*
5883			 * We need to dirty the configuration on all the vdevs
5884			 * so that their labels get updated.  It's unnecessary
5885			 * to do this for pool creation since the vdev's
5886			 * configuratoin has already been dirtied.
5887			 */
5888			if (tx->tx_txg != TXG_INITIAL)
5889				vdev_config_dirty(spa->spa_root_vdev);
5890			break;
5891		default:
5892			/*
5893			 * Set pool property values in the poolprops mos object.
5894			 */
5895			if (spa->spa_pool_props_object == 0) {
5896				spa->spa_pool_props_object =
5897				    zap_create_link(mos, DMU_OT_POOL_PROPS,
5898				    DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_PROPS,
5899				    tx);
5900			}
5901
5902			/* normalize the property name */
5903			propname = zpool_prop_to_name(prop);
5904			proptype = zpool_prop_get_type(prop);
5905
5906			if (nvpair_type(elem) == DATA_TYPE_STRING) {
5907				ASSERT(proptype == PROP_TYPE_STRING);
5908				VERIFY(nvpair_value_string(elem, &strval) == 0);
5909				VERIFY(zap_update(mos,
5910				    spa->spa_pool_props_object, propname,
5911				    1, strlen(strval) + 1, strval, tx) == 0);
5912
5913			} else if (nvpair_type(elem) == DATA_TYPE_UINT64) {
5914				VERIFY(nvpair_value_uint64(elem, &intval) == 0);
5915
5916				if (proptype == PROP_TYPE_INDEX) {
5917					const char *unused;
5918					VERIFY(zpool_prop_index_to_string(
5919					    prop, intval, &unused) == 0);
5920				}
5921				VERIFY(zap_update(mos,
5922				    spa->spa_pool_props_object, propname,
5923				    8, 1, &intval, tx) == 0);
5924			} else {
5925				ASSERT(0); /* not allowed */
5926			}
5927
5928			switch (prop) {
5929			case ZPOOL_PROP_DELEGATION:
5930				spa->spa_delegation = intval;
5931				break;
5932			case ZPOOL_PROP_BOOTFS:
5933				spa->spa_bootfs = intval;
5934				break;
5935			case ZPOOL_PROP_FAILUREMODE:
5936				spa->spa_failmode = intval;
5937				break;
5938			case ZPOOL_PROP_AUTOEXPAND:
5939				spa->spa_autoexpand = intval;
5940				if (tx->tx_txg != TXG_INITIAL)
5941					spa_async_request(spa,
5942					    SPA_ASYNC_AUTOEXPAND);
5943				break;
5944			case ZPOOL_PROP_DEDUPDITTO:
5945				spa->spa_dedup_ditto = intval;
5946				break;
5947			default:
5948				break;
5949			}
5950		}
5951
5952		/* log internal history if this is not a zpool create */
5953		if (spa_version(spa) >= SPA_VERSION_ZPOOL_HISTORY &&
5954		    tx->tx_txg != TXG_INITIAL) {
5955			spa_history_log_internal(LOG_POOL_PROPSET,
5956			    spa, tx, "%s %lld %s",
5957			    nvpair_name(elem), intval, spa_name(spa));
5958		}
5959	}
5960
5961	mutex_exit(&spa->spa_props_lock);
5962}
5963
5964/*
5965 * Perform one-time upgrade on-disk changes.  spa_version() does not
5966 * reflect the new version this txg, so there must be no changes this
5967 * txg to anything that the upgrade code depends on after it executes.
5968 * Therefore this must be called after dsl_pool_sync() does the sync
5969 * tasks.
5970 */
5971static void
5972spa_sync_upgrades(spa_t *spa, dmu_tx_t *tx)
5973{
5974	dsl_pool_t *dp = spa->spa_dsl_pool;
5975
5976	ASSERT(spa->spa_sync_pass == 1);
5977
5978	if (spa->spa_ubsync.ub_version < SPA_VERSION_ORIGIN &&
5979	    spa->spa_uberblock.ub_version >= SPA_VERSION_ORIGIN) {
5980		dsl_pool_create_origin(dp, tx);
5981
5982		/* Keeping the origin open increases spa_minref */
5983		spa->spa_minref += 3;
5984	}
5985
5986	if (spa->spa_ubsync.ub_version < SPA_VERSION_NEXT_CLONES &&
5987	    spa->spa_uberblock.ub_version >= SPA_VERSION_NEXT_CLONES) {
5988		dsl_pool_upgrade_clones(dp, tx);
5989	}
5990
5991	if (spa->spa_ubsync.ub_version < SPA_VERSION_DIR_CLONES &&
5992	    spa->spa_uberblock.ub_version >= SPA_VERSION_DIR_CLONES) {
5993		dsl_pool_upgrade_dir_clones(dp, tx);
5994
5995		/* Keeping the freedir open increases spa_minref */
5996		spa->spa_minref += 3;
5997	}
5998
5999	if (spa->spa_ubsync.ub_version < SPA_VERSION_FEATURES &&
6000	    spa->spa_uberblock.ub_version >= SPA_VERSION_FEATURES) {
6001		spa_feature_create_zap_objects(spa, tx);
6002	}
6003}
6004
6005/*
6006 * Sync the specified transaction group.  New blocks may be dirtied as
6007 * part of the process, so we iterate until it converges.
6008 */
6009void
6010spa_sync(spa_t *spa, uint64_t txg)
6011{
6012	dsl_pool_t *dp = spa->spa_dsl_pool;
6013	objset_t *mos = spa->spa_meta_objset;
6014	bpobj_t *defer_bpo = &spa->spa_deferred_bpobj;
6015	bplist_t *free_bpl = &spa->spa_free_bplist[txg & TXG_MASK];
6016	vdev_t *rvd = spa->spa_root_vdev;
6017	vdev_t *vd;
6018	dmu_tx_t *tx;
6019	int error;
6020
6021	VERIFY(spa_writeable(spa));
6022
6023	/*
6024	 * Lock out configuration changes.
6025	 */
6026	spa_config_enter(spa, SCL_CONFIG, FTAG, RW_READER);
6027
6028	spa->spa_syncing_txg = txg;
6029	spa->spa_sync_pass = 0;
6030
6031	/*
6032	 * If there are any pending vdev state changes, convert them
6033	 * into config changes that go out with this transaction group.
6034	 */
6035	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
6036	while (list_head(&spa->spa_state_dirty_list) != NULL) {
6037		/*
6038		 * We need the write lock here because, for aux vdevs,
6039		 * calling vdev_config_dirty() modifies sav_config.
6040		 * This is ugly and will become unnecessary when we
6041		 * eliminate the aux vdev wart by integrating all vdevs
6042		 * into the root vdev tree.
6043		 */
6044		spa_config_exit(spa, SCL_CONFIG | SCL_STATE, FTAG);
6045		spa_config_enter(spa, SCL_CONFIG | SCL_STATE, FTAG, RW_WRITER);
6046		while ((vd = list_head(&spa->spa_state_dirty_list)) != NULL) {
6047			vdev_state_clean(vd);
6048			vdev_config_dirty(vd);
6049		}
6050		spa_config_exit(spa, SCL_CONFIG | SCL_STATE, FTAG);
6051		spa_config_enter(spa, SCL_CONFIG | SCL_STATE, FTAG, RW_READER);
6052	}
6053	spa_config_exit(spa, SCL_STATE, FTAG);
6054
6055	tx = dmu_tx_create_assigned(dp, txg);
6056
6057	/*
6058	 * If we are upgrading to SPA_VERSION_RAIDZ_DEFLATE this txg,
6059	 * set spa_deflate if we have no raid-z vdevs.
6060	 */
6061	if (spa->spa_ubsync.ub_version < SPA_VERSION_RAIDZ_DEFLATE &&
6062	    spa->spa_uberblock.ub_version >= SPA_VERSION_RAIDZ_DEFLATE) {
6063		int i;
6064
6065		for (i = 0; i < rvd->vdev_children; i++) {
6066			vd = rvd->vdev_child[i];
6067			if (vd->vdev_deflate_ratio != SPA_MINBLOCKSIZE)
6068				break;
6069		}
6070		if (i == rvd->vdev_children) {
6071			spa->spa_deflate = TRUE;
6072			VERIFY(0 == zap_add(spa->spa_meta_objset,
6073			    DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_DEFLATE,
6074			    sizeof (uint64_t), 1, &spa->spa_deflate, tx));
6075		}
6076	}
6077
6078	/*
6079	 * If anything has changed in this txg, or if someone is waiting
6080	 * for this txg to sync (eg, spa_vdev_remove()), push the
6081	 * deferred frees from the previous txg.  If not, leave them
6082	 * alone so that we don't generate work on an otherwise idle
6083	 * system.
6084	 */
6085	if (!txg_list_empty(&dp->dp_dirty_datasets, txg) ||
6086	    !txg_list_empty(&dp->dp_dirty_dirs, txg) ||
6087	    !txg_list_empty(&dp->dp_sync_tasks, txg) ||
6088	    ((dsl_scan_active(dp->dp_scan) ||
6089	    txg_sync_waiting(dp)) && !spa_shutting_down(spa))) {
6090		zio_t *zio = zio_root(spa, NULL, NULL, 0);
6091		VERIFY3U(bpobj_iterate(defer_bpo,
6092		    spa_free_sync_cb, zio, tx), ==, 0);
6093		VERIFY0(zio_wait(zio));
6094	}
6095
6096	/*
6097	 * Iterate to convergence.
6098	 */
6099	do {
6100		int pass = ++spa->spa_sync_pass;
6101
6102		spa_sync_config_object(spa, tx);
6103		spa_sync_aux_dev(spa, &spa->spa_spares, tx,
6104		    ZPOOL_CONFIG_SPARES, DMU_POOL_SPARES);
6105		spa_sync_aux_dev(spa, &spa->spa_l2cache, tx,
6106		    ZPOOL_CONFIG_L2CACHE, DMU_POOL_L2CACHE);
6107		spa_errlog_sync(spa, txg);
6108		dsl_pool_sync(dp, txg);
6109
6110		if (pass <= SYNC_PASS_DEFERRED_FREE) {
6111			zio_t *zio = zio_root(spa, NULL, NULL, 0);
6112			bplist_iterate(free_bpl, spa_free_sync_cb,
6113			    zio, tx);
6114			VERIFY(zio_wait(zio) == 0);
6115		} else {
6116			bplist_iterate(free_bpl, bpobj_enqueue_cb,
6117			    defer_bpo, tx);
6118		}
6119
6120		ddt_sync(spa, txg);
6121		dsl_scan_sync(dp, tx);
6122
6123		while (vd = txg_list_remove(&spa->spa_vdev_txg_list, txg))
6124			vdev_sync(vd, txg);
6125
6126		if (pass == 1)
6127			spa_sync_upgrades(spa, tx);
6128
6129	} while (dmu_objset_is_dirty(mos, txg));
6130
6131	/*
6132	 * Rewrite the vdev configuration (which includes the uberblock)
6133	 * to commit the transaction group.
6134	 *
6135	 * If there are no dirty vdevs, we sync the uberblock to a few
6136	 * random top-level vdevs that are known to be visible in the
6137	 * config cache (see spa_vdev_add() for a complete description).
6138	 * If there *are* dirty vdevs, sync the uberblock to all vdevs.
6139	 */
6140	for (;;) {
6141		/*
6142		 * We hold SCL_STATE to prevent vdev open/close/etc.
6143		 * while we're attempting to write the vdev labels.
6144		 */
6145		spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
6146
6147		if (list_is_empty(&spa->spa_config_dirty_list)) {
6148			vdev_t *svd[SPA_DVAS_PER_BP];
6149			int svdcount = 0;
6150			int children = rvd->vdev_children;
6151			int c0 = spa_get_random(children);
6152
6153			for (int c = 0; c < children; c++) {
6154				vd = rvd->vdev_child[(c0 + c) % children];
6155				if (vd->vdev_ms_array == 0 || vd->vdev_islog)
6156					continue;
6157				svd[svdcount++] = vd;
6158				if (svdcount == SPA_DVAS_PER_BP)
6159					break;
6160			}
6161			error = vdev_config_sync(svd, svdcount, txg, B_FALSE);
6162			if (error != 0)
6163				error = vdev_config_sync(svd, svdcount, txg,
6164				    B_TRUE);
6165		} else {
6166			error = vdev_config_sync(rvd->vdev_child,
6167			    rvd->vdev_children, txg, B_FALSE);
6168			if (error != 0)
6169				error = vdev_config_sync(rvd->vdev_child,
6170				    rvd->vdev_children, txg, B_TRUE);
6171		}
6172
6173		if (error == 0)
6174			spa->spa_last_synced_guid = rvd->vdev_guid;
6175
6176		spa_config_exit(spa, SCL_STATE, FTAG);
6177
6178		if (error == 0)
6179			break;
6180		zio_suspend(spa, NULL);
6181		zio_resume_wait(spa);
6182	}
6183	dmu_tx_commit(tx);
6184
6185	/*
6186	 * Clear the dirty config list.
6187	 */
6188	while ((vd = list_head(&spa->spa_config_dirty_list)) != NULL)
6189		vdev_config_clean(vd);
6190
6191	/*
6192	 * Now that the new config has synced transactionally,
6193	 * let it become visible to the config cache.
6194	 */
6195	if (spa->spa_config_syncing != NULL) {
6196		spa_config_set(spa, spa->spa_config_syncing);
6197		spa->spa_config_txg = txg;
6198		spa->spa_config_syncing = NULL;
6199	}
6200
6201	spa->spa_ubsync = spa->spa_uberblock;
6202
6203	dsl_pool_sync_done(dp, txg);
6204
6205	/*
6206	 * Update usable space statistics.
6207	 */
6208	while (vd = txg_list_remove(&spa->spa_vdev_txg_list, TXG_CLEAN(txg)))
6209		vdev_sync_done(vd, txg);
6210
6211	spa_update_dspace(spa);
6212
6213	/*
6214	 * It had better be the case that we didn't dirty anything
6215	 * since vdev_config_sync().
6216	 */
6217	ASSERT(txg_list_empty(&dp->dp_dirty_datasets, txg));
6218	ASSERT(txg_list_empty(&dp->dp_dirty_dirs, txg));
6219	ASSERT(txg_list_empty(&spa->spa_vdev_txg_list, txg));
6220
6221	spa->spa_sync_pass = 0;
6222
6223	spa_config_exit(spa, SCL_CONFIG, FTAG);
6224
6225	spa_handle_ignored_writes(spa);
6226
6227	/*
6228	 * If any async tasks have been requested, kick them off.
6229	 */
6230	spa_async_dispatch(spa);
6231}
6232
6233/*
6234 * Sync all pools.  We don't want to hold the namespace lock across these
6235 * operations, so we take a reference on the spa_t and drop the lock during the
6236 * sync.
6237 */
6238void
6239spa_sync_allpools(void)
6240{
6241	spa_t *spa = NULL;
6242	mutex_enter(&spa_namespace_lock);
6243	while ((spa = spa_next(spa)) != NULL) {
6244		if (spa_state(spa) != POOL_STATE_ACTIVE ||
6245		    !spa_writeable(spa) || spa_suspended(spa))
6246			continue;
6247		spa_open_ref(spa, FTAG);
6248		mutex_exit(&spa_namespace_lock);
6249		txg_wait_synced(spa_get_dsl(spa), 0);
6250		mutex_enter(&spa_namespace_lock);
6251		spa_close(spa, FTAG);
6252	}
6253	mutex_exit(&spa_namespace_lock);
6254}
6255
6256/*
6257 * ==========================================================================
6258 * Miscellaneous routines
6259 * ==========================================================================
6260 */
6261
6262/*
6263 * Remove all pools in the system.
6264 */
6265void
6266spa_evict_all(void)
6267{
6268	spa_t *spa;
6269
6270	/*
6271	 * Remove all cached state.  All pools should be closed now,
6272	 * so every spa in the AVL tree should be unreferenced.
6273	 */
6274	mutex_enter(&spa_namespace_lock);
6275	while ((spa = spa_next(NULL)) != NULL) {
6276		/*
6277		 * Stop async tasks.  The async thread may need to detach
6278		 * a device that's been replaced, which requires grabbing
6279		 * spa_namespace_lock, so we must drop it here.
6280		 */
6281		spa_open_ref(spa, FTAG);
6282		mutex_exit(&spa_namespace_lock);
6283		spa_async_suspend(spa);
6284		mutex_enter(&spa_namespace_lock);
6285		spa_close(spa, FTAG);
6286
6287		if (spa->spa_state != POOL_STATE_UNINITIALIZED) {
6288			spa_unload(spa);
6289			spa_deactivate(spa);
6290		}
6291		spa_remove(spa);
6292	}
6293	mutex_exit(&spa_namespace_lock);
6294}
6295
6296vdev_t *
6297spa_lookup_by_guid(spa_t *spa, uint64_t guid, boolean_t aux)
6298{
6299	vdev_t *vd;
6300	int i;
6301
6302	if ((vd = vdev_lookup_by_guid(spa->spa_root_vdev, guid)) != NULL)
6303		return (vd);
6304
6305	if (aux) {
6306		for (i = 0; i < spa->spa_l2cache.sav_count; i++) {
6307			vd = spa->spa_l2cache.sav_vdevs[i];
6308			if (vd->vdev_guid == guid)
6309				return (vd);
6310		}
6311
6312		for (i = 0; i < spa->spa_spares.sav_count; i++) {
6313			vd = spa->spa_spares.sav_vdevs[i];
6314			if (vd->vdev_guid == guid)
6315				return (vd);
6316		}
6317	}
6318
6319	return (NULL);
6320}
6321
6322void
6323spa_upgrade(spa_t *spa, uint64_t version)
6324{
6325	ASSERT(spa_writeable(spa));
6326
6327	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
6328
6329	/*
6330	 * This should only be called for a non-faulted pool, and since a
6331	 * future version would result in an unopenable pool, this shouldn't be
6332	 * possible.
6333	 */
6334	ASSERT(spa->spa_uberblock.ub_version <= SPA_VERSION);
6335	ASSERT(version >= spa->spa_uberblock.ub_version);
6336
6337	spa->spa_uberblock.ub_version = version;
6338	vdev_config_dirty(spa->spa_root_vdev);
6339
6340	spa_config_exit(spa, SCL_ALL, FTAG);
6341
6342	txg_wait_synced(spa_get_dsl(spa), 0);
6343}
6344
6345boolean_t
6346spa_has_spare(spa_t *spa, uint64_t guid)
6347{
6348	int i;
6349	uint64_t spareguid;
6350	spa_aux_vdev_t *sav = &spa->spa_spares;
6351
6352	for (i = 0; i < sav->sav_count; i++)
6353		if (sav->sav_vdevs[i]->vdev_guid == guid)
6354			return (B_TRUE);
6355
6356	for (i = 0; i < sav->sav_npending; i++) {
6357		if (nvlist_lookup_uint64(sav->sav_pending[i], ZPOOL_CONFIG_GUID,
6358		    &spareguid) == 0 && spareguid == guid)
6359			return (B_TRUE);
6360	}
6361
6362	return (B_FALSE);
6363}
6364
6365/*
6366 * Check if a pool has an active shared spare device.
6367 * Note: reference count of an active spare is 2, as a spare and as a replace
6368 */
6369static boolean_t
6370spa_has_active_shared_spare(spa_t *spa)
6371{
6372	int i, refcnt;
6373	uint64_t pool;
6374	spa_aux_vdev_t *sav = &spa->spa_spares;
6375
6376	for (i = 0; i < sav->sav_count; i++) {
6377		if (spa_spare_exists(sav->sav_vdevs[i]->vdev_guid, &pool,
6378		    &refcnt) && pool != 0ULL && pool == spa_guid(spa) &&
6379		    refcnt > 2)
6380			return (B_TRUE);
6381	}
6382
6383	return (B_FALSE);
6384}
6385
6386/*
6387 * Post a sysevent corresponding to the given event.  The 'name' must be one of
6388 * the event definitions in sys/sysevent/eventdefs.h.  The payload will be
6389 * filled in from the spa and (optionally) the vdev.  This doesn't do anything
6390 * in the userland libzpool, as we don't want consumers to misinterpret ztest
6391 * or zdb as real changes.
6392 */
6393void
6394spa_event_notify(spa_t *spa, vdev_t *vd, const char *name)
6395{
6396#ifdef _KERNEL
6397	sysevent_t		*ev;
6398	sysevent_attr_list_t	*attr = NULL;
6399	sysevent_value_t	value;
6400	sysevent_id_t		eid;
6401
6402	ev = sysevent_alloc(EC_ZFS, (char *)name, SUNW_KERN_PUB "zfs",
6403	    SE_SLEEP);
6404
6405	value.value_type = SE_DATA_TYPE_STRING;
6406	value.value.sv_string = spa_name(spa);
6407	if (sysevent_add_attr(&attr, ZFS_EV_POOL_NAME, &value, SE_SLEEP) != 0)
6408		goto done;
6409
6410	value.value_type = SE_DATA_TYPE_UINT64;
6411	value.value.sv_uint64 = spa_guid(spa);
6412	if (sysevent_add_attr(&attr, ZFS_EV_POOL_GUID, &value, SE_SLEEP) != 0)
6413		goto done;
6414
6415	if (vd) {
6416		value.value_type = SE_DATA_TYPE_UINT64;
6417		value.value.sv_uint64 = vd->vdev_guid;
6418		if (sysevent_add_attr(&attr, ZFS_EV_VDEV_GUID, &value,
6419		    SE_SLEEP) != 0)
6420			goto done;
6421
6422		if (vd->vdev_path) {
6423			value.value_type = SE_DATA_TYPE_STRING;
6424			value.value.sv_string = vd->vdev_path;
6425			if (sysevent_add_attr(&attr, ZFS_EV_VDEV_PATH,
6426			    &value, SE_SLEEP) != 0)
6427				goto done;
6428		}
6429	}
6430
6431	if (sysevent_attach_attributes(ev, attr) != 0)
6432		goto done;
6433	attr = NULL;
6434
6435	(void) log_sysevent(ev, SE_SLEEP, &eid);
6436
6437done:
6438	if (attr)
6439		sysevent_free_attr(attr);
6440	sysevent_free(ev);
6441#endif
6442}
6443