1eda14cbcSMatt Macy /* 2eda14cbcSMatt Macy * CDDL HEADER START 3eda14cbcSMatt Macy * 4eda14cbcSMatt Macy * The contents of this file are subject to the terms of the 5eda14cbcSMatt Macy * Common Development and Distribution License (the "License"). 6eda14cbcSMatt Macy * You may not use this file except in compliance with the License. 7eda14cbcSMatt Macy * 8eda14cbcSMatt Macy * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9271171e0SMartin Matuska * or https://opensource.org/licenses/CDDL-1.0. 10eda14cbcSMatt Macy * See the License for the specific language governing permissions 11eda14cbcSMatt Macy * and limitations under the License. 12eda14cbcSMatt Macy * 13eda14cbcSMatt Macy * When distributing Covered Code, include this CDDL HEADER in each 14eda14cbcSMatt Macy * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15eda14cbcSMatt Macy * If applicable, add the following below this CDDL HEADER, with the 16eda14cbcSMatt Macy * fields enclosed by brackets "[]" replaced with your own identifying 17eda14cbcSMatt Macy * information: Portions Copyright [yyyy] [name of copyright owner] 18eda14cbcSMatt Macy * 19eda14cbcSMatt Macy * CDDL HEADER END 20eda14cbcSMatt Macy */ 21eda14cbcSMatt Macy /* 22eda14cbcSMatt Macy * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. 23*0d4ad640SMartin Matuska * Copyright (c) 2011, 2024 by Delphix. All rights reserved. 24eda14cbcSMatt Macy * Copyright 2015 Nexenta Systems, Inc. All rights reserved. 25eda14cbcSMatt Macy * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved. 26eda14cbcSMatt Macy * Copyright 2013 Saso Kiselkov. All rights reserved. 27eda14cbcSMatt Macy * Copyright (c) 2017 Datto Inc. 28eda14cbcSMatt Macy * Copyright (c) 2017, Intel Corporation. 29eda14cbcSMatt Macy * Copyright (c) 2019, loli10K <ezomori.nozomu@gmail.com>. All rights reserved. 30cbfe9975SMartin Matuska * Copyright (c) 2023, Klara Inc. 31eda14cbcSMatt Macy */ 32eda14cbcSMatt Macy 33eda14cbcSMatt Macy #include <sys/zfs_context.h> 341f1e2261SMartin Matuska #include <sys/zfs_chksum.h> 35eda14cbcSMatt Macy #include <sys/spa_impl.h> 36eda14cbcSMatt Macy #include <sys/zio.h> 37eda14cbcSMatt Macy #include <sys/zio_checksum.h> 38eda14cbcSMatt Macy #include <sys/zio_compress.h> 39eda14cbcSMatt Macy #include <sys/dmu.h> 40eda14cbcSMatt Macy #include <sys/dmu_tx.h> 41eda14cbcSMatt Macy #include <sys/zap.h> 42eda14cbcSMatt Macy #include <sys/zil.h> 43eda14cbcSMatt Macy #include <sys/vdev_impl.h> 44eda14cbcSMatt Macy #include <sys/vdev_initialize.h> 45eda14cbcSMatt Macy #include <sys/vdev_trim.h> 46eda14cbcSMatt Macy #include <sys/vdev_file.h> 47eda14cbcSMatt Macy #include <sys/vdev_raidz.h> 48eda14cbcSMatt Macy #include <sys/metaslab.h> 49eda14cbcSMatt Macy #include <sys/uberblock_impl.h> 50eda14cbcSMatt Macy #include <sys/txg.h> 51eda14cbcSMatt Macy #include <sys/avl.h> 52eda14cbcSMatt Macy #include <sys/unique.h> 53eda14cbcSMatt Macy #include <sys/dsl_pool.h> 54eda14cbcSMatt Macy #include <sys/dsl_dir.h> 55eda14cbcSMatt Macy #include <sys/dsl_prop.h> 56eda14cbcSMatt Macy #include <sys/fm/util.h> 57eda14cbcSMatt Macy #include <sys/dsl_scan.h> 58eda14cbcSMatt Macy #include <sys/fs/zfs.h> 59eda14cbcSMatt Macy #include <sys/metaslab_impl.h> 60eda14cbcSMatt Macy #include <sys/arc.h> 612a58b312SMartin Matuska #include <sys/brt.h> 62eda14cbcSMatt Macy #include <sys/ddt.h> 63eda14cbcSMatt Macy #include <sys/kstat.h> 64eda14cbcSMatt Macy #include "zfs_prop.h" 65eda14cbcSMatt Macy #include <sys/btree.h> 66eda14cbcSMatt Macy #include <sys/zfeature.h> 67eda14cbcSMatt Macy #include <sys/qat.h> 68eda14cbcSMatt Macy #include <sys/zstd/zstd.h> 69eda14cbcSMatt Macy 70eda14cbcSMatt Macy /* 71eda14cbcSMatt Macy * SPA locking 72eda14cbcSMatt Macy * 73eda14cbcSMatt Macy * There are three basic locks for managing spa_t structures: 74eda14cbcSMatt Macy * 75eda14cbcSMatt Macy * spa_namespace_lock (global mutex) 76eda14cbcSMatt Macy * 77eda14cbcSMatt Macy * This lock must be acquired to do any of the following: 78eda14cbcSMatt Macy * 79eda14cbcSMatt Macy * - Lookup a spa_t by name 80eda14cbcSMatt Macy * - Add or remove a spa_t from the namespace 81eda14cbcSMatt Macy * - Increase spa_refcount from non-zero 82eda14cbcSMatt Macy * - Check if spa_refcount is zero 83eda14cbcSMatt Macy * - Rename a spa_t 84eda14cbcSMatt Macy * - add/remove/attach/detach devices 85*0d4ad640SMartin Matuska * - Held for the duration of create/destroy/export 86*0d4ad640SMartin Matuska * - Held at the start and end of import 87eda14cbcSMatt Macy * 88eda14cbcSMatt Macy * It does not need to handle recursion. A create or destroy may 89eda14cbcSMatt Macy * reference objects (files or zvols) in other pools, but by 90eda14cbcSMatt Macy * definition they must have an existing reference, and will never need 91eda14cbcSMatt Macy * to lookup a spa_t by name. 92eda14cbcSMatt Macy * 93eda14cbcSMatt Macy * spa_refcount (per-spa zfs_refcount_t protected by mutex) 94eda14cbcSMatt Macy * 95eda14cbcSMatt Macy * This reference count keep track of any active users of the spa_t. The 96eda14cbcSMatt Macy * spa_t cannot be destroyed or freed while this is non-zero. Internally, 97eda14cbcSMatt Macy * the refcount is never really 'zero' - opening a pool implicitly keeps 98eda14cbcSMatt Macy * some references in the DMU. Internally we check against spa_minref, but 99eda14cbcSMatt Macy * present the image of a zero/non-zero value to consumers. 100eda14cbcSMatt Macy * 101eda14cbcSMatt Macy * spa_config_lock[] (per-spa array of rwlocks) 102eda14cbcSMatt Macy * 103eda14cbcSMatt Macy * This protects the spa_t from config changes, and must be held in 104eda14cbcSMatt Macy * the following circumstances: 105eda14cbcSMatt Macy * 106eda14cbcSMatt Macy * - RW_READER to perform I/O to the spa 107eda14cbcSMatt Macy * - RW_WRITER to change the vdev config 108eda14cbcSMatt Macy * 109eda14cbcSMatt Macy * The locking order is fairly straightforward: 110eda14cbcSMatt Macy * 111eda14cbcSMatt Macy * spa_namespace_lock -> spa_refcount 112eda14cbcSMatt Macy * 113eda14cbcSMatt Macy * The namespace lock must be acquired to increase the refcount from 0 114eda14cbcSMatt Macy * or to check if it is zero. 115eda14cbcSMatt Macy * 116eda14cbcSMatt Macy * spa_refcount -> spa_config_lock[] 117eda14cbcSMatt Macy * 118eda14cbcSMatt Macy * There must be at least one valid reference on the spa_t to acquire 119eda14cbcSMatt Macy * the config lock. 120eda14cbcSMatt Macy * 121eda14cbcSMatt Macy * spa_namespace_lock -> spa_config_lock[] 122eda14cbcSMatt Macy * 123eda14cbcSMatt Macy * The namespace lock must always be taken before the config lock. 124eda14cbcSMatt Macy * 125eda14cbcSMatt Macy * 126eda14cbcSMatt Macy * The spa_namespace_lock can be acquired directly and is globally visible. 127eda14cbcSMatt Macy * 128eda14cbcSMatt Macy * The namespace is manipulated using the following functions, all of which 129eda14cbcSMatt Macy * require the spa_namespace_lock to be held. 130eda14cbcSMatt Macy * 131eda14cbcSMatt Macy * spa_lookup() Lookup a spa_t by name. 132eda14cbcSMatt Macy * 133eda14cbcSMatt Macy * spa_add() Create a new spa_t in the namespace. 134eda14cbcSMatt Macy * 135eda14cbcSMatt Macy * spa_remove() Remove a spa_t from the namespace. This also 136eda14cbcSMatt Macy * frees up any memory associated with the spa_t. 137eda14cbcSMatt Macy * 138eda14cbcSMatt Macy * spa_next() Returns the next spa_t in the system, or the 139eda14cbcSMatt Macy * first if NULL is passed. 140eda14cbcSMatt Macy * 141eda14cbcSMatt Macy * spa_evict_all() Shutdown and remove all spa_t structures in 142eda14cbcSMatt Macy * the system. 143eda14cbcSMatt Macy * 144eda14cbcSMatt Macy * spa_guid_exists() Determine whether a pool/device guid exists. 145eda14cbcSMatt Macy * 146eda14cbcSMatt Macy * The spa_refcount is manipulated using the following functions: 147eda14cbcSMatt Macy * 148eda14cbcSMatt Macy * spa_open_ref() Adds a reference to the given spa_t. Must be 149eda14cbcSMatt Macy * called with spa_namespace_lock held if the 150eda14cbcSMatt Macy * refcount is currently zero. 151eda14cbcSMatt Macy * 152eda14cbcSMatt Macy * spa_close() Remove a reference from the spa_t. This will 153eda14cbcSMatt Macy * not free the spa_t or remove it from the 154eda14cbcSMatt Macy * namespace. No locking is required. 155eda14cbcSMatt Macy * 156eda14cbcSMatt Macy * spa_refcount_zero() Returns true if the refcount is currently 157eda14cbcSMatt Macy * zero. Must be called with spa_namespace_lock 158eda14cbcSMatt Macy * held. 159eda14cbcSMatt Macy * 160eda14cbcSMatt Macy * The spa_config_lock[] is an array of rwlocks, ordered as follows: 161eda14cbcSMatt Macy * SCL_CONFIG > SCL_STATE > SCL_ALLOC > SCL_ZIO > SCL_FREE > SCL_VDEV. 162eda14cbcSMatt Macy * spa_config_lock[] is manipulated with spa_config_{enter,exit,held}(). 163eda14cbcSMatt Macy * 164eda14cbcSMatt Macy * To read the configuration, it suffices to hold one of these locks as reader. 165eda14cbcSMatt Macy * To modify the configuration, you must hold all locks as writer. To modify 166eda14cbcSMatt Macy * vdev state without altering the vdev tree's topology (e.g. online/offline), 167eda14cbcSMatt Macy * you must hold SCL_STATE and SCL_ZIO as writer. 168eda14cbcSMatt Macy * 169eda14cbcSMatt Macy * We use these distinct config locks to avoid recursive lock entry. 170eda14cbcSMatt Macy * For example, spa_sync() (which holds SCL_CONFIG as reader) induces 171eda14cbcSMatt Macy * block allocations (SCL_ALLOC), which may require reading space maps 172eda14cbcSMatt Macy * from disk (dmu_read() -> zio_read() -> SCL_ZIO). 173eda14cbcSMatt Macy * 174eda14cbcSMatt Macy * The spa config locks cannot be normal rwlocks because we need the 175eda14cbcSMatt Macy * ability to hand off ownership. For example, SCL_ZIO is acquired 176eda14cbcSMatt Macy * by the issuing thread and later released by an interrupt thread. 177eda14cbcSMatt Macy * They do, however, obey the usual write-wanted semantics to prevent 178eda14cbcSMatt Macy * writer (i.e. system administrator) starvation. 179eda14cbcSMatt Macy * 180eda14cbcSMatt Macy * The lock acquisition rules are as follows: 181eda14cbcSMatt Macy * 182eda14cbcSMatt Macy * SCL_CONFIG 183eda14cbcSMatt Macy * Protects changes to the vdev tree topology, such as vdev 184eda14cbcSMatt Macy * add/remove/attach/detach. Protects the dirty config list 185eda14cbcSMatt Macy * (spa_config_dirty_list) and the set of spares and l2arc devices. 186eda14cbcSMatt Macy * 187eda14cbcSMatt Macy * SCL_STATE 188eda14cbcSMatt Macy * Protects changes to pool state and vdev state, such as vdev 189eda14cbcSMatt Macy * online/offline/fault/degrade/clear. Protects the dirty state list 190eda14cbcSMatt Macy * (spa_state_dirty_list) and global pool state (spa_state). 191eda14cbcSMatt Macy * 192eda14cbcSMatt Macy * SCL_ALLOC 193eda14cbcSMatt Macy * Protects changes to metaslab groups and classes. 194eda14cbcSMatt Macy * Held as reader by metaslab_alloc() and metaslab_claim(). 195eda14cbcSMatt Macy * 196eda14cbcSMatt Macy * SCL_ZIO 197eda14cbcSMatt Macy * Held by bp-level zios (those which have no io_vd upon entry) 198eda14cbcSMatt Macy * to prevent changes to the vdev tree. The bp-level zio implicitly 199eda14cbcSMatt Macy * protects all of its vdev child zios, which do not hold SCL_ZIO. 200eda14cbcSMatt Macy * 201eda14cbcSMatt Macy * SCL_FREE 202eda14cbcSMatt Macy * Protects changes to metaslab groups and classes. 203eda14cbcSMatt Macy * Held as reader by metaslab_free(). SCL_FREE is distinct from 204eda14cbcSMatt Macy * SCL_ALLOC, and lower than SCL_ZIO, so that we can safely free 205eda14cbcSMatt Macy * blocks in zio_done() while another i/o that holds either 206eda14cbcSMatt Macy * SCL_ALLOC or SCL_ZIO is waiting for this i/o to complete. 207eda14cbcSMatt Macy * 208eda14cbcSMatt Macy * SCL_VDEV 209eda14cbcSMatt Macy * Held as reader to prevent changes to the vdev tree during trivial 210eda14cbcSMatt Macy * inquiries such as bp_get_dsize(). SCL_VDEV is distinct from the 211eda14cbcSMatt Macy * other locks, and lower than all of them, to ensure that it's safe 212eda14cbcSMatt Macy * to acquire regardless of caller context. 213eda14cbcSMatt Macy * 214eda14cbcSMatt Macy * In addition, the following rules apply: 215eda14cbcSMatt Macy * 216eda14cbcSMatt Macy * (a) spa_props_lock protects pool properties, spa_config and spa_config_list. 217eda14cbcSMatt Macy * The lock ordering is SCL_CONFIG > spa_props_lock. 218eda14cbcSMatt Macy * 219eda14cbcSMatt Macy * (b) I/O operations on leaf vdevs. For any zio operation that takes 220eda14cbcSMatt Macy * an explicit vdev_t argument -- such as zio_ioctl(), zio_read_phys(), 221eda14cbcSMatt Macy * or zio_write_phys() -- the caller must ensure that the config cannot 222eda14cbcSMatt Macy * cannot change in the interim, and that the vdev cannot be reopened. 223eda14cbcSMatt Macy * SCL_STATE as reader suffices for both. 224eda14cbcSMatt Macy * 225eda14cbcSMatt Macy * The vdev configuration is protected by spa_vdev_enter() / spa_vdev_exit(). 226eda14cbcSMatt Macy * 227eda14cbcSMatt Macy * spa_vdev_enter() Acquire the namespace lock and the config lock 228eda14cbcSMatt Macy * for writing. 229eda14cbcSMatt Macy * 230eda14cbcSMatt Macy * spa_vdev_exit() Release the config lock, wait for all I/O 231eda14cbcSMatt Macy * to complete, sync the updated configs to the 232eda14cbcSMatt Macy * cache, and release the namespace lock. 233eda14cbcSMatt Macy * 234eda14cbcSMatt Macy * vdev state is protected by spa_vdev_state_enter() / spa_vdev_state_exit(). 235eda14cbcSMatt Macy * Like spa_vdev_enter/exit, these are convenience wrappers -- the actual 236eda14cbcSMatt Macy * locking is, always, based on spa_namespace_lock and spa_config_lock[]. 237eda14cbcSMatt Macy */ 238eda14cbcSMatt Macy 239*0d4ad640SMartin Matuska avl_tree_t spa_namespace_avl; 240eda14cbcSMatt Macy kmutex_t spa_namespace_lock; 241*0d4ad640SMartin Matuska kcondvar_t spa_namespace_cv; 242e92ffd9bSMartin Matuska static const int spa_max_replication_override = SPA_DVAS_PER_BP; 243eda14cbcSMatt Macy 244eda14cbcSMatt Macy static kmutex_t spa_spare_lock; 245eda14cbcSMatt Macy static avl_tree_t spa_spare_avl; 246eda14cbcSMatt Macy static kmutex_t spa_l2cache_lock; 247eda14cbcSMatt Macy static avl_tree_t spa_l2cache_avl; 248eda14cbcSMatt Macy 249eda14cbcSMatt Macy spa_mode_t spa_mode_global = SPA_MODE_UNINIT; 250eda14cbcSMatt Macy 251eda14cbcSMatt Macy #ifdef ZFS_DEBUG 252eda14cbcSMatt Macy /* 253eda14cbcSMatt Macy * Everything except dprintf, set_error, spa, and indirect_remap is on 254eda14cbcSMatt Macy * by default in debug builds. 255eda14cbcSMatt Macy */ 256eda14cbcSMatt Macy int zfs_flags = ~(ZFS_DEBUG_DPRINTF | ZFS_DEBUG_SET_ERROR | 257eda14cbcSMatt Macy ZFS_DEBUG_INDIRECT_REMAP); 258eda14cbcSMatt Macy #else 259eda14cbcSMatt Macy int zfs_flags = 0; 260eda14cbcSMatt Macy #endif 261eda14cbcSMatt Macy 262eda14cbcSMatt Macy /* 263eda14cbcSMatt Macy * zfs_recover can be set to nonzero to attempt to recover from 264eda14cbcSMatt Macy * otherwise-fatal errors, typically caused by on-disk corruption. When 265eda14cbcSMatt Macy * set, calls to zfs_panic_recover() will turn into warning messages. 266eda14cbcSMatt Macy * This should only be used as a last resort, as it typically results 267eda14cbcSMatt Macy * in leaked space, or worse. 268eda14cbcSMatt Macy */ 269eda14cbcSMatt Macy int zfs_recover = B_FALSE; 270eda14cbcSMatt Macy 271eda14cbcSMatt Macy /* 272eda14cbcSMatt Macy * If destroy encounters an EIO while reading metadata (e.g. indirect 273eda14cbcSMatt Macy * blocks), space referenced by the missing metadata can not be freed. 274eda14cbcSMatt Macy * Normally this causes the background destroy to become "stalled", as 275eda14cbcSMatt Macy * it is unable to make forward progress. While in this stalled state, 276eda14cbcSMatt Macy * all remaining space to free from the error-encountering filesystem is 277eda14cbcSMatt Macy * "temporarily leaked". Set this flag to cause it to ignore the EIO, 278eda14cbcSMatt Macy * permanently leak the space from indirect blocks that can not be read, 279eda14cbcSMatt Macy * and continue to free everything else that it can. 280eda14cbcSMatt Macy * 281eda14cbcSMatt Macy * The default, "stalling" behavior is useful if the storage partially 282eda14cbcSMatt Macy * fails (i.e. some but not all i/os fail), and then later recovers. In 283eda14cbcSMatt Macy * this case, we will be able to continue pool operations while it is 284eda14cbcSMatt Macy * partially failed, and when it recovers, we can continue to free the 285eda14cbcSMatt Macy * space, with no leaks. However, note that this case is actually 286eda14cbcSMatt Macy * fairly rare. 287eda14cbcSMatt Macy * 288eda14cbcSMatt Macy * Typically pools either (a) fail completely (but perhaps temporarily, 289eda14cbcSMatt Macy * e.g. a top-level vdev going offline), or (b) have localized, 290eda14cbcSMatt Macy * permanent errors (e.g. disk returns the wrong data due to bit flip or 291eda14cbcSMatt Macy * firmware bug). In case (a), this setting does not matter because the 292eda14cbcSMatt Macy * pool will be suspended and the sync thread will not be able to make 293eda14cbcSMatt Macy * forward progress regardless. In case (b), because the error is 294eda14cbcSMatt Macy * permanent, the best we can do is leak the minimum amount of space, 295eda14cbcSMatt Macy * which is what setting this flag will do. Therefore, it is reasonable 296eda14cbcSMatt Macy * for this flag to normally be set, but we chose the more conservative 297eda14cbcSMatt Macy * approach of not setting it, so that there is no possibility of 298eda14cbcSMatt Macy * leaking space in the "partial temporary" failure case. 299eda14cbcSMatt Macy */ 300eda14cbcSMatt Macy int zfs_free_leak_on_eio = B_FALSE; 301eda14cbcSMatt Macy 302eda14cbcSMatt Macy /* 303eda14cbcSMatt Macy * Expiration time in milliseconds. This value has two meanings. First it is 304eda14cbcSMatt Macy * used to determine when the spa_deadman() logic should fire. By default the 305eda14cbcSMatt Macy * spa_deadman() will fire if spa_sync() has not completed in 600 seconds. 306eda14cbcSMatt Macy * Secondly, the value determines if an I/O is considered "hung". Any I/O that 307eda14cbcSMatt Macy * has not completed in zfs_deadman_synctime_ms is considered "hung" resulting 308eda14cbcSMatt Macy * in one of three behaviors controlled by zfs_deadman_failmode. 309eda14cbcSMatt Macy */ 310dbd5678dSMartin Matuska uint64_t zfs_deadman_synctime_ms = 600000UL; /* 10 min. */ 311eda14cbcSMatt Macy 312eda14cbcSMatt Macy /* 313eda14cbcSMatt Macy * This value controls the maximum amount of time zio_wait() will block for an 314eda14cbcSMatt Macy * outstanding IO. By default this is 300 seconds at which point the "hung" 315eda14cbcSMatt Macy * behavior will be applied as described for zfs_deadman_synctime_ms. 316eda14cbcSMatt Macy */ 317dbd5678dSMartin Matuska uint64_t zfs_deadman_ziotime_ms = 300000UL; /* 5 min. */ 318eda14cbcSMatt Macy 319eda14cbcSMatt Macy /* 320eda14cbcSMatt Macy * Check time in milliseconds. This defines the frequency at which we check 321eda14cbcSMatt Macy * for hung I/O. 322eda14cbcSMatt Macy */ 323dbd5678dSMartin Matuska uint64_t zfs_deadman_checktime_ms = 60000UL; /* 1 min. */ 324eda14cbcSMatt Macy 325eda14cbcSMatt Macy /* 326eda14cbcSMatt Macy * By default the deadman is enabled. 327eda14cbcSMatt Macy */ 328e92ffd9bSMartin Matuska int zfs_deadman_enabled = B_TRUE; 329eda14cbcSMatt Macy 330eda14cbcSMatt Macy /* 331eda14cbcSMatt Macy * Controls the behavior of the deadman when it detects a "hung" I/O. 332eda14cbcSMatt Macy * Valid values are zfs_deadman_failmode=<wait|continue|panic>. 333eda14cbcSMatt Macy * 334eda14cbcSMatt Macy * wait - Wait for the "hung" I/O (default) 335eda14cbcSMatt Macy * continue - Attempt to recover from a "hung" I/O 336eda14cbcSMatt Macy * panic - Panic the system 337eda14cbcSMatt Macy */ 338e92ffd9bSMartin Matuska const char *zfs_deadman_failmode = "wait"; 339eda14cbcSMatt Macy 340eda14cbcSMatt Macy /* 341eda14cbcSMatt Macy * The worst case is single-sector max-parity RAID-Z blocks, in which 342eda14cbcSMatt Macy * case the space requirement is exactly (VDEV_RAIDZ_MAXPARITY + 1) 343eda14cbcSMatt Macy * times the size; so just assume that. Add to this the fact that 344eda14cbcSMatt Macy * we can have up to 3 DVAs per bp, and one more factor of 2 because 345eda14cbcSMatt Macy * the block may be dittoed with up to 3 DVAs by ddt_sync(). All together, 346eda14cbcSMatt Macy * the worst case is: 347eda14cbcSMatt Macy * (VDEV_RAIDZ_MAXPARITY + 1) * SPA_DVAS_PER_BP * 2 == 24 348eda14cbcSMatt Macy */ 349be181ee2SMartin Matuska uint_t spa_asize_inflation = 24; 350eda14cbcSMatt Macy 351eda14cbcSMatt Macy /* 352eda14cbcSMatt Macy * Normally, we don't allow the last 3.2% (1/(2^spa_slop_shift)) of space in 353caed7b1cSMartin Matuska * the pool to be consumed (bounded by spa_max_slop). This ensures that we 354caed7b1cSMartin Matuska * don't run the pool completely out of space, due to unaccounted changes (e.g. 355caed7b1cSMartin Matuska * to the MOS). It also limits the worst-case time to allocate space. If we 356caed7b1cSMartin Matuska * have less than this amount of free space, most ZPL operations (e.g. write, 357caed7b1cSMartin Matuska * create) will return ENOSPC. The ZIL metaslabs (spa_embedded_log_class) are 358caed7b1cSMartin Matuska * also part of this 3.2% of space which can't be consumed by normal writes; 359caed7b1cSMartin Matuska * the slop space "proper" (spa_get_slop_space()) is decreased by the embedded 360caed7b1cSMartin Matuska * log space. 361eda14cbcSMatt Macy * 362eda14cbcSMatt Macy * Certain operations (e.g. file removal, most administrative actions) can 363eda14cbcSMatt Macy * use half the slop space. They will only return ENOSPC if less than half 364eda14cbcSMatt Macy * the slop space is free. Typically, once the pool has less than the slop 365eda14cbcSMatt Macy * space free, the user will use these operations to free up space in the pool. 366eda14cbcSMatt Macy * These are the operations that call dsl_pool_adjustedsize() with the netfree 367eda14cbcSMatt Macy * argument set to TRUE. 368eda14cbcSMatt Macy * 369eda14cbcSMatt Macy * Operations that are almost guaranteed to free up space in the absence of 370eda14cbcSMatt Macy * a pool checkpoint can use up to three quarters of the slop space 371eda14cbcSMatt Macy * (e.g zfs destroy). 372eda14cbcSMatt Macy * 373eda14cbcSMatt Macy * A very restricted set of operations are always permitted, regardless of 374eda14cbcSMatt Macy * the amount of free space. These are the operations that call 375eda14cbcSMatt Macy * dsl_sync_task(ZFS_SPACE_CHECK_NONE). If these operations result in a net 376eda14cbcSMatt Macy * increase in the amount of space used, it is possible to run the pool 377eda14cbcSMatt Macy * completely out of space, causing it to be permanently read-only. 378eda14cbcSMatt Macy * 379eda14cbcSMatt Macy * Note that on very small pools, the slop space will be larger than 380eda14cbcSMatt Macy * 3.2%, in an effort to have it be at least spa_min_slop (128MB), 381eda14cbcSMatt Macy * but we never allow it to be more than half the pool size. 382eda14cbcSMatt Macy * 383caed7b1cSMartin Matuska * Further, on very large pools, the slop space will be smaller than 384caed7b1cSMartin Matuska * 3.2%, to avoid reserving much more space than we actually need; bounded 385caed7b1cSMartin Matuska * by spa_max_slop (128GB). 386caed7b1cSMartin Matuska * 387eda14cbcSMatt Macy * See also the comments in zfs_space_check_t. 388eda14cbcSMatt Macy */ 389be181ee2SMartin Matuska uint_t spa_slop_shift = 5; 390e92ffd9bSMartin Matuska static const uint64_t spa_min_slop = 128ULL * 1024 * 1024; 391e92ffd9bSMartin Matuska static const uint64_t spa_max_slop = 128ULL * 1024 * 1024 * 1024; 39214c2e0a0SMartin Matuska 39314c2e0a0SMartin Matuska /* 39414c2e0a0SMartin Matuska * Number of allocators to use, per spa instance 39514c2e0a0SMartin Matuska */ 39614c2e0a0SMartin Matuska static int spa_num_allocators = 4; 397eda14cbcSMatt Macy 3982ad756a6SMartin Matuska /* 3992ad756a6SMartin Matuska * Spa active allocator. 4002ad756a6SMartin Matuska * Valid values are zfs_active_allocator=<dynamic|cursor|new-dynamic>. 4012ad756a6SMartin Matuska */ 4022ad756a6SMartin Matuska const char *zfs_active_allocator = "dynamic"; 403eda14cbcSMatt Macy 404eda14cbcSMatt Macy void 405eda14cbcSMatt Macy spa_load_failed(spa_t *spa, const char *fmt, ...) 406eda14cbcSMatt Macy { 407eda14cbcSMatt Macy va_list adx; 408eda14cbcSMatt Macy char buf[256]; 409eda14cbcSMatt Macy 410eda14cbcSMatt Macy va_start(adx, fmt); 411eda14cbcSMatt Macy (void) vsnprintf(buf, sizeof (buf), fmt, adx); 412eda14cbcSMatt Macy va_end(adx); 413eda14cbcSMatt Macy 414eda14cbcSMatt Macy zfs_dbgmsg("spa_load(%s, config %s): FAILED: %s", spa->spa_name, 415eda14cbcSMatt Macy spa->spa_trust_config ? "trusted" : "untrusted", buf); 416eda14cbcSMatt Macy } 417eda14cbcSMatt Macy 418eda14cbcSMatt Macy void 419eda14cbcSMatt Macy spa_load_note(spa_t *spa, const char *fmt, ...) 420eda14cbcSMatt Macy { 421eda14cbcSMatt Macy va_list adx; 422eda14cbcSMatt Macy char buf[256]; 423eda14cbcSMatt Macy 424eda14cbcSMatt Macy va_start(adx, fmt); 425eda14cbcSMatt Macy (void) vsnprintf(buf, sizeof (buf), fmt, adx); 426eda14cbcSMatt Macy va_end(adx); 427eda14cbcSMatt Macy 428eda14cbcSMatt Macy zfs_dbgmsg("spa_load(%s, config %s): %s", spa->spa_name, 429eda14cbcSMatt Macy spa->spa_trust_config ? "trusted" : "untrusted", buf); 4303494f7c0SMartin Matuska 4313494f7c0SMartin Matuska spa_import_progress_set_notes_nolog(spa, "%s", buf); 432eda14cbcSMatt Macy } 433eda14cbcSMatt Macy 434eda14cbcSMatt Macy /* 435eda14cbcSMatt Macy * By default dedup and user data indirects land in the special class 436eda14cbcSMatt Macy */ 437e92ffd9bSMartin Matuska static int zfs_ddt_data_is_special = B_TRUE; 438e92ffd9bSMartin Matuska static int zfs_user_indirect_is_special = B_TRUE; 439eda14cbcSMatt Macy 440eda14cbcSMatt Macy /* 441eda14cbcSMatt Macy * The percentage of special class final space reserved for metadata only. 442eda14cbcSMatt Macy * Once we allocate 100 - zfs_special_class_metadata_reserve_pct we only 443eda14cbcSMatt Macy * let metadata into the class. 444eda14cbcSMatt Macy */ 445be181ee2SMartin Matuska static uint_t zfs_special_class_metadata_reserve_pct = 25; 446eda14cbcSMatt Macy 447eda14cbcSMatt Macy /* 448eda14cbcSMatt Macy * ========================================================================== 449eda14cbcSMatt Macy * SPA config locking 450eda14cbcSMatt Macy * ========================================================================== 451eda14cbcSMatt Macy */ 452eda14cbcSMatt Macy static void 453eda14cbcSMatt Macy spa_config_lock_init(spa_t *spa) 454eda14cbcSMatt Macy { 455eda14cbcSMatt Macy for (int i = 0; i < SCL_LOCKS; i++) { 456eda14cbcSMatt Macy spa_config_lock_t *scl = &spa->spa_config_lock[i]; 457eda14cbcSMatt Macy mutex_init(&scl->scl_lock, NULL, MUTEX_DEFAULT, NULL); 458eda14cbcSMatt Macy cv_init(&scl->scl_cv, NULL, CV_DEFAULT, NULL); 459eda14cbcSMatt Macy scl->scl_writer = NULL; 460eda14cbcSMatt Macy scl->scl_write_wanted = 0; 4617cd22ac4SMartin Matuska scl->scl_count = 0; 462eda14cbcSMatt Macy } 463eda14cbcSMatt Macy } 464eda14cbcSMatt Macy 465eda14cbcSMatt Macy static void 466eda14cbcSMatt Macy spa_config_lock_destroy(spa_t *spa) 467eda14cbcSMatt Macy { 468eda14cbcSMatt Macy for (int i = 0; i < SCL_LOCKS; i++) { 469eda14cbcSMatt Macy spa_config_lock_t *scl = &spa->spa_config_lock[i]; 470eda14cbcSMatt Macy mutex_destroy(&scl->scl_lock); 471eda14cbcSMatt Macy cv_destroy(&scl->scl_cv); 472eda14cbcSMatt Macy ASSERT(scl->scl_writer == NULL); 473eda14cbcSMatt Macy ASSERT(scl->scl_write_wanted == 0); 4747cd22ac4SMartin Matuska ASSERT(scl->scl_count == 0); 475eda14cbcSMatt Macy } 476eda14cbcSMatt Macy } 477eda14cbcSMatt Macy 478eda14cbcSMatt Macy int 479a0b956f5SMartin Matuska spa_config_tryenter(spa_t *spa, int locks, const void *tag, krw_t rw) 480eda14cbcSMatt Macy { 481eda14cbcSMatt Macy for (int i = 0; i < SCL_LOCKS; i++) { 482eda14cbcSMatt Macy spa_config_lock_t *scl = &spa->spa_config_lock[i]; 483eda14cbcSMatt Macy if (!(locks & (1 << i))) 484eda14cbcSMatt Macy continue; 485eda14cbcSMatt Macy mutex_enter(&scl->scl_lock); 486eda14cbcSMatt Macy if (rw == RW_READER) { 487eda14cbcSMatt Macy if (scl->scl_writer || scl->scl_write_wanted) { 488eda14cbcSMatt Macy mutex_exit(&scl->scl_lock); 489eda14cbcSMatt Macy spa_config_exit(spa, locks & ((1 << i) - 1), 490eda14cbcSMatt Macy tag); 491eda14cbcSMatt Macy return (0); 492eda14cbcSMatt Macy } 493eda14cbcSMatt Macy } else { 494eda14cbcSMatt Macy ASSERT(scl->scl_writer != curthread); 4957cd22ac4SMartin Matuska if (scl->scl_count != 0) { 496eda14cbcSMatt Macy mutex_exit(&scl->scl_lock); 497eda14cbcSMatt Macy spa_config_exit(spa, locks & ((1 << i) - 1), 498eda14cbcSMatt Macy tag); 499eda14cbcSMatt Macy return (0); 500eda14cbcSMatt Macy } 501eda14cbcSMatt Macy scl->scl_writer = curthread; 502eda14cbcSMatt Macy } 5037cd22ac4SMartin Matuska scl->scl_count++; 504eda14cbcSMatt Macy mutex_exit(&scl->scl_lock); 505eda14cbcSMatt Macy } 506eda14cbcSMatt Macy return (1); 507eda14cbcSMatt Macy } 508eda14cbcSMatt Macy 509d411c1d6SMartin Matuska static void 510d411c1d6SMartin Matuska spa_config_enter_impl(spa_t *spa, int locks, const void *tag, krw_t rw, 511d411c1d6SMartin Matuska int mmp_flag) 512eda14cbcSMatt Macy { 513e92ffd9bSMartin Matuska (void) tag; 514eda14cbcSMatt Macy int wlocks_held = 0; 515eda14cbcSMatt Macy 516eda14cbcSMatt Macy ASSERT3U(SCL_LOCKS, <, sizeof (wlocks_held) * NBBY); 517eda14cbcSMatt Macy 518eda14cbcSMatt Macy for (int i = 0; i < SCL_LOCKS; i++) { 519eda14cbcSMatt Macy spa_config_lock_t *scl = &spa->spa_config_lock[i]; 520eda14cbcSMatt Macy if (scl->scl_writer == curthread) 521eda14cbcSMatt Macy wlocks_held |= (1 << i); 522eda14cbcSMatt Macy if (!(locks & (1 << i))) 523eda14cbcSMatt Macy continue; 524eda14cbcSMatt Macy mutex_enter(&scl->scl_lock); 525eda14cbcSMatt Macy if (rw == RW_READER) { 526d411c1d6SMartin Matuska while (scl->scl_writer || 527d411c1d6SMartin Matuska (!mmp_flag && scl->scl_write_wanted)) { 528eda14cbcSMatt Macy cv_wait(&scl->scl_cv, &scl->scl_lock); 529eda14cbcSMatt Macy } 530eda14cbcSMatt Macy } else { 531eda14cbcSMatt Macy ASSERT(scl->scl_writer != curthread); 5327cd22ac4SMartin Matuska while (scl->scl_count != 0) { 533eda14cbcSMatt Macy scl->scl_write_wanted++; 534eda14cbcSMatt Macy cv_wait(&scl->scl_cv, &scl->scl_lock); 535eda14cbcSMatt Macy scl->scl_write_wanted--; 536eda14cbcSMatt Macy } 537eda14cbcSMatt Macy scl->scl_writer = curthread; 538eda14cbcSMatt Macy } 5397cd22ac4SMartin Matuska scl->scl_count++; 540eda14cbcSMatt Macy mutex_exit(&scl->scl_lock); 541eda14cbcSMatt Macy } 542eda14cbcSMatt Macy ASSERT3U(wlocks_held, <=, locks); 543eda14cbcSMatt Macy } 544eda14cbcSMatt Macy 545eda14cbcSMatt Macy void 546d411c1d6SMartin Matuska spa_config_enter(spa_t *spa, int locks, const void *tag, krw_t rw) 547d411c1d6SMartin Matuska { 548d411c1d6SMartin Matuska spa_config_enter_impl(spa, locks, tag, rw, 0); 549d411c1d6SMartin Matuska } 550d411c1d6SMartin Matuska 551d411c1d6SMartin Matuska /* 552d411c1d6SMartin Matuska * The spa_config_enter_mmp() allows the mmp thread to cut in front of 553d411c1d6SMartin Matuska * outstanding write lock requests. This is needed since the mmp updates are 554d411c1d6SMartin Matuska * time sensitive and failure to service them promptly will result in a 555d411c1d6SMartin Matuska * suspended pool. This pool suspension has been seen in practice when there is 556d411c1d6SMartin Matuska * a single disk in a pool that is responding slowly and presumably about to 557d411c1d6SMartin Matuska * fail. 558d411c1d6SMartin Matuska */ 559d411c1d6SMartin Matuska 560d411c1d6SMartin Matuska void 561d411c1d6SMartin Matuska spa_config_enter_mmp(spa_t *spa, int locks, const void *tag, krw_t rw) 562d411c1d6SMartin Matuska { 563d411c1d6SMartin Matuska spa_config_enter_impl(spa, locks, tag, rw, 1); 564d411c1d6SMartin Matuska } 565d411c1d6SMartin Matuska 566d411c1d6SMartin Matuska void 567eda14cbcSMatt Macy spa_config_exit(spa_t *spa, int locks, const void *tag) 568eda14cbcSMatt Macy { 569e92ffd9bSMartin Matuska (void) tag; 570eda14cbcSMatt Macy for (int i = SCL_LOCKS - 1; i >= 0; i--) { 571eda14cbcSMatt Macy spa_config_lock_t *scl = &spa->spa_config_lock[i]; 572eda14cbcSMatt Macy if (!(locks & (1 << i))) 573eda14cbcSMatt Macy continue; 574eda14cbcSMatt Macy mutex_enter(&scl->scl_lock); 5757cd22ac4SMartin Matuska ASSERT(scl->scl_count > 0); 5767cd22ac4SMartin Matuska if (--scl->scl_count == 0) { 577eda14cbcSMatt Macy ASSERT(scl->scl_writer == NULL || 578eda14cbcSMatt Macy scl->scl_writer == curthread); 579eda14cbcSMatt Macy scl->scl_writer = NULL; /* OK in either case */ 580eda14cbcSMatt Macy cv_broadcast(&scl->scl_cv); 581eda14cbcSMatt Macy } 582eda14cbcSMatt Macy mutex_exit(&scl->scl_lock); 583eda14cbcSMatt Macy } 584eda14cbcSMatt Macy } 585eda14cbcSMatt Macy 586eda14cbcSMatt Macy int 587eda14cbcSMatt Macy spa_config_held(spa_t *spa, int locks, krw_t rw) 588eda14cbcSMatt Macy { 589eda14cbcSMatt Macy int locks_held = 0; 590eda14cbcSMatt Macy 591eda14cbcSMatt Macy for (int i = 0; i < SCL_LOCKS; i++) { 592eda14cbcSMatt Macy spa_config_lock_t *scl = &spa->spa_config_lock[i]; 593eda14cbcSMatt Macy if (!(locks & (1 << i))) 594eda14cbcSMatt Macy continue; 5957cd22ac4SMartin Matuska if ((rw == RW_READER && scl->scl_count != 0) || 596eda14cbcSMatt Macy (rw == RW_WRITER && scl->scl_writer == curthread)) 597eda14cbcSMatt Macy locks_held |= 1 << i; 598eda14cbcSMatt Macy } 599eda14cbcSMatt Macy 600eda14cbcSMatt Macy return (locks_held); 601eda14cbcSMatt Macy } 602eda14cbcSMatt Macy 603eda14cbcSMatt Macy /* 604eda14cbcSMatt Macy * ========================================================================== 605eda14cbcSMatt Macy * SPA namespace functions 606eda14cbcSMatt Macy * ========================================================================== 607eda14cbcSMatt Macy */ 608eda14cbcSMatt Macy 609eda14cbcSMatt Macy /* 610eda14cbcSMatt Macy * Lookup the named spa_t in the AVL tree. The spa_namespace_lock must be held. 611eda14cbcSMatt Macy * Returns NULL if no matching spa_t is found. 612eda14cbcSMatt Macy */ 613eda14cbcSMatt Macy spa_t * 614eda14cbcSMatt Macy spa_lookup(const char *name) 615eda14cbcSMatt Macy { 616eda14cbcSMatt Macy static spa_t search; /* spa_t is large; don't allocate on stack */ 617eda14cbcSMatt Macy spa_t *spa; 618eda14cbcSMatt Macy avl_index_t where; 619eda14cbcSMatt Macy char *cp; 620eda14cbcSMatt Macy 621eda14cbcSMatt Macy ASSERT(MUTEX_HELD(&spa_namespace_lock)); 622eda14cbcSMatt Macy 623*0d4ad640SMartin Matuska retry: 624eda14cbcSMatt Macy (void) strlcpy(search.spa_name, name, sizeof (search.spa_name)); 625eda14cbcSMatt Macy 626eda14cbcSMatt Macy /* 627eda14cbcSMatt Macy * If it's a full dataset name, figure out the pool name and 628eda14cbcSMatt Macy * just use that. 629eda14cbcSMatt Macy */ 630eda14cbcSMatt Macy cp = strpbrk(search.spa_name, "/@#"); 631eda14cbcSMatt Macy if (cp != NULL) 632eda14cbcSMatt Macy *cp = '\0'; 633eda14cbcSMatt Macy 634eda14cbcSMatt Macy spa = avl_find(&spa_namespace_avl, &search, &where); 635*0d4ad640SMartin Matuska if (spa == NULL) 636*0d4ad640SMartin Matuska return (NULL); 637*0d4ad640SMartin Matuska 638*0d4ad640SMartin Matuska if (spa->spa_load_thread != NULL && 639*0d4ad640SMartin Matuska spa->spa_load_thread != curthread) { 640*0d4ad640SMartin Matuska cv_wait(&spa_namespace_cv, &spa_namespace_lock); 641*0d4ad640SMartin Matuska goto retry; 642*0d4ad640SMartin Matuska } 643eda14cbcSMatt Macy 644eda14cbcSMatt Macy return (spa); 645eda14cbcSMatt Macy } 646eda14cbcSMatt Macy 647eda14cbcSMatt Macy /* 648eda14cbcSMatt Macy * Fires when spa_sync has not completed within zfs_deadman_synctime_ms. 649eda14cbcSMatt Macy * If the zfs_deadman_enabled flag is set then it inspects all vdev queues 650eda14cbcSMatt Macy * looking for potentially hung I/Os. 651eda14cbcSMatt Macy */ 652eda14cbcSMatt Macy void 653eda14cbcSMatt Macy spa_deadman(void *arg) 654eda14cbcSMatt Macy { 655eda14cbcSMatt Macy spa_t *spa = arg; 656eda14cbcSMatt Macy 657eda14cbcSMatt Macy /* Disable the deadman if the pool is suspended. */ 658eda14cbcSMatt Macy if (spa_suspended(spa)) 659eda14cbcSMatt Macy return; 660eda14cbcSMatt Macy 661eda14cbcSMatt Macy zfs_dbgmsg("slow spa_sync: started %llu seconds ago, calls %llu", 662eda14cbcSMatt Macy (gethrtime() - spa->spa_sync_starttime) / NANOSEC, 66333b8c039SMartin Matuska (u_longlong_t)++spa->spa_deadman_calls); 664eda14cbcSMatt Macy if (zfs_deadman_enabled) 665eda14cbcSMatt Macy vdev_deadman(spa->spa_root_vdev, FTAG); 666eda14cbcSMatt Macy 667eda14cbcSMatt Macy spa->spa_deadman_tqid = taskq_dispatch_delay(system_delay_taskq, 668eda14cbcSMatt Macy spa_deadman, spa, TQ_SLEEP, ddi_get_lbolt() + 669eda14cbcSMatt Macy MSEC_TO_TICK(zfs_deadman_checktime_ms)); 670eda14cbcSMatt Macy } 671eda14cbcSMatt Macy 672eda14cbcSMatt Macy static int 673eda14cbcSMatt Macy spa_log_sm_sort_by_txg(const void *va, const void *vb) 674eda14cbcSMatt Macy { 675eda14cbcSMatt Macy const spa_log_sm_t *a = va; 676eda14cbcSMatt Macy const spa_log_sm_t *b = vb; 677eda14cbcSMatt Macy 678eda14cbcSMatt Macy return (TREE_CMP(a->sls_txg, b->sls_txg)); 679eda14cbcSMatt Macy } 680eda14cbcSMatt Macy 681eda14cbcSMatt Macy /* 682eda14cbcSMatt Macy * Create an uninitialized spa_t with the given name. Requires 683eda14cbcSMatt Macy * spa_namespace_lock. The caller must ensure that the spa_t doesn't already 684eda14cbcSMatt Macy * exist by calling spa_lookup() first. 685eda14cbcSMatt Macy */ 686eda14cbcSMatt Macy spa_t * 687eda14cbcSMatt Macy spa_add(const char *name, nvlist_t *config, const char *altroot) 688eda14cbcSMatt Macy { 689eda14cbcSMatt Macy spa_t *spa; 690eda14cbcSMatt Macy spa_config_dirent_t *dp; 691eda14cbcSMatt Macy 692eda14cbcSMatt Macy ASSERT(MUTEX_HELD(&spa_namespace_lock)); 693eda14cbcSMatt Macy 694eda14cbcSMatt Macy spa = kmem_zalloc(sizeof (spa_t), KM_SLEEP); 695eda14cbcSMatt Macy 696eda14cbcSMatt Macy mutex_init(&spa->spa_async_lock, NULL, MUTEX_DEFAULT, NULL); 697eda14cbcSMatt Macy mutex_init(&spa->spa_errlist_lock, NULL, MUTEX_DEFAULT, NULL); 698eda14cbcSMatt Macy mutex_init(&spa->spa_errlog_lock, NULL, MUTEX_DEFAULT, NULL); 699eda14cbcSMatt Macy mutex_init(&spa->spa_evicting_os_lock, NULL, MUTEX_DEFAULT, NULL); 700eda14cbcSMatt Macy mutex_init(&spa->spa_history_lock, NULL, MUTEX_DEFAULT, NULL); 701eda14cbcSMatt Macy mutex_init(&spa->spa_proc_lock, NULL, MUTEX_DEFAULT, NULL); 702eda14cbcSMatt Macy mutex_init(&spa->spa_props_lock, NULL, MUTEX_DEFAULT, NULL); 703eda14cbcSMatt Macy mutex_init(&spa->spa_cksum_tmpls_lock, NULL, MUTEX_DEFAULT, NULL); 704eda14cbcSMatt Macy mutex_init(&spa->spa_scrub_lock, NULL, MUTEX_DEFAULT, NULL); 705eda14cbcSMatt Macy mutex_init(&spa->spa_suspend_lock, NULL, MUTEX_DEFAULT, NULL); 706eda14cbcSMatt Macy mutex_init(&spa->spa_vdev_top_lock, NULL, MUTEX_DEFAULT, NULL); 707eda14cbcSMatt Macy mutex_init(&spa->spa_feat_stats_lock, NULL, MUTEX_DEFAULT, NULL); 708eda14cbcSMatt Macy mutex_init(&spa->spa_flushed_ms_lock, NULL, MUTEX_DEFAULT, NULL); 709eda14cbcSMatt Macy mutex_init(&spa->spa_activities_lock, NULL, MUTEX_DEFAULT, NULL); 710eda14cbcSMatt Macy 711eda14cbcSMatt Macy cv_init(&spa->spa_async_cv, NULL, CV_DEFAULT, NULL); 712eda14cbcSMatt Macy cv_init(&spa->spa_evicting_os_cv, NULL, CV_DEFAULT, NULL); 713eda14cbcSMatt Macy cv_init(&spa->spa_proc_cv, NULL, CV_DEFAULT, NULL); 714eda14cbcSMatt Macy cv_init(&spa->spa_scrub_io_cv, NULL, CV_DEFAULT, NULL); 715eda14cbcSMatt Macy cv_init(&spa->spa_suspend_cv, NULL, CV_DEFAULT, NULL); 716eda14cbcSMatt Macy cv_init(&spa->spa_activities_cv, NULL, CV_DEFAULT, NULL); 717eda14cbcSMatt Macy cv_init(&spa->spa_waiters_cv, NULL, CV_DEFAULT, NULL); 718eda14cbcSMatt Macy 719eda14cbcSMatt Macy for (int t = 0; t < TXG_SIZE; t++) 720eda14cbcSMatt Macy bplist_create(&spa->spa_free_bplist[t]); 721eda14cbcSMatt Macy 722eda14cbcSMatt Macy (void) strlcpy(spa->spa_name, name, sizeof (spa->spa_name)); 723eda14cbcSMatt Macy spa->spa_state = POOL_STATE_UNINITIALIZED; 724eda14cbcSMatt Macy spa->spa_freeze_txg = UINT64_MAX; 725eda14cbcSMatt Macy spa->spa_final_txg = UINT64_MAX; 726eda14cbcSMatt Macy spa->spa_load_max_txg = UINT64_MAX; 727eda14cbcSMatt Macy spa->spa_proc = &p0; 728eda14cbcSMatt Macy spa->spa_proc_state = SPA_PROC_NONE; 729eda14cbcSMatt Macy spa->spa_trust_config = B_TRUE; 730eda14cbcSMatt Macy spa->spa_hostid = zone_get_hostid(NULL); 731eda14cbcSMatt Macy 732eda14cbcSMatt Macy spa->spa_deadman_synctime = MSEC2NSEC(zfs_deadman_synctime_ms); 733eda14cbcSMatt Macy spa->spa_deadman_ziotime = MSEC2NSEC(zfs_deadman_ziotime_ms); 734eda14cbcSMatt Macy spa_set_deadman_failmode(spa, zfs_deadman_failmode); 7352ad756a6SMartin Matuska spa_set_allocator(spa, zfs_active_allocator); 736eda14cbcSMatt Macy 737eda14cbcSMatt Macy zfs_refcount_create(&spa->spa_refcount); 738eda14cbcSMatt Macy spa_config_lock_init(spa); 739eda14cbcSMatt Macy spa_stats_init(spa); 740eda14cbcSMatt Macy 741*0d4ad640SMartin Matuska ASSERT(MUTEX_HELD(&spa_namespace_lock)); 742eda14cbcSMatt Macy avl_add(&spa_namespace_avl, spa); 743eda14cbcSMatt Macy 744eda14cbcSMatt Macy /* 745eda14cbcSMatt Macy * Set the alternate root, if there is one. 746eda14cbcSMatt Macy */ 747eda14cbcSMatt Macy if (altroot) 748eda14cbcSMatt Macy spa->spa_root = spa_strdup(altroot); 749eda14cbcSMatt Macy 75014c2e0a0SMartin Matuska /* Do not allow more allocators than CPUs. */ 75114c2e0a0SMartin Matuska spa->spa_alloc_count = MIN(MAX(spa_num_allocators, 1), boot_ncpus); 75214c2e0a0SMartin Matuska 7533f9d360cSMartin Matuska spa->spa_allocs = kmem_zalloc(spa->spa_alloc_count * 7543f9d360cSMartin Matuska sizeof (spa_alloc_t), KM_SLEEP); 755eda14cbcSMatt Macy for (int i = 0; i < spa->spa_alloc_count; i++) { 7563f9d360cSMartin Matuska mutex_init(&spa->spa_allocs[i].spaa_lock, NULL, MUTEX_DEFAULT, 7573f9d360cSMartin Matuska NULL); 7583f9d360cSMartin Matuska avl_create(&spa->spa_allocs[i].spaa_tree, zio_bookmark_compare, 7597b5e6873SMartin Matuska sizeof (zio_t), offsetof(zio_t, io_queue_node.a)); 760eda14cbcSMatt Macy } 76114c2e0a0SMartin Matuska 762eda14cbcSMatt Macy avl_create(&spa->spa_metaslabs_by_flushed, metaslab_sort_by_flushed, 763eda14cbcSMatt Macy sizeof (metaslab_t), offsetof(metaslab_t, ms_spa_txg_node)); 764eda14cbcSMatt Macy avl_create(&spa->spa_sm_logs_by_txg, spa_log_sm_sort_by_txg, 765eda14cbcSMatt Macy sizeof (spa_log_sm_t), offsetof(spa_log_sm_t, sls_node)); 766eda14cbcSMatt Macy list_create(&spa->spa_log_summary, sizeof (log_summary_entry_t), 767eda14cbcSMatt Macy offsetof(log_summary_entry_t, lse_node)); 768eda14cbcSMatt Macy 769eda14cbcSMatt Macy /* 770eda14cbcSMatt Macy * Every pool starts with the default cachefile 771eda14cbcSMatt Macy */ 772eda14cbcSMatt Macy list_create(&spa->spa_config_list, sizeof (spa_config_dirent_t), 773eda14cbcSMatt Macy offsetof(spa_config_dirent_t, scd_link)); 774eda14cbcSMatt Macy 775eda14cbcSMatt Macy dp = kmem_zalloc(sizeof (spa_config_dirent_t), KM_SLEEP); 776eda14cbcSMatt Macy dp->scd_path = altroot ? NULL : spa_strdup(spa_config_path); 777eda14cbcSMatt Macy list_insert_head(&spa->spa_config_list, dp); 778eda14cbcSMatt Macy 779eda14cbcSMatt Macy VERIFY(nvlist_alloc(&spa->spa_load_info, NV_UNIQUE_NAME, 780eda14cbcSMatt Macy KM_SLEEP) == 0); 781eda14cbcSMatt Macy 782eda14cbcSMatt Macy if (config != NULL) { 783eda14cbcSMatt Macy nvlist_t *features; 784eda14cbcSMatt Macy 785eda14cbcSMatt Macy if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_FEATURES_FOR_READ, 786eda14cbcSMatt Macy &features) == 0) { 787eda14cbcSMatt Macy VERIFY(nvlist_dup(features, &spa->spa_label_features, 788eda14cbcSMatt Macy 0) == 0); 789eda14cbcSMatt Macy } 790eda14cbcSMatt Macy 791eda14cbcSMatt Macy VERIFY(nvlist_dup(config, &spa->spa_config, 0) == 0); 792eda14cbcSMatt Macy } 793eda14cbcSMatt Macy 794eda14cbcSMatt Macy if (spa->spa_label_features == NULL) { 795eda14cbcSMatt Macy VERIFY(nvlist_alloc(&spa->spa_label_features, NV_UNIQUE_NAME, 796eda14cbcSMatt Macy KM_SLEEP) == 0); 797eda14cbcSMatt Macy } 798eda14cbcSMatt Macy 799eda14cbcSMatt Macy spa->spa_min_ashift = INT_MAX; 800eda14cbcSMatt Macy spa->spa_max_ashift = 0; 8017877fdebSMatt Macy spa->spa_min_alloc = INT_MAX; 802315ee00fSMartin Matuska spa->spa_gcd_alloc = INT_MAX; 803eda14cbcSMatt Macy 804eda14cbcSMatt Macy /* Reset cached value */ 805eda14cbcSMatt Macy spa->spa_dedup_dspace = ~0ULL; 806eda14cbcSMatt Macy 807eda14cbcSMatt Macy /* 808eda14cbcSMatt Macy * As a pool is being created, treat all features as disabled by 809eda14cbcSMatt Macy * setting SPA_FEATURE_DISABLED for all entries in the feature 810eda14cbcSMatt Macy * refcount cache. 811eda14cbcSMatt Macy */ 812eda14cbcSMatt Macy for (int i = 0; i < SPA_FEATURES; i++) { 813eda14cbcSMatt Macy spa->spa_feat_refcount_cache[i] = SPA_FEATURE_DISABLED; 814eda14cbcSMatt Macy } 815eda14cbcSMatt Macy 816eda14cbcSMatt Macy list_create(&spa->spa_leaf_list, sizeof (vdev_t), 817eda14cbcSMatt Macy offsetof(vdev_t, vdev_leaf_node)); 818eda14cbcSMatt Macy 819eda14cbcSMatt Macy return (spa); 820eda14cbcSMatt Macy } 821eda14cbcSMatt Macy 822eda14cbcSMatt Macy /* 823eda14cbcSMatt Macy * Removes a spa_t from the namespace, freeing up any memory used. Requires 824eda14cbcSMatt Macy * spa_namespace_lock. This is called only after the spa_t has been closed and 825eda14cbcSMatt Macy * deactivated. 826eda14cbcSMatt Macy */ 827eda14cbcSMatt Macy void 828eda14cbcSMatt Macy spa_remove(spa_t *spa) 829eda14cbcSMatt Macy { 830eda14cbcSMatt Macy spa_config_dirent_t *dp; 831eda14cbcSMatt Macy 832eda14cbcSMatt Macy ASSERT(MUTEX_HELD(&spa_namespace_lock)); 833eda14cbcSMatt Macy ASSERT(spa_state(spa) == POOL_STATE_UNINITIALIZED); 834eda14cbcSMatt Macy ASSERT3U(zfs_refcount_count(&spa->spa_refcount), ==, 0); 835eda14cbcSMatt Macy ASSERT0(spa->spa_waiters); 836eda14cbcSMatt Macy 837eda14cbcSMatt Macy nvlist_free(spa->spa_config_splitting); 838eda14cbcSMatt Macy 839eda14cbcSMatt Macy avl_remove(&spa_namespace_avl, spa); 840eda14cbcSMatt Macy 841eda14cbcSMatt Macy if (spa->spa_root) 842eda14cbcSMatt Macy spa_strfree(spa->spa_root); 843eda14cbcSMatt Macy 8444e8d558cSMartin Matuska while ((dp = list_remove_head(&spa->spa_config_list)) != NULL) { 845eda14cbcSMatt Macy if (dp->scd_path != NULL) 846eda14cbcSMatt Macy spa_strfree(dp->scd_path); 847eda14cbcSMatt Macy kmem_free(dp, sizeof (spa_config_dirent_t)); 848eda14cbcSMatt Macy } 849eda14cbcSMatt Macy 850eda14cbcSMatt Macy for (int i = 0; i < spa->spa_alloc_count; i++) { 8513f9d360cSMartin Matuska avl_destroy(&spa->spa_allocs[i].spaa_tree); 8523f9d360cSMartin Matuska mutex_destroy(&spa->spa_allocs[i].spaa_lock); 853eda14cbcSMatt Macy } 8543f9d360cSMartin Matuska kmem_free(spa->spa_allocs, spa->spa_alloc_count * 8553f9d360cSMartin Matuska sizeof (spa_alloc_t)); 856eda14cbcSMatt Macy 857eda14cbcSMatt Macy avl_destroy(&spa->spa_metaslabs_by_flushed); 858eda14cbcSMatt Macy avl_destroy(&spa->spa_sm_logs_by_txg); 859eda14cbcSMatt Macy list_destroy(&spa->spa_log_summary); 860eda14cbcSMatt Macy list_destroy(&spa->spa_config_list); 861eda14cbcSMatt Macy list_destroy(&spa->spa_leaf_list); 862eda14cbcSMatt Macy 863eda14cbcSMatt Macy nvlist_free(spa->spa_label_features); 864eda14cbcSMatt Macy nvlist_free(spa->spa_load_info); 865eda14cbcSMatt Macy nvlist_free(spa->spa_feat_stats); 866eda14cbcSMatt Macy spa_config_set(spa, NULL); 867eda14cbcSMatt Macy 868eda14cbcSMatt Macy zfs_refcount_destroy(&spa->spa_refcount); 869eda14cbcSMatt Macy 870eda14cbcSMatt Macy spa_stats_destroy(spa); 871eda14cbcSMatt Macy spa_config_lock_destroy(spa); 872eda14cbcSMatt Macy 873eda14cbcSMatt Macy for (int t = 0; t < TXG_SIZE; t++) 874eda14cbcSMatt Macy bplist_destroy(&spa->spa_free_bplist[t]); 875eda14cbcSMatt Macy 876eda14cbcSMatt Macy zio_checksum_templates_free(spa); 877eda14cbcSMatt Macy 878eda14cbcSMatt Macy cv_destroy(&spa->spa_async_cv); 879eda14cbcSMatt Macy cv_destroy(&spa->spa_evicting_os_cv); 880eda14cbcSMatt Macy cv_destroy(&spa->spa_proc_cv); 881eda14cbcSMatt Macy cv_destroy(&spa->spa_scrub_io_cv); 882eda14cbcSMatt Macy cv_destroy(&spa->spa_suspend_cv); 883eda14cbcSMatt Macy cv_destroy(&spa->spa_activities_cv); 884eda14cbcSMatt Macy cv_destroy(&spa->spa_waiters_cv); 885eda14cbcSMatt Macy 886eda14cbcSMatt Macy mutex_destroy(&spa->spa_flushed_ms_lock); 887eda14cbcSMatt Macy mutex_destroy(&spa->spa_async_lock); 888eda14cbcSMatt Macy mutex_destroy(&spa->spa_errlist_lock); 889eda14cbcSMatt Macy mutex_destroy(&spa->spa_errlog_lock); 890eda14cbcSMatt Macy mutex_destroy(&spa->spa_evicting_os_lock); 891eda14cbcSMatt Macy mutex_destroy(&spa->spa_history_lock); 892eda14cbcSMatt Macy mutex_destroy(&spa->spa_proc_lock); 893eda14cbcSMatt Macy mutex_destroy(&spa->spa_props_lock); 894eda14cbcSMatt Macy mutex_destroy(&spa->spa_cksum_tmpls_lock); 895eda14cbcSMatt Macy mutex_destroy(&spa->spa_scrub_lock); 896eda14cbcSMatt Macy mutex_destroy(&spa->spa_suspend_lock); 897eda14cbcSMatt Macy mutex_destroy(&spa->spa_vdev_top_lock); 898eda14cbcSMatt Macy mutex_destroy(&spa->spa_feat_stats_lock); 899eda14cbcSMatt Macy mutex_destroy(&spa->spa_activities_lock); 900eda14cbcSMatt Macy 901eda14cbcSMatt Macy kmem_free(spa, sizeof (spa_t)); 902eda14cbcSMatt Macy } 903eda14cbcSMatt Macy 904eda14cbcSMatt Macy /* 905eda14cbcSMatt Macy * Given a pool, return the next pool in the namespace, or NULL if there is 906eda14cbcSMatt Macy * none. If 'prev' is NULL, return the first pool. 907eda14cbcSMatt Macy */ 908eda14cbcSMatt Macy spa_t * 909eda14cbcSMatt Macy spa_next(spa_t *prev) 910eda14cbcSMatt Macy { 911eda14cbcSMatt Macy ASSERT(MUTEX_HELD(&spa_namespace_lock)); 912eda14cbcSMatt Macy 913eda14cbcSMatt Macy if (prev) 914eda14cbcSMatt Macy return (AVL_NEXT(&spa_namespace_avl, prev)); 915eda14cbcSMatt Macy else 916eda14cbcSMatt Macy return (avl_first(&spa_namespace_avl)); 917eda14cbcSMatt Macy } 918eda14cbcSMatt Macy 919eda14cbcSMatt Macy /* 920eda14cbcSMatt Macy * ========================================================================== 921eda14cbcSMatt Macy * SPA refcount functions 922eda14cbcSMatt Macy * ========================================================================== 923eda14cbcSMatt Macy */ 924eda14cbcSMatt Macy 925eda14cbcSMatt Macy /* 926eda14cbcSMatt Macy * Add a reference to the given spa_t. Must have at least one reference, or 927eda14cbcSMatt Macy * have the namespace lock held. 928eda14cbcSMatt Macy */ 929eda14cbcSMatt Macy void 930a0b956f5SMartin Matuska spa_open_ref(spa_t *spa, const void *tag) 931eda14cbcSMatt Macy { 932eda14cbcSMatt Macy ASSERT(zfs_refcount_count(&spa->spa_refcount) >= spa->spa_minref || 933*0d4ad640SMartin Matuska MUTEX_HELD(&spa_namespace_lock) || 934*0d4ad640SMartin Matuska spa->spa_load_thread == curthread); 935eda14cbcSMatt Macy (void) zfs_refcount_add(&spa->spa_refcount, tag); 936eda14cbcSMatt Macy } 937eda14cbcSMatt Macy 938eda14cbcSMatt Macy /* 939eda14cbcSMatt Macy * Remove a reference to the given spa_t. Must have at least one reference, or 940eda14cbcSMatt Macy * have the namespace lock held. 941eda14cbcSMatt Macy */ 942eda14cbcSMatt Macy void 943a0b956f5SMartin Matuska spa_close(spa_t *spa, const void *tag) 944eda14cbcSMatt Macy { 945eda14cbcSMatt Macy ASSERT(zfs_refcount_count(&spa->spa_refcount) > spa->spa_minref || 946*0d4ad640SMartin Matuska MUTEX_HELD(&spa_namespace_lock) || 947*0d4ad640SMartin Matuska spa->spa_load_thread == curthread); 948eda14cbcSMatt Macy (void) zfs_refcount_remove(&spa->spa_refcount, tag); 949eda14cbcSMatt Macy } 950eda14cbcSMatt Macy 951eda14cbcSMatt Macy /* 952eda14cbcSMatt Macy * Remove a reference to the given spa_t held by a dsl dir that is 953eda14cbcSMatt Macy * being asynchronously released. Async releases occur from a taskq 954eda14cbcSMatt Macy * performing eviction of dsl datasets and dirs. The namespace lock 955eda14cbcSMatt Macy * isn't held and the hold by the object being evicted may contribute to 956eda14cbcSMatt Macy * spa_minref (e.g. dataset or directory released during pool export), 957eda14cbcSMatt Macy * so the asserts in spa_close() do not apply. 958eda14cbcSMatt Macy */ 959eda14cbcSMatt Macy void 960a0b956f5SMartin Matuska spa_async_close(spa_t *spa, const void *tag) 961eda14cbcSMatt Macy { 962eda14cbcSMatt Macy (void) zfs_refcount_remove(&spa->spa_refcount, tag); 963eda14cbcSMatt Macy } 964eda14cbcSMatt Macy 965eda14cbcSMatt Macy /* 966eda14cbcSMatt Macy * Check to see if the spa refcount is zero. Must be called with 967eda14cbcSMatt Macy * spa_namespace_lock held. We really compare against spa_minref, which is the 968eda14cbcSMatt Macy * number of references acquired when opening a pool 969eda14cbcSMatt Macy */ 970eda14cbcSMatt Macy boolean_t 971eda14cbcSMatt Macy spa_refcount_zero(spa_t *spa) 972eda14cbcSMatt Macy { 973eda14cbcSMatt Macy ASSERT(MUTEX_HELD(&spa_namespace_lock)); 974eda14cbcSMatt Macy 975eda14cbcSMatt Macy return (zfs_refcount_count(&spa->spa_refcount) == spa->spa_minref); 976eda14cbcSMatt Macy } 977eda14cbcSMatt Macy 978eda14cbcSMatt Macy /* 979eda14cbcSMatt Macy * ========================================================================== 980eda14cbcSMatt Macy * SPA spare and l2cache tracking 981eda14cbcSMatt Macy * ========================================================================== 982eda14cbcSMatt Macy */ 983eda14cbcSMatt Macy 984eda14cbcSMatt Macy /* 985eda14cbcSMatt Macy * Hot spares and cache devices are tracked using the same code below, 986eda14cbcSMatt Macy * for 'auxiliary' devices. 987eda14cbcSMatt Macy */ 988eda14cbcSMatt Macy 989eda14cbcSMatt Macy typedef struct spa_aux { 990eda14cbcSMatt Macy uint64_t aux_guid; 991eda14cbcSMatt Macy uint64_t aux_pool; 992eda14cbcSMatt Macy avl_node_t aux_avl; 993eda14cbcSMatt Macy int aux_count; 994eda14cbcSMatt Macy } spa_aux_t; 995eda14cbcSMatt Macy 996eda14cbcSMatt Macy static inline int 997eda14cbcSMatt Macy spa_aux_compare(const void *a, const void *b) 998eda14cbcSMatt Macy { 999eda14cbcSMatt Macy const spa_aux_t *sa = (const spa_aux_t *)a; 1000eda14cbcSMatt Macy const spa_aux_t *sb = (const spa_aux_t *)b; 1001eda14cbcSMatt Macy 1002eda14cbcSMatt Macy return (TREE_CMP(sa->aux_guid, sb->aux_guid)); 1003eda14cbcSMatt Macy } 1004eda14cbcSMatt Macy 1005eda14cbcSMatt Macy static void 1006eda14cbcSMatt Macy spa_aux_add(vdev_t *vd, avl_tree_t *avl) 1007eda14cbcSMatt Macy { 1008eda14cbcSMatt Macy avl_index_t where; 1009eda14cbcSMatt Macy spa_aux_t search; 1010eda14cbcSMatt Macy spa_aux_t *aux; 1011eda14cbcSMatt Macy 1012eda14cbcSMatt Macy search.aux_guid = vd->vdev_guid; 1013eda14cbcSMatt Macy if ((aux = avl_find(avl, &search, &where)) != NULL) { 1014eda14cbcSMatt Macy aux->aux_count++; 1015eda14cbcSMatt Macy } else { 1016eda14cbcSMatt Macy aux = kmem_zalloc(sizeof (spa_aux_t), KM_SLEEP); 1017eda14cbcSMatt Macy aux->aux_guid = vd->vdev_guid; 1018eda14cbcSMatt Macy aux->aux_count = 1; 1019eda14cbcSMatt Macy avl_insert(avl, aux, where); 1020eda14cbcSMatt Macy } 1021eda14cbcSMatt Macy } 1022eda14cbcSMatt Macy 1023eda14cbcSMatt Macy static void 1024eda14cbcSMatt Macy spa_aux_remove(vdev_t *vd, avl_tree_t *avl) 1025eda14cbcSMatt Macy { 1026eda14cbcSMatt Macy spa_aux_t search; 1027eda14cbcSMatt Macy spa_aux_t *aux; 1028eda14cbcSMatt Macy avl_index_t where; 1029eda14cbcSMatt Macy 1030eda14cbcSMatt Macy search.aux_guid = vd->vdev_guid; 1031eda14cbcSMatt Macy aux = avl_find(avl, &search, &where); 1032eda14cbcSMatt Macy 1033eda14cbcSMatt Macy ASSERT(aux != NULL); 1034eda14cbcSMatt Macy 1035eda14cbcSMatt Macy if (--aux->aux_count == 0) { 1036eda14cbcSMatt Macy avl_remove(avl, aux); 1037eda14cbcSMatt Macy kmem_free(aux, sizeof (spa_aux_t)); 1038eda14cbcSMatt Macy } else if (aux->aux_pool == spa_guid(vd->vdev_spa)) { 1039eda14cbcSMatt Macy aux->aux_pool = 0ULL; 1040eda14cbcSMatt Macy } 1041eda14cbcSMatt Macy } 1042eda14cbcSMatt Macy 1043eda14cbcSMatt Macy static boolean_t 1044eda14cbcSMatt Macy spa_aux_exists(uint64_t guid, uint64_t *pool, int *refcnt, avl_tree_t *avl) 1045eda14cbcSMatt Macy { 1046eda14cbcSMatt Macy spa_aux_t search, *found; 1047eda14cbcSMatt Macy 1048eda14cbcSMatt Macy search.aux_guid = guid; 1049eda14cbcSMatt Macy found = avl_find(avl, &search, NULL); 1050eda14cbcSMatt Macy 1051eda14cbcSMatt Macy if (pool) { 1052eda14cbcSMatt Macy if (found) 1053eda14cbcSMatt Macy *pool = found->aux_pool; 1054eda14cbcSMatt Macy else 1055eda14cbcSMatt Macy *pool = 0ULL; 1056eda14cbcSMatt Macy } 1057eda14cbcSMatt Macy 1058eda14cbcSMatt Macy if (refcnt) { 1059eda14cbcSMatt Macy if (found) 1060eda14cbcSMatt Macy *refcnt = found->aux_count; 1061eda14cbcSMatt Macy else 1062eda14cbcSMatt Macy *refcnt = 0; 1063eda14cbcSMatt Macy } 1064eda14cbcSMatt Macy 1065eda14cbcSMatt Macy return (found != NULL); 1066eda14cbcSMatt Macy } 1067eda14cbcSMatt Macy 1068eda14cbcSMatt Macy static void 1069eda14cbcSMatt Macy spa_aux_activate(vdev_t *vd, avl_tree_t *avl) 1070eda14cbcSMatt Macy { 1071eda14cbcSMatt Macy spa_aux_t search, *found; 1072eda14cbcSMatt Macy avl_index_t where; 1073eda14cbcSMatt Macy 1074eda14cbcSMatt Macy search.aux_guid = vd->vdev_guid; 1075eda14cbcSMatt Macy found = avl_find(avl, &search, &where); 1076eda14cbcSMatt Macy ASSERT(found != NULL); 1077eda14cbcSMatt Macy ASSERT(found->aux_pool == 0ULL); 1078eda14cbcSMatt Macy 1079eda14cbcSMatt Macy found->aux_pool = spa_guid(vd->vdev_spa); 1080eda14cbcSMatt Macy } 1081eda14cbcSMatt Macy 1082eda14cbcSMatt Macy /* 1083eda14cbcSMatt Macy * Spares are tracked globally due to the following constraints: 1084eda14cbcSMatt Macy * 1085eda14cbcSMatt Macy * - A spare may be part of multiple pools. 1086eda14cbcSMatt Macy * - A spare may be added to a pool even if it's actively in use within 1087eda14cbcSMatt Macy * another pool. 1088eda14cbcSMatt Macy * - A spare in use in any pool can only be the source of a replacement if 1089eda14cbcSMatt Macy * the target is a spare in the same pool. 1090eda14cbcSMatt Macy * 1091eda14cbcSMatt Macy * We keep track of all spares on the system through the use of a reference 1092eda14cbcSMatt Macy * counted AVL tree. When a vdev is added as a spare, or used as a replacement 1093eda14cbcSMatt Macy * spare, then we bump the reference count in the AVL tree. In addition, we set 1094eda14cbcSMatt Macy * the 'vdev_isspare' member to indicate that the device is a spare (active or 1095eda14cbcSMatt Macy * inactive). When a spare is made active (used to replace a device in the 1096eda14cbcSMatt Macy * pool), we also keep track of which pool its been made a part of. 1097eda14cbcSMatt Macy * 1098eda14cbcSMatt Macy * The 'spa_spare_lock' protects the AVL tree. These functions are normally 1099eda14cbcSMatt Macy * called under the spa_namespace lock as part of vdev reconfiguration. The 1100eda14cbcSMatt Macy * separate spare lock exists for the status query path, which does not need to 1101eda14cbcSMatt Macy * be completely consistent with respect to other vdev configuration changes. 1102eda14cbcSMatt Macy */ 1103eda14cbcSMatt Macy 1104eda14cbcSMatt Macy static int 1105eda14cbcSMatt Macy spa_spare_compare(const void *a, const void *b) 1106eda14cbcSMatt Macy { 1107eda14cbcSMatt Macy return (spa_aux_compare(a, b)); 1108eda14cbcSMatt Macy } 1109eda14cbcSMatt Macy 1110eda14cbcSMatt Macy void 1111eda14cbcSMatt Macy spa_spare_add(vdev_t *vd) 1112eda14cbcSMatt Macy { 1113eda14cbcSMatt Macy mutex_enter(&spa_spare_lock); 1114eda14cbcSMatt Macy ASSERT(!vd->vdev_isspare); 1115eda14cbcSMatt Macy spa_aux_add(vd, &spa_spare_avl); 1116eda14cbcSMatt Macy vd->vdev_isspare = B_TRUE; 1117eda14cbcSMatt Macy mutex_exit(&spa_spare_lock); 1118eda14cbcSMatt Macy } 1119eda14cbcSMatt Macy 1120eda14cbcSMatt Macy void 1121eda14cbcSMatt Macy spa_spare_remove(vdev_t *vd) 1122eda14cbcSMatt Macy { 1123eda14cbcSMatt Macy mutex_enter(&spa_spare_lock); 1124eda14cbcSMatt Macy ASSERT(vd->vdev_isspare); 1125eda14cbcSMatt Macy spa_aux_remove(vd, &spa_spare_avl); 1126eda14cbcSMatt Macy vd->vdev_isspare = B_FALSE; 1127eda14cbcSMatt Macy mutex_exit(&spa_spare_lock); 1128eda14cbcSMatt Macy } 1129eda14cbcSMatt Macy 1130eda14cbcSMatt Macy boolean_t 1131eda14cbcSMatt Macy spa_spare_exists(uint64_t guid, uint64_t *pool, int *refcnt) 1132eda14cbcSMatt Macy { 1133eda14cbcSMatt Macy boolean_t found; 1134eda14cbcSMatt Macy 1135eda14cbcSMatt Macy mutex_enter(&spa_spare_lock); 1136eda14cbcSMatt Macy found = spa_aux_exists(guid, pool, refcnt, &spa_spare_avl); 1137eda14cbcSMatt Macy mutex_exit(&spa_spare_lock); 1138eda14cbcSMatt Macy 1139eda14cbcSMatt Macy return (found); 1140eda14cbcSMatt Macy } 1141eda14cbcSMatt Macy 1142eda14cbcSMatt Macy void 1143eda14cbcSMatt Macy spa_spare_activate(vdev_t *vd) 1144eda14cbcSMatt Macy { 1145eda14cbcSMatt Macy mutex_enter(&spa_spare_lock); 1146eda14cbcSMatt Macy ASSERT(vd->vdev_isspare); 1147eda14cbcSMatt Macy spa_aux_activate(vd, &spa_spare_avl); 1148eda14cbcSMatt Macy mutex_exit(&spa_spare_lock); 1149eda14cbcSMatt Macy } 1150eda14cbcSMatt Macy 1151eda14cbcSMatt Macy /* 1152eda14cbcSMatt Macy * Level 2 ARC devices are tracked globally for the same reasons as spares. 1153eda14cbcSMatt Macy * Cache devices currently only support one pool per cache device, and so 1154eda14cbcSMatt Macy * for these devices the aux reference count is currently unused beyond 1. 1155eda14cbcSMatt Macy */ 1156eda14cbcSMatt Macy 1157eda14cbcSMatt Macy static int 1158eda14cbcSMatt Macy spa_l2cache_compare(const void *a, const void *b) 1159eda14cbcSMatt Macy { 1160eda14cbcSMatt Macy return (spa_aux_compare(a, b)); 1161eda14cbcSMatt Macy } 1162eda14cbcSMatt Macy 1163eda14cbcSMatt Macy void 1164eda14cbcSMatt Macy spa_l2cache_add(vdev_t *vd) 1165eda14cbcSMatt Macy { 1166eda14cbcSMatt Macy mutex_enter(&spa_l2cache_lock); 1167eda14cbcSMatt Macy ASSERT(!vd->vdev_isl2cache); 1168eda14cbcSMatt Macy spa_aux_add(vd, &spa_l2cache_avl); 1169eda14cbcSMatt Macy vd->vdev_isl2cache = B_TRUE; 1170eda14cbcSMatt Macy mutex_exit(&spa_l2cache_lock); 1171eda14cbcSMatt Macy } 1172eda14cbcSMatt Macy 1173eda14cbcSMatt Macy void 1174eda14cbcSMatt Macy spa_l2cache_remove(vdev_t *vd) 1175eda14cbcSMatt Macy { 1176eda14cbcSMatt Macy mutex_enter(&spa_l2cache_lock); 1177eda14cbcSMatt Macy ASSERT(vd->vdev_isl2cache); 1178eda14cbcSMatt Macy spa_aux_remove(vd, &spa_l2cache_avl); 1179eda14cbcSMatt Macy vd->vdev_isl2cache = B_FALSE; 1180eda14cbcSMatt Macy mutex_exit(&spa_l2cache_lock); 1181eda14cbcSMatt Macy } 1182eda14cbcSMatt Macy 1183eda14cbcSMatt Macy boolean_t 1184eda14cbcSMatt Macy spa_l2cache_exists(uint64_t guid, uint64_t *pool) 1185eda14cbcSMatt Macy { 1186eda14cbcSMatt Macy boolean_t found; 1187eda14cbcSMatt Macy 1188eda14cbcSMatt Macy mutex_enter(&spa_l2cache_lock); 1189eda14cbcSMatt Macy found = spa_aux_exists(guid, pool, NULL, &spa_l2cache_avl); 1190eda14cbcSMatt Macy mutex_exit(&spa_l2cache_lock); 1191eda14cbcSMatt Macy 1192eda14cbcSMatt Macy return (found); 1193eda14cbcSMatt Macy } 1194eda14cbcSMatt Macy 1195eda14cbcSMatt Macy void 1196eda14cbcSMatt Macy spa_l2cache_activate(vdev_t *vd) 1197eda14cbcSMatt Macy { 1198eda14cbcSMatt Macy mutex_enter(&spa_l2cache_lock); 1199eda14cbcSMatt Macy ASSERT(vd->vdev_isl2cache); 1200eda14cbcSMatt Macy spa_aux_activate(vd, &spa_l2cache_avl); 1201eda14cbcSMatt Macy mutex_exit(&spa_l2cache_lock); 1202eda14cbcSMatt Macy } 1203eda14cbcSMatt Macy 1204eda14cbcSMatt Macy /* 1205eda14cbcSMatt Macy * ========================================================================== 1206eda14cbcSMatt Macy * SPA vdev locking 1207eda14cbcSMatt Macy * ========================================================================== 1208eda14cbcSMatt Macy */ 1209eda14cbcSMatt Macy 1210eda14cbcSMatt Macy /* 1211eda14cbcSMatt Macy * Lock the given spa_t for the purpose of adding or removing a vdev. 1212eda14cbcSMatt Macy * Grabs the global spa_namespace_lock plus the spa config lock for writing. 1213eda14cbcSMatt Macy * It returns the next transaction group for the spa_t. 1214eda14cbcSMatt Macy */ 1215eda14cbcSMatt Macy uint64_t 1216eda14cbcSMatt Macy spa_vdev_enter(spa_t *spa) 1217eda14cbcSMatt Macy { 1218eda14cbcSMatt Macy mutex_enter(&spa->spa_vdev_top_lock); 1219eda14cbcSMatt Macy mutex_enter(&spa_namespace_lock); 1220eda14cbcSMatt Macy 1221eda14cbcSMatt Macy vdev_autotrim_stop_all(spa); 1222eda14cbcSMatt Macy 1223eda14cbcSMatt Macy return (spa_vdev_config_enter(spa)); 1224eda14cbcSMatt Macy } 1225eda14cbcSMatt Macy 1226eda14cbcSMatt Macy /* 1227eda14cbcSMatt Macy * The same as spa_vdev_enter() above but additionally takes the guid of 1228eda14cbcSMatt Macy * the vdev being detached. When there is a rebuild in process it will be 1229eda14cbcSMatt Macy * suspended while the vdev tree is modified then resumed by spa_vdev_exit(). 1230eda14cbcSMatt Macy * The rebuild is canceled if only a single child remains after the detach. 1231eda14cbcSMatt Macy */ 1232eda14cbcSMatt Macy uint64_t 1233eda14cbcSMatt Macy spa_vdev_detach_enter(spa_t *spa, uint64_t guid) 1234eda14cbcSMatt Macy { 1235eda14cbcSMatt Macy mutex_enter(&spa->spa_vdev_top_lock); 1236eda14cbcSMatt Macy mutex_enter(&spa_namespace_lock); 1237eda14cbcSMatt Macy 1238eda14cbcSMatt Macy vdev_autotrim_stop_all(spa); 1239eda14cbcSMatt Macy 1240eda14cbcSMatt Macy if (guid != 0) { 1241eda14cbcSMatt Macy vdev_t *vd = spa_lookup_by_guid(spa, guid, B_FALSE); 1242eda14cbcSMatt Macy if (vd) { 1243eda14cbcSMatt Macy vdev_rebuild_stop_wait(vd->vdev_top); 1244eda14cbcSMatt Macy } 1245eda14cbcSMatt Macy } 1246eda14cbcSMatt Macy 1247eda14cbcSMatt Macy return (spa_vdev_config_enter(spa)); 1248eda14cbcSMatt Macy } 1249eda14cbcSMatt Macy 1250eda14cbcSMatt Macy /* 1251eda14cbcSMatt Macy * Internal implementation for spa_vdev_enter(). Used when a vdev 1252eda14cbcSMatt Macy * operation requires multiple syncs (i.e. removing a device) while 1253eda14cbcSMatt Macy * keeping the spa_namespace_lock held. 1254eda14cbcSMatt Macy */ 1255eda14cbcSMatt Macy uint64_t 1256eda14cbcSMatt Macy spa_vdev_config_enter(spa_t *spa) 1257eda14cbcSMatt Macy { 1258eda14cbcSMatt Macy ASSERT(MUTEX_HELD(&spa_namespace_lock)); 1259eda14cbcSMatt Macy 1260eda14cbcSMatt Macy spa_config_enter(spa, SCL_ALL, spa, RW_WRITER); 1261eda14cbcSMatt Macy 1262eda14cbcSMatt Macy return (spa_last_synced_txg(spa) + 1); 1263eda14cbcSMatt Macy } 1264eda14cbcSMatt Macy 1265eda14cbcSMatt Macy /* 1266eda14cbcSMatt Macy * Used in combination with spa_vdev_config_enter() to allow the syncing 1267eda14cbcSMatt Macy * of multiple transactions without releasing the spa_namespace_lock. 1268eda14cbcSMatt Macy */ 1269eda14cbcSMatt Macy void 1270a0b956f5SMartin Matuska spa_vdev_config_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error, 1271a0b956f5SMartin Matuska const char *tag) 1272eda14cbcSMatt Macy { 1273eda14cbcSMatt Macy ASSERT(MUTEX_HELD(&spa_namespace_lock)); 1274eda14cbcSMatt Macy 1275eda14cbcSMatt Macy int config_changed = B_FALSE; 1276eda14cbcSMatt Macy 1277eda14cbcSMatt Macy ASSERT(txg > spa_last_synced_txg(spa)); 1278eda14cbcSMatt Macy 1279eda14cbcSMatt Macy spa->spa_pending_vdev = NULL; 1280eda14cbcSMatt Macy 1281eda14cbcSMatt Macy /* 1282eda14cbcSMatt Macy * Reassess the DTLs. 1283eda14cbcSMatt Macy */ 1284eda14cbcSMatt Macy vdev_dtl_reassess(spa->spa_root_vdev, 0, 0, B_FALSE, B_FALSE); 1285eda14cbcSMatt Macy 1286eda14cbcSMatt Macy if (error == 0 && !list_is_empty(&spa->spa_config_dirty_list)) { 1287eda14cbcSMatt Macy config_changed = B_TRUE; 1288eda14cbcSMatt Macy spa->spa_config_generation++; 1289eda14cbcSMatt Macy } 1290eda14cbcSMatt Macy 1291eda14cbcSMatt Macy /* 1292eda14cbcSMatt Macy * Verify the metaslab classes. 1293eda14cbcSMatt Macy */ 1294eda14cbcSMatt Macy ASSERT(metaslab_class_validate(spa_normal_class(spa)) == 0); 1295eda14cbcSMatt Macy ASSERT(metaslab_class_validate(spa_log_class(spa)) == 0); 1296184c1b94SMartin Matuska ASSERT(metaslab_class_validate(spa_embedded_log_class(spa)) == 0); 1297eda14cbcSMatt Macy ASSERT(metaslab_class_validate(spa_special_class(spa)) == 0); 1298eda14cbcSMatt Macy ASSERT(metaslab_class_validate(spa_dedup_class(spa)) == 0); 1299eda14cbcSMatt Macy 1300eda14cbcSMatt Macy spa_config_exit(spa, SCL_ALL, spa); 1301eda14cbcSMatt Macy 1302eda14cbcSMatt Macy /* 1303eda14cbcSMatt Macy * Panic the system if the specified tag requires it. This 1304eda14cbcSMatt Macy * is useful for ensuring that configurations are updated 1305eda14cbcSMatt Macy * transactionally. 1306eda14cbcSMatt Macy */ 1307eda14cbcSMatt Macy if (zio_injection_enabled) 1308eda14cbcSMatt Macy zio_handle_panic_injection(spa, tag, 0); 1309eda14cbcSMatt Macy 1310eda14cbcSMatt Macy /* 1311eda14cbcSMatt Macy * Note: this txg_wait_synced() is important because it ensures 1312eda14cbcSMatt Macy * that there won't be more than one config change per txg. 1313eda14cbcSMatt Macy * This allows us to use the txg as the generation number. 1314eda14cbcSMatt Macy */ 1315eda14cbcSMatt Macy if (error == 0) 1316eda14cbcSMatt Macy txg_wait_synced(spa->spa_dsl_pool, txg); 1317eda14cbcSMatt Macy 1318eda14cbcSMatt Macy if (vd != NULL) { 1319eda14cbcSMatt Macy ASSERT(!vd->vdev_detached || vd->vdev_dtl_sm == NULL); 1320eda14cbcSMatt Macy if (vd->vdev_ops->vdev_op_leaf) { 1321eda14cbcSMatt Macy mutex_enter(&vd->vdev_initialize_lock); 1322eda14cbcSMatt Macy vdev_initialize_stop(vd, VDEV_INITIALIZE_CANCELED, 1323eda14cbcSMatt Macy NULL); 1324eda14cbcSMatt Macy mutex_exit(&vd->vdev_initialize_lock); 1325eda14cbcSMatt Macy 1326eda14cbcSMatt Macy mutex_enter(&vd->vdev_trim_lock); 1327eda14cbcSMatt Macy vdev_trim_stop(vd, VDEV_TRIM_CANCELED, NULL); 1328eda14cbcSMatt Macy mutex_exit(&vd->vdev_trim_lock); 1329eda14cbcSMatt Macy } 1330eda14cbcSMatt Macy 1331eda14cbcSMatt Macy /* 1332eda14cbcSMatt Macy * The vdev may be both a leaf and top-level device. 1333eda14cbcSMatt Macy */ 1334eda14cbcSMatt Macy vdev_autotrim_stop_wait(vd); 1335eda14cbcSMatt Macy 1336caed7b1cSMartin Matuska spa_config_enter(spa, SCL_STATE_ALL, spa, RW_WRITER); 1337eda14cbcSMatt Macy vdev_free(vd); 1338caed7b1cSMartin Matuska spa_config_exit(spa, SCL_STATE_ALL, spa); 1339eda14cbcSMatt Macy } 1340eda14cbcSMatt Macy 1341eda14cbcSMatt Macy /* 1342eda14cbcSMatt Macy * If the config changed, update the config cache. 1343eda14cbcSMatt Macy */ 1344eda14cbcSMatt Macy if (config_changed) 1345bb2d13b6SMartin Matuska spa_write_cachefile(spa, B_FALSE, B_TRUE, B_TRUE); 1346eda14cbcSMatt Macy } 1347eda14cbcSMatt Macy 1348eda14cbcSMatt Macy /* 1349eda14cbcSMatt Macy * Unlock the spa_t after adding or removing a vdev. Besides undoing the 1350eda14cbcSMatt Macy * locking of spa_vdev_enter(), we also want make sure the transactions have 1351eda14cbcSMatt Macy * synced to disk, and then update the global configuration cache with the new 1352eda14cbcSMatt Macy * information. 1353eda14cbcSMatt Macy */ 1354eda14cbcSMatt Macy int 1355eda14cbcSMatt Macy spa_vdev_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error) 1356eda14cbcSMatt Macy { 1357eda14cbcSMatt Macy vdev_autotrim_restart(spa); 1358eda14cbcSMatt Macy vdev_rebuild_restart(spa); 1359eda14cbcSMatt Macy 1360eda14cbcSMatt Macy spa_vdev_config_exit(spa, vd, txg, error, FTAG); 1361eda14cbcSMatt Macy mutex_exit(&spa_namespace_lock); 1362eda14cbcSMatt Macy mutex_exit(&spa->spa_vdev_top_lock); 1363eda14cbcSMatt Macy 1364eda14cbcSMatt Macy return (error); 1365eda14cbcSMatt Macy } 1366eda14cbcSMatt Macy 1367eda14cbcSMatt Macy /* 1368eda14cbcSMatt Macy * Lock the given spa_t for the purpose of changing vdev state. 1369eda14cbcSMatt Macy */ 1370eda14cbcSMatt Macy void 1371eda14cbcSMatt Macy spa_vdev_state_enter(spa_t *spa, int oplocks) 1372eda14cbcSMatt Macy { 1373eda14cbcSMatt Macy int locks = SCL_STATE_ALL | oplocks; 1374eda14cbcSMatt Macy 1375eda14cbcSMatt Macy /* 1376eda14cbcSMatt Macy * Root pools may need to read of the underlying devfs filesystem 1377eda14cbcSMatt Macy * when opening up a vdev. Unfortunately if we're holding the 1378eda14cbcSMatt Macy * SCL_ZIO lock it will result in a deadlock when we try to issue 1379eda14cbcSMatt Macy * the read from the root filesystem. Instead we "prefetch" 1380eda14cbcSMatt Macy * the associated vnodes that we need prior to opening the 1381eda14cbcSMatt Macy * underlying devices and cache them so that we can prevent 1382eda14cbcSMatt Macy * any I/O when we are doing the actual open. 1383eda14cbcSMatt Macy */ 1384eda14cbcSMatt Macy if (spa_is_root(spa)) { 1385eda14cbcSMatt Macy int low = locks & ~(SCL_ZIO - 1); 1386eda14cbcSMatt Macy int high = locks & ~low; 1387eda14cbcSMatt Macy 1388eda14cbcSMatt Macy spa_config_enter(spa, high, spa, RW_WRITER); 1389eda14cbcSMatt Macy vdev_hold(spa->spa_root_vdev); 1390eda14cbcSMatt Macy spa_config_enter(spa, low, spa, RW_WRITER); 1391eda14cbcSMatt Macy } else { 1392eda14cbcSMatt Macy spa_config_enter(spa, locks, spa, RW_WRITER); 1393eda14cbcSMatt Macy } 1394eda14cbcSMatt Macy spa->spa_vdev_locks = locks; 1395eda14cbcSMatt Macy } 1396eda14cbcSMatt Macy 1397eda14cbcSMatt Macy int 1398eda14cbcSMatt Macy spa_vdev_state_exit(spa_t *spa, vdev_t *vd, int error) 1399eda14cbcSMatt Macy { 1400eda14cbcSMatt Macy boolean_t config_changed = B_FALSE; 1401eda14cbcSMatt Macy vdev_t *vdev_top; 1402eda14cbcSMatt Macy 1403eda14cbcSMatt Macy if (vd == NULL || vd == spa->spa_root_vdev) { 1404eda14cbcSMatt Macy vdev_top = spa->spa_root_vdev; 1405eda14cbcSMatt Macy } else { 1406eda14cbcSMatt Macy vdev_top = vd->vdev_top; 1407eda14cbcSMatt Macy } 1408eda14cbcSMatt Macy 1409eda14cbcSMatt Macy if (vd != NULL || error == 0) 1410eda14cbcSMatt Macy vdev_dtl_reassess(vdev_top, 0, 0, B_FALSE, B_FALSE); 1411eda14cbcSMatt Macy 1412eda14cbcSMatt Macy if (vd != NULL) { 1413eda14cbcSMatt Macy if (vd != spa->spa_root_vdev) 1414eda14cbcSMatt Macy vdev_state_dirty(vdev_top); 1415eda14cbcSMatt Macy 1416eda14cbcSMatt Macy config_changed = B_TRUE; 1417eda14cbcSMatt Macy spa->spa_config_generation++; 1418eda14cbcSMatt Macy } 1419eda14cbcSMatt Macy 1420eda14cbcSMatt Macy if (spa_is_root(spa)) 1421eda14cbcSMatt Macy vdev_rele(spa->spa_root_vdev); 1422eda14cbcSMatt Macy 1423eda14cbcSMatt Macy ASSERT3U(spa->spa_vdev_locks, >=, SCL_STATE_ALL); 1424eda14cbcSMatt Macy spa_config_exit(spa, spa->spa_vdev_locks, spa); 1425eda14cbcSMatt Macy 1426eda14cbcSMatt Macy /* 1427eda14cbcSMatt Macy * If anything changed, wait for it to sync. This ensures that, 14287877fdebSMatt Macy * from the system administrator's perspective, zpool(8) commands 1429eda14cbcSMatt Macy * are synchronous. This is important for things like zpool offline: 1430eda14cbcSMatt Macy * when the command completes, you expect no further I/O from ZFS. 1431eda14cbcSMatt Macy */ 1432eda14cbcSMatt Macy if (vd != NULL) 1433eda14cbcSMatt Macy txg_wait_synced(spa->spa_dsl_pool, 0); 1434eda14cbcSMatt Macy 1435eda14cbcSMatt Macy /* 1436eda14cbcSMatt Macy * If the config changed, update the config cache. 1437eda14cbcSMatt Macy */ 1438eda14cbcSMatt Macy if (config_changed) { 1439eda14cbcSMatt Macy mutex_enter(&spa_namespace_lock); 1440be181ee2SMartin Matuska spa_write_cachefile(spa, B_FALSE, B_TRUE, B_FALSE); 1441eda14cbcSMatt Macy mutex_exit(&spa_namespace_lock); 1442eda14cbcSMatt Macy } 1443eda14cbcSMatt Macy 1444eda14cbcSMatt Macy return (error); 1445eda14cbcSMatt Macy } 1446eda14cbcSMatt Macy 1447eda14cbcSMatt Macy /* 1448eda14cbcSMatt Macy * ========================================================================== 1449eda14cbcSMatt Macy * Miscellaneous functions 1450eda14cbcSMatt Macy * ========================================================================== 1451eda14cbcSMatt Macy */ 1452eda14cbcSMatt Macy 1453eda14cbcSMatt Macy void 1454eda14cbcSMatt Macy spa_activate_mos_feature(spa_t *spa, const char *feature, dmu_tx_t *tx) 1455eda14cbcSMatt Macy { 1456eda14cbcSMatt Macy if (!nvlist_exists(spa->spa_label_features, feature)) { 1457eda14cbcSMatt Macy fnvlist_add_boolean(spa->spa_label_features, feature); 1458eda14cbcSMatt Macy /* 1459eda14cbcSMatt Macy * When we are creating the pool (tx_txg==TXG_INITIAL), we can't 1460eda14cbcSMatt Macy * dirty the vdev config because lock SCL_CONFIG is not held. 1461eda14cbcSMatt Macy * Thankfully, in this case we don't need to dirty the config 1462eda14cbcSMatt Macy * because it will be written out anyway when we finish 1463eda14cbcSMatt Macy * creating the pool. 1464eda14cbcSMatt Macy */ 1465eda14cbcSMatt Macy if (tx->tx_txg != TXG_INITIAL) 1466eda14cbcSMatt Macy vdev_config_dirty(spa->spa_root_vdev); 1467eda14cbcSMatt Macy } 1468eda14cbcSMatt Macy } 1469eda14cbcSMatt Macy 1470eda14cbcSMatt Macy void 1471eda14cbcSMatt Macy spa_deactivate_mos_feature(spa_t *spa, const char *feature) 1472eda14cbcSMatt Macy { 1473eda14cbcSMatt Macy if (nvlist_remove_all(spa->spa_label_features, feature) == 0) 1474eda14cbcSMatt Macy vdev_config_dirty(spa->spa_root_vdev); 1475eda14cbcSMatt Macy } 1476eda14cbcSMatt Macy 1477eda14cbcSMatt Macy /* 1478eda14cbcSMatt Macy * Return the spa_t associated with given pool_guid, if it exists. If 1479eda14cbcSMatt Macy * device_guid is non-zero, determine whether the pool exists *and* contains 1480eda14cbcSMatt Macy * a device with the specified device_guid. 1481eda14cbcSMatt Macy */ 1482eda14cbcSMatt Macy spa_t * 1483eda14cbcSMatt Macy spa_by_guid(uint64_t pool_guid, uint64_t device_guid) 1484eda14cbcSMatt Macy { 1485eda14cbcSMatt Macy spa_t *spa; 1486eda14cbcSMatt Macy avl_tree_t *t = &spa_namespace_avl; 1487eda14cbcSMatt Macy 1488eda14cbcSMatt Macy ASSERT(MUTEX_HELD(&spa_namespace_lock)); 1489eda14cbcSMatt Macy 1490eda14cbcSMatt Macy for (spa = avl_first(t); spa != NULL; spa = AVL_NEXT(t, spa)) { 1491eda14cbcSMatt Macy if (spa->spa_state == POOL_STATE_UNINITIALIZED) 1492eda14cbcSMatt Macy continue; 1493eda14cbcSMatt Macy if (spa->spa_root_vdev == NULL) 1494eda14cbcSMatt Macy continue; 1495eda14cbcSMatt Macy if (spa_guid(spa) == pool_guid) { 1496eda14cbcSMatt Macy if (device_guid == 0) 1497eda14cbcSMatt Macy break; 1498eda14cbcSMatt Macy 1499eda14cbcSMatt Macy if (vdev_lookup_by_guid(spa->spa_root_vdev, 1500eda14cbcSMatt Macy device_guid) != NULL) 1501eda14cbcSMatt Macy break; 1502eda14cbcSMatt Macy 1503eda14cbcSMatt Macy /* 1504eda14cbcSMatt Macy * Check any devices we may be in the process of adding. 1505eda14cbcSMatt Macy */ 1506eda14cbcSMatt Macy if (spa->spa_pending_vdev) { 1507eda14cbcSMatt Macy if (vdev_lookup_by_guid(spa->spa_pending_vdev, 1508eda14cbcSMatt Macy device_guid) != NULL) 1509eda14cbcSMatt Macy break; 1510eda14cbcSMatt Macy } 1511eda14cbcSMatt Macy } 1512eda14cbcSMatt Macy } 1513eda14cbcSMatt Macy 1514eda14cbcSMatt Macy return (spa); 1515eda14cbcSMatt Macy } 1516eda14cbcSMatt Macy 1517eda14cbcSMatt Macy /* 1518eda14cbcSMatt Macy * Determine whether a pool with the given pool_guid exists. 1519eda14cbcSMatt Macy */ 1520eda14cbcSMatt Macy boolean_t 1521eda14cbcSMatt Macy spa_guid_exists(uint64_t pool_guid, uint64_t device_guid) 1522eda14cbcSMatt Macy { 1523eda14cbcSMatt Macy return (spa_by_guid(pool_guid, device_guid) != NULL); 1524eda14cbcSMatt Macy } 1525eda14cbcSMatt Macy 1526eda14cbcSMatt Macy char * 1527eda14cbcSMatt Macy spa_strdup(const char *s) 1528eda14cbcSMatt Macy { 1529eda14cbcSMatt Macy size_t len; 1530eda14cbcSMatt Macy char *new; 1531eda14cbcSMatt Macy 1532eda14cbcSMatt Macy len = strlen(s); 1533eda14cbcSMatt Macy new = kmem_alloc(len + 1, KM_SLEEP); 1534da5137abSMartin Matuska memcpy(new, s, len + 1); 1535eda14cbcSMatt Macy 1536eda14cbcSMatt Macy return (new); 1537eda14cbcSMatt Macy } 1538eda14cbcSMatt Macy 1539eda14cbcSMatt Macy void 1540eda14cbcSMatt Macy spa_strfree(char *s) 1541eda14cbcSMatt Macy { 1542eda14cbcSMatt Macy kmem_free(s, strlen(s) + 1); 1543eda14cbcSMatt Macy } 1544eda14cbcSMatt Macy 1545eda14cbcSMatt Macy uint64_t 1546eda14cbcSMatt Macy spa_generate_guid(spa_t *spa) 1547eda14cbcSMatt Macy { 154833b8c039SMartin Matuska uint64_t guid; 1549eda14cbcSMatt Macy 1550eda14cbcSMatt Macy if (spa != NULL) { 155133b8c039SMartin Matuska do { 155233b8c039SMartin Matuska (void) random_get_pseudo_bytes((void *)&guid, 155333b8c039SMartin Matuska sizeof (guid)); 155433b8c039SMartin Matuska } while (guid == 0 || spa_guid_exists(spa_guid(spa), guid)); 1555eda14cbcSMatt Macy } else { 155633b8c039SMartin Matuska do { 155733b8c039SMartin Matuska (void) random_get_pseudo_bytes((void *)&guid, 155833b8c039SMartin Matuska sizeof (guid)); 155933b8c039SMartin Matuska } while (guid == 0 || spa_guid_exists(guid, 0)); 1560eda14cbcSMatt Macy } 1561eda14cbcSMatt Macy 1562eda14cbcSMatt Macy return (guid); 1563eda14cbcSMatt Macy } 1564eda14cbcSMatt Macy 1565eda14cbcSMatt Macy void 1566eda14cbcSMatt Macy snprintf_blkptr(char *buf, size_t buflen, const blkptr_t *bp) 1567eda14cbcSMatt Macy { 1568eda14cbcSMatt Macy char type[256]; 1569a0b956f5SMartin Matuska const char *checksum = NULL; 1570a0b956f5SMartin Matuska const char *compress = NULL; 1571eda14cbcSMatt Macy 1572eda14cbcSMatt Macy if (bp != NULL) { 1573eda14cbcSMatt Macy if (BP_GET_TYPE(bp) & DMU_OT_NEWTYPE) { 1574eda14cbcSMatt Macy dmu_object_byteswap_t bswap = 1575eda14cbcSMatt Macy DMU_OT_BYTESWAP(BP_GET_TYPE(bp)); 1576eda14cbcSMatt Macy (void) snprintf(type, sizeof (type), "bswap %s %s", 1577eda14cbcSMatt Macy DMU_OT_IS_METADATA(BP_GET_TYPE(bp)) ? 1578eda14cbcSMatt Macy "metadata" : "data", 1579eda14cbcSMatt Macy dmu_ot_byteswap[bswap].ob_name); 1580eda14cbcSMatt Macy } else { 1581eda14cbcSMatt Macy (void) strlcpy(type, dmu_ot[BP_GET_TYPE(bp)].ot_name, 1582eda14cbcSMatt Macy sizeof (type)); 1583eda14cbcSMatt Macy } 1584eda14cbcSMatt Macy if (!BP_IS_EMBEDDED(bp)) { 1585eda14cbcSMatt Macy checksum = 1586eda14cbcSMatt Macy zio_checksum_table[BP_GET_CHECKSUM(bp)].ci_name; 1587eda14cbcSMatt Macy } 1588eda14cbcSMatt Macy compress = zio_compress_table[BP_GET_COMPRESS(bp)].ci_name; 1589eda14cbcSMatt Macy } 1590eda14cbcSMatt Macy 1591dbd5678dSMartin Matuska SNPRINTF_BLKPTR(kmem_scnprintf, ' ', buf, buflen, bp, type, checksum, 1592eda14cbcSMatt Macy compress); 1593eda14cbcSMatt Macy } 1594eda14cbcSMatt Macy 1595eda14cbcSMatt Macy void 1596eda14cbcSMatt Macy spa_freeze(spa_t *spa) 1597eda14cbcSMatt Macy { 1598eda14cbcSMatt Macy uint64_t freeze_txg = 0; 1599eda14cbcSMatt Macy 1600eda14cbcSMatt Macy spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER); 1601eda14cbcSMatt Macy if (spa->spa_freeze_txg == UINT64_MAX) { 1602eda14cbcSMatt Macy freeze_txg = spa_last_synced_txg(spa) + TXG_SIZE; 1603eda14cbcSMatt Macy spa->spa_freeze_txg = freeze_txg; 1604eda14cbcSMatt Macy } 1605eda14cbcSMatt Macy spa_config_exit(spa, SCL_ALL, FTAG); 1606eda14cbcSMatt Macy if (freeze_txg != 0) 1607eda14cbcSMatt Macy txg_wait_synced(spa_get_dsl(spa), freeze_txg); 1608eda14cbcSMatt Macy } 1609eda14cbcSMatt Macy 1610eda14cbcSMatt Macy void 1611eda14cbcSMatt Macy zfs_panic_recover(const char *fmt, ...) 1612eda14cbcSMatt Macy { 1613eda14cbcSMatt Macy va_list adx; 1614eda14cbcSMatt Macy 1615eda14cbcSMatt Macy va_start(adx, fmt); 1616eda14cbcSMatt Macy vcmn_err(zfs_recover ? CE_WARN : CE_PANIC, fmt, adx); 1617eda14cbcSMatt Macy va_end(adx); 1618eda14cbcSMatt Macy } 1619eda14cbcSMatt Macy 1620eda14cbcSMatt Macy /* 1621eda14cbcSMatt Macy * This is a stripped-down version of strtoull, suitable only for converting 1622eda14cbcSMatt Macy * lowercase hexadecimal numbers that don't overflow. 1623eda14cbcSMatt Macy */ 1624eda14cbcSMatt Macy uint64_t 1625eda14cbcSMatt Macy zfs_strtonum(const char *str, char **nptr) 1626eda14cbcSMatt Macy { 1627eda14cbcSMatt Macy uint64_t val = 0; 1628eda14cbcSMatt Macy char c; 1629eda14cbcSMatt Macy int digit; 1630eda14cbcSMatt Macy 1631eda14cbcSMatt Macy while ((c = *str) != '\0') { 1632eda14cbcSMatt Macy if (c >= '0' && c <= '9') 1633eda14cbcSMatt Macy digit = c - '0'; 1634eda14cbcSMatt Macy else if (c >= 'a' && c <= 'f') 1635eda14cbcSMatt Macy digit = 10 + c - 'a'; 1636eda14cbcSMatt Macy else 1637eda14cbcSMatt Macy break; 1638eda14cbcSMatt Macy 1639eda14cbcSMatt Macy val *= 16; 1640eda14cbcSMatt Macy val += digit; 1641eda14cbcSMatt Macy 1642eda14cbcSMatt Macy str++; 1643eda14cbcSMatt Macy } 1644eda14cbcSMatt Macy 1645eda14cbcSMatt Macy if (nptr) 1646eda14cbcSMatt Macy *nptr = (char *)str; 1647eda14cbcSMatt Macy 1648eda14cbcSMatt Macy return (val); 1649eda14cbcSMatt Macy } 1650eda14cbcSMatt Macy 1651eda14cbcSMatt Macy void 1652eda14cbcSMatt Macy spa_activate_allocation_classes(spa_t *spa, dmu_tx_t *tx) 1653eda14cbcSMatt Macy { 1654eda14cbcSMatt Macy /* 1655eda14cbcSMatt Macy * We bump the feature refcount for each special vdev added to the pool 1656eda14cbcSMatt Macy */ 1657eda14cbcSMatt Macy ASSERT(spa_feature_is_enabled(spa, SPA_FEATURE_ALLOCATION_CLASSES)); 1658eda14cbcSMatt Macy spa_feature_incr(spa, SPA_FEATURE_ALLOCATION_CLASSES, tx); 1659eda14cbcSMatt Macy } 1660eda14cbcSMatt Macy 1661eda14cbcSMatt Macy /* 1662eda14cbcSMatt Macy * ========================================================================== 1663eda14cbcSMatt Macy * Accessor functions 1664eda14cbcSMatt Macy * ========================================================================== 1665eda14cbcSMatt Macy */ 1666eda14cbcSMatt Macy 1667eda14cbcSMatt Macy boolean_t 1668eda14cbcSMatt Macy spa_shutting_down(spa_t *spa) 1669eda14cbcSMatt Macy { 1670eda14cbcSMatt Macy return (spa->spa_async_suspended); 1671eda14cbcSMatt Macy } 1672eda14cbcSMatt Macy 1673eda14cbcSMatt Macy dsl_pool_t * 1674eda14cbcSMatt Macy spa_get_dsl(spa_t *spa) 1675eda14cbcSMatt Macy { 1676eda14cbcSMatt Macy return (spa->spa_dsl_pool); 1677eda14cbcSMatt Macy } 1678eda14cbcSMatt Macy 1679eda14cbcSMatt Macy boolean_t 1680eda14cbcSMatt Macy spa_is_initializing(spa_t *spa) 1681eda14cbcSMatt Macy { 1682eda14cbcSMatt Macy return (spa->spa_is_initializing); 1683eda14cbcSMatt Macy } 1684eda14cbcSMatt Macy 1685eda14cbcSMatt Macy boolean_t 1686eda14cbcSMatt Macy spa_indirect_vdevs_loaded(spa_t *spa) 1687eda14cbcSMatt Macy { 1688eda14cbcSMatt Macy return (spa->spa_indirect_vdevs_loaded); 1689eda14cbcSMatt Macy } 1690eda14cbcSMatt Macy 1691eda14cbcSMatt Macy blkptr_t * 1692eda14cbcSMatt Macy spa_get_rootblkptr(spa_t *spa) 1693eda14cbcSMatt Macy { 1694eda14cbcSMatt Macy return (&spa->spa_ubsync.ub_rootbp); 1695eda14cbcSMatt Macy } 1696eda14cbcSMatt Macy 1697eda14cbcSMatt Macy void 1698eda14cbcSMatt Macy spa_set_rootblkptr(spa_t *spa, const blkptr_t *bp) 1699eda14cbcSMatt Macy { 1700eda14cbcSMatt Macy spa->spa_uberblock.ub_rootbp = *bp; 1701eda14cbcSMatt Macy } 1702eda14cbcSMatt Macy 1703eda14cbcSMatt Macy void 1704eda14cbcSMatt Macy spa_altroot(spa_t *spa, char *buf, size_t buflen) 1705eda14cbcSMatt Macy { 1706eda14cbcSMatt Macy if (spa->spa_root == NULL) 1707eda14cbcSMatt Macy buf[0] = '\0'; 1708eda14cbcSMatt Macy else 1709be181ee2SMartin Matuska (void) strlcpy(buf, spa->spa_root, buflen); 1710eda14cbcSMatt Macy } 1711eda14cbcSMatt Macy 1712be181ee2SMartin Matuska uint32_t 1713eda14cbcSMatt Macy spa_sync_pass(spa_t *spa) 1714eda14cbcSMatt Macy { 1715eda14cbcSMatt Macy return (spa->spa_sync_pass); 1716eda14cbcSMatt Macy } 1717eda14cbcSMatt Macy 1718eda14cbcSMatt Macy char * 1719eda14cbcSMatt Macy spa_name(spa_t *spa) 1720eda14cbcSMatt Macy { 1721eda14cbcSMatt Macy return (spa->spa_name); 1722eda14cbcSMatt Macy } 1723eda14cbcSMatt Macy 1724eda14cbcSMatt Macy uint64_t 1725eda14cbcSMatt Macy spa_guid(spa_t *spa) 1726eda14cbcSMatt Macy { 1727eda14cbcSMatt Macy dsl_pool_t *dp = spa_get_dsl(spa); 1728eda14cbcSMatt Macy uint64_t guid; 1729eda14cbcSMatt Macy 1730eda14cbcSMatt Macy /* 1731eda14cbcSMatt Macy * If we fail to parse the config during spa_load(), we can go through 1732eda14cbcSMatt Macy * the error path (which posts an ereport) and end up here with no root 1733eda14cbcSMatt Macy * vdev. We stash the original pool guid in 'spa_config_guid' to handle 1734eda14cbcSMatt Macy * this case. 1735eda14cbcSMatt Macy */ 1736eda14cbcSMatt Macy if (spa->spa_root_vdev == NULL) 1737eda14cbcSMatt Macy return (spa->spa_config_guid); 1738eda14cbcSMatt Macy 1739eda14cbcSMatt Macy guid = spa->spa_last_synced_guid != 0 ? 1740eda14cbcSMatt Macy spa->spa_last_synced_guid : spa->spa_root_vdev->vdev_guid; 1741eda14cbcSMatt Macy 1742eda14cbcSMatt Macy /* 1743eda14cbcSMatt Macy * Return the most recently synced out guid unless we're 1744eda14cbcSMatt Macy * in syncing context. 1745eda14cbcSMatt Macy */ 1746eda14cbcSMatt Macy if (dp && dsl_pool_sync_context(dp)) 1747eda14cbcSMatt Macy return (spa->spa_root_vdev->vdev_guid); 1748eda14cbcSMatt Macy else 1749eda14cbcSMatt Macy return (guid); 1750eda14cbcSMatt Macy } 1751eda14cbcSMatt Macy 1752eda14cbcSMatt Macy uint64_t 1753eda14cbcSMatt Macy spa_load_guid(spa_t *spa) 1754eda14cbcSMatt Macy { 1755eda14cbcSMatt Macy /* 1756eda14cbcSMatt Macy * This is a GUID that exists solely as a reference for the 1757eda14cbcSMatt Macy * purposes of the arc. It is generated at load time, and 1758eda14cbcSMatt Macy * is never written to persistent storage. 1759eda14cbcSMatt Macy */ 1760eda14cbcSMatt Macy return (spa->spa_load_guid); 1761eda14cbcSMatt Macy } 1762eda14cbcSMatt Macy 1763eda14cbcSMatt Macy uint64_t 1764eda14cbcSMatt Macy spa_last_synced_txg(spa_t *spa) 1765eda14cbcSMatt Macy { 1766eda14cbcSMatt Macy return (spa->spa_ubsync.ub_txg); 1767eda14cbcSMatt Macy } 1768eda14cbcSMatt Macy 1769eda14cbcSMatt Macy uint64_t 1770eda14cbcSMatt Macy spa_first_txg(spa_t *spa) 1771eda14cbcSMatt Macy { 1772eda14cbcSMatt Macy return (spa->spa_first_txg); 1773eda14cbcSMatt Macy } 1774eda14cbcSMatt Macy 1775eda14cbcSMatt Macy uint64_t 1776eda14cbcSMatt Macy spa_syncing_txg(spa_t *spa) 1777eda14cbcSMatt Macy { 1778eda14cbcSMatt Macy return (spa->spa_syncing_txg); 1779eda14cbcSMatt Macy } 1780eda14cbcSMatt Macy 1781eda14cbcSMatt Macy /* 1782eda14cbcSMatt Macy * Return the last txg where data can be dirtied. The final txgs 1783eda14cbcSMatt Macy * will be used to just clear out any deferred frees that remain. 1784eda14cbcSMatt Macy */ 1785eda14cbcSMatt Macy uint64_t 1786eda14cbcSMatt Macy spa_final_dirty_txg(spa_t *spa) 1787eda14cbcSMatt Macy { 1788eda14cbcSMatt Macy return (spa->spa_final_txg - TXG_DEFER_SIZE); 1789eda14cbcSMatt Macy } 1790eda14cbcSMatt Macy 1791eda14cbcSMatt Macy pool_state_t 1792eda14cbcSMatt Macy spa_state(spa_t *spa) 1793eda14cbcSMatt Macy { 1794eda14cbcSMatt Macy return (spa->spa_state); 1795eda14cbcSMatt Macy } 1796eda14cbcSMatt Macy 1797eda14cbcSMatt Macy spa_load_state_t 1798eda14cbcSMatt Macy spa_load_state(spa_t *spa) 1799eda14cbcSMatt Macy { 1800eda14cbcSMatt Macy return (spa->spa_load_state); 1801eda14cbcSMatt Macy } 1802eda14cbcSMatt Macy 1803eda14cbcSMatt Macy uint64_t 1804eda14cbcSMatt Macy spa_freeze_txg(spa_t *spa) 1805eda14cbcSMatt Macy { 1806eda14cbcSMatt Macy return (spa->spa_freeze_txg); 1807eda14cbcSMatt Macy } 1808eda14cbcSMatt Macy 1809eda14cbcSMatt Macy /* 1810eda14cbcSMatt Macy * Return the inflated asize for a logical write in bytes. This is used by the 1811eda14cbcSMatt Macy * DMU to calculate the space a logical write will require on disk. 1812eda14cbcSMatt Macy * If lsize is smaller than the largest physical block size allocatable on this 1813eda14cbcSMatt Macy * pool we use its value instead, since the write will end up using the whole 1814eda14cbcSMatt Macy * block anyway. 1815eda14cbcSMatt Macy */ 1816eda14cbcSMatt Macy uint64_t 1817eda14cbcSMatt Macy spa_get_worst_case_asize(spa_t *spa, uint64_t lsize) 1818eda14cbcSMatt Macy { 1819eda14cbcSMatt Macy if (lsize == 0) 1820eda14cbcSMatt Macy return (0); /* No inflation needed */ 1821eda14cbcSMatt Macy return (MAX(lsize, 1 << spa->spa_max_ashift) * spa_asize_inflation); 1822eda14cbcSMatt Macy } 1823eda14cbcSMatt Macy 1824eda14cbcSMatt Macy /* 1825184c1b94SMartin Matuska * Return the amount of slop space in bytes. It is typically 1/32 of the pool 1826184c1b94SMartin Matuska * (3.2%), minus the embedded log space. On very small pools, it may be 1827caed7b1cSMartin Matuska * slightly larger than this. On very large pools, it will be capped to 1828caed7b1cSMartin Matuska * the value of spa_max_slop. The embedded log space is not included in 1829184c1b94SMartin Matuska * spa_dspace. By subtracting it, the usable space (per "zfs list") is a 1830184c1b94SMartin Matuska * constant 97% of the total space, regardless of metaslab size (assuming the 1831184c1b94SMartin Matuska * default spa_slop_shift=5 and a non-tiny pool). 1832eda14cbcSMatt Macy * 1833184c1b94SMartin Matuska * See the comment above spa_slop_shift for more details. 1834eda14cbcSMatt Macy */ 1835eda14cbcSMatt Macy uint64_t 1836eda14cbcSMatt Macy spa_get_slop_space(spa_t *spa) 1837eda14cbcSMatt Macy { 18383f9d360cSMartin Matuska uint64_t space = 0; 18393f9d360cSMartin Matuska uint64_t slop = 0; 18403f9d360cSMartin Matuska 18413f9d360cSMartin Matuska /* 18423f9d360cSMartin Matuska * Make sure spa_dedup_dspace has been set. 18433f9d360cSMartin Matuska */ 18443f9d360cSMartin Matuska if (spa->spa_dedup_dspace == ~0ULL) 18453f9d360cSMartin Matuska spa_update_dspace(spa); 18463f9d360cSMartin Matuska 18473f9d360cSMartin Matuska /* 18483f9d360cSMartin Matuska * spa_get_dspace() includes the space only logically "used" by 18493f9d360cSMartin Matuska * deduplicated data, so since it's not useful to reserve more 18503f9d360cSMartin Matuska * space with more deduplicated data, we subtract that out here. 18513f9d360cSMartin Matuska */ 1852e2257b31SMartin Matuska space = 1853e2257b31SMartin Matuska spa_get_dspace(spa) - spa->spa_dedup_dspace - brt_get_dspace(spa); 18543f9d360cSMartin Matuska slop = MIN(space >> spa_slop_shift, spa_max_slop); 1855184c1b94SMartin Matuska 1856184c1b94SMartin Matuska /* 1857184c1b94SMartin Matuska * Subtract the embedded log space, but no more than half the (3.2%) 1858184c1b94SMartin Matuska * unusable space. Note, the "no more than half" is only relevant if 1859184c1b94SMartin Matuska * zfs_embedded_slog_min_ms >> spa_slop_shift < 2, which is not true by 1860184c1b94SMartin Matuska * default. 1861184c1b94SMartin Matuska */ 1862184c1b94SMartin Matuska uint64_t embedded_log = 1863184c1b94SMartin Matuska metaslab_class_get_dspace(spa_embedded_log_class(spa)); 1864184c1b94SMartin Matuska slop -= MIN(embedded_log, slop >> 1); 1865184c1b94SMartin Matuska 1866184c1b94SMartin Matuska /* 1867184c1b94SMartin Matuska * Slop space should be at least spa_min_slop, but no more than half 1868184c1b94SMartin Matuska * the entire pool. 1869184c1b94SMartin Matuska */ 1870184c1b94SMartin Matuska slop = MAX(slop, MIN(space >> 1, spa_min_slop)); 1871184c1b94SMartin Matuska return (slop); 1872eda14cbcSMatt Macy } 1873eda14cbcSMatt Macy 1874eda14cbcSMatt Macy uint64_t 1875eda14cbcSMatt Macy spa_get_dspace(spa_t *spa) 1876eda14cbcSMatt Macy { 1877eda14cbcSMatt Macy return (spa->spa_dspace); 1878eda14cbcSMatt Macy } 1879eda14cbcSMatt Macy 1880eda14cbcSMatt Macy uint64_t 1881eda14cbcSMatt Macy spa_get_checkpoint_space(spa_t *spa) 1882eda14cbcSMatt Macy { 1883eda14cbcSMatt Macy return (spa->spa_checkpoint_info.sci_dspace); 1884eda14cbcSMatt Macy } 1885eda14cbcSMatt Macy 1886eda14cbcSMatt Macy void 1887eda14cbcSMatt Macy spa_update_dspace(spa_t *spa) 1888eda14cbcSMatt Macy { 1889eda14cbcSMatt Macy spa->spa_dspace = metaslab_class_get_dspace(spa_normal_class(spa)) + 18902a58b312SMartin Matuska ddt_get_dedup_dspace(spa) + brt_get_dspace(spa); 1891681ce946SMartin Matuska if (spa->spa_nonallocating_dspace > 0) { 1892eda14cbcSMatt Macy /* 1893681ce946SMartin Matuska * Subtract the space provided by all non-allocating vdevs that 1894681ce946SMartin Matuska * contribute to dspace. If a file is overwritten, its old 1895681ce946SMartin Matuska * blocks are freed and new blocks are allocated. If there are 1896681ce946SMartin Matuska * no snapshots of the file, the available space should remain 1897681ce946SMartin Matuska * the same. The old blocks could be freed from the 1898681ce946SMartin Matuska * non-allocating vdev, but the new blocks must be allocated on 1899681ce946SMartin Matuska * other (allocating) vdevs. By reserving the entire size of 1900681ce946SMartin Matuska * the non-allocating vdevs (including allocated space), we 1901681ce946SMartin Matuska * ensure that there will be enough space on the allocating 1902681ce946SMartin Matuska * vdevs for this file overwrite to succeed. 1903eda14cbcSMatt Macy * 1904eda14cbcSMatt Macy * Note that the DMU/DSL doesn't actually know or care 1905eda14cbcSMatt Macy * how much space is allocated (it does its own tracking 1906eda14cbcSMatt Macy * of how much space has been logically used). So it 1907eda14cbcSMatt Macy * doesn't matter that the data we are moving may be 1908681ce946SMartin Matuska * allocated twice (on the old device and the new device). 1909eda14cbcSMatt Macy */ 1910681ce946SMartin Matuska ASSERT3U(spa->spa_dspace, >=, spa->spa_nonallocating_dspace); 1911681ce946SMartin Matuska spa->spa_dspace -= spa->spa_nonallocating_dspace; 1912eda14cbcSMatt Macy } 1913eda14cbcSMatt Macy } 1914eda14cbcSMatt Macy 1915eda14cbcSMatt Macy /* 1916eda14cbcSMatt Macy * Return the failure mode that has been set to this pool. The default 1917eda14cbcSMatt Macy * behavior will be to block all I/Os when a complete failure occurs. 1918eda14cbcSMatt Macy */ 1919eda14cbcSMatt Macy uint64_t 1920eda14cbcSMatt Macy spa_get_failmode(spa_t *spa) 1921eda14cbcSMatt Macy { 1922eda14cbcSMatt Macy return (spa->spa_failmode); 1923eda14cbcSMatt Macy } 1924eda14cbcSMatt Macy 1925eda14cbcSMatt Macy boolean_t 1926eda14cbcSMatt Macy spa_suspended(spa_t *spa) 1927eda14cbcSMatt Macy { 1928eda14cbcSMatt Macy return (spa->spa_suspended != ZIO_SUSPEND_NONE); 1929eda14cbcSMatt Macy } 1930eda14cbcSMatt Macy 1931eda14cbcSMatt Macy uint64_t 1932eda14cbcSMatt Macy spa_version(spa_t *spa) 1933eda14cbcSMatt Macy { 1934eda14cbcSMatt Macy return (spa->spa_ubsync.ub_version); 1935eda14cbcSMatt Macy } 1936eda14cbcSMatt Macy 1937eda14cbcSMatt Macy boolean_t 1938eda14cbcSMatt Macy spa_deflate(spa_t *spa) 1939eda14cbcSMatt Macy { 1940eda14cbcSMatt Macy return (spa->spa_deflate); 1941eda14cbcSMatt Macy } 1942eda14cbcSMatt Macy 1943eda14cbcSMatt Macy metaslab_class_t * 1944eda14cbcSMatt Macy spa_normal_class(spa_t *spa) 1945eda14cbcSMatt Macy { 1946eda14cbcSMatt Macy return (spa->spa_normal_class); 1947eda14cbcSMatt Macy } 1948eda14cbcSMatt Macy 1949eda14cbcSMatt Macy metaslab_class_t * 1950eda14cbcSMatt Macy spa_log_class(spa_t *spa) 1951eda14cbcSMatt Macy { 1952eda14cbcSMatt Macy return (spa->spa_log_class); 1953eda14cbcSMatt Macy } 1954eda14cbcSMatt Macy 1955eda14cbcSMatt Macy metaslab_class_t * 1956184c1b94SMartin Matuska spa_embedded_log_class(spa_t *spa) 1957184c1b94SMartin Matuska { 1958184c1b94SMartin Matuska return (spa->spa_embedded_log_class); 1959184c1b94SMartin Matuska } 1960184c1b94SMartin Matuska 1961184c1b94SMartin Matuska metaslab_class_t * 1962eda14cbcSMatt Macy spa_special_class(spa_t *spa) 1963eda14cbcSMatt Macy { 1964eda14cbcSMatt Macy return (spa->spa_special_class); 1965eda14cbcSMatt Macy } 1966eda14cbcSMatt Macy 1967eda14cbcSMatt Macy metaslab_class_t * 1968eda14cbcSMatt Macy spa_dedup_class(spa_t *spa) 1969eda14cbcSMatt Macy { 1970eda14cbcSMatt Macy return (spa->spa_dedup_class); 1971eda14cbcSMatt Macy } 1972eda14cbcSMatt Macy 1973eda14cbcSMatt Macy /* 1974eda14cbcSMatt Macy * Locate an appropriate allocation class 1975eda14cbcSMatt Macy */ 1976eda14cbcSMatt Macy metaslab_class_t * 1977eda14cbcSMatt Macy spa_preferred_class(spa_t *spa, uint64_t size, dmu_object_type_t objtype, 1978eda14cbcSMatt Macy uint_t level, uint_t special_smallblk) 1979eda14cbcSMatt Macy { 1980184c1b94SMartin Matuska /* 1981184c1b94SMartin Matuska * ZIL allocations determine their class in zio_alloc_zil(). 1982184c1b94SMartin Matuska */ 1983184c1b94SMartin Matuska ASSERT(objtype != DMU_OT_INTENT_LOG); 1984eda14cbcSMatt Macy 1985eda14cbcSMatt Macy boolean_t has_special_class = spa->spa_special_class->mc_groups != 0; 1986eda14cbcSMatt Macy 1987eda14cbcSMatt Macy if (DMU_OT_IS_DDT(objtype)) { 1988eda14cbcSMatt Macy if (spa->spa_dedup_class->mc_groups != 0) 1989eda14cbcSMatt Macy return (spa_dedup_class(spa)); 1990eda14cbcSMatt Macy else if (has_special_class && zfs_ddt_data_is_special) 1991eda14cbcSMatt Macy return (spa_special_class(spa)); 1992eda14cbcSMatt Macy else 1993eda14cbcSMatt Macy return (spa_normal_class(spa)); 1994eda14cbcSMatt Macy } 1995eda14cbcSMatt Macy 1996eda14cbcSMatt Macy /* Indirect blocks for user data can land in special if allowed */ 1997eda14cbcSMatt Macy if (level > 0 && (DMU_OT_IS_FILE(objtype) || objtype == DMU_OT_ZVOL)) { 1998eda14cbcSMatt Macy if (has_special_class && zfs_user_indirect_is_special) 1999eda14cbcSMatt Macy return (spa_special_class(spa)); 2000eda14cbcSMatt Macy else 2001eda14cbcSMatt Macy return (spa_normal_class(spa)); 2002eda14cbcSMatt Macy } 2003eda14cbcSMatt Macy 2004eda14cbcSMatt Macy if (DMU_OT_IS_METADATA(objtype) || level > 0) { 2005eda14cbcSMatt Macy if (has_special_class) 2006eda14cbcSMatt Macy return (spa_special_class(spa)); 2007eda14cbcSMatt Macy else 2008eda14cbcSMatt Macy return (spa_normal_class(spa)); 2009eda14cbcSMatt Macy } 2010eda14cbcSMatt Macy 2011eda14cbcSMatt Macy /* 2012eda14cbcSMatt Macy * Allow small file blocks in special class in some cases (like 2013eda14cbcSMatt Macy * for the dRAID vdev feature). But always leave a reserve of 2014eda14cbcSMatt Macy * zfs_special_class_metadata_reserve_pct exclusively for metadata. 2015eda14cbcSMatt Macy */ 2016eda14cbcSMatt Macy if (DMU_OT_IS_FILE(objtype) && 2017eda14cbcSMatt Macy has_special_class && size <= special_smallblk) { 2018eda14cbcSMatt Macy metaslab_class_t *special = spa_special_class(spa); 2019eda14cbcSMatt Macy uint64_t alloc = metaslab_class_get_alloc(special); 2020eda14cbcSMatt Macy uint64_t space = metaslab_class_get_space(special); 2021eda14cbcSMatt Macy uint64_t limit = 2022eda14cbcSMatt Macy (space * (100 - zfs_special_class_metadata_reserve_pct)) 2023eda14cbcSMatt Macy / 100; 2024eda14cbcSMatt Macy 2025eda14cbcSMatt Macy if (alloc < limit) 2026eda14cbcSMatt Macy return (special); 2027eda14cbcSMatt Macy } 2028eda14cbcSMatt Macy 2029eda14cbcSMatt Macy return (spa_normal_class(spa)); 2030eda14cbcSMatt Macy } 2031eda14cbcSMatt Macy 2032eda14cbcSMatt Macy void 2033eda14cbcSMatt Macy spa_evicting_os_register(spa_t *spa, objset_t *os) 2034eda14cbcSMatt Macy { 2035eda14cbcSMatt Macy mutex_enter(&spa->spa_evicting_os_lock); 2036eda14cbcSMatt Macy list_insert_head(&spa->spa_evicting_os_list, os); 2037eda14cbcSMatt Macy mutex_exit(&spa->spa_evicting_os_lock); 2038eda14cbcSMatt Macy } 2039eda14cbcSMatt Macy 2040eda14cbcSMatt Macy void 2041eda14cbcSMatt Macy spa_evicting_os_deregister(spa_t *spa, objset_t *os) 2042eda14cbcSMatt Macy { 2043eda14cbcSMatt Macy mutex_enter(&spa->spa_evicting_os_lock); 2044eda14cbcSMatt Macy list_remove(&spa->spa_evicting_os_list, os); 2045eda14cbcSMatt Macy cv_broadcast(&spa->spa_evicting_os_cv); 2046eda14cbcSMatt Macy mutex_exit(&spa->spa_evicting_os_lock); 2047eda14cbcSMatt Macy } 2048eda14cbcSMatt Macy 2049eda14cbcSMatt Macy void 2050eda14cbcSMatt Macy spa_evicting_os_wait(spa_t *spa) 2051eda14cbcSMatt Macy { 2052eda14cbcSMatt Macy mutex_enter(&spa->spa_evicting_os_lock); 2053eda14cbcSMatt Macy while (!list_is_empty(&spa->spa_evicting_os_list)) 2054eda14cbcSMatt Macy cv_wait(&spa->spa_evicting_os_cv, &spa->spa_evicting_os_lock); 2055eda14cbcSMatt Macy mutex_exit(&spa->spa_evicting_os_lock); 2056eda14cbcSMatt Macy 2057eda14cbcSMatt Macy dmu_buf_user_evict_wait(); 2058eda14cbcSMatt Macy } 2059eda14cbcSMatt Macy 2060eda14cbcSMatt Macy int 2061eda14cbcSMatt Macy spa_max_replication(spa_t *spa) 2062eda14cbcSMatt Macy { 2063eda14cbcSMatt Macy /* 2064eda14cbcSMatt Macy * As of SPA_VERSION == SPA_VERSION_DITTO_BLOCKS, we are able to 2065eda14cbcSMatt Macy * handle BPs with more than one DVA allocated. Set our max 2066eda14cbcSMatt Macy * replication level accordingly. 2067eda14cbcSMatt Macy */ 2068eda14cbcSMatt Macy if (spa_version(spa) < SPA_VERSION_DITTO_BLOCKS) 2069eda14cbcSMatt Macy return (1); 2070eda14cbcSMatt Macy return (MIN(SPA_DVAS_PER_BP, spa_max_replication_override)); 2071eda14cbcSMatt Macy } 2072eda14cbcSMatt Macy 2073eda14cbcSMatt Macy int 2074eda14cbcSMatt Macy spa_prev_software_version(spa_t *spa) 2075eda14cbcSMatt Macy { 2076eda14cbcSMatt Macy return (spa->spa_prev_software_version); 2077eda14cbcSMatt Macy } 2078eda14cbcSMatt Macy 2079eda14cbcSMatt Macy uint64_t 2080eda14cbcSMatt Macy spa_deadman_synctime(spa_t *spa) 2081eda14cbcSMatt Macy { 2082eda14cbcSMatt Macy return (spa->spa_deadman_synctime); 2083eda14cbcSMatt Macy } 2084eda14cbcSMatt Macy 2085eda14cbcSMatt Macy spa_autotrim_t 2086eda14cbcSMatt Macy spa_get_autotrim(spa_t *spa) 2087eda14cbcSMatt Macy { 2088eda14cbcSMatt Macy return (spa->spa_autotrim); 2089eda14cbcSMatt Macy } 2090eda14cbcSMatt Macy 2091eda14cbcSMatt Macy uint64_t 2092eda14cbcSMatt Macy spa_deadman_ziotime(spa_t *spa) 2093eda14cbcSMatt Macy { 2094eda14cbcSMatt Macy return (spa->spa_deadman_ziotime); 2095eda14cbcSMatt Macy } 2096eda14cbcSMatt Macy 2097eda14cbcSMatt Macy uint64_t 2098eda14cbcSMatt Macy spa_get_deadman_failmode(spa_t *spa) 2099eda14cbcSMatt Macy { 2100eda14cbcSMatt Macy return (spa->spa_deadman_failmode); 2101eda14cbcSMatt Macy } 2102eda14cbcSMatt Macy 2103eda14cbcSMatt Macy void 2104eda14cbcSMatt Macy spa_set_deadman_failmode(spa_t *spa, const char *failmode) 2105eda14cbcSMatt Macy { 2106eda14cbcSMatt Macy if (strcmp(failmode, "wait") == 0) 2107eda14cbcSMatt Macy spa->spa_deadman_failmode = ZIO_FAILURE_MODE_WAIT; 2108eda14cbcSMatt Macy else if (strcmp(failmode, "continue") == 0) 2109eda14cbcSMatt Macy spa->spa_deadman_failmode = ZIO_FAILURE_MODE_CONTINUE; 2110eda14cbcSMatt Macy else if (strcmp(failmode, "panic") == 0) 2111eda14cbcSMatt Macy spa->spa_deadman_failmode = ZIO_FAILURE_MODE_PANIC; 2112eda14cbcSMatt Macy else 2113eda14cbcSMatt Macy spa->spa_deadman_failmode = ZIO_FAILURE_MODE_WAIT; 2114eda14cbcSMatt Macy } 2115eda14cbcSMatt Macy 2116eda14cbcSMatt Macy void 2117eda14cbcSMatt Macy spa_set_deadman_ziotime(hrtime_t ns) 2118eda14cbcSMatt Macy { 2119eda14cbcSMatt Macy spa_t *spa = NULL; 2120eda14cbcSMatt Macy 2121eda14cbcSMatt Macy if (spa_mode_global != SPA_MODE_UNINIT) { 2122eda14cbcSMatt Macy mutex_enter(&spa_namespace_lock); 2123eda14cbcSMatt Macy while ((spa = spa_next(spa)) != NULL) 2124eda14cbcSMatt Macy spa->spa_deadman_ziotime = ns; 2125eda14cbcSMatt Macy mutex_exit(&spa_namespace_lock); 2126eda14cbcSMatt Macy } 2127eda14cbcSMatt Macy } 2128eda14cbcSMatt Macy 2129eda14cbcSMatt Macy void 2130eda14cbcSMatt Macy spa_set_deadman_synctime(hrtime_t ns) 2131eda14cbcSMatt Macy { 2132eda14cbcSMatt Macy spa_t *spa = NULL; 2133eda14cbcSMatt Macy 2134eda14cbcSMatt Macy if (spa_mode_global != SPA_MODE_UNINIT) { 2135eda14cbcSMatt Macy mutex_enter(&spa_namespace_lock); 2136eda14cbcSMatt Macy while ((spa = spa_next(spa)) != NULL) 2137eda14cbcSMatt Macy spa->spa_deadman_synctime = ns; 2138eda14cbcSMatt Macy mutex_exit(&spa_namespace_lock); 2139eda14cbcSMatt Macy } 2140eda14cbcSMatt Macy } 2141eda14cbcSMatt Macy 2142eda14cbcSMatt Macy uint64_t 2143eda14cbcSMatt Macy dva_get_dsize_sync(spa_t *spa, const dva_t *dva) 2144eda14cbcSMatt Macy { 2145eda14cbcSMatt Macy uint64_t asize = DVA_GET_ASIZE(dva); 2146eda14cbcSMatt Macy uint64_t dsize = asize; 2147eda14cbcSMatt Macy 2148eda14cbcSMatt Macy ASSERT(spa_config_held(spa, SCL_ALL, RW_READER) != 0); 2149eda14cbcSMatt Macy 2150eda14cbcSMatt Macy if (asize != 0 && spa->spa_deflate) { 2151eda14cbcSMatt Macy vdev_t *vd = vdev_lookup_top(spa, DVA_GET_VDEV(dva)); 2152eda14cbcSMatt Macy if (vd != NULL) 2153eda14cbcSMatt Macy dsize = (asize >> SPA_MINBLOCKSHIFT) * 2154eda14cbcSMatt Macy vd->vdev_deflate_ratio; 2155eda14cbcSMatt Macy } 2156eda14cbcSMatt Macy 2157eda14cbcSMatt Macy return (dsize); 2158eda14cbcSMatt Macy } 2159eda14cbcSMatt Macy 2160eda14cbcSMatt Macy uint64_t 2161eda14cbcSMatt Macy bp_get_dsize_sync(spa_t *spa, const blkptr_t *bp) 2162eda14cbcSMatt Macy { 2163eda14cbcSMatt Macy uint64_t dsize = 0; 2164eda14cbcSMatt Macy 2165eda14cbcSMatt Macy for (int d = 0; d < BP_GET_NDVAS(bp); d++) 2166eda14cbcSMatt Macy dsize += dva_get_dsize_sync(spa, &bp->blk_dva[d]); 2167eda14cbcSMatt Macy 2168eda14cbcSMatt Macy return (dsize); 2169eda14cbcSMatt Macy } 2170eda14cbcSMatt Macy 2171eda14cbcSMatt Macy uint64_t 2172eda14cbcSMatt Macy bp_get_dsize(spa_t *spa, const blkptr_t *bp) 2173eda14cbcSMatt Macy { 2174eda14cbcSMatt Macy uint64_t dsize = 0; 2175eda14cbcSMatt Macy 2176eda14cbcSMatt Macy spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER); 2177eda14cbcSMatt Macy 2178eda14cbcSMatt Macy for (int d = 0; d < BP_GET_NDVAS(bp); d++) 2179eda14cbcSMatt Macy dsize += dva_get_dsize_sync(spa, &bp->blk_dva[d]); 2180eda14cbcSMatt Macy 2181eda14cbcSMatt Macy spa_config_exit(spa, SCL_VDEV, FTAG); 2182eda14cbcSMatt Macy 2183eda14cbcSMatt Macy return (dsize); 2184eda14cbcSMatt Macy } 2185eda14cbcSMatt Macy 2186eda14cbcSMatt Macy uint64_t 2187eda14cbcSMatt Macy spa_dirty_data(spa_t *spa) 2188eda14cbcSMatt Macy { 2189eda14cbcSMatt Macy return (spa->spa_dsl_pool->dp_dirty_total); 2190eda14cbcSMatt Macy } 2191eda14cbcSMatt Macy 2192eda14cbcSMatt Macy /* 2193eda14cbcSMatt Macy * ========================================================================== 2194eda14cbcSMatt Macy * SPA Import Progress Routines 2195eda14cbcSMatt Macy * ========================================================================== 2196eda14cbcSMatt Macy */ 2197eda14cbcSMatt Macy 2198eda14cbcSMatt Macy typedef struct spa_import_progress { 2199eda14cbcSMatt Macy uint64_t pool_guid; /* unique id for updates */ 2200eda14cbcSMatt Macy char *pool_name; 2201eda14cbcSMatt Macy spa_load_state_t spa_load_state; 22023494f7c0SMartin Matuska char *spa_load_notes; 2203eda14cbcSMatt Macy uint64_t mmp_sec_remaining; /* MMP activity check */ 2204eda14cbcSMatt Macy uint64_t spa_load_max_txg; /* rewind txg */ 2205eda14cbcSMatt Macy procfs_list_node_t smh_node; 2206eda14cbcSMatt Macy } spa_import_progress_t; 2207eda14cbcSMatt Macy 2208eda14cbcSMatt Macy spa_history_list_t *spa_import_progress_list = NULL; 2209eda14cbcSMatt Macy 2210eda14cbcSMatt Macy static int 2211eda14cbcSMatt Macy spa_import_progress_show_header(struct seq_file *f) 2212eda14cbcSMatt Macy { 22133494f7c0SMartin Matuska seq_printf(f, "%-20s %-14s %-14s %-12s %-16s %s\n", "pool_guid", 2214eda14cbcSMatt Macy "load_state", "multihost_secs", "max_txg", 22153494f7c0SMartin Matuska "pool_name", "notes"); 2216eda14cbcSMatt Macy return (0); 2217eda14cbcSMatt Macy } 2218eda14cbcSMatt Macy 2219eda14cbcSMatt Macy static int 2220eda14cbcSMatt Macy spa_import_progress_show(struct seq_file *f, void *data) 2221eda14cbcSMatt Macy { 2222eda14cbcSMatt Macy spa_import_progress_t *sip = (spa_import_progress_t *)data; 2223eda14cbcSMatt Macy 22243494f7c0SMartin Matuska seq_printf(f, "%-20llu %-14llu %-14llu %-12llu %-16s %s\n", 2225eda14cbcSMatt Macy (u_longlong_t)sip->pool_guid, (u_longlong_t)sip->spa_load_state, 2226eda14cbcSMatt Macy (u_longlong_t)sip->mmp_sec_remaining, 2227eda14cbcSMatt Macy (u_longlong_t)sip->spa_load_max_txg, 22283494f7c0SMartin Matuska (sip->pool_name ? sip->pool_name : "-"), 22293494f7c0SMartin Matuska (sip->spa_load_notes ? sip->spa_load_notes : "-")); 2230eda14cbcSMatt Macy 2231eda14cbcSMatt Macy return (0); 2232eda14cbcSMatt Macy } 2233eda14cbcSMatt Macy 2234eda14cbcSMatt Macy /* Remove oldest elements from list until there are no more than 'size' left */ 2235eda14cbcSMatt Macy static void 2236eda14cbcSMatt Macy spa_import_progress_truncate(spa_history_list_t *shl, unsigned int size) 2237eda14cbcSMatt Macy { 2238eda14cbcSMatt Macy spa_import_progress_t *sip; 2239eda14cbcSMatt Macy while (shl->size > size) { 2240eda14cbcSMatt Macy sip = list_remove_head(&shl->procfs_list.pl_list); 2241eda14cbcSMatt Macy if (sip->pool_name) 2242eda14cbcSMatt Macy spa_strfree(sip->pool_name); 22433494f7c0SMartin Matuska if (sip->spa_load_notes) 22443494f7c0SMartin Matuska kmem_strfree(sip->spa_load_notes); 2245eda14cbcSMatt Macy kmem_free(sip, sizeof (spa_import_progress_t)); 2246eda14cbcSMatt Macy shl->size--; 2247eda14cbcSMatt Macy } 2248eda14cbcSMatt Macy 2249eda14cbcSMatt Macy IMPLY(size == 0, list_is_empty(&shl->procfs_list.pl_list)); 2250eda14cbcSMatt Macy } 2251eda14cbcSMatt Macy 2252eda14cbcSMatt Macy static void 2253eda14cbcSMatt Macy spa_import_progress_init(void) 2254eda14cbcSMatt Macy { 2255eda14cbcSMatt Macy spa_import_progress_list = kmem_zalloc(sizeof (spa_history_list_t), 2256eda14cbcSMatt Macy KM_SLEEP); 2257eda14cbcSMatt Macy 2258eda14cbcSMatt Macy spa_import_progress_list->size = 0; 2259eda14cbcSMatt Macy 2260eda14cbcSMatt Macy spa_import_progress_list->procfs_list.pl_private = 2261eda14cbcSMatt Macy spa_import_progress_list; 2262eda14cbcSMatt Macy 2263eda14cbcSMatt Macy procfs_list_install("zfs", 2264c40487d4SMatt Macy NULL, 2265eda14cbcSMatt Macy "import_progress", 2266eda14cbcSMatt Macy 0644, 2267eda14cbcSMatt Macy &spa_import_progress_list->procfs_list, 2268eda14cbcSMatt Macy spa_import_progress_show, 2269eda14cbcSMatt Macy spa_import_progress_show_header, 2270eda14cbcSMatt Macy NULL, 2271eda14cbcSMatt Macy offsetof(spa_import_progress_t, smh_node)); 2272eda14cbcSMatt Macy } 2273eda14cbcSMatt Macy 2274eda14cbcSMatt Macy static void 2275eda14cbcSMatt Macy spa_import_progress_destroy(void) 2276eda14cbcSMatt Macy { 2277eda14cbcSMatt Macy spa_history_list_t *shl = spa_import_progress_list; 2278eda14cbcSMatt Macy procfs_list_uninstall(&shl->procfs_list); 2279eda14cbcSMatt Macy spa_import_progress_truncate(shl, 0); 2280eda14cbcSMatt Macy procfs_list_destroy(&shl->procfs_list); 2281eda14cbcSMatt Macy kmem_free(shl, sizeof (spa_history_list_t)); 2282eda14cbcSMatt Macy } 2283eda14cbcSMatt Macy 2284eda14cbcSMatt Macy int 2285eda14cbcSMatt Macy spa_import_progress_set_state(uint64_t pool_guid, 2286eda14cbcSMatt Macy spa_load_state_t load_state) 2287eda14cbcSMatt Macy { 2288eda14cbcSMatt Macy spa_history_list_t *shl = spa_import_progress_list; 2289eda14cbcSMatt Macy spa_import_progress_t *sip; 2290eda14cbcSMatt Macy int error = ENOENT; 2291eda14cbcSMatt Macy 2292eda14cbcSMatt Macy if (shl->size == 0) 2293eda14cbcSMatt Macy return (0); 2294eda14cbcSMatt Macy 2295eda14cbcSMatt Macy mutex_enter(&shl->procfs_list.pl_lock); 2296eda14cbcSMatt Macy for (sip = list_tail(&shl->procfs_list.pl_list); sip != NULL; 2297eda14cbcSMatt Macy sip = list_prev(&shl->procfs_list.pl_list, sip)) { 2298eda14cbcSMatt Macy if (sip->pool_guid == pool_guid) { 2299eda14cbcSMatt Macy sip->spa_load_state = load_state; 23003494f7c0SMartin Matuska if (sip->spa_load_notes != NULL) { 23013494f7c0SMartin Matuska kmem_strfree(sip->spa_load_notes); 23023494f7c0SMartin Matuska sip->spa_load_notes = NULL; 23033494f7c0SMartin Matuska } 2304eda14cbcSMatt Macy error = 0; 2305eda14cbcSMatt Macy break; 2306eda14cbcSMatt Macy } 2307eda14cbcSMatt Macy } 2308eda14cbcSMatt Macy mutex_exit(&shl->procfs_list.pl_lock); 2309eda14cbcSMatt Macy 2310eda14cbcSMatt Macy return (error); 2311eda14cbcSMatt Macy } 2312eda14cbcSMatt Macy 23133494f7c0SMartin Matuska static void 23143494f7c0SMartin Matuska spa_import_progress_set_notes_impl(spa_t *spa, boolean_t log_dbgmsg, 23153494f7c0SMartin Matuska const char *fmt, va_list adx) 23163494f7c0SMartin Matuska { 23173494f7c0SMartin Matuska spa_history_list_t *shl = spa_import_progress_list; 23183494f7c0SMartin Matuska spa_import_progress_t *sip; 23193494f7c0SMartin Matuska uint64_t pool_guid = spa_guid(spa); 23203494f7c0SMartin Matuska 23213494f7c0SMartin Matuska if (shl->size == 0) 23223494f7c0SMartin Matuska return; 23233494f7c0SMartin Matuska 23243494f7c0SMartin Matuska char *notes = kmem_vasprintf(fmt, adx); 23253494f7c0SMartin Matuska 23263494f7c0SMartin Matuska mutex_enter(&shl->procfs_list.pl_lock); 23273494f7c0SMartin Matuska for (sip = list_tail(&shl->procfs_list.pl_list); sip != NULL; 23283494f7c0SMartin Matuska sip = list_prev(&shl->procfs_list.pl_list, sip)) { 23293494f7c0SMartin Matuska if (sip->pool_guid == pool_guid) { 23303494f7c0SMartin Matuska if (sip->spa_load_notes != NULL) { 23313494f7c0SMartin Matuska kmem_strfree(sip->spa_load_notes); 23323494f7c0SMartin Matuska sip->spa_load_notes = NULL; 23333494f7c0SMartin Matuska } 23343494f7c0SMartin Matuska sip->spa_load_notes = notes; 23353494f7c0SMartin Matuska if (log_dbgmsg) 23363494f7c0SMartin Matuska zfs_dbgmsg("'%s' %s", sip->pool_name, notes); 23373494f7c0SMartin Matuska notes = NULL; 23383494f7c0SMartin Matuska break; 23393494f7c0SMartin Matuska } 23403494f7c0SMartin Matuska } 23413494f7c0SMartin Matuska mutex_exit(&shl->procfs_list.pl_lock); 23423494f7c0SMartin Matuska if (notes != NULL) 23433494f7c0SMartin Matuska kmem_strfree(notes); 23443494f7c0SMartin Matuska } 23453494f7c0SMartin Matuska 23463494f7c0SMartin Matuska void 23473494f7c0SMartin Matuska spa_import_progress_set_notes(spa_t *spa, const char *fmt, ...) 23483494f7c0SMartin Matuska { 23493494f7c0SMartin Matuska va_list adx; 23503494f7c0SMartin Matuska 23513494f7c0SMartin Matuska va_start(adx, fmt); 23523494f7c0SMartin Matuska spa_import_progress_set_notes_impl(spa, B_TRUE, fmt, adx); 23533494f7c0SMartin Matuska va_end(adx); 23543494f7c0SMartin Matuska } 23553494f7c0SMartin Matuska 23563494f7c0SMartin Matuska void 23573494f7c0SMartin Matuska spa_import_progress_set_notes_nolog(spa_t *spa, const char *fmt, ...) 23583494f7c0SMartin Matuska { 23593494f7c0SMartin Matuska va_list adx; 23603494f7c0SMartin Matuska 23613494f7c0SMartin Matuska va_start(adx, fmt); 23623494f7c0SMartin Matuska spa_import_progress_set_notes_impl(spa, B_FALSE, fmt, adx); 23633494f7c0SMartin Matuska va_end(adx); 23643494f7c0SMartin Matuska } 23653494f7c0SMartin Matuska 2366eda14cbcSMatt Macy int 2367eda14cbcSMatt Macy spa_import_progress_set_max_txg(uint64_t pool_guid, uint64_t load_max_txg) 2368eda14cbcSMatt Macy { 2369eda14cbcSMatt Macy spa_history_list_t *shl = spa_import_progress_list; 2370eda14cbcSMatt Macy spa_import_progress_t *sip; 2371eda14cbcSMatt Macy int error = ENOENT; 2372eda14cbcSMatt Macy 2373eda14cbcSMatt Macy if (shl->size == 0) 2374eda14cbcSMatt Macy return (0); 2375eda14cbcSMatt Macy 2376eda14cbcSMatt Macy mutex_enter(&shl->procfs_list.pl_lock); 2377eda14cbcSMatt Macy for (sip = list_tail(&shl->procfs_list.pl_list); sip != NULL; 2378eda14cbcSMatt Macy sip = list_prev(&shl->procfs_list.pl_list, sip)) { 2379eda14cbcSMatt Macy if (sip->pool_guid == pool_guid) { 2380eda14cbcSMatt Macy sip->spa_load_max_txg = load_max_txg; 2381eda14cbcSMatt Macy error = 0; 2382eda14cbcSMatt Macy break; 2383eda14cbcSMatt Macy } 2384eda14cbcSMatt Macy } 2385eda14cbcSMatt Macy mutex_exit(&shl->procfs_list.pl_lock); 2386eda14cbcSMatt Macy 2387eda14cbcSMatt Macy return (error); 2388eda14cbcSMatt Macy } 2389eda14cbcSMatt Macy 2390eda14cbcSMatt Macy int 2391eda14cbcSMatt Macy spa_import_progress_set_mmp_check(uint64_t pool_guid, 2392eda14cbcSMatt Macy uint64_t mmp_sec_remaining) 2393eda14cbcSMatt Macy { 2394eda14cbcSMatt Macy spa_history_list_t *shl = spa_import_progress_list; 2395eda14cbcSMatt Macy spa_import_progress_t *sip; 2396eda14cbcSMatt Macy int error = ENOENT; 2397eda14cbcSMatt Macy 2398eda14cbcSMatt Macy if (shl->size == 0) 2399eda14cbcSMatt Macy return (0); 2400eda14cbcSMatt Macy 2401eda14cbcSMatt Macy mutex_enter(&shl->procfs_list.pl_lock); 2402eda14cbcSMatt Macy for (sip = list_tail(&shl->procfs_list.pl_list); sip != NULL; 2403eda14cbcSMatt Macy sip = list_prev(&shl->procfs_list.pl_list, sip)) { 2404eda14cbcSMatt Macy if (sip->pool_guid == pool_guid) { 2405eda14cbcSMatt Macy sip->mmp_sec_remaining = mmp_sec_remaining; 2406eda14cbcSMatt Macy error = 0; 2407eda14cbcSMatt Macy break; 2408eda14cbcSMatt Macy } 2409eda14cbcSMatt Macy } 2410eda14cbcSMatt Macy mutex_exit(&shl->procfs_list.pl_lock); 2411eda14cbcSMatt Macy 2412eda14cbcSMatt Macy return (error); 2413eda14cbcSMatt Macy } 2414eda14cbcSMatt Macy 2415eda14cbcSMatt Macy /* 2416eda14cbcSMatt Macy * A new import is in progress, add an entry. 2417eda14cbcSMatt Macy */ 2418eda14cbcSMatt Macy void 2419eda14cbcSMatt Macy spa_import_progress_add(spa_t *spa) 2420eda14cbcSMatt Macy { 2421eda14cbcSMatt Macy spa_history_list_t *shl = spa_import_progress_list; 2422eda14cbcSMatt Macy spa_import_progress_t *sip; 24232a58b312SMartin Matuska const char *poolname = NULL; 2424eda14cbcSMatt Macy 2425eda14cbcSMatt Macy sip = kmem_zalloc(sizeof (spa_import_progress_t), KM_SLEEP); 2426eda14cbcSMatt Macy sip->pool_guid = spa_guid(spa); 2427eda14cbcSMatt Macy 2428eda14cbcSMatt Macy (void) nvlist_lookup_string(spa->spa_config, ZPOOL_CONFIG_POOL_NAME, 2429eda14cbcSMatt Macy &poolname); 2430eda14cbcSMatt Macy if (poolname == NULL) 2431eda14cbcSMatt Macy poolname = spa_name(spa); 2432eda14cbcSMatt Macy sip->pool_name = spa_strdup(poolname); 2433eda14cbcSMatt Macy sip->spa_load_state = spa_load_state(spa); 24343494f7c0SMartin Matuska sip->spa_load_notes = NULL; 2435eda14cbcSMatt Macy 2436eda14cbcSMatt Macy mutex_enter(&shl->procfs_list.pl_lock); 2437eda14cbcSMatt Macy procfs_list_add(&shl->procfs_list, sip); 2438eda14cbcSMatt Macy shl->size++; 2439eda14cbcSMatt Macy mutex_exit(&shl->procfs_list.pl_lock); 2440eda14cbcSMatt Macy } 2441eda14cbcSMatt Macy 2442eda14cbcSMatt Macy void 2443eda14cbcSMatt Macy spa_import_progress_remove(uint64_t pool_guid) 2444eda14cbcSMatt Macy { 2445eda14cbcSMatt Macy spa_history_list_t *shl = spa_import_progress_list; 2446eda14cbcSMatt Macy spa_import_progress_t *sip; 2447eda14cbcSMatt Macy 2448eda14cbcSMatt Macy mutex_enter(&shl->procfs_list.pl_lock); 2449eda14cbcSMatt Macy for (sip = list_tail(&shl->procfs_list.pl_list); sip != NULL; 2450eda14cbcSMatt Macy sip = list_prev(&shl->procfs_list.pl_list, sip)) { 2451eda14cbcSMatt Macy if (sip->pool_guid == pool_guid) { 2452eda14cbcSMatt Macy if (sip->pool_name) 2453eda14cbcSMatt Macy spa_strfree(sip->pool_name); 24543494f7c0SMartin Matuska if (sip->spa_load_notes) 24553494f7c0SMartin Matuska spa_strfree(sip->spa_load_notes); 2456eda14cbcSMatt Macy list_remove(&shl->procfs_list.pl_list, sip); 2457eda14cbcSMatt Macy shl->size--; 2458eda14cbcSMatt Macy kmem_free(sip, sizeof (spa_import_progress_t)); 2459eda14cbcSMatt Macy break; 2460eda14cbcSMatt Macy } 2461eda14cbcSMatt Macy } 2462eda14cbcSMatt Macy mutex_exit(&shl->procfs_list.pl_lock); 2463eda14cbcSMatt Macy } 2464eda14cbcSMatt Macy 2465eda14cbcSMatt Macy /* 2466eda14cbcSMatt Macy * ========================================================================== 2467eda14cbcSMatt Macy * Initialization and Termination 2468eda14cbcSMatt Macy * ========================================================================== 2469eda14cbcSMatt Macy */ 2470eda14cbcSMatt Macy 2471eda14cbcSMatt Macy static int 2472eda14cbcSMatt Macy spa_name_compare(const void *a1, const void *a2) 2473eda14cbcSMatt Macy { 2474eda14cbcSMatt Macy const spa_t *s1 = a1; 2475eda14cbcSMatt Macy const spa_t *s2 = a2; 2476eda14cbcSMatt Macy int s; 2477eda14cbcSMatt Macy 2478eda14cbcSMatt Macy s = strcmp(s1->spa_name, s2->spa_name); 2479eda14cbcSMatt Macy 2480eda14cbcSMatt Macy return (TREE_ISIGN(s)); 2481eda14cbcSMatt Macy } 2482eda14cbcSMatt Macy 2483eda14cbcSMatt Macy void 2484eda14cbcSMatt Macy spa_boot_init(void) 2485eda14cbcSMatt Macy { 2486eda14cbcSMatt Macy spa_config_load(); 2487eda14cbcSMatt Macy } 2488eda14cbcSMatt Macy 2489eda14cbcSMatt Macy void 2490eda14cbcSMatt Macy spa_init(spa_mode_t mode) 2491eda14cbcSMatt Macy { 2492eda14cbcSMatt Macy mutex_init(&spa_namespace_lock, NULL, MUTEX_DEFAULT, NULL); 2493eda14cbcSMatt Macy mutex_init(&spa_spare_lock, NULL, MUTEX_DEFAULT, NULL); 2494eda14cbcSMatt Macy mutex_init(&spa_l2cache_lock, NULL, MUTEX_DEFAULT, NULL); 2495eda14cbcSMatt Macy cv_init(&spa_namespace_cv, NULL, CV_DEFAULT, NULL); 2496eda14cbcSMatt Macy 2497eda14cbcSMatt Macy avl_create(&spa_namespace_avl, spa_name_compare, sizeof (spa_t), 2498eda14cbcSMatt Macy offsetof(spa_t, spa_avl)); 2499eda14cbcSMatt Macy 2500eda14cbcSMatt Macy avl_create(&spa_spare_avl, spa_spare_compare, sizeof (spa_aux_t), 2501eda14cbcSMatt Macy offsetof(spa_aux_t, aux_avl)); 2502eda14cbcSMatt Macy 2503eda14cbcSMatt Macy avl_create(&spa_l2cache_avl, spa_l2cache_compare, sizeof (spa_aux_t), 2504eda14cbcSMatt Macy offsetof(spa_aux_t, aux_avl)); 2505eda14cbcSMatt Macy 2506eda14cbcSMatt Macy spa_mode_global = mode; 2507eda14cbcSMatt Macy 2508eda14cbcSMatt Macy #ifndef _KERNEL 2509eda14cbcSMatt Macy if (spa_mode_global != SPA_MODE_READ && dprintf_find_string("watch")) { 2510eda14cbcSMatt Macy struct sigaction sa; 2511eda14cbcSMatt Macy 2512eda14cbcSMatt Macy sa.sa_flags = SA_SIGINFO; 2513eda14cbcSMatt Macy sigemptyset(&sa.sa_mask); 2514eda14cbcSMatt Macy sa.sa_sigaction = arc_buf_sigsegv; 2515eda14cbcSMatt Macy 2516eda14cbcSMatt Macy if (sigaction(SIGSEGV, &sa, NULL) == -1) { 2517eda14cbcSMatt Macy perror("could not enable watchpoints: " 2518eda14cbcSMatt Macy "sigaction(SIGSEGV, ...) = "); 2519eda14cbcSMatt Macy } else { 2520eda14cbcSMatt Macy arc_watch = B_TRUE; 2521eda14cbcSMatt Macy } 2522eda14cbcSMatt Macy } 2523eda14cbcSMatt Macy #endif 2524eda14cbcSMatt Macy 2525eda14cbcSMatt Macy fm_init(); 2526eda14cbcSMatt Macy zfs_refcount_init(); 2527eda14cbcSMatt Macy unique_init(); 2528eda14cbcSMatt Macy zfs_btree_init(); 2529eda14cbcSMatt Macy metaslab_stat_init(); 25302a58b312SMartin Matuska brt_init(); 2531eda14cbcSMatt Macy ddt_init(); 2532eda14cbcSMatt Macy zio_init(); 2533eda14cbcSMatt Macy dmu_init(); 2534eda14cbcSMatt Macy zil_init(); 2535eda14cbcSMatt Macy vdev_mirror_stat_init(); 2536eda14cbcSMatt Macy vdev_raidz_math_init(); 2537eda14cbcSMatt Macy vdev_file_init(); 2538eda14cbcSMatt Macy zfs_prop_init(); 25391f1e2261SMartin Matuska chksum_init(); 2540eda14cbcSMatt Macy zpool_prop_init(); 2541eda14cbcSMatt Macy zpool_feature_init(); 2542eda14cbcSMatt Macy spa_config_load(); 2543681ce946SMartin Matuska vdev_prop_init(); 2544eda14cbcSMatt Macy l2arc_start(); 2545eda14cbcSMatt Macy scan_init(); 2546eda14cbcSMatt Macy qat_init(); 2547eda14cbcSMatt Macy spa_import_progress_init(); 2548eda14cbcSMatt Macy } 2549eda14cbcSMatt Macy 2550eda14cbcSMatt Macy void 2551eda14cbcSMatt Macy spa_fini(void) 2552eda14cbcSMatt Macy { 2553eda14cbcSMatt Macy l2arc_stop(); 2554eda14cbcSMatt Macy 2555eda14cbcSMatt Macy spa_evict_all(); 2556eda14cbcSMatt Macy 2557eda14cbcSMatt Macy vdev_file_fini(); 2558eda14cbcSMatt Macy vdev_mirror_stat_fini(); 2559eda14cbcSMatt Macy vdev_raidz_math_fini(); 25601f1e2261SMartin Matuska chksum_fini(); 2561eda14cbcSMatt Macy zil_fini(); 2562eda14cbcSMatt Macy dmu_fini(); 2563eda14cbcSMatt Macy zio_fini(); 2564eda14cbcSMatt Macy ddt_fini(); 25652a58b312SMartin Matuska brt_fini(); 2566eda14cbcSMatt Macy metaslab_stat_fini(); 2567eda14cbcSMatt Macy zfs_btree_fini(); 2568eda14cbcSMatt Macy unique_fini(); 2569eda14cbcSMatt Macy zfs_refcount_fini(); 2570eda14cbcSMatt Macy fm_fini(); 2571eda14cbcSMatt Macy scan_fini(); 2572eda14cbcSMatt Macy qat_fini(); 2573eda14cbcSMatt Macy spa_import_progress_destroy(); 2574eda14cbcSMatt Macy 2575eda14cbcSMatt Macy avl_destroy(&spa_namespace_avl); 2576eda14cbcSMatt Macy avl_destroy(&spa_spare_avl); 2577eda14cbcSMatt Macy avl_destroy(&spa_l2cache_avl); 2578eda14cbcSMatt Macy 2579eda14cbcSMatt Macy cv_destroy(&spa_namespace_cv); 2580eda14cbcSMatt Macy mutex_destroy(&spa_namespace_lock); 2581eda14cbcSMatt Macy mutex_destroy(&spa_spare_lock); 2582eda14cbcSMatt Macy mutex_destroy(&spa_l2cache_lock); 2583eda14cbcSMatt Macy } 2584eda14cbcSMatt Macy 2585eda14cbcSMatt Macy /* 2586184c1b94SMartin Matuska * Return whether this pool has a dedicated slog device. No locking needed. 2587eda14cbcSMatt Macy * It's not a problem if the wrong answer is returned as it's only for 2588184c1b94SMartin Matuska * performance and not correctness. 2589eda14cbcSMatt Macy */ 2590eda14cbcSMatt Macy boolean_t 2591eda14cbcSMatt Macy spa_has_slogs(spa_t *spa) 2592eda14cbcSMatt Macy { 25937877fdebSMatt Macy return (spa->spa_log_class->mc_groups != 0); 2594eda14cbcSMatt Macy } 2595eda14cbcSMatt Macy 2596eda14cbcSMatt Macy spa_log_state_t 2597eda14cbcSMatt Macy spa_get_log_state(spa_t *spa) 2598eda14cbcSMatt Macy { 2599eda14cbcSMatt Macy return (spa->spa_log_state); 2600eda14cbcSMatt Macy } 2601eda14cbcSMatt Macy 2602eda14cbcSMatt Macy void 2603eda14cbcSMatt Macy spa_set_log_state(spa_t *spa, spa_log_state_t state) 2604eda14cbcSMatt Macy { 2605eda14cbcSMatt Macy spa->spa_log_state = state; 2606eda14cbcSMatt Macy } 2607eda14cbcSMatt Macy 2608eda14cbcSMatt Macy boolean_t 2609eda14cbcSMatt Macy spa_is_root(spa_t *spa) 2610eda14cbcSMatt Macy { 2611eda14cbcSMatt Macy return (spa->spa_is_root); 2612eda14cbcSMatt Macy } 2613eda14cbcSMatt Macy 2614eda14cbcSMatt Macy boolean_t 2615eda14cbcSMatt Macy spa_writeable(spa_t *spa) 2616eda14cbcSMatt Macy { 2617eda14cbcSMatt Macy return (!!(spa->spa_mode & SPA_MODE_WRITE) && spa->spa_trust_config); 2618eda14cbcSMatt Macy } 2619eda14cbcSMatt Macy 2620eda14cbcSMatt Macy /* 2621eda14cbcSMatt Macy * Returns true if there is a pending sync task in any of the current 2622eda14cbcSMatt Macy * syncing txg, the current quiescing txg, or the current open txg. 2623eda14cbcSMatt Macy */ 2624eda14cbcSMatt Macy boolean_t 2625eda14cbcSMatt Macy spa_has_pending_synctask(spa_t *spa) 2626eda14cbcSMatt Macy { 2627eda14cbcSMatt Macy return (!txg_all_lists_empty(&spa->spa_dsl_pool->dp_sync_tasks) || 2628eda14cbcSMatt Macy !txg_all_lists_empty(&spa->spa_dsl_pool->dp_early_sync_tasks)); 2629eda14cbcSMatt Macy } 2630eda14cbcSMatt Macy 2631eda14cbcSMatt Macy spa_mode_t 2632eda14cbcSMatt Macy spa_mode(spa_t *spa) 2633eda14cbcSMatt Macy { 2634eda14cbcSMatt Macy return (spa->spa_mode); 2635eda14cbcSMatt Macy } 2636eda14cbcSMatt Macy 2637eda14cbcSMatt Macy uint64_t 2638eda14cbcSMatt Macy spa_bootfs(spa_t *spa) 2639eda14cbcSMatt Macy { 2640eda14cbcSMatt Macy return (spa->spa_bootfs); 2641eda14cbcSMatt Macy } 2642eda14cbcSMatt Macy 2643eda14cbcSMatt Macy uint64_t 2644eda14cbcSMatt Macy spa_delegation(spa_t *spa) 2645eda14cbcSMatt Macy { 2646eda14cbcSMatt Macy return (spa->spa_delegation); 2647eda14cbcSMatt Macy } 2648eda14cbcSMatt Macy 2649eda14cbcSMatt Macy objset_t * 2650eda14cbcSMatt Macy spa_meta_objset(spa_t *spa) 2651eda14cbcSMatt Macy { 2652eda14cbcSMatt Macy return (spa->spa_meta_objset); 2653eda14cbcSMatt Macy } 2654eda14cbcSMatt Macy 2655eda14cbcSMatt Macy enum zio_checksum 2656eda14cbcSMatt Macy spa_dedup_checksum(spa_t *spa) 2657eda14cbcSMatt Macy { 2658eda14cbcSMatt Macy return (spa->spa_dedup_checksum); 2659eda14cbcSMatt Macy } 2660eda14cbcSMatt Macy 2661eda14cbcSMatt Macy /* 2662eda14cbcSMatt Macy * Reset pool scan stat per scan pass (or reboot). 2663eda14cbcSMatt Macy */ 2664eda14cbcSMatt Macy void 2665eda14cbcSMatt Macy spa_scan_stat_init(spa_t *spa) 2666eda14cbcSMatt Macy { 2667eda14cbcSMatt Macy /* data not stored on disk */ 2668eda14cbcSMatt Macy spa->spa_scan_pass_start = gethrestime_sec(); 2669eda14cbcSMatt Macy if (dsl_scan_is_paused_scrub(spa->spa_dsl_pool->dp_scan)) 2670eda14cbcSMatt Macy spa->spa_scan_pass_scrub_pause = spa->spa_scan_pass_start; 2671eda14cbcSMatt Macy else 2672eda14cbcSMatt Macy spa->spa_scan_pass_scrub_pause = 0; 2673c0a83fe0SMartin Matuska 2674c0a83fe0SMartin Matuska if (dsl_errorscrub_is_paused(spa->spa_dsl_pool->dp_scan)) 2675c0a83fe0SMartin Matuska spa->spa_scan_pass_errorscrub_pause = spa->spa_scan_pass_start; 2676c0a83fe0SMartin Matuska else 2677c0a83fe0SMartin Matuska spa->spa_scan_pass_errorscrub_pause = 0; 2678c0a83fe0SMartin Matuska 2679eda14cbcSMatt Macy spa->spa_scan_pass_scrub_spent_paused = 0; 2680eda14cbcSMatt Macy spa->spa_scan_pass_exam = 0; 2681eda14cbcSMatt Macy spa->spa_scan_pass_issued = 0; 2682c0a83fe0SMartin Matuska 2683c0a83fe0SMartin Matuska // error scrub stats 2684c0a83fe0SMartin Matuska spa->spa_scan_pass_errorscrub_spent_paused = 0; 2685eda14cbcSMatt Macy } 2686eda14cbcSMatt Macy 2687eda14cbcSMatt Macy /* 2688eda14cbcSMatt Macy * Get scan stats for zpool status reports 2689eda14cbcSMatt Macy */ 2690eda14cbcSMatt Macy int 2691eda14cbcSMatt Macy spa_scan_get_stats(spa_t *spa, pool_scan_stat_t *ps) 2692eda14cbcSMatt Macy { 2693eda14cbcSMatt Macy dsl_scan_t *scn = spa->spa_dsl_pool ? spa->spa_dsl_pool->dp_scan : NULL; 2694eda14cbcSMatt Macy 2695c0a83fe0SMartin Matuska if (scn == NULL || (scn->scn_phys.scn_func == POOL_SCAN_NONE && 2696c0a83fe0SMartin Matuska scn->errorscrub_phys.dep_func == POOL_SCAN_NONE)) 2697eda14cbcSMatt Macy return (SET_ERROR(ENOENT)); 2698c0a83fe0SMartin Matuska 2699da5137abSMartin Matuska memset(ps, 0, sizeof (pool_scan_stat_t)); 2700eda14cbcSMatt Macy 2701eda14cbcSMatt Macy /* data stored on disk */ 2702eda14cbcSMatt Macy ps->pss_func = scn->scn_phys.scn_func; 2703eda14cbcSMatt Macy ps->pss_state = scn->scn_phys.scn_state; 2704eda14cbcSMatt Macy ps->pss_start_time = scn->scn_phys.scn_start_time; 2705eda14cbcSMatt Macy ps->pss_end_time = scn->scn_phys.scn_end_time; 2706eda14cbcSMatt Macy ps->pss_to_examine = scn->scn_phys.scn_to_examine; 2707eda14cbcSMatt Macy ps->pss_examined = scn->scn_phys.scn_examined; 27080a97523dSMartin Matuska ps->pss_skipped = scn->scn_phys.scn_skipped; 2709eda14cbcSMatt Macy ps->pss_processed = scn->scn_phys.scn_processed; 2710eda14cbcSMatt Macy ps->pss_errors = scn->scn_phys.scn_errors; 2711eda14cbcSMatt Macy 2712eda14cbcSMatt Macy /* data not stored on disk */ 2713eda14cbcSMatt Macy ps->pss_pass_exam = spa->spa_scan_pass_exam; 2714eda14cbcSMatt Macy ps->pss_pass_start = spa->spa_scan_pass_start; 2715eda14cbcSMatt Macy ps->pss_pass_scrub_pause = spa->spa_scan_pass_scrub_pause; 2716eda14cbcSMatt Macy ps->pss_pass_scrub_spent_paused = spa->spa_scan_pass_scrub_spent_paused; 2717eda14cbcSMatt Macy ps->pss_pass_issued = spa->spa_scan_pass_issued; 2718eda14cbcSMatt Macy ps->pss_issued = 2719eda14cbcSMatt Macy scn->scn_issued_before_pass + spa->spa_scan_pass_issued; 2720eda14cbcSMatt Macy 2721c0a83fe0SMartin Matuska /* error scrub data stored on disk */ 2722c0a83fe0SMartin Matuska ps->pss_error_scrub_func = scn->errorscrub_phys.dep_func; 2723c0a83fe0SMartin Matuska ps->pss_error_scrub_state = scn->errorscrub_phys.dep_state; 2724c0a83fe0SMartin Matuska ps->pss_error_scrub_start = scn->errorscrub_phys.dep_start_time; 2725c0a83fe0SMartin Matuska ps->pss_error_scrub_end = scn->errorscrub_phys.dep_end_time; 2726c0a83fe0SMartin Matuska ps->pss_error_scrub_examined = scn->errorscrub_phys.dep_examined; 2727c0a83fe0SMartin Matuska ps->pss_error_scrub_to_be_examined = 2728c0a83fe0SMartin Matuska scn->errorscrub_phys.dep_to_examine; 2729c0a83fe0SMartin Matuska 2730c0a83fe0SMartin Matuska /* error scrub data not stored on disk */ 2731c0a83fe0SMartin Matuska ps->pss_pass_error_scrub_pause = spa->spa_scan_pass_errorscrub_pause; 2732c0a83fe0SMartin Matuska 2733eda14cbcSMatt Macy return (0); 2734eda14cbcSMatt Macy } 2735eda14cbcSMatt Macy 2736eda14cbcSMatt Macy int 2737eda14cbcSMatt Macy spa_maxblocksize(spa_t *spa) 2738eda14cbcSMatt Macy { 2739eda14cbcSMatt Macy if (spa_feature_is_enabled(spa, SPA_FEATURE_LARGE_BLOCKS)) 2740eda14cbcSMatt Macy return (SPA_MAXBLOCKSIZE); 2741eda14cbcSMatt Macy else 2742eda14cbcSMatt Macy return (SPA_OLD_MAXBLOCKSIZE); 2743eda14cbcSMatt Macy } 2744eda14cbcSMatt Macy 2745eda14cbcSMatt Macy 2746eda14cbcSMatt Macy /* 2747eda14cbcSMatt Macy * Returns the txg that the last device removal completed. No indirect mappings 2748eda14cbcSMatt Macy * have been added since this txg. 2749eda14cbcSMatt Macy */ 2750eda14cbcSMatt Macy uint64_t 2751eda14cbcSMatt Macy spa_get_last_removal_txg(spa_t *spa) 2752eda14cbcSMatt Macy { 2753eda14cbcSMatt Macy uint64_t vdevid; 2754eda14cbcSMatt Macy uint64_t ret = -1ULL; 2755eda14cbcSMatt Macy 2756eda14cbcSMatt Macy spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER); 2757eda14cbcSMatt Macy /* 2758eda14cbcSMatt Macy * sr_prev_indirect_vdev is only modified while holding all the 2759eda14cbcSMatt Macy * config locks, so it is sufficient to hold SCL_VDEV as reader when 2760eda14cbcSMatt Macy * examining it. 2761eda14cbcSMatt Macy */ 2762eda14cbcSMatt Macy vdevid = spa->spa_removing_phys.sr_prev_indirect_vdev; 2763eda14cbcSMatt Macy 2764eda14cbcSMatt Macy while (vdevid != -1ULL) { 2765eda14cbcSMatt Macy vdev_t *vd = vdev_lookup_top(spa, vdevid); 2766eda14cbcSMatt Macy vdev_indirect_births_t *vib = vd->vdev_indirect_births; 2767eda14cbcSMatt Macy 2768eda14cbcSMatt Macy ASSERT3P(vd->vdev_ops, ==, &vdev_indirect_ops); 2769eda14cbcSMatt Macy 2770eda14cbcSMatt Macy /* 2771eda14cbcSMatt Macy * If the removal did not remap any data, we don't care. 2772eda14cbcSMatt Macy */ 2773eda14cbcSMatt Macy if (vdev_indirect_births_count(vib) != 0) { 2774eda14cbcSMatt Macy ret = vdev_indirect_births_last_entry_txg(vib); 2775eda14cbcSMatt Macy break; 2776eda14cbcSMatt Macy } 2777eda14cbcSMatt Macy 2778eda14cbcSMatt Macy vdevid = vd->vdev_indirect_config.vic_prev_indirect_vdev; 2779eda14cbcSMatt Macy } 2780eda14cbcSMatt Macy spa_config_exit(spa, SCL_VDEV, FTAG); 2781eda14cbcSMatt Macy 2782eda14cbcSMatt Macy IMPLY(ret != -1ULL, 2783eda14cbcSMatt Macy spa_feature_is_active(spa, SPA_FEATURE_DEVICE_REMOVAL)); 2784eda14cbcSMatt Macy 2785eda14cbcSMatt Macy return (ret); 2786eda14cbcSMatt Macy } 2787eda14cbcSMatt Macy 2788eda14cbcSMatt Macy int 2789eda14cbcSMatt Macy spa_maxdnodesize(spa_t *spa) 2790eda14cbcSMatt Macy { 2791eda14cbcSMatt Macy if (spa_feature_is_enabled(spa, SPA_FEATURE_LARGE_DNODE)) 2792eda14cbcSMatt Macy return (DNODE_MAX_SIZE); 2793eda14cbcSMatt Macy else 2794eda14cbcSMatt Macy return (DNODE_MIN_SIZE); 2795eda14cbcSMatt Macy } 2796eda14cbcSMatt Macy 2797eda14cbcSMatt Macy boolean_t 2798eda14cbcSMatt Macy spa_multihost(spa_t *spa) 2799eda14cbcSMatt Macy { 2800eda14cbcSMatt Macy return (spa->spa_multihost ? B_TRUE : B_FALSE); 2801eda14cbcSMatt Macy } 2802eda14cbcSMatt Macy 2803eda14cbcSMatt Macy uint32_t 2804eda14cbcSMatt Macy spa_get_hostid(spa_t *spa) 2805eda14cbcSMatt Macy { 2806eda14cbcSMatt Macy return (spa->spa_hostid); 2807eda14cbcSMatt Macy } 2808eda14cbcSMatt Macy 2809eda14cbcSMatt Macy boolean_t 2810eda14cbcSMatt Macy spa_trust_config(spa_t *spa) 2811eda14cbcSMatt Macy { 2812eda14cbcSMatt Macy return (spa->spa_trust_config); 2813eda14cbcSMatt Macy } 2814eda14cbcSMatt Macy 2815eda14cbcSMatt Macy uint64_t 2816eda14cbcSMatt Macy spa_missing_tvds_allowed(spa_t *spa) 2817eda14cbcSMatt Macy { 2818eda14cbcSMatt Macy return (spa->spa_missing_tvds_allowed); 2819eda14cbcSMatt Macy } 2820eda14cbcSMatt Macy 2821eda14cbcSMatt Macy space_map_t * 2822eda14cbcSMatt Macy spa_syncing_log_sm(spa_t *spa) 2823eda14cbcSMatt Macy { 2824eda14cbcSMatt Macy return (spa->spa_syncing_log_sm); 2825eda14cbcSMatt Macy } 2826eda14cbcSMatt Macy 2827eda14cbcSMatt Macy void 2828eda14cbcSMatt Macy spa_set_missing_tvds(spa_t *spa, uint64_t missing) 2829eda14cbcSMatt Macy { 2830eda14cbcSMatt Macy spa->spa_missing_tvds = missing; 2831eda14cbcSMatt Macy } 2832eda14cbcSMatt Macy 2833eda14cbcSMatt Macy /* 2834eda14cbcSMatt Macy * Return the pool state string ("ONLINE", "DEGRADED", "SUSPENDED", etc). 2835eda14cbcSMatt Macy */ 2836eda14cbcSMatt Macy const char * 2837eda14cbcSMatt Macy spa_state_to_name(spa_t *spa) 2838eda14cbcSMatt Macy { 2839eda14cbcSMatt Macy ASSERT3P(spa, !=, NULL); 2840eda14cbcSMatt Macy 2841eda14cbcSMatt Macy /* 2842eda14cbcSMatt Macy * it is possible for the spa to exist, without root vdev 2843eda14cbcSMatt Macy * as the spa transitions during import/export 2844eda14cbcSMatt Macy */ 2845eda14cbcSMatt Macy vdev_t *rvd = spa->spa_root_vdev; 2846eda14cbcSMatt Macy if (rvd == NULL) { 2847eda14cbcSMatt Macy return ("TRANSITIONING"); 2848eda14cbcSMatt Macy } 2849eda14cbcSMatt Macy vdev_state_t state = rvd->vdev_state; 2850eda14cbcSMatt Macy vdev_aux_t aux = rvd->vdev_stat.vs_aux; 2851eda14cbcSMatt Macy 2852cbfe9975SMartin Matuska if (spa_suspended(spa)) 2853eda14cbcSMatt Macy return ("SUSPENDED"); 2854eda14cbcSMatt Macy 2855eda14cbcSMatt Macy switch (state) { 2856eda14cbcSMatt Macy case VDEV_STATE_CLOSED: 2857eda14cbcSMatt Macy case VDEV_STATE_OFFLINE: 2858eda14cbcSMatt Macy return ("OFFLINE"); 2859eda14cbcSMatt Macy case VDEV_STATE_REMOVED: 2860eda14cbcSMatt Macy return ("REMOVED"); 2861eda14cbcSMatt Macy case VDEV_STATE_CANT_OPEN: 2862eda14cbcSMatt Macy if (aux == VDEV_AUX_CORRUPT_DATA || aux == VDEV_AUX_BAD_LOG) 2863eda14cbcSMatt Macy return ("FAULTED"); 2864eda14cbcSMatt Macy else if (aux == VDEV_AUX_SPLIT_POOL) 2865eda14cbcSMatt Macy return ("SPLIT"); 2866eda14cbcSMatt Macy else 2867eda14cbcSMatt Macy return ("UNAVAIL"); 2868eda14cbcSMatt Macy case VDEV_STATE_FAULTED: 2869eda14cbcSMatt Macy return ("FAULTED"); 2870eda14cbcSMatt Macy case VDEV_STATE_DEGRADED: 2871eda14cbcSMatt Macy return ("DEGRADED"); 2872eda14cbcSMatt Macy case VDEV_STATE_HEALTHY: 2873eda14cbcSMatt Macy return ("ONLINE"); 2874eda14cbcSMatt Macy default: 2875eda14cbcSMatt Macy break; 2876eda14cbcSMatt Macy } 2877eda14cbcSMatt Macy 2878eda14cbcSMatt Macy return ("UNKNOWN"); 2879eda14cbcSMatt Macy } 2880eda14cbcSMatt Macy 2881eda14cbcSMatt Macy boolean_t 2882eda14cbcSMatt Macy spa_top_vdevs_spacemap_addressable(spa_t *spa) 2883eda14cbcSMatt Macy { 2884eda14cbcSMatt Macy vdev_t *rvd = spa->spa_root_vdev; 2885eda14cbcSMatt Macy for (uint64_t c = 0; c < rvd->vdev_children; c++) { 2886eda14cbcSMatt Macy if (!vdev_is_spacemap_addressable(rvd->vdev_child[c])) 2887eda14cbcSMatt Macy return (B_FALSE); 2888eda14cbcSMatt Macy } 2889eda14cbcSMatt Macy return (B_TRUE); 2890eda14cbcSMatt Macy } 2891eda14cbcSMatt Macy 2892eda14cbcSMatt Macy boolean_t 2893eda14cbcSMatt Macy spa_has_checkpoint(spa_t *spa) 2894eda14cbcSMatt Macy { 2895eda14cbcSMatt Macy return (spa->spa_checkpoint_txg != 0); 2896eda14cbcSMatt Macy } 2897eda14cbcSMatt Macy 2898eda14cbcSMatt Macy boolean_t 2899eda14cbcSMatt Macy spa_importing_readonly_checkpoint(spa_t *spa) 2900eda14cbcSMatt Macy { 2901eda14cbcSMatt Macy return ((spa->spa_import_flags & ZFS_IMPORT_CHECKPOINT) && 2902eda14cbcSMatt Macy spa->spa_mode == SPA_MODE_READ); 2903eda14cbcSMatt Macy } 2904eda14cbcSMatt Macy 2905eda14cbcSMatt Macy uint64_t 2906eda14cbcSMatt Macy spa_min_claim_txg(spa_t *spa) 2907eda14cbcSMatt Macy { 2908eda14cbcSMatt Macy uint64_t checkpoint_txg = spa->spa_uberblock.ub_checkpoint_txg; 2909eda14cbcSMatt Macy 2910eda14cbcSMatt Macy if (checkpoint_txg != 0) 2911eda14cbcSMatt Macy return (checkpoint_txg + 1); 2912eda14cbcSMatt Macy 2913eda14cbcSMatt Macy return (spa->spa_first_txg); 2914eda14cbcSMatt Macy } 2915eda14cbcSMatt Macy 2916eda14cbcSMatt Macy /* 2917eda14cbcSMatt Macy * If there is a checkpoint, async destroys may consume more space from 2918eda14cbcSMatt Macy * the pool instead of freeing it. In an attempt to save the pool from 2919eda14cbcSMatt Macy * getting suspended when it is about to run out of space, we stop 2920eda14cbcSMatt Macy * processing async destroys. 2921eda14cbcSMatt Macy */ 2922eda14cbcSMatt Macy boolean_t 2923eda14cbcSMatt Macy spa_suspend_async_destroy(spa_t *spa) 2924eda14cbcSMatt Macy { 2925eda14cbcSMatt Macy dsl_pool_t *dp = spa_get_dsl(spa); 2926eda14cbcSMatt Macy 2927eda14cbcSMatt Macy uint64_t unreserved = dsl_pool_unreserved_space(dp, 2928eda14cbcSMatt Macy ZFS_SPACE_CHECK_EXTRA_RESERVED); 2929eda14cbcSMatt Macy uint64_t used = dsl_dir_phys(dp->dp_root_dir)->dd_used_bytes; 2930eda14cbcSMatt Macy uint64_t avail = (unreserved > used) ? (unreserved - used) : 0; 2931eda14cbcSMatt Macy 2932eda14cbcSMatt Macy if (spa_has_checkpoint(spa) && avail == 0) 2933eda14cbcSMatt Macy return (B_TRUE); 2934eda14cbcSMatt Macy 2935eda14cbcSMatt Macy return (B_FALSE); 2936eda14cbcSMatt Macy } 2937eda14cbcSMatt Macy 2938eda14cbcSMatt Macy #if defined(_KERNEL) 2939eda14cbcSMatt Macy 2940eda14cbcSMatt Macy int 2941eda14cbcSMatt Macy param_set_deadman_failmode_common(const char *val) 2942eda14cbcSMatt Macy { 2943eda14cbcSMatt Macy spa_t *spa = NULL; 2944eda14cbcSMatt Macy char *p; 2945eda14cbcSMatt Macy 2946eda14cbcSMatt Macy if (val == NULL) 2947eda14cbcSMatt Macy return (SET_ERROR(EINVAL)); 2948eda14cbcSMatt Macy 2949eda14cbcSMatt Macy if ((p = strchr(val, '\n')) != NULL) 2950eda14cbcSMatt Macy *p = '\0'; 2951eda14cbcSMatt Macy 2952eda14cbcSMatt Macy if (strcmp(val, "wait") != 0 && strcmp(val, "continue") != 0 && 2953eda14cbcSMatt Macy strcmp(val, "panic")) 2954eda14cbcSMatt Macy return (SET_ERROR(EINVAL)); 2955eda14cbcSMatt Macy 2956eda14cbcSMatt Macy if (spa_mode_global != SPA_MODE_UNINIT) { 2957eda14cbcSMatt Macy mutex_enter(&spa_namespace_lock); 2958eda14cbcSMatt Macy while ((spa = spa_next(spa)) != NULL) 2959eda14cbcSMatt Macy spa_set_deadman_failmode(spa, val); 2960eda14cbcSMatt Macy mutex_exit(&spa_namespace_lock); 2961eda14cbcSMatt Macy } 2962eda14cbcSMatt Macy 2963eda14cbcSMatt Macy return (0); 2964eda14cbcSMatt Macy } 2965eda14cbcSMatt Macy #endif 2966eda14cbcSMatt Macy 2967eda14cbcSMatt Macy /* Namespace manipulation */ 2968eda14cbcSMatt Macy EXPORT_SYMBOL(spa_lookup); 2969eda14cbcSMatt Macy EXPORT_SYMBOL(spa_add); 2970eda14cbcSMatt Macy EXPORT_SYMBOL(spa_remove); 2971eda14cbcSMatt Macy EXPORT_SYMBOL(spa_next); 2972eda14cbcSMatt Macy 2973eda14cbcSMatt Macy /* Refcount functions */ 2974eda14cbcSMatt Macy EXPORT_SYMBOL(spa_open_ref); 2975eda14cbcSMatt Macy EXPORT_SYMBOL(spa_close); 2976eda14cbcSMatt Macy EXPORT_SYMBOL(spa_refcount_zero); 2977eda14cbcSMatt Macy 2978eda14cbcSMatt Macy /* Pool configuration lock */ 2979eda14cbcSMatt Macy EXPORT_SYMBOL(spa_config_tryenter); 2980eda14cbcSMatt Macy EXPORT_SYMBOL(spa_config_enter); 2981eda14cbcSMatt Macy EXPORT_SYMBOL(spa_config_exit); 2982eda14cbcSMatt Macy EXPORT_SYMBOL(spa_config_held); 2983eda14cbcSMatt Macy 2984eda14cbcSMatt Macy /* Pool vdev add/remove lock */ 2985eda14cbcSMatt Macy EXPORT_SYMBOL(spa_vdev_enter); 2986eda14cbcSMatt Macy EXPORT_SYMBOL(spa_vdev_exit); 2987eda14cbcSMatt Macy 2988eda14cbcSMatt Macy /* Pool vdev state change lock */ 2989eda14cbcSMatt Macy EXPORT_SYMBOL(spa_vdev_state_enter); 2990eda14cbcSMatt Macy EXPORT_SYMBOL(spa_vdev_state_exit); 2991eda14cbcSMatt Macy 2992eda14cbcSMatt Macy /* Accessor functions */ 2993eda14cbcSMatt Macy EXPORT_SYMBOL(spa_shutting_down); 2994eda14cbcSMatt Macy EXPORT_SYMBOL(spa_get_dsl); 2995eda14cbcSMatt Macy EXPORT_SYMBOL(spa_get_rootblkptr); 2996eda14cbcSMatt Macy EXPORT_SYMBOL(spa_set_rootblkptr); 2997eda14cbcSMatt Macy EXPORT_SYMBOL(spa_altroot); 2998eda14cbcSMatt Macy EXPORT_SYMBOL(spa_sync_pass); 2999eda14cbcSMatt Macy EXPORT_SYMBOL(spa_name); 3000eda14cbcSMatt Macy EXPORT_SYMBOL(spa_guid); 3001eda14cbcSMatt Macy EXPORT_SYMBOL(spa_last_synced_txg); 3002eda14cbcSMatt Macy EXPORT_SYMBOL(spa_first_txg); 3003eda14cbcSMatt Macy EXPORT_SYMBOL(spa_syncing_txg); 3004eda14cbcSMatt Macy EXPORT_SYMBOL(spa_version); 3005eda14cbcSMatt Macy EXPORT_SYMBOL(spa_state); 3006eda14cbcSMatt Macy EXPORT_SYMBOL(spa_load_state); 3007eda14cbcSMatt Macy EXPORT_SYMBOL(spa_freeze_txg); 3008eda14cbcSMatt Macy EXPORT_SYMBOL(spa_get_dspace); 3009eda14cbcSMatt Macy EXPORT_SYMBOL(spa_update_dspace); 3010eda14cbcSMatt Macy EXPORT_SYMBOL(spa_deflate); 3011eda14cbcSMatt Macy EXPORT_SYMBOL(spa_normal_class); 3012eda14cbcSMatt Macy EXPORT_SYMBOL(spa_log_class); 3013eda14cbcSMatt Macy EXPORT_SYMBOL(spa_special_class); 3014eda14cbcSMatt Macy EXPORT_SYMBOL(spa_preferred_class); 3015eda14cbcSMatt Macy EXPORT_SYMBOL(spa_max_replication); 3016eda14cbcSMatt Macy EXPORT_SYMBOL(spa_prev_software_version); 3017eda14cbcSMatt Macy EXPORT_SYMBOL(spa_get_failmode); 3018eda14cbcSMatt Macy EXPORT_SYMBOL(spa_suspended); 3019eda14cbcSMatt Macy EXPORT_SYMBOL(spa_bootfs); 3020eda14cbcSMatt Macy EXPORT_SYMBOL(spa_delegation); 3021eda14cbcSMatt Macy EXPORT_SYMBOL(spa_meta_objset); 3022eda14cbcSMatt Macy EXPORT_SYMBOL(spa_maxblocksize); 3023eda14cbcSMatt Macy EXPORT_SYMBOL(spa_maxdnodesize); 3024eda14cbcSMatt Macy 3025eda14cbcSMatt Macy /* Miscellaneous support routines */ 3026eda14cbcSMatt Macy EXPORT_SYMBOL(spa_guid_exists); 3027eda14cbcSMatt Macy EXPORT_SYMBOL(spa_strdup); 3028eda14cbcSMatt Macy EXPORT_SYMBOL(spa_strfree); 3029eda14cbcSMatt Macy EXPORT_SYMBOL(spa_generate_guid); 3030eda14cbcSMatt Macy EXPORT_SYMBOL(snprintf_blkptr); 3031eda14cbcSMatt Macy EXPORT_SYMBOL(spa_freeze); 3032eda14cbcSMatt Macy EXPORT_SYMBOL(spa_upgrade); 3033eda14cbcSMatt Macy EXPORT_SYMBOL(spa_evict_all); 3034eda14cbcSMatt Macy EXPORT_SYMBOL(spa_lookup_by_guid); 3035eda14cbcSMatt Macy EXPORT_SYMBOL(spa_has_spare); 3036eda14cbcSMatt Macy EXPORT_SYMBOL(dva_get_dsize_sync); 3037eda14cbcSMatt Macy EXPORT_SYMBOL(bp_get_dsize_sync); 3038eda14cbcSMatt Macy EXPORT_SYMBOL(bp_get_dsize); 3039eda14cbcSMatt Macy EXPORT_SYMBOL(spa_has_slogs); 3040eda14cbcSMatt Macy EXPORT_SYMBOL(spa_is_root); 3041eda14cbcSMatt Macy EXPORT_SYMBOL(spa_writeable); 3042eda14cbcSMatt Macy EXPORT_SYMBOL(spa_mode); 3043eda14cbcSMatt Macy EXPORT_SYMBOL(spa_namespace_lock); 3044eda14cbcSMatt Macy EXPORT_SYMBOL(spa_trust_config); 3045eda14cbcSMatt Macy EXPORT_SYMBOL(spa_missing_tvds_allowed); 3046eda14cbcSMatt Macy EXPORT_SYMBOL(spa_set_missing_tvds); 3047eda14cbcSMatt Macy EXPORT_SYMBOL(spa_state_to_name); 3048eda14cbcSMatt Macy EXPORT_SYMBOL(spa_importing_readonly_checkpoint); 3049eda14cbcSMatt Macy EXPORT_SYMBOL(spa_min_claim_txg); 3050eda14cbcSMatt Macy EXPORT_SYMBOL(spa_suspend_async_destroy); 3051eda14cbcSMatt Macy EXPORT_SYMBOL(spa_has_checkpoint); 3052eda14cbcSMatt Macy EXPORT_SYMBOL(spa_top_vdevs_spacemap_addressable); 3053eda14cbcSMatt Macy 3054eda14cbcSMatt Macy ZFS_MODULE_PARAM(zfs, zfs_, flags, UINT, ZMOD_RW, 3055eda14cbcSMatt Macy "Set additional debugging flags"); 3056eda14cbcSMatt Macy 3057eda14cbcSMatt Macy ZFS_MODULE_PARAM(zfs, zfs_, recover, INT, ZMOD_RW, 3058eda14cbcSMatt Macy "Set to attempt to recover from fatal errors"); 3059eda14cbcSMatt Macy 3060eda14cbcSMatt Macy ZFS_MODULE_PARAM(zfs, zfs_, free_leak_on_eio, INT, ZMOD_RW, 3061eda14cbcSMatt Macy "Set to ignore IO errors during free and permanently leak the space"); 3062eda14cbcSMatt Macy 3063dbd5678dSMartin Matuska ZFS_MODULE_PARAM(zfs_deadman, zfs_deadman_, checktime_ms, U64, ZMOD_RW, 3064eda14cbcSMatt Macy "Dead I/O check interval in milliseconds"); 3065eda14cbcSMatt Macy 30669db44a8eSMartin Matuska ZFS_MODULE_PARAM(zfs_deadman, zfs_deadman_, enabled, INT, ZMOD_RW, 3067eda14cbcSMatt Macy "Enable deadman timer"); 3068eda14cbcSMatt Macy 3069be181ee2SMartin Matuska ZFS_MODULE_PARAM(zfs_spa, spa_, asize_inflation, UINT, ZMOD_RW, 3070eda14cbcSMatt Macy "SPA size estimate multiplication factor"); 3071eda14cbcSMatt Macy 3072eda14cbcSMatt Macy ZFS_MODULE_PARAM(zfs, zfs_, ddt_data_is_special, INT, ZMOD_RW, 3073eda14cbcSMatt Macy "Place DDT data into the special class"); 3074eda14cbcSMatt Macy 3075eda14cbcSMatt Macy ZFS_MODULE_PARAM(zfs, zfs_, user_indirect_is_special, INT, ZMOD_RW, 3076eda14cbcSMatt Macy "Place user data indirect blocks into the special class"); 3077eda14cbcSMatt Macy 3078eda14cbcSMatt Macy /* BEGIN CSTYLED */ 3079eda14cbcSMatt Macy ZFS_MODULE_PARAM_CALL(zfs_deadman, zfs_deadman_, failmode, 3080eda14cbcSMatt Macy param_set_deadman_failmode, param_get_charp, ZMOD_RW, 3081eda14cbcSMatt Macy "Failmode for deadman timer"); 3082eda14cbcSMatt Macy 3083eda14cbcSMatt Macy ZFS_MODULE_PARAM_CALL(zfs_deadman, zfs_deadman_, synctime_ms, 3084dbd5678dSMartin Matuska param_set_deadman_synctime, spl_param_get_u64, ZMOD_RW, 3085eda14cbcSMatt Macy "Pool sync expiration time in milliseconds"); 3086eda14cbcSMatt Macy 3087eda14cbcSMatt Macy ZFS_MODULE_PARAM_CALL(zfs_deadman, zfs_deadman_, ziotime_ms, 3088dbd5678dSMartin Matuska param_set_deadman_ziotime, spl_param_get_u64, ZMOD_RW, 3089eda14cbcSMatt Macy "IO expiration time in milliseconds"); 3090eda14cbcSMatt Macy 3091be181ee2SMartin Matuska ZFS_MODULE_PARAM(zfs, zfs_, special_class_metadata_reserve_pct, UINT, ZMOD_RW, 3092eda14cbcSMatt Macy "Small file blocks in special vdevs depends on this much " 3093eda14cbcSMatt Macy "free space available"); 3094eda14cbcSMatt Macy /* END CSTYLED */ 3095eda14cbcSMatt Macy 3096eda14cbcSMatt Macy ZFS_MODULE_PARAM_CALL(zfs_spa, spa_, slop_shift, param_set_slop_shift, 3097be181ee2SMartin Matuska param_get_uint, ZMOD_RW, "Reserved free space in pool"); 309814c2e0a0SMartin Matuska 309914c2e0a0SMartin Matuska ZFS_MODULE_PARAM(zfs, spa_, num_allocators, INT, ZMOD_RW, 310014c2e0a0SMartin Matuska "Number of allocators per spa, capped by ncpus"); 3101