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