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