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 9eda14cbcSMatt Macy * or http://www.opensolaris.org/os/licensing. 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. 237877fdebSMatt Macy * Copyright (c) 2012, 2020 by Delphix. All rights reserved. 24eda14cbcSMatt Macy * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved. 25eda14cbcSMatt Macy */ 26eda14cbcSMatt Macy 27eda14cbcSMatt Macy #include <sys/zfs_context.h> 28eda14cbcSMatt Macy #include <sys/dbuf.h> 29eda14cbcSMatt Macy #include <sys/dnode.h> 30eda14cbcSMatt Macy #include <sys/dmu.h> 31eda14cbcSMatt Macy #include <sys/dmu_impl.h> 32eda14cbcSMatt Macy #include <sys/dmu_tx.h> 33eda14cbcSMatt Macy #include <sys/dmu_objset.h> 34eda14cbcSMatt Macy #include <sys/dsl_dir.h> 35eda14cbcSMatt Macy #include <sys/dsl_dataset.h> 36eda14cbcSMatt Macy #include <sys/spa.h> 37eda14cbcSMatt Macy #include <sys/zio.h> 38eda14cbcSMatt Macy #include <sys/dmu_zfetch.h> 39eda14cbcSMatt Macy #include <sys/range_tree.h> 40eda14cbcSMatt Macy #include <sys/trace_zfs.h> 41eda14cbcSMatt Macy #include <sys/zfs_project.h> 42eda14cbcSMatt Macy 43eda14cbcSMatt Macy dnode_stats_t dnode_stats = { 44eda14cbcSMatt Macy { "dnode_hold_dbuf_hold", KSTAT_DATA_UINT64 }, 45eda14cbcSMatt Macy { "dnode_hold_dbuf_read", KSTAT_DATA_UINT64 }, 46eda14cbcSMatt Macy { "dnode_hold_alloc_hits", KSTAT_DATA_UINT64 }, 47eda14cbcSMatt Macy { "dnode_hold_alloc_misses", KSTAT_DATA_UINT64 }, 48eda14cbcSMatt Macy { "dnode_hold_alloc_interior", KSTAT_DATA_UINT64 }, 49eda14cbcSMatt Macy { "dnode_hold_alloc_lock_retry", KSTAT_DATA_UINT64 }, 50eda14cbcSMatt Macy { "dnode_hold_alloc_lock_misses", KSTAT_DATA_UINT64 }, 51eda14cbcSMatt Macy { "dnode_hold_alloc_type_none", KSTAT_DATA_UINT64 }, 52eda14cbcSMatt Macy { "dnode_hold_free_hits", KSTAT_DATA_UINT64 }, 53eda14cbcSMatt Macy { "dnode_hold_free_misses", KSTAT_DATA_UINT64 }, 54eda14cbcSMatt Macy { "dnode_hold_free_lock_misses", KSTAT_DATA_UINT64 }, 55eda14cbcSMatt Macy { "dnode_hold_free_lock_retry", KSTAT_DATA_UINT64 }, 56eda14cbcSMatt Macy { "dnode_hold_free_overflow", KSTAT_DATA_UINT64 }, 57eda14cbcSMatt Macy { "dnode_hold_free_refcount", KSTAT_DATA_UINT64 }, 58eda14cbcSMatt Macy { "dnode_free_interior_lock_retry", KSTAT_DATA_UINT64 }, 59eda14cbcSMatt Macy { "dnode_allocate", KSTAT_DATA_UINT64 }, 60eda14cbcSMatt Macy { "dnode_reallocate", KSTAT_DATA_UINT64 }, 61eda14cbcSMatt Macy { "dnode_buf_evict", KSTAT_DATA_UINT64 }, 62eda14cbcSMatt Macy { "dnode_alloc_next_chunk", KSTAT_DATA_UINT64 }, 63eda14cbcSMatt Macy { "dnode_alloc_race", KSTAT_DATA_UINT64 }, 64eda14cbcSMatt Macy { "dnode_alloc_next_block", KSTAT_DATA_UINT64 }, 65eda14cbcSMatt Macy { "dnode_move_invalid", KSTAT_DATA_UINT64 }, 66eda14cbcSMatt Macy { "dnode_move_recheck1", KSTAT_DATA_UINT64 }, 67eda14cbcSMatt Macy { "dnode_move_recheck2", KSTAT_DATA_UINT64 }, 68eda14cbcSMatt Macy { "dnode_move_special", KSTAT_DATA_UINT64 }, 69eda14cbcSMatt Macy { "dnode_move_handle", KSTAT_DATA_UINT64 }, 70eda14cbcSMatt Macy { "dnode_move_rwlock", KSTAT_DATA_UINT64 }, 71eda14cbcSMatt Macy { "dnode_move_active", KSTAT_DATA_UINT64 }, 72eda14cbcSMatt Macy }; 73eda14cbcSMatt Macy 74eda14cbcSMatt Macy static kstat_t *dnode_ksp; 75eda14cbcSMatt Macy static kmem_cache_t *dnode_cache; 76eda14cbcSMatt Macy 77eda14cbcSMatt Macy static dnode_phys_t dnode_phys_zero __maybe_unused; 78eda14cbcSMatt Macy 79eda14cbcSMatt Macy int zfs_default_bs = SPA_MINBLOCKSHIFT; 80eda14cbcSMatt Macy int zfs_default_ibs = DN_MAX_INDBLKSHIFT; 81eda14cbcSMatt Macy 82eda14cbcSMatt Macy #ifdef _KERNEL 83eda14cbcSMatt Macy static kmem_cbrc_t dnode_move(void *, void *, size_t, void *); 84eda14cbcSMatt Macy #endif /* _KERNEL */ 85eda14cbcSMatt Macy 86eda14cbcSMatt Macy static int 87eda14cbcSMatt Macy dbuf_compare(const void *x1, const void *x2) 88eda14cbcSMatt Macy { 89eda14cbcSMatt Macy const dmu_buf_impl_t *d1 = x1; 90eda14cbcSMatt Macy const dmu_buf_impl_t *d2 = x2; 91eda14cbcSMatt Macy 92eda14cbcSMatt Macy int cmp = TREE_CMP(d1->db_level, d2->db_level); 93eda14cbcSMatt Macy if (likely(cmp)) 94eda14cbcSMatt Macy return (cmp); 95eda14cbcSMatt Macy 96eda14cbcSMatt Macy cmp = TREE_CMP(d1->db_blkid, d2->db_blkid); 97eda14cbcSMatt Macy if (likely(cmp)) 98eda14cbcSMatt Macy return (cmp); 99eda14cbcSMatt Macy 100eda14cbcSMatt Macy if (d1->db_state == DB_SEARCH) { 101eda14cbcSMatt Macy ASSERT3S(d2->db_state, !=, DB_SEARCH); 102eda14cbcSMatt Macy return (-1); 103eda14cbcSMatt Macy } else if (d2->db_state == DB_SEARCH) { 104eda14cbcSMatt Macy ASSERT3S(d1->db_state, !=, DB_SEARCH); 105eda14cbcSMatt Macy return (1); 106eda14cbcSMatt Macy } 107eda14cbcSMatt Macy 108eda14cbcSMatt Macy return (TREE_PCMP(d1, d2)); 109eda14cbcSMatt Macy } 110eda14cbcSMatt Macy 111eda14cbcSMatt Macy /* ARGSUSED */ 112eda14cbcSMatt Macy static int 113eda14cbcSMatt Macy dnode_cons(void *arg, void *unused, int kmflag) 114eda14cbcSMatt Macy { 115eda14cbcSMatt Macy dnode_t *dn = arg; 116eda14cbcSMatt Macy int i; 117eda14cbcSMatt Macy 118eda14cbcSMatt Macy rw_init(&dn->dn_struct_rwlock, NULL, RW_NOLOCKDEP, NULL); 119eda14cbcSMatt Macy mutex_init(&dn->dn_mtx, NULL, MUTEX_DEFAULT, NULL); 120eda14cbcSMatt Macy mutex_init(&dn->dn_dbufs_mtx, NULL, MUTEX_DEFAULT, NULL); 121eda14cbcSMatt Macy cv_init(&dn->dn_notxholds, NULL, CV_DEFAULT, NULL); 122eda14cbcSMatt Macy cv_init(&dn->dn_nodnholds, NULL, CV_DEFAULT, NULL); 123eda14cbcSMatt Macy 124eda14cbcSMatt Macy /* 125eda14cbcSMatt Macy * Every dbuf has a reference, and dropping a tracked reference is 126eda14cbcSMatt Macy * O(number of references), so don't track dn_holds. 127eda14cbcSMatt Macy */ 128eda14cbcSMatt Macy zfs_refcount_create_untracked(&dn->dn_holds); 129eda14cbcSMatt Macy zfs_refcount_create(&dn->dn_tx_holds); 130eda14cbcSMatt Macy list_link_init(&dn->dn_link); 131eda14cbcSMatt Macy 132eda14cbcSMatt Macy bzero(&dn->dn_next_nblkptr[0], sizeof (dn->dn_next_nblkptr)); 133eda14cbcSMatt Macy bzero(&dn->dn_next_nlevels[0], sizeof (dn->dn_next_nlevels)); 134eda14cbcSMatt Macy bzero(&dn->dn_next_indblkshift[0], sizeof (dn->dn_next_indblkshift)); 135eda14cbcSMatt Macy bzero(&dn->dn_next_bonustype[0], sizeof (dn->dn_next_bonustype)); 136eda14cbcSMatt Macy bzero(&dn->dn_rm_spillblk[0], sizeof (dn->dn_rm_spillblk)); 137eda14cbcSMatt Macy bzero(&dn->dn_next_bonuslen[0], sizeof (dn->dn_next_bonuslen)); 138eda14cbcSMatt Macy bzero(&dn->dn_next_blksz[0], sizeof (dn->dn_next_blksz)); 139eda14cbcSMatt Macy bzero(&dn->dn_next_maxblkid[0], sizeof (dn->dn_next_maxblkid)); 140eda14cbcSMatt Macy 141eda14cbcSMatt Macy for (i = 0; i < TXG_SIZE; i++) { 142eda14cbcSMatt Macy multilist_link_init(&dn->dn_dirty_link[i]); 143eda14cbcSMatt Macy dn->dn_free_ranges[i] = NULL; 144eda14cbcSMatt Macy list_create(&dn->dn_dirty_records[i], 145eda14cbcSMatt Macy sizeof (dbuf_dirty_record_t), 146eda14cbcSMatt Macy offsetof(dbuf_dirty_record_t, dr_dirty_node)); 147eda14cbcSMatt Macy } 148eda14cbcSMatt Macy 149eda14cbcSMatt Macy dn->dn_allocated_txg = 0; 150eda14cbcSMatt Macy dn->dn_free_txg = 0; 151eda14cbcSMatt Macy dn->dn_assigned_txg = 0; 152eda14cbcSMatt Macy dn->dn_dirty_txg = 0; 153eda14cbcSMatt Macy dn->dn_dirtyctx = 0; 154eda14cbcSMatt Macy dn->dn_dirtyctx_firstset = NULL; 155eda14cbcSMatt Macy dn->dn_bonus = NULL; 156eda14cbcSMatt Macy dn->dn_have_spill = B_FALSE; 157eda14cbcSMatt Macy dn->dn_zio = NULL; 158eda14cbcSMatt Macy dn->dn_oldused = 0; 159eda14cbcSMatt Macy dn->dn_oldflags = 0; 160eda14cbcSMatt Macy dn->dn_olduid = 0; 161eda14cbcSMatt Macy dn->dn_oldgid = 0; 162eda14cbcSMatt Macy dn->dn_oldprojid = ZFS_DEFAULT_PROJID; 163eda14cbcSMatt Macy dn->dn_newuid = 0; 164eda14cbcSMatt Macy dn->dn_newgid = 0; 165eda14cbcSMatt Macy dn->dn_newprojid = ZFS_DEFAULT_PROJID; 166eda14cbcSMatt Macy dn->dn_id_flags = 0; 167eda14cbcSMatt Macy 168eda14cbcSMatt Macy dn->dn_dbufs_count = 0; 169eda14cbcSMatt Macy avl_create(&dn->dn_dbufs, dbuf_compare, sizeof (dmu_buf_impl_t), 170eda14cbcSMatt Macy offsetof(dmu_buf_impl_t, db_link)); 171eda14cbcSMatt Macy 172eda14cbcSMatt Macy dn->dn_moved = 0; 173eda14cbcSMatt Macy return (0); 174eda14cbcSMatt Macy } 175eda14cbcSMatt Macy 176eda14cbcSMatt Macy /* ARGSUSED */ 177eda14cbcSMatt Macy static void 178eda14cbcSMatt Macy dnode_dest(void *arg, void *unused) 179eda14cbcSMatt Macy { 180eda14cbcSMatt Macy int i; 181eda14cbcSMatt Macy dnode_t *dn = arg; 182eda14cbcSMatt Macy 183eda14cbcSMatt Macy rw_destroy(&dn->dn_struct_rwlock); 184eda14cbcSMatt Macy mutex_destroy(&dn->dn_mtx); 185eda14cbcSMatt Macy mutex_destroy(&dn->dn_dbufs_mtx); 186eda14cbcSMatt Macy cv_destroy(&dn->dn_notxholds); 187eda14cbcSMatt Macy cv_destroy(&dn->dn_nodnholds); 188eda14cbcSMatt Macy zfs_refcount_destroy(&dn->dn_holds); 189eda14cbcSMatt Macy zfs_refcount_destroy(&dn->dn_tx_holds); 190eda14cbcSMatt Macy ASSERT(!list_link_active(&dn->dn_link)); 191eda14cbcSMatt Macy 192eda14cbcSMatt Macy for (i = 0; i < TXG_SIZE; i++) { 193eda14cbcSMatt Macy ASSERT(!multilist_link_active(&dn->dn_dirty_link[i])); 194eda14cbcSMatt Macy ASSERT3P(dn->dn_free_ranges[i], ==, NULL); 195eda14cbcSMatt Macy list_destroy(&dn->dn_dirty_records[i]); 196eda14cbcSMatt Macy ASSERT0(dn->dn_next_nblkptr[i]); 197eda14cbcSMatt Macy ASSERT0(dn->dn_next_nlevels[i]); 198eda14cbcSMatt Macy ASSERT0(dn->dn_next_indblkshift[i]); 199eda14cbcSMatt Macy ASSERT0(dn->dn_next_bonustype[i]); 200eda14cbcSMatt Macy ASSERT0(dn->dn_rm_spillblk[i]); 201eda14cbcSMatt Macy ASSERT0(dn->dn_next_bonuslen[i]); 202eda14cbcSMatt Macy ASSERT0(dn->dn_next_blksz[i]); 203eda14cbcSMatt Macy ASSERT0(dn->dn_next_maxblkid[i]); 204eda14cbcSMatt Macy } 205eda14cbcSMatt Macy 206eda14cbcSMatt Macy ASSERT0(dn->dn_allocated_txg); 207eda14cbcSMatt Macy ASSERT0(dn->dn_free_txg); 208eda14cbcSMatt Macy ASSERT0(dn->dn_assigned_txg); 209eda14cbcSMatt Macy ASSERT0(dn->dn_dirty_txg); 210eda14cbcSMatt Macy ASSERT0(dn->dn_dirtyctx); 211eda14cbcSMatt Macy ASSERT3P(dn->dn_dirtyctx_firstset, ==, NULL); 212eda14cbcSMatt Macy ASSERT3P(dn->dn_bonus, ==, NULL); 213eda14cbcSMatt Macy ASSERT(!dn->dn_have_spill); 214eda14cbcSMatt Macy ASSERT3P(dn->dn_zio, ==, NULL); 215eda14cbcSMatt Macy ASSERT0(dn->dn_oldused); 216eda14cbcSMatt Macy ASSERT0(dn->dn_oldflags); 217eda14cbcSMatt Macy ASSERT0(dn->dn_olduid); 218eda14cbcSMatt Macy ASSERT0(dn->dn_oldgid); 219eda14cbcSMatt Macy ASSERT0(dn->dn_oldprojid); 220eda14cbcSMatt Macy ASSERT0(dn->dn_newuid); 221eda14cbcSMatt Macy ASSERT0(dn->dn_newgid); 222eda14cbcSMatt Macy ASSERT0(dn->dn_newprojid); 223eda14cbcSMatt Macy ASSERT0(dn->dn_id_flags); 224eda14cbcSMatt Macy 225eda14cbcSMatt Macy ASSERT0(dn->dn_dbufs_count); 226eda14cbcSMatt Macy avl_destroy(&dn->dn_dbufs); 227eda14cbcSMatt Macy } 228eda14cbcSMatt Macy 229eda14cbcSMatt Macy void 230eda14cbcSMatt Macy dnode_init(void) 231eda14cbcSMatt Macy { 232eda14cbcSMatt Macy ASSERT(dnode_cache == NULL); 233eda14cbcSMatt Macy dnode_cache = kmem_cache_create("dnode_t", sizeof (dnode_t), 234eda14cbcSMatt Macy 0, dnode_cons, dnode_dest, NULL, NULL, NULL, 0); 235eda14cbcSMatt Macy kmem_cache_set_move(dnode_cache, dnode_move); 236eda14cbcSMatt Macy 237eda14cbcSMatt Macy dnode_ksp = kstat_create("zfs", 0, "dnodestats", "misc", 238eda14cbcSMatt Macy KSTAT_TYPE_NAMED, sizeof (dnode_stats) / sizeof (kstat_named_t), 239eda14cbcSMatt Macy KSTAT_FLAG_VIRTUAL); 240eda14cbcSMatt Macy if (dnode_ksp != NULL) { 241eda14cbcSMatt Macy dnode_ksp->ks_data = &dnode_stats; 242eda14cbcSMatt Macy kstat_install(dnode_ksp); 243eda14cbcSMatt Macy } 244eda14cbcSMatt Macy } 245eda14cbcSMatt Macy 246eda14cbcSMatt Macy void 247eda14cbcSMatt Macy dnode_fini(void) 248eda14cbcSMatt Macy { 249eda14cbcSMatt Macy if (dnode_ksp != NULL) { 250eda14cbcSMatt Macy kstat_delete(dnode_ksp); 251eda14cbcSMatt Macy dnode_ksp = NULL; 252eda14cbcSMatt Macy } 253eda14cbcSMatt Macy 254eda14cbcSMatt Macy kmem_cache_destroy(dnode_cache); 255eda14cbcSMatt Macy dnode_cache = NULL; 256eda14cbcSMatt Macy } 257eda14cbcSMatt Macy 258eda14cbcSMatt Macy 259eda14cbcSMatt Macy #ifdef ZFS_DEBUG 260eda14cbcSMatt Macy void 261eda14cbcSMatt Macy dnode_verify(dnode_t *dn) 262eda14cbcSMatt Macy { 263eda14cbcSMatt Macy int drop_struct_lock = FALSE; 264eda14cbcSMatt Macy 265eda14cbcSMatt Macy ASSERT(dn->dn_phys); 266eda14cbcSMatt Macy ASSERT(dn->dn_objset); 267eda14cbcSMatt Macy ASSERT(dn->dn_handle->dnh_dnode == dn); 268eda14cbcSMatt Macy 269eda14cbcSMatt Macy ASSERT(DMU_OT_IS_VALID(dn->dn_phys->dn_type)); 270eda14cbcSMatt Macy 271eda14cbcSMatt Macy if (!(zfs_flags & ZFS_DEBUG_DNODE_VERIFY)) 272eda14cbcSMatt Macy return; 273eda14cbcSMatt Macy 274eda14cbcSMatt Macy if (!RW_WRITE_HELD(&dn->dn_struct_rwlock)) { 275eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_READER); 276eda14cbcSMatt Macy drop_struct_lock = TRUE; 277eda14cbcSMatt Macy } 278eda14cbcSMatt Macy if (dn->dn_phys->dn_type != DMU_OT_NONE || dn->dn_allocated_txg != 0) { 279eda14cbcSMatt Macy int i; 280eda14cbcSMatt Macy int max_bonuslen = DN_SLOTS_TO_BONUSLEN(dn->dn_num_slots); 281eda14cbcSMatt Macy ASSERT3U(dn->dn_indblkshift, <=, SPA_MAXBLOCKSHIFT); 282eda14cbcSMatt Macy if (dn->dn_datablkshift) { 283eda14cbcSMatt Macy ASSERT3U(dn->dn_datablkshift, >=, SPA_MINBLOCKSHIFT); 284eda14cbcSMatt Macy ASSERT3U(dn->dn_datablkshift, <=, SPA_MAXBLOCKSHIFT); 285eda14cbcSMatt Macy ASSERT3U(1<<dn->dn_datablkshift, ==, dn->dn_datablksz); 286eda14cbcSMatt Macy } 287eda14cbcSMatt Macy ASSERT3U(dn->dn_nlevels, <=, 30); 288eda14cbcSMatt Macy ASSERT(DMU_OT_IS_VALID(dn->dn_type)); 289eda14cbcSMatt Macy ASSERT3U(dn->dn_nblkptr, >=, 1); 290eda14cbcSMatt Macy ASSERT3U(dn->dn_nblkptr, <=, DN_MAX_NBLKPTR); 291eda14cbcSMatt Macy ASSERT3U(dn->dn_bonuslen, <=, max_bonuslen); 292eda14cbcSMatt Macy ASSERT3U(dn->dn_datablksz, ==, 293eda14cbcSMatt Macy dn->dn_datablkszsec << SPA_MINBLOCKSHIFT); 294eda14cbcSMatt Macy ASSERT3U(ISP2(dn->dn_datablksz), ==, dn->dn_datablkshift != 0); 295eda14cbcSMatt Macy ASSERT3U((dn->dn_nblkptr - 1) * sizeof (blkptr_t) + 296eda14cbcSMatt Macy dn->dn_bonuslen, <=, max_bonuslen); 297eda14cbcSMatt Macy for (i = 0; i < TXG_SIZE; i++) { 298eda14cbcSMatt Macy ASSERT3U(dn->dn_next_nlevels[i], <=, dn->dn_nlevels); 299eda14cbcSMatt Macy } 300eda14cbcSMatt Macy } 301eda14cbcSMatt Macy if (dn->dn_phys->dn_type != DMU_OT_NONE) 302eda14cbcSMatt Macy ASSERT3U(dn->dn_phys->dn_nlevels, <=, dn->dn_nlevels); 303eda14cbcSMatt Macy ASSERT(DMU_OBJECT_IS_SPECIAL(dn->dn_object) || dn->dn_dbuf != NULL); 304eda14cbcSMatt Macy if (dn->dn_dbuf != NULL) { 305eda14cbcSMatt Macy ASSERT3P(dn->dn_phys, ==, 306eda14cbcSMatt Macy (dnode_phys_t *)dn->dn_dbuf->db.db_data + 307eda14cbcSMatt Macy (dn->dn_object % (dn->dn_dbuf->db.db_size >> DNODE_SHIFT))); 308eda14cbcSMatt Macy } 309eda14cbcSMatt Macy if (drop_struct_lock) 310eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 311eda14cbcSMatt Macy } 312eda14cbcSMatt Macy #endif 313eda14cbcSMatt Macy 314eda14cbcSMatt Macy void 315eda14cbcSMatt Macy dnode_byteswap(dnode_phys_t *dnp) 316eda14cbcSMatt Macy { 317eda14cbcSMatt Macy uint64_t *buf64 = (void*)&dnp->dn_blkptr; 318eda14cbcSMatt Macy int i; 319eda14cbcSMatt Macy 320eda14cbcSMatt Macy if (dnp->dn_type == DMU_OT_NONE) { 321eda14cbcSMatt Macy bzero(dnp, sizeof (dnode_phys_t)); 322eda14cbcSMatt Macy return; 323eda14cbcSMatt Macy } 324eda14cbcSMatt Macy 325eda14cbcSMatt Macy dnp->dn_datablkszsec = BSWAP_16(dnp->dn_datablkszsec); 326eda14cbcSMatt Macy dnp->dn_bonuslen = BSWAP_16(dnp->dn_bonuslen); 327eda14cbcSMatt Macy dnp->dn_extra_slots = BSWAP_8(dnp->dn_extra_slots); 328eda14cbcSMatt Macy dnp->dn_maxblkid = BSWAP_64(dnp->dn_maxblkid); 329eda14cbcSMatt Macy dnp->dn_used = BSWAP_64(dnp->dn_used); 330eda14cbcSMatt Macy 331eda14cbcSMatt Macy /* 332eda14cbcSMatt Macy * dn_nblkptr is only one byte, so it's OK to read it in either 333eda14cbcSMatt Macy * byte order. We can't read dn_bouslen. 334eda14cbcSMatt Macy */ 335eda14cbcSMatt Macy ASSERT(dnp->dn_indblkshift <= SPA_MAXBLOCKSHIFT); 336eda14cbcSMatt Macy ASSERT(dnp->dn_nblkptr <= DN_MAX_NBLKPTR); 337eda14cbcSMatt Macy for (i = 0; i < dnp->dn_nblkptr * sizeof (blkptr_t)/8; i++) 338eda14cbcSMatt Macy buf64[i] = BSWAP_64(buf64[i]); 339eda14cbcSMatt Macy 340eda14cbcSMatt Macy /* 341eda14cbcSMatt Macy * OK to check dn_bonuslen for zero, because it won't matter if 342eda14cbcSMatt Macy * we have the wrong byte order. This is necessary because the 343eda14cbcSMatt Macy * dnode dnode is smaller than a regular dnode. 344eda14cbcSMatt Macy */ 345eda14cbcSMatt Macy if (dnp->dn_bonuslen != 0) { 346eda14cbcSMatt Macy /* 347eda14cbcSMatt Macy * Note that the bonus length calculated here may be 348eda14cbcSMatt Macy * longer than the actual bonus buffer. This is because 349eda14cbcSMatt Macy * we always put the bonus buffer after the last block 350eda14cbcSMatt Macy * pointer (instead of packing it against the end of the 351eda14cbcSMatt Macy * dnode buffer). 352eda14cbcSMatt Macy */ 353eda14cbcSMatt Macy int off = (dnp->dn_nblkptr-1) * sizeof (blkptr_t); 354eda14cbcSMatt Macy int slots = dnp->dn_extra_slots + 1; 355eda14cbcSMatt Macy size_t len = DN_SLOTS_TO_BONUSLEN(slots) - off; 356eda14cbcSMatt Macy dmu_object_byteswap_t byteswap; 357eda14cbcSMatt Macy ASSERT(DMU_OT_IS_VALID(dnp->dn_bonustype)); 358eda14cbcSMatt Macy byteswap = DMU_OT_BYTESWAP(dnp->dn_bonustype); 359eda14cbcSMatt Macy dmu_ot_byteswap[byteswap].ob_func(dnp->dn_bonus + off, len); 360eda14cbcSMatt Macy } 361eda14cbcSMatt Macy 362eda14cbcSMatt Macy /* Swap SPILL block if we have one */ 363eda14cbcSMatt Macy if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) 364eda14cbcSMatt Macy byteswap_uint64_array(DN_SPILL_BLKPTR(dnp), sizeof (blkptr_t)); 365eda14cbcSMatt Macy } 366eda14cbcSMatt Macy 367eda14cbcSMatt Macy void 368eda14cbcSMatt Macy dnode_buf_byteswap(void *vbuf, size_t size) 369eda14cbcSMatt Macy { 370eda14cbcSMatt Macy int i = 0; 371eda14cbcSMatt Macy 372eda14cbcSMatt Macy ASSERT3U(sizeof (dnode_phys_t), ==, (1<<DNODE_SHIFT)); 373eda14cbcSMatt Macy ASSERT((size & (sizeof (dnode_phys_t)-1)) == 0); 374eda14cbcSMatt Macy 375eda14cbcSMatt Macy while (i < size) { 376eda14cbcSMatt Macy dnode_phys_t *dnp = (void *)(((char *)vbuf) + i); 377eda14cbcSMatt Macy dnode_byteswap(dnp); 378eda14cbcSMatt Macy 379eda14cbcSMatt Macy i += DNODE_MIN_SIZE; 380eda14cbcSMatt Macy if (dnp->dn_type != DMU_OT_NONE) 381eda14cbcSMatt Macy i += dnp->dn_extra_slots * DNODE_MIN_SIZE; 382eda14cbcSMatt Macy } 383eda14cbcSMatt Macy } 384eda14cbcSMatt Macy 385eda14cbcSMatt Macy void 386eda14cbcSMatt Macy dnode_setbonuslen(dnode_t *dn, int newsize, dmu_tx_t *tx) 387eda14cbcSMatt Macy { 388eda14cbcSMatt Macy ASSERT3U(zfs_refcount_count(&dn->dn_holds), >=, 1); 389eda14cbcSMatt Macy 390eda14cbcSMatt Macy dnode_setdirty(dn, tx); 391eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_WRITER); 392eda14cbcSMatt Macy ASSERT3U(newsize, <=, DN_SLOTS_TO_BONUSLEN(dn->dn_num_slots) - 393eda14cbcSMatt Macy (dn->dn_nblkptr-1) * sizeof (blkptr_t)); 394eda14cbcSMatt Macy 395eda14cbcSMatt Macy if (newsize < dn->dn_bonuslen) { 396eda14cbcSMatt Macy /* clear any data after the end of the new size */ 397eda14cbcSMatt Macy size_t diff = dn->dn_bonuslen - newsize; 398eda14cbcSMatt Macy char *data_end = ((char *)dn->dn_bonus->db.db_data) + newsize; 399eda14cbcSMatt Macy bzero(data_end, diff); 400eda14cbcSMatt Macy } 401eda14cbcSMatt Macy 402eda14cbcSMatt Macy dn->dn_bonuslen = newsize; 403eda14cbcSMatt Macy if (newsize == 0) 404eda14cbcSMatt Macy dn->dn_next_bonuslen[tx->tx_txg & TXG_MASK] = DN_ZERO_BONUSLEN; 405eda14cbcSMatt Macy else 406eda14cbcSMatt Macy dn->dn_next_bonuslen[tx->tx_txg & TXG_MASK] = dn->dn_bonuslen; 407eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 408eda14cbcSMatt Macy } 409eda14cbcSMatt Macy 410eda14cbcSMatt Macy void 411eda14cbcSMatt Macy dnode_setbonus_type(dnode_t *dn, dmu_object_type_t newtype, dmu_tx_t *tx) 412eda14cbcSMatt Macy { 413eda14cbcSMatt Macy ASSERT3U(zfs_refcount_count(&dn->dn_holds), >=, 1); 414eda14cbcSMatt Macy dnode_setdirty(dn, tx); 415eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_WRITER); 416eda14cbcSMatt Macy dn->dn_bonustype = newtype; 417eda14cbcSMatt Macy dn->dn_next_bonustype[tx->tx_txg & TXG_MASK] = dn->dn_bonustype; 418eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 419eda14cbcSMatt Macy } 420eda14cbcSMatt Macy 421eda14cbcSMatt Macy void 422eda14cbcSMatt Macy dnode_rm_spill(dnode_t *dn, dmu_tx_t *tx) 423eda14cbcSMatt Macy { 424eda14cbcSMatt Macy ASSERT3U(zfs_refcount_count(&dn->dn_holds), >=, 1); 425eda14cbcSMatt Macy ASSERT(RW_WRITE_HELD(&dn->dn_struct_rwlock)); 426eda14cbcSMatt Macy dnode_setdirty(dn, tx); 427eda14cbcSMatt Macy dn->dn_rm_spillblk[tx->tx_txg & TXG_MASK] = DN_KILL_SPILLBLK; 428eda14cbcSMatt Macy dn->dn_have_spill = B_FALSE; 429eda14cbcSMatt Macy } 430eda14cbcSMatt Macy 431eda14cbcSMatt Macy static void 432eda14cbcSMatt Macy dnode_setdblksz(dnode_t *dn, int size) 433eda14cbcSMatt Macy { 434eda14cbcSMatt Macy ASSERT0(P2PHASE(size, SPA_MINBLOCKSIZE)); 435eda14cbcSMatt Macy ASSERT3U(size, <=, SPA_MAXBLOCKSIZE); 436eda14cbcSMatt Macy ASSERT3U(size, >=, SPA_MINBLOCKSIZE); 437eda14cbcSMatt Macy ASSERT3U(size >> SPA_MINBLOCKSHIFT, <, 438eda14cbcSMatt Macy 1<<(sizeof (dn->dn_phys->dn_datablkszsec) * 8)); 439eda14cbcSMatt Macy dn->dn_datablksz = size; 440eda14cbcSMatt Macy dn->dn_datablkszsec = size >> SPA_MINBLOCKSHIFT; 441eda14cbcSMatt Macy dn->dn_datablkshift = ISP2(size) ? highbit64(size - 1) : 0; 442eda14cbcSMatt Macy } 443eda14cbcSMatt Macy 444eda14cbcSMatt Macy static dnode_t * 445eda14cbcSMatt Macy dnode_create(objset_t *os, dnode_phys_t *dnp, dmu_buf_impl_t *db, 446eda14cbcSMatt Macy uint64_t object, dnode_handle_t *dnh) 447eda14cbcSMatt Macy { 448eda14cbcSMatt Macy dnode_t *dn; 449eda14cbcSMatt Macy 450eda14cbcSMatt Macy dn = kmem_cache_alloc(dnode_cache, KM_SLEEP); 451eda14cbcSMatt Macy dn->dn_moved = 0; 452eda14cbcSMatt Macy 453eda14cbcSMatt Macy /* 454eda14cbcSMatt Macy * Defer setting dn_objset until the dnode is ready to be a candidate 455eda14cbcSMatt Macy * for the dnode_move() callback. 456eda14cbcSMatt Macy */ 457eda14cbcSMatt Macy dn->dn_object = object; 458eda14cbcSMatt Macy dn->dn_dbuf = db; 459eda14cbcSMatt Macy dn->dn_handle = dnh; 460eda14cbcSMatt Macy dn->dn_phys = dnp; 461eda14cbcSMatt Macy 462eda14cbcSMatt Macy if (dnp->dn_datablkszsec) { 463eda14cbcSMatt Macy dnode_setdblksz(dn, dnp->dn_datablkszsec << SPA_MINBLOCKSHIFT); 464eda14cbcSMatt Macy } else { 465eda14cbcSMatt Macy dn->dn_datablksz = 0; 466eda14cbcSMatt Macy dn->dn_datablkszsec = 0; 467eda14cbcSMatt Macy dn->dn_datablkshift = 0; 468eda14cbcSMatt Macy } 469eda14cbcSMatt Macy dn->dn_indblkshift = dnp->dn_indblkshift; 470eda14cbcSMatt Macy dn->dn_nlevels = dnp->dn_nlevels; 471eda14cbcSMatt Macy dn->dn_type = dnp->dn_type; 472eda14cbcSMatt Macy dn->dn_nblkptr = dnp->dn_nblkptr; 473eda14cbcSMatt Macy dn->dn_checksum = dnp->dn_checksum; 474eda14cbcSMatt Macy dn->dn_compress = dnp->dn_compress; 475eda14cbcSMatt Macy dn->dn_bonustype = dnp->dn_bonustype; 476eda14cbcSMatt Macy dn->dn_bonuslen = dnp->dn_bonuslen; 477eda14cbcSMatt Macy dn->dn_num_slots = dnp->dn_extra_slots + 1; 478eda14cbcSMatt Macy dn->dn_maxblkid = dnp->dn_maxblkid; 479eda14cbcSMatt Macy dn->dn_have_spill = ((dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) != 0); 480eda14cbcSMatt Macy dn->dn_id_flags = 0; 481eda14cbcSMatt Macy 482eda14cbcSMatt Macy dmu_zfetch_init(&dn->dn_zfetch, dn); 483eda14cbcSMatt Macy 484eda14cbcSMatt Macy ASSERT(DMU_OT_IS_VALID(dn->dn_phys->dn_type)); 485eda14cbcSMatt Macy ASSERT(zrl_is_locked(&dnh->dnh_zrlock)); 486eda14cbcSMatt Macy ASSERT(!DN_SLOT_IS_PTR(dnh->dnh_dnode)); 487eda14cbcSMatt Macy 488eda14cbcSMatt Macy mutex_enter(&os->os_lock); 489eda14cbcSMatt Macy 490eda14cbcSMatt Macy /* 491eda14cbcSMatt Macy * Exclude special dnodes from os_dnodes so an empty os_dnodes 492eda14cbcSMatt Macy * signifies that the special dnodes have no references from 493eda14cbcSMatt Macy * their children (the entries in os_dnodes). This allows 494eda14cbcSMatt Macy * dnode_destroy() to easily determine if the last child has 495eda14cbcSMatt Macy * been removed and then complete eviction of the objset. 496eda14cbcSMatt Macy */ 497eda14cbcSMatt Macy if (!DMU_OBJECT_IS_SPECIAL(object)) 498eda14cbcSMatt Macy list_insert_head(&os->os_dnodes, dn); 499eda14cbcSMatt Macy membar_producer(); 500eda14cbcSMatt Macy 501eda14cbcSMatt Macy /* 502eda14cbcSMatt Macy * Everything else must be valid before assigning dn_objset 503eda14cbcSMatt Macy * makes the dnode eligible for dnode_move(). 504eda14cbcSMatt Macy */ 505eda14cbcSMatt Macy dn->dn_objset = os; 506eda14cbcSMatt Macy 507eda14cbcSMatt Macy dnh->dnh_dnode = dn; 508eda14cbcSMatt Macy mutex_exit(&os->os_lock); 509eda14cbcSMatt Macy 510eda14cbcSMatt Macy arc_space_consume(sizeof (dnode_t), ARC_SPACE_DNODE); 511eda14cbcSMatt Macy 512eda14cbcSMatt Macy return (dn); 513eda14cbcSMatt Macy } 514eda14cbcSMatt Macy 515eda14cbcSMatt Macy /* 516eda14cbcSMatt Macy * Caller must be holding the dnode handle, which is released upon return. 517eda14cbcSMatt Macy */ 518eda14cbcSMatt Macy static void 519eda14cbcSMatt Macy dnode_destroy(dnode_t *dn) 520eda14cbcSMatt Macy { 521eda14cbcSMatt Macy objset_t *os = dn->dn_objset; 522eda14cbcSMatt Macy boolean_t complete_os_eviction = B_FALSE; 523eda14cbcSMatt Macy 524eda14cbcSMatt Macy ASSERT((dn->dn_id_flags & DN_ID_NEW_EXIST) == 0); 525eda14cbcSMatt Macy 526eda14cbcSMatt Macy mutex_enter(&os->os_lock); 527eda14cbcSMatt Macy POINTER_INVALIDATE(&dn->dn_objset); 528eda14cbcSMatt Macy if (!DMU_OBJECT_IS_SPECIAL(dn->dn_object)) { 529eda14cbcSMatt Macy list_remove(&os->os_dnodes, dn); 530eda14cbcSMatt Macy complete_os_eviction = 531eda14cbcSMatt Macy list_is_empty(&os->os_dnodes) && 532eda14cbcSMatt Macy list_link_active(&os->os_evicting_node); 533eda14cbcSMatt Macy } 534eda14cbcSMatt Macy mutex_exit(&os->os_lock); 535eda14cbcSMatt Macy 536eda14cbcSMatt Macy /* the dnode can no longer move, so we can release the handle */ 537eda14cbcSMatt Macy if (!zrl_is_locked(&dn->dn_handle->dnh_zrlock)) 538eda14cbcSMatt Macy zrl_remove(&dn->dn_handle->dnh_zrlock); 539eda14cbcSMatt Macy 540eda14cbcSMatt Macy dn->dn_allocated_txg = 0; 541eda14cbcSMatt Macy dn->dn_free_txg = 0; 542eda14cbcSMatt Macy dn->dn_assigned_txg = 0; 543eda14cbcSMatt Macy dn->dn_dirty_txg = 0; 544eda14cbcSMatt Macy 545eda14cbcSMatt Macy dn->dn_dirtyctx = 0; 546eda14cbcSMatt Macy dn->dn_dirtyctx_firstset = NULL; 547eda14cbcSMatt Macy if (dn->dn_bonus != NULL) { 548eda14cbcSMatt Macy mutex_enter(&dn->dn_bonus->db_mtx); 549eda14cbcSMatt Macy dbuf_destroy(dn->dn_bonus); 550eda14cbcSMatt Macy dn->dn_bonus = NULL; 551eda14cbcSMatt Macy } 552eda14cbcSMatt Macy dn->dn_zio = NULL; 553eda14cbcSMatt Macy 554eda14cbcSMatt Macy dn->dn_have_spill = B_FALSE; 555eda14cbcSMatt Macy dn->dn_oldused = 0; 556eda14cbcSMatt Macy dn->dn_oldflags = 0; 557eda14cbcSMatt Macy dn->dn_olduid = 0; 558eda14cbcSMatt Macy dn->dn_oldgid = 0; 559eda14cbcSMatt Macy dn->dn_oldprojid = ZFS_DEFAULT_PROJID; 560eda14cbcSMatt Macy dn->dn_newuid = 0; 561eda14cbcSMatt Macy dn->dn_newgid = 0; 562eda14cbcSMatt Macy dn->dn_newprojid = ZFS_DEFAULT_PROJID; 563eda14cbcSMatt Macy dn->dn_id_flags = 0; 564eda14cbcSMatt Macy 565eda14cbcSMatt Macy dmu_zfetch_fini(&dn->dn_zfetch); 566eda14cbcSMatt Macy kmem_cache_free(dnode_cache, dn); 567eda14cbcSMatt Macy arc_space_return(sizeof (dnode_t), ARC_SPACE_DNODE); 568eda14cbcSMatt Macy 569eda14cbcSMatt Macy if (complete_os_eviction) 570eda14cbcSMatt Macy dmu_objset_evict_done(os); 571eda14cbcSMatt Macy } 572eda14cbcSMatt Macy 573eda14cbcSMatt Macy void 574eda14cbcSMatt Macy dnode_allocate(dnode_t *dn, dmu_object_type_t ot, int blocksize, int ibs, 575eda14cbcSMatt Macy dmu_object_type_t bonustype, int bonuslen, int dn_slots, dmu_tx_t *tx) 576eda14cbcSMatt Macy { 577eda14cbcSMatt Macy int i; 578eda14cbcSMatt Macy 579eda14cbcSMatt Macy ASSERT3U(dn_slots, >, 0); 580eda14cbcSMatt Macy ASSERT3U(dn_slots << DNODE_SHIFT, <=, 581eda14cbcSMatt Macy spa_maxdnodesize(dmu_objset_spa(dn->dn_objset))); 582eda14cbcSMatt Macy ASSERT3U(blocksize, <=, 583eda14cbcSMatt Macy spa_maxblocksize(dmu_objset_spa(dn->dn_objset))); 584eda14cbcSMatt Macy if (blocksize == 0) 585eda14cbcSMatt Macy blocksize = 1 << zfs_default_bs; 586eda14cbcSMatt Macy else 587eda14cbcSMatt Macy blocksize = P2ROUNDUP(blocksize, SPA_MINBLOCKSIZE); 588eda14cbcSMatt Macy 589eda14cbcSMatt Macy if (ibs == 0) 590eda14cbcSMatt Macy ibs = zfs_default_ibs; 591eda14cbcSMatt Macy 592eda14cbcSMatt Macy ibs = MIN(MAX(ibs, DN_MIN_INDBLKSHIFT), DN_MAX_INDBLKSHIFT); 593eda14cbcSMatt Macy 594eda14cbcSMatt Macy dprintf("os=%p obj=%llu txg=%llu blocksize=%d ibs=%d dn_slots=%d\n", 595eda14cbcSMatt Macy dn->dn_objset, dn->dn_object, tx->tx_txg, blocksize, ibs, dn_slots); 596eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_allocate); 597eda14cbcSMatt Macy 598eda14cbcSMatt Macy ASSERT(dn->dn_type == DMU_OT_NONE); 599eda14cbcSMatt Macy ASSERT(bcmp(dn->dn_phys, &dnode_phys_zero, sizeof (dnode_phys_t)) == 0); 600eda14cbcSMatt Macy ASSERT(dn->dn_phys->dn_type == DMU_OT_NONE); 601eda14cbcSMatt Macy ASSERT(ot != DMU_OT_NONE); 602eda14cbcSMatt Macy ASSERT(DMU_OT_IS_VALID(ot)); 603eda14cbcSMatt Macy ASSERT((bonustype == DMU_OT_NONE && bonuslen == 0) || 604eda14cbcSMatt Macy (bonustype == DMU_OT_SA && bonuslen == 0) || 605eda14cbcSMatt Macy (bonustype != DMU_OT_NONE && bonuslen != 0)); 606eda14cbcSMatt Macy ASSERT(DMU_OT_IS_VALID(bonustype)); 607eda14cbcSMatt Macy ASSERT3U(bonuslen, <=, DN_SLOTS_TO_BONUSLEN(dn_slots)); 608eda14cbcSMatt Macy ASSERT(dn->dn_type == DMU_OT_NONE); 609eda14cbcSMatt Macy ASSERT0(dn->dn_maxblkid); 610eda14cbcSMatt Macy ASSERT0(dn->dn_allocated_txg); 611eda14cbcSMatt Macy ASSERT0(dn->dn_assigned_txg); 612eda14cbcSMatt Macy ASSERT(zfs_refcount_is_zero(&dn->dn_tx_holds)); 613eda14cbcSMatt Macy ASSERT3U(zfs_refcount_count(&dn->dn_holds), <=, 1); 614eda14cbcSMatt Macy ASSERT(avl_is_empty(&dn->dn_dbufs)); 615eda14cbcSMatt Macy 616eda14cbcSMatt Macy for (i = 0; i < TXG_SIZE; i++) { 617eda14cbcSMatt Macy ASSERT0(dn->dn_next_nblkptr[i]); 618eda14cbcSMatt Macy ASSERT0(dn->dn_next_nlevels[i]); 619eda14cbcSMatt Macy ASSERT0(dn->dn_next_indblkshift[i]); 620eda14cbcSMatt Macy ASSERT0(dn->dn_next_bonuslen[i]); 621eda14cbcSMatt Macy ASSERT0(dn->dn_next_bonustype[i]); 622eda14cbcSMatt Macy ASSERT0(dn->dn_rm_spillblk[i]); 623eda14cbcSMatt Macy ASSERT0(dn->dn_next_blksz[i]); 624eda14cbcSMatt Macy ASSERT0(dn->dn_next_maxblkid[i]); 625eda14cbcSMatt Macy ASSERT(!multilist_link_active(&dn->dn_dirty_link[i])); 626eda14cbcSMatt Macy ASSERT3P(list_head(&dn->dn_dirty_records[i]), ==, NULL); 627eda14cbcSMatt Macy ASSERT3P(dn->dn_free_ranges[i], ==, NULL); 628eda14cbcSMatt Macy } 629eda14cbcSMatt Macy 630eda14cbcSMatt Macy dn->dn_type = ot; 631eda14cbcSMatt Macy dnode_setdblksz(dn, blocksize); 632eda14cbcSMatt Macy dn->dn_indblkshift = ibs; 633eda14cbcSMatt Macy dn->dn_nlevels = 1; 634eda14cbcSMatt Macy dn->dn_num_slots = dn_slots; 635eda14cbcSMatt Macy if (bonustype == DMU_OT_SA) /* Maximize bonus space for SA */ 636eda14cbcSMatt Macy dn->dn_nblkptr = 1; 637eda14cbcSMatt Macy else { 638eda14cbcSMatt Macy dn->dn_nblkptr = MIN(DN_MAX_NBLKPTR, 639eda14cbcSMatt Macy 1 + ((DN_SLOTS_TO_BONUSLEN(dn_slots) - bonuslen) >> 640eda14cbcSMatt Macy SPA_BLKPTRSHIFT)); 641eda14cbcSMatt Macy } 642eda14cbcSMatt Macy 643eda14cbcSMatt Macy dn->dn_bonustype = bonustype; 644eda14cbcSMatt Macy dn->dn_bonuslen = bonuslen; 645eda14cbcSMatt Macy dn->dn_checksum = ZIO_CHECKSUM_INHERIT; 646eda14cbcSMatt Macy dn->dn_compress = ZIO_COMPRESS_INHERIT; 647eda14cbcSMatt Macy dn->dn_dirtyctx = 0; 648eda14cbcSMatt Macy 649eda14cbcSMatt Macy dn->dn_free_txg = 0; 650eda14cbcSMatt Macy dn->dn_dirtyctx_firstset = NULL; 6517877fdebSMatt Macy dn->dn_dirty_txg = 0; 652eda14cbcSMatt Macy 653eda14cbcSMatt Macy dn->dn_allocated_txg = tx->tx_txg; 654eda14cbcSMatt Macy dn->dn_id_flags = 0; 655eda14cbcSMatt Macy 656eda14cbcSMatt Macy dnode_setdirty(dn, tx); 657eda14cbcSMatt Macy dn->dn_next_indblkshift[tx->tx_txg & TXG_MASK] = ibs; 658eda14cbcSMatt Macy dn->dn_next_bonuslen[tx->tx_txg & TXG_MASK] = dn->dn_bonuslen; 659eda14cbcSMatt Macy dn->dn_next_bonustype[tx->tx_txg & TXG_MASK] = dn->dn_bonustype; 660eda14cbcSMatt Macy dn->dn_next_blksz[tx->tx_txg & TXG_MASK] = dn->dn_datablksz; 661eda14cbcSMatt Macy } 662eda14cbcSMatt Macy 663eda14cbcSMatt Macy void 664eda14cbcSMatt Macy dnode_reallocate(dnode_t *dn, dmu_object_type_t ot, int blocksize, 665eda14cbcSMatt Macy dmu_object_type_t bonustype, int bonuslen, int dn_slots, 666eda14cbcSMatt Macy boolean_t keep_spill, dmu_tx_t *tx) 667eda14cbcSMatt Macy { 668eda14cbcSMatt Macy int nblkptr; 669eda14cbcSMatt Macy 670eda14cbcSMatt Macy ASSERT3U(blocksize, >=, SPA_MINBLOCKSIZE); 671eda14cbcSMatt Macy ASSERT3U(blocksize, <=, 672eda14cbcSMatt Macy spa_maxblocksize(dmu_objset_spa(dn->dn_objset))); 673eda14cbcSMatt Macy ASSERT0(blocksize % SPA_MINBLOCKSIZE); 674eda14cbcSMatt Macy ASSERT(dn->dn_object != DMU_META_DNODE_OBJECT || dmu_tx_private_ok(tx)); 675eda14cbcSMatt Macy ASSERT(tx->tx_txg != 0); 676eda14cbcSMatt Macy ASSERT((bonustype == DMU_OT_NONE && bonuslen == 0) || 677eda14cbcSMatt Macy (bonustype != DMU_OT_NONE && bonuslen != 0) || 678eda14cbcSMatt Macy (bonustype == DMU_OT_SA && bonuslen == 0)); 679eda14cbcSMatt Macy ASSERT(DMU_OT_IS_VALID(bonustype)); 680eda14cbcSMatt Macy ASSERT3U(bonuslen, <=, 681eda14cbcSMatt Macy DN_BONUS_SIZE(spa_maxdnodesize(dmu_objset_spa(dn->dn_objset)))); 682eda14cbcSMatt Macy ASSERT3U(bonuslen, <=, DN_BONUS_SIZE(dn_slots << DNODE_SHIFT)); 683eda14cbcSMatt Macy 684eda14cbcSMatt Macy dnode_free_interior_slots(dn); 685eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_reallocate); 686eda14cbcSMatt Macy 687eda14cbcSMatt Macy /* clean up any unreferenced dbufs */ 688eda14cbcSMatt Macy dnode_evict_dbufs(dn); 689eda14cbcSMatt Macy 690eda14cbcSMatt Macy dn->dn_id_flags = 0; 691eda14cbcSMatt Macy 692eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_WRITER); 693eda14cbcSMatt Macy dnode_setdirty(dn, tx); 694eda14cbcSMatt Macy if (dn->dn_datablksz != blocksize) { 695eda14cbcSMatt Macy /* change blocksize */ 696eda14cbcSMatt Macy ASSERT0(dn->dn_maxblkid); 697eda14cbcSMatt Macy ASSERT(BP_IS_HOLE(&dn->dn_phys->dn_blkptr[0]) || 698eda14cbcSMatt Macy dnode_block_freed(dn, 0)); 699eda14cbcSMatt Macy 700eda14cbcSMatt Macy dnode_setdblksz(dn, blocksize); 701eda14cbcSMatt Macy dn->dn_next_blksz[tx->tx_txg & TXG_MASK] = blocksize; 702eda14cbcSMatt Macy } 703eda14cbcSMatt Macy if (dn->dn_bonuslen != bonuslen) 704eda14cbcSMatt Macy dn->dn_next_bonuslen[tx->tx_txg & TXG_MASK] = bonuslen; 705eda14cbcSMatt Macy 706eda14cbcSMatt Macy if (bonustype == DMU_OT_SA) /* Maximize bonus space for SA */ 707eda14cbcSMatt Macy nblkptr = 1; 708eda14cbcSMatt Macy else 709eda14cbcSMatt Macy nblkptr = MIN(DN_MAX_NBLKPTR, 710eda14cbcSMatt Macy 1 + ((DN_SLOTS_TO_BONUSLEN(dn_slots) - bonuslen) >> 711eda14cbcSMatt Macy SPA_BLKPTRSHIFT)); 712eda14cbcSMatt Macy if (dn->dn_bonustype != bonustype) 713eda14cbcSMatt Macy dn->dn_next_bonustype[tx->tx_txg & TXG_MASK] = bonustype; 714eda14cbcSMatt Macy if (dn->dn_nblkptr != nblkptr) 715eda14cbcSMatt Macy dn->dn_next_nblkptr[tx->tx_txg & TXG_MASK] = nblkptr; 716eda14cbcSMatt Macy if (dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR && !keep_spill) { 717eda14cbcSMatt Macy dbuf_rm_spill(dn, tx); 718eda14cbcSMatt Macy dnode_rm_spill(dn, tx); 719eda14cbcSMatt Macy } 720eda14cbcSMatt Macy 721eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 722eda14cbcSMatt Macy 723eda14cbcSMatt Macy /* change type */ 724eda14cbcSMatt Macy dn->dn_type = ot; 725eda14cbcSMatt Macy 726eda14cbcSMatt Macy /* change bonus size and type */ 727eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 728eda14cbcSMatt Macy dn->dn_bonustype = bonustype; 729eda14cbcSMatt Macy dn->dn_bonuslen = bonuslen; 730eda14cbcSMatt Macy dn->dn_num_slots = dn_slots; 731eda14cbcSMatt Macy dn->dn_nblkptr = nblkptr; 732eda14cbcSMatt Macy dn->dn_checksum = ZIO_CHECKSUM_INHERIT; 733eda14cbcSMatt Macy dn->dn_compress = ZIO_COMPRESS_INHERIT; 734eda14cbcSMatt Macy ASSERT3U(dn->dn_nblkptr, <=, DN_MAX_NBLKPTR); 735eda14cbcSMatt Macy 736eda14cbcSMatt Macy /* fix up the bonus db_size */ 737eda14cbcSMatt Macy if (dn->dn_bonus) { 738eda14cbcSMatt Macy dn->dn_bonus->db.db_size = 739eda14cbcSMatt Macy DN_SLOTS_TO_BONUSLEN(dn->dn_num_slots) - 740eda14cbcSMatt Macy (dn->dn_nblkptr-1) * sizeof (blkptr_t); 741eda14cbcSMatt Macy ASSERT(dn->dn_bonuslen <= dn->dn_bonus->db.db_size); 742eda14cbcSMatt Macy } 743eda14cbcSMatt Macy 744eda14cbcSMatt Macy dn->dn_allocated_txg = tx->tx_txg; 745eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 746eda14cbcSMatt Macy } 747eda14cbcSMatt Macy 748eda14cbcSMatt Macy #ifdef _KERNEL 749eda14cbcSMatt Macy static void 750eda14cbcSMatt Macy dnode_move_impl(dnode_t *odn, dnode_t *ndn) 751eda14cbcSMatt Macy { 752eda14cbcSMatt Macy int i; 753eda14cbcSMatt Macy 754eda14cbcSMatt Macy ASSERT(!RW_LOCK_HELD(&odn->dn_struct_rwlock)); 755eda14cbcSMatt Macy ASSERT(MUTEX_NOT_HELD(&odn->dn_mtx)); 756eda14cbcSMatt Macy ASSERT(MUTEX_NOT_HELD(&odn->dn_dbufs_mtx)); 757eda14cbcSMatt Macy 758eda14cbcSMatt Macy /* Copy fields. */ 759eda14cbcSMatt Macy ndn->dn_objset = odn->dn_objset; 760eda14cbcSMatt Macy ndn->dn_object = odn->dn_object; 761eda14cbcSMatt Macy ndn->dn_dbuf = odn->dn_dbuf; 762eda14cbcSMatt Macy ndn->dn_handle = odn->dn_handle; 763eda14cbcSMatt Macy ndn->dn_phys = odn->dn_phys; 764eda14cbcSMatt Macy ndn->dn_type = odn->dn_type; 765eda14cbcSMatt Macy ndn->dn_bonuslen = odn->dn_bonuslen; 766eda14cbcSMatt Macy ndn->dn_bonustype = odn->dn_bonustype; 767eda14cbcSMatt Macy ndn->dn_nblkptr = odn->dn_nblkptr; 768eda14cbcSMatt Macy ndn->dn_checksum = odn->dn_checksum; 769eda14cbcSMatt Macy ndn->dn_compress = odn->dn_compress; 770eda14cbcSMatt Macy ndn->dn_nlevels = odn->dn_nlevels; 771eda14cbcSMatt Macy ndn->dn_indblkshift = odn->dn_indblkshift; 772eda14cbcSMatt Macy ndn->dn_datablkshift = odn->dn_datablkshift; 773eda14cbcSMatt Macy ndn->dn_datablkszsec = odn->dn_datablkszsec; 774eda14cbcSMatt Macy ndn->dn_datablksz = odn->dn_datablksz; 775eda14cbcSMatt Macy ndn->dn_maxblkid = odn->dn_maxblkid; 776eda14cbcSMatt Macy ndn->dn_num_slots = odn->dn_num_slots; 777eda14cbcSMatt Macy bcopy(&odn->dn_next_type[0], &ndn->dn_next_type[0], 778eda14cbcSMatt Macy sizeof (odn->dn_next_type)); 779eda14cbcSMatt Macy bcopy(&odn->dn_next_nblkptr[0], &ndn->dn_next_nblkptr[0], 780eda14cbcSMatt Macy sizeof (odn->dn_next_nblkptr)); 781eda14cbcSMatt Macy bcopy(&odn->dn_next_nlevels[0], &ndn->dn_next_nlevels[0], 782eda14cbcSMatt Macy sizeof (odn->dn_next_nlevels)); 783eda14cbcSMatt Macy bcopy(&odn->dn_next_indblkshift[0], &ndn->dn_next_indblkshift[0], 784eda14cbcSMatt Macy sizeof (odn->dn_next_indblkshift)); 785eda14cbcSMatt Macy bcopy(&odn->dn_next_bonustype[0], &ndn->dn_next_bonustype[0], 786eda14cbcSMatt Macy sizeof (odn->dn_next_bonustype)); 787eda14cbcSMatt Macy bcopy(&odn->dn_rm_spillblk[0], &ndn->dn_rm_spillblk[0], 788eda14cbcSMatt Macy sizeof (odn->dn_rm_spillblk)); 789eda14cbcSMatt Macy bcopy(&odn->dn_next_bonuslen[0], &ndn->dn_next_bonuslen[0], 790eda14cbcSMatt Macy sizeof (odn->dn_next_bonuslen)); 791eda14cbcSMatt Macy bcopy(&odn->dn_next_blksz[0], &ndn->dn_next_blksz[0], 792eda14cbcSMatt Macy sizeof (odn->dn_next_blksz)); 793eda14cbcSMatt Macy bcopy(&odn->dn_next_maxblkid[0], &ndn->dn_next_maxblkid[0], 794eda14cbcSMatt Macy sizeof (odn->dn_next_maxblkid)); 795eda14cbcSMatt Macy for (i = 0; i < TXG_SIZE; i++) { 796eda14cbcSMatt Macy list_move_tail(&ndn->dn_dirty_records[i], 797eda14cbcSMatt Macy &odn->dn_dirty_records[i]); 798eda14cbcSMatt Macy } 799eda14cbcSMatt Macy bcopy(&odn->dn_free_ranges[0], &ndn->dn_free_ranges[0], 800eda14cbcSMatt Macy sizeof (odn->dn_free_ranges)); 801eda14cbcSMatt Macy ndn->dn_allocated_txg = odn->dn_allocated_txg; 802eda14cbcSMatt Macy ndn->dn_free_txg = odn->dn_free_txg; 803eda14cbcSMatt Macy ndn->dn_assigned_txg = odn->dn_assigned_txg; 804eda14cbcSMatt Macy ndn->dn_dirty_txg = odn->dn_dirty_txg; 805eda14cbcSMatt Macy ndn->dn_dirtyctx = odn->dn_dirtyctx; 806eda14cbcSMatt Macy ndn->dn_dirtyctx_firstset = odn->dn_dirtyctx_firstset; 807eda14cbcSMatt Macy ASSERT(zfs_refcount_count(&odn->dn_tx_holds) == 0); 808eda14cbcSMatt Macy zfs_refcount_transfer(&ndn->dn_holds, &odn->dn_holds); 809eda14cbcSMatt Macy ASSERT(avl_is_empty(&ndn->dn_dbufs)); 810eda14cbcSMatt Macy avl_swap(&ndn->dn_dbufs, &odn->dn_dbufs); 811eda14cbcSMatt Macy ndn->dn_dbufs_count = odn->dn_dbufs_count; 812eda14cbcSMatt Macy ndn->dn_bonus = odn->dn_bonus; 813eda14cbcSMatt Macy ndn->dn_have_spill = odn->dn_have_spill; 814eda14cbcSMatt Macy ndn->dn_zio = odn->dn_zio; 815eda14cbcSMatt Macy ndn->dn_oldused = odn->dn_oldused; 816eda14cbcSMatt Macy ndn->dn_oldflags = odn->dn_oldflags; 817eda14cbcSMatt Macy ndn->dn_olduid = odn->dn_olduid; 818eda14cbcSMatt Macy ndn->dn_oldgid = odn->dn_oldgid; 819eda14cbcSMatt Macy ndn->dn_oldprojid = odn->dn_oldprojid; 820eda14cbcSMatt Macy ndn->dn_newuid = odn->dn_newuid; 821eda14cbcSMatt Macy ndn->dn_newgid = odn->dn_newgid; 822eda14cbcSMatt Macy ndn->dn_newprojid = odn->dn_newprojid; 823eda14cbcSMatt Macy ndn->dn_id_flags = odn->dn_id_flags; 82416038816SMartin Matuska dmu_zfetch_init(&ndn->dn_zfetch, ndn); 825eda14cbcSMatt Macy 826eda14cbcSMatt Macy /* 827eda14cbcSMatt Macy * Update back pointers. Updating the handle fixes the back pointer of 828eda14cbcSMatt Macy * every descendant dbuf as well as the bonus dbuf. 829eda14cbcSMatt Macy */ 830eda14cbcSMatt Macy ASSERT(ndn->dn_handle->dnh_dnode == odn); 831eda14cbcSMatt Macy ndn->dn_handle->dnh_dnode = ndn; 832eda14cbcSMatt Macy 833eda14cbcSMatt Macy /* 834eda14cbcSMatt Macy * Invalidate the original dnode by clearing all of its back pointers. 835eda14cbcSMatt Macy */ 836eda14cbcSMatt Macy odn->dn_dbuf = NULL; 837eda14cbcSMatt Macy odn->dn_handle = NULL; 838eda14cbcSMatt Macy avl_create(&odn->dn_dbufs, dbuf_compare, sizeof (dmu_buf_impl_t), 839eda14cbcSMatt Macy offsetof(dmu_buf_impl_t, db_link)); 840eda14cbcSMatt Macy odn->dn_dbufs_count = 0; 841eda14cbcSMatt Macy odn->dn_bonus = NULL; 842eda14cbcSMatt Macy dmu_zfetch_fini(&odn->dn_zfetch); 843eda14cbcSMatt Macy 844eda14cbcSMatt Macy /* 845eda14cbcSMatt Macy * Set the low bit of the objset pointer to ensure that dnode_move() 846eda14cbcSMatt Macy * recognizes the dnode as invalid in any subsequent callback. 847eda14cbcSMatt Macy */ 848eda14cbcSMatt Macy POINTER_INVALIDATE(&odn->dn_objset); 849eda14cbcSMatt Macy 850eda14cbcSMatt Macy /* 851eda14cbcSMatt Macy * Satisfy the destructor. 852eda14cbcSMatt Macy */ 853eda14cbcSMatt Macy for (i = 0; i < TXG_SIZE; i++) { 854eda14cbcSMatt Macy list_create(&odn->dn_dirty_records[i], 855eda14cbcSMatt Macy sizeof (dbuf_dirty_record_t), 856eda14cbcSMatt Macy offsetof(dbuf_dirty_record_t, dr_dirty_node)); 857eda14cbcSMatt Macy odn->dn_free_ranges[i] = NULL; 858eda14cbcSMatt Macy odn->dn_next_nlevels[i] = 0; 859eda14cbcSMatt Macy odn->dn_next_indblkshift[i] = 0; 860eda14cbcSMatt Macy odn->dn_next_bonustype[i] = 0; 861eda14cbcSMatt Macy odn->dn_rm_spillblk[i] = 0; 862eda14cbcSMatt Macy odn->dn_next_bonuslen[i] = 0; 863eda14cbcSMatt Macy odn->dn_next_blksz[i] = 0; 864eda14cbcSMatt Macy } 865eda14cbcSMatt Macy odn->dn_allocated_txg = 0; 866eda14cbcSMatt Macy odn->dn_free_txg = 0; 867eda14cbcSMatt Macy odn->dn_assigned_txg = 0; 868eda14cbcSMatt Macy odn->dn_dirty_txg = 0; 869eda14cbcSMatt Macy odn->dn_dirtyctx = 0; 870eda14cbcSMatt Macy odn->dn_dirtyctx_firstset = NULL; 871eda14cbcSMatt Macy odn->dn_have_spill = B_FALSE; 872eda14cbcSMatt Macy odn->dn_zio = NULL; 873eda14cbcSMatt Macy odn->dn_oldused = 0; 874eda14cbcSMatt Macy odn->dn_oldflags = 0; 875eda14cbcSMatt Macy odn->dn_olduid = 0; 876eda14cbcSMatt Macy odn->dn_oldgid = 0; 877eda14cbcSMatt Macy odn->dn_oldprojid = ZFS_DEFAULT_PROJID; 878eda14cbcSMatt Macy odn->dn_newuid = 0; 879eda14cbcSMatt Macy odn->dn_newgid = 0; 880eda14cbcSMatt Macy odn->dn_newprojid = ZFS_DEFAULT_PROJID; 881eda14cbcSMatt Macy odn->dn_id_flags = 0; 882eda14cbcSMatt Macy 883eda14cbcSMatt Macy /* 884eda14cbcSMatt Macy * Mark the dnode. 885eda14cbcSMatt Macy */ 886eda14cbcSMatt Macy ndn->dn_moved = 1; 887eda14cbcSMatt Macy odn->dn_moved = (uint8_t)-1; 888eda14cbcSMatt Macy } 889eda14cbcSMatt Macy 890eda14cbcSMatt Macy /*ARGSUSED*/ 891eda14cbcSMatt Macy static kmem_cbrc_t 892eda14cbcSMatt Macy dnode_move(void *buf, void *newbuf, size_t size, void *arg) 893eda14cbcSMatt Macy { 894eda14cbcSMatt Macy dnode_t *odn = buf, *ndn = newbuf; 895eda14cbcSMatt Macy objset_t *os; 896eda14cbcSMatt Macy int64_t refcount; 897eda14cbcSMatt Macy uint32_t dbufs; 898eda14cbcSMatt Macy 899eda14cbcSMatt Macy /* 900eda14cbcSMatt Macy * The dnode is on the objset's list of known dnodes if the objset 901eda14cbcSMatt Macy * pointer is valid. We set the low bit of the objset pointer when 902eda14cbcSMatt Macy * freeing the dnode to invalidate it, and the memory patterns written 903eda14cbcSMatt Macy * by kmem (baddcafe and deadbeef) set at least one of the two low bits. 904eda14cbcSMatt Macy * A newly created dnode sets the objset pointer last of all to indicate 905eda14cbcSMatt Macy * that the dnode is known and in a valid state to be moved by this 906eda14cbcSMatt Macy * function. 907eda14cbcSMatt Macy */ 908eda14cbcSMatt Macy os = odn->dn_objset; 909eda14cbcSMatt Macy if (!POINTER_IS_VALID(os)) { 910eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_move_invalid); 911eda14cbcSMatt Macy return (KMEM_CBRC_DONT_KNOW); 912eda14cbcSMatt Macy } 913eda14cbcSMatt Macy 914eda14cbcSMatt Macy /* 915eda14cbcSMatt Macy * Ensure that the objset does not go away during the move. 916eda14cbcSMatt Macy */ 917eda14cbcSMatt Macy rw_enter(&os_lock, RW_WRITER); 918eda14cbcSMatt Macy if (os != odn->dn_objset) { 919eda14cbcSMatt Macy rw_exit(&os_lock); 920eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_move_recheck1); 921eda14cbcSMatt Macy return (KMEM_CBRC_DONT_KNOW); 922eda14cbcSMatt Macy } 923eda14cbcSMatt Macy 924eda14cbcSMatt Macy /* 925eda14cbcSMatt Macy * If the dnode is still valid, then so is the objset. We know that no 926eda14cbcSMatt Macy * valid objset can be freed while we hold os_lock, so we can safely 927eda14cbcSMatt Macy * ensure that the objset remains in use. 928eda14cbcSMatt Macy */ 929eda14cbcSMatt Macy mutex_enter(&os->os_lock); 930eda14cbcSMatt Macy 931eda14cbcSMatt Macy /* 932eda14cbcSMatt Macy * Recheck the objset pointer in case the dnode was removed just before 933eda14cbcSMatt Macy * acquiring the lock. 934eda14cbcSMatt Macy */ 935eda14cbcSMatt Macy if (os != odn->dn_objset) { 936eda14cbcSMatt Macy mutex_exit(&os->os_lock); 937eda14cbcSMatt Macy rw_exit(&os_lock); 938eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_move_recheck2); 939eda14cbcSMatt Macy return (KMEM_CBRC_DONT_KNOW); 940eda14cbcSMatt Macy } 941eda14cbcSMatt Macy 942eda14cbcSMatt Macy /* 943eda14cbcSMatt Macy * At this point we know that as long as we hold os->os_lock, the dnode 944eda14cbcSMatt Macy * cannot be freed and fields within the dnode can be safely accessed. 945eda14cbcSMatt Macy * The objset listing this dnode cannot go away as long as this dnode is 946eda14cbcSMatt Macy * on its list. 947eda14cbcSMatt Macy */ 948eda14cbcSMatt Macy rw_exit(&os_lock); 949eda14cbcSMatt Macy if (DMU_OBJECT_IS_SPECIAL(odn->dn_object)) { 950eda14cbcSMatt Macy mutex_exit(&os->os_lock); 951eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_move_special); 952eda14cbcSMatt Macy return (KMEM_CBRC_NO); 953eda14cbcSMatt Macy } 954eda14cbcSMatt Macy ASSERT(odn->dn_dbuf != NULL); /* only "special" dnodes have no parent */ 955eda14cbcSMatt Macy 956eda14cbcSMatt Macy /* 957eda14cbcSMatt Macy * Lock the dnode handle to prevent the dnode from obtaining any new 958eda14cbcSMatt Macy * holds. This also prevents the descendant dbufs and the bonus dbuf 959eda14cbcSMatt Macy * from accessing the dnode, so that we can discount their holds. The 960eda14cbcSMatt Macy * handle is safe to access because we know that while the dnode cannot 961eda14cbcSMatt Macy * go away, neither can its handle. Once we hold dnh_zrlock, we can 962eda14cbcSMatt Macy * safely move any dnode referenced only by dbufs. 963eda14cbcSMatt Macy */ 964eda14cbcSMatt Macy if (!zrl_tryenter(&odn->dn_handle->dnh_zrlock)) { 965eda14cbcSMatt Macy mutex_exit(&os->os_lock); 966eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_move_handle); 967eda14cbcSMatt Macy return (KMEM_CBRC_LATER); 968eda14cbcSMatt Macy } 969eda14cbcSMatt Macy 970eda14cbcSMatt Macy /* 971eda14cbcSMatt Macy * Ensure a consistent view of the dnode's holds and the dnode's dbufs. 972eda14cbcSMatt Macy * We need to guarantee that there is a hold for every dbuf in order to 973eda14cbcSMatt Macy * determine whether the dnode is actively referenced. Falsely matching 974eda14cbcSMatt Macy * a dbuf to an active hold would lead to an unsafe move. It's possible 975eda14cbcSMatt Macy * that a thread already having an active dnode hold is about to add a 976eda14cbcSMatt Macy * dbuf, and we can't compare hold and dbuf counts while the add is in 977eda14cbcSMatt Macy * progress. 978eda14cbcSMatt Macy */ 979eda14cbcSMatt Macy if (!rw_tryenter(&odn->dn_struct_rwlock, RW_WRITER)) { 980eda14cbcSMatt Macy zrl_exit(&odn->dn_handle->dnh_zrlock); 981eda14cbcSMatt Macy mutex_exit(&os->os_lock); 982eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_move_rwlock); 983eda14cbcSMatt Macy return (KMEM_CBRC_LATER); 984eda14cbcSMatt Macy } 985eda14cbcSMatt Macy 986eda14cbcSMatt Macy /* 987eda14cbcSMatt Macy * A dbuf may be removed (evicted) without an active dnode hold. In that 988eda14cbcSMatt Macy * case, the dbuf count is decremented under the handle lock before the 989eda14cbcSMatt Macy * dbuf's hold is released. This order ensures that if we count the hold 990eda14cbcSMatt Macy * after the dbuf is removed but before its hold is released, we will 991eda14cbcSMatt Macy * treat the unmatched hold as active and exit safely. If we count the 992eda14cbcSMatt Macy * hold before the dbuf is removed, the hold is discounted, and the 993eda14cbcSMatt Macy * removal is blocked until the move completes. 994eda14cbcSMatt Macy */ 995eda14cbcSMatt Macy refcount = zfs_refcount_count(&odn->dn_holds); 996eda14cbcSMatt Macy ASSERT(refcount >= 0); 997eda14cbcSMatt Macy dbufs = DN_DBUFS_COUNT(odn); 998eda14cbcSMatt Macy 999eda14cbcSMatt Macy /* We can't have more dbufs than dnode holds. */ 1000eda14cbcSMatt Macy ASSERT3U(dbufs, <=, refcount); 1001eda14cbcSMatt Macy DTRACE_PROBE3(dnode__move, dnode_t *, odn, int64_t, refcount, 1002eda14cbcSMatt Macy uint32_t, dbufs); 1003eda14cbcSMatt Macy 1004eda14cbcSMatt Macy if (refcount > dbufs) { 1005eda14cbcSMatt Macy rw_exit(&odn->dn_struct_rwlock); 1006eda14cbcSMatt Macy zrl_exit(&odn->dn_handle->dnh_zrlock); 1007eda14cbcSMatt Macy mutex_exit(&os->os_lock); 1008eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_move_active); 1009eda14cbcSMatt Macy return (KMEM_CBRC_LATER); 1010eda14cbcSMatt Macy } 1011eda14cbcSMatt Macy 1012eda14cbcSMatt Macy rw_exit(&odn->dn_struct_rwlock); 1013eda14cbcSMatt Macy 1014eda14cbcSMatt Macy /* 1015eda14cbcSMatt Macy * At this point we know that anyone with a hold on the dnode is not 1016eda14cbcSMatt Macy * actively referencing it. The dnode is known and in a valid state to 1017eda14cbcSMatt Macy * move. We're holding the locks needed to execute the critical section. 1018eda14cbcSMatt Macy */ 1019eda14cbcSMatt Macy dnode_move_impl(odn, ndn); 1020eda14cbcSMatt Macy 1021eda14cbcSMatt Macy list_link_replace(&odn->dn_link, &ndn->dn_link); 1022eda14cbcSMatt Macy /* If the dnode was safe to move, the refcount cannot have changed. */ 1023eda14cbcSMatt Macy ASSERT(refcount == zfs_refcount_count(&ndn->dn_holds)); 1024eda14cbcSMatt Macy ASSERT(dbufs == DN_DBUFS_COUNT(ndn)); 1025eda14cbcSMatt Macy zrl_exit(&ndn->dn_handle->dnh_zrlock); /* handle has moved */ 1026eda14cbcSMatt Macy mutex_exit(&os->os_lock); 1027eda14cbcSMatt Macy 1028eda14cbcSMatt Macy return (KMEM_CBRC_YES); 1029eda14cbcSMatt Macy } 1030eda14cbcSMatt Macy #endif /* _KERNEL */ 1031eda14cbcSMatt Macy 1032eda14cbcSMatt Macy static void 1033eda14cbcSMatt Macy dnode_slots_hold(dnode_children_t *children, int idx, int slots) 1034eda14cbcSMatt Macy { 1035eda14cbcSMatt Macy ASSERT3S(idx + slots, <=, DNODES_PER_BLOCK); 1036eda14cbcSMatt Macy 1037eda14cbcSMatt Macy for (int i = idx; i < idx + slots; i++) { 1038eda14cbcSMatt Macy dnode_handle_t *dnh = &children->dnc_children[i]; 1039eda14cbcSMatt Macy zrl_add(&dnh->dnh_zrlock); 1040eda14cbcSMatt Macy } 1041eda14cbcSMatt Macy } 1042eda14cbcSMatt Macy 1043eda14cbcSMatt Macy static void 1044eda14cbcSMatt Macy dnode_slots_rele(dnode_children_t *children, int idx, int slots) 1045eda14cbcSMatt Macy { 1046eda14cbcSMatt Macy ASSERT3S(idx + slots, <=, DNODES_PER_BLOCK); 1047eda14cbcSMatt Macy 1048eda14cbcSMatt Macy for (int i = idx; i < idx + slots; i++) { 1049eda14cbcSMatt Macy dnode_handle_t *dnh = &children->dnc_children[i]; 1050eda14cbcSMatt Macy 1051eda14cbcSMatt Macy if (zrl_is_locked(&dnh->dnh_zrlock)) 1052eda14cbcSMatt Macy zrl_exit(&dnh->dnh_zrlock); 1053eda14cbcSMatt Macy else 1054eda14cbcSMatt Macy zrl_remove(&dnh->dnh_zrlock); 1055eda14cbcSMatt Macy } 1056eda14cbcSMatt Macy } 1057eda14cbcSMatt Macy 1058eda14cbcSMatt Macy static int 1059eda14cbcSMatt Macy dnode_slots_tryenter(dnode_children_t *children, int idx, int slots) 1060eda14cbcSMatt Macy { 1061eda14cbcSMatt Macy ASSERT3S(idx + slots, <=, DNODES_PER_BLOCK); 1062eda14cbcSMatt Macy 1063eda14cbcSMatt Macy for (int i = idx; i < idx + slots; i++) { 1064eda14cbcSMatt Macy dnode_handle_t *dnh = &children->dnc_children[i]; 1065eda14cbcSMatt Macy 1066eda14cbcSMatt Macy if (!zrl_tryenter(&dnh->dnh_zrlock)) { 1067eda14cbcSMatt Macy for (int j = idx; j < i; j++) { 1068eda14cbcSMatt Macy dnh = &children->dnc_children[j]; 1069eda14cbcSMatt Macy zrl_exit(&dnh->dnh_zrlock); 1070eda14cbcSMatt Macy } 1071eda14cbcSMatt Macy 1072eda14cbcSMatt Macy return (0); 1073eda14cbcSMatt Macy } 1074eda14cbcSMatt Macy } 1075eda14cbcSMatt Macy 1076eda14cbcSMatt Macy return (1); 1077eda14cbcSMatt Macy } 1078eda14cbcSMatt Macy 1079eda14cbcSMatt Macy static void 1080eda14cbcSMatt Macy dnode_set_slots(dnode_children_t *children, int idx, int slots, void *ptr) 1081eda14cbcSMatt Macy { 1082eda14cbcSMatt Macy ASSERT3S(idx + slots, <=, DNODES_PER_BLOCK); 1083eda14cbcSMatt Macy 1084eda14cbcSMatt Macy for (int i = idx; i < idx + slots; i++) { 1085eda14cbcSMatt Macy dnode_handle_t *dnh = &children->dnc_children[i]; 1086eda14cbcSMatt Macy dnh->dnh_dnode = ptr; 1087eda14cbcSMatt Macy } 1088eda14cbcSMatt Macy } 1089eda14cbcSMatt Macy 1090eda14cbcSMatt Macy static boolean_t 1091eda14cbcSMatt Macy dnode_check_slots_free(dnode_children_t *children, int idx, int slots) 1092eda14cbcSMatt Macy { 1093eda14cbcSMatt Macy ASSERT3S(idx + slots, <=, DNODES_PER_BLOCK); 1094eda14cbcSMatt Macy 1095eda14cbcSMatt Macy /* 1096eda14cbcSMatt Macy * If all dnode slots are either already free or 1097eda14cbcSMatt Macy * evictable return B_TRUE. 1098eda14cbcSMatt Macy */ 1099eda14cbcSMatt Macy for (int i = idx; i < idx + slots; i++) { 1100eda14cbcSMatt Macy dnode_handle_t *dnh = &children->dnc_children[i]; 1101eda14cbcSMatt Macy dnode_t *dn = dnh->dnh_dnode; 1102eda14cbcSMatt Macy 1103eda14cbcSMatt Macy if (dn == DN_SLOT_FREE) { 1104eda14cbcSMatt Macy continue; 1105eda14cbcSMatt Macy } else if (DN_SLOT_IS_PTR(dn)) { 1106eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1107eda14cbcSMatt Macy boolean_t can_free = (dn->dn_type == DMU_OT_NONE && 1108eda14cbcSMatt Macy zfs_refcount_is_zero(&dn->dn_holds) && 1109eda14cbcSMatt Macy !DNODE_IS_DIRTY(dn)); 1110eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1111eda14cbcSMatt Macy 1112eda14cbcSMatt Macy if (!can_free) 1113eda14cbcSMatt Macy return (B_FALSE); 1114eda14cbcSMatt Macy else 1115eda14cbcSMatt Macy continue; 1116eda14cbcSMatt Macy } else { 1117eda14cbcSMatt Macy return (B_FALSE); 1118eda14cbcSMatt Macy } 1119eda14cbcSMatt Macy } 1120eda14cbcSMatt Macy 1121eda14cbcSMatt Macy return (B_TRUE); 1122eda14cbcSMatt Macy } 1123eda14cbcSMatt Macy 1124eda14cbcSMatt Macy static void 1125eda14cbcSMatt Macy dnode_reclaim_slots(dnode_children_t *children, int idx, int slots) 1126eda14cbcSMatt Macy { 1127eda14cbcSMatt Macy ASSERT3S(idx + slots, <=, DNODES_PER_BLOCK); 1128eda14cbcSMatt Macy 1129eda14cbcSMatt Macy for (int i = idx; i < idx + slots; i++) { 1130eda14cbcSMatt Macy dnode_handle_t *dnh = &children->dnc_children[i]; 1131eda14cbcSMatt Macy 1132eda14cbcSMatt Macy ASSERT(zrl_is_locked(&dnh->dnh_zrlock)); 1133eda14cbcSMatt Macy 1134eda14cbcSMatt Macy if (DN_SLOT_IS_PTR(dnh->dnh_dnode)) { 1135eda14cbcSMatt Macy ASSERT3S(dnh->dnh_dnode->dn_type, ==, DMU_OT_NONE); 1136eda14cbcSMatt Macy dnode_destroy(dnh->dnh_dnode); 1137eda14cbcSMatt Macy dnh->dnh_dnode = DN_SLOT_FREE; 1138eda14cbcSMatt Macy } 1139eda14cbcSMatt Macy } 1140eda14cbcSMatt Macy } 1141eda14cbcSMatt Macy 1142eda14cbcSMatt Macy void 1143eda14cbcSMatt Macy dnode_free_interior_slots(dnode_t *dn) 1144eda14cbcSMatt Macy { 1145eda14cbcSMatt Macy dnode_children_t *children = dmu_buf_get_user(&dn->dn_dbuf->db); 1146eda14cbcSMatt Macy int epb = dn->dn_dbuf->db.db_size >> DNODE_SHIFT; 1147eda14cbcSMatt Macy int idx = (dn->dn_object & (epb - 1)) + 1; 1148eda14cbcSMatt Macy int slots = dn->dn_num_slots - 1; 1149eda14cbcSMatt Macy 1150eda14cbcSMatt Macy if (slots == 0) 1151eda14cbcSMatt Macy return; 1152eda14cbcSMatt Macy 1153eda14cbcSMatt Macy ASSERT3S(idx + slots, <=, DNODES_PER_BLOCK); 1154eda14cbcSMatt Macy 1155eda14cbcSMatt Macy while (!dnode_slots_tryenter(children, idx, slots)) { 1156eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_free_interior_lock_retry); 1157eda14cbcSMatt Macy cond_resched(); 1158eda14cbcSMatt Macy } 1159eda14cbcSMatt Macy 1160eda14cbcSMatt Macy dnode_set_slots(children, idx, slots, DN_SLOT_FREE); 1161eda14cbcSMatt Macy dnode_slots_rele(children, idx, slots); 1162eda14cbcSMatt Macy } 1163eda14cbcSMatt Macy 1164eda14cbcSMatt Macy void 1165eda14cbcSMatt Macy dnode_special_close(dnode_handle_t *dnh) 1166eda14cbcSMatt Macy { 1167eda14cbcSMatt Macy dnode_t *dn = dnh->dnh_dnode; 1168eda14cbcSMatt Macy 1169eda14cbcSMatt Macy /* 1170eda14cbcSMatt Macy * Ensure dnode_rele_and_unlock() has released dn_mtx, after final 1171eda14cbcSMatt Macy * zfs_refcount_remove() 1172eda14cbcSMatt Macy */ 1173eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1174eda14cbcSMatt Macy if (zfs_refcount_count(&dn->dn_holds) > 0) 1175eda14cbcSMatt Macy cv_wait(&dn->dn_nodnholds, &dn->dn_mtx); 1176eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1177eda14cbcSMatt Macy ASSERT3U(zfs_refcount_count(&dn->dn_holds), ==, 0); 1178eda14cbcSMatt Macy 1179eda14cbcSMatt Macy ASSERT(dn->dn_dbuf == NULL || 1180eda14cbcSMatt Macy dmu_buf_get_user(&dn->dn_dbuf->db) == NULL); 1181eda14cbcSMatt Macy zrl_add(&dnh->dnh_zrlock); 1182eda14cbcSMatt Macy dnode_destroy(dn); /* implicit zrl_remove() */ 1183eda14cbcSMatt Macy zrl_destroy(&dnh->dnh_zrlock); 1184eda14cbcSMatt Macy dnh->dnh_dnode = NULL; 1185eda14cbcSMatt Macy } 1186eda14cbcSMatt Macy 1187eda14cbcSMatt Macy void 1188eda14cbcSMatt Macy dnode_special_open(objset_t *os, dnode_phys_t *dnp, uint64_t object, 1189eda14cbcSMatt Macy dnode_handle_t *dnh) 1190eda14cbcSMatt Macy { 1191eda14cbcSMatt Macy dnode_t *dn; 1192eda14cbcSMatt Macy 1193eda14cbcSMatt Macy zrl_init(&dnh->dnh_zrlock); 11942c48331dSMatt Macy VERIFY3U(1, ==, zrl_tryenter(&dnh->dnh_zrlock)); 1195eda14cbcSMatt Macy 1196eda14cbcSMatt Macy dn = dnode_create(os, dnp, NULL, object, dnh); 1197eda14cbcSMatt Macy DNODE_VERIFY(dn); 1198eda14cbcSMatt Macy 1199eda14cbcSMatt Macy zrl_exit(&dnh->dnh_zrlock); 1200eda14cbcSMatt Macy } 1201eda14cbcSMatt Macy 1202eda14cbcSMatt Macy static void 1203eda14cbcSMatt Macy dnode_buf_evict_async(void *dbu) 1204eda14cbcSMatt Macy { 1205eda14cbcSMatt Macy dnode_children_t *dnc = dbu; 1206eda14cbcSMatt Macy 1207eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_buf_evict); 1208eda14cbcSMatt Macy 1209eda14cbcSMatt Macy for (int i = 0; i < dnc->dnc_count; i++) { 1210eda14cbcSMatt Macy dnode_handle_t *dnh = &dnc->dnc_children[i]; 1211eda14cbcSMatt Macy dnode_t *dn; 1212eda14cbcSMatt Macy 1213eda14cbcSMatt Macy /* 1214eda14cbcSMatt Macy * The dnode handle lock guards against the dnode moving to 1215eda14cbcSMatt Macy * another valid address, so there is no need here to guard 1216eda14cbcSMatt Macy * against changes to or from NULL. 1217eda14cbcSMatt Macy */ 1218eda14cbcSMatt Macy if (!DN_SLOT_IS_PTR(dnh->dnh_dnode)) { 1219eda14cbcSMatt Macy zrl_destroy(&dnh->dnh_zrlock); 1220eda14cbcSMatt Macy dnh->dnh_dnode = DN_SLOT_UNINIT; 1221eda14cbcSMatt Macy continue; 1222eda14cbcSMatt Macy } 1223eda14cbcSMatt Macy 1224eda14cbcSMatt Macy zrl_add(&dnh->dnh_zrlock); 1225eda14cbcSMatt Macy dn = dnh->dnh_dnode; 1226eda14cbcSMatt Macy /* 1227eda14cbcSMatt Macy * If there are holds on this dnode, then there should 1228eda14cbcSMatt Macy * be holds on the dnode's containing dbuf as well; thus 1229eda14cbcSMatt Macy * it wouldn't be eligible for eviction and this function 1230eda14cbcSMatt Macy * would not have been called. 1231eda14cbcSMatt Macy */ 1232eda14cbcSMatt Macy ASSERT(zfs_refcount_is_zero(&dn->dn_holds)); 1233eda14cbcSMatt Macy ASSERT(zfs_refcount_is_zero(&dn->dn_tx_holds)); 1234eda14cbcSMatt Macy 1235eda14cbcSMatt Macy dnode_destroy(dn); /* implicit zrl_remove() for first slot */ 1236eda14cbcSMatt Macy zrl_destroy(&dnh->dnh_zrlock); 1237eda14cbcSMatt Macy dnh->dnh_dnode = DN_SLOT_UNINIT; 1238eda14cbcSMatt Macy } 1239eda14cbcSMatt Macy kmem_free(dnc, sizeof (dnode_children_t) + 1240eda14cbcSMatt Macy dnc->dnc_count * sizeof (dnode_handle_t)); 1241eda14cbcSMatt Macy } 1242eda14cbcSMatt Macy 1243eda14cbcSMatt Macy /* 1244eda14cbcSMatt Macy * When the DNODE_MUST_BE_FREE flag is set, the "slots" parameter is used 1245eda14cbcSMatt Macy * to ensure the hole at the specified object offset is large enough to 1246eda14cbcSMatt Macy * hold the dnode being created. The slots parameter is also used to ensure 1247eda14cbcSMatt Macy * a dnode does not span multiple dnode blocks. In both of these cases, if 1248eda14cbcSMatt Macy * a failure occurs, ENOSPC is returned. Keep in mind, these failure cases 1249eda14cbcSMatt Macy * are only possible when using DNODE_MUST_BE_FREE. 1250eda14cbcSMatt Macy * 1251eda14cbcSMatt Macy * If the DNODE_MUST_BE_ALLOCATED flag is set, "slots" must be 0. 1252eda14cbcSMatt Macy * dnode_hold_impl() will check if the requested dnode is already consumed 1253eda14cbcSMatt Macy * as an extra dnode slot by an large dnode, in which case it returns 1254eda14cbcSMatt Macy * ENOENT. 1255eda14cbcSMatt Macy * 1256eda14cbcSMatt Macy * If the DNODE_DRY_RUN flag is set, we don't actually hold the dnode, just 1257eda14cbcSMatt Macy * return whether the hold would succeed or not. tag and dnp should set to 1258eda14cbcSMatt Macy * NULL in this case. 1259eda14cbcSMatt Macy * 1260eda14cbcSMatt Macy * errors: 1261eda14cbcSMatt Macy * EINVAL - Invalid object number or flags. 1262eda14cbcSMatt Macy * ENOSPC - Hole too small to fulfill "slots" request (DNODE_MUST_BE_FREE) 1263eda14cbcSMatt Macy * EEXIST - Refers to an allocated dnode (DNODE_MUST_BE_FREE) 1264eda14cbcSMatt Macy * - Refers to a freeing dnode (DNODE_MUST_BE_FREE) 1265eda14cbcSMatt Macy * - Refers to an interior dnode slot (DNODE_MUST_BE_ALLOCATED) 1266eda14cbcSMatt Macy * ENOENT - The requested dnode is not allocated (DNODE_MUST_BE_ALLOCATED) 1267eda14cbcSMatt Macy * - The requested dnode is being freed (DNODE_MUST_BE_ALLOCATED) 1268eda14cbcSMatt Macy * EIO - I/O error when reading the meta dnode dbuf. 1269eda14cbcSMatt Macy * 1270eda14cbcSMatt Macy * succeeds even for free dnodes. 1271eda14cbcSMatt Macy */ 1272eda14cbcSMatt Macy int 1273eda14cbcSMatt Macy dnode_hold_impl(objset_t *os, uint64_t object, int flag, int slots, 1274eda14cbcSMatt Macy void *tag, dnode_t **dnp) 1275eda14cbcSMatt Macy { 1276eda14cbcSMatt Macy int epb, idx, err; 1277eda14cbcSMatt Macy int drop_struct_lock = FALSE; 1278eda14cbcSMatt Macy int type; 1279eda14cbcSMatt Macy uint64_t blk; 1280eda14cbcSMatt Macy dnode_t *mdn, *dn; 1281eda14cbcSMatt Macy dmu_buf_impl_t *db; 1282eda14cbcSMatt Macy dnode_children_t *dnc; 1283eda14cbcSMatt Macy dnode_phys_t *dn_block; 1284eda14cbcSMatt Macy dnode_handle_t *dnh; 1285eda14cbcSMatt Macy 1286eda14cbcSMatt Macy ASSERT(!(flag & DNODE_MUST_BE_ALLOCATED) || (slots == 0)); 1287eda14cbcSMatt Macy ASSERT(!(flag & DNODE_MUST_BE_FREE) || (slots > 0)); 1288eda14cbcSMatt Macy IMPLY(flag & DNODE_DRY_RUN, (tag == NULL) && (dnp == NULL)); 1289eda14cbcSMatt Macy 1290eda14cbcSMatt Macy /* 1291eda14cbcSMatt Macy * If you are holding the spa config lock as writer, you shouldn't 1292eda14cbcSMatt Macy * be asking the DMU to do *anything* unless it's the root pool 1293eda14cbcSMatt Macy * which may require us to read from the root filesystem while 1294eda14cbcSMatt Macy * holding some (not all) of the locks as writer. 1295eda14cbcSMatt Macy */ 1296eda14cbcSMatt Macy ASSERT(spa_config_held(os->os_spa, SCL_ALL, RW_WRITER) == 0 || 1297eda14cbcSMatt Macy (spa_is_root(os->os_spa) && 1298eda14cbcSMatt Macy spa_config_held(os->os_spa, SCL_STATE, RW_WRITER))); 1299eda14cbcSMatt Macy 1300eda14cbcSMatt Macy ASSERT((flag & DNODE_MUST_BE_ALLOCATED) || (flag & DNODE_MUST_BE_FREE)); 1301eda14cbcSMatt Macy 1302eda14cbcSMatt Macy if (object == DMU_USERUSED_OBJECT || object == DMU_GROUPUSED_OBJECT || 1303eda14cbcSMatt Macy object == DMU_PROJECTUSED_OBJECT) { 1304eda14cbcSMatt Macy if (object == DMU_USERUSED_OBJECT) 1305eda14cbcSMatt Macy dn = DMU_USERUSED_DNODE(os); 1306eda14cbcSMatt Macy else if (object == DMU_GROUPUSED_OBJECT) 1307eda14cbcSMatt Macy dn = DMU_GROUPUSED_DNODE(os); 1308eda14cbcSMatt Macy else 1309eda14cbcSMatt Macy dn = DMU_PROJECTUSED_DNODE(os); 1310eda14cbcSMatt Macy if (dn == NULL) 1311eda14cbcSMatt Macy return (SET_ERROR(ENOENT)); 1312eda14cbcSMatt Macy type = dn->dn_type; 1313eda14cbcSMatt Macy if ((flag & DNODE_MUST_BE_ALLOCATED) && type == DMU_OT_NONE) 1314eda14cbcSMatt Macy return (SET_ERROR(ENOENT)); 1315eda14cbcSMatt Macy if ((flag & DNODE_MUST_BE_FREE) && type != DMU_OT_NONE) 1316eda14cbcSMatt Macy return (SET_ERROR(EEXIST)); 1317eda14cbcSMatt Macy DNODE_VERIFY(dn); 1318eda14cbcSMatt Macy /* Don't actually hold if dry run, just return 0 */ 1319eda14cbcSMatt Macy if (!(flag & DNODE_DRY_RUN)) { 1320eda14cbcSMatt Macy (void) zfs_refcount_add(&dn->dn_holds, tag); 1321eda14cbcSMatt Macy *dnp = dn; 1322eda14cbcSMatt Macy } 1323eda14cbcSMatt Macy return (0); 1324eda14cbcSMatt Macy } 1325eda14cbcSMatt Macy 1326eda14cbcSMatt Macy if (object == 0 || object >= DN_MAX_OBJECT) 1327eda14cbcSMatt Macy return (SET_ERROR(EINVAL)); 1328eda14cbcSMatt Macy 1329eda14cbcSMatt Macy mdn = DMU_META_DNODE(os); 1330eda14cbcSMatt Macy ASSERT(mdn->dn_object == DMU_META_DNODE_OBJECT); 1331eda14cbcSMatt Macy 1332eda14cbcSMatt Macy DNODE_VERIFY(mdn); 1333eda14cbcSMatt Macy 1334eda14cbcSMatt Macy if (!RW_WRITE_HELD(&mdn->dn_struct_rwlock)) { 1335eda14cbcSMatt Macy rw_enter(&mdn->dn_struct_rwlock, RW_READER); 1336eda14cbcSMatt Macy drop_struct_lock = TRUE; 1337eda14cbcSMatt Macy } 1338eda14cbcSMatt Macy 1339eda14cbcSMatt Macy blk = dbuf_whichblock(mdn, 0, object * sizeof (dnode_phys_t)); 1340eda14cbcSMatt Macy db = dbuf_hold(mdn, blk, FTAG); 1341eda14cbcSMatt Macy if (drop_struct_lock) 1342eda14cbcSMatt Macy rw_exit(&mdn->dn_struct_rwlock); 1343eda14cbcSMatt Macy if (db == NULL) { 1344eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_dbuf_hold); 1345eda14cbcSMatt Macy return (SET_ERROR(EIO)); 1346eda14cbcSMatt Macy } 1347eda14cbcSMatt Macy 1348eda14cbcSMatt Macy /* 1349eda14cbcSMatt Macy * We do not need to decrypt to read the dnode so it doesn't matter 1350eda14cbcSMatt Macy * if we get the encrypted or decrypted version. 1351eda14cbcSMatt Macy */ 1352c40487d4SMatt Macy err = dbuf_read(db, NULL, DB_RF_CANFAIL | 1353c40487d4SMatt Macy DB_RF_NO_DECRYPT | DB_RF_NOPREFETCH); 1354eda14cbcSMatt Macy if (err) { 1355eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_dbuf_read); 1356eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1357eda14cbcSMatt Macy return (err); 1358eda14cbcSMatt Macy } 1359eda14cbcSMatt Macy 1360eda14cbcSMatt Macy ASSERT3U(db->db.db_size, >=, 1<<DNODE_SHIFT); 1361eda14cbcSMatt Macy epb = db->db.db_size >> DNODE_SHIFT; 1362eda14cbcSMatt Macy 1363eda14cbcSMatt Macy idx = object & (epb - 1); 1364eda14cbcSMatt Macy dn_block = (dnode_phys_t *)db->db.db_data; 1365eda14cbcSMatt Macy 1366eda14cbcSMatt Macy ASSERT(DB_DNODE(db)->dn_type == DMU_OT_DNODE); 1367eda14cbcSMatt Macy dnc = dmu_buf_get_user(&db->db); 1368eda14cbcSMatt Macy dnh = NULL; 1369eda14cbcSMatt Macy if (dnc == NULL) { 1370eda14cbcSMatt Macy dnode_children_t *winner; 1371eda14cbcSMatt Macy int skip = 0; 1372eda14cbcSMatt Macy 1373eda14cbcSMatt Macy dnc = kmem_zalloc(sizeof (dnode_children_t) + 1374eda14cbcSMatt Macy epb * sizeof (dnode_handle_t), KM_SLEEP); 1375eda14cbcSMatt Macy dnc->dnc_count = epb; 1376eda14cbcSMatt Macy dnh = &dnc->dnc_children[0]; 1377eda14cbcSMatt Macy 1378eda14cbcSMatt Macy /* Initialize dnode slot status from dnode_phys_t */ 1379eda14cbcSMatt Macy for (int i = 0; i < epb; i++) { 1380eda14cbcSMatt Macy zrl_init(&dnh[i].dnh_zrlock); 1381eda14cbcSMatt Macy 1382eda14cbcSMatt Macy if (skip) { 1383eda14cbcSMatt Macy skip--; 1384eda14cbcSMatt Macy continue; 1385eda14cbcSMatt Macy } 1386eda14cbcSMatt Macy 1387eda14cbcSMatt Macy if (dn_block[i].dn_type != DMU_OT_NONE) { 1388eda14cbcSMatt Macy int interior = dn_block[i].dn_extra_slots; 1389eda14cbcSMatt Macy 1390eda14cbcSMatt Macy dnode_set_slots(dnc, i, 1, DN_SLOT_ALLOCATED); 1391eda14cbcSMatt Macy dnode_set_slots(dnc, i + 1, interior, 1392eda14cbcSMatt Macy DN_SLOT_INTERIOR); 1393eda14cbcSMatt Macy skip = interior; 1394eda14cbcSMatt Macy } else { 1395eda14cbcSMatt Macy dnh[i].dnh_dnode = DN_SLOT_FREE; 1396eda14cbcSMatt Macy skip = 0; 1397eda14cbcSMatt Macy } 1398eda14cbcSMatt Macy } 1399eda14cbcSMatt Macy 1400eda14cbcSMatt Macy dmu_buf_init_user(&dnc->dnc_dbu, NULL, 1401eda14cbcSMatt Macy dnode_buf_evict_async, NULL); 1402eda14cbcSMatt Macy winner = dmu_buf_set_user(&db->db, &dnc->dnc_dbu); 1403eda14cbcSMatt Macy if (winner != NULL) { 1404eda14cbcSMatt Macy 1405eda14cbcSMatt Macy for (int i = 0; i < epb; i++) 1406eda14cbcSMatt Macy zrl_destroy(&dnh[i].dnh_zrlock); 1407eda14cbcSMatt Macy 1408eda14cbcSMatt Macy kmem_free(dnc, sizeof (dnode_children_t) + 1409eda14cbcSMatt Macy epb * sizeof (dnode_handle_t)); 1410eda14cbcSMatt Macy dnc = winner; 1411eda14cbcSMatt Macy } 1412eda14cbcSMatt Macy } 1413eda14cbcSMatt Macy 1414eda14cbcSMatt Macy ASSERT(dnc->dnc_count == epb); 1415eda14cbcSMatt Macy 1416eda14cbcSMatt Macy if (flag & DNODE_MUST_BE_ALLOCATED) { 1417eda14cbcSMatt Macy slots = 1; 1418eda14cbcSMatt Macy 1419eda14cbcSMatt Macy dnode_slots_hold(dnc, idx, slots); 1420eda14cbcSMatt Macy dnh = &dnc->dnc_children[idx]; 1421eda14cbcSMatt Macy 1422eda14cbcSMatt Macy if (DN_SLOT_IS_PTR(dnh->dnh_dnode)) { 1423eda14cbcSMatt Macy dn = dnh->dnh_dnode; 1424eda14cbcSMatt Macy } else if (dnh->dnh_dnode == DN_SLOT_INTERIOR) { 1425eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_alloc_interior); 1426eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1427eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1428eda14cbcSMatt Macy return (SET_ERROR(EEXIST)); 1429eda14cbcSMatt Macy } else if (dnh->dnh_dnode != DN_SLOT_ALLOCATED) { 1430eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_alloc_misses); 1431eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1432eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1433eda14cbcSMatt Macy return (SET_ERROR(ENOENT)); 1434eda14cbcSMatt Macy } else { 1435eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1436eda14cbcSMatt Macy while (!dnode_slots_tryenter(dnc, idx, slots)) { 1437eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_alloc_lock_retry); 1438eda14cbcSMatt Macy cond_resched(); 1439eda14cbcSMatt Macy } 1440eda14cbcSMatt Macy 1441eda14cbcSMatt Macy /* 1442eda14cbcSMatt Macy * Someone else won the race and called dnode_create() 1443eda14cbcSMatt Macy * after we checked DN_SLOT_IS_PTR() above but before 1444eda14cbcSMatt Macy * we acquired the lock. 1445eda14cbcSMatt Macy */ 1446eda14cbcSMatt Macy if (DN_SLOT_IS_PTR(dnh->dnh_dnode)) { 1447eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_alloc_lock_misses); 1448eda14cbcSMatt Macy dn = dnh->dnh_dnode; 1449eda14cbcSMatt Macy } else { 1450eda14cbcSMatt Macy dn = dnode_create(os, dn_block + idx, db, 1451eda14cbcSMatt Macy object, dnh); 1452eda14cbcSMatt Macy } 1453eda14cbcSMatt Macy } 1454eda14cbcSMatt Macy 1455eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1456eda14cbcSMatt Macy if (dn->dn_type == DMU_OT_NONE || dn->dn_free_txg != 0) { 1457eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_alloc_type_none); 1458eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1459eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1460eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1461eda14cbcSMatt Macy return (SET_ERROR(ENOENT)); 1462eda14cbcSMatt Macy } 1463eda14cbcSMatt Macy 1464eda14cbcSMatt Macy /* Don't actually hold if dry run, just return 0 */ 1465eda14cbcSMatt Macy if (flag & DNODE_DRY_RUN) { 1466eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1467eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1468eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1469eda14cbcSMatt Macy return (0); 1470eda14cbcSMatt Macy } 1471eda14cbcSMatt Macy 1472eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_alloc_hits); 1473eda14cbcSMatt Macy } else if (flag & DNODE_MUST_BE_FREE) { 1474eda14cbcSMatt Macy 1475eda14cbcSMatt Macy if (idx + slots - 1 >= DNODES_PER_BLOCK) { 1476eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_free_overflow); 1477eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1478eda14cbcSMatt Macy return (SET_ERROR(ENOSPC)); 1479eda14cbcSMatt Macy } 1480eda14cbcSMatt Macy 1481eda14cbcSMatt Macy dnode_slots_hold(dnc, idx, slots); 1482eda14cbcSMatt Macy 1483eda14cbcSMatt Macy if (!dnode_check_slots_free(dnc, idx, slots)) { 1484eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_free_misses); 1485eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1486eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1487eda14cbcSMatt Macy return (SET_ERROR(ENOSPC)); 1488eda14cbcSMatt Macy } 1489eda14cbcSMatt Macy 1490eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1491eda14cbcSMatt Macy while (!dnode_slots_tryenter(dnc, idx, slots)) { 1492eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_free_lock_retry); 1493eda14cbcSMatt Macy cond_resched(); 1494eda14cbcSMatt Macy } 1495eda14cbcSMatt Macy 1496eda14cbcSMatt Macy if (!dnode_check_slots_free(dnc, idx, slots)) { 1497eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_free_lock_misses); 1498eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1499eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1500eda14cbcSMatt Macy return (SET_ERROR(ENOSPC)); 1501eda14cbcSMatt Macy } 1502eda14cbcSMatt Macy 1503eda14cbcSMatt Macy /* 1504eda14cbcSMatt Macy * Allocated but otherwise free dnodes which would 1505eda14cbcSMatt Macy * be in the interior of a multi-slot dnodes need 1506eda14cbcSMatt Macy * to be freed. Single slot dnodes can be safely 1507eda14cbcSMatt Macy * re-purposed as a performance optimization. 1508eda14cbcSMatt Macy */ 1509eda14cbcSMatt Macy if (slots > 1) 1510eda14cbcSMatt Macy dnode_reclaim_slots(dnc, idx + 1, slots - 1); 1511eda14cbcSMatt Macy 1512eda14cbcSMatt Macy dnh = &dnc->dnc_children[idx]; 1513eda14cbcSMatt Macy if (DN_SLOT_IS_PTR(dnh->dnh_dnode)) { 1514eda14cbcSMatt Macy dn = dnh->dnh_dnode; 1515eda14cbcSMatt Macy } else { 1516eda14cbcSMatt Macy dn = dnode_create(os, dn_block + idx, db, 1517eda14cbcSMatt Macy object, dnh); 1518eda14cbcSMatt Macy } 1519eda14cbcSMatt Macy 1520eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1521eda14cbcSMatt Macy if (!zfs_refcount_is_zero(&dn->dn_holds) || dn->dn_free_txg) { 1522eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_free_refcount); 1523eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1524eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1525eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1526eda14cbcSMatt Macy return (SET_ERROR(EEXIST)); 1527eda14cbcSMatt Macy } 1528eda14cbcSMatt Macy 1529eda14cbcSMatt Macy /* Don't actually hold if dry run, just return 0 */ 1530eda14cbcSMatt Macy if (flag & DNODE_DRY_RUN) { 1531eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1532eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1533eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1534eda14cbcSMatt Macy return (0); 1535eda14cbcSMatt Macy } 1536eda14cbcSMatt Macy 1537eda14cbcSMatt Macy dnode_set_slots(dnc, idx + 1, slots - 1, DN_SLOT_INTERIOR); 1538eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_free_hits); 1539eda14cbcSMatt Macy } else { 1540eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1541eda14cbcSMatt Macy return (SET_ERROR(EINVAL)); 1542eda14cbcSMatt Macy } 1543eda14cbcSMatt Macy 1544eda14cbcSMatt Macy ASSERT0(dn->dn_free_txg); 1545eda14cbcSMatt Macy 1546eda14cbcSMatt Macy if (zfs_refcount_add(&dn->dn_holds, tag) == 1) 1547eda14cbcSMatt Macy dbuf_add_ref(db, dnh); 1548eda14cbcSMatt Macy 1549eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1550eda14cbcSMatt Macy 1551eda14cbcSMatt Macy /* Now we can rely on the hold to prevent the dnode from moving. */ 1552eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1553eda14cbcSMatt Macy 1554eda14cbcSMatt Macy DNODE_VERIFY(dn); 1555eda14cbcSMatt Macy ASSERT3P(dnp, !=, NULL); 1556eda14cbcSMatt Macy ASSERT3P(dn->dn_dbuf, ==, db); 1557eda14cbcSMatt Macy ASSERT3U(dn->dn_object, ==, object); 1558eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1559eda14cbcSMatt Macy 1560eda14cbcSMatt Macy *dnp = dn; 1561eda14cbcSMatt Macy return (0); 1562eda14cbcSMatt Macy } 1563eda14cbcSMatt Macy 1564eda14cbcSMatt Macy /* 1565eda14cbcSMatt Macy * Return held dnode if the object is allocated, NULL if not. 1566eda14cbcSMatt Macy */ 1567eda14cbcSMatt Macy int 1568eda14cbcSMatt Macy dnode_hold(objset_t *os, uint64_t object, void *tag, dnode_t **dnp) 1569eda14cbcSMatt Macy { 1570eda14cbcSMatt Macy return (dnode_hold_impl(os, object, DNODE_MUST_BE_ALLOCATED, 0, tag, 1571eda14cbcSMatt Macy dnp)); 1572eda14cbcSMatt Macy } 1573eda14cbcSMatt Macy 1574eda14cbcSMatt Macy /* 1575eda14cbcSMatt Macy * Can only add a reference if there is already at least one 1576eda14cbcSMatt Macy * reference on the dnode. Returns FALSE if unable to add a 1577eda14cbcSMatt Macy * new reference. 1578eda14cbcSMatt Macy */ 1579eda14cbcSMatt Macy boolean_t 1580eda14cbcSMatt Macy dnode_add_ref(dnode_t *dn, void *tag) 1581eda14cbcSMatt Macy { 1582eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1583eda14cbcSMatt Macy if (zfs_refcount_is_zero(&dn->dn_holds)) { 1584eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1585eda14cbcSMatt Macy return (FALSE); 1586eda14cbcSMatt Macy } 1587eda14cbcSMatt Macy VERIFY(1 < zfs_refcount_add(&dn->dn_holds, tag)); 1588eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1589eda14cbcSMatt Macy return (TRUE); 1590eda14cbcSMatt Macy } 1591eda14cbcSMatt Macy 1592eda14cbcSMatt Macy void 1593eda14cbcSMatt Macy dnode_rele(dnode_t *dn, void *tag) 1594eda14cbcSMatt Macy { 1595eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1596eda14cbcSMatt Macy dnode_rele_and_unlock(dn, tag, B_FALSE); 1597eda14cbcSMatt Macy } 1598eda14cbcSMatt Macy 1599eda14cbcSMatt Macy void 1600eda14cbcSMatt Macy dnode_rele_and_unlock(dnode_t *dn, void *tag, boolean_t evicting) 1601eda14cbcSMatt Macy { 1602eda14cbcSMatt Macy uint64_t refs; 1603eda14cbcSMatt Macy /* Get while the hold prevents the dnode from moving. */ 1604eda14cbcSMatt Macy dmu_buf_impl_t *db = dn->dn_dbuf; 1605eda14cbcSMatt Macy dnode_handle_t *dnh = dn->dn_handle; 1606eda14cbcSMatt Macy 1607eda14cbcSMatt Macy refs = zfs_refcount_remove(&dn->dn_holds, tag); 1608eda14cbcSMatt Macy if (refs == 0) 1609eda14cbcSMatt Macy cv_broadcast(&dn->dn_nodnholds); 1610eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1611eda14cbcSMatt Macy /* dnode could get destroyed at this point, so don't use it anymore */ 1612eda14cbcSMatt Macy 1613eda14cbcSMatt Macy /* 1614eda14cbcSMatt Macy * It's unsafe to release the last hold on a dnode by dnode_rele() or 1615eda14cbcSMatt Macy * indirectly by dbuf_rele() while relying on the dnode handle to 1616eda14cbcSMatt Macy * prevent the dnode from moving, since releasing the last hold could 1617eda14cbcSMatt Macy * result in the dnode's parent dbuf evicting its dnode handles. For 1618eda14cbcSMatt Macy * that reason anyone calling dnode_rele() or dbuf_rele() without some 1619eda14cbcSMatt Macy * other direct or indirect hold on the dnode must first drop the dnode 1620eda14cbcSMatt Macy * handle. 1621eda14cbcSMatt Macy */ 1622eda14cbcSMatt Macy ASSERT(refs > 0 || dnh->dnh_zrlock.zr_owner != curthread); 1623eda14cbcSMatt Macy 1624eda14cbcSMatt Macy /* NOTE: the DNODE_DNODE does not have a dn_dbuf */ 1625eda14cbcSMatt Macy if (refs == 0 && db != NULL) { 1626eda14cbcSMatt Macy /* 1627eda14cbcSMatt Macy * Another thread could add a hold to the dnode handle in 1628eda14cbcSMatt Macy * dnode_hold_impl() while holding the parent dbuf. Since the 1629eda14cbcSMatt Macy * hold on the parent dbuf prevents the handle from being 1630eda14cbcSMatt Macy * destroyed, the hold on the handle is OK. We can't yet assert 1631eda14cbcSMatt Macy * that the handle has zero references, but that will be 1632eda14cbcSMatt Macy * asserted anyway when the handle gets destroyed. 1633eda14cbcSMatt Macy */ 1634eda14cbcSMatt Macy mutex_enter(&db->db_mtx); 1635eda14cbcSMatt Macy dbuf_rele_and_unlock(db, dnh, evicting); 1636eda14cbcSMatt Macy } 1637eda14cbcSMatt Macy } 1638eda14cbcSMatt Macy 1639eda14cbcSMatt Macy /* 1640eda14cbcSMatt Macy * Test whether we can create a dnode at the specified location. 1641eda14cbcSMatt Macy */ 1642eda14cbcSMatt Macy int 1643eda14cbcSMatt Macy dnode_try_claim(objset_t *os, uint64_t object, int slots) 1644eda14cbcSMatt Macy { 1645eda14cbcSMatt Macy return (dnode_hold_impl(os, object, DNODE_MUST_BE_FREE | DNODE_DRY_RUN, 1646eda14cbcSMatt Macy slots, NULL, NULL)); 1647eda14cbcSMatt Macy } 1648eda14cbcSMatt Macy 1649eda14cbcSMatt Macy void 1650eda14cbcSMatt Macy dnode_setdirty(dnode_t *dn, dmu_tx_t *tx) 1651eda14cbcSMatt Macy { 1652eda14cbcSMatt Macy objset_t *os = dn->dn_objset; 1653eda14cbcSMatt Macy uint64_t txg = tx->tx_txg; 1654eda14cbcSMatt Macy 1655eda14cbcSMatt Macy if (DMU_OBJECT_IS_SPECIAL(dn->dn_object)) { 1656eda14cbcSMatt Macy dsl_dataset_dirty(os->os_dsl_dataset, tx); 1657eda14cbcSMatt Macy return; 1658eda14cbcSMatt Macy } 1659eda14cbcSMatt Macy 1660eda14cbcSMatt Macy DNODE_VERIFY(dn); 1661eda14cbcSMatt Macy 1662eda14cbcSMatt Macy #ifdef ZFS_DEBUG 1663eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1664eda14cbcSMatt Macy ASSERT(dn->dn_phys->dn_type || dn->dn_allocated_txg); 1665eda14cbcSMatt Macy ASSERT(dn->dn_free_txg == 0 || dn->dn_free_txg >= txg); 1666eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1667eda14cbcSMatt Macy #endif 1668eda14cbcSMatt Macy 1669eda14cbcSMatt Macy /* 1670eda14cbcSMatt Macy * Determine old uid/gid when necessary 1671eda14cbcSMatt Macy */ 1672eda14cbcSMatt Macy dmu_objset_userquota_get_ids(dn, B_TRUE, tx); 1673eda14cbcSMatt Macy 1674*3ff01b23SMartin Matuska multilist_t *dirtylist = &os->os_dirty_dnodes[txg & TXG_MASK]; 1675eda14cbcSMatt Macy multilist_sublist_t *mls = multilist_sublist_lock_obj(dirtylist, dn); 1676eda14cbcSMatt Macy 1677eda14cbcSMatt Macy /* 1678eda14cbcSMatt Macy * If we are already marked dirty, we're done. 1679eda14cbcSMatt Macy */ 1680eda14cbcSMatt Macy if (multilist_link_active(&dn->dn_dirty_link[txg & TXG_MASK])) { 1681eda14cbcSMatt Macy multilist_sublist_unlock(mls); 1682eda14cbcSMatt Macy return; 1683eda14cbcSMatt Macy } 1684eda14cbcSMatt Macy 1685eda14cbcSMatt Macy ASSERT(!zfs_refcount_is_zero(&dn->dn_holds) || 1686eda14cbcSMatt Macy !avl_is_empty(&dn->dn_dbufs)); 1687eda14cbcSMatt Macy ASSERT(dn->dn_datablksz != 0); 1688eda14cbcSMatt Macy ASSERT0(dn->dn_next_bonuslen[txg & TXG_MASK]); 1689eda14cbcSMatt Macy ASSERT0(dn->dn_next_blksz[txg & TXG_MASK]); 1690eda14cbcSMatt Macy ASSERT0(dn->dn_next_bonustype[txg & TXG_MASK]); 1691eda14cbcSMatt Macy 1692eda14cbcSMatt Macy dprintf_ds(os->os_dsl_dataset, "obj=%llu txg=%llu\n", 1693eda14cbcSMatt Macy dn->dn_object, txg); 1694eda14cbcSMatt Macy 1695eda14cbcSMatt Macy multilist_sublist_insert_head(mls, dn); 1696eda14cbcSMatt Macy 1697eda14cbcSMatt Macy multilist_sublist_unlock(mls); 1698eda14cbcSMatt Macy 1699eda14cbcSMatt Macy /* 1700eda14cbcSMatt Macy * The dnode maintains a hold on its containing dbuf as 1701eda14cbcSMatt Macy * long as there are holds on it. Each instantiated child 1702eda14cbcSMatt Macy * dbuf maintains a hold on the dnode. When the last child 1703eda14cbcSMatt Macy * drops its hold, the dnode will drop its hold on the 1704eda14cbcSMatt Macy * containing dbuf. We add a "dirty hold" here so that the 1705eda14cbcSMatt Macy * dnode will hang around after we finish processing its 1706eda14cbcSMatt Macy * children. 1707eda14cbcSMatt Macy */ 1708eda14cbcSMatt Macy VERIFY(dnode_add_ref(dn, (void *)(uintptr_t)tx->tx_txg)); 1709eda14cbcSMatt Macy 1710eda14cbcSMatt Macy (void) dbuf_dirty(dn->dn_dbuf, tx); 1711eda14cbcSMatt Macy 1712eda14cbcSMatt Macy dsl_dataset_dirty(os->os_dsl_dataset, tx); 1713eda14cbcSMatt Macy } 1714eda14cbcSMatt Macy 1715eda14cbcSMatt Macy void 1716eda14cbcSMatt Macy dnode_free(dnode_t *dn, dmu_tx_t *tx) 1717eda14cbcSMatt Macy { 1718eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1719eda14cbcSMatt Macy if (dn->dn_type == DMU_OT_NONE || dn->dn_free_txg) { 1720eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1721eda14cbcSMatt Macy return; 1722eda14cbcSMatt Macy } 1723eda14cbcSMatt Macy dn->dn_free_txg = tx->tx_txg; 1724eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1725eda14cbcSMatt Macy 1726eda14cbcSMatt Macy dnode_setdirty(dn, tx); 1727eda14cbcSMatt Macy } 1728eda14cbcSMatt Macy 1729eda14cbcSMatt Macy /* 1730eda14cbcSMatt Macy * Try to change the block size for the indicated dnode. This can only 1731eda14cbcSMatt Macy * succeed if there are no blocks allocated or dirty beyond first block 1732eda14cbcSMatt Macy */ 1733eda14cbcSMatt Macy int 1734eda14cbcSMatt Macy dnode_set_blksz(dnode_t *dn, uint64_t size, int ibs, dmu_tx_t *tx) 1735eda14cbcSMatt Macy { 1736eda14cbcSMatt Macy dmu_buf_impl_t *db; 1737eda14cbcSMatt Macy int err; 1738eda14cbcSMatt Macy 1739eda14cbcSMatt Macy ASSERT3U(size, <=, spa_maxblocksize(dmu_objset_spa(dn->dn_objset))); 1740eda14cbcSMatt Macy if (size == 0) 1741eda14cbcSMatt Macy size = SPA_MINBLOCKSIZE; 1742eda14cbcSMatt Macy else 1743eda14cbcSMatt Macy size = P2ROUNDUP(size, SPA_MINBLOCKSIZE); 1744eda14cbcSMatt Macy 1745eda14cbcSMatt Macy if (ibs == dn->dn_indblkshift) 1746eda14cbcSMatt Macy ibs = 0; 1747eda14cbcSMatt Macy 1748eda14cbcSMatt Macy if (size >> SPA_MINBLOCKSHIFT == dn->dn_datablkszsec && ibs == 0) 1749eda14cbcSMatt Macy return (0); 1750eda14cbcSMatt Macy 1751eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_WRITER); 1752eda14cbcSMatt Macy 1753eda14cbcSMatt Macy /* Check for any allocated blocks beyond the first */ 1754eda14cbcSMatt Macy if (dn->dn_maxblkid != 0) 1755eda14cbcSMatt Macy goto fail; 1756eda14cbcSMatt Macy 1757eda14cbcSMatt Macy mutex_enter(&dn->dn_dbufs_mtx); 1758eda14cbcSMatt Macy for (db = avl_first(&dn->dn_dbufs); db != NULL; 1759eda14cbcSMatt Macy db = AVL_NEXT(&dn->dn_dbufs, db)) { 1760eda14cbcSMatt Macy if (db->db_blkid != 0 && db->db_blkid != DMU_BONUS_BLKID && 1761eda14cbcSMatt Macy db->db_blkid != DMU_SPILL_BLKID) { 1762eda14cbcSMatt Macy mutex_exit(&dn->dn_dbufs_mtx); 1763eda14cbcSMatt Macy goto fail; 1764eda14cbcSMatt Macy } 1765eda14cbcSMatt Macy } 1766eda14cbcSMatt Macy mutex_exit(&dn->dn_dbufs_mtx); 1767eda14cbcSMatt Macy 1768eda14cbcSMatt Macy if (ibs && dn->dn_nlevels != 1) 1769eda14cbcSMatt Macy goto fail; 1770eda14cbcSMatt Macy 1771eda14cbcSMatt Macy /* resize the old block */ 1772eda14cbcSMatt Macy err = dbuf_hold_impl(dn, 0, 0, TRUE, FALSE, FTAG, &db); 1773eda14cbcSMatt Macy if (err == 0) { 1774eda14cbcSMatt Macy dbuf_new_size(db, size, tx); 1775eda14cbcSMatt Macy } else if (err != ENOENT) { 1776eda14cbcSMatt Macy goto fail; 1777eda14cbcSMatt Macy } 1778eda14cbcSMatt Macy 1779eda14cbcSMatt Macy dnode_setdblksz(dn, size); 1780eda14cbcSMatt Macy dnode_setdirty(dn, tx); 1781eda14cbcSMatt Macy dn->dn_next_blksz[tx->tx_txg&TXG_MASK] = size; 1782eda14cbcSMatt Macy if (ibs) { 1783eda14cbcSMatt Macy dn->dn_indblkshift = ibs; 1784eda14cbcSMatt Macy dn->dn_next_indblkshift[tx->tx_txg&TXG_MASK] = ibs; 1785eda14cbcSMatt Macy } 1786eda14cbcSMatt Macy /* release after we have fixed the blocksize in the dnode */ 1787eda14cbcSMatt Macy if (db) 1788eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1789eda14cbcSMatt Macy 1790eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 1791eda14cbcSMatt Macy return (0); 1792eda14cbcSMatt Macy 1793eda14cbcSMatt Macy fail: 1794eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 1795eda14cbcSMatt Macy return (SET_ERROR(ENOTSUP)); 1796eda14cbcSMatt Macy } 1797eda14cbcSMatt Macy 1798eda14cbcSMatt Macy static void 1799eda14cbcSMatt Macy dnode_set_nlevels_impl(dnode_t *dn, int new_nlevels, dmu_tx_t *tx) 1800eda14cbcSMatt Macy { 1801eda14cbcSMatt Macy uint64_t txgoff = tx->tx_txg & TXG_MASK; 1802eda14cbcSMatt Macy int old_nlevels = dn->dn_nlevels; 1803eda14cbcSMatt Macy dmu_buf_impl_t *db; 1804eda14cbcSMatt Macy list_t *list; 1805eda14cbcSMatt Macy dbuf_dirty_record_t *new, *dr, *dr_next; 1806eda14cbcSMatt Macy 1807eda14cbcSMatt Macy ASSERT(RW_WRITE_HELD(&dn->dn_struct_rwlock)); 1808eda14cbcSMatt Macy 18097877fdebSMatt Macy ASSERT3U(new_nlevels, >, dn->dn_nlevels); 1810eda14cbcSMatt Macy dn->dn_nlevels = new_nlevels; 1811eda14cbcSMatt Macy 1812eda14cbcSMatt Macy ASSERT3U(new_nlevels, >, dn->dn_next_nlevels[txgoff]); 1813eda14cbcSMatt Macy dn->dn_next_nlevels[txgoff] = new_nlevels; 1814eda14cbcSMatt Macy 1815eda14cbcSMatt Macy /* dirty the left indirects */ 1816eda14cbcSMatt Macy db = dbuf_hold_level(dn, old_nlevels, 0, FTAG); 1817eda14cbcSMatt Macy ASSERT(db != NULL); 1818eda14cbcSMatt Macy new = dbuf_dirty(db, tx); 1819eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1820eda14cbcSMatt Macy 1821eda14cbcSMatt Macy /* transfer the dirty records to the new indirect */ 1822eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1823eda14cbcSMatt Macy mutex_enter(&new->dt.di.dr_mtx); 1824eda14cbcSMatt Macy list = &dn->dn_dirty_records[txgoff]; 1825eda14cbcSMatt Macy for (dr = list_head(list); dr; dr = dr_next) { 1826eda14cbcSMatt Macy dr_next = list_next(&dn->dn_dirty_records[txgoff], dr); 18277877fdebSMatt Macy 18287877fdebSMatt Macy IMPLY(dr->dr_dbuf == NULL, old_nlevels == 1); 18297877fdebSMatt Macy if (dr->dr_dbuf == NULL || 18307877fdebSMatt Macy (dr->dr_dbuf->db_level == old_nlevels - 1 && 1831eda14cbcSMatt Macy dr->dr_dbuf->db_blkid != DMU_BONUS_BLKID && 18327877fdebSMatt Macy dr->dr_dbuf->db_blkid != DMU_SPILL_BLKID)) { 1833eda14cbcSMatt Macy list_remove(&dn->dn_dirty_records[txgoff], dr); 1834eda14cbcSMatt Macy list_insert_tail(&new->dt.di.dr_children, dr); 1835eda14cbcSMatt Macy dr->dr_parent = new; 1836eda14cbcSMatt Macy } 1837eda14cbcSMatt Macy } 1838eda14cbcSMatt Macy mutex_exit(&new->dt.di.dr_mtx); 1839eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1840eda14cbcSMatt Macy } 1841eda14cbcSMatt Macy 1842eda14cbcSMatt Macy int 1843eda14cbcSMatt Macy dnode_set_nlevels(dnode_t *dn, int nlevels, dmu_tx_t *tx) 1844eda14cbcSMatt Macy { 1845eda14cbcSMatt Macy int ret = 0; 1846eda14cbcSMatt Macy 1847eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_WRITER); 1848eda14cbcSMatt Macy 1849eda14cbcSMatt Macy if (dn->dn_nlevels == nlevels) { 1850eda14cbcSMatt Macy ret = 0; 1851eda14cbcSMatt Macy goto out; 1852eda14cbcSMatt Macy } else if (nlevels < dn->dn_nlevels) { 1853eda14cbcSMatt Macy ret = SET_ERROR(EINVAL); 1854eda14cbcSMatt Macy goto out; 1855eda14cbcSMatt Macy } 1856eda14cbcSMatt Macy 1857eda14cbcSMatt Macy dnode_set_nlevels_impl(dn, nlevels, tx); 1858eda14cbcSMatt Macy 1859eda14cbcSMatt Macy out: 1860eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 1861eda14cbcSMatt Macy return (ret); 1862eda14cbcSMatt Macy } 1863eda14cbcSMatt Macy 1864eda14cbcSMatt Macy /* read-holding callers must not rely on the lock being continuously held */ 1865eda14cbcSMatt Macy void 1866eda14cbcSMatt Macy dnode_new_blkid(dnode_t *dn, uint64_t blkid, dmu_tx_t *tx, boolean_t have_read, 1867eda14cbcSMatt Macy boolean_t force) 1868eda14cbcSMatt Macy { 1869eda14cbcSMatt Macy int epbs, new_nlevels; 1870eda14cbcSMatt Macy uint64_t sz; 1871eda14cbcSMatt Macy 1872eda14cbcSMatt Macy ASSERT(blkid != DMU_BONUS_BLKID); 1873eda14cbcSMatt Macy 1874eda14cbcSMatt Macy ASSERT(have_read ? 1875eda14cbcSMatt Macy RW_READ_HELD(&dn->dn_struct_rwlock) : 1876eda14cbcSMatt Macy RW_WRITE_HELD(&dn->dn_struct_rwlock)); 1877eda14cbcSMatt Macy 1878eda14cbcSMatt Macy /* 1879eda14cbcSMatt Macy * if we have a read-lock, check to see if we need to do any work 1880eda14cbcSMatt Macy * before upgrading to a write-lock. 1881eda14cbcSMatt Macy */ 1882eda14cbcSMatt Macy if (have_read) { 1883eda14cbcSMatt Macy if (blkid <= dn->dn_maxblkid) 1884eda14cbcSMatt Macy return; 1885eda14cbcSMatt Macy 1886eda14cbcSMatt Macy if (!rw_tryupgrade(&dn->dn_struct_rwlock)) { 1887eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 1888eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_WRITER); 1889eda14cbcSMatt Macy } 1890eda14cbcSMatt Macy } 1891eda14cbcSMatt Macy 1892eda14cbcSMatt Macy /* 1893eda14cbcSMatt Macy * Raw sends (indicated by the force flag) require that we take the 1894eda14cbcSMatt Macy * given blkid even if the value is lower than the current value. 1895eda14cbcSMatt Macy */ 1896eda14cbcSMatt Macy if (!force && blkid <= dn->dn_maxblkid) 1897eda14cbcSMatt Macy goto out; 1898eda14cbcSMatt Macy 1899eda14cbcSMatt Macy /* 1900eda14cbcSMatt Macy * We use the (otherwise unused) top bit of dn_next_maxblkid[txgoff] 1901eda14cbcSMatt Macy * to indicate that this field is set. This allows us to set the 1902eda14cbcSMatt Macy * maxblkid to 0 on an existing object in dnode_sync(). 1903eda14cbcSMatt Macy */ 1904eda14cbcSMatt Macy dn->dn_maxblkid = blkid; 1905eda14cbcSMatt Macy dn->dn_next_maxblkid[tx->tx_txg & TXG_MASK] = 1906eda14cbcSMatt Macy blkid | DMU_NEXT_MAXBLKID_SET; 1907eda14cbcSMatt Macy 1908eda14cbcSMatt Macy /* 1909eda14cbcSMatt Macy * Compute the number of levels necessary to support the new maxblkid. 1910eda14cbcSMatt Macy * Raw sends will ensure nlevels is set correctly for us. 1911eda14cbcSMatt Macy */ 1912eda14cbcSMatt Macy new_nlevels = 1; 1913eda14cbcSMatt Macy epbs = dn->dn_indblkshift - SPA_BLKPTRSHIFT; 1914eda14cbcSMatt Macy for (sz = dn->dn_nblkptr; 1915eda14cbcSMatt Macy sz <= blkid && sz >= dn->dn_nblkptr; sz <<= epbs) 1916eda14cbcSMatt Macy new_nlevels++; 1917eda14cbcSMatt Macy 1918eda14cbcSMatt Macy ASSERT3U(new_nlevels, <=, DN_MAX_LEVELS); 1919eda14cbcSMatt Macy 1920eda14cbcSMatt Macy if (!force) { 1921eda14cbcSMatt Macy if (new_nlevels > dn->dn_nlevels) 1922eda14cbcSMatt Macy dnode_set_nlevels_impl(dn, new_nlevels, tx); 1923eda14cbcSMatt Macy } else { 1924eda14cbcSMatt Macy ASSERT3U(dn->dn_nlevels, >=, new_nlevels); 1925eda14cbcSMatt Macy } 1926eda14cbcSMatt Macy 1927eda14cbcSMatt Macy out: 1928eda14cbcSMatt Macy if (have_read) 1929eda14cbcSMatt Macy rw_downgrade(&dn->dn_struct_rwlock); 1930eda14cbcSMatt Macy } 1931eda14cbcSMatt Macy 1932eda14cbcSMatt Macy static void 1933eda14cbcSMatt Macy dnode_dirty_l1(dnode_t *dn, uint64_t l1blkid, dmu_tx_t *tx) 1934eda14cbcSMatt Macy { 1935eda14cbcSMatt Macy dmu_buf_impl_t *db = dbuf_hold_level(dn, 1, l1blkid, FTAG); 1936eda14cbcSMatt Macy if (db != NULL) { 1937eda14cbcSMatt Macy dmu_buf_will_dirty(&db->db, tx); 1938eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1939eda14cbcSMatt Macy } 1940eda14cbcSMatt Macy } 1941eda14cbcSMatt Macy 1942eda14cbcSMatt Macy /* 1943eda14cbcSMatt Macy * Dirty all the in-core level-1 dbufs in the range specified by start_blkid 1944eda14cbcSMatt Macy * and end_blkid. 1945eda14cbcSMatt Macy */ 1946eda14cbcSMatt Macy static void 1947eda14cbcSMatt Macy dnode_dirty_l1range(dnode_t *dn, uint64_t start_blkid, uint64_t end_blkid, 1948eda14cbcSMatt Macy dmu_tx_t *tx) 1949eda14cbcSMatt Macy { 19502c48331dSMatt Macy dmu_buf_impl_t *db_search; 1951eda14cbcSMatt Macy dmu_buf_impl_t *db; 1952eda14cbcSMatt Macy avl_index_t where; 1953eda14cbcSMatt Macy 19542c48331dSMatt Macy db_search = kmem_zalloc(sizeof (dmu_buf_impl_t), KM_SLEEP); 19552c48331dSMatt Macy 1956eda14cbcSMatt Macy mutex_enter(&dn->dn_dbufs_mtx); 1957eda14cbcSMatt Macy 19582c48331dSMatt Macy db_search->db_level = 1; 19592c48331dSMatt Macy db_search->db_blkid = start_blkid + 1; 19602c48331dSMatt Macy db_search->db_state = DB_SEARCH; 1961eda14cbcSMatt Macy for (;;) { 1962eda14cbcSMatt Macy 19632c48331dSMatt Macy db = avl_find(&dn->dn_dbufs, db_search, &where); 1964eda14cbcSMatt Macy if (db == NULL) 1965eda14cbcSMatt Macy db = avl_nearest(&dn->dn_dbufs, where, AVL_AFTER); 1966eda14cbcSMatt Macy 1967eda14cbcSMatt Macy if (db == NULL || db->db_level != 1 || 1968eda14cbcSMatt Macy db->db_blkid >= end_blkid) { 1969eda14cbcSMatt Macy break; 1970eda14cbcSMatt Macy } 1971eda14cbcSMatt Macy 1972eda14cbcSMatt Macy /* 1973eda14cbcSMatt Macy * Setup the next blkid we want to search for. 1974eda14cbcSMatt Macy */ 19752c48331dSMatt Macy db_search->db_blkid = db->db_blkid + 1; 1976eda14cbcSMatt Macy ASSERT3U(db->db_blkid, >=, start_blkid); 1977eda14cbcSMatt Macy 1978eda14cbcSMatt Macy /* 1979eda14cbcSMatt Macy * If the dbuf transitions to DB_EVICTING while we're trying 1980eda14cbcSMatt Macy * to dirty it, then we will be unable to discover it in 1981eda14cbcSMatt Macy * the dbuf hash table. This will result in a call to 1982eda14cbcSMatt Macy * dbuf_create() which needs to acquire the dn_dbufs_mtx 1983eda14cbcSMatt Macy * lock. To avoid a deadlock, we drop the lock before 1984eda14cbcSMatt Macy * dirtying the level-1 dbuf. 1985eda14cbcSMatt Macy */ 1986eda14cbcSMatt Macy mutex_exit(&dn->dn_dbufs_mtx); 1987eda14cbcSMatt Macy dnode_dirty_l1(dn, db->db_blkid, tx); 1988eda14cbcSMatt Macy mutex_enter(&dn->dn_dbufs_mtx); 1989eda14cbcSMatt Macy } 1990eda14cbcSMatt Macy 1991eda14cbcSMatt Macy #ifdef ZFS_DEBUG 1992eda14cbcSMatt Macy /* 1993eda14cbcSMatt Macy * Walk all the in-core level-1 dbufs and verify they have been dirtied. 1994eda14cbcSMatt Macy */ 19952c48331dSMatt Macy db_search->db_level = 1; 19962c48331dSMatt Macy db_search->db_blkid = start_blkid + 1; 19972c48331dSMatt Macy db_search->db_state = DB_SEARCH; 19982c48331dSMatt Macy db = avl_find(&dn->dn_dbufs, db_search, &where); 1999eda14cbcSMatt Macy if (db == NULL) 2000eda14cbcSMatt Macy db = avl_nearest(&dn->dn_dbufs, where, AVL_AFTER); 2001eda14cbcSMatt Macy for (; db != NULL; db = AVL_NEXT(&dn->dn_dbufs, db)) { 2002eda14cbcSMatt Macy if (db->db_level != 1 || db->db_blkid >= end_blkid) 2003eda14cbcSMatt Macy break; 2004eda14cbcSMatt Macy if (db->db_state != DB_EVICTING) 2005eda14cbcSMatt Macy ASSERT(db->db_dirtycnt > 0); 2006eda14cbcSMatt Macy } 2007eda14cbcSMatt Macy #endif 20082c48331dSMatt Macy kmem_free(db_search, sizeof (dmu_buf_impl_t)); 2009eda14cbcSMatt Macy mutex_exit(&dn->dn_dbufs_mtx); 2010eda14cbcSMatt Macy } 2011eda14cbcSMatt Macy 2012eda14cbcSMatt Macy void 2013eda14cbcSMatt Macy dnode_set_dirtyctx(dnode_t *dn, dmu_tx_t *tx, void *tag) 2014eda14cbcSMatt Macy { 2015eda14cbcSMatt Macy /* 2016eda14cbcSMatt Macy * Don't set dirtyctx to SYNC if we're just modifying this as we 2017eda14cbcSMatt Macy * initialize the objset. 2018eda14cbcSMatt Macy */ 2019eda14cbcSMatt Macy if (dn->dn_dirtyctx == DN_UNDIRTIED) { 2020eda14cbcSMatt Macy dsl_dataset_t *ds = dn->dn_objset->os_dsl_dataset; 2021eda14cbcSMatt Macy 2022eda14cbcSMatt Macy if (ds != NULL) { 2023eda14cbcSMatt Macy rrw_enter(&ds->ds_bp_rwlock, RW_READER, tag); 2024eda14cbcSMatt Macy } 2025eda14cbcSMatt Macy if (!BP_IS_HOLE(dn->dn_objset->os_rootbp)) { 2026eda14cbcSMatt Macy if (dmu_tx_is_syncing(tx)) 2027eda14cbcSMatt Macy dn->dn_dirtyctx = DN_DIRTY_SYNC; 2028eda14cbcSMatt Macy else 2029eda14cbcSMatt Macy dn->dn_dirtyctx = DN_DIRTY_OPEN; 2030eda14cbcSMatt Macy dn->dn_dirtyctx_firstset = tag; 2031eda14cbcSMatt Macy } 2032eda14cbcSMatt Macy if (ds != NULL) { 2033eda14cbcSMatt Macy rrw_exit(&ds->ds_bp_rwlock, tag); 2034eda14cbcSMatt Macy } 2035eda14cbcSMatt Macy } 2036eda14cbcSMatt Macy } 2037eda14cbcSMatt Macy 2038eda14cbcSMatt Macy void 2039eda14cbcSMatt Macy dnode_free_range(dnode_t *dn, uint64_t off, uint64_t len, dmu_tx_t *tx) 2040eda14cbcSMatt Macy { 2041eda14cbcSMatt Macy dmu_buf_impl_t *db; 2042eda14cbcSMatt Macy uint64_t blkoff, blkid, nblks; 2043eda14cbcSMatt Macy int blksz, blkshift, head, tail; 2044eda14cbcSMatt Macy int trunc = FALSE; 2045eda14cbcSMatt Macy int epbs; 2046eda14cbcSMatt Macy 2047eda14cbcSMatt Macy blksz = dn->dn_datablksz; 2048eda14cbcSMatt Macy blkshift = dn->dn_datablkshift; 2049eda14cbcSMatt Macy epbs = dn->dn_indblkshift - SPA_BLKPTRSHIFT; 2050eda14cbcSMatt Macy 2051eda14cbcSMatt Macy if (len == DMU_OBJECT_END) { 2052eda14cbcSMatt Macy len = UINT64_MAX - off; 2053eda14cbcSMatt Macy trunc = TRUE; 2054eda14cbcSMatt Macy } 2055eda14cbcSMatt Macy 2056eda14cbcSMatt Macy /* 2057eda14cbcSMatt Macy * First, block align the region to free: 2058eda14cbcSMatt Macy */ 2059eda14cbcSMatt Macy if (ISP2(blksz)) { 2060eda14cbcSMatt Macy head = P2NPHASE(off, blksz); 2061eda14cbcSMatt Macy blkoff = P2PHASE(off, blksz); 2062eda14cbcSMatt Macy if ((off >> blkshift) > dn->dn_maxblkid) 2063eda14cbcSMatt Macy return; 2064eda14cbcSMatt Macy } else { 2065eda14cbcSMatt Macy ASSERT(dn->dn_maxblkid == 0); 2066eda14cbcSMatt Macy if (off == 0 && len >= blksz) { 2067eda14cbcSMatt Macy /* 2068eda14cbcSMatt Macy * Freeing the whole block; fast-track this request. 2069eda14cbcSMatt Macy */ 2070eda14cbcSMatt Macy blkid = 0; 2071eda14cbcSMatt Macy nblks = 1; 2072eda14cbcSMatt Macy if (dn->dn_nlevels > 1) { 2073eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_WRITER); 2074eda14cbcSMatt Macy dnode_dirty_l1(dn, 0, tx); 2075eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 2076eda14cbcSMatt Macy } 2077eda14cbcSMatt Macy goto done; 2078eda14cbcSMatt Macy } else if (off >= blksz) { 2079eda14cbcSMatt Macy /* Freeing past end-of-data */ 2080eda14cbcSMatt Macy return; 2081eda14cbcSMatt Macy } else { 2082eda14cbcSMatt Macy /* Freeing part of the block. */ 2083eda14cbcSMatt Macy head = blksz - off; 2084eda14cbcSMatt Macy ASSERT3U(head, >, 0); 2085eda14cbcSMatt Macy } 2086eda14cbcSMatt Macy blkoff = off; 2087eda14cbcSMatt Macy } 2088eda14cbcSMatt Macy /* zero out any partial block data at the start of the range */ 2089eda14cbcSMatt Macy if (head) { 2090eda14cbcSMatt Macy int res; 2091eda14cbcSMatt Macy ASSERT3U(blkoff + head, ==, blksz); 2092eda14cbcSMatt Macy if (len < head) 2093eda14cbcSMatt Macy head = len; 2094eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_READER); 2095eda14cbcSMatt Macy res = dbuf_hold_impl(dn, 0, dbuf_whichblock(dn, 0, off), 2096eda14cbcSMatt Macy TRUE, FALSE, FTAG, &db); 2097eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 2098eda14cbcSMatt Macy if (res == 0) { 2099eda14cbcSMatt Macy caddr_t data; 2100eda14cbcSMatt Macy boolean_t dirty; 2101eda14cbcSMatt Macy 2102eda14cbcSMatt Macy db_lock_type_t dblt = dmu_buf_lock_parent(db, RW_READER, 2103eda14cbcSMatt Macy FTAG); 2104eda14cbcSMatt Macy /* don't dirty if it isn't on disk and isn't dirty */ 2105eda14cbcSMatt Macy dirty = !list_is_empty(&db->db_dirty_records) || 2106eda14cbcSMatt Macy (db->db_blkptr && !BP_IS_HOLE(db->db_blkptr)); 2107eda14cbcSMatt Macy dmu_buf_unlock_parent(db, dblt, FTAG); 2108eda14cbcSMatt Macy if (dirty) { 2109eda14cbcSMatt Macy dmu_buf_will_dirty(&db->db, tx); 2110eda14cbcSMatt Macy data = db->db.db_data; 2111eda14cbcSMatt Macy bzero(data + blkoff, head); 2112eda14cbcSMatt Macy } 2113eda14cbcSMatt Macy dbuf_rele(db, FTAG); 2114eda14cbcSMatt Macy } 2115eda14cbcSMatt Macy off += head; 2116eda14cbcSMatt Macy len -= head; 2117eda14cbcSMatt Macy } 2118eda14cbcSMatt Macy 2119eda14cbcSMatt Macy /* If the range was less than one block, we're done */ 2120eda14cbcSMatt Macy if (len == 0) 2121eda14cbcSMatt Macy return; 2122eda14cbcSMatt Macy 2123eda14cbcSMatt Macy /* If the remaining range is past end of file, we're done */ 2124eda14cbcSMatt Macy if ((off >> blkshift) > dn->dn_maxblkid) 2125eda14cbcSMatt Macy return; 2126eda14cbcSMatt Macy 2127eda14cbcSMatt Macy ASSERT(ISP2(blksz)); 2128eda14cbcSMatt Macy if (trunc) 2129eda14cbcSMatt Macy tail = 0; 2130eda14cbcSMatt Macy else 2131eda14cbcSMatt Macy tail = P2PHASE(len, blksz); 2132eda14cbcSMatt Macy 2133eda14cbcSMatt Macy ASSERT0(P2PHASE(off, blksz)); 2134eda14cbcSMatt Macy /* zero out any partial block data at the end of the range */ 2135eda14cbcSMatt Macy if (tail) { 2136eda14cbcSMatt Macy int res; 2137eda14cbcSMatt Macy if (len < tail) 2138eda14cbcSMatt Macy tail = len; 2139eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_READER); 2140eda14cbcSMatt Macy res = dbuf_hold_impl(dn, 0, dbuf_whichblock(dn, 0, off+len), 2141eda14cbcSMatt Macy TRUE, FALSE, FTAG, &db); 2142eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 2143eda14cbcSMatt Macy if (res == 0) { 2144eda14cbcSMatt Macy boolean_t dirty; 2145eda14cbcSMatt Macy /* don't dirty if not on disk and not dirty */ 2146eda14cbcSMatt Macy db_lock_type_t type = dmu_buf_lock_parent(db, RW_READER, 2147eda14cbcSMatt Macy FTAG); 2148eda14cbcSMatt Macy dirty = !list_is_empty(&db->db_dirty_records) || 2149eda14cbcSMatt Macy (db->db_blkptr && !BP_IS_HOLE(db->db_blkptr)); 2150eda14cbcSMatt Macy dmu_buf_unlock_parent(db, type, FTAG); 2151eda14cbcSMatt Macy if (dirty) { 2152eda14cbcSMatt Macy dmu_buf_will_dirty(&db->db, tx); 2153eda14cbcSMatt Macy bzero(db->db.db_data, tail); 2154eda14cbcSMatt Macy } 2155eda14cbcSMatt Macy dbuf_rele(db, FTAG); 2156eda14cbcSMatt Macy } 2157eda14cbcSMatt Macy len -= tail; 2158eda14cbcSMatt Macy } 2159eda14cbcSMatt Macy 2160eda14cbcSMatt Macy /* If the range did not include a full block, we are done */ 2161eda14cbcSMatt Macy if (len == 0) 2162eda14cbcSMatt Macy return; 2163eda14cbcSMatt Macy 2164eda14cbcSMatt Macy ASSERT(IS_P2ALIGNED(off, blksz)); 2165eda14cbcSMatt Macy ASSERT(trunc || IS_P2ALIGNED(len, blksz)); 2166eda14cbcSMatt Macy blkid = off >> blkshift; 2167eda14cbcSMatt Macy nblks = len >> blkshift; 2168eda14cbcSMatt Macy if (trunc) 2169eda14cbcSMatt Macy nblks += 1; 2170eda14cbcSMatt Macy 2171eda14cbcSMatt Macy /* 2172eda14cbcSMatt Macy * Dirty all the indirect blocks in this range. Note that only 2173eda14cbcSMatt Macy * the first and last indirect blocks can actually be written 2174eda14cbcSMatt Macy * (if they were partially freed) -- they must be dirtied, even if 2175eda14cbcSMatt Macy * they do not exist on disk yet. The interior blocks will 2176eda14cbcSMatt Macy * be freed by free_children(), so they will not actually be written. 2177eda14cbcSMatt Macy * Even though these interior blocks will not be written, we 2178eda14cbcSMatt Macy * dirty them for two reasons: 2179eda14cbcSMatt Macy * 2180eda14cbcSMatt Macy * - It ensures that the indirect blocks remain in memory until 2181eda14cbcSMatt Macy * syncing context. (They have already been prefetched by 2182eda14cbcSMatt Macy * dmu_tx_hold_free(), so we don't have to worry about reading 2183eda14cbcSMatt Macy * them serially here.) 2184eda14cbcSMatt Macy * 2185eda14cbcSMatt Macy * - The dirty space accounting will put pressure on the txg sync 2186eda14cbcSMatt Macy * mechanism to begin syncing, and to delay transactions if there 2187eda14cbcSMatt Macy * is a large amount of freeing. Even though these indirect 2188eda14cbcSMatt Macy * blocks will not be written, we could need to write the same 2189eda14cbcSMatt Macy * amount of space if we copy the freed BPs into deadlists. 2190eda14cbcSMatt Macy */ 2191eda14cbcSMatt Macy if (dn->dn_nlevels > 1) { 2192eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_WRITER); 2193eda14cbcSMatt Macy uint64_t first, last; 2194eda14cbcSMatt Macy 2195eda14cbcSMatt Macy first = blkid >> epbs; 2196eda14cbcSMatt Macy dnode_dirty_l1(dn, first, tx); 2197eda14cbcSMatt Macy if (trunc) 2198eda14cbcSMatt Macy last = dn->dn_maxblkid >> epbs; 2199eda14cbcSMatt Macy else 2200eda14cbcSMatt Macy last = (blkid + nblks - 1) >> epbs; 2201eda14cbcSMatt Macy if (last != first) 2202eda14cbcSMatt Macy dnode_dirty_l1(dn, last, tx); 2203eda14cbcSMatt Macy 2204eda14cbcSMatt Macy dnode_dirty_l1range(dn, first, last, tx); 2205eda14cbcSMatt Macy 2206eda14cbcSMatt Macy int shift = dn->dn_datablkshift + dn->dn_indblkshift - 2207eda14cbcSMatt Macy SPA_BLKPTRSHIFT; 2208eda14cbcSMatt Macy for (uint64_t i = first + 1; i < last; i++) { 2209eda14cbcSMatt Macy /* 2210eda14cbcSMatt Macy * Set i to the blockid of the next non-hole 2211eda14cbcSMatt Macy * level-1 indirect block at or after i. Note 2212eda14cbcSMatt Macy * that dnode_next_offset() operates in terms of 2213eda14cbcSMatt Macy * level-0-equivalent bytes. 2214eda14cbcSMatt Macy */ 2215eda14cbcSMatt Macy uint64_t ibyte = i << shift; 2216eda14cbcSMatt Macy int err = dnode_next_offset(dn, DNODE_FIND_HAVELOCK, 2217eda14cbcSMatt Macy &ibyte, 2, 1, 0); 2218eda14cbcSMatt Macy i = ibyte >> shift; 2219eda14cbcSMatt Macy if (i >= last) 2220eda14cbcSMatt Macy break; 2221eda14cbcSMatt Macy 2222eda14cbcSMatt Macy /* 2223eda14cbcSMatt Macy * Normally we should not see an error, either 2224eda14cbcSMatt Macy * from dnode_next_offset() or dbuf_hold_level() 2225eda14cbcSMatt Macy * (except for ESRCH from dnode_next_offset). 2226eda14cbcSMatt Macy * If there is an i/o error, then when we read 2227eda14cbcSMatt Macy * this block in syncing context, it will use 2228eda14cbcSMatt Macy * ZIO_FLAG_MUSTSUCCEED, and thus hang/panic according 2229eda14cbcSMatt Macy * to the "failmode" property. dnode_next_offset() 2230eda14cbcSMatt Macy * doesn't have a flag to indicate MUSTSUCCEED. 2231eda14cbcSMatt Macy */ 2232eda14cbcSMatt Macy if (err != 0) 2233eda14cbcSMatt Macy break; 2234eda14cbcSMatt Macy 2235eda14cbcSMatt Macy dnode_dirty_l1(dn, i, tx); 2236eda14cbcSMatt Macy } 2237eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 2238eda14cbcSMatt Macy } 2239eda14cbcSMatt Macy 2240eda14cbcSMatt Macy done: 2241eda14cbcSMatt Macy /* 2242eda14cbcSMatt Macy * Add this range to the dnode range list. 2243eda14cbcSMatt Macy * We will finish up this free operation in the syncing phase. 2244eda14cbcSMatt Macy */ 2245eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 2246eda14cbcSMatt Macy { 2247eda14cbcSMatt Macy int txgoff = tx->tx_txg & TXG_MASK; 2248eda14cbcSMatt Macy if (dn->dn_free_ranges[txgoff] == NULL) { 2249eda14cbcSMatt Macy dn->dn_free_ranges[txgoff] = range_tree_create(NULL, 2250eda14cbcSMatt Macy RANGE_SEG64, NULL, 0, 0); 2251eda14cbcSMatt Macy } 2252eda14cbcSMatt Macy range_tree_clear(dn->dn_free_ranges[txgoff], blkid, nblks); 2253eda14cbcSMatt Macy range_tree_add(dn->dn_free_ranges[txgoff], blkid, nblks); 2254eda14cbcSMatt Macy } 2255eda14cbcSMatt Macy dprintf_dnode(dn, "blkid=%llu nblks=%llu txg=%llu\n", 2256eda14cbcSMatt Macy blkid, nblks, tx->tx_txg); 2257eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 2258eda14cbcSMatt Macy 2259eda14cbcSMatt Macy dbuf_free_range(dn, blkid, blkid + nblks - 1, tx); 2260eda14cbcSMatt Macy dnode_setdirty(dn, tx); 2261eda14cbcSMatt Macy } 2262eda14cbcSMatt Macy 2263eda14cbcSMatt Macy static boolean_t 2264eda14cbcSMatt Macy dnode_spill_freed(dnode_t *dn) 2265eda14cbcSMatt Macy { 2266eda14cbcSMatt Macy int i; 2267eda14cbcSMatt Macy 2268eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 2269eda14cbcSMatt Macy for (i = 0; i < TXG_SIZE; i++) { 2270eda14cbcSMatt Macy if (dn->dn_rm_spillblk[i] == DN_KILL_SPILLBLK) 2271eda14cbcSMatt Macy break; 2272eda14cbcSMatt Macy } 2273eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 2274eda14cbcSMatt Macy return (i < TXG_SIZE); 2275eda14cbcSMatt Macy } 2276eda14cbcSMatt Macy 2277eda14cbcSMatt Macy /* return TRUE if this blkid was freed in a recent txg, or FALSE if it wasn't */ 2278eda14cbcSMatt Macy uint64_t 2279eda14cbcSMatt Macy dnode_block_freed(dnode_t *dn, uint64_t blkid) 2280eda14cbcSMatt Macy { 2281eda14cbcSMatt Macy void *dp = spa_get_dsl(dn->dn_objset->os_spa); 2282eda14cbcSMatt Macy int i; 2283eda14cbcSMatt Macy 2284eda14cbcSMatt Macy if (blkid == DMU_BONUS_BLKID) 2285eda14cbcSMatt Macy return (FALSE); 2286eda14cbcSMatt Macy 2287eda14cbcSMatt Macy /* 2288eda14cbcSMatt Macy * If we're in the process of opening the pool, dp will not be 2289eda14cbcSMatt Macy * set yet, but there shouldn't be anything dirty. 2290eda14cbcSMatt Macy */ 2291eda14cbcSMatt Macy if (dp == NULL) 2292eda14cbcSMatt Macy return (FALSE); 2293eda14cbcSMatt Macy 2294eda14cbcSMatt Macy if (dn->dn_free_txg) 2295eda14cbcSMatt Macy return (TRUE); 2296eda14cbcSMatt Macy 2297eda14cbcSMatt Macy if (blkid == DMU_SPILL_BLKID) 2298eda14cbcSMatt Macy return (dnode_spill_freed(dn)); 2299eda14cbcSMatt Macy 2300eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 2301eda14cbcSMatt Macy for (i = 0; i < TXG_SIZE; i++) { 2302eda14cbcSMatt Macy if (dn->dn_free_ranges[i] != NULL && 2303eda14cbcSMatt Macy range_tree_contains(dn->dn_free_ranges[i], blkid, 1)) 2304eda14cbcSMatt Macy break; 2305eda14cbcSMatt Macy } 2306eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 2307eda14cbcSMatt Macy return (i < TXG_SIZE); 2308eda14cbcSMatt Macy } 2309eda14cbcSMatt Macy 2310eda14cbcSMatt Macy /* call from syncing context when we actually write/free space for this dnode */ 2311eda14cbcSMatt Macy void 2312eda14cbcSMatt Macy dnode_diduse_space(dnode_t *dn, int64_t delta) 2313eda14cbcSMatt Macy { 2314eda14cbcSMatt Macy uint64_t space; 2315eda14cbcSMatt Macy dprintf_dnode(dn, "dn=%p dnp=%p used=%llu delta=%lld\n", 2316eda14cbcSMatt Macy dn, dn->dn_phys, 2317eda14cbcSMatt Macy (u_longlong_t)dn->dn_phys->dn_used, 2318eda14cbcSMatt Macy (longlong_t)delta); 2319eda14cbcSMatt Macy 2320eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 2321eda14cbcSMatt Macy space = DN_USED_BYTES(dn->dn_phys); 2322eda14cbcSMatt Macy if (delta > 0) { 2323eda14cbcSMatt Macy ASSERT3U(space + delta, >=, space); /* no overflow */ 2324eda14cbcSMatt Macy } else { 2325eda14cbcSMatt Macy ASSERT3U(space, >=, -delta); /* no underflow */ 2326eda14cbcSMatt Macy } 2327eda14cbcSMatt Macy space += delta; 2328eda14cbcSMatt Macy if (spa_version(dn->dn_objset->os_spa) < SPA_VERSION_DNODE_BYTES) { 2329eda14cbcSMatt Macy ASSERT((dn->dn_phys->dn_flags & DNODE_FLAG_USED_BYTES) == 0); 2330eda14cbcSMatt Macy ASSERT0(P2PHASE(space, 1<<DEV_BSHIFT)); 2331eda14cbcSMatt Macy dn->dn_phys->dn_used = space >> DEV_BSHIFT; 2332eda14cbcSMatt Macy } else { 2333eda14cbcSMatt Macy dn->dn_phys->dn_used = space; 2334eda14cbcSMatt Macy dn->dn_phys->dn_flags |= DNODE_FLAG_USED_BYTES; 2335eda14cbcSMatt Macy } 2336eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 2337eda14cbcSMatt Macy } 2338eda14cbcSMatt Macy 2339eda14cbcSMatt Macy /* 2340eda14cbcSMatt Macy * Scans a block at the indicated "level" looking for a hole or data, 2341eda14cbcSMatt Macy * depending on 'flags'. 2342eda14cbcSMatt Macy * 2343eda14cbcSMatt Macy * If level > 0, then we are scanning an indirect block looking at its 2344eda14cbcSMatt Macy * pointers. If level == 0, then we are looking at a block of dnodes. 2345eda14cbcSMatt Macy * 2346eda14cbcSMatt Macy * If we don't find what we are looking for in the block, we return ESRCH. 2347eda14cbcSMatt Macy * Otherwise, return with *offset pointing to the beginning (if searching 2348eda14cbcSMatt Macy * forwards) or end (if searching backwards) of the range covered by the 2349eda14cbcSMatt Macy * block pointer we matched on (or dnode). 2350eda14cbcSMatt Macy * 2351eda14cbcSMatt Macy * The basic search algorithm used below by dnode_next_offset() is to 2352eda14cbcSMatt Macy * use this function to search up the block tree (widen the search) until 2353eda14cbcSMatt Macy * we find something (i.e., we don't return ESRCH) and then search back 2354eda14cbcSMatt Macy * down the tree (narrow the search) until we reach our original search 2355eda14cbcSMatt Macy * level. 2356eda14cbcSMatt Macy */ 2357eda14cbcSMatt Macy static int 2358eda14cbcSMatt Macy dnode_next_offset_level(dnode_t *dn, int flags, uint64_t *offset, 2359eda14cbcSMatt Macy int lvl, uint64_t blkfill, uint64_t txg) 2360eda14cbcSMatt Macy { 2361eda14cbcSMatt Macy dmu_buf_impl_t *db = NULL; 2362eda14cbcSMatt Macy void *data = NULL; 2363eda14cbcSMatt Macy uint64_t epbs = dn->dn_phys->dn_indblkshift - SPA_BLKPTRSHIFT; 2364eda14cbcSMatt Macy uint64_t epb = 1ULL << epbs; 2365eda14cbcSMatt Macy uint64_t minfill, maxfill; 2366eda14cbcSMatt Macy boolean_t hole; 2367eda14cbcSMatt Macy int i, inc, error, span; 2368eda14cbcSMatt Macy 2369eda14cbcSMatt Macy ASSERT(RW_LOCK_HELD(&dn->dn_struct_rwlock)); 2370eda14cbcSMatt Macy 2371eda14cbcSMatt Macy hole = ((flags & DNODE_FIND_HOLE) != 0); 2372eda14cbcSMatt Macy inc = (flags & DNODE_FIND_BACKWARDS) ? -1 : 1; 2373eda14cbcSMatt Macy ASSERT(txg == 0 || !hole); 2374eda14cbcSMatt Macy 2375eda14cbcSMatt Macy if (lvl == dn->dn_phys->dn_nlevels) { 2376eda14cbcSMatt Macy error = 0; 2377eda14cbcSMatt Macy epb = dn->dn_phys->dn_nblkptr; 2378eda14cbcSMatt Macy data = dn->dn_phys->dn_blkptr; 2379eda14cbcSMatt Macy } else { 2380eda14cbcSMatt Macy uint64_t blkid = dbuf_whichblock(dn, lvl, *offset); 2381eda14cbcSMatt Macy error = dbuf_hold_impl(dn, lvl, blkid, TRUE, FALSE, FTAG, &db); 2382eda14cbcSMatt Macy if (error) { 2383eda14cbcSMatt Macy if (error != ENOENT) 2384eda14cbcSMatt Macy return (error); 2385eda14cbcSMatt Macy if (hole) 2386eda14cbcSMatt Macy return (0); 2387eda14cbcSMatt Macy /* 2388eda14cbcSMatt Macy * This can only happen when we are searching up 2389eda14cbcSMatt Macy * the block tree for data. We don't really need to 2390eda14cbcSMatt Macy * adjust the offset, as we will just end up looking 2391eda14cbcSMatt Macy * at the pointer to this block in its parent, and its 2392eda14cbcSMatt Macy * going to be unallocated, so we will skip over it. 2393eda14cbcSMatt Macy */ 2394eda14cbcSMatt Macy return (SET_ERROR(ESRCH)); 2395eda14cbcSMatt Macy } 2396eda14cbcSMatt Macy error = dbuf_read(db, NULL, 2397c40487d4SMatt Macy DB_RF_CANFAIL | DB_RF_HAVESTRUCT | 2398c40487d4SMatt Macy DB_RF_NO_DECRYPT | DB_RF_NOPREFETCH); 2399eda14cbcSMatt Macy if (error) { 2400eda14cbcSMatt Macy dbuf_rele(db, FTAG); 2401eda14cbcSMatt Macy return (error); 2402eda14cbcSMatt Macy } 2403eda14cbcSMatt Macy data = db->db.db_data; 2404eda14cbcSMatt Macy rw_enter(&db->db_rwlock, RW_READER); 2405eda14cbcSMatt Macy } 2406eda14cbcSMatt Macy 2407eda14cbcSMatt Macy if (db != NULL && txg != 0 && (db->db_blkptr == NULL || 2408eda14cbcSMatt Macy db->db_blkptr->blk_birth <= txg || 2409eda14cbcSMatt Macy BP_IS_HOLE(db->db_blkptr))) { 2410eda14cbcSMatt Macy /* 2411eda14cbcSMatt Macy * This can only happen when we are searching up the tree 2412eda14cbcSMatt Macy * and these conditions mean that we need to keep climbing. 2413eda14cbcSMatt Macy */ 2414eda14cbcSMatt Macy error = SET_ERROR(ESRCH); 2415eda14cbcSMatt Macy } else if (lvl == 0) { 2416eda14cbcSMatt Macy dnode_phys_t *dnp = data; 2417eda14cbcSMatt Macy 2418eda14cbcSMatt Macy ASSERT(dn->dn_type == DMU_OT_DNODE); 2419eda14cbcSMatt Macy ASSERT(!(flags & DNODE_FIND_BACKWARDS)); 2420eda14cbcSMatt Macy 2421eda14cbcSMatt Macy for (i = (*offset >> DNODE_SHIFT) & (blkfill - 1); 2422eda14cbcSMatt Macy i < blkfill; i += dnp[i].dn_extra_slots + 1) { 2423eda14cbcSMatt Macy if ((dnp[i].dn_type == DMU_OT_NONE) == hole) 2424eda14cbcSMatt Macy break; 2425eda14cbcSMatt Macy } 2426eda14cbcSMatt Macy 2427eda14cbcSMatt Macy if (i == blkfill) 2428eda14cbcSMatt Macy error = SET_ERROR(ESRCH); 2429eda14cbcSMatt Macy 2430eda14cbcSMatt Macy *offset = (*offset & ~(DNODE_BLOCK_SIZE - 1)) + 2431eda14cbcSMatt Macy (i << DNODE_SHIFT); 2432eda14cbcSMatt Macy } else { 2433eda14cbcSMatt Macy blkptr_t *bp = data; 2434eda14cbcSMatt Macy uint64_t start = *offset; 2435eda14cbcSMatt Macy span = (lvl - 1) * epbs + dn->dn_datablkshift; 2436eda14cbcSMatt Macy minfill = 0; 2437eda14cbcSMatt Macy maxfill = blkfill << ((lvl - 1) * epbs); 2438eda14cbcSMatt Macy 2439eda14cbcSMatt Macy if (hole) 2440eda14cbcSMatt Macy maxfill--; 2441eda14cbcSMatt Macy else 2442eda14cbcSMatt Macy minfill++; 2443eda14cbcSMatt Macy 2444eda14cbcSMatt Macy if (span >= 8 * sizeof (*offset)) { 2445eda14cbcSMatt Macy /* This only happens on the highest indirection level */ 2446eda14cbcSMatt Macy ASSERT3U((lvl - 1), ==, dn->dn_phys->dn_nlevels - 1); 2447eda14cbcSMatt Macy *offset = 0; 2448eda14cbcSMatt Macy } else { 2449eda14cbcSMatt Macy *offset = *offset >> span; 2450eda14cbcSMatt Macy } 2451eda14cbcSMatt Macy 2452eda14cbcSMatt Macy for (i = BF64_GET(*offset, 0, epbs); 2453eda14cbcSMatt Macy i >= 0 && i < epb; i += inc) { 2454eda14cbcSMatt Macy if (BP_GET_FILL(&bp[i]) >= minfill && 2455eda14cbcSMatt Macy BP_GET_FILL(&bp[i]) <= maxfill && 2456eda14cbcSMatt Macy (hole || bp[i].blk_birth > txg)) 2457eda14cbcSMatt Macy break; 2458eda14cbcSMatt Macy if (inc > 0 || *offset > 0) 2459eda14cbcSMatt Macy *offset += inc; 2460eda14cbcSMatt Macy } 2461eda14cbcSMatt Macy 2462eda14cbcSMatt Macy if (span >= 8 * sizeof (*offset)) { 2463eda14cbcSMatt Macy *offset = start; 2464eda14cbcSMatt Macy } else { 2465eda14cbcSMatt Macy *offset = *offset << span; 2466eda14cbcSMatt Macy } 2467eda14cbcSMatt Macy 2468eda14cbcSMatt Macy if (inc < 0) { 2469eda14cbcSMatt Macy /* traversing backwards; position offset at the end */ 2470eda14cbcSMatt Macy ASSERT3U(*offset, <=, start); 2471eda14cbcSMatt Macy *offset = MIN(*offset + (1ULL << span) - 1, start); 2472eda14cbcSMatt Macy } else if (*offset < start) { 2473eda14cbcSMatt Macy *offset = start; 2474eda14cbcSMatt Macy } 2475eda14cbcSMatt Macy if (i < 0 || i >= epb) 2476eda14cbcSMatt Macy error = SET_ERROR(ESRCH); 2477eda14cbcSMatt Macy } 2478eda14cbcSMatt Macy 2479eda14cbcSMatt Macy if (db != NULL) { 2480eda14cbcSMatt Macy rw_exit(&db->db_rwlock); 2481eda14cbcSMatt Macy dbuf_rele(db, FTAG); 2482eda14cbcSMatt Macy } 2483eda14cbcSMatt Macy 2484eda14cbcSMatt Macy return (error); 2485eda14cbcSMatt Macy } 2486eda14cbcSMatt Macy 2487eda14cbcSMatt Macy /* 2488eda14cbcSMatt Macy * Find the next hole, data, or sparse region at or after *offset. 2489eda14cbcSMatt Macy * The value 'blkfill' tells us how many items we expect to find 2490eda14cbcSMatt Macy * in an L0 data block; this value is 1 for normal objects, 2491eda14cbcSMatt Macy * DNODES_PER_BLOCK for the meta dnode, and some fraction of 2492eda14cbcSMatt Macy * DNODES_PER_BLOCK when searching for sparse regions thereof. 2493eda14cbcSMatt Macy * 2494eda14cbcSMatt Macy * Examples: 2495eda14cbcSMatt Macy * 2496eda14cbcSMatt Macy * dnode_next_offset(dn, flags, offset, 1, 1, 0); 2497eda14cbcSMatt Macy * Finds the next/previous hole/data in a file. 2498eda14cbcSMatt Macy * Used in dmu_offset_next(). 2499eda14cbcSMatt Macy * 2500eda14cbcSMatt Macy * dnode_next_offset(mdn, flags, offset, 0, DNODES_PER_BLOCK, txg); 2501eda14cbcSMatt Macy * Finds the next free/allocated dnode an objset's meta-dnode. 2502eda14cbcSMatt Macy * Only finds objects that have new contents since txg (ie. 2503eda14cbcSMatt Macy * bonus buffer changes and content removal are ignored). 2504eda14cbcSMatt Macy * Used in dmu_object_next(). 2505eda14cbcSMatt Macy * 2506eda14cbcSMatt Macy * dnode_next_offset(mdn, DNODE_FIND_HOLE, offset, 2, DNODES_PER_BLOCK >> 2, 0); 2507eda14cbcSMatt Macy * Finds the next L2 meta-dnode bp that's at most 1/4 full. 2508eda14cbcSMatt Macy * Used in dmu_object_alloc(). 2509eda14cbcSMatt Macy */ 2510eda14cbcSMatt Macy int 2511eda14cbcSMatt Macy dnode_next_offset(dnode_t *dn, int flags, uint64_t *offset, 2512eda14cbcSMatt Macy int minlvl, uint64_t blkfill, uint64_t txg) 2513eda14cbcSMatt Macy { 2514eda14cbcSMatt Macy uint64_t initial_offset = *offset; 2515eda14cbcSMatt Macy int lvl, maxlvl; 2516eda14cbcSMatt Macy int error = 0; 2517eda14cbcSMatt Macy 2518eda14cbcSMatt Macy if (!(flags & DNODE_FIND_HAVELOCK)) 2519eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_READER); 2520eda14cbcSMatt Macy 2521eda14cbcSMatt Macy if (dn->dn_phys->dn_nlevels == 0) { 2522eda14cbcSMatt Macy error = SET_ERROR(ESRCH); 2523eda14cbcSMatt Macy goto out; 2524eda14cbcSMatt Macy } 2525eda14cbcSMatt Macy 2526eda14cbcSMatt Macy if (dn->dn_datablkshift == 0) { 2527eda14cbcSMatt Macy if (*offset < dn->dn_datablksz) { 2528eda14cbcSMatt Macy if (flags & DNODE_FIND_HOLE) 2529eda14cbcSMatt Macy *offset = dn->dn_datablksz; 2530eda14cbcSMatt Macy } else { 2531eda14cbcSMatt Macy error = SET_ERROR(ESRCH); 2532eda14cbcSMatt Macy } 2533eda14cbcSMatt Macy goto out; 2534eda14cbcSMatt Macy } 2535eda14cbcSMatt Macy 2536eda14cbcSMatt Macy maxlvl = dn->dn_phys->dn_nlevels; 2537eda14cbcSMatt Macy 2538eda14cbcSMatt Macy for (lvl = minlvl; lvl <= maxlvl; lvl++) { 2539eda14cbcSMatt Macy error = dnode_next_offset_level(dn, 2540eda14cbcSMatt Macy flags, offset, lvl, blkfill, txg); 2541eda14cbcSMatt Macy if (error != ESRCH) 2542eda14cbcSMatt Macy break; 2543eda14cbcSMatt Macy } 2544eda14cbcSMatt Macy 2545eda14cbcSMatt Macy while (error == 0 && --lvl >= minlvl) { 2546eda14cbcSMatt Macy error = dnode_next_offset_level(dn, 2547eda14cbcSMatt Macy flags, offset, lvl, blkfill, txg); 2548eda14cbcSMatt Macy } 2549eda14cbcSMatt Macy 2550eda14cbcSMatt Macy /* 2551eda14cbcSMatt Macy * There's always a "virtual hole" at the end of the object, even 2552eda14cbcSMatt Macy * if all BP's which physically exist are non-holes. 2553eda14cbcSMatt Macy */ 2554eda14cbcSMatt Macy if ((flags & DNODE_FIND_HOLE) && error == ESRCH && txg == 0 && 2555eda14cbcSMatt Macy minlvl == 1 && blkfill == 1 && !(flags & DNODE_FIND_BACKWARDS)) { 2556eda14cbcSMatt Macy error = 0; 2557eda14cbcSMatt Macy } 2558eda14cbcSMatt Macy 2559eda14cbcSMatt Macy if (error == 0 && (flags & DNODE_FIND_BACKWARDS ? 2560eda14cbcSMatt Macy initial_offset < *offset : initial_offset > *offset)) 2561eda14cbcSMatt Macy error = SET_ERROR(ESRCH); 2562eda14cbcSMatt Macy out: 2563eda14cbcSMatt Macy if (!(flags & DNODE_FIND_HAVELOCK)) 2564eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 2565eda14cbcSMatt Macy 2566eda14cbcSMatt Macy return (error); 2567eda14cbcSMatt Macy } 2568eda14cbcSMatt Macy 2569eda14cbcSMatt Macy #if defined(_KERNEL) 2570eda14cbcSMatt Macy EXPORT_SYMBOL(dnode_hold); 2571eda14cbcSMatt Macy EXPORT_SYMBOL(dnode_rele); 2572eda14cbcSMatt Macy EXPORT_SYMBOL(dnode_set_nlevels); 2573eda14cbcSMatt Macy EXPORT_SYMBOL(dnode_set_blksz); 2574eda14cbcSMatt Macy EXPORT_SYMBOL(dnode_free_range); 2575eda14cbcSMatt Macy EXPORT_SYMBOL(dnode_evict_dbufs); 2576eda14cbcSMatt Macy EXPORT_SYMBOL(dnode_evict_bonus); 2577eda14cbcSMatt Macy #endif 2578