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