]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c
MFV r275696: file 5.21.
[FreeBSD/FreeBSD.git] / sys / cddl / contrib / opensolaris / uts / common / fs / zfs / spa_misc.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  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  * Copyright (c) 2011, 2014 by Delphix. All rights reserved.
24  * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
25  * Copyright 2013 Martin Matuska <mm@FreeBSD.org>. All rights reserved.
26  */
27
28 #include <sys/zfs_context.h>
29 #include <sys/spa_impl.h>
30 #include <sys/spa_boot.h>
31 #include <sys/zio.h>
32 #include <sys/zio_checksum.h>
33 #include <sys/zio_compress.h>
34 #include <sys/dmu.h>
35 #include <sys/dmu_tx.h>
36 #include <sys/zap.h>
37 #include <sys/zil.h>
38 #include <sys/vdev_impl.h>
39 #include <sys/metaslab.h>
40 #include <sys/uberblock_impl.h>
41 #include <sys/txg.h>
42 #include <sys/avl.h>
43 #include <sys/unique.h>
44 #include <sys/dsl_pool.h>
45 #include <sys/dsl_dir.h>
46 #include <sys/dsl_prop.h>
47 #include <sys/dsl_scan.h>
48 #include <sys/fs/zfs.h>
49 #include <sys/metaslab_impl.h>
50 #include <sys/arc.h>
51 #include <sys/ddt.h>
52 #include "zfs_prop.h"
53 #include "zfeature_common.h"
54
55 /*
56  * SPA locking
57  *
58  * There are four basic locks for managing spa_t structures:
59  *
60  * spa_namespace_lock (global mutex)
61  *
62  *      This lock must be acquired to do any of the following:
63  *
64  *              - Lookup a spa_t by name
65  *              - Add or remove a spa_t from the namespace
66  *              - Increase spa_refcount from non-zero
67  *              - Check if spa_refcount is zero
68  *              - Rename a spa_t
69  *              - add/remove/attach/detach devices
70  *              - Held for the duration of create/destroy/import/export
71  *
72  *      It does not need to handle recursion.  A create or destroy may
73  *      reference objects (files or zvols) in other pools, but by
74  *      definition they must have an existing reference, and will never need
75  *      to lookup a spa_t by name.
76  *
77  * spa_refcount (per-spa refcount_t protected by mutex)
78  *
79  *      This reference count keep track of any active users of the spa_t.  The
80  *      spa_t cannot be destroyed or freed while this is non-zero.  Internally,
81  *      the refcount is never really 'zero' - opening a pool implicitly keeps
82  *      some references in the DMU.  Internally we check against spa_minref, but
83  *      present the image of a zero/non-zero value to consumers.
84  *
85  * spa_config_lock[] (per-spa array of rwlocks)
86  *
87  *      This protects the spa_t from config changes, and must be held in
88  *      the following circumstances:
89  *
90  *              - RW_READER to perform I/O to the spa
91  *              - RW_WRITER to change the vdev config
92  *
93  * The locking order is fairly straightforward:
94  *
95  *              spa_namespace_lock      ->      spa_refcount
96  *
97  *      The namespace lock must be acquired to increase the refcount from 0
98  *      or to check if it is zero.
99  *
100  *              spa_refcount            ->      spa_config_lock[]
101  *
102  *      There must be at least one valid reference on the spa_t to acquire
103  *      the config lock.
104  *
105  *              spa_namespace_lock      ->      spa_config_lock[]
106  *
107  *      The namespace lock must always be taken before the config lock.
108  *
109  *
110  * The spa_namespace_lock can be acquired directly and is globally visible.
111  *
112  * The namespace is manipulated using the following functions, all of which
113  * require the spa_namespace_lock to be held.
114  *
115  *      spa_lookup()            Lookup a spa_t by name.
116  *
117  *      spa_add()               Create a new spa_t in the namespace.
118  *
119  *      spa_remove()            Remove a spa_t from the namespace.  This also
120  *                              frees up any memory associated with the spa_t.
121  *
122  *      spa_next()              Returns the next spa_t in the system, or the
123  *                              first if NULL is passed.
124  *
125  *      spa_evict_all()         Shutdown and remove all spa_t structures in
126  *                              the system.
127  *
128  *      spa_guid_exists()       Determine whether a pool/device guid exists.
129  *
130  * The spa_refcount is manipulated using the following functions:
131  *
132  *      spa_open_ref()          Adds a reference to the given spa_t.  Must be
133  *                              called with spa_namespace_lock held if the
134  *                              refcount is currently zero.
135  *
136  *      spa_close()             Remove a reference from the spa_t.  This will
137  *                              not free the spa_t or remove it from the
138  *                              namespace.  No locking is required.
139  *
140  *      spa_refcount_zero()     Returns true if the refcount is currently
141  *                              zero.  Must be called with spa_namespace_lock
142  *                              held.
143  *
144  * The spa_config_lock[] is an array of rwlocks, ordered as follows:
145  * SCL_CONFIG > SCL_STATE > SCL_ALLOC > SCL_ZIO > SCL_FREE > SCL_VDEV.
146  * spa_config_lock[] is manipulated with spa_config_{enter,exit,held}().
147  *
148  * To read the configuration, it suffices to hold one of these locks as reader.
149  * To modify the configuration, you must hold all locks as writer.  To modify
150  * vdev state without altering the vdev tree's topology (e.g. online/offline),
151  * you must hold SCL_STATE and SCL_ZIO as writer.
152  *
153  * We use these distinct config locks to avoid recursive lock entry.
154  * For example, spa_sync() (which holds SCL_CONFIG as reader) induces
155  * block allocations (SCL_ALLOC), which may require reading space maps
156  * from disk (dmu_read() -> zio_read() -> SCL_ZIO).
157  *
158  * The spa config locks cannot be normal rwlocks because we need the
159  * ability to hand off ownership.  For example, SCL_ZIO is acquired
160  * by the issuing thread and later released by an interrupt thread.
161  * They do, however, obey the usual write-wanted semantics to prevent
162  * writer (i.e. system administrator) starvation.
163  *
164  * The lock acquisition rules are as follows:
165  *
166  * SCL_CONFIG
167  *      Protects changes to the vdev tree topology, such as vdev
168  *      add/remove/attach/detach.  Protects the dirty config list
169  *      (spa_config_dirty_list) and the set of spares and l2arc devices.
170  *
171  * SCL_STATE
172  *      Protects changes to pool state and vdev state, such as vdev
173  *      online/offline/fault/degrade/clear.  Protects the dirty state list
174  *      (spa_state_dirty_list) and global pool state (spa_state).
175  *
176  * SCL_ALLOC
177  *      Protects changes to metaslab groups and classes.
178  *      Held as reader by metaslab_alloc() and metaslab_claim().
179  *
180  * SCL_ZIO
181  *      Held by bp-level zios (those which have no io_vd upon entry)
182  *      to prevent changes to the vdev tree.  The bp-level zio implicitly
183  *      protects all of its vdev child zios, which do not hold SCL_ZIO.
184  *
185  * SCL_FREE
186  *      Protects changes to metaslab groups and classes.
187  *      Held as reader by metaslab_free().  SCL_FREE is distinct from
188  *      SCL_ALLOC, and lower than SCL_ZIO, so that we can safely free
189  *      blocks in zio_done() while another i/o that holds either
190  *      SCL_ALLOC or SCL_ZIO is waiting for this i/o to complete.
191  *
192  * SCL_VDEV
193  *      Held as reader to prevent changes to the vdev tree during trivial
194  *      inquiries such as bp_get_dsize().  SCL_VDEV is distinct from the
195  *      other locks, and lower than all of them, to ensure that it's safe
196  *      to acquire regardless of caller context.
197  *
198  * In addition, the following rules apply:
199  *
200  * (a)  spa_props_lock protects pool properties, spa_config and spa_config_list.
201  *      The lock ordering is SCL_CONFIG > spa_props_lock.
202  *
203  * (b)  I/O operations on leaf vdevs.  For any zio operation that takes
204  *      an explicit vdev_t argument -- such as zio_ioctl(), zio_read_phys(),
205  *      or zio_write_phys() -- the caller must ensure that the config cannot
206  *      cannot change in the interim, and that the vdev cannot be reopened.
207  *      SCL_STATE as reader suffices for both.
208  *
209  * The vdev configuration is protected by spa_vdev_enter() / spa_vdev_exit().
210  *
211  *      spa_vdev_enter()        Acquire the namespace lock and the config lock
212  *                              for writing.
213  *
214  *      spa_vdev_exit()         Release the config lock, wait for all I/O
215  *                              to complete, sync the updated configs to the
216  *                              cache, and release the namespace lock.
217  *
218  * vdev state is protected by spa_vdev_state_enter() / spa_vdev_state_exit().
219  * Like spa_vdev_enter/exit, these are convenience wrappers -- the actual
220  * locking is, always, based on spa_namespace_lock and spa_config_lock[].
221  *
222  * spa_rename() is also implemented within this file since it requires
223  * manipulation of the namespace.
224  */
225
226 static avl_tree_t spa_namespace_avl;
227 kmutex_t spa_namespace_lock;
228 static kcondvar_t spa_namespace_cv;
229 static int spa_active_count;
230 int spa_max_replication_override = SPA_DVAS_PER_BP;
231
232 static kmutex_t spa_spare_lock;
233 static avl_tree_t spa_spare_avl;
234 static kmutex_t spa_l2cache_lock;
235 static avl_tree_t spa_l2cache_avl;
236
237 kmem_cache_t *spa_buffer_pool;
238 int spa_mode_global;
239
240 #ifdef ZFS_DEBUG
241 /* Everything except dprintf and spa is on by default in debug builds */
242 int zfs_flags = ~(ZFS_DEBUG_DPRINTF | ZFS_DEBUG_SPA);
243 #else
244 int zfs_flags = 0;
245 #endif
246
247 /*
248  * zfs_recover can be set to nonzero to attempt to recover from
249  * otherwise-fatal errors, typically caused by on-disk corruption.  When
250  * set, calls to zfs_panic_recover() will turn into warning messages.
251  * This should only be used as a last resort, as it typically results
252  * in leaked space, or worse.
253  */
254 boolean_t zfs_recover = B_FALSE;
255 SYSCTL_DECL(_vfs_zfs);
256 SYSCTL_INT(_vfs_zfs, OID_AUTO, recover, CTLFLAG_RDTUN, &zfs_recover, 0,
257     "Try to recover from otherwise-fatal errors.");
258
259 static int
260 sysctl_vfs_zfs_debug_flags(SYSCTL_HANDLER_ARGS)
261 {
262         int err, val;
263
264         val = zfs_flags;
265         err = sysctl_handle_int(oidp, &val, 0, req);
266         if (err != 0 || req->newptr == NULL)
267                 return (err);
268
269         /*
270          * ZFS_DEBUG_MODIFY must be enabled prior to boot so all
271          * arc buffers in the system have the necessary additional
272          * checksum data.  However, it is safe to disable at any
273          * time.
274          */
275         if (!(zfs_flags & ZFS_DEBUG_MODIFY))
276                 val &= ~ZFS_DEBUG_MODIFY;
277         zfs_flags = val;
278
279         return (0);
280 }
281 SYSCTL_PROC(_vfs_zfs, OID_AUTO, debug_flags,
282     CTLTYPE_UINT | CTLFLAG_MPSAFE | CTLFLAG_RWTUN, 0, sizeof(int),
283     sysctl_vfs_zfs_debug_flags, "IU", "Debug flags for ZFS testing.");
284
285 /*
286  * If destroy encounters an EIO while reading metadata (e.g. indirect
287  * blocks), space referenced by the missing metadata can not be freed.
288  * Normally this causes the background destroy to become "stalled", as
289  * it is unable to make forward progress.  While in this stalled state,
290  * all remaining space to free from the error-encountering filesystem is
291  * "temporarily leaked".  Set this flag to cause it to ignore the EIO,
292  * permanently leak the space from indirect blocks that can not be read,
293  * and continue to free everything else that it can.
294  *
295  * The default, "stalling" behavior is useful if the storage partially
296  * fails (i.e. some but not all i/os fail), and then later recovers.  In
297  * this case, we will be able to continue pool operations while it is
298  * partially failed, and when it recovers, we can continue to free the
299  * space, with no leaks.  However, note that this case is actually
300  * fairly rare.
301  *
302  * Typically pools either (a) fail completely (but perhaps temporarily,
303  * e.g. a top-level vdev going offline), or (b) have localized,
304  * permanent errors (e.g. disk returns the wrong data due to bit flip or
305  * firmware bug).  In case (a), this setting does not matter because the
306  * pool will be suspended and the sync thread will not be able to make
307  * forward progress regardless.  In case (b), because the error is
308  * permanent, the best we can do is leak the minimum amount of space,
309  * which is what setting this flag will do.  Therefore, it is reasonable
310  * for this flag to normally be set, but we chose the more conservative
311  * approach of not setting it, so that there is no possibility of
312  * leaking space in the "partial temporary" failure case.
313  */
314 boolean_t zfs_free_leak_on_eio = B_FALSE;
315
316 /*
317  * Expiration time in milliseconds. This value has two meanings. First it is
318  * used to determine when the spa_deadman() logic should fire. By default the
319  * spa_deadman() will fire if spa_sync() has not completed in 1000 seconds.
320  * Secondly, the value determines if an I/O is considered "hung". Any I/O that
321  * has not completed in zfs_deadman_synctime_ms is considered "hung" resulting
322  * in a system panic.
323  */
324 uint64_t zfs_deadman_synctime_ms = 1000000ULL;
325 SYSCTL_UQUAD(_vfs_zfs, OID_AUTO, deadman_synctime_ms, CTLFLAG_RDTUN,
326     &zfs_deadman_synctime_ms, 0,
327     "Stalled ZFS I/O expiration time in milliseconds");
328
329 /*
330  * Check time in milliseconds. This defines the frequency at which we check
331  * for hung I/O.
332  */
333 uint64_t zfs_deadman_checktime_ms = 5000ULL;
334 SYSCTL_UQUAD(_vfs_zfs, OID_AUTO, deadman_checktime_ms, CTLFLAG_RDTUN,
335     &zfs_deadman_checktime_ms, 0,
336     "Period of checks for stalled ZFS I/O in milliseconds");
337
338 /*
339  * Default value of -1 for zfs_deadman_enabled is resolved in
340  * zfs_deadman_init()
341  */
342 int zfs_deadman_enabled = -1;
343 SYSCTL_INT(_vfs_zfs, OID_AUTO, deadman_enabled, CTLFLAG_RDTUN,
344     &zfs_deadman_enabled, 0, "Kernel panic on stalled ZFS I/O");
345
346 /*
347  * The worst case is single-sector max-parity RAID-Z blocks, in which
348  * case the space requirement is exactly (VDEV_RAIDZ_MAXPARITY + 1)
349  * times the size; so just assume that.  Add to this the fact that
350  * we can have up to 3 DVAs per bp, and one more factor of 2 because
351  * the block may be dittoed with up to 3 DVAs by ddt_sync().  All together,
352  * the worst case is:
353  *     (VDEV_RAIDZ_MAXPARITY + 1) * SPA_DVAS_PER_BP * 2 == 24
354  */
355 int spa_asize_inflation = 24;
356 SYSCTL_INT(_vfs_zfs, OID_AUTO, spa_asize_inflation, CTLFLAG_RWTUN,
357     &spa_asize_inflation, 0, "Worst case inflation factor for single sector writes");
358
359 #ifndef illumos
360 #ifdef _KERNEL
361 static void
362 zfs_deadman_init()
363 {
364         /*
365          * If we are not i386 or amd64 or in a virtual machine,
366          * disable ZFS deadman thread by default
367          */
368         if (zfs_deadman_enabled == -1) {
369 #if defined(__amd64__) || defined(__i386__)
370                 zfs_deadman_enabled = (vm_guest == VM_GUEST_NO) ? 1 : 0;
371 #else
372                 zfs_deadman_enabled = 0;
373 #endif
374         }
375 }
376 #endif  /* _KERNEL */
377 #endif  /* !illumos */
378
379 /*
380  * Normally, we don't allow the last 3.2% (1/(2^spa_slop_shift)) of space in
381  * the pool to be consumed.  This ensures that we don't run the pool
382  * completely out of space, due to unaccounted changes (e.g. to the MOS).
383  * It also limits the worst-case time to allocate space.  If we have
384  * less than this amount of free space, most ZPL operations (e.g. write,
385  * create) will return ENOSPC.
386  *
387  * Certain operations (e.g. file removal, most administrative actions) can
388  * use half the slop space.  They will only return ENOSPC if less than half
389  * the slop space is free.  Typically, once the pool has less than the slop
390  * space free, the user will use these operations to free up space in the pool.
391  * These are the operations that call dsl_pool_adjustedsize() with the netfree
392  * argument set to TRUE.
393  *
394  * A very restricted set of operations are always permitted, regardless of
395  * the amount of free space.  These are the operations that call
396  * dsl_sync_task(ZFS_SPACE_CHECK_NONE), e.g. "zfs destroy".  If these
397  * operations result in a net increase in the amount of space used,
398  * it is possible to run the pool completely out of space, causing it to
399  * be permanently read-only.
400  *
401  * See also the comments in zfs_space_check_t.
402  */
403 int spa_slop_shift = 5;
404 SYSCTL_INT(_vfs_zfs, OID_AUTO, spa_slop_shift, CTLFLAG_RWTUN,
405     &spa_slop_shift, 0,
406     "Shift value of reserved space (1/(2^spa_slop_shift)).");
407
408 /*
409  * ==========================================================================
410  * SPA config locking
411  * ==========================================================================
412  */
413 static void
414 spa_config_lock_init(spa_t *spa)
415 {
416         for (int i = 0; i < SCL_LOCKS; i++) {
417                 spa_config_lock_t *scl = &spa->spa_config_lock[i];
418                 mutex_init(&scl->scl_lock, NULL, MUTEX_DEFAULT, NULL);
419                 cv_init(&scl->scl_cv, NULL, CV_DEFAULT, NULL);
420                 refcount_create_untracked(&scl->scl_count);
421                 scl->scl_writer = NULL;
422                 scl->scl_write_wanted = 0;
423         }
424 }
425
426 static void
427 spa_config_lock_destroy(spa_t *spa)
428 {
429         for (int i = 0; i < SCL_LOCKS; i++) {
430                 spa_config_lock_t *scl = &spa->spa_config_lock[i];
431                 mutex_destroy(&scl->scl_lock);
432                 cv_destroy(&scl->scl_cv);
433                 refcount_destroy(&scl->scl_count);
434                 ASSERT(scl->scl_writer == NULL);
435                 ASSERT(scl->scl_write_wanted == 0);
436         }
437 }
438
439 int
440 spa_config_tryenter(spa_t *spa, int locks, void *tag, krw_t rw)
441 {
442         for (int i = 0; i < SCL_LOCKS; i++) {
443                 spa_config_lock_t *scl = &spa->spa_config_lock[i];
444                 if (!(locks & (1 << i)))
445                         continue;
446                 mutex_enter(&scl->scl_lock);
447                 if (rw == RW_READER) {
448                         if (scl->scl_writer || scl->scl_write_wanted) {
449                                 mutex_exit(&scl->scl_lock);
450                                 spa_config_exit(spa, locks ^ (1 << i), tag);
451                                 return (0);
452                         }
453                 } else {
454                         ASSERT(scl->scl_writer != curthread);
455                         if (!refcount_is_zero(&scl->scl_count)) {
456                                 mutex_exit(&scl->scl_lock);
457                                 spa_config_exit(spa, locks ^ (1 << i), tag);
458                                 return (0);
459                         }
460                         scl->scl_writer = curthread;
461                 }
462                 (void) refcount_add(&scl->scl_count, tag);
463                 mutex_exit(&scl->scl_lock);
464         }
465         return (1);
466 }
467
468 void
469 spa_config_enter(spa_t *spa, int locks, void *tag, krw_t rw)
470 {
471         int wlocks_held = 0;
472
473         ASSERT3U(SCL_LOCKS, <, sizeof (wlocks_held) * NBBY);
474
475         for (int i = 0; i < SCL_LOCKS; i++) {
476                 spa_config_lock_t *scl = &spa->spa_config_lock[i];
477                 if (scl->scl_writer == curthread)
478                         wlocks_held |= (1 << i);
479                 if (!(locks & (1 << i)))
480                         continue;
481                 mutex_enter(&scl->scl_lock);
482                 if (rw == RW_READER) {
483                         while (scl->scl_writer || scl->scl_write_wanted) {
484                                 cv_wait(&scl->scl_cv, &scl->scl_lock);
485                         }
486                 } else {
487                         ASSERT(scl->scl_writer != curthread);
488                         while (!refcount_is_zero(&scl->scl_count)) {
489                                 scl->scl_write_wanted++;
490                                 cv_wait(&scl->scl_cv, &scl->scl_lock);
491                                 scl->scl_write_wanted--;
492                         }
493                         scl->scl_writer = curthread;
494                 }
495                 (void) refcount_add(&scl->scl_count, tag);
496                 mutex_exit(&scl->scl_lock);
497         }
498         ASSERT(wlocks_held <= locks);
499 }
500
501 void
502 spa_config_exit(spa_t *spa, int locks, void *tag)
503 {
504         for (int i = SCL_LOCKS - 1; i >= 0; i--) {
505                 spa_config_lock_t *scl = &spa->spa_config_lock[i];
506                 if (!(locks & (1 << i)))
507                         continue;
508                 mutex_enter(&scl->scl_lock);
509                 ASSERT(!refcount_is_zero(&scl->scl_count));
510                 if (refcount_remove(&scl->scl_count, tag) == 0) {
511                         ASSERT(scl->scl_writer == NULL ||
512                             scl->scl_writer == curthread);
513                         scl->scl_writer = NULL; /* OK in either case */
514                         cv_broadcast(&scl->scl_cv);
515                 }
516                 mutex_exit(&scl->scl_lock);
517         }
518 }
519
520 int
521 spa_config_held(spa_t *spa, int locks, krw_t rw)
522 {
523         int locks_held = 0;
524
525         for (int i = 0; i < SCL_LOCKS; i++) {
526                 spa_config_lock_t *scl = &spa->spa_config_lock[i];
527                 if (!(locks & (1 << i)))
528                         continue;
529                 if ((rw == RW_READER && !refcount_is_zero(&scl->scl_count)) ||
530                     (rw == RW_WRITER && scl->scl_writer == curthread))
531                         locks_held |= 1 << i;
532         }
533
534         return (locks_held);
535 }
536
537 /*
538  * ==========================================================================
539  * SPA namespace functions
540  * ==========================================================================
541  */
542
543 /*
544  * Lookup the named spa_t in the AVL tree.  The spa_namespace_lock must be held.
545  * Returns NULL if no matching spa_t is found.
546  */
547 spa_t *
548 spa_lookup(const char *name)
549 {
550         static spa_t search;    /* spa_t is large; don't allocate on stack */
551         spa_t *spa;
552         avl_index_t where;
553         char *cp;
554
555         ASSERT(MUTEX_HELD(&spa_namespace_lock));
556
557         (void) strlcpy(search.spa_name, name, sizeof (search.spa_name));
558
559         /*
560          * If it's a full dataset name, figure out the pool name and
561          * just use that.
562          */
563         cp = strpbrk(search.spa_name, "/@#");
564         if (cp != NULL)
565                 *cp = '\0';
566
567         spa = avl_find(&spa_namespace_avl, &search, &where);
568
569         return (spa);
570 }
571
572 /*
573  * Fires when spa_sync has not completed within zfs_deadman_synctime_ms.
574  * If the zfs_deadman_enabled flag is set then it inspects all vdev queues
575  * looking for potentially hung I/Os.
576  */
577 void
578 spa_deadman(void *arg)
579 {
580         spa_t *spa = arg;
581
582         /*
583          * Disable the deadman timer if the pool is suspended.
584          */
585         if (spa_suspended(spa)) {
586 #ifdef illumos
587                 VERIFY(cyclic_reprogram(spa->spa_deadman_cycid, CY_INFINITY));
588 #else
589                 /* Nothing.  just don't schedule any future callouts. */
590 #endif
591                 return;
592         }
593
594         zfs_dbgmsg("slow spa_sync: started %llu seconds ago, calls %llu",
595             (gethrtime() - spa->spa_sync_starttime) / NANOSEC,
596             ++spa->spa_deadman_calls);
597         if (zfs_deadman_enabled)
598                 vdev_deadman(spa->spa_root_vdev);
599 #ifdef __FreeBSD__
600 #ifdef _KERNEL
601         callout_schedule(&spa->spa_deadman_cycid,
602             hz * zfs_deadman_checktime_ms / MILLISEC);
603 #endif
604 #endif
605 }
606
607 /*
608  * Create an uninitialized spa_t with the given name.  Requires
609  * spa_namespace_lock.  The caller must ensure that the spa_t doesn't already
610  * exist by calling spa_lookup() first.
611  */
612 spa_t *
613 spa_add(const char *name, nvlist_t *config, const char *altroot)
614 {
615         spa_t *spa;
616         spa_config_dirent_t *dp;
617 #ifdef illumos
618         cyc_handler_t hdlr;
619         cyc_time_t when;
620 #endif
621
622         ASSERT(MUTEX_HELD(&spa_namespace_lock));
623
624         spa = kmem_zalloc(sizeof (spa_t), KM_SLEEP);
625
626         mutex_init(&spa->spa_async_lock, NULL, MUTEX_DEFAULT, NULL);
627         mutex_init(&spa->spa_errlist_lock, NULL, MUTEX_DEFAULT, NULL);
628         mutex_init(&spa->spa_errlog_lock, NULL, MUTEX_DEFAULT, NULL);
629         mutex_init(&spa->spa_history_lock, NULL, MUTEX_DEFAULT, NULL);
630         mutex_init(&spa->spa_proc_lock, NULL, MUTEX_DEFAULT, NULL);
631         mutex_init(&spa->spa_props_lock, NULL, MUTEX_DEFAULT, NULL);
632         mutex_init(&spa->spa_scrub_lock, NULL, MUTEX_DEFAULT, NULL);
633         mutex_init(&spa->spa_suspend_lock, NULL, MUTEX_DEFAULT, NULL);
634         mutex_init(&spa->spa_vdev_top_lock, NULL, MUTEX_DEFAULT, NULL);
635
636         cv_init(&spa->spa_async_cv, NULL, CV_DEFAULT, NULL);
637         cv_init(&spa->spa_proc_cv, NULL, CV_DEFAULT, NULL);
638         cv_init(&spa->spa_scrub_io_cv, NULL, CV_DEFAULT, NULL);
639         cv_init(&spa->spa_suspend_cv, NULL, CV_DEFAULT, NULL);
640
641         for (int t = 0; t < TXG_SIZE; t++)
642                 bplist_create(&spa->spa_free_bplist[t]);
643
644         (void) strlcpy(spa->spa_name, name, sizeof (spa->spa_name));
645         spa->spa_state = POOL_STATE_UNINITIALIZED;
646         spa->spa_freeze_txg = UINT64_MAX;
647         spa->spa_final_txg = UINT64_MAX;
648         spa->spa_load_max_txg = UINT64_MAX;
649         spa->spa_proc = &p0;
650         spa->spa_proc_state = SPA_PROC_NONE;
651
652 #ifdef illumos
653         hdlr.cyh_func = spa_deadman;
654         hdlr.cyh_arg = spa;
655         hdlr.cyh_level = CY_LOW_LEVEL;
656 #endif
657
658         spa->spa_deadman_synctime = MSEC2NSEC(zfs_deadman_synctime_ms);
659
660 #ifdef illumos
661         /*
662          * This determines how often we need to check for hung I/Os after
663          * the cyclic has already fired. Since checking for hung I/Os is
664          * an expensive operation we don't want to check too frequently.
665          * Instead wait for 5 seconds before checking again.
666          */
667         when.cyt_interval = MSEC2NSEC(zfs_deadman_checktime_ms);
668         when.cyt_when = CY_INFINITY;
669         mutex_enter(&cpu_lock);
670         spa->spa_deadman_cycid = cyclic_add(&hdlr, &when);
671         mutex_exit(&cpu_lock);
672 #else   /* !illumos */
673 #ifdef _KERNEL
674         callout_init(&spa->spa_deadman_cycid, CALLOUT_MPSAFE);
675 #endif
676 #endif
677         refcount_create(&spa->spa_refcount);
678         spa_config_lock_init(spa);
679
680         avl_add(&spa_namespace_avl, spa);
681
682         /*
683          * Set the alternate root, if there is one.
684          */
685         if (altroot) {
686                 spa->spa_root = spa_strdup(altroot);
687                 spa_active_count++;
688         }
689
690         /*
691          * Every pool starts with the default cachefile
692          */
693         list_create(&spa->spa_config_list, sizeof (spa_config_dirent_t),
694             offsetof(spa_config_dirent_t, scd_link));
695
696         dp = kmem_zalloc(sizeof (spa_config_dirent_t), KM_SLEEP);
697         dp->scd_path = altroot ? NULL : spa_strdup(spa_config_path);
698         list_insert_head(&spa->spa_config_list, dp);
699
700         VERIFY(nvlist_alloc(&spa->spa_load_info, NV_UNIQUE_NAME,
701             KM_SLEEP) == 0);
702
703         if (config != NULL) {
704                 nvlist_t *features;
705
706                 if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_FEATURES_FOR_READ,
707                     &features) == 0) {
708                         VERIFY(nvlist_dup(features, &spa->spa_label_features,
709                             0) == 0);
710                 }
711
712                 VERIFY(nvlist_dup(config, &spa->spa_config, 0) == 0);
713         }
714
715         if (spa->spa_label_features == NULL) {
716                 VERIFY(nvlist_alloc(&spa->spa_label_features, NV_UNIQUE_NAME,
717                     KM_SLEEP) == 0);
718         }
719
720         spa->spa_debug = ((zfs_flags & ZFS_DEBUG_SPA) != 0);
721
722         /*
723          * As a pool is being created, treat all features as disabled by
724          * setting SPA_FEATURE_DISABLED for all entries in the feature
725          * refcount cache.
726          */
727         for (int i = 0; i < SPA_FEATURES; i++) {
728                 spa->spa_feat_refcount_cache[i] = SPA_FEATURE_DISABLED;
729         }
730
731         return (spa);
732 }
733
734 /*
735  * Removes a spa_t from the namespace, freeing up any memory used.  Requires
736  * spa_namespace_lock.  This is called only after the spa_t has been closed and
737  * deactivated.
738  */
739 void
740 spa_remove(spa_t *spa)
741 {
742         spa_config_dirent_t *dp;
743
744         ASSERT(MUTEX_HELD(&spa_namespace_lock));
745         ASSERT(spa->spa_state == POOL_STATE_UNINITIALIZED);
746
747         nvlist_free(spa->spa_config_splitting);
748
749         avl_remove(&spa_namespace_avl, spa);
750         cv_broadcast(&spa_namespace_cv);
751
752         if (spa->spa_root) {
753                 spa_strfree(spa->spa_root);
754                 spa_active_count--;
755         }
756
757         while ((dp = list_head(&spa->spa_config_list)) != NULL) {
758                 list_remove(&spa->spa_config_list, dp);
759                 if (dp->scd_path != NULL)
760                         spa_strfree(dp->scd_path);
761                 kmem_free(dp, sizeof (spa_config_dirent_t));
762         }
763
764         list_destroy(&spa->spa_config_list);
765
766         nvlist_free(spa->spa_label_features);
767         nvlist_free(spa->spa_load_info);
768         spa_config_set(spa, NULL);
769
770 #ifdef illumos
771         mutex_enter(&cpu_lock);
772         if (spa->spa_deadman_cycid != CYCLIC_NONE)
773                 cyclic_remove(spa->spa_deadman_cycid);
774         mutex_exit(&cpu_lock);
775         spa->spa_deadman_cycid = CYCLIC_NONE;
776 #else   /* !illumos */
777 #ifdef _KERNEL
778         callout_drain(&spa->spa_deadman_cycid);
779 #endif
780 #endif
781
782         refcount_destroy(&spa->spa_refcount);
783
784         spa_config_lock_destroy(spa);
785
786         for (int t = 0; t < TXG_SIZE; t++)
787                 bplist_destroy(&spa->spa_free_bplist[t]);
788
789         cv_destroy(&spa->spa_async_cv);
790         cv_destroy(&spa->spa_proc_cv);
791         cv_destroy(&spa->spa_scrub_io_cv);
792         cv_destroy(&spa->spa_suspend_cv);
793
794         mutex_destroy(&spa->spa_async_lock);
795         mutex_destroy(&spa->spa_errlist_lock);
796         mutex_destroy(&spa->spa_errlog_lock);
797         mutex_destroy(&spa->spa_history_lock);
798         mutex_destroy(&spa->spa_proc_lock);
799         mutex_destroy(&spa->spa_props_lock);
800         mutex_destroy(&spa->spa_scrub_lock);
801         mutex_destroy(&spa->spa_suspend_lock);
802         mutex_destroy(&spa->spa_vdev_top_lock);
803
804         kmem_free(spa, sizeof (spa_t));
805 }
806
807 /*
808  * Given a pool, return the next pool in the namespace, or NULL if there is
809  * none.  If 'prev' is NULL, return the first pool.
810  */
811 spa_t *
812 spa_next(spa_t *prev)
813 {
814         ASSERT(MUTEX_HELD(&spa_namespace_lock));
815
816         if (prev)
817                 return (AVL_NEXT(&spa_namespace_avl, prev));
818         else
819                 return (avl_first(&spa_namespace_avl));
820 }
821
822 /*
823  * ==========================================================================
824  * SPA refcount functions
825  * ==========================================================================
826  */
827
828 /*
829  * Add a reference to the given spa_t.  Must have at least one reference, or
830  * have the namespace lock held.
831  */
832 void
833 spa_open_ref(spa_t *spa, void *tag)
834 {
835         ASSERT(refcount_count(&spa->spa_refcount) >= spa->spa_minref ||
836             MUTEX_HELD(&spa_namespace_lock));
837         (void) refcount_add(&spa->spa_refcount, tag);
838 }
839
840 /*
841  * Remove a reference to the given spa_t.  Must have at least one reference, or
842  * have the namespace lock held.
843  */
844 void
845 spa_close(spa_t *spa, void *tag)
846 {
847         ASSERT(refcount_count(&spa->spa_refcount) > spa->spa_minref ||
848             MUTEX_HELD(&spa_namespace_lock));
849         (void) refcount_remove(&spa->spa_refcount, tag);
850 }
851
852 /*
853  * Check to see if the spa refcount is zero.  Must be called with
854  * spa_namespace_lock held.  We really compare against spa_minref, which is the
855  * number of references acquired when opening a pool
856  */
857 boolean_t
858 spa_refcount_zero(spa_t *spa)
859 {
860         ASSERT(MUTEX_HELD(&spa_namespace_lock));
861
862         return (refcount_count(&spa->spa_refcount) == spa->spa_minref);
863 }
864
865 /*
866  * ==========================================================================
867  * SPA spare and l2cache tracking
868  * ==========================================================================
869  */
870
871 /*
872  * Hot spares and cache devices are tracked using the same code below,
873  * for 'auxiliary' devices.
874  */
875
876 typedef struct spa_aux {
877         uint64_t        aux_guid;
878         uint64_t        aux_pool;
879         avl_node_t      aux_avl;
880         int             aux_count;
881 } spa_aux_t;
882
883 static int
884 spa_aux_compare(const void *a, const void *b)
885 {
886         const spa_aux_t *sa = a;
887         const spa_aux_t *sb = b;
888
889         if (sa->aux_guid < sb->aux_guid)
890                 return (-1);
891         else if (sa->aux_guid > sb->aux_guid)
892                 return (1);
893         else
894                 return (0);
895 }
896
897 void
898 spa_aux_add(vdev_t *vd, avl_tree_t *avl)
899 {
900         avl_index_t where;
901         spa_aux_t search;
902         spa_aux_t *aux;
903
904         search.aux_guid = vd->vdev_guid;
905         if ((aux = avl_find(avl, &search, &where)) != NULL) {
906                 aux->aux_count++;
907         } else {
908                 aux = kmem_zalloc(sizeof (spa_aux_t), KM_SLEEP);
909                 aux->aux_guid = vd->vdev_guid;
910                 aux->aux_count = 1;
911                 avl_insert(avl, aux, where);
912         }
913 }
914
915 void
916 spa_aux_remove(vdev_t *vd, avl_tree_t *avl)
917 {
918         spa_aux_t search;
919         spa_aux_t *aux;
920         avl_index_t where;
921
922         search.aux_guid = vd->vdev_guid;
923         aux = avl_find(avl, &search, &where);
924
925         ASSERT(aux != NULL);
926
927         if (--aux->aux_count == 0) {
928                 avl_remove(avl, aux);
929                 kmem_free(aux, sizeof (spa_aux_t));
930         } else if (aux->aux_pool == spa_guid(vd->vdev_spa)) {
931                 aux->aux_pool = 0ULL;
932         }
933 }
934
935 boolean_t
936 spa_aux_exists(uint64_t guid, uint64_t *pool, int *refcnt, avl_tree_t *avl)
937 {
938         spa_aux_t search, *found;
939
940         search.aux_guid = guid;
941         found = avl_find(avl, &search, NULL);
942
943         if (pool) {
944                 if (found)
945                         *pool = found->aux_pool;
946                 else
947                         *pool = 0ULL;
948         }
949
950         if (refcnt) {
951                 if (found)
952                         *refcnt = found->aux_count;
953                 else
954                         *refcnt = 0;
955         }
956
957         return (found != NULL);
958 }
959
960 void
961 spa_aux_activate(vdev_t *vd, avl_tree_t *avl)
962 {
963         spa_aux_t search, *found;
964         avl_index_t where;
965
966         search.aux_guid = vd->vdev_guid;
967         found = avl_find(avl, &search, &where);
968         ASSERT(found != NULL);
969         ASSERT(found->aux_pool == 0ULL);
970
971         found->aux_pool = spa_guid(vd->vdev_spa);
972 }
973
974 /*
975  * Spares are tracked globally due to the following constraints:
976  *
977  *      - A spare may be part of multiple pools.
978  *      - A spare may be added to a pool even if it's actively in use within
979  *        another pool.
980  *      - A spare in use in any pool can only be the source of a replacement if
981  *        the target is a spare in the same pool.
982  *
983  * We keep track of all spares on the system through the use of a reference
984  * counted AVL tree.  When a vdev is added as a spare, or used as a replacement
985  * spare, then we bump the reference count in the AVL tree.  In addition, we set
986  * the 'vdev_isspare' member to indicate that the device is a spare (active or
987  * inactive).  When a spare is made active (used to replace a device in the
988  * pool), we also keep track of which pool its been made a part of.
989  *
990  * The 'spa_spare_lock' protects the AVL tree.  These functions are normally
991  * called under the spa_namespace lock as part of vdev reconfiguration.  The
992  * separate spare lock exists for the status query path, which does not need to
993  * be completely consistent with respect to other vdev configuration changes.
994  */
995
996 static int
997 spa_spare_compare(const void *a, const void *b)
998 {
999         return (spa_aux_compare(a, b));
1000 }
1001
1002 void
1003 spa_spare_add(vdev_t *vd)
1004 {
1005         mutex_enter(&spa_spare_lock);
1006         ASSERT(!vd->vdev_isspare);
1007         spa_aux_add(vd, &spa_spare_avl);
1008         vd->vdev_isspare = B_TRUE;
1009         mutex_exit(&spa_spare_lock);
1010 }
1011
1012 void
1013 spa_spare_remove(vdev_t *vd)
1014 {
1015         mutex_enter(&spa_spare_lock);
1016         ASSERT(vd->vdev_isspare);
1017         spa_aux_remove(vd, &spa_spare_avl);
1018         vd->vdev_isspare = B_FALSE;
1019         mutex_exit(&spa_spare_lock);
1020 }
1021
1022 boolean_t
1023 spa_spare_exists(uint64_t guid, uint64_t *pool, int *refcnt)
1024 {
1025         boolean_t found;
1026
1027         mutex_enter(&spa_spare_lock);
1028         found = spa_aux_exists(guid, pool, refcnt, &spa_spare_avl);
1029         mutex_exit(&spa_spare_lock);
1030
1031         return (found);
1032 }
1033
1034 void
1035 spa_spare_activate(vdev_t *vd)
1036 {
1037         mutex_enter(&spa_spare_lock);
1038         ASSERT(vd->vdev_isspare);
1039         spa_aux_activate(vd, &spa_spare_avl);
1040         mutex_exit(&spa_spare_lock);
1041 }
1042
1043 /*
1044  * Level 2 ARC devices are tracked globally for the same reasons as spares.
1045  * Cache devices currently only support one pool per cache device, and so
1046  * for these devices the aux reference count is currently unused beyond 1.
1047  */
1048
1049 static int
1050 spa_l2cache_compare(const void *a, const void *b)
1051 {
1052         return (spa_aux_compare(a, b));
1053 }
1054
1055 void
1056 spa_l2cache_add(vdev_t *vd)
1057 {
1058         mutex_enter(&spa_l2cache_lock);
1059         ASSERT(!vd->vdev_isl2cache);
1060         spa_aux_add(vd, &spa_l2cache_avl);
1061         vd->vdev_isl2cache = B_TRUE;
1062         mutex_exit(&spa_l2cache_lock);
1063 }
1064
1065 void
1066 spa_l2cache_remove(vdev_t *vd)
1067 {
1068         mutex_enter(&spa_l2cache_lock);
1069         ASSERT(vd->vdev_isl2cache);
1070         spa_aux_remove(vd, &spa_l2cache_avl);
1071         vd->vdev_isl2cache = B_FALSE;
1072         mutex_exit(&spa_l2cache_lock);
1073 }
1074
1075 boolean_t
1076 spa_l2cache_exists(uint64_t guid, uint64_t *pool)
1077 {
1078         boolean_t found;
1079
1080         mutex_enter(&spa_l2cache_lock);
1081         found = spa_aux_exists(guid, pool, NULL, &spa_l2cache_avl);
1082         mutex_exit(&spa_l2cache_lock);
1083
1084         return (found);
1085 }
1086
1087 void
1088 spa_l2cache_activate(vdev_t *vd)
1089 {
1090         mutex_enter(&spa_l2cache_lock);
1091         ASSERT(vd->vdev_isl2cache);
1092         spa_aux_activate(vd, &spa_l2cache_avl);
1093         mutex_exit(&spa_l2cache_lock);
1094 }
1095
1096 /*
1097  * ==========================================================================
1098  * SPA vdev locking
1099  * ==========================================================================
1100  */
1101
1102 /*
1103  * Lock the given spa_t for the purpose of adding or removing a vdev.
1104  * Grabs the global spa_namespace_lock plus the spa config lock for writing.
1105  * It returns the next transaction group for the spa_t.
1106  */
1107 uint64_t
1108 spa_vdev_enter(spa_t *spa)
1109 {
1110         mutex_enter(&spa->spa_vdev_top_lock);
1111         mutex_enter(&spa_namespace_lock);
1112         return (spa_vdev_config_enter(spa));
1113 }
1114
1115 /*
1116  * Internal implementation for spa_vdev_enter().  Used when a vdev
1117  * operation requires multiple syncs (i.e. removing a device) while
1118  * keeping the spa_namespace_lock held.
1119  */
1120 uint64_t
1121 spa_vdev_config_enter(spa_t *spa)
1122 {
1123         ASSERT(MUTEX_HELD(&spa_namespace_lock));
1124
1125         spa_config_enter(spa, SCL_ALL, spa, RW_WRITER);
1126
1127         return (spa_last_synced_txg(spa) + 1);
1128 }
1129
1130 /*
1131  * Used in combination with spa_vdev_config_enter() to allow the syncing
1132  * of multiple transactions without releasing the spa_namespace_lock.
1133  */
1134 void
1135 spa_vdev_config_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error, char *tag)
1136 {
1137         ASSERT(MUTEX_HELD(&spa_namespace_lock));
1138
1139         int config_changed = B_FALSE;
1140
1141         ASSERT(txg > spa_last_synced_txg(spa));
1142
1143         spa->spa_pending_vdev = NULL;
1144
1145         /*
1146          * Reassess the DTLs.
1147          */
1148         vdev_dtl_reassess(spa->spa_root_vdev, 0, 0, B_FALSE);
1149
1150         if (error == 0 && !list_is_empty(&spa->spa_config_dirty_list)) {
1151                 config_changed = B_TRUE;
1152                 spa->spa_config_generation++;
1153         }
1154
1155         /*
1156          * Verify the metaslab classes.
1157          */
1158         ASSERT(metaslab_class_validate(spa_normal_class(spa)) == 0);
1159         ASSERT(metaslab_class_validate(spa_log_class(spa)) == 0);
1160
1161         spa_config_exit(spa, SCL_ALL, spa);
1162
1163         /*
1164          * Panic the system if the specified tag requires it.  This
1165          * is useful for ensuring that configurations are updated
1166          * transactionally.
1167          */
1168         if (zio_injection_enabled)
1169                 zio_handle_panic_injection(spa, tag, 0);
1170
1171         /*
1172          * Note: this txg_wait_synced() is important because it ensures
1173          * that there won't be more than one config change per txg.
1174          * This allows us to use the txg as the generation number.
1175          */
1176         if (error == 0)
1177                 txg_wait_synced(spa->spa_dsl_pool, txg);
1178
1179         if (vd != NULL) {
1180                 ASSERT(!vd->vdev_detached || vd->vdev_dtl_sm == NULL);
1181                 spa_config_enter(spa, SCL_ALL, spa, RW_WRITER);
1182                 vdev_free(vd);
1183                 spa_config_exit(spa, SCL_ALL, spa);
1184         }
1185
1186         /*
1187          * If the config changed, update the config cache.
1188          */
1189         if (config_changed)
1190                 spa_config_sync(spa, B_FALSE, B_TRUE);
1191 }
1192
1193 /*
1194  * Unlock the spa_t after adding or removing a vdev.  Besides undoing the
1195  * locking of spa_vdev_enter(), we also want make sure the transactions have
1196  * synced to disk, and then update the global configuration cache with the new
1197  * information.
1198  */
1199 int
1200 spa_vdev_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error)
1201 {
1202         spa_vdev_config_exit(spa, vd, txg, error, FTAG);
1203         mutex_exit(&spa_namespace_lock);
1204         mutex_exit(&spa->spa_vdev_top_lock);
1205
1206         return (error);
1207 }
1208
1209 /*
1210  * Lock the given spa_t for the purpose of changing vdev state.
1211  */
1212 void
1213 spa_vdev_state_enter(spa_t *spa, int oplocks)
1214 {
1215         int locks = SCL_STATE_ALL | oplocks;
1216
1217         /*
1218          * Root pools may need to read of the underlying devfs filesystem
1219          * when opening up a vdev.  Unfortunately if we're holding the
1220          * SCL_ZIO lock it will result in a deadlock when we try to issue
1221          * the read from the root filesystem.  Instead we "prefetch"
1222          * the associated vnodes that we need prior to opening the
1223          * underlying devices and cache them so that we can prevent
1224          * any I/O when we are doing the actual open.
1225          */
1226         if (spa_is_root(spa)) {
1227                 int low = locks & ~(SCL_ZIO - 1);
1228                 int high = locks & ~low;
1229
1230                 spa_config_enter(spa, high, spa, RW_WRITER);
1231                 vdev_hold(spa->spa_root_vdev);
1232                 spa_config_enter(spa, low, spa, RW_WRITER);
1233         } else {
1234                 spa_config_enter(spa, locks, spa, RW_WRITER);
1235         }
1236         spa->spa_vdev_locks = locks;
1237 }
1238
1239 int
1240 spa_vdev_state_exit(spa_t *spa, vdev_t *vd, int error)
1241 {
1242         boolean_t config_changed = B_FALSE;
1243
1244         if (vd != NULL || error == 0)
1245                 vdev_dtl_reassess(vd ? vd->vdev_top : spa->spa_root_vdev,
1246                     0, 0, B_FALSE);
1247
1248         if (vd != NULL) {
1249                 vdev_state_dirty(vd->vdev_top);
1250                 config_changed = B_TRUE;
1251                 spa->spa_config_generation++;
1252         }
1253
1254         if (spa_is_root(spa))
1255                 vdev_rele(spa->spa_root_vdev);
1256
1257         ASSERT3U(spa->spa_vdev_locks, >=, SCL_STATE_ALL);
1258         spa_config_exit(spa, spa->spa_vdev_locks, spa);
1259
1260         /*
1261          * If anything changed, wait for it to sync.  This ensures that,
1262          * from the system administrator's perspective, zpool(1M) commands
1263          * are synchronous.  This is important for things like zpool offline:
1264          * when the command completes, you expect no further I/O from ZFS.
1265          */
1266         if (vd != NULL)
1267                 txg_wait_synced(spa->spa_dsl_pool, 0);
1268
1269         /*
1270          * If the config changed, update the config cache.
1271          */
1272         if (config_changed) {
1273                 mutex_enter(&spa_namespace_lock);
1274                 spa_config_sync(spa, B_FALSE, B_TRUE);
1275                 mutex_exit(&spa_namespace_lock);
1276         }
1277
1278         return (error);
1279 }
1280
1281 /*
1282  * ==========================================================================
1283  * Miscellaneous functions
1284  * ==========================================================================
1285  */
1286
1287 void
1288 spa_activate_mos_feature(spa_t *spa, const char *feature, dmu_tx_t *tx)
1289 {
1290         if (!nvlist_exists(spa->spa_label_features, feature)) {
1291                 fnvlist_add_boolean(spa->spa_label_features, feature);
1292                 /*
1293                  * When we are creating the pool (tx_txg==TXG_INITIAL), we can't
1294                  * dirty the vdev config because lock SCL_CONFIG is not held.
1295                  * Thankfully, in this case we don't need to dirty the config
1296                  * because it will be written out anyway when we finish
1297                  * creating the pool.
1298                  */
1299                 if (tx->tx_txg != TXG_INITIAL)
1300                         vdev_config_dirty(spa->spa_root_vdev);
1301         }
1302 }
1303
1304 void
1305 spa_deactivate_mos_feature(spa_t *spa, const char *feature)
1306 {
1307         if (nvlist_remove_all(spa->spa_label_features, feature) == 0)
1308                 vdev_config_dirty(spa->spa_root_vdev);
1309 }
1310
1311 /*
1312  * Rename a spa_t.
1313  */
1314 int
1315 spa_rename(const char *name, const char *newname)
1316 {
1317         spa_t *spa;
1318         int err;
1319
1320         /*
1321          * Lookup the spa_t and grab the config lock for writing.  We need to
1322          * actually open the pool so that we can sync out the necessary labels.
1323          * It's OK to call spa_open() with the namespace lock held because we
1324          * allow recursive calls for other reasons.
1325          */
1326         mutex_enter(&spa_namespace_lock);
1327         if ((err = spa_open(name, &spa, FTAG)) != 0) {
1328                 mutex_exit(&spa_namespace_lock);
1329                 return (err);
1330         }
1331
1332         spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
1333
1334         avl_remove(&spa_namespace_avl, spa);
1335         (void) strlcpy(spa->spa_name, newname, sizeof (spa->spa_name));
1336         avl_add(&spa_namespace_avl, spa);
1337
1338         /*
1339          * Sync all labels to disk with the new names by marking the root vdev
1340          * dirty and waiting for it to sync.  It will pick up the new pool name
1341          * during the sync.
1342          */
1343         vdev_config_dirty(spa->spa_root_vdev);
1344
1345         spa_config_exit(spa, SCL_ALL, FTAG);
1346
1347         txg_wait_synced(spa->spa_dsl_pool, 0);
1348
1349         /*
1350          * Sync the updated config cache.
1351          */
1352         spa_config_sync(spa, B_FALSE, B_TRUE);
1353
1354         spa_close(spa, FTAG);
1355
1356         mutex_exit(&spa_namespace_lock);
1357
1358         return (0);
1359 }
1360
1361 /*
1362  * Return the spa_t associated with given pool_guid, if it exists.  If
1363  * device_guid is non-zero, determine whether the pool exists *and* contains
1364  * a device with the specified device_guid.
1365  */
1366 spa_t *
1367 spa_by_guid(uint64_t pool_guid, uint64_t device_guid)
1368 {
1369         spa_t *spa;
1370         avl_tree_t *t = &spa_namespace_avl;
1371
1372         ASSERT(MUTEX_HELD(&spa_namespace_lock));
1373
1374         for (spa = avl_first(t); spa != NULL; spa = AVL_NEXT(t, spa)) {
1375                 if (spa->spa_state == POOL_STATE_UNINITIALIZED)
1376                         continue;
1377                 if (spa->spa_root_vdev == NULL)
1378                         continue;
1379                 if (spa_guid(spa) == pool_guid) {
1380                         if (device_guid == 0)
1381                                 break;
1382
1383                         if (vdev_lookup_by_guid(spa->spa_root_vdev,
1384                             device_guid) != NULL)
1385                                 break;
1386
1387                         /*
1388                          * Check any devices we may be in the process of adding.
1389                          */
1390                         if (spa->spa_pending_vdev) {
1391                                 if (vdev_lookup_by_guid(spa->spa_pending_vdev,
1392                                     device_guid) != NULL)
1393                                         break;
1394                         }
1395                 }
1396         }
1397
1398         return (spa);
1399 }
1400
1401 /*
1402  * Determine whether a pool with the given pool_guid exists.
1403  */
1404 boolean_t
1405 spa_guid_exists(uint64_t pool_guid, uint64_t device_guid)
1406 {
1407         return (spa_by_guid(pool_guid, device_guid) != NULL);
1408 }
1409
1410 char *
1411 spa_strdup(const char *s)
1412 {
1413         size_t len;
1414         char *new;
1415
1416         len = strlen(s);
1417         new = kmem_alloc(len + 1, KM_SLEEP);
1418         bcopy(s, new, len);
1419         new[len] = '\0';
1420
1421         return (new);
1422 }
1423
1424 void
1425 spa_strfree(char *s)
1426 {
1427         kmem_free(s, strlen(s) + 1);
1428 }
1429
1430 uint64_t
1431 spa_get_random(uint64_t range)
1432 {
1433         uint64_t r;
1434
1435         ASSERT(range != 0);
1436
1437         (void) random_get_pseudo_bytes((void *)&r, sizeof (uint64_t));
1438
1439         return (r % range);
1440 }
1441
1442 uint64_t
1443 spa_generate_guid(spa_t *spa)
1444 {
1445         uint64_t guid = spa_get_random(-1ULL);
1446
1447         if (spa != NULL) {
1448                 while (guid == 0 || spa_guid_exists(spa_guid(spa), guid))
1449                         guid = spa_get_random(-1ULL);
1450         } else {
1451                 while (guid == 0 || spa_guid_exists(guid, 0))
1452                         guid = spa_get_random(-1ULL);
1453         }
1454
1455         return (guid);
1456 }
1457
1458 void
1459 snprintf_blkptr(char *buf, size_t buflen, const blkptr_t *bp)
1460 {
1461         char type[256];
1462         char *checksum = NULL;
1463         char *compress = NULL;
1464
1465         if (bp != NULL) {
1466                 if (BP_GET_TYPE(bp) & DMU_OT_NEWTYPE) {
1467                         dmu_object_byteswap_t bswap =
1468                             DMU_OT_BYTESWAP(BP_GET_TYPE(bp));
1469                         (void) snprintf(type, sizeof (type), "bswap %s %s",
1470                             DMU_OT_IS_METADATA(BP_GET_TYPE(bp)) ?
1471                             "metadata" : "data",
1472                             dmu_ot_byteswap[bswap].ob_name);
1473                 } else {
1474                         (void) strlcpy(type, dmu_ot[BP_GET_TYPE(bp)].ot_name,
1475                             sizeof (type));
1476                 }
1477                 if (!BP_IS_EMBEDDED(bp)) {
1478                         checksum =
1479                             zio_checksum_table[BP_GET_CHECKSUM(bp)].ci_name;
1480                 }
1481                 compress = zio_compress_table[BP_GET_COMPRESS(bp)].ci_name;
1482         }
1483
1484         SNPRINTF_BLKPTR(snprintf, ' ', buf, buflen, bp, type, checksum,
1485             compress);
1486 }
1487
1488 void
1489 spa_freeze(spa_t *spa)
1490 {
1491         uint64_t freeze_txg = 0;
1492
1493         spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
1494         if (spa->spa_freeze_txg == UINT64_MAX) {
1495                 freeze_txg = spa_last_synced_txg(spa) + TXG_SIZE;
1496                 spa->spa_freeze_txg = freeze_txg;
1497         }
1498         spa_config_exit(spa, SCL_ALL, FTAG);
1499         if (freeze_txg != 0)
1500                 txg_wait_synced(spa_get_dsl(spa), freeze_txg);
1501 }
1502
1503 void
1504 zfs_panic_recover(const char *fmt, ...)
1505 {
1506         va_list adx;
1507
1508         va_start(adx, fmt);
1509         vcmn_err(zfs_recover ? CE_WARN : CE_PANIC, fmt, adx);
1510         va_end(adx);
1511 }
1512
1513 /*
1514  * This is a stripped-down version of strtoull, suitable only for converting
1515  * lowercase hexadecimal numbers that don't overflow.
1516  */
1517 uint64_t
1518 zfs_strtonum(const char *str, char **nptr)
1519 {
1520         uint64_t val = 0;
1521         char c;
1522         int digit;
1523
1524         while ((c = *str) != '\0') {
1525                 if (c >= '0' && c <= '9')
1526                         digit = c - '0';
1527                 else if (c >= 'a' && c <= 'f')
1528                         digit = 10 + c - 'a';
1529                 else
1530                         break;
1531
1532                 val *= 16;
1533                 val += digit;
1534
1535                 str++;
1536         }
1537
1538         if (nptr)
1539                 *nptr = (char *)str;
1540
1541         return (val);
1542 }
1543
1544 /*
1545  * ==========================================================================
1546  * Accessor functions
1547  * ==========================================================================
1548  */
1549
1550 boolean_t
1551 spa_shutting_down(spa_t *spa)
1552 {
1553         return (spa->spa_async_suspended);
1554 }
1555
1556 dsl_pool_t *
1557 spa_get_dsl(spa_t *spa)
1558 {
1559         return (spa->spa_dsl_pool);
1560 }
1561
1562 boolean_t
1563 spa_is_initializing(spa_t *spa)
1564 {
1565         return (spa->spa_is_initializing);
1566 }
1567
1568 blkptr_t *
1569 spa_get_rootblkptr(spa_t *spa)
1570 {
1571         return (&spa->spa_ubsync.ub_rootbp);
1572 }
1573
1574 void
1575 spa_set_rootblkptr(spa_t *spa, const blkptr_t *bp)
1576 {
1577         spa->spa_uberblock.ub_rootbp = *bp;
1578 }
1579
1580 void
1581 spa_altroot(spa_t *spa, char *buf, size_t buflen)
1582 {
1583         if (spa->spa_root == NULL)
1584                 buf[0] = '\0';
1585         else
1586                 (void) strncpy(buf, spa->spa_root, buflen);
1587 }
1588
1589 int
1590 spa_sync_pass(spa_t *spa)
1591 {
1592         return (spa->spa_sync_pass);
1593 }
1594
1595 char *
1596 spa_name(spa_t *spa)
1597 {
1598         return (spa->spa_name);
1599 }
1600
1601 uint64_t
1602 spa_guid(spa_t *spa)
1603 {
1604         dsl_pool_t *dp = spa_get_dsl(spa);
1605         uint64_t guid;
1606
1607         /*
1608          * If we fail to parse the config during spa_load(), we can go through
1609          * the error path (which posts an ereport) and end up here with no root
1610          * vdev.  We stash the original pool guid in 'spa_config_guid' to handle
1611          * this case.
1612          */
1613         if (spa->spa_root_vdev == NULL)
1614                 return (spa->spa_config_guid);
1615
1616         guid = spa->spa_last_synced_guid != 0 ?
1617             spa->spa_last_synced_guid : spa->spa_root_vdev->vdev_guid;
1618
1619         /*
1620          * Return the most recently synced out guid unless we're
1621          * in syncing context.
1622          */
1623         if (dp && dsl_pool_sync_context(dp))
1624                 return (spa->spa_root_vdev->vdev_guid);
1625         else
1626                 return (guid);
1627 }
1628
1629 uint64_t
1630 spa_load_guid(spa_t *spa)
1631 {
1632         /*
1633          * This is a GUID that exists solely as a reference for the
1634          * purposes of the arc.  It is generated at load time, and
1635          * is never written to persistent storage.
1636          */
1637         return (spa->spa_load_guid);
1638 }
1639
1640 uint64_t
1641 spa_last_synced_txg(spa_t *spa)
1642 {
1643         return (spa->spa_ubsync.ub_txg);
1644 }
1645
1646 uint64_t
1647 spa_first_txg(spa_t *spa)
1648 {
1649         return (spa->spa_first_txg);
1650 }
1651
1652 uint64_t
1653 spa_syncing_txg(spa_t *spa)
1654 {
1655         return (spa->spa_syncing_txg);
1656 }
1657
1658 pool_state_t
1659 spa_state(spa_t *spa)
1660 {
1661         return (spa->spa_state);
1662 }
1663
1664 spa_load_state_t
1665 spa_load_state(spa_t *spa)
1666 {
1667         return (spa->spa_load_state);
1668 }
1669
1670 uint64_t
1671 spa_freeze_txg(spa_t *spa)
1672 {
1673         return (spa->spa_freeze_txg);
1674 }
1675
1676 /* ARGSUSED */
1677 uint64_t
1678 spa_get_asize(spa_t *spa, uint64_t lsize)
1679 {
1680         return (lsize * spa_asize_inflation);
1681 }
1682
1683 /*
1684  * Return the amount of slop space in bytes.  It is 1/32 of the pool (3.2%),
1685  * or at least 32MB.
1686  *
1687  * See the comment above spa_slop_shift for details.
1688  */
1689 uint64_t
1690 spa_get_slop_space(spa_t *spa) {
1691         uint64_t space = spa_get_dspace(spa);
1692         return (MAX(space >> spa_slop_shift, SPA_MINDEVSIZE >> 1));
1693 }
1694
1695 uint64_t
1696 spa_get_dspace(spa_t *spa)
1697 {
1698         return (spa->spa_dspace);
1699 }
1700
1701 void
1702 spa_update_dspace(spa_t *spa)
1703 {
1704         spa->spa_dspace = metaslab_class_get_dspace(spa_normal_class(spa)) +
1705             ddt_get_dedup_dspace(spa);
1706 }
1707
1708 /*
1709  * Return the failure mode that has been set to this pool. The default
1710  * behavior will be to block all I/Os when a complete failure occurs.
1711  */
1712 uint8_t
1713 spa_get_failmode(spa_t *spa)
1714 {
1715         return (spa->spa_failmode);
1716 }
1717
1718 boolean_t
1719 spa_suspended(spa_t *spa)
1720 {
1721         return (spa->spa_suspended);
1722 }
1723
1724 uint64_t
1725 spa_version(spa_t *spa)
1726 {
1727         return (spa->spa_ubsync.ub_version);
1728 }
1729
1730 boolean_t
1731 spa_deflate(spa_t *spa)
1732 {
1733         return (spa->spa_deflate);
1734 }
1735
1736 metaslab_class_t *
1737 spa_normal_class(spa_t *spa)
1738 {
1739         return (spa->spa_normal_class);
1740 }
1741
1742 metaslab_class_t *
1743 spa_log_class(spa_t *spa)
1744 {
1745         return (spa->spa_log_class);
1746 }
1747
1748 int
1749 spa_max_replication(spa_t *spa)
1750 {
1751         /*
1752          * As of SPA_VERSION == SPA_VERSION_DITTO_BLOCKS, we are able to
1753          * handle BPs with more than one DVA allocated.  Set our max
1754          * replication level accordingly.
1755          */
1756         if (spa_version(spa) < SPA_VERSION_DITTO_BLOCKS)
1757                 return (1);
1758         return (MIN(SPA_DVAS_PER_BP, spa_max_replication_override));
1759 }
1760
1761 int
1762 spa_prev_software_version(spa_t *spa)
1763 {
1764         return (spa->spa_prev_software_version);
1765 }
1766
1767 uint64_t
1768 spa_deadman_synctime(spa_t *spa)
1769 {
1770         return (spa->spa_deadman_synctime);
1771 }
1772
1773 uint64_t
1774 dva_get_dsize_sync(spa_t *spa, const dva_t *dva)
1775 {
1776         uint64_t asize = DVA_GET_ASIZE(dva);
1777         uint64_t dsize = asize;
1778
1779         ASSERT(spa_config_held(spa, SCL_ALL, RW_READER) != 0);
1780
1781         if (asize != 0 && spa->spa_deflate) {
1782                 vdev_t *vd = vdev_lookup_top(spa, DVA_GET_VDEV(dva));
1783                 dsize = (asize >> SPA_MINBLOCKSHIFT) * vd->vdev_deflate_ratio;
1784         }
1785
1786         return (dsize);
1787 }
1788
1789 uint64_t
1790 bp_get_dsize_sync(spa_t *spa, const blkptr_t *bp)
1791 {
1792         uint64_t dsize = 0;
1793
1794         for (int d = 0; d < BP_GET_NDVAS(bp); d++)
1795                 dsize += dva_get_dsize_sync(spa, &bp->blk_dva[d]);
1796
1797         return (dsize);
1798 }
1799
1800 uint64_t
1801 bp_get_dsize(spa_t *spa, const blkptr_t *bp)
1802 {
1803         uint64_t dsize = 0;
1804
1805         spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
1806
1807         for (int d = 0; d < BP_GET_NDVAS(bp); d++)
1808                 dsize += dva_get_dsize_sync(spa, &bp->blk_dva[d]);
1809
1810         spa_config_exit(spa, SCL_VDEV, FTAG);
1811
1812         return (dsize);
1813 }
1814
1815 /*
1816  * ==========================================================================
1817  * Initialization and Termination
1818  * ==========================================================================
1819  */
1820
1821 static int
1822 spa_name_compare(const void *a1, const void *a2)
1823 {
1824         const spa_t *s1 = a1;
1825         const spa_t *s2 = a2;
1826         int s;
1827
1828         s = strcmp(s1->spa_name, s2->spa_name);
1829         if (s > 0)
1830                 return (1);
1831         if (s < 0)
1832                 return (-1);
1833         return (0);
1834 }
1835
1836 int
1837 spa_busy(void)
1838 {
1839         return (spa_active_count);
1840 }
1841
1842 void
1843 spa_boot_init()
1844 {
1845         spa_config_load();
1846 }
1847
1848 #ifdef _KERNEL
1849 EVENTHANDLER_DEFINE(mountroot, spa_boot_init, NULL, 0);
1850 #endif
1851
1852 void
1853 spa_init(int mode)
1854 {
1855         mutex_init(&spa_namespace_lock, NULL, MUTEX_DEFAULT, NULL);
1856         mutex_init(&spa_spare_lock, NULL, MUTEX_DEFAULT, NULL);
1857         mutex_init(&spa_l2cache_lock, NULL, MUTEX_DEFAULT, NULL);
1858         cv_init(&spa_namespace_cv, NULL, CV_DEFAULT, NULL);
1859
1860         avl_create(&spa_namespace_avl, spa_name_compare, sizeof (spa_t),
1861             offsetof(spa_t, spa_avl));
1862
1863         avl_create(&spa_spare_avl, spa_spare_compare, sizeof (spa_aux_t),
1864             offsetof(spa_aux_t, aux_avl));
1865
1866         avl_create(&spa_l2cache_avl, spa_l2cache_compare, sizeof (spa_aux_t),
1867             offsetof(spa_aux_t, aux_avl));
1868
1869         spa_mode_global = mode;
1870
1871 #ifdef illumos
1872 #ifdef _KERNEL
1873         spa_arch_init();
1874 #else
1875         if (spa_mode_global != FREAD && dprintf_find_string("watch")) {
1876                 arc_procfd = open("/proc/self/ctl", O_WRONLY);
1877                 if (arc_procfd == -1) {
1878                         perror("could not enable watchpoints: "
1879                             "opening /proc/self/ctl failed: ");
1880                 } else {
1881                         arc_watch = B_TRUE;
1882                 }
1883         }
1884 #endif
1885 #endif /* illumos */
1886         refcount_sysinit();
1887         unique_init();
1888         range_tree_init();
1889         zio_init();
1890         lz4_init();
1891         dmu_init();
1892         zil_init();
1893         vdev_cache_stat_init();
1894         zfs_prop_init();
1895         zpool_prop_init();
1896         zpool_feature_init();
1897         spa_config_load();
1898         l2arc_start();
1899 #ifndef illumos
1900 #ifdef _KERNEL
1901         zfs_deadman_init();
1902 #endif
1903 #endif  /* !illumos */
1904 }
1905
1906 void
1907 spa_fini(void)
1908 {
1909         l2arc_stop();
1910
1911         spa_evict_all();
1912
1913         vdev_cache_stat_fini();
1914         zil_fini();
1915         dmu_fini();
1916         lz4_fini();
1917         zio_fini();
1918         range_tree_fini();
1919         unique_fini();
1920         refcount_fini();
1921
1922         avl_destroy(&spa_namespace_avl);
1923         avl_destroy(&spa_spare_avl);
1924         avl_destroy(&spa_l2cache_avl);
1925
1926         cv_destroy(&spa_namespace_cv);
1927         mutex_destroy(&spa_namespace_lock);
1928         mutex_destroy(&spa_spare_lock);
1929         mutex_destroy(&spa_l2cache_lock);
1930 }
1931
1932 /*
1933  * Return whether this pool has slogs. No locking needed.
1934  * It's not a problem if the wrong answer is returned as it's only for
1935  * performance and not correctness
1936  */
1937 boolean_t
1938 spa_has_slogs(spa_t *spa)
1939 {
1940         return (spa->spa_log_class->mc_rotor != NULL);
1941 }
1942
1943 spa_log_state_t
1944 spa_get_log_state(spa_t *spa)
1945 {
1946         return (spa->spa_log_state);
1947 }
1948
1949 void
1950 spa_set_log_state(spa_t *spa, spa_log_state_t state)
1951 {
1952         spa->spa_log_state = state;
1953 }
1954
1955 boolean_t
1956 spa_is_root(spa_t *spa)
1957 {
1958         return (spa->spa_is_root);
1959 }
1960
1961 boolean_t
1962 spa_writeable(spa_t *spa)
1963 {
1964         return (!!(spa->spa_mode & FWRITE));
1965 }
1966
1967 /*
1968  * Returns true if there is a pending sync task in any of the current
1969  * syncing txg, the current quiescing txg, or the current open txg.
1970  */
1971 boolean_t
1972 spa_has_pending_synctask(spa_t *spa)
1973 {
1974         return (!txg_all_lists_empty(&spa->spa_dsl_pool->dp_sync_tasks));
1975 }
1976
1977 int
1978 spa_mode(spa_t *spa)
1979 {
1980         return (spa->spa_mode);
1981 }
1982
1983 uint64_t
1984 spa_bootfs(spa_t *spa)
1985 {
1986         return (spa->spa_bootfs);
1987 }
1988
1989 uint64_t
1990 spa_delegation(spa_t *spa)
1991 {
1992         return (spa->spa_delegation);
1993 }
1994
1995 objset_t *
1996 spa_meta_objset(spa_t *spa)
1997 {
1998         return (spa->spa_meta_objset);
1999 }
2000
2001 enum zio_checksum
2002 spa_dedup_checksum(spa_t *spa)
2003 {
2004         return (spa->spa_dedup_checksum);
2005 }
2006
2007 /*
2008  * Reset pool scan stat per scan pass (or reboot).
2009  */
2010 void
2011 spa_scan_stat_init(spa_t *spa)
2012 {
2013         /* data not stored on disk */
2014         spa->spa_scan_pass_start = gethrestime_sec();
2015         spa->spa_scan_pass_exam = 0;
2016         vdev_scan_stat_init(spa->spa_root_vdev);
2017 }
2018
2019 /*
2020  * Get scan stats for zpool status reports
2021  */
2022 int
2023 spa_scan_get_stats(spa_t *spa, pool_scan_stat_t *ps)
2024 {
2025         dsl_scan_t *scn = spa->spa_dsl_pool ? spa->spa_dsl_pool->dp_scan : NULL;
2026
2027         if (scn == NULL || scn->scn_phys.scn_func == POOL_SCAN_NONE)
2028                 return (SET_ERROR(ENOENT));
2029         bzero(ps, sizeof (pool_scan_stat_t));
2030
2031         /* data stored on disk */
2032         ps->pss_func = scn->scn_phys.scn_func;
2033         ps->pss_start_time = scn->scn_phys.scn_start_time;
2034         ps->pss_end_time = scn->scn_phys.scn_end_time;
2035         ps->pss_to_examine = scn->scn_phys.scn_to_examine;
2036         ps->pss_examined = scn->scn_phys.scn_examined;
2037         ps->pss_to_process = scn->scn_phys.scn_to_process;
2038         ps->pss_processed = scn->scn_phys.scn_processed;
2039         ps->pss_errors = scn->scn_phys.scn_errors;
2040         ps->pss_state = scn->scn_phys.scn_state;
2041
2042         /* data not stored on disk */
2043         ps->pss_pass_start = spa->spa_scan_pass_start;
2044         ps->pss_pass_exam = spa->spa_scan_pass_exam;
2045
2046         return (0);
2047 }
2048
2049 boolean_t
2050 spa_debug_enabled(spa_t *spa)
2051 {
2052         return (spa->spa_debug);
2053 }
2054
2055 int
2056 spa_maxblocksize(spa_t *spa)
2057 {
2058         if (spa_feature_is_enabled(spa, SPA_FEATURE_LARGE_BLOCKS))
2059                 return (SPA_MAXBLOCKSIZE);
2060         else
2061                 return (SPA_OLD_MAXBLOCKSIZE);
2062 }