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