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