]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c
Merge OpenSSL 1.0.2l.
[FreeBSD/FreeBSD.git] / sys / cddl / contrib / opensolaris / uts / common / fs / zfs / vdev.c
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21
22 /*
23  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Copyright (c) 2011, 2015 by Delphix. All rights reserved.
25  * Copyright 2015 Nexenta Systems, Inc.  All rights reserved.
26  * Copyright 2013 Martin Matuska <mm@FreeBSD.org>. All rights reserved.
27  * Copyright (c) 2014 Integros [integros.com]
28  * Copyright 2016 Toomas Soome <tsoome@me.com>
29  */
30
31 #include <sys/zfs_context.h>
32 #include <sys/fm/fs/zfs.h>
33 #include <sys/spa.h>
34 #include <sys/spa_impl.h>
35 #include <sys/dmu.h>
36 #include <sys/dmu_tx.h>
37 #include <sys/vdev_impl.h>
38 #include <sys/uberblock_impl.h>
39 #include <sys/metaslab.h>
40 #include <sys/metaslab_impl.h>
41 #include <sys/space_map.h>
42 #include <sys/space_reftree.h>
43 #include <sys/zio.h>
44 #include <sys/zap.h>
45 #include <sys/fs/zfs.h>
46 #include <sys/arc.h>
47 #include <sys/zil.h>
48 #include <sys/dsl_scan.h>
49 #include <sys/trim_map.h>
50
51 SYSCTL_DECL(_vfs_zfs);
52 SYSCTL_NODE(_vfs_zfs, OID_AUTO, vdev, CTLFLAG_RW, 0, "ZFS VDEV");
53
54 /*
55  * Virtual device management.
56  */
57
58 /*
59  * The limit for ZFS to automatically increase a top-level vdev's ashift
60  * from logical ashift to physical ashift.
61  *
62  * Example: one or more 512B emulation child vdevs
63  *          child->vdev_ashift = 9 (512 bytes)
64  *          child->vdev_physical_ashift = 12 (4096 bytes)
65  *          zfs_max_auto_ashift = 11 (2048 bytes)
66  *          zfs_min_auto_ashift = 9 (512 bytes)
67  *
68  * On pool creation or the addition of a new top-level vdev, ZFS will
69  * increase the ashift of the top-level vdev to 2048 as limited by
70  * zfs_max_auto_ashift.
71  *
72  * Example: one or more 512B emulation child vdevs
73  *          child->vdev_ashift = 9 (512 bytes)
74  *          child->vdev_physical_ashift = 12 (4096 bytes)
75  *          zfs_max_auto_ashift = 13 (8192 bytes)
76  *          zfs_min_auto_ashift = 9 (512 bytes)
77  *
78  * On pool creation or the addition of a new top-level vdev, ZFS will
79  * increase the ashift of the top-level vdev to 4096 to match the
80  * max vdev_physical_ashift.
81  *
82  * Example: one or more 512B emulation child vdevs
83  *          child->vdev_ashift = 9 (512 bytes)
84  *          child->vdev_physical_ashift = 9 (512 bytes)
85  *          zfs_max_auto_ashift = 13 (8192 bytes)
86  *          zfs_min_auto_ashift = 12 (4096 bytes)
87  *
88  * On pool creation or the addition of a new top-level vdev, ZFS will
89  * increase the ashift of the top-level vdev to 4096 to match the
90  * zfs_min_auto_ashift.
91  */
92 static uint64_t zfs_max_auto_ashift = SPA_MAXASHIFT;
93 static uint64_t zfs_min_auto_ashift = SPA_MINASHIFT;
94
95 static int
96 sysctl_vfs_zfs_max_auto_ashift(SYSCTL_HANDLER_ARGS)
97 {
98         uint64_t val;
99         int err;
100
101         val = zfs_max_auto_ashift;
102         err = sysctl_handle_64(oidp, &val, 0, req);
103         if (err != 0 || req->newptr == NULL)
104                 return (err);
105
106         if (val > SPA_MAXASHIFT || val < zfs_min_auto_ashift)
107                 return (EINVAL);
108
109         zfs_max_auto_ashift = val;
110
111         return (0);
112 }
113 SYSCTL_PROC(_vfs_zfs, OID_AUTO, max_auto_ashift,
114     CTLTYPE_U64 | CTLFLAG_MPSAFE | CTLFLAG_RW, 0, sizeof(uint64_t),
115     sysctl_vfs_zfs_max_auto_ashift, "QU",
116     "Max ashift used when optimising for logical -> physical sectors size on "
117     "new top-level vdevs.");
118
119 static int
120 sysctl_vfs_zfs_min_auto_ashift(SYSCTL_HANDLER_ARGS)
121 {
122         uint64_t val;
123         int err;
124
125         val = zfs_min_auto_ashift;
126         err = sysctl_handle_64(oidp, &val, 0, req);
127         if (err != 0 || req->newptr == NULL)
128                 return (err);
129
130         if (val < SPA_MINASHIFT || val > zfs_max_auto_ashift)
131                 return (EINVAL);
132
133         zfs_min_auto_ashift = val;
134
135         return (0);
136 }
137 SYSCTL_PROC(_vfs_zfs, OID_AUTO, min_auto_ashift,
138     CTLTYPE_U64 | CTLFLAG_MPSAFE | CTLFLAG_RW, 0, sizeof(uint64_t),
139     sysctl_vfs_zfs_min_auto_ashift, "QU",
140     "Min ashift used when creating new top-level vdevs.");
141
142 static vdev_ops_t *vdev_ops_table[] = {
143         &vdev_root_ops,
144         &vdev_raidz_ops,
145         &vdev_mirror_ops,
146         &vdev_replacing_ops,
147         &vdev_spare_ops,
148 #ifdef _KERNEL
149         &vdev_geom_ops,
150 #else
151         &vdev_disk_ops,
152 #endif
153         &vdev_file_ops,
154         &vdev_missing_ops,
155         &vdev_hole_ops,
156         NULL
157 };
158
159
160 /*
161  * When a vdev is added, it will be divided into approximately (but no
162  * more than) this number of metaslabs.
163  */
164 int metaslabs_per_vdev = 200;
165 SYSCTL_INT(_vfs_zfs_vdev, OID_AUTO, metaslabs_per_vdev, CTLFLAG_RDTUN,
166     &metaslabs_per_vdev, 0,
167     "When a vdev is added, how many metaslabs the vdev should be divided into");
168
169 /*
170  * Given a vdev type, return the appropriate ops vector.
171  */
172 static vdev_ops_t *
173 vdev_getops(const char *type)
174 {
175         vdev_ops_t *ops, **opspp;
176
177         for (opspp = vdev_ops_table; (ops = *opspp) != NULL; opspp++)
178                 if (strcmp(ops->vdev_op_type, type) == 0)
179                         break;
180
181         return (ops);
182 }
183
184 /*
185  * Default asize function: return the MAX of psize with the asize of
186  * all children.  This is what's used by anything other than RAID-Z.
187  */
188 uint64_t
189 vdev_default_asize(vdev_t *vd, uint64_t psize)
190 {
191         uint64_t asize = P2ROUNDUP(psize, 1ULL << vd->vdev_top->vdev_ashift);
192         uint64_t csize;
193
194         for (int c = 0; c < vd->vdev_children; c++) {
195                 csize = vdev_psize_to_asize(vd->vdev_child[c], psize);
196                 asize = MAX(asize, csize);
197         }
198
199         return (asize);
200 }
201
202 /*
203  * Get the minimum allocatable size. We define the allocatable size as
204  * the vdev's asize rounded to the nearest metaslab. This allows us to
205  * replace or attach devices which don't have the same physical size but
206  * can still satisfy the same number of allocations.
207  */
208 uint64_t
209 vdev_get_min_asize(vdev_t *vd)
210 {
211         vdev_t *pvd = vd->vdev_parent;
212
213         /*
214          * If our parent is NULL (inactive spare or cache) or is the root,
215          * just return our own asize.
216          */
217         if (pvd == NULL)
218                 return (vd->vdev_asize);
219
220         /*
221          * The top-level vdev just returns the allocatable size rounded
222          * to the nearest metaslab.
223          */
224         if (vd == vd->vdev_top)
225                 return (P2ALIGN(vd->vdev_asize, 1ULL << vd->vdev_ms_shift));
226
227         /*
228          * The allocatable space for a raidz vdev is N * sizeof(smallest child),
229          * so each child must provide at least 1/Nth of its asize.
230          */
231         if (pvd->vdev_ops == &vdev_raidz_ops)
232                 return ((pvd->vdev_min_asize + pvd->vdev_children - 1) /
233                     pvd->vdev_children);
234
235         return (pvd->vdev_min_asize);
236 }
237
238 void
239 vdev_set_min_asize(vdev_t *vd)
240 {
241         vd->vdev_min_asize = vdev_get_min_asize(vd);
242
243         for (int c = 0; c < vd->vdev_children; c++)
244                 vdev_set_min_asize(vd->vdev_child[c]);
245 }
246
247 vdev_t *
248 vdev_lookup_top(spa_t *spa, uint64_t vdev)
249 {
250         vdev_t *rvd = spa->spa_root_vdev;
251
252         ASSERT(spa_config_held(spa, SCL_ALL, RW_READER) != 0);
253
254         if (vdev < rvd->vdev_children) {
255                 ASSERT(rvd->vdev_child[vdev] != NULL);
256                 return (rvd->vdev_child[vdev]);
257         }
258
259         return (NULL);
260 }
261
262 vdev_t *
263 vdev_lookup_by_guid(vdev_t *vd, uint64_t guid)
264 {
265         vdev_t *mvd;
266
267         if (vd->vdev_guid == guid)
268                 return (vd);
269
270         for (int c = 0; c < vd->vdev_children; c++)
271                 if ((mvd = vdev_lookup_by_guid(vd->vdev_child[c], guid)) !=
272                     NULL)
273                         return (mvd);
274
275         return (NULL);
276 }
277
278 static int
279 vdev_count_leaves_impl(vdev_t *vd)
280 {
281         int n = 0;
282
283         if (vd->vdev_ops->vdev_op_leaf)
284                 return (1);
285
286         for (int c = 0; c < vd->vdev_children; c++)
287                 n += vdev_count_leaves_impl(vd->vdev_child[c]);
288
289         return (n);
290 }
291
292 int
293 vdev_count_leaves(spa_t *spa)
294 {
295         return (vdev_count_leaves_impl(spa->spa_root_vdev));
296 }
297
298 void
299 vdev_add_child(vdev_t *pvd, vdev_t *cvd)
300 {
301         size_t oldsize, newsize;
302         uint64_t id = cvd->vdev_id;
303         vdev_t **newchild;
304         spa_t *spa = cvd->vdev_spa;
305
306         ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
307         ASSERT(cvd->vdev_parent == NULL);
308
309         cvd->vdev_parent = pvd;
310
311         if (pvd == NULL)
312                 return;
313
314         ASSERT(id >= pvd->vdev_children || pvd->vdev_child[id] == NULL);
315
316         oldsize = pvd->vdev_children * sizeof (vdev_t *);
317         pvd->vdev_children = MAX(pvd->vdev_children, id + 1);
318         newsize = pvd->vdev_children * sizeof (vdev_t *);
319
320         newchild = kmem_zalloc(newsize, KM_SLEEP);
321         if (pvd->vdev_child != NULL) {
322                 bcopy(pvd->vdev_child, newchild, oldsize);
323                 kmem_free(pvd->vdev_child, oldsize);
324         }
325
326         pvd->vdev_child = newchild;
327         pvd->vdev_child[id] = cvd;
328
329         cvd->vdev_top = (pvd->vdev_top ? pvd->vdev_top: cvd);
330         ASSERT(cvd->vdev_top->vdev_parent->vdev_parent == NULL);
331
332         /*
333          * Walk up all ancestors to update guid sum.
334          */
335         for (; pvd != NULL; pvd = pvd->vdev_parent)
336                 pvd->vdev_guid_sum += cvd->vdev_guid_sum;
337 }
338
339 void
340 vdev_remove_child(vdev_t *pvd, vdev_t *cvd)
341 {
342         int c;
343         uint_t id = cvd->vdev_id;
344
345         ASSERT(cvd->vdev_parent == pvd);
346
347         if (pvd == NULL)
348                 return;
349
350         ASSERT(id < pvd->vdev_children);
351         ASSERT(pvd->vdev_child[id] == cvd);
352
353         pvd->vdev_child[id] = NULL;
354         cvd->vdev_parent = NULL;
355
356         for (c = 0; c < pvd->vdev_children; c++)
357                 if (pvd->vdev_child[c])
358                         break;
359
360         if (c == pvd->vdev_children) {
361                 kmem_free(pvd->vdev_child, c * sizeof (vdev_t *));
362                 pvd->vdev_child = NULL;
363                 pvd->vdev_children = 0;
364         }
365
366         /*
367          * Walk up all ancestors to update guid sum.
368          */
369         for (; pvd != NULL; pvd = pvd->vdev_parent)
370                 pvd->vdev_guid_sum -= cvd->vdev_guid_sum;
371 }
372
373 /*
374  * Remove any holes in the child array.
375  */
376 void
377 vdev_compact_children(vdev_t *pvd)
378 {
379         vdev_t **newchild, *cvd;
380         int oldc = pvd->vdev_children;
381         int newc;
382
383         ASSERT(spa_config_held(pvd->vdev_spa, SCL_ALL, RW_WRITER) == SCL_ALL);
384
385         for (int c = newc = 0; c < oldc; c++)
386                 if (pvd->vdev_child[c])
387                         newc++;
388
389         newchild = kmem_alloc(newc * sizeof (vdev_t *), KM_SLEEP);
390
391         for (int c = newc = 0; c < oldc; c++) {
392                 if ((cvd = pvd->vdev_child[c]) != NULL) {
393                         newchild[newc] = cvd;
394                         cvd->vdev_id = newc++;
395                 }
396         }
397
398         kmem_free(pvd->vdev_child, oldc * sizeof (vdev_t *));
399         pvd->vdev_child = newchild;
400         pvd->vdev_children = newc;
401 }
402
403 /*
404  * Allocate and minimally initialize a vdev_t.
405  */
406 vdev_t *
407 vdev_alloc_common(spa_t *spa, uint_t id, uint64_t guid, vdev_ops_t *ops)
408 {
409         vdev_t *vd;
410
411         vd = kmem_zalloc(sizeof (vdev_t), KM_SLEEP);
412
413         if (spa->spa_root_vdev == NULL) {
414                 ASSERT(ops == &vdev_root_ops);
415                 spa->spa_root_vdev = vd;
416                 spa->spa_load_guid = spa_generate_guid(NULL);
417         }
418
419         if (guid == 0 && ops != &vdev_hole_ops) {
420                 if (spa->spa_root_vdev == vd) {
421                         /*
422                          * The root vdev's guid will also be the pool guid,
423                          * which must be unique among all pools.
424                          */
425                         guid = spa_generate_guid(NULL);
426                 } else {
427                         /*
428                          * Any other vdev's guid must be unique within the pool.
429                          */
430                         guid = spa_generate_guid(spa);
431                 }
432                 ASSERT(!spa_guid_exists(spa_guid(spa), guid));
433         }
434
435         vd->vdev_spa = spa;
436         vd->vdev_id = id;
437         vd->vdev_guid = guid;
438         vd->vdev_guid_sum = guid;
439         vd->vdev_ops = ops;
440         vd->vdev_state = VDEV_STATE_CLOSED;
441         vd->vdev_ishole = (ops == &vdev_hole_ops);
442
443         mutex_init(&vd->vdev_dtl_lock, NULL, MUTEX_DEFAULT, NULL);
444         mutex_init(&vd->vdev_stat_lock, NULL, MUTEX_DEFAULT, NULL);
445         mutex_init(&vd->vdev_probe_lock, NULL, MUTEX_DEFAULT, NULL);
446         mutex_init(&vd->vdev_queue_lock, NULL, MUTEX_DEFAULT, NULL);
447         for (int t = 0; t < DTL_TYPES; t++) {
448                 vd->vdev_dtl[t] = range_tree_create(NULL, NULL,
449                     &vd->vdev_dtl_lock);
450         }
451         txg_list_create(&vd->vdev_ms_list,
452             offsetof(struct metaslab, ms_txg_node));
453         txg_list_create(&vd->vdev_dtl_list,
454             offsetof(struct vdev, vdev_dtl_node));
455         vd->vdev_stat.vs_timestamp = gethrtime();
456         vdev_queue_init(vd);
457         vdev_cache_init(vd);
458
459         return (vd);
460 }
461
462 /*
463  * Allocate a new vdev.  The 'alloctype' is used to control whether we are
464  * creating a new vdev or loading an existing one - the behavior is slightly
465  * different for each case.
466  */
467 int
468 vdev_alloc(spa_t *spa, vdev_t **vdp, nvlist_t *nv, vdev_t *parent, uint_t id,
469     int alloctype)
470 {
471         vdev_ops_t *ops;
472         char *type;
473         uint64_t guid = 0, islog, nparity;
474         vdev_t *vd;
475
476         ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
477
478         if (nvlist_lookup_string(nv, ZPOOL_CONFIG_TYPE, &type) != 0)
479                 return (SET_ERROR(EINVAL));
480
481         if ((ops = vdev_getops(type)) == NULL)
482                 return (SET_ERROR(EINVAL));
483
484         /*
485          * If this is a load, get the vdev guid from the nvlist.
486          * Otherwise, vdev_alloc_common() will generate one for us.
487          */
488         if (alloctype == VDEV_ALLOC_LOAD) {
489                 uint64_t label_id;
490
491                 if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_ID, &label_id) ||
492                     label_id != id)
493                         return (SET_ERROR(EINVAL));
494
495                 if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID, &guid) != 0)
496                         return (SET_ERROR(EINVAL));
497         } else if (alloctype == VDEV_ALLOC_SPARE) {
498                 if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID, &guid) != 0)
499                         return (SET_ERROR(EINVAL));
500         } else if (alloctype == VDEV_ALLOC_L2CACHE) {
501                 if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID, &guid) != 0)
502                         return (SET_ERROR(EINVAL));
503         } else if (alloctype == VDEV_ALLOC_ROOTPOOL) {
504                 if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID, &guid) != 0)
505                         return (SET_ERROR(EINVAL));
506         }
507
508         /*
509          * The first allocated vdev must be of type 'root'.
510          */
511         if (ops != &vdev_root_ops && spa->spa_root_vdev == NULL)
512                 return (SET_ERROR(EINVAL));
513
514         /*
515          * Determine whether we're a log vdev.
516          */
517         islog = 0;
518         (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_IS_LOG, &islog);
519         if (islog && spa_version(spa) < SPA_VERSION_SLOGS)
520                 return (SET_ERROR(ENOTSUP));
521
522         if (ops == &vdev_hole_ops && spa_version(spa) < SPA_VERSION_HOLES)
523                 return (SET_ERROR(ENOTSUP));
524
525         /*
526          * Set the nparity property for RAID-Z vdevs.
527          */
528         nparity = -1ULL;
529         if (ops == &vdev_raidz_ops) {
530                 if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_NPARITY,
531                     &nparity) == 0) {
532                         if (nparity == 0 || nparity > VDEV_RAIDZ_MAXPARITY)
533                                 return (SET_ERROR(EINVAL));
534                         /*
535                          * Previous versions could only support 1 or 2 parity
536                          * device.
537                          */
538                         if (nparity > 1 &&
539                             spa_version(spa) < SPA_VERSION_RAIDZ2)
540                                 return (SET_ERROR(ENOTSUP));
541                         if (nparity > 2 &&
542                             spa_version(spa) < SPA_VERSION_RAIDZ3)
543                                 return (SET_ERROR(ENOTSUP));
544                 } else {
545                         /*
546                          * We require the parity to be specified for SPAs that
547                          * support multiple parity levels.
548                          */
549                         if (spa_version(spa) >= SPA_VERSION_RAIDZ2)
550                                 return (SET_ERROR(EINVAL));
551                         /*
552                          * Otherwise, we default to 1 parity device for RAID-Z.
553                          */
554                         nparity = 1;
555                 }
556         } else {
557                 nparity = 0;
558         }
559         ASSERT(nparity != -1ULL);
560
561         vd = vdev_alloc_common(spa, id, guid, ops);
562
563         vd->vdev_islog = islog;
564         vd->vdev_nparity = nparity;
565
566         if (nvlist_lookup_string(nv, ZPOOL_CONFIG_PATH, &vd->vdev_path) == 0)
567                 vd->vdev_path = spa_strdup(vd->vdev_path);
568         if (nvlist_lookup_string(nv, ZPOOL_CONFIG_DEVID, &vd->vdev_devid) == 0)
569                 vd->vdev_devid = spa_strdup(vd->vdev_devid);
570         if (nvlist_lookup_string(nv, ZPOOL_CONFIG_PHYS_PATH,
571             &vd->vdev_physpath) == 0)
572                 vd->vdev_physpath = spa_strdup(vd->vdev_physpath);
573         if (nvlist_lookup_string(nv, ZPOOL_CONFIG_FRU, &vd->vdev_fru) == 0)
574                 vd->vdev_fru = spa_strdup(vd->vdev_fru);
575
576         /*
577          * Set the whole_disk property.  If it's not specified, leave the value
578          * as -1.
579          */
580         if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_WHOLE_DISK,
581             &vd->vdev_wholedisk) != 0)
582                 vd->vdev_wholedisk = -1ULL;
583
584         /*
585          * Look for the 'not present' flag.  This will only be set if the device
586          * was not present at the time of import.
587          */
588         (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_NOT_PRESENT,
589             &vd->vdev_not_present);
590
591         /*
592          * Get the alignment requirement.
593          */
594         (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_ASHIFT, &vd->vdev_ashift);
595
596         /*
597          * Retrieve the vdev creation time.
598          */
599         (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_CREATE_TXG,
600             &vd->vdev_crtxg);
601
602         /*
603          * If we're a top-level vdev, try to load the allocation parameters.
604          */
605         if (parent && !parent->vdev_parent &&
606             (alloctype == VDEV_ALLOC_LOAD || alloctype == VDEV_ALLOC_SPLIT)) {
607                 (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_METASLAB_ARRAY,
608                     &vd->vdev_ms_array);
609                 (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_METASLAB_SHIFT,
610                     &vd->vdev_ms_shift);
611                 (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_ASIZE,
612                     &vd->vdev_asize);
613                 (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_REMOVING,
614                     &vd->vdev_removing);
615                 (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_VDEV_TOP_ZAP,
616                     &vd->vdev_top_zap);
617         } else {
618                 ASSERT0(vd->vdev_top_zap);
619         }
620
621         if (parent && !parent->vdev_parent && alloctype != VDEV_ALLOC_ATTACH) {
622                 ASSERT(alloctype == VDEV_ALLOC_LOAD ||
623                     alloctype == VDEV_ALLOC_ADD ||
624                     alloctype == VDEV_ALLOC_SPLIT ||
625                     alloctype == VDEV_ALLOC_ROOTPOOL);
626                 vd->vdev_mg = metaslab_group_create(islog ?
627                     spa_log_class(spa) : spa_normal_class(spa), vd);
628         }
629
630         if (vd->vdev_ops->vdev_op_leaf &&
631             (alloctype == VDEV_ALLOC_LOAD || alloctype == VDEV_ALLOC_SPLIT)) {
632                 (void) nvlist_lookup_uint64(nv,
633                     ZPOOL_CONFIG_VDEV_LEAF_ZAP, &vd->vdev_leaf_zap);
634         } else {
635                 ASSERT0(vd->vdev_leaf_zap);
636         }
637
638         /*
639          * If we're a leaf vdev, try to load the DTL object and other state.
640          */
641
642         if (vd->vdev_ops->vdev_op_leaf &&
643             (alloctype == VDEV_ALLOC_LOAD || alloctype == VDEV_ALLOC_L2CACHE ||
644             alloctype == VDEV_ALLOC_ROOTPOOL)) {
645                 if (alloctype == VDEV_ALLOC_LOAD) {
646                         (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_DTL,
647                             &vd->vdev_dtl_object);
648                         (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_UNSPARE,
649                             &vd->vdev_unspare);
650                 }
651
652                 if (alloctype == VDEV_ALLOC_ROOTPOOL) {
653                         uint64_t spare = 0;
654
655                         if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_IS_SPARE,
656                             &spare) == 0 && spare)
657                                 spa_spare_add(vd);
658                 }
659
660                 (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_OFFLINE,
661                     &vd->vdev_offline);
662
663                 (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_RESILVER_TXG,
664                     &vd->vdev_resilver_txg);
665
666                 /*
667                  * When importing a pool, we want to ignore the persistent fault
668                  * state, as the diagnosis made on another system may not be
669                  * valid in the current context.  Local vdevs will
670                  * remain in the faulted state.
671                  */
672                 if (spa_load_state(spa) == SPA_LOAD_OPEN) {
673                         (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_FAULTED,
674                             &vd->vdev_faulted);
675                         (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_DEGRADED,
676                             &vd->vdev_degraded);
677                         (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_REMOVED,
678                             &vd->vdev_removed);
679
680                         if (vd->vdev_faulted || vd->vdev_degraded) {
681                                 char *aux;
682
683                                 vd->vdev_label_aux =
684                                     VDEV_AUX_ERR_EXCEEDED;
685                                 if (nvlist_lookup_string(nv,
686                                     ZPOOL_CONFIG_AUX_STATE, &aux) == 0 &&
687                                     strcmp(aux, "external") == 0)
688                                         vd->vdev_label_aux = VDEV_AUX_EXTERNAL;
689                         }
690                 }
691         }
692
693         /*
694          * Add ourselves to the parent's list of children.
695          */
696         vdev_add_child(parent, vd);
697
698         *vdp = vd;
699
700         return (0);
701 }
702
703 void
704 vdev_free(vdev_t *vd)
705 {
706         spa_t *spa = vd->vdev_spa;
707
708         /*
709          * vdev_free() implies closing the vdev first.  This is simpler than
710          * trying to ensure complicated semantics for all callers.
711          */
712         vdev_close(vd);
713
714         ASSERT(!list_link_active(&vd->vdev_config_dirty_node));
715         ASSERT(!list_link_active(&vd->vdev_state_dirty_node));
716
717         /*
718          * Free all children.
719          */
720         for (int c = 0; c < vd->vdev_children; c++)
721                 vdev_free(vd->vdev_child[c]);
722
723         ASSERT(vd->vdev_child == NULL);
724         ASSERT(vd->vdev_guid_sum == vd->vdev_guid);
725
726         /*
727          * Discard allocation state.
728          */
729         if (vd->vdev_mg != NULL) {
730                 vdev_metaslab_fini(vd);
731                 metaslab_group_destroy(vd->vdev_mg);
732         }
733
734         ASSERT0(vd->vdev_stat.vs_space);
735         ASSERT0(vd->vdev_stat.vs_dspace);
736         ASSERT0(vd->vdev_stat.vs_alloc);
737
738         /*
739          * Remove this vdev from its parent's child list.
740          */
741         vdev_remove_child(vd->vdev_parent, vd);
742
743         ASSERT(vd->vdev_parent == NULL);
744
745         /*
746          * Clean up vdev structure.
747          */
748         vdev_queue_fini(vd);
749         vdev_cache_fini(vd);
750
751         if (vd->vdev_path)
752                 spa_strfree(vd->vdev_path);
753         if (vd->vdev_devid)
754                 spa_strfree(vd->vdev_devid);
755         if (vd->vdev_physpath)
756                 spa_strfree(vd->vdev_physpath);
757         if (vd->vdev_fru)
758                 spa_strfree(vd->vdev_fru);
759
760         if (vd->vdev_isspare)
761                 spa_spare_remove(vd);
762         if (vd->vdev_isl2cache)
763                 spa_l2cache_remove(vd);
764
765         txg_list_destroy(&vd->vdev_ms_list);
766         txg_list_destroy(&vd->vdev_dtl_list);
767
768         mutex_enter(&vd->vdev_dtl_lock);
769         space_map_close(vd->vdev_dtl_sm);
770         for (int t = 0; t < DTL_TYPES; t++) {
771                 range_tree_vacate(vd->vdev_dtl[t], NULL, NULL);
772                 range_tree_destroy(vd->vdev_dtl[t]);
773         }
774         mutex_exit(&vd->vdev_dtl_lock);
775
776         mutex_destroy(&vd->vdev_queue_lock);
777         mutex_destroy(&vd->vdev_dtl_lock);
778         mutex_destroy(&vd->vdev_stat_lock);
779         mutex_destroy(&vd->vdev_probe_lock);
780
781         if (vd == spa->spa_root_vdev)
782                 spa->spa_root_vdev = NULL;
783
784         kmem_free(vd, sizeof (vdev_t));
785 }
786
787 /*
788  * Transfer top-level vdev state from svd to tvd.
789  */
790 static void
791 vdev_top_transfer(vdev_t *svd, vdev_t *tvd)
792 {
793         spa_t *spa = svd->vdev_spa;
794         metaslab_t *msp;
795         vdev_t *vd;
796         int t;
797
798         ASSERT(tvd == tvd->vdev_top);
799
800         tvd->vdev_ms_array = svd->vdev_ms_array;
801         tvd->vdev_ms_shift = svd->vdev_ms_shift;
802         tvd->vdev_ms_count = svd->vdev_ms_count;
803         tvd->vdev_top_zap = svd->vdev_top_zap;
804
805         svd->vdev_ms_array = 0;
806         svd->vdev_ms_shift = 0;
807         svd->vdev_ms_count = 0;
808         svd->vdev_top_zap = 0;
809
810         if (tvd->vdev_mg)
811                 ASSERT3P(tvd->vdev_mg, ==, svd->vdev_mg);
812         tvd->vdev_mg = svd->vdev_mg;
813         tvd->vdev_ms = svd->vdev_ms;
814
815         svd->vdev_mg = NULL;
816         svd->vdev_ms = NULL;
817
818         if (tvd->vdev_mg != NULL)
819                 tvd->vdev_mg->mg_vd = tvd;
820
821         tvd->vdev_stat.vs_alloc = svd->vdev_stat.vs_alloc;
822         tvd->vdev_stat.vs_space = svd->vdev_stat.vs_space;
823         tvd->vdev_stat.vs_dspace = svd->vdev_stat.vs_dspace;
824
825         svd->vdev_stat.vs_alloc = 0;
826         svd->vdev_stat.vs_space = 0;
827         svd->vdev_stat.vs_dspace = 0;
828
829         for (t = 0; t < TXG_SIZE; t++) {
830                 while ((msp = txg_list_remove(&svd->vdev_ms_list, t)) != NULL)
831                         (void) txg_list_add(&tvd->vdev_ms_list, msp, t);
832                 while ((vd = txg_list_remove(&svd->vdev_dtl_list, t)) != NULL)
833                         (void) txg_list_add(&tvd->vdev_dtl_list, vd, t);
834                 if (txg_list_remove_this(&spa->spa_vdev_txg_list, svd, t))
835                         (void) txg_list_add(&spa->spa_vdev_txg_list, tvd, t);
836         }
837
838         if (list_link_active(&svd->vdev_config_dirty_node)) {
839                 vdev_config_clean(svd);
840                 vdev_config_dirty(tvd);
841         }
842
843         if (list_link_active(&svd->vdev_state_dirty_node)) {
844                 vdev_state_clean(svd);
845                 vdev_state_dirty(tvd);
846         }
847
848         tvd->vdev_deflate_ratio = svd->vdev_deflate_ratio;
849         svd->vdev_deflate_ratio = 0;
850
851         tvd->vdev_islog = svd->vdev_islog;
852         svd->vdev_islog = 0;
853 }
854
855 static void
856 vdev_top_update(vdev_t *tvd, vdev_t *vd)
857 {
858         if (vd == NULL)
859                 return;
860
861         vd->vdev_top = tvd;
862
863         for (int c = 0; c < vd->vdev_children; c++)
864                 vdev_top_update(tvd, vd->vdev_child[c]);
865 }
866
867 /*
868  * Add a mirror/replacing vdev above an existing vdev.
869  */
870 vdev_t *
871 vdev_add_parent(vdev_t *cvd, vdev_ops_t *ops)
872 {
873         spa_t *spa = cvd->vdev_spa;
874         vdev_t *pvd = cvd->vdev_parent;
875         vdev_t *mvd;
876
877         ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
878
879         mvd = vdev_alloc_common(spa, cvd->vdev_id, 0, ops);
880
881         mvd->vdev_asize = cvd->vdev_asize;
882         mvd->vdev_min_asize = cvd->vdev_min_asize;
883         mvd->vdev_max_asize = cvd->vdev_max_asize;
884         mvd->vdev_ashift = cvd->vdev_ashift;
885         mvd->vdev_logical_ashift = cvd->vdev_logical_ashift;
886         mvd->vdev_physical_ashift = cvd->vdev_physical_ashift;
887         mvd->vdev_state = cvd->vdev_state;
888         mvd->vdev_crtxg = cvd->vdev_crtxg;
889
890         vdev_remove_child(pvd, cvd);
891         vdev_add_child(pvd, mvd);
892         cvd->vdev_id = mvd->vdev_children;
893         vdev_add_child(mvd, cvd);
894         vdev_top_update(cvd->vdev_top, cvd->vdev_top);
895
896         if (mvd == mvd->vdev_top)
897                 vdev_top_transfer(cvd, mvd);
898
899         return (mvd);
900 }
901
902 /*
903  * Remove a 1-way mirror/replacing vdev from the tree.
904  */
905 void
906 vdev_remove_parent(vdev_t *cvd)
907 {
908         vdev_t *mvd = cvd->vdev_parent;
909         vdev_t *pvd = mvd->vdev_parent;
910
911         ASSERT(spa_config_held(cvd->vdev_spa, SCL_ALL, RW_WRITER) == SCL_ALL);
912
913         ASSERT(mvd->vdev_children == 1);
914         ASSERT(mvd->vdev_ops == &vdev_mirror_ops ||
915             mvd->vdev_ops == &vdev_replacing_ops ||
916             mvd->vdev_ops == &vdev_spare_ops);
917         cvd->vdev_ashift = mvd->vdev_ashift;
918         cvd->vdev_logical_ashift = mvd->vdev_logical_ashift;
919         cvd->vdev_physical_ashift = mvd->vdev_physical_ashift;
920
921         vdev_remove_child(mvd, cvd);
922         vdev_remove_child(pvd, mvd);
923
924         /*
925          * If cvd will replace mvd as a top-level vdev, preserve mvd's guid.
926          * Otherwise, we could have detached an offline device, and when we
927          * go to import the pool we'll think we have two top-level vdevs,
928          * instead of a different version of the same top-level vdev.
929          */
930         if (mvd->vdev_top == mvd) {
931                 uint64_t guid_delta = mvd->vdev_guid - cvd->vdev_guid;
932                 cvd->vdev_orig_guid = cvd->vdev_guid;
933                 cvd->vdev_guid += guid_delta;
934                 cvd->vdev_guid_sum += guid_delta;
935         }
936         cvd->vdev_id = mvd->vdev_id;
937         vdev_add_child(pvd, cvd);
938         vdev_top_update(cvd->vdev_top, cvd->vdev_top);
939
940         if (cvd == cvd->vdev_top)
941                 vdev_top_transfer(mvd, cvd);
942
943         ASSERT(mvd->vdev_children == 0);
944         vdev_free(mvd);
945 }
946
947 int
948 vdev_metaslab_init(vdev_t *vd, uint64_t txg)
949 {
950         spa_t *spa = vd->vdev_spa;
951         objset_t *mos = spa->spa_meta_objset;
952         uint64_t m;
953         uint64_t oldc = vd->vdev_ms_count;
954         uint64_t newc = vd->vdev_asize >> vd->vdev_ms_shift;
955         metaslab_t **mspp;
956         int error;
957
958         ASSERT(txg == 0 || spa_config_held(spa, SCL_ALLOC, RW_WRITER));
959
960         /*
961          * This vdev is not being allocated from yet or is a hole.
962          */
963         if (vd->vdev_ms_shift == 0)
964                 return (0);
965
966         ASSERT(!vd->vdev_ishole);
967
968         /*
969          * Compute the raidz-deflation ratio.  Note, we hard-code
970          * in 128k (1 << 17) because it is the "typical" blocksize.
971          * Even though SPA_MAXBLOCKSIZE changed, this algorithm can not change,
972          * otherwise it would inconsistently account for existing bp's.
973          */
974         vd->vdev_deflate_ratio = (1 << 17) /
975             (vdev_psize_to_asize(vd, 1 << 17) >> SPA_MINBLOCKSHIFT);
976
977         ASSERT(oldc <= newc);
978
979         mspp = kmem_zalloc(newc * sizeof (*mspp), KM_SLEEP);
980
981         if (oldc != 0) {
982                 bcopy(vd->vdev_ms, mspp, oldc * sizeof (*mspp));
983                 kmem_free(vd->vdev_ms, oldc * sizeof (*mspp));
984         }
985
986         vd->vdev_ms = mspp;
987         vd->vdev_ms_count = newc;
988
989         for (m = oldc; m < newc; m++) {
990                 uint64_t object = 0;
991
992                 if (txg == 0) {
993                         error = dmu_read(mos, vd->vdev_ms_array,
994                             m * sizeof (uint64_t), sizeof (uint64_t), &object,
995                             DMU_READ_PREFETCH);
996                         if (error)
997                                 return (error);
998                 }
999
1000                 error = metaslab_init(vd->vdev_mg, m, object, txg,
1001                     &(vd->vdev_ms[m]));
1002                 if (error)
1003                         return (error);
1004         }
1005
1006         if (txg == 0)
1007                 spa_config_enter(spa, SCL_ALLOC, FTAG, RW_WRITER);
1008
1009         /*
1010          * If the vdev is being removed we don't activate
1011          * the metaslabs since we want to ensure that no new
1012          * allocations are performed on this device.
1013          */
1014         if (oldc == 0 && !vd->vdev_removing)
1015                 metaslab_group_activate(vd->vdev_mg);
1016
1017         if (txg == 0)
1018                 spa_config_exit(spa, SCL_ALLOC, FTAG);
1019
1020         return (0);
1021 }
1022
1023 void
1024 vdev_metaslab_fini(vdev_t *vd)
1025 {
1026         uint64_t m;
1027         uint64_t count = vd->vdev_ms_count;
1028
1029         if (vd->vdev_ms != NULL) {
1030                 metaslab_group_passivate(vd->vdev_mg);
1031                 for (m = 0; m < count; m++) {
1032                         metaslab_t *msp = vd->vdev_ms[m];
1033
1034                         if (msp != NULL)
1035                                 metaslab_fini(msp);
1036                 }
1037                 kmem_free(vd->vdev_ms, count * sizeof (metaslab_t *));
1038                 vd->vdev_ms = NULL;
1039         }
1040 }
1041
1042 typedef struct vdev_probe_stats {
1043         boolean_t       vps_readable;
1044         boolean_t       vps_writeable;
1045         int             vps_flags;
1046 } vdev_probe_stats_t;
1047
1048 static void
1049 vdev_probe_done(zio_t *zio)
1050 {
1051         spa_t *spa = zio->io_spa;
1052         vdev_t *vd = zio->io_vd;
1053         vdev_probe_stats_t *vps = zio->io_private;
1054
1055         ASSERT(vd->vdev_probe_zio != NULL);
1056
1057         if (zio->io_type == ZIO_TYPE_READ) {
1058                 if (zio->io_error == 0)
1059                         vps->vps_readable = 1;
1060                 if (zio->io_error == 0 && spa_writeable(spa)) {
1061                         zio_nowait(zio_write_phys(vd->vdev_probe_zio, vd,
1062                             zio->io_offset, zio->io_size, zio->io_data,
1063                             ZIO_CHECKSUM_OFF, vdev_probe_done, vps,
1064                             ZIO_PRIORITY_SYNC_WRITE, vps->vps_flags, B_TRUE));
1065                 } else {
1066                         zio_buf_free(zio->io_data, zio->io_size);
1067                 }
1068         } else if (zio->io_type == ZIO_TYPE_WRITE) {
1069                 if (zio->io_error == 0)
1070                         vps->vps_writeable = 1;
1071                 zio_buf_free(zio->io_data, zio->io_size);
1072         } else if (zio->io_type == ZIO_TYPE_NULL) {
1073                 zio_t *pio;
1074
1075                 vd->vdev_cant_read |= !vps->vps_readable;
1076                 vd->vdev_cant_write |= !vps->vps_writeable;
1077
1078                 if (vdev_readable(vd) &&
1079                     (vdev_writeable(vd) || !spa_writeable(spa))) {
1080                         zio->io_error = 0;
1081                 } else {
1082                         ASSERT(zio->io_error != 0);
1083                         zfs_ereport_post(FM_EREPORT_ZFS_PROBE_FAILURE,
1084                             spa, vd, NULL, 0, 0);
1085                         zio->io_error = SET_ERROR(ENXIO);
1086                 }
1087
1088                 mutex_enter(&vd->vdev_probe_lock);
1089                 ASSERT(vd->vdev_probe_zio == zio);
1090                 vd->vdev_probe_zio = NULL;
1091                 mutex_exit(&vd->vdev_probe_lock);
1092
1093                 zio_link_t *zl = NULL;
1094                 while ((pio = zio_walk_parents(zio, &zl)) != NULL)
1095                         if (!vdev_accessible(vd, pio))
1096                                 pio->io_error = SET_ERROR(ENXIO);
1097
1098                 kmem_free(vps, sizeof (*vps));
1099         }
1100 }
1101
1102 /*
1103  * Determine whether this device is accessible.
1104  *
1105  * Read and write to several known locations: the pad regions of each
1106  * vdev label but the first, which we leave alone in case it contains
1107  * a VTOC.
1108  */
1109 zio_t *
1110 vdev_probe(vdev_t *vd, zio_t *zio)
1111 {
1112         spa_t *spa = vd->vdev_spa;
1113         vdev_probe_stats_t *vps = NULL;
1114         zio_t *pio;
1115
1116         ASSERT(vd->vdev_ops->vdev_op_leaf);
1117
1118         /*
1119          * Don't probe the probe.
1120          */
1121         if (zio && (zio->io_flags & ZIO_FLAG_PROBE))
1122                 return (NULL);
1123
1124         /*
1125          * To prevent 'probe storms' when a device fails, we create
1126          * just one probe i/o at a time.  All zios that want to probe
1127          * this vdev will become parents of the probe io.
1128          */
1129         mutex_enter(&vd->vdev_probe_lock);
1130
1131         if ((pio = vd->vdev_probe_zio) == NULL) {
1132                 vps = kmem_zalloc(sizeof (*vps), KM_SLEEP);
1133
1134                 vps->vps_flags = ZIO_FLAG_CANFAIL | ZIO_FLAG_PROBE |
1135                     ZIO_FLAG_DONT_CACHE | ZIO_FLAG_DONT_AGGREGATE |
1136                     ZIO_FLAG_TRYHARD;
1137
1138                 if (spa_config_held(spa, SCL_ZIO, RW_WRITER)) {
1139                         /*
1140                          * vdev_cant_read and vdev_cant_write can only
1141                          * transition from TRUE to FALSE when we have the
1142                          * SCL_ZIO lock as writer; otherwise they can only
1143                          * transition from FALSE to TRUE.  This ensures that
1144                          * any zio looking at these values can assume that
1145                          * failures persist for the life of the I/O.  That's
1146                          * important because when a device has intermittent
1147                          * connectivity problems, we want to ensure that
1148                          * they're ascribed to the device (ENXIO) and not
1149                          * the zio (EIO).
1150                          *
1151                          * Since we hold SCL_ZIO as writer here, clear both
1152                          * values so the probe can reevaluate from first
1153                          * principles.
1154                          */
1155                         vps->vps_flags |= ZIO_FLAG_CONFIG_WRITER;
1156                         vd->vdev_cant_read = B_FALSE;
1157                         vd->vdev_cant_write = B_FALSE;
1158                 }
1159
1160                 vd->vdev_probe_zio = pio = zio_null(NULL, spa, vd,
1161                     vdev_probe_done, vps,
1162                     vps->vps_flags | ZIO_FLAG_DONT_PROPAGATE);
1163
1164                 /*
1165                  * We can't change the vdev state in this context, so we
1166                  * kick off an async task to do it on our behalf.
1167                  */
1168                 if (zio != NULL) {
1169                         vd->vdev_probe_wanted = B_TRUE;
1170                         spa_async_request(spa, SPA_ASYNC_PROBE);
1171                 }
1172         }
1173
1174         if (zio != NULL)
1175                 zio_add_child(zio, pio);
1176
1177         mutex_exit(&vd->vdev_probe_lock);
1178
1179         if (vps == NULL) {
1180                 ASSERT(zio != NULL);
1181                 return (NULL);
1182         }
1183
1184         for (int l = 1; l < VDEV_LABELS; l++) {
1185                 zio_nowait(zio_read_phys(pio, vd,
1186                     vdev_label_offset(vd->vdev_psize, l,
1187                     offsetof(vdev_label_t, vl_pad2)),
1188                     VDEV_PAD_SIZE, zio_buf_alloc(VDEV_PAD_SIZE),
1189                     ZIO_CHECKSUM_OFF, vdev_probe_done, vps,
1190                     ZIO_PRIORITY_SYNC_READ, vps->vps_flags, B_TRUE));
1191         }
1192
1193         if (zio == NULL)
1194                 return (pio);
1195
1196         zio_nowait(pio);
1197         return (NULL);
1198 }
1199
1200 static void
1201 vdev_open_child(void *arg)
1202 {
1203         vdev_t *vd = arg;
1204
1205         vd->vdev_open_thread = curthread;
1206         vd->vdev_open_error = vdev_open(vd);
1207         vd->vdev_open_thread = NULL;
1208 }
1209
1210 boolean_t
1211 vdev_uses_zvols(vdev_t *vd)
1212 {
1213         if (vd->vdev_path && strncmp(vd->vdev_path, ZVOL_DIR,
1214             strlen(ZVOL_DIR)) == 0)
1215                 return (B_TRUE);
1216         for (int c = 0; c < vd->vdev_children; c++)
1217                 if (vdev_uses_zvols(vd->vdev_child[c]))
1218                         return (B_TRUE);
1219         return (B_FALSE);
1220 }
1221
1222 void
1223 vdev_open_children(vdev_t *vd)
1224 {
1225         taskq_t *tq;
1226         int children = vd->vdev_children;
1227
1228         /*
1229          * in order to handle pools on top of zvols, do the opens
1230          * in a single thread so that the same thread holds the
1231          * spa_namespace_lock
1232          */
1233         if (B_TRUE || vdev_uses_zvols(vd)) {
1234                 for (int c = 0; c < children; c++)
1235                         vd->vdev_child[c]->vdev_open_error =
1236                             vdev_open(vd->vdev_child[c]);
1237                 return;
1238         }
1239         tq = taskq_create("vdev_open", children, minclsyspri,
1240             children, children, TASKQ_PREPOPULATE);
1241
1242         for (int c = 0; c < children; c++)
1243                 VERIFY(taskq_dispatch(tq, vdev_open_child, vd->vdev_child[c],
1244                     TQ_SLEEP) != 0);
1245
1246         taskq_destroy(tq);
1247 }
1248
1249 /*
1250  * Prepare a virtual device for access.
1251  */
1252 int
1253 vdev_open(vdev_t *vd)
1254 {
1255         spa_t *spa = vd->vdev_spa;
1256         int error;
1257         uint64_t osize = 0;
1258         uint64_t max_osize = 0;
1259         uint64_t asize, max_asize, psize;
1260         uint64_t logical_ashift = 0;
1261         uint64_t physical_ashift = 0;
1262
1263         ASSERT(vd->vdev_open_thread == curthread ||
1264             spa_config_held(spa, SCL_STATE_ALL, RW_WRITER) == SCL_STATE_ALL);
1265         ASSERT(vd->vdev_state == VDEV_STATE_CLOSED ||
1266             vd->vdev_state == VDEV_STATE_CANT_OPEN ||
1267             vd->vdev_state == VDEV_STATE_OFFLINE);
1268
1269         vd->vdev_stat.vs_aux = VDEV_AUX_NONE;
1270         vd->vdev_cant_read = B_FALSE;
1271         vd->vdev_cant_write = B_FALSE;
1272         vd->vdev_notrim = B_FALSE;
1273         vd->vdev_min_asize = vdev_get_min_asize(vd);
1274
1275         /*
1276          * If this vdev is not removed, check its fault status.  If it's
1277          * faulted, bail out of the open.
1278          */
1279         if (!vd->vdev_removed && vd->vdev_faulted) {
1280                 ASSERT(vd->vdev_children == 0);
1281                 ASSERT(vd->vdev_label_aux == VDEV_AUX_ERR_EXCEEDED ||
1282                     vd->vdev_label_aux == VDEV_AUX_EXTERNAL);
1283                 vdev_set_state(vd, B_TRUE, VDEV_STATE_FAULTED,
1284                     vd->vdev_label_aux);
1285                 return (SET_ERROR(ENXIO));
1286         } else if (vd->vdev_offline) {
1287                 ASSERT(vd->vdev_children == 0);
1288                 vdev_set_state(vd, B_TRUE, VDEV_STATE_OFFLINE, VDEV_AUX_NONE);
1289                 return (SET_ERROR(ENXIO));
1290         }
1291
1292         error = vd->vdev_ops->vdev_op_open(vd, &osize, &max_osize,
1293             &logical_ashift, &physical_ashift);
1294
1295         /*
1296          * Reset the vdev_reopening flag so that we actually close
1297          * the vdev on error.
1298          */
1299         vd->vdev_reopening = B_FALSE;
1300         if (zio_injection_enabled && error == 0)
1301                 error = zio_handle_device_injection(vd, NULL, ENXIO);
1302
1303         if (error) {
1304                 if (vd->vdev_removed &&
1305                     vd->vdev_stat.vs_aux != VDEV_AUX_OPEN_FAILED)
1306                         vd->vdev_removed = B_FALSE;
1307
1308                 vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
1309                     vd->vdev_stat.vs_aux);
1310                 return (error);
1311         }
1312
1313         vd->vdev_removed = B_FALSE;
1314
1315         /*
1316          * Recheck the faulted flag now that we have confirmed that
1317          * the vdev is accessible.  If we're faulted, bail.
1318          */
1319         if (vd->vdev_faulted) {
1320                 ASSERT(vd->vdev_children == 0);
1321                 ASSERT(vd->vdev_label_aux == VDEV_AUX_ERR_EXCEEDED ||
1322                     vd->vdev_label_aux == VDEV_AUX_EXTERNAL);
1323                 vdev_set_state(vd, B_TRUE, VDEV_STATE_FAULTED,
1324                     vd->vdev_label_aux);
1325                 return (SET_ERROR(ENXIO));
1326         }
1327
1328         if (vd->vdev_degraded) {
1329                 ASSERT(vd->vdev_children == 0);
1330                 vdev_set_state(vd, B_TRUE, VDEV_STATE_DEGRADED,
1331                     VDEV_AUX_ERR_EXCEEDED);
1332         } else {
1333                 vdev_set_state(vd, B_TRUE, VDEV_STATE_HEALTHY, 0);
1334         }
1335
1336         /*
1337          * For hole or missing vdevs we just return success.
1338          */
1339         if (vd->vdev_ishole || vd->vdev_ops == &vdev_missing_ops)
1340                 return (0);
1341
1342         if (zfs_trim_enabled && !vd->vdev_notrim && vd->vdev_ops->vdev_op_leaf)
1343                 trim_map_create(vd);
1344
1345         for (int c = 0; c < vd->vdev_children; c++) {
1346                 if (vd->vdev_child[c]->vdev_state != VDEV_STATE_HEALTHY) {
1347                         vdev_set_state(vd, B_TRUE, VDEV_STATE_DEGRADED,
1348                             VDEV_AUX_NONE);
1349                         break;
1350                 }
1351         }
1352
1353         osize = P2ALIGN(osize, (uint64_t)sizeof (vdev_label_t));
1354         max_osize = P2ALIGN(max_osize, (uint64_t)sizeof (vdev_label_t));
1355
1356         if (vd->vdev_children == 0) {
1357                 if (osize < SPA_MINDEVSIZE) {
1358                         vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
1359                             VDEV_AUX_TOO_SMALL);
1360                         return (SET_ERROR(EOVERFLOW));
1361                 }
1362                 psize = osize;
1363                 asize = osize - (VDEV_LABEL_START_SIZE + VDEV_LABEL_END_SIZE);
1364                 max_asize = max_osize - (VDEV_LABEL_START_SIZE +
1365                     VDEV_LABEL_END_SIZE);
1366         } else {
1367                 if (vd->vdev_parent != NULL && osize < SPA_MINDEVSIZE -
1368                     (VDEV_LABEL_START_SIZE + VDEV_LABEL_END_SIZE)) {
1369                         vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
1370                             VDEV_AUX_TOO_SMALL);
1371                         return (SET_ERROR(EOVERFLOW));
1372                 }
1373                 psize = 0;
1374                 asize = osize;
1375                 max_asize = max_osize;
1376         }
1377
1378         vd->vdev_psize = psize;
1379
1380         /*
1381          * Make sure the allocatable size hasn't shrunk too much.
1382          */
1383         if (asize < vd->vdev_min_asize) {
1384                 vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
1385                     VDEV_AUX_BAD_LABEL);
1386                 return (SET_ERROR(EINVAL));
1387         }
1388
1389         vd->vdev_physical_ashift =
1390             MAX(physical_ashift, vd->vdev_physical_ashift);
1391         vd->vdev_logical_ashift = MAX(logical_ashift, vd->vdev_logical_ashift);
1392         vd->vdev_ashift = MAX(vd->vdev_logical_ashift, vd->vdev_ashift);
1393
1394         if (vd->vdev_logical_ashift > SPA_MAXASHIFT) {
1395                 vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
1396                     VDEV_AUX_ASHIFT_TOO_BIG);
1397                 return (EINVAL);
1398         }
1399
1400         if (vd->vdev_asize == 0) {
1401                 /*
1402                  * This is the first-ever open, so use the computed values.
1403                  * For testing purposes, a higher ashift can be requested.
1404                  */
1405                 vd->vdev_asize = asize;
1406                 vd->vdev_max_asize = max_asize;
1407         } else {
1408                 /*
1409                  * Make sure the alignment requirement hasn't increased.
1410                  */
1411                 if (vd->vdev_ashift > vd->vdev_top->vdev_ashift &&
1412                     vd->vdev_ops->vdev_op_leaf) {
1413                         vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
1414                             VDEV_AUX_BAD_LABEL);
1415                         return (EINVAL);
1416                 }
1417                 vd->vdev_max_asize = max_asize;
1418         }
1419
1420         /*
1421          * If all children are healthy we update asize if either:
1422          * The asize has increased, due to a device expansion caused by dynamic
1423          * LUN growth or vdev replacement, and automatic expansion is enabled;
1424          * making the additional space available.
1425          *
1426          * The asize has decreased, due to a device shrink usually caused by a
1427          * vdev replace with a smaller device. This ensures that calculations
1428          * based of max_asize and asize e.g. esize are always valid. It's safe
1429          * to do this as we've already validated that asize is greater than
1430          * vdev_min_asize.
1431          */
1432         if (vd->vdev_state == VDEV_STATE_HEALTHY &&
1433             ((asize > vd->vdev_asize &&
1434             (vd->vdev_expanding || spa->spa_autoexpand)) ||
1435             (asize < vd->vdev_asize)))
1436                 vd->vdev_asize = asize;
1437
1438         vdev_set_min_asize(vd);
1439
1440         /*
1441          * Ensure we can issue some IO before declaring the
1442          * vdev open for business.
1443          */
1444         if (vd->vdev_ops->vdev_op_leaf &&
1445             (error = zio_wait(vdev_probe(vd, NULL))) != 0) {
1446                 vdev_set_state(vd, B_TRUE, VDEV_STATE_FAULTED,
1447                     VDEV_AUX_ERR_EXCEEDED);
1448                 return (error);
1449         }
1450
1451         /*
1452          * Track the min and max ashift values for normal data devices.
1453          */
1454         if (vd->vdev_top == vd && vd->vdev_ashift != 0 &&
1455             !vd->vdev_islog && vd->vdev_aux == NULL) {
1456                 if (vd->vdev_ashift > spa->spa_max_ashift)
1457                         spa->spa_max_ashift = vd->vdev_ashift;
1458                 if (vd->vdev_ashift < spa->spa_min_ashift)
1459                         spa->spa_min_ashift = vd->vdev_ashift;
1460         }
1461
1462         /*
1463          * If a leaf vdev has a DTL, and seems healthy, then kick off a
1464          * resilver.  But don't do this if we are doing a reopen for a scrub,
1465          * since this would just restart the scrub we are already doing.
1466          */
1467         if (vd->vdev_ops->vdev_op_leaf && !spa->spa_scrub_reopen &&
1468             vdev_resilver_needed(vd, NULL, NULL))
1469                 spa_async_request(spa, SPA_ASYNC_RESILVER);
1470
1471         return (0);
1472 }
1473
1474 /*
1475  * Called once the vdevs are all opened, this routine validates the label
1476  * contents.  This needs to be done before vdev_load() so that we don't
1477  * inadvertently do repair I/Os to the wrong device.
1478  *
1479  * If 'strict' is false ignore the spa guid check. This is necessary because
1480  * if the machine crashed during a re-guid the new guid might have been written
1481  * to all of the vdev labels, but not the cached config. The strict check
1482  * will be performed when the pool is opened again using the mos config.
1483  *
1484  * This function will only return failure if one of the vdevs indicates that it
1485  * has since been destroyed or exported.  This is only possible if
1486  * /etc/zfs/zpool.cache was readonly at the time.  Otherwise, the vdev state
1487  * will be updated but the function will return 0.
1488  */
1489 int
1490 vdev_validate(vdev_t *vd, boolean_t strict)
1491 {
1492         spa_t *spa = vd->vdev_spa;
1493         nvlist_t *label;
1494         uint64_t guid = 0, top_guid;
1495         uint64_t state;
1496
1497         for (int c = 0; c < vd->vdev_children; c++)
1498                 if (vdev_validate(vd->vdev_child[c], strict) != 0)
1499                         return (SET_ERROR(EBADF));
1500
1501         /*
1502          * If the device has already failed, or was marked offline, don't do
1503          * any further validation.  Otherwise, label I/O will fail and we will
1504          * overwrite the previous state.
1505          */
1506         if (vd->vdev_ops->vdev_op_leaf && vdev_readable(vd)) {
1507                 uint64_t aux_guid = 0;
1508                 nvlist_t *nvl;
1509                 uint64_t txg = spa_last_synced_txg(spa) != 0 ?
1510                     spa_last_synced_txg(spa) : -1ULL;
1511
1512                 if ((label = vdev_label_read_config(vd, txg)) == NULL) {
1513                         vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
1514                             VDEV_AUX_BAD_LABEL);
1515                         return (0);
1516                 }
1517
1518                 /*
1519                  * Determine if this vdev has been split off into another
1520                  * pool.  If so, then refuse to open it.
1521                  */
1522                 if (nvlist_lookup_uint64(label, ZPOOL_CONFIG_SPLIT_GUID,
1523                     &aux_guid) == 0 && aux_guid == spa_guid(spa)) {
1524                         vdev_set_state(vd, B_FALSE, VDEV_STATE_CANT_OPEN,
1525                             VDEV_AUX_SPLIT_POOL);
1526                         nvlist_free(label);
1527                         return (0);
1528                 }
1529
1530                 if (strict && (nvlist_lookup_uint64(label,
1531                     ZPOOL_CONFIG_POOL_GUID, &guid) != 0 ||
1532                     guid != spa_guid(spa))) {
1533                         vdev_set_state(vd, B_FALSE, VDEV_STATE_CANT_OPEN,
1534                             VDEV_AUX_CORRUPT_DATA);
1535                         nvlist_free(label);
1536                         return (0);
1537                 }
1538
1539                 if (nvlist_lookup_nvlist(label, ZPOOL_CONFIG_VDEV_TREE, &nvl)
1540                     != 0 || nvlist_lookup_uint64(nvl, ZPOOL_CONFIG_ORIG_GUID,
1541                     &aux_guid) != 0)
1542                         aux_guid = 0;
1543
1544                 /*
1545                  * If this vdev just became a top-level vdev because its
1546                  * sibling was detached, it will have adopted the parent's
1547                  * vdev guid -- but the label may or may not be on disk yet.
1548                  * Fortunately, either version of the label will have the
1549                  * same top guid, so if we're a top-level vdev, we can
1550                  * safely compare to that instead.
1551                  *
1552                  * If we split this vdev off instead, then we also check the
1553                  * original pool's guid.  We don't want to consider the vdev
1554                  * corrupt if it is partway through a split operation.
1555                  */
1556                 if (nvlist_lookup_uint64(label, ZPOOL_CONFIG_GUID,
1557                     &guid) != 0 ||
1558                     nvlist_lookup_uint64(label, ZPOOL_CONFIG_TOP_GUID,
1559                     &top_guid) != 0 ||
1560                     ((vd->vdev_guid != guid && vd->vdev_guid != aux_guid) &&
1561                     (vd->vdev_guid != top_guid || vd != vd->vdev_top))) {
1562                         vdev_set_state(vd, B_FALSE, VDEV_STATE_CANT_OPEN,
1563                             VDEV_AUX_CORRUPT_DATA);
1564                         nvlist_free(label);
1565                         return (0);
1566                 }
1567
1568                 if (nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_STATE,
1569                     &state) != 0) {
1570                         vdev_set_state(vd, B_FALSE, VDEV_STATE_CANT_OPEN,
1571                             VDEV_AUX_CORRUPT_DATA);
1572                         nvlist_free(label);
1573                         return (0);
1574                 }
1575
1576                 nvlist_free(label);
1577
1578                 /*
1579                  * If this is a verbatim import, no need to check the
1580                  * state of the pool.
1581                  */
1582                 if (!(spa->spa_import_flags & ZFS_IMPORT_VERBATIM) &&
1583                     spa_load_state(spa) == SPA_LOAD_OPEN &&
1584                     state != POOL_STATE_ACTIVE)
1585                         return (SET_ERROR(EBADF));
1586
1587                 /*
1588                  * If we were able to open and validate a vdev that was
1589                  * previously marked permanently unavailable, clear that state
1590                  * now.
1591                  */
1592                 if (vd->vdev_not_present)
1593                         vd->vdev_not_present = 0;
1594         }
1595
1596         return (0);
1597 }
1598
1599 /*
1600  * Close a virtual device.
1601  */
1602 void
1603 vdev_close(vdev_t *vd)
1604 {
1605         spa_t *spa = vd->vdev_spa;
1606         vdev_t *pvd = vd->vdev_parent;
1607
1608         ASSERT(spa_config_held(spa, SCL_STATE_ALL, RW_WRITER) == SCL_STATE_ALL);
1609
1610         /*
1611          * If our parent is reopening, then we are as well, unless we are
1612          * going offline.
1613          */
1614         if (pvd != NULL && pvd->vdev_reopening)
1615                 vd->vdev_reopening = (pvd->vdev_reopening && !vd->vdev_offline);
1616
1617         vd->vdev_ops->vdev_op_close(vd);
1618
1619         vdev_cache_purge(vd);
1620
1621         if (vd->vdev_ops->vdev_op_leaf)
1622                 trim_map_destroy(vd);
1623
1624         /*
1625          * We record the previous state before we close it, so that if we are
1626          * doing a reopen(), we don't generate FMA ereports if we notice that
1627          * it's still faulted.
1628          */
1629         vd->vdev_prevstate = vd->vdev_state;
1630
1631         if (vd->vdev_offline)
1632                 vd->vdev_state = VDEV_STATE_OFFLINE;
1633         else
1634                 vd->vdev_state = VDEV_STATE_CLOSED;
1635         vd->vdev_stat.vs_aux = VDEV_AUX_NONE;
1636 }
1637
1638 void
1639 vdev_hold(vdev_t *vd)
1640 {
1641         spa_t *spa = vd->vdev_spa;
1642
1643         ASSERT(spa_is_root(spa));
1644         if (spa->spa_state == POOL_STATE_UNINITIALIZED)
1645                 return;
1646
1647         for (int c = 0; c < vd->vdev_children; c++)
1648                 vdev_hold(vd->vdev_child[c]);
1649
1650         if (vd->vdev_ops->vdev_op_leaf)
1651                 vd->vdev_ops->vdev_op_hold(vd);
1652 }
1653
1654 void
1655 vdev_rele(vdev_t *vd)
1656 {
1657         spa_t *spa = vd->vdev_spa;
1658
1659         ASSERT(spa_is_root(spa));
1660         for (int c = 0; c < vd->vdev_children; c++)
1661                 vdev_rele(vd->vdev_child[c]);
1662
1663         if (vd->vdev_ops->vdev_op_leaf)
1664                 vd->vdev_ops->vdev_op_rele(vd);
1665 }
1666
1667 /*
1668  * Reopen all interior vdevs and any unopened leaves.  We don't actually
1669  * reopen leaf vdevs which had previously been opened as they might deadlock
1670  * on the spa_config_lock.  Instead we only obtain the leaf's physical size.
1671  * If the leaf has never been opened then open it, as usual.
1672  */
1673 void
1674 vdev_reopen(vdev_t *vd)
1675 {
1676         spa_t *spa = vd->vdev_spa;
1677
1678         ASSERT(spa_config_held(spa, SCL_STATE_ALL, RW_WRITER) == SCL_STATE_ALL);
1679
1680         /* set the reopening flag unless we're taking the vdev offline */
1681         vd->vdev_reopening = !vd->vdev_offline;
1682         vdev_close(vd);
1683         (void) vdev_open(vd);
1684
1685         /*
1686          * Call vdev_validate() here to make sure we have the same device.
1687          * Otherwise, a device with an invalid label could be successfully
1688          * opened in response to vdev_reopen().
1689          */
1690         if (vd->vdev_aux) {
1691                 (void) vdev_validate_aux(vd);
1692                 if (vdev_readable(vd) && vdev_writeable(vd) &&
1693                     vd->vdev_aux == &spa->spa_l2cache &&
1694                     !l2arc_vdev_present(vd))
1695                         l2arc_add_vdev(spa, vd);
1696         } else {
1697                 (void) vdev_validate(vd, B_TRUE);
1698         }
1699
1700         /*
1701          * Reassess parent vdev's health.
1702          */
1703         vdev_propagate_state(vd);
1704 }
1705
1706 int
1707 vdev_create(vdev_t *vd, uint64_t txg, boolean_t isreplacing)
1708 {
1709         int error;
1710
1711         /*
1712          * Normally, partial opens (e.g. of a mirror) are allowed.
1713          * For a create, however, we want to fail the request if
1714          * there are any components we can't open.
1715          */
1716         error = vdev_open(vd);
1717
1718         if (error || vd->vdev_state != VDEV_STATE_HEALTHY) {
1719                 vdev_close(vd);
1720                 return (error ? error : ENXIO);
1721         }
1722
1723         /*
1724          * Recursively load DTLs and initialize all labels.
1725          */
1726         if ((error = vdev_dtl_load(vd)) != 0 ||
1727             (error = vdev_label_init(vd, txg, isreplacing ?
1728             VDEV_LABEL_REPLACE : VDEV_LABEL_CREATE)) != 0) {
1729                 vdev_close(vd);
1730                 return (error);
1731         }
1732
1733         return (0);
1734 }
1735
1736 void
1737 vdev_metaslab_set_size(vdev_t *vd)
1738 {
1739         /*
1740          * Aim for roughly metaslabs_per_vdev (default 200) metaslabs per vdev.
1741          */
1742         vd->vdev_ms_shift = highbit64(vd->vdev_asize / metaslabs_per_vdev);
1743         vd->vdev_ms_shift = MAX(vd->vdev_ms_shift, SPA_MAXBLOCKSHIFT);
1744 }
1745
1746 /*
1747  * Maximize performance by inflating the configured ashift for top level
1748  * vdevs to be as close to the physical ashift as possible while maintaining
1749  * administrator defined limits and ensuring it doesn't go below the
1750  * logical ashift.
1751  */
1752 void
1753 vdev_ashift_optimize(vdev_t *vd)
1754 {
1755         if (vd == vd->vdev_top) {
1756                 if (vd->vdev_ashift < vd->vdev_physical_ashift) {
1757                         vd->vdev_ashift = MIN(
1758                             MAX(zfs_max_auto_ashift, vd->vdev_ashift),
1759                             MAX(zfs_min_auto_ashift, vd->vdev_physical_ashift));
1760                 } else {
1761                         /*
1762                          * Unusual case where logical ashift > physical ashift
1763                          * so we can't cap the calculated ashift based on max
1764                          * ashift as that would cause failures.
1765                          * We still check if we need to increase it to match
1766                          * the min ashift.
1767                          */
1768                         vd->vdev_ashift = MAX(zfs_min_auto_ashift,
1769                             vd->vdev_ashift);
1770                 }
1771         }
1772 }
1773
1774 void
1775 vdev_dirty(vdev_t *vd, int flags, void *arg, uint64_t txg)
1776 {
1777         ASSERT(vd == vd->vdev_top);
1778         ASSERT(!vd->vdev_ishole);
1779         ASSERT(ISP2(flags));
1780         ASSERT(spa_writeable(vd->vdev_spa));
1781
1782         if (flags & VDD_METASLAB)
1783                 (void) txg_list_add(&vd->vdev_ms_list, arg, txg);
1784
1785         if (flags & VDD_DTL)
1786                 (void) txg_list_add(&vd->vdev_dtl_list, arg, txg);
1787
1788         (void) txg_list_add(&vd->vdev_spa->spa_vdev_txg_list, vd, txg);
1789 }
1790
1791 void
1792 vdev_dirty_leaves(vdev_t *vd, int flags, uint64_t txg)
1793 {
1794         for (int c = 0; c < vd->vdev_children; c++)
1795                 vdev_dirty_leaves(vd->vdev_child[c], flags, txg);
1796
1797         if (vd->vdev_ops->vdev_op_leaf)
1798                 vdev_dirty(vd->vdev_top, flags, vd, txg);
1799 }
1800
1801 /*
1802  * DTLs.
1803  *
1804  * A vdev's DTL (dirty time log) is the set of transaction groups for which
1805  * the vdev has less than perfect replication.  There are four kinds of DTL:
1806  *
1807  * DTL_MISSING: txgs for which the vdev has no valid copies of the data
1808  *
1809  * DTL_PARTIAL: txgs for which data is available, but not fully replicated
1810  *
1811  * DTL_SCRUB: the txgs that could not be repaired by the last scrub; upon
1812  *      scrub completion, DTL_SCRUB replaces DTL_MISSING in the range of
1813  *      txgs that was scrubbed.
1814  *
1815  * DTL_OUTAGE: txgs which cannot currently be read, whether due to
1816  *      persistent errors or just some device being offline.
1817  *      Unlike the other three, the DTL_OUTAGE map is not generally
1818  *      maintained; it's only computed when needed, typically to
1819  *      determine whether a device can be detached.
1820  *
1821  * For leaf vdevs, DTL_MISSING and DTL_PARTIAL are identical: the device
1822  * either has the data or it doesn't.
1823  *
1824  * For interior vdevs such as mirror and RAID-Z the picture is more complex.
1825  * A vdev's DTL_PARTIAL is the union of its children's DTL_PARTIALs, because
1826  * if any child is less than fully replicated, then so is its parent.
1827  * A vdev's DTL_MISSING is a modified union of its children's DTL_MISSINGs,
1828  * comprising only those txgs which appear in 'maxfaults' or more children;
1829  * those are the txgs we don't have enough replication to read.  For example,
1830  * double-parity RAID-Z can tolerate up to two missing devices (maxfaults == 2);
1831  * thus, its DTL_MISSING consists of the set of txgs that appear in more than
1832  * two child DTL_MISSING maps.
1833  *
1834  * It should be clear from the above that to compute the DTLs and outage maps
1835  * for all vdevs, it suffices to know just the leaf vdevs' DTL_MISSING maps.
1836  * Therefore, that is all we keep on disk.  When loading the pool, or after
1837  * a configuration change, we generate all other DTLs from first principles.
1838  */
1839 void
1840 vdev_dtl_dirty(vdev_t *vd, vdev_dtl_type_t t, uint64_t txg, uint64_t size)
1841 {
1842         range_tree_t *rt = vd->vdev_dtl[t];
1843
1844         ASSERT(t < DTL_TYPES);
1845         ASSERT(vd != vd->vdev_spa->spa_root_vdev);
1846         ASSERT(spa_writeable(vd->vdev_spa));
1847
1848         mutex_enter(rt->rt_lock);
1849         if (!range_tree_contains(rt, txg, size))
1850                 range_tree_add(rt, txg, size);
1851         mutex_exit(rt->rt_lock);
1852 }
1853
1854 boolean_t
1855 vdev_dtl_contains(vdev_t *vd, vdev_dtl_type_t t, uint64_t txg, uint64_t size)
1856 {
1857         range_tree_t *rt = vd->vdev_dtl[t];
1858         boolean_t dirty = B_FALSE;
1859
1860         ASSERT(t < DTL_TYPES);
1861         ASSERT(vd != vd->vdev_spa->spa_root_vdev);
1862
1863         mutex_enter(rt->rt_lock);
1864         if (range_tree_space(rt) != 0)
1865                 dirty = range_tree_contains(rt, txg, size);
1866         mutex_exit(rt->rt_lock);
1867
1868         return (dirty);
1869 }
1870
1871 boolean_t
1872 vdev_dtl_empty(vdev_t *vd, vdev_dtl_type_t t)
1873 {
1874         range_tree_t *rt = vd->vdev_dtl[t];
1875         boolean_t empty;
1876
1877         mutex_enter(rt->rt_lock);
1878         empty = (range_tree_space(rt) == 0);
1879         mutex_exit(rt->rt_lock);
1880
1881         return (empty);
1882 }
1883
1884 /*
1885  * Returns the lowest txg in the DTL range.
1886  */
1887 static uint64_t
1888 vdev_dtl_min(vdev_t *vd)
1889 {
1890         range_seg_t *rs;
1891
1892         ASSERT(MUTEX_HELD(&vd->vdev_dtl_lock));
1893         ASSERT3U(range_tree_space(vd->vdev_dtl[DTL_MISSING]), !=, 0);
1894         ASSERT0(vd->vdev_children);
1895
1896         rs = avl_first(&vd->vdev_dtl[DTL_MISSING]->rt_root);
1897         return (rs->rs_start - 1);
1898 }
1899
1900 /*
1901  * Returns the highest txg in the DTL.
1902  */
1903 static uint64_t
1904 vdev_dtl_max(vdev_t *vd)
1905 {
1906         range_seg_t *rs;
1907
1908         ASSERT(MUTEX_HELD(&vd->vdev_dtl_lock));
1909         ASSERT3U(range_tree_space(vd->vdev_dtl[DTL_MISSING]), !=, 0);
1910         ASSERT0(vd->vdev_children);
1911
1912         rs = avl_last(&vd->vdev_dtl[DTL_MISSING]->rt_root);
1913         return (rs->rs_end);
1914 }
1915
1916 /*
1917  * Determine if a resilvering vdev should remove any DTL entries from
1918  * its range. If the vdev was resilvering for the entire duration of the
1919  * scan then it should excise that range from its DTLs. Otherwise, this
1920  * vdev is considered partially resilvered and should leave its DTL
1921  * entries intact. The comment in vdev_dtl_reassess() describes how we
1922  * excise the DTLs.
1923  */
1924 static boolean_t
1925 vdev_dtl_should_excise(vdev_t *vd)
1926 {
1927         spa_t *spa = vd->vdev_spa;
1928         dsl_scan_t *scn = spa->spa_dsl_pool->dp_scan;
1929
1930         ASSERT0(scn->scn_phys.scn_errors);
1931         ASSERT0(vd->vdev_children);
1932
1933         if (vd->vdev_resilver_txg == 0 ||
1934             range_tree_space(vd->vdev_dtl[DTL_MISSING]) == 0)
1935                 return (B_TRUE);
1936
1937         /*
1938          * When a resilver is initiated the scan will assign the scn_max_txg
1939          * value to the highest txg value that exists in all DTLs. If this
1940          * device's max DTL is not part of this scan (i.e. it is not in
1941          * the range (scn_min_txg, scn_max_txg] then it is not eligible
1942          * for excision.
1943          */
1944         if (vdev_dtl_max(vd) <= scn->scn_phys.scn_max_txg) {
1945                 ASSERT3U(scn->scn_phys.scn_min_txg, <=, vdev_dtl_min(vd));
1946                 ASSERT3U(scn->scn_phys.scn_min_txg, <, vd->vdev_resilver_txg);
1947                 ASSERT3U(vd->vdev_resilver_txg, <=, scn->scn_phys.scn_max_txg);
1948                 return (B_TRUE);
1949         }
1950         return (B_FALSE);
1951 }
1952
1953 /*
1954  * Reassess DTLs after a config change or scrub completion.
1955  */
1956 void
1957 vdev_dtl_reassess(vdev_t *vd, uint64_t txg, uint64_t scrub_txg, int scrub_done)
1958 {
1959         spa_t *spa = vd->vdev_spa;
1960         avl_tree_t reftree;
1961         int minref;
1962
1963         ASSERT(spa_config_held(spa, SCL_ALL, RW_READER) != 0);
1964
1965         for (int c = 0; c < vd->vdev_children; c++)
1966                 vdev_dtl_reassess(vd->vdev_child[c], txg,
1967                     scrub_txg, scrub_done);
1968
1969         if (vd == spa->spa_root_vdev || vd->vdev_ishole || vd->vdev_aux)
1970                 return;
1971
1972         if (vd->vdev_ops->vdev_op_leaf) {
1973                 dsl_scan_t *scn = spa->spa_dsl_pool->dp_scan;
1974
1975                 mutex_enter(&vd->vdev_dtl_lock);
1976
1977                 /*
1978                  * If we've completed a scan cleanly then determine
1979                  * if this vdev should remove any DTLs. We only want to
1980                  * excise regions on vdevs that were available during
1981                  * the entire duration of this scan.
1982                  */
1983                 if (scrub_txg != 0 &&
1984                     (spa->spa_scrub_started ||
1985                     (scn != NULL && scn->scn_phys.scn_errors == 0)) &&
1986                     vdev_dtl_should_excise(vd)) {
1987                         /*
1988                          * We completed a scrub up to scrub_txg.  If we
1989                          * did it without rebooting, then the scrub dtl
1990                          * will be valid, so excise the old region and
1991                          * fold in the scrub dtl.  Otherwise, leave the
1992                          * dtl as-is if there was an error.
1993                          *
1994                          * There's little trick here: to excise the beginning
1995                          * of the DTL_MISSING map, we put it into a reference
1996                          * tree and then add a segment with refcnt -1 that
1997                          * covers the range [0, scrub_txg).  This means
1998                          * that each txg in that range has refcnt -1 or 0.
1999                          * We then add DTL_SCRUB with a refcnt of 2, so that
2000                          * entries in the range [0, scrub_txg) will have a
2001                          * positive refcnt -- either 1 or 2.  We then convert
2002                          * the reference tree into the new DTL_MISSING map.
2003                          */
2004                         space_reftree_create(&reftree);
2005                         space_reftree_add_map(&reftree,
2006                             vd->vdev_dtl[DTL_MISSING], 1);
2007                         space_reftree_add_seg(&reftree, 0, scrub_txg, -1);
2008                         space_reftree_add_map(&reftree,
2009                             vd->vdev_dtl[DTL_SCRUB], 2);
2010                         space_reftree_generate_map(&reftree,
2011                             vd->vdev_dtl[DTL_MISSING], 1);
2012                         space_reftree_destroy(&reftree);
2013                 }
2014                 range_tree_vacate(vd->vdev_dtl[DTL_PARTIAL], NULL, NULL);
2015                 range_tree_walk(vd->vdev_dtl[DTL_MISSING],
2016                     range_tree_add, vd->vdev_dtl[DTL_PARTIAL]);
2017                 if (scrub_done)
2018                         range_tree_vacate(vd->vdev_dtl[DTL_SCRUB], NULL, NULL);
2019                 range_tree_vacate(vd->vdev_dtl[DTL_OUTAGE], NULL, NULL);
2020                 if (!vdev_readable(vd))
2021                         range_tree_add(vd->vdev_dtl[DTL_OUTAGE], 0, -1ULL);
2022                 else
2023                         range_tree_walk(vd->vdev_dtl[DTL_MISSING],
2024                             range_tree_add, vd->vdev_dtl[DTL_OUTAGE]);
2025
2026                 /*
2027                  * If the vdev was resilvering and no longer has any
2028                  * DTLs then reset its resilvering flag and dirty
2029                  * the top level so that we persist the change.
2030                  */
2031                 if (vd->vdev_resilver_txg != 0 &&
2032                     range_tree_space(vd->vdev_dtl[DTL_MISSING]) == 0 &&
2033                     range_tree_space(vd->vdev_dtl[DTL_OUTAGE]) == 0) {
2034                         vd->vdev_resilver_txg = 0;
2035                         vdev_config_dirty(vd->vdev_top);
2036                 }
2037
2038                 mutex_exit(&vd->vdev_dtl_lock);
2039
2040                 if (txg != 0)
2041                         vdev_dirty(vd->vdev_top, VDD_DTL, vd, txg);
2042                 return;
2043         }
2044
2045         mutex_enter(&vd->vdev_dtl_lock);
2046         for (int t = 0; t < DTL_TYPES; t++) {
2047                 /* account for child's outage in parent's missing map */
2048                 int s = (t == DTL_MISSING) ? DTL_OUTAGE: t;
2049                 if (t == DTL_SCRUB)
2050                         continue;                       /* leaf vdevs only */
2051                 if (t == DTL_PARTIAL)
2052                         minref = 1;                     /* i.e. non-zero */
2053                 else if (vd->vdev_nparity != 0)
2054                         minref = vd->vdev_nparity + 1;  /* RAID-Z */
2055                 else
2056                         minref = vd->vdev_children;     /* any kind of mirror */
2057                 space_reftree_create(&reftree);
2058                 for (int c = 0; c < vd->vdev_children; c++) {
2059                         vdev_t *cvd = vd->vdev_child[c];
2060                         mutex_enter(&cvd->vdev_dtl_lock);
2061                         space_reftree_add_map(&reftree, cvd->vdev_dtl[s], 1);
2062                         mutex_exit(&cvd->vdev_dtl_lock);
2063                 }
2064                 space_reftree_generate_map(&reftree, vd->vdev_dtl[t], minref);
2065                 space_reftree_destroy(&reftree);
2066         }
2067         mutex_exit(&vd->vdev_dtl_lock);
2068 }
2069
2070 int
2071 vdev_dtl_load(vdev_t *vd)
2072 {
2073         spa_t *spa = vd->vdev_spa;
2074         objset_t *mos = spa->spa_meta_objset;
2075         int error = 0;
2076
2077         if (vd->vdev_ops->vdev_op_leaf && vd->vdev_dtl_object != 0) {
2078                 ASSERT(!vd->vdev_ishole);
2079
2080                 error = space_map_open(&vd->vdev_dtl_sm, mos,
2081                     vd->vdev_dtl_object, 0, -1ULL, 0, &vd->vdev_dtl_lock);
2082                 if (error)
2083                         return (error);
2084                 ASSERT(vd->vdev_dtl_sm != NULL);
2085
2086                 mutex_enter(&vd->vdev_dtl_lock);
2087
2088                 /*
2089                  * Now that we've opened the space_map we need to update
2090                  * the in-core DTL.
2091                  */
2092                 space_map_update(vd->vdev_dtl_sm);
2093
2094                 error = space_map_load(vd->vdev_dtl_sm,
2095                     vd->vdev_dtl[DTL_MISSING], SM_ALLOC);
2096                 mutex_exit(&vd->vdev_dtl_lock);
2097
2098                 return (error);
2099         }
2100
2101         for (int c = 0; c < vd->vdev_children; c++) {
2102                 error = vdev_dtl_load(vd->vdev_child[c]);
2103                 if (error != 0)
2104                         break;
2105         }
2106
2107         return (error);
2108 }
2109
2110 void
2111 vdev_destroy_unlink_zap(vdev_t *vd, uint64_t zapobj, dmu_tx_t *tx)
2112 {
2113         spa_t *spa = vd->vdev_spa;
2114
2115         VERIFY0(zap_destroy(spa->spa_meta_objset, zapobj, tx));
2116         VERIFY0(zap_remove_int(spa->spa_meta_objset, spa->spa_all_vdev_zaps,
2117             zapobj, tx));
2118 }
2119
2120 uint64_t
2121 vdev_create_link_zap(vdev_t *vd, dmu_tx_t *tx)
2122 {
2123         spa_t *spa = vd->vdev_spa;
2124         uint64_t zap = zap_create(spa->spa_meta_objset, DMU_OTN_ZAP_METADATA,
2125             DMU_OT_NONE, 0, tx);
2126
2127         ASSERT(zap != 0);
2128         VERIFY0(zap_add_int(spa->spa_meta_objset, spa->spa_all_vdev_zaps,
2129             zap, tx));
2130
2131         return (zap);
2132 }
2133
2134 void
2135 vdev_construct_zaps(vdev_t *vd, dmu_tx_t *tx)
2136 {
2137         if (vd->vdev_ops != &vdev_hole_ops &&
2138             vd->vdev_ops != &vdev_missing_ops &&
2139             vd->vdev_ops != &vdev_root_ops &&
2140             !vd->vdev_top->vdev_removing) {
2141                 if (vd->vdev_ops->vdev_op_leaf && vd->vdev_leaf_zap == 0) {
2142                         vd->vdev_leaf_zap = vdev_create_link_zap(vd, tx);
2143                 }
2144                 if (vd == vd->vdev_top && vd->vdev_top_zap == 0) {
2145                         vd->vdev_top_zap = vdev_create_link_zap(vd, tx);
2146                 }
2147         }
2148         for (uint64_t i = 0; i < vd->vdev_children; i++) {
2149                 vdev_construct_zaps(vd->vdev_child[i], tx);
2150         }
2151 }
2152
2153 void
2154 vdev_dtl_sync(vdev_t *vd, uint64_t txg)
2155 {
2156         spa_t *spa = vd->vdev_spa;
2157         range_tree_t *rt = vd->vdev_dtl[DTL_MISSING];
2158         objset_t *mos = spa->spa_meta_objset;
2159         range_tree_t *rtsync;
2160         kmutex_t rtlock;
2161         dmu_tx_t *tx;
2162         uint64_t object = space_map_object(vd->vdev_dtl_sm);
2163
2164         ASSERT(!vd->vdev_ishole);
2165         ASSERT(vd->vdev_ops->vdev_op_leaf);
2166
2167         tx = dmu_tx_create_assigned(spa->spa_dsl_pool, txg);
2168
2169         if (vd->vdev_detached || vd->vdev_top->vdev_removing) {
2170                 mutex_enter(&vd->vdev_dtl_lock);
2171                 space_map_free(vd->vdev_dtl_sm, tx);
2172                 space_map_close(vd->vdev_dtl_sm);
2173                 vd->vdev_dtl_sm = NULL;
2174                 mutex_exit(&vd->vdev_dtl_lock);
2175
2176                 /*
2177                  * We only destroy the leaf ZAP for detached leaves or for
2178                  * removed log devices. Removed data devices handle leaf ZAP
2179                  * cleanup later, once cancellation is no longer possible.
2180                  */
2181                 if (vd->vdev_leaf_zap != 0 && (vd->vdev_detached ||
2182                     vd->vdev_top->vdev_islog)) {
2183                         vdev_destroy_unlink_zap(vd, vd->vdev_leaf_zap, tx);
2184                         vd->vdev_leaf_zap = 0;
2185                 }
2186
2187                 dmu_tx_commit(tx);
2188                 return;
2189         }
2190
2191         if (vd->vdev_dtl_sm == NULL) {
2192                 uint64_t new_object;
2193
2194                 new_object = space_map_alloc(mos, tx);
2195                 VERIFY3U(new_object, !=, 0);
2196
2197                 VERIFY0(space_map_open(&vd->vdev_dtl_sm, mos, new_object,
2198                     0, -1ULL, 0, &vd->vdev_dtl_lock));
2199                 ASSERT(vd->vdev_dtl_sm != NULL);
2200         }
2201
2202         bzero(&rtlock, sizeof(rtlock));
2203         mutex_init(&rtlock, NULL, MUTEX_DEFAULT, NULL);
2204
2205         rtsync = range_tree_create(NULL, NULL, &rtlock);
2206
2207         mutex_enter(&rtlock);
2208
2209         mutex_enter(&vd->vdev_dtl_lock);
2210         range_tree_walk(rt, range_tree_add, rtsync);
2211         mutex_exit(&vd->vdev_dtl_lock);
2212
2213         space_map_truncate(vd->vdev_dtl_sm, tx);
2214         space_map_write(vd->vdev_dtl_sm, rtsync, SM_ALLOC, tx);
2215         range_tree_vacate(rtsync, NULL, NULL);
2216
2217         range_tree_destroy(rtsync);
2218
2219         mutex_exit(&rtlock);
2220         mutex_destroy(&rtlock);
2221
2222         /*
2223          * If the object for the space map has changed then dirty
2224          * the top level so that we update the config.
2225          */
2226         if (object != space_map_object(vd->vdev_dtl_sm)) {
2227                 zfs_dbgmsg("txg %llu, spa %s, DTL old object %llu, "
2228                     "new object %llu", txg, spa_name(spa), object,
2229                     space_map_object(vd->vdev_dtl_sm));
2230                 vdev_config_dirty(vd->vdev_top);
2231         }
2232
2233         dmu_tx_commit(tx);
2234
2235         mutex_enter(&vd->vdev_dtl_lock);
2236         space_map_update(vd->vdev_dtl_sm);
2237         mutex_exit(&vd->vdev_dtl_lock);
2238 }
2239
2240 /*
2241  * Determine whether the specified vdev can be offlined/detached/removed
2242  * without losing data.
2243  */
2244 boolean_t
2245 vdev_dtl_required(vdev_t *vd)
2246 {
2247         spa_t *spa = vd->vdev_spa;
2248         vdev_t *tvd = vd->vdev_top;
2249         uint8_t cant_read = vd->vdev_cant_read;
2250         boolean_t required;
2251
2252         ASSERT(spa_config_held(spa, SCL_STATE_ALL, RW_WRITER) == SCL_STATE_ALL);
2253
2254         if (vd == spa->spa_root_vdev || vd == tvd)
2255                 return (B_TRUE);
2256
2257         /*
2258          * Temporarily mark the device as unreadable, and then determine
2259          * whether this results in any DTL outages in the top-level vdev.
2260          * If not, we can safely offline/detach/remove the device.
2261          */
2262         vd->vdev_cant_read = B_TRUE;
2263         vdev_dtl_reassess(tvd, 0, 0, B_FALSE);
2264         required = !vdev_dtl_empty(tvd, DTL_OUTAGE);
2265         vd->vdev_cant_read = cant_read;
2266         vdev_dtl_reassess(tvd, 0, 0, B_FALSE);
2267
2268         if (!required && zio_injection_enabled)
2269                 required = !!zio_handle_device_injection(vd, NULL, ECHILD);
2270
2271         return (required);
2272 }
2273
2274 /*
2275  * Determine if resilver is needed, and if so the txg range.
2276  */
2277 boolean_t
2278 vdev_resilver_needed(vdev_t *vd, uint64_t *minp, uint64_t *maxp)
2279 {
2280         boolean_t needed = B_FALSE;
2281         uint64_t thismin = UINT64_MAX;
2282         uint64_t thismax = 0;
2283
2284         if (vd->vdev_children == 0) {
2285                 mutex_enter(&vd->vdev_dtl_lock);
2286                 if (range_tree_space(vd->vdev_dtl[DTL_MISSING]) != 0 &&
2287                     vdev_writeable(vd)) {
2288
2289                         thismin = vdev_dtl_min(vd);
2290                         thismax = vdev_dtl_max(vd);
2291                         needed = B_TRUE;
2292                 }
2293                 mutex_exit(&vd->vdev_dtl_lock);
2294         } else {
2295                 for (int c = 0; c < vd->vdev_children; c++) {
2296                         vdev_t *cvd = vd->vdev_child[c];
2297                         uint64_t cmin, cmax;
2298
2299                         if (vdev_resilver_needed(cvd, &cmin, &cmax)) {
2300                                 thismin = MIN(thismin, cmin);
2301                                 thismax = MAX(thismax, cmax);
2302                                 needed = B_TRUE;
2303                         }
2304                 }
2305         }
2306
2307         if (needed && minp) {
2308                 *minp = thismin;
2309                 *maxp = thismax;
2310         }
2311         return (needed);
2312 }
2313
2314 void
2315 vdev_load(vdev_t *vd)
2316 {
2317         /*
2318          * Recursively load all children.
2319          */
2320         for (int c = 0; c < vd->vdev_children; c++)
2321                 vdev_load(vd->vdev_child[c]);
2322
2323         /*
2324          * If this is a top-level vdev, initialize its metaslabs.
2325          */
2326         if (vd == vd->vdev_top && !vd->vdev_ishole &&
2327             (vd->vdev_ashift == 0 || vd->vdev_asize == 0 ||
2328             vdev_metaslab_init(vd, 0) != 0))
2329                 vdev_set_state(vd, B_FALSE, VDEV_STATE_CANT_OPEN,
2330                     VDEV_AUX_CORRUPT_DATA);
2331
2332         /*
2333          * If this is a leaf vdev, load its DTL.
2334          */
2335         if (vd->vdev_ops->vdev_op_leaf && vdev_dtl_load(vd) != 0)
2336                 vdev_set_state(vd, B_FALSE, VDEV_STATE_CANT_OPEN,
2337                     VDEV_AUX_CORRUPT_DATA);
2338 }
2339
2340 /*
2341  * The special vdev case is used for hot spares and l2cache devices.  Its
2342  * sole purpose it to set the vdev state for the associated vdev.  To do this,
2343  * we make sure that we can open the underlying device, then try to read the
2344  * label, and make sure that the label is sane and that it hasn't been
2345  * repurposed to another pool.
2346  */
2347 int
2348 vdev_validate_aux(vdev_t *vd)
2349 {
2350         nvlist_t *label;
2351         uint64_t guid, version;
2352         uint64_t state;
2353
2354         if (!vdev_readable(vd))
2355                 return (0);
2356
2357         if ((label = vdev_label_read_config(vd, -1ULL)) == NULL) {
2358                 vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
2359                     VDEV_AUX_CORRUPT_DATA);
2360                 return (-1);
2361         }
2362
2363         if (nvlist_lookup_uint64(label, ZPOOL_CONFIG_VERSION, &version) != 0 ||
2364             !SPA_VERSION_IS_SUPPORTED(version) ||
2365             nvlist_lookup_uint64(label, ZPOOL_CONFIG_GUID, &guid) != 0 ||
2366             guid != vd->vdev_guid ||
2367             nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_STATE, &state) != 0) {
2368                 vdev_set_state(vd, B_TRUE, VDEV_STATE_CANT_OPEN,
2369                     VDEV_AUX_CORRUPT_DATA);
2370                 nvlist_free(label);
2371                 return (-1);
2372         }
2373
2374         /*
2375          * We don't actually check the pool state here.  If it's in fact in
2376          * use by another pool, we update this fact on the fly when requested.
2377          */
2378         nvlist_free(label);
2379         return (0);
2380 }
2381
2382 void
2383 vdev_remove(vdev_t *vd, uint64_t txg)
2384 {
2385         spa_t *spa = vd->vdev_spa;
2386         objset_t *mos = spa->spa_meta_objset;
2387         dmu_tx_t *tx;
2388
2389         tx = dmu_tx_create_assigned(spa_get_dsl(spa), txg);
2390         ASSERT(vd == vd->vdev_top);
2391         ASSERT3U(txg, ==, spa_syncing_txg(spa));
2392
2393         if (vd->vdev_ms != NULL) {
2394                 metaslab_group_t *mg = vd->vdev_mg;
2395
2396                 metaslab_group_histogram_verify(mg);
2397                 metaslab_class_histogram_verify(mg->mg_class);
2398
2399                 for (int m = 0; m < vd->vdev_ms_count; m++) {
2400                         metaslab_t *msp = vd->vdev_ms[m];
2401
2402                         if (msp == NULL || msp->ms_sm == NULL)
2403                                 continue;
2404
2405                         mutex_enter(&msp->ms_lock);
2406                         /*
2407                          * If the metaslab was not loaded when the vdev
2408                          * was removed then the histogram accounting may
2409                          * not be accurate. Update the histogram information
2410                          * here so that we ensure that the metaslab group
2411                          * and metaslab class are up-to-date.
2412                          */
2413                         metaslab_group_histogram_remove(mg, msp);
2414
2415                         VERIFY0(space_map_allocated(msp->ms_sm));
2416                         space_map_free(msp->ms_sm, tx);
2417                         space_map_close(msp->ms_sm);
2418                         msp->ms_sm = NULL;
2419                         mutex_exit(&msp->ms_lock);
2420                 }
2421
2422                 metaslab_group_histogram_verify(mg);
2423                 metaslab_class_histogram_verify(mg->mg_class);
2424                 for (int i = 0; i < RANGE_TREE_HISTOGRAM_SIZE; i++)
2425                         ASSERT0(mg->mg_histogram[i]);
2426
2427         }
2428
2429         if (vd->vdev_ms_array) {
2430                 (void) dmu_object_free(mos, vd->vdev_ms_array, tx);
2431                 vd->vdev_ms_array = 0;
2432         }
2433
2434         if (vd->vdev_islog && vd->vdev_top_zap != 0) {
2435                 vdev_destroy_unlink_zap(vd, vd->vdev_top_zap, tx);
2436                 vd->vdev_top_zap = 0;
2437         }
2438         dmu_tx_commit(tx);
2439 }
2440
2441 void
2442 vdev_sync_done(vdev_t *vd, uint64_t txg)
2443 {
2444         metaslab_t *msp;
2445         boolean_t reassess = !txg_list_empty(&vd->vdev_ms_list, TXG_CLEAN(txg));
2446
2447         ASSERT(!vd->vdev_ishole);
2448
2449         while (msp = txg_list_remove(&vd->vdev_ms_list, TXG_CLEAN(txg)))
2450                 metaslab_sync_done(msp, txg);
2451
2452         if (reassess)
2453                 metaslab_sync_reassess(vd->vdev_mg);
2454 }
2455
2456 void
2457 vdev_sync(vdev_t *vd, uint64_t txg)
2458 {
2459         spa_t *spa = vd->vdev_spa;
2460         vdev_t *lvd;
2461         metaslab_t *msp;
2462         dmu_tx_t *tx;
2463
2464         ASSERT(!vd->vdev_ishole);
2465
2466         if (vd->vdev_ms_array == 0 && vd->vdev_ms_shift != 0) {
2467                 ASSERT(vd == vd->vdev_top);
2468                 tx = dmu_tx_create_assigned(spa->spa_dsl_pool, txg);
2469                 vd->vdev_ms_array = dmu_object_alloc(spa->spa_meta_objset,
2470                     DMU_OT_OBJECT_ARRAY, 0, DMU_OT_NONE, 0, tx);
2471                 ASSERT(vd->vdev_ms_array != 0);
2472                 vdev_config_dirty(vd);
2473                 dmu_tx_commit(tx);
2474         }
2475
2476         /*
2477          * Remove the metadata associated with this vdev once it's empty.
2478          */
2479         if (vd->vdev_stat.vs_alloc == 0 && vd->vdev_removing)
2480                 vdev_remove(vd, txg);
2481
2482         while ((msp = txg_list_remove(&vd->vdev_ms_list, txg)) != NULL) {
2483                 metaslab_sync(msp, txg);
2484                 (void) txg_list_add(&vd->vdev_ms_list, msp, TXG_CLEAN(txg));
2485         }
2486
2487         while ((lvd = txg_list_remove(&vd->vdev_dtl_list, txg)) != NULL)
2488                 vdev_dtl_sync(lvd, txg);
2489
2490         (void) txg_list_add(&spa->spa_vdev_txg_list, vd, TXG_CLEAN(txg));
2491 }
2492
2493 uint64_t
2494 vdev_psize_to_asize(vdev_t *vd, uint64_t psize)
2495 {
2496         return (vd->vdev_ops->vdev_op_asize(vd, psize));
2497 }
2498
2499 /*
2500  * Mark the given vdev faulted.  A faulted vdev behaves as if the device could
2501  * not be opened, and no I/O is attempted.
2502  */
2503 int
2504 vdev_fault(spa_t *spa, uint64_t guid, vdev_aux_t aux)
2505 {
2506         vdev_t *vd, *tvd;
2507
2508         spa_vdev_state_enter(spa, SCL_NONE);
2509
2510         if ((vd = spa_lookup_by_guid(spa, guid, B_TRUE)) == NULL)
2511                 return (spa_vdev_state_exit(spa, NULL, ENODEV));
2512
2513         if (!vd->vdev_ops->vdev_op_leaf)
2514                 return (spa_vdev_state_exit(spa, NULL, ENOTSUP));
2515
2516         tvd = vd->vdev_top;
2517
2518         /*
2519          * We don't directly use the aux state here, but if we do a
2520          * vdev_reopen(), we need this value to be present to remember why we
2521          * were faulted.
2522          */
2523         vd->vdev_label_aux = aux;
2524
2525         /*
2526          * Faulted state takes precedence over degraded.
2527          */
2528         vd->vdev_delayed_close = B_FALSE;
2529         vd->vdev_faulted = 1ULL;
2530         vd->vdev_degraded = 0ULL;
2531         vdev_set_state(vd, B_FALSE, VDEV_STATE_FAULTED, aux);
2532
2533         /*
2534          * If this device has the only valid copy of the data, then
2535          * back off and simply mark the vdev as degraded instead.
2536          */
2537         if (!tvd->vdev_islog && vd->vdev_aux == NULL && vdev_dtl_required(vd)) {
2538                 vd->vdev_degraded = 1ULL;
2539                 vd->vdev_faulted = 0ULL;
2540
2541                 /*
2542                  * If we reopen the device and it's not dead, only then do we
2543                  * mark it degraded.
2544                  */
2545                 vdev_reopen(tvd);
2546
2547                 if (vdev_readable(vd))
2548                         vdev_set_state(vd, B_FALSE, VDEV_STATE_DEGRADED, aux);
2549         }
2550
2551         return (spa_vdev_state_exit(spa, vd, 0));
2552 }
2553
2554 /*
2555  * Mark the given vdev degraded.  A degraded vdev is purely an indication to the
2556  * user that something is wrong.  The vdev continues to operate as normal as far
2557  * as I/O is concerned.
2558  */
2559 int
2560 vdev_degrade(spa_t *spa, uint64_t guid, vdev_aux_t aux)
2561 {
2562         vdev_t *vd;
2563
2564         spa_vdev_state_enter(spa, SCL_NONE);
2565
2566         if ((vd = spa_lookup_by_guid(spa, guid, B_TRUE)) == NULL)
2567                 return (spa_vdev_state_exit(spa, NULL, ENODEV));
2568
2569         if (!vd->vdev_ops->vdev_op_leaf)
2570                 return (spa_vdev_state_exit(spa, NULL, ENOTSUP));
2571
2572         /*
2573          * If the vdev is already faulted, then don't do anything.
2574          */
2575         if (vd->vdev_faulted || vd->vdev_degraded)
2576                 return (spa_vdev_state_exit(spa, NULL, 0));
2577
2578         vd->vdev_degraded = 1ULL;
2579         if (!vdev_is_dead(vd))
2580                 vdev_set_state(vd, B_FALSE, VDEV_STATE_DEGRADED,
2581                     aux);
2582
2583         return (spa_vdev_state_exit(spa, vd, 0));
2584 }
2585
2586 /*
2587  * Online the given vdev.
2588  *
2589  * If 'ZFS_ONLINE_UNSPARE' is set, it implies two things.  First, any attached
2590  * spare device should be detached when the device finishes resilvering.
2591  * Second, the online should be treated like a 'test' online case, so no FMA
2592  * events are generated if the device fails to open.
2593  */
2594 int
2595 vdev_online(spa_t *spa, uint64_t guid, uint64_t flags, vdev_state_t *newstate)
2596 {
2597         vdev_t *vd, *tvd, *pvd, *rvd = spa->spa_root_vdev;
2598         boolean_t postevent = B_FALSE;
2599
2600         spa_vdev_state_enter(spa, SCL_NONE);
2601
2602         if ((vd = spa_lookup_by_guid(spa, guid, B_TRUE)) == NULL)
2603                 return (spa_vdev_state_exit(spa, NULL, ENODEV));
2604
2605         if (!vd->vdev_ops->vdev_op_leaf)
2606                 return (spa_vdev_state_exit(spa, NULL, ENOTSUP));
2607
2608         postevent =
2609             (vd->vdev_offline == B_TRUE || vd->vdev_tmpoffline == B_TRUE) ?
2610             B_TRUE : B_FALSE;
2611
2612         tvd = vd->vdev_top;
2613         vd->vdev_offline = B_FALSE;
2614         vd->vdev_tmpoffline = B_FALSE;
2615         vd->vdev_checkremove = !!(flags & ZFS_ONLINE_CHECKREMOVE);
2616         vd->vdev_forcefault = !!(flags & ZFS_ONLINE_FORCEFAULT);
2617
2618         /* XXX - L2ARC 1.0 does not support expansion */
2619         if (!vd->vdev_aux) {
2620                 for (pvd = vd; pvd != rvd; pvd = pvd->vdev_parent)
2621                         pvd->vdev_expanding = !!(flags & ZFS_ONLINE_EXPAND);
2622         }
2623
2624         vdev_reopen(tvd);
2625         vd->vdev_checkremove = vd->vdev_forcefault = B_FALSE;
2626
2627         if (!vd->vdev_aux) {
2628                 for (pvd = vd; pvd != rvd; pvd = pvd->vdev_parent)
2629                         pvd->vdev_expanding = B_FALSE;
2630         }
2631
2632         if (newstate)
2633                 *newstate = vd->vdev_state;
2634         if ((flags & ZFS_ONLINE_UNSPARE) &&
2635             !vdev_is_dead(vd) && vd->vdev_parent &&
2636             vd->vdev_parent->vdev_ops == &vdev_spare_ops &&
2637             vd->vdev_parent->vdev_child[0] == vd)
2638                 vd->vdev_unspare = B_TRUE;
2639
2640         if ((flags & ZFS_ONLINE_EXPAND) || spa->spa_autoexpand) {
2641
2642                 /* XXX - L2ARC 1.0 does not support expansion */
2643                 if (vd->vdev_aux)
2644                         return (spa_vdev_state_exit(spa, vd, ENOTSUP));
2645                 spa_async_request(spa, SPA_ASYNC_CONFIG_UPDATE);
2646         }
2647
2648         if (postevent)
2649                 spa_event_notify(spa, vd, ESC_ZFS_VDEV_ONLINE);
2650
2651         return (spa_vdev_state_exit(spa, vd, 0));
2652 }
2653
2654 static int
2655 vdev_offline_locked(spa_t *spa, uint64_t guid, uint64_t flags)
2656 {
2657         vdev_t *vd, *tvd;
2658         int error = 0;
2659         uint64_t generation;
2660         metaslab_group_t *mg;
2661
2662 top:
2663         spa_vdev_state_enter(spa, SCL_ALLOC);
2664
2665         if ((vd = spa_lookup_by_guid(spa, guid, B_TRUE)) == NULL)
2666                 return (spa_vdev_state_exit(spa, NULL, ENODEV));
2667
2668         if (!vd->vdev_ops->vdev_op_leaf)
2669                 return (spa_vdev_state_exit(spa, NULL, ENOTSUP));
2670
2671         tvd = vd->vdev_top;
2672         mg = tvd->vdev_mg;
2673         generation = spa->spa_config_generation + 1;
2674
2675         /*
2676          * If the device isn't already offline, try to offline it.
2677          */
2678         if (!vd->vdev_offline) {
2679                 /*
2680                  * If this device has the only valid copy of some data,
2681                  * don't allow it to be offlined. Log devices are always
2682                  * expendable.
2683                  */
2684                 if (!tvd->vdev_islog && vd->vdev_aux == NULL &&
2685                     vdev_dtl_required(vd))
2686                         return (spa_vdev_state_exit(spa, NULL, EBUSY));
2687
2688                 /*
2689                  * If the top-level is a slog and it has had allocations
2690                  * then proceed.  We check that the vdev's metaslab group
2691                  * is not NULL since it's possible that we may have just
2692                  * added this vdev but not yet initialized its metaslabs.
2693                  */
2694                 if (tvd->vdev_islog && mg != NULL) {
2695                         /*
2696                          * Prevent any future allocations.
2697                          */
2698                         metaslab_group_passivate(mg);
2699                         (void) spa_vdev_state_exit(spa, vd, 0);
2700
2701                         error = spa_offline_log(spa);
2702
2703                         spa_vdev_state_enter(spa, SCL_ALLOC);
2704
2705                         /*
2706                          * Check to see if the config has changed.
2707                          */
2708                         if (error || generation != spa->spa_config_generation) {
2709                                 metaslab_group_activate(mg);
2710                                 if (error)
2711                                         return (spa_vdev_state_exit(spa,
2712                                             vd, error));
2713                                 (void) spa_vdev_state_exit(spa, vd, 0);
2714                                 goto top;
2715                         }
2716                         ASSERT0(tvd->vdev_stat.vs_alloc);
2717                 }
2718
2719                 /*
2720                  * Offline this device and reopen its top-level vdev.
2721                  * If the top-level vdev is a log device then just offline
2722                  * it. Otherwise, if this action results in the top-level
2723                  * vdev becoming unusable, undo it and fail the request.
2724                  */
2725                 vd->vdev_offline = B_TRUE;
2726                 vdev_reopen(tvd);
2727
2728                 if (!tvd->vdev_islog && vd->vdev_aux == NULL &&
2729                     vdev_is_dead(tvd)) {
2730                         vd->vdev_offline = B_FALSE;
2731                         vdev_reopen(tvd);
2732                         return (spa_vdev_state_exit(spa, NULL, EBUSY));
2733                 }
2734
2735                 /*
2736                  * Add the device back into the metaslab rotor so that
2737                  * once we online the device it's open for business.
2738                  */
2739                 if (tvd->vdev_islog && mg != NULL)
2740                         metaslab_group_activate(mg);
2741         }
2742
2743         vd->vdev_tmpoffline = !!(flags & ZFS_OFFLINE_TEMPORARY);
2744
2745         return (spa_vdev_state_exit(spa, vd, 0));
2746 }
2747
2748 int
2749 vdev_offline(spa_t *spa, uint64_t guid, uint64_t flags)
2750 {
2751         int error;
2752
2753         mutex_enter(&spa->spa_vdev_top_lock);
2754         error = vdev_offline_locked(spa, guid, flags);
2755         mutex_exit(&spa->spa_vdev_top_lock);
2756
2757         return (error);
2758 }
2759
2760 /*
2761  * Clear the error counts associated with this vdev.  Unlike vdev_online() and
2762  * vdev_offline(), we assume the spa config is locked.  We also clear all
2763  * children.  If 'vd' is NULL, then the user wants to clear all vdevs.
2764  */
2765 void
2766 vdev_clear(spa_t *spa, vdev_t *vd)
2767 {
2768         vdev_t *rvd = spa->spa_root_vdev;
2769
2770         ASSERT(spa_config_held(spa, SCL_STATE_ALL, RW_WRITER) == SCL_STATE_ALL);
2771
2772         if (vd == NULL)
2773                 vd = rvd;
2774
2775         vd->vdev_stat.vs_read_errors = 0;
2776         vd->vdev_stat.vs_write_errors = 0;
2777         vd->vdev_stat.vs_checksum_errors = 0;
2778
2779         for (int c = 0; c < vd->vdev_children; c++)
2780                 vdev_clear(spa, vd->vdev_child[c]);
2781
2782         if (vd == rvd) {
2783                 for (int c = 0; c < spa->spa_l2cache.sav_count; c++)
2784                         vdev_clear(spa, spa->spa_l2cache.sav_vdevs[c]);
2785
2786                 for (int c = 0; c < spa->spa_spares.sav_count; c++)
2787                         vdev_clear(spa, spa->spa_spares.sav_vdevs[c]);
2788         }
2789
2790         /*
2791          * If we're in the FAULTED state or have experienced failed I/O, then
2792          * clear the persistent state and attempt to reopen the device.  We
2793          * also mark the vdev config dirty, so that the new faulted state is
2794          * written out to disk.
2795          */
2796         if (vd->vdev_faulted || vd->vdev_degraded ||
2797             !vdev_readable(vd) || !vdev_writeable(vd)) {
2798
2799                 /*
2800                  * When reopening in reponse to a clear event, it may be due to
2801                  * a fmadm repair request.  In this case, if the device is
2802                  * still broken, we want to still post the ereport again.
2803                  */
2804                 vd->vdev_forcefault = B_TRUE;
2805
2806                 vd->vdev_faulted = vd->vdev_degraded = 0ULL;
2807                 vd->vdev_cant_read = B_FALSE;
2808                 vd->vdev_cant_write = B_FALSE;
2809
2810                 vdev_reopen(vd == rvd ? rvd : vd->vdev_top);
2811
2812                 vd->vdev_forcefault = B_FALSE;
2813
2814                 if (vd != rvd && vdev_writeable(vd->vdev_top))
2815                         vdev_state_dirty(vd->vdev_top);
2816
2817                 if (vd->vdev_aux == NULL && !vdev_is_dead(vd))
2818                         spa_async_request(spa, SPA_ASYNC_RESILVER);
2819
2820                 spa_event_notify(spa, vd, ESC_ZFS_VDEV_CLEAR);
2821         }
2822
2823         /*
2824          * When clearing a FMA-diagnosed fault, we always want to
2825          * unspare the device, as we assume that the original spare was
2826          * done in response to the FMA fault.
2827          */
2828         if (!vdev_is_dead(vd) && vd->vdev_parent != NULL &&
2829             vd->vdev_parent->vdev_ops == &vdev_spare_ops &&
2830             vd->vdev_parent->vdev_child[0] == vd)
2831                 vd->vdev_unspare = B_TRUE;
2832 }
2833
2834 boolean_t
2835 vdev_is_dead(vdev_t *vd)
2836 {
2837         /*
2838          * Holes and missing devices are always considered "dead".
2839          * This simplifies the code since we don't have to check for
2840          * these types of devices in the various code paths.
2841          * Instead we rely on the fact that we skip over dead devices
2842          * before issuing I/O to them.
2843          */
2844         return (vd->vdev_state < VDEV_STATE_DEGRADED || vd->vdev_ishole ||
2845             vd->vdev_ops == &vdev_missing_ops);
2846 }
2847
2848 boolean_t
2849 vdev_readable(vdev_t *vd)
2850 {
2851         return (!vdev_is_dead(vd) && !vd->vdev_cant_read);
2852 }
2853
2854 boolean_t
2855 vdev_writeable(vdev_t *vd)
2856 {
2857         return (!vdev_is_dead(vd) && !vd->vdev_cant_write);
2858 }
2859
2860 boolean_t
2861 vdev_allocatable(vdev_t *vd)
2862 {
2863         uint64_t state = vd->vdev_state;
2864
2865         /*
2866          * We currently allow allocations from vdevs which may be in the
2867          * process of reopening (i.e. VDEV_STATE_CLOSED). If the device
2868          * fails to reopen then we'll catch it later when we're holding
2869          * the proper locks.  Note that we have to get the vdev state
2870          * in a local variable because although it changes atomically,
2871          * we're asking two separate questions about it.
2872          */
2873         return (!(state < VDEV_STATE_DEGRADED && state != VDEV_STATE_CLOSED) &&
2874             !vd->vdev_cant_write && !vd->vdev_ishole &&
2875             vd->vdev_mg->mg_initialized);
2876 }
2877
2878 boolean_t
2879 vdev_accessible(vdev_t *vd, zio_t *zio)
2880 {
2881         ASSERT(zio->io_vd == vd);
2882
2883         if (vdev_is_dead(vd) || vd->vdev_remove_wanted)
2884                 return (B_FALSE);
2885
2886         if (zio->io_type == ZIO_TYPE_READ)
2887                 return (!vd->vdev_cant_read);
2888
2889         if (zio->io_type == ZIO_TYPE_WRITE)
2890                 return (!vd->vdev_cant_write);
2891
2892         return (B_TRUE);
2893 }
2894
2895 /*
2896  * Get statistics for the given vdev.
2897  */
2898 void
2899 vdev_get_stats(vdev_t *vd, vdev_stat_t *vs)
2900 {
2901         spa_t *spa = vd->vdev_spa;
2902         vdev_t *rvd = spa->spa_root_vdev;
2903         vdev_t *tvd = vd->vdev_top;
2904
2905         ASSERT(spa_config_held(spa, SCL_ALL, RW_READER) != 0);
2906
2907         mutex_enter(&vd->vdev_stat_lock);
2908         bcopy(&vd->vdev_stat, vs, sizeof (*vs));
2909         vs->vs_timestamp = gethrtime() - vs->vs_timestamp;
2910         vs->vs_state = vd->vdev_state;
2911         vs->vs_rsize = vdev_get_min_asize(vd);
2912         if (vd->vdev_ops->vdev_op_leaf)
2913                 vs->vs_rsize += VDEV_LABEL_START_SIZE + VDEV_LABEL_END_SIZE;
2914         /*
2915          * Report expandable space on top-level, non-auxillary devices only.
2916          * The expandable space is reported in terms of metaslab sized units
2917          * since that determines how much space the pool can expand.
2918          */
2919         if (vd->vdev_aux == NULL && tvd != NULL && vd->vdev_max_asize != 0) {
2920                 vs->vs_esize = P2ALIGN(vd->vdev_max_asize - vd->vdev_asize,
2921                     1ULL << tvd->vdev_ms_shift);
2922         }
2923         vs->vs_configured_ashift = vd->vdev_top != NULL
2924             ? vd->vdev_top->vdev_ashift : vd->vdev_ashift;
2925         vs->vs_logical_ashift = vd->vdev_logical_ashift;
2926         vs->vs_physical_ashift = vd->vdev_physical_ashift;
2927         if (vd->vdev_aux == NULL && vd == vd->vdev_top && !vd->vdev_ishole) {
2928                 vs->vs_fragmentation = vd->vdev_mg->mg_fragmentation;
2929         }
2930
2931         /*
2932          * If we're getting stats on the root vdev, aggregate the I/O counts
2933          * over all top-level vdevs (i.e. the direct children of the root).
2934          */
2935         if (vd == rvd) {
2936                 for (int c = 0; c < rvd->vdev_children; c++) {
2937                         vdev_t *cvd = rvd->vdev_child[c];
2938                         vdev_stat_t *cvs = &cvd->vdev_stat;
2939
2940                         for (int t = 0; t < ZIO_TYPES; t++) {
2941                                 vs->vs_ops[t] += cvs->vs_ops[t];
2942                                 vs->vs_bytes[t] += cvs->vs_bytes[t];
2943                         }
2944                         cvs->vs_scan_removing = cvd->vdev_removing;
2945                 }
2946         }
2947         mutex_exit(&vd->vdev_stat_lock);
2948 }
2949
2950 void
2951 vdev_clear_stats(vdev_t *vd)
2952 {
2953         mutex_enter(&vd->vdev_stat_lock);
2954         vd->vdev_stat.vs_space = 0;
2955         vd->vdev_stat.vs_dspace = 0;
2956         vd->vdev_stat.vs_alloc = 0;
2957         mutex_exit(&vd->vdev_stat_lock);
2958 }
2959
2960 void
2961 vdev_scan_stat_init(vdev_t *vd)
2962 {
2963         vdev_stat_t *vs = &vd->vdev_stat;
2964
2965         for (int c = 0; c < vd->vdev_children; c++)
2966                 vdev_scan_stat_init(vd->vdev_child[c]);
2967
2968         mutex_enter(&vd->vdev_stat_lock);
2969         vs->vs_scan_processed = 0;
2970         mutex_exit(&vd->vdev_stat_lock);
2971 }
2972
2973 void
2974 vdev_stat_update(zio_t *zio, uint64_t psize)
2975 {
2976         spa_t *spa = zio->io_spa;
2977         vdev_t *rvd = spa->spa_root_vdev;
2978         vdev_t *vd = zio->io_vd ? zio->io_vd : rvd;
2979         vdev_t *pvd;
2980         uint64_t txg = zio->io_txg;
2981         vdev_stat_t *vs = &vd->vdev_stat;
2982         zio_type_t type = zio->io_type;
2983         int flags = zio->io_flags;
2984
2985         /*
2986          * If this i/o is a gang leader, it didn't do any actual work.
2987          */
2988         if (zio->io_gang_tree)
2989                 return;
2990
2991         if (zio->io_error == 0) {
2992                 /*
2993                  * If this is a root i/o, don't count it -- we've already
2994                  * counted the top-level vdevs, and vdev_get_stats() will
2995                  * aggregate them when asked.  This reduces contention on
2996                  * the root vdev_stat_lock and implicitly handles blocks
2997                  * that compress away to holes, for which there is no i/o.
2998                  * (Holes never create vdev children, so all the counters
2999                  * remain zero, which is what we want.)
3000                  *
3001                  * Note: this only applies to successful i/o (io_error == 0)
3002                  * because unlike i/o counts, errors are not additive.
3003                  * When reading a ditto block, for example, failure of
3004                  * one top-level vdev does not imply a root-level error.
3005                  */
3006                 if (vd == rvd)
3007                         return;
3008
3009                 ASSERT(vd == zio->io_vd);
3010
3011                 if (flags & ZIO_FLAG_IO_BYPASS)
3012                         return;
3013
3014                 mutex_enter(&vd->vdev_stat_lock);
3015
3016                 if (flags & ZIO_FLAG_IO_REPAIR) {
3017                         if (flags & ZIO_FLAG_SCAN_THREAD) {
3018                                 dsl_scan_phys_t *scn_phys =
3019                                     &spa->spa_dsl_pool->dp_scan->scn_phys;
3020                                 uint64_t *processed = &scn_phys->scn_processed;
3021
3022                                 /* XXX cleanup? */
3023                                 if (vd->vdev_ops->vdev_op_leaf)
3024                                         atomic_add_64(processed, psize);
3025                                 vs->vs_scan_processed += psize;
3026                         }
3027
3028                         if (flags & ZIO_FLAG_SELF_HEAL)
3029                                 vs->vs_self_healed += psize;
3030                 }
3031
3032                 vs->vs_ops[type]++;
3033                 vs->vs_bytes[type] += psize;
3034
3035                 mutex_exit(&vd->vdev_stat_lock);
3036                 return;
3037         }
3038
3039         if (flags & ZIO_FLAG_SPECULATIVE)
3040                 return;
3041
3042         /*
3043          * If this is an I/O error that is going to be retried, then ignore the
3044          * error.  Otherwise, the user may interpret B_FAILFAST I/O errors as
3045          * hard errors, when in reality they can happen for any number of
3046          * innocuous reasons (bus resets, MPxIO link failure, etc).
3047          */
3048         if (zio->io_error == EIO &&
3049             !(zio->io_flags & ZIO_FLAG_IO_RETRY))
3050                 return;
3051
3052         /*
3053          * Intent logs writes won't propagate their error to the root
3054          * I/O so don't mark these types of failures as pool-level
3055          * errors.
3056          */
3057         if (zio->io_vd == NULL && (zio->io_flags & ZIO_FLAG_DONT_PROPAGATE))
3058                 return;
3059
3060         mutex_enter(&vd->vdev_stat_lock);
3061         if (type == ZIO_TYPE_READ && !vdev_is_dead(vd)) {
3062                 if (zio->io_error == ECKSUM)
3063                         vs->vs_checksum_errors++;
3064                 else
3065                         vs->vs_read_errors++;
3066         }
3067         if (type == ZIO_TYPE_WRITE && !vdev_is_dead(vd))
3068                 vs->vs_write_errors++;
3069         mutex_exit(&vd->vdev_stat_lock);
3070
3071         if (type == ZIO_TYPE_WRITE && txg != 0 &&
3072             (!(flags & ZIO_FLAG_IO_REPAIR) ||
3073             (flags & ZIO_FLAG_SCAN_THREAD) ||
3074             spa->spa_claiming)) {
3075                 /*
3076                  * This is either a normal write (not a repair), or it's
3077                  * a repair induced by the scrub thread, or it's a repair
3078                  * made by zil_claim() during spa_load() in the first txg.
3079                  * In the normal case, we commit the DTL change in the same
3080                  * txg as the block was born.  In the scrub-induced repair
3081                  * case, we know that scrubs run in first-pass syncing context,
3082                  * so we commit the DTL change in spa_syncing_txg(spa).
3083                  * In the zil_claim() case, we commit in spa_first_txg(spa).
3084                  *
3085                  * We currently do not make DTL entries for failed spontaneous
3086                  * self-healing writes triggered by normal (non-scrubbing)
3087                  * reads, because we have no transactional context in which to
3088                  * do so -- and it's not clear that it'd be desirable anyway.
3089                  */
3090                 if (vd->vdev_ops->vdev_op_leaf) {
3091                         uint64_t commit_txg = txg;
3092                         if (flags & ZIO_FLAG_SCAN_THREAD) {
3093                                 ASSERT(flags & ZIO_FLAG_IO_REPAIR);
3094                                 ASSERT(spa_sync_pass(spa) == 1);
3095                                 vdev_dtl_dirty(vd, DTL_SCRUB, txg, 1);
3096                                 commit_txg = spa_syncing_txg(spa);
3097                         } else if (spa->spa_claiming) {
3098                                 ASSERT(flags & ZIO_FLAG_IO_REPAIR);
3099                                 commit_txg = spa_first_txg(spa);
3100                         }
3101                         ASSERT(commit_txg >= spa_syncing_txg(spa));
3102                         if (vdev_dtl_contains(vd, DTL_MISSING, txg, 1))
3103                                 return;
3104                         for (pvd = vd; pvd != rvd; pvd = pvd->vdev_parent)
3105                                 vdev_dtl_dirty(pvd, DTL_PARTIAL, txg, 1);
3106                         vdev_dirty(vd->vdev_top, VDD_DTL, vd, commit_txg);
3107                 }
3108                 if (vd != rvd)
3109                         vdev_dtl_dirty(vd, DTL_MISSING, txg, 1);
3110         }
3111 }
3112
3113 /*
3114  * Update the in-core space usage stats for this vdev, its metaslab class,
3115  * and the root vdev.
3116  */
3117 void
3118 vdev_space_update(vdev_t *vd, int64_t alloc_delta, int64_t defer_delta,
3119     int64_t space_delta)
3120 {
3121         int64_t dspace_delta = space_delta;
3122         spa_t *spa = vd->vdev_spa;
3123         vdev_t *rvd = spa->spa_root_vdev;
3124         metaslab_group_t *mg = vd->vdev_mg;
3125         metaslab_class_t *mc = mg ? mg->mg_class : NULL;
3126
3127         ASSERT(vd == vd->vdev_top);
3128
3129         /*
3130          * Apply the inverse of the psize-to-asize (ie. RAID-Z) space-expansion
3131          * factor.  We must calculate this here and not at the root vdev
3132          * because the root vdev's psize-to-asize is simply the max of its
3133          * childrens', thus not accurate enough for us.
3134          */
3135         ASSERT((dspace_delta & (SPA_MINBLOCKSIZE-1)) == 0);
3136         ASSERT(vd->vdev_deflate_ratio != 0 || vd->vdev_isl2cache);
3137         dspace_delta = (dspace_delta >> SPA_MINBLOCKSHIFT) *
3138             vd->vdev_deflate_ratio;
3139
3140         mutex_enter(&vd->vdev_stat_lock);
3141         vd->vdev_stat.vs_alloc += alloc_delta;
3142         vd->vdev_stat.vs_space += space_delta;
3143         vd->vdev_stat.vs_dspace += dspace_delta;
3144         mutex_exit(&vd->vdev_stat_lock);
3145
3146         if (mc == spa_normal_class(spa)) {
3147                 mutex_enter(&rvd->vdev_stat_lock);
3148                 rvd->vdev_stat.vs_alloc += alloc_delta;
3149                 rvd->vdev_stat.vs_space += space_delta;
3150                 rvd->vdev_stat.vs_dspace += dspace_delta;
3151                 mutex_exit(&rvd->vdev_stat_lock);
3152         }
3153
3154         if (mc != NULL) {
3155                 ASSERT(rvd == vd->vdev_parent);
3156                 ASSERT(vd->vdev_ms_count != 0);
3157
3158                 metaslab_class_space_update(mc,
3159                     alloc_delta, defer_delta, space_delta, dspace_delta);
3160         }
3161 }
3162
3163 /*
3164  * Mark a top-level vdev's config as dirty, placing it on the dirty list
3165  * so that it will be written out next time the vdev configuration is synced.
3166  * If the root vdev is specified (vdev_top == NULL), dirty all top-level vdevs.
3167  */
3168 void
3169 vdev_config_dirty(vdev_t *vd)
3170 {
3171         spa_t *spa = vd->vdev_spa;
3172         vdev_t *rvd = spa->spa_root_vdev;
3173         int c;
3174
3175         ASSERT(spa_writeable(spa));
3176
3177         /*
3178          * If this is an aux vdev (as with l2cache and spare devices), then we
3179          * update the vdev config manually and set the sync flag.
3180          */
3181         if (vd->vdev_aux != NULL) {
3182                 spa_aux_vdev_t *sav = vd->vdev_aux;
3183                 nvlist_t **aux;
3184                 uint_t naux;
3185
3186                 for (c = 0; c < sav->sav_count; c++) {
3187                         if (sav->sav_vdevs[c] == vd)
3188                                 break;
3189                 }
3190
3191                 if (c == sav->sav_count) {
3192                         /*
3193                          * We're being removed.  There's nothing more to do.
3194                          */
3195                         ASSERT(sav->sav_sync == B_TRUE);
3196                         return;
3197                 }
3198
3199                 sav->sav_sync = B_TRUE;
3200
3201                 if (nvlist_lookup_nvlist_array(sav->sav_config,
3202                     ZPOOL_CONFIG_L2CACHE, &aux, &naux) != 0) {
3203                         VERIFY(nvlist_lookup_nvlist_array(sav->sav_config,
3204                             ZPOOL_CONFIG_SPARES, &aux, &naux) == 0);
3205                 }
3206
3207                 ASSERT(c < naux);
3208
3209                 /*
3210                  * Setting the nvlist in the middle if the array is a little
3211                  * sketchy, but it will work.
3212                  */
3213                 nvlist_free(aux[c]);
3214                 aux[c] = vdev_config_generate(spa, vd, B_TRUE, 0);
3215
3216                 return;
3217         }
3218
3219         /*
3220          * The dirty list is protected by the SCL_CONFIG lock.  The caller
3221          * must either hold SCL_CONFIG as writer, or must be the sync thread
3222          * (which holds SCL_CONFIG as reader).  There's only one sync thread,
3223          * so this is sufficient to ensure mutual exclusion.
3224          */
3225         ASSERT(spa_config_held(spa, SCL_CONFIG, RW_WRITER) ||
3226             (dsl_pool_sync_context(spa_get_dsl(spa)) &&
3227             spa_config_held(spa, SCL_CONFIG, RW_READER)));
3228
3229         if (vd == rvd) {
3230                 for (c = 0; c < rvd->vdev_children; c++)
3231                         vdev_config_dirty(rvd->vdev_child[c]);
3232         } else {
3233                 ASSERT(vd == vd->vdev_top);
3234
3235                 if (!list_link_active(&vd->vdev_config_dirty_node) &&
3236                     !vd->vdev_ishole)
3237                         list_insert_head(&spa->spa_config_dirty_list, vd);
3238         }
3239 }
3240
3241 void
3242 vdev_config_clean(vdev_t *vd)
3243 {
3244         spa_t *spa = vd->vdev_spa;
3245
3246         ASSERT(spa_config_held(spa, SCL_CONFIG, RW_WRITER) ||
3247             (dsl_pool_sync_context(spa_get_dsl(spa)) &&
3248             spa_config_held(spa, SCL_CONFIG, RW_READER)));
3249
3250         ASSERT(list_link_active(&vd->vdev_config_dirty_node));
3251         list_remove(&spa->spa_config_dirty_list, vd);
3252 }
3253
3254 /*
3255  * Mark a top-level vdev's state as dirty, so that the next pass of
3256  * spa_sync() can convert this into vdev_config_dirty().  We distinguish
3257  * the state changes from larger config changes because they require
3258  * much less locking, and are often needed for administrative actions.
3259  */
3260 void
3261 vdev_state_dirty(vdev_t *vd)
3262 {
3263         spa_t *spa = vd->vdev_spa;
3264
3265         ASSERT(spa_writeable(spa));
3266         ASSERT(vd == vd->vdev_top);
3267
3268         /*
3269          * The state list is protected by the SCL_STATE lock.  The caller
3270          * must either hold SCL_STATE as writer, or must be the sync thread
3271          * (which holds SCL_STATE as reader).  There's only one sync thread,
3272          * so this is sufficient to ensure mutual exclusion.
3273          */
3274         ASSERT(spa_config_held(spa, SCL_STATE, RW_WRITER) ||
3275             (dsl_pool_sync_context(spa_get_dsl(spa)) &&
3276             spa_config_held(spa, SCL_STATE, RW_READER)));
3277
3278         if (!list_link_active(&vd->vdev_state_dirty_node) && !vd->vdev_ishole)
3279                 list_insert_head(&spa->spa_state_dirty_list, vd);
3280 }
3281
3282 void
3283 vdev_state_clean(vdev_t *vd)
3284 {
3285         spa_t *spa = vd->vdev_spa;
3286
3287         ASSERT(spa_config_held(spa, SCL_STATE, RW_WRITER) ||
3288             (dsl_pool_sync_context(spa_get_dsl(spa)) &&
3289             spa_config_held(spa, SCL_STATE, RW_READER)));
3290
3291         ASSERT(list_link_active(&vd->vdev_state_dirty_node));
3292         list_remove(&spa->spa_state_dirty_list, vd);
3293 }
3294
3295 /*
3296  * Propagate vdev state up from children to parent.
3297  */
3298 void
3299 vdev_propagate_state(vdev_t *vd)
3300 {
3301         spa_t *spa = vd->vdev_spa;
3302         vdev_t *rvd = spa->spa_root_vdev;
3303         int degraded = 0, faulted = 0;
3304         int corrupted = 0;
3305         vdev_t *child;
3306
3307         if (vd->vdev_children > 0) {
3308                 for (int c = 0; c < vd->vdev_children; c++) {
3309                         child = vd->vdev_child[c];
3310
3311                         /*
3312                          * Don't factor holes into the decision.
3313                          */
3314                         if (child->vdev_ishole)
3315                                 continue;
3316
3317                         if (!vdev_readable(child) ||
3318                             (!vdev_writeable(child) && spa_writeable(spa))) {
3319                                 /*
3320                                  * Root special: if there is a top-level log
3321                                  * device, treat the root vdev as if it were
3322                                  * degraded.
3323                                  */
3324                                 if (child->vdev_islog && vd == rvd)
3325                                         degraded++;
3326                                 else
3327                                         faulted++;
3328                         } else if (child->vdev_state <= VDEV_STATE_DEGRADED) {
3329                                 degraded++;
3330                         }
3331
3332                         if (child->vdev_stat.vs_aux == VDEV_AUX_CORRUPT_DATA)
3333                                 corrupted++;
3334                 }
3335
3336                 vd->vdev_ops->vdev_op_state_change(vd, faulted, degraded);
3337
3338                 /*
3339                  * Root special: if there is a top-level vdev that cannot be
3340                  * opened due to corrupted metadata, then propagate the root
3341                  * vdev's aux state as 'corrupt' rather than 'insufficient
3342                  * replicas'.
3343                  */
3344                 if (corrupted && vd == rvd &&
3345                     rvd->vdev_state == VDEV_STATE_CANT_OPEN)
3346                         vdev_set_state(rvd, B_FALSE, VDEV_STATE_CANT_OPEN,
3347                             VDEV_AUX_CORRUPT_DATA);
3348         }
3349
3350         if (vd->vdev_parent)
3351                 vdev_propagate_state(vd->vdev_parent);
3352 }
3353
3354 /*
3355  * Set a vdev's state.  If this is during an open, we don't update the parent
3356  * state, because we're in the process of opening children depth-first.
3357  * Otherwise, we propagate the change to the parent.
3358  *
3359  * If this routine places a device in a faulted state, an appropriate ereport is
3360  * generated.
3361  */
3362 void
3363 vdev_set_state(vdev_t *vd, boolean_t isopen, vdev_state_t state, vdev_aux_t aux)
3364 {
3365         uint64_t save_state;
3366         spa_t *spa = vd->vdev_spa;
3367
3368         if (state == vd->vdev_state) {
3369                 vd->vdev_stat.vs_aux = aux;
3370                 return;
3371         }
3372
3373         save_state = vd->vdev_state;
3374
3375         vd->vdev_state = state;
3376         vd->vdev_stat.vs_aux = aux;
3377
3378         /*
3379          * If we are setting the vdev state to anything but an open state, then
3380          * always close the underlying device unless the device has requested
3381          * a delayed close (i.e. we're about to remove or fault the device).
3382          * Otherwise, we keep accessible but invalid devices open forever.
3383          * We don't call vdev_close() itself, because that implies some extra
3384          * checks (offline, etc) that we don't want here.  This is limited to
3385          * leaf devices, because otherwise closing the device will affect other
3386          * children.
3387          */
3388         if (!vd->vdev_delayed_close && vdev_is_dead(vd) &&
3389             vd->vdev_ops->vdev_op_leaf)
3390                 vd->vdev_ops->vdev_op_close(vd);
3391
3392         if (vd->vdev_removed &&
3393             state == VDEV_STATE_CANT_OPEN &&
3394             (aux == VDEV_AUX_OPEN_FAILED || vd->vdev_checkremove)) {
3395                 /*
3396                  * If the previous state is set to VDEV_STATE_REMOVED, then this
3397                  * device was previously marked removed and someone attempted to
3398                  * reopen it.  If this failed due to a nonexistent device, then
3399                  * keep the device in the REMOVED state.  We also let this be if
3400                  * it is one of our special test online cases, which is only
3401                  * attempting to online the device and shouldn't generate an FMA
3402                  * fault.
3403                  */
3404                 vd->vdev_state = VDEV_STATE_REMOVED;
3405                 vd->vdev_stat.vs_aux = VDEV_AUX_NONE;
3406         } else if (state == VDEV_STATE_REMOVED) {
3407                 vd->vdev_removed = B_TRUE;
3408         } else if (state == VDEV_STATE_CANT_OPEN) {
3409                 /*
3410                  * If we fail to open a vdev during an import or recovery, we
3411                  * mark it as "not available", which signifies that it was
3412                  * never there to begin with.  Failure to open such a device
3413                  * is not considered an error.
3414                  */
3415                 if ((spa_load_state(spa) == SPA_LOAD_IMPORT ||
3416                     spa_load_state(spa) == SPA_LOAD_RECOVER) &&
3417                     vd->vdev_ops->vdev_op_leaf)
3418                         vd->vdev_not_present = 1;
3419
3420                 /*
3421                  * Post the appropriate ereport.  If the 'prevstate' field is
3422                  * set to something other than VDEV_STATE_UNKNOWN, it indicates
3423                  * that this is part of a vdev_reopen().  In this case, we don't
3424                  * want to post the ereport if the device was already in the
3425                  * CANT_OPEN state beforehand.
3426                  *
3427                  * If the 'checkremove' flag is set, then this is an attempt to
3428                  * online the device in response to an insertion event.  If we
3429                  * hit this case, then we have detected an insertion event for a
3430                  * faulted or offline device that wasn't in the removed state.
3431                  * In this scenario, we don't post an ereport because we are
3432                  * about to replace the device, or attempt an online with
3433                  * vdev_forcefault, which will generate the fault for us.
3434                  */
3435                 if ((vd->vdev_prevstate != state || vd->vdev_forcefault) &&
3436                     !vd->vdev_not_present && !vd->vdev_checkremove &&
3437                     vd != spa->spa_root_vdev) {
3438                         const char *class;
3439
3440                         switch (aux) {
3441                         case VDEV_AUX_OPEN_FAILED:
3442                                 class = FM_EREPORT_ZFS_DEVICE_OPEN_FAILED;
3443                                 break;
3444                         case VDEV_AUX_CORRUPT_DATA:
3445                                 class = FM_EREPORT_ZFS_DEVICE_CORRUPT_DATA;
3446                                 break;
3447                         case VDEV_AUX_NO_REPLICAS:
3448                                 class = FM_EREPORT_ZFS_DEVICE_NO_REPLICAS;
3449                                 break;
3450                         case VDEV_AUX_BAD_GUID_SUM:
3451                                 class = FM_EREPORT_ZFS_DEVICE_BAD_GUID_SUM;
3452                                 break;
3453                         case VDEV_AUX_TOO_SMALL:
3454                                 class = FM_EREPORT_ZFS_DEVICE_TOO_SMALL;
3455                                 break;
3456                         case VDEV_AUX_BAD_LABEL:
3457                                 class = FM_EREPORT_ZFS_DEVICE_BAD_LABEL;
3458                                 break;
3459                         default:
3460                                 class = FM_EREPORT_ZFS_DEVICE_UNKNOWN;
3461                         }
3462
3463                         zfs_ereport_post(class, spa, vd, NULL, save_state, 0);
3464                 }
3465
3466                 /* Erase any notion of persistent removed state */
3467                 vd->vdev_removed = B_FALSE;
3468         } else {
3469                 vd->vdev_removed = B_FALSE;
3470         }
3471
3472         /*
3473         * Notify the fmd of the state change.  Be verbose and post
3474         * notifications even for stuff that's not important; the fmd agent can
3475         * sort it out.  Don't emit state change events for non-leaf vdevs since
3476         * they can't change state on their own.  The FMD can check their state
3477         * if it wants to when it sees that a leaf vdev had a state change.
3478         */
3479         if (vd->vdev_ops->vdev_op_leaf)
3480                 zfs_post_state_change(spa, vd);
3481
3482         if (!isopen && vd->vdev_parent)
3483                 vdev_propagate_state(vd->vdev_parent);
3484 }
3485
3486 /*
3487  * Check the vdev configuration to ensure that it's capable of supporting
3488  * a root pool. We do not support partial configuration.
3489  * In addition, only a single top-level vdev is allowed.
3490  *
3491  * FreeBSD does not have above limitations.
3492  */
3493 boolean_t
3494 vdev_is_bootable(vdev_t *vd)
3495 {
3496 #ifdef illumos
3497         if (!vd->vdev_ops->vdev_op_leaf) {
3498                 char *vdev_type = vd->vdev_ops->vdev_op_type;
3499
3500                 if (strcmp(vdev_type, VDEV_TYPE_ROOT) == 0 &&
3501                     vd->vdev_children > 1) {
3502                         return (B_FALSE);
3503                 } else if (strcmp(vdev_type, VDEV_TYPE_MISSING) == 0) {
3504                         return (B_FALSE);
3505                 }
3506         }
3507
3508         for (int c = 0; c < vd->vdev_children; c++) {
3509                 if (!vdev_is_bootable(vd->vdev_child[c]))
3510                         return (B_FALSE);
3511         }
3512 #endif  /* illumos */
3513         return (B_TRUE);
3514 }
3515
3516 /*
3517  * Load the state from the original vdev tree (ovd) which
3518  * we've retrieved from the MOS config object. If the original
3519  * vdev was offline or faulted then we transfer that state to the
3520  * device in the current vdev tree (nvd).
3521  */
3522 void
3523 vdev_load_log_state(vdev_t *nvd, vdev_t *ovd)
3524 {
3525         spa_t *spa = nvd->vdev_spa;
3526
3527         ASSERT(nvd->vdev_top->vdev_islog);
3528         ASSERT(spa_config_held(spa, SCL_STATE_ALL, RW_WRITER) == SCL_STATE_ALL);
3529         ASSERT3U(nvd->vdev_guid, ==, ovd->vdev_guid);
3530
3531         for (int c = 0; c < nvd->vdev_children; c++)
3532                 vdev_load_log_state(nvd->vdev_child[c], ovd->vdev_child[c]);
3533
3534         if (nvd->vdev_ops->vdev_op_leaf) {
3535                 /*
3536                  * Restore the persistent vdev state
3537                  */
3538                 nvd->vdev_offline = ovd->vdev_offline;
3539                 nvd->vdev_faulted = ovd->vdev_faulted;
3540                 nvd->vdev_degraded = ovd->vdev_degraded;
3541                 nvd->vdev_removed = ovd->vdev_removed;
3542         }
3543 }
3544
3545 /*
3546  * Determine if a log device has valid content.  If the vdev was
3547  * removed or faulted in the MOS config then we know that
3548  * the content on the log device has already been written to the pool.
3549  */
3550 boolean_t
3551 vdev_log_state_valid(vdev_t *vd)
3552 {
3553         if (vd->vdev_ops->vdev_op_leaf && !vd->vdev_faulted &&
3554             !vd->vdev_removed)
3555                 return (B_TRUE);
3556
3557         for (int c = 0; c < vd->vdev_children; c++)
3558                 if (vdev_log_state_valid(vd->vdev_child[c]))
3559                         return (B_TRUE);
3560
3561         return (B_FALSE);
3562 }
3563
3564 /*
3565  * Expand a vdev if possible.
3566  */
3567 void
3568 vdev_expand(vdev_t *vd, uint64_t txg)
3569 {
3570         ASSERT(vd->vdev_top == vd);
3571         ASSERT(spa_config_held(vd->vdev_spa, SCL_ALL, RW_WRITER) == SCL_ALL);
3572
3573         if ((vd->vdev_asize >> vd->vdev_ms_shift) > vd->vdev_ms_count) {
3574                 VERIFY(vdev_metaslab_init(vd, txg) == 0);
3575                 vdev_config_dirty(vd);
3576         }
3577 }
3578
3579 /*
3580  * Split a vdev.
3581  */
3582 void
3583 vdev_split(vdev_t *vd)
3584 {
3585         vdev_t *cvd, *pvd = vd->vdev_parent;
3586
3587         vdev_remove_child(pvd, vd);
3588         vdev_compact_children(pvd);
3589
3590         cvd = pvd->vdev_child[0];
3591         if (pvd->vdev_children == 1) {
3592                 vdev_remove_parent(cvd);
3593                 cvd->vdev_splitting = B_TRUE;
3594         }
3595         vdev_propagate_state(cvd);
3596 }
3597
3598 void
3599 vdev_deadman(vdev_t *vd)
3600 {
3601         for (int c = 0; c < vd->vdev_children; c++) {
3602                 vdev_t *cvd = vd->vdev_child[c];
3603
3604                 vdev_deadman(cvd);
3605         }
3606
3607         if (vd->vdev_ops->vdev_op_leaf) {
3608                 vdev_queue_t *vq = &vd->vdev_queue;
3609
3610                 mutex_enter(&vq->vq_lock);
3611                 if (avl_numnodes(&vq->vq_active_tree) > 0) {
3612                         spa_t *spa = vd->vdev_spa;
3613                         zio_t *fio;
3614                         uint64_t delta;
3615
3616                         /*
3617                          * Look at the head of all the pending queues,
3618                          * if any I/O has been outstanding for longer than
3619                          * the spa_deadman_synctime we panic the system.
3620                          */
3621                         fio = avl_first(&vq->vq_active_tree);
3622                         delta = gethrtime() - fio->io_timestamp;
3623                         if (delta > spa_deadman_synctime(spa)) {
3624                                 zfs_dbgmsg("SLOW IO: zio timestamp %lluns, "
3625                                     "delta %lluns, last io %lluns",
3626                                     fio->io_timestamp, delta,
3627                                     vq->vq_io_complete_ts);
3628                                 fm_panic("I/O to pool '%s' appears to be "
3629                                     "hung on vdev guid %llu at '%s'.",
3630                                     spa_name(spa),
3631                                     (long long unsigned int) vd->vdev_guid,
3632                                     vd->vdev_path);
3633                         }
3634                 }
3635                 mutex_exit(&vq->vq_lock);
3636         }
3637 }