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