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