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. 23eda14cbcSMatt Macy * Copyright (c) 2012, 2019 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 ASSERT0(dn->dn_dirty_txg); 613eda14cbcSMatt Macy ASSERT(zfs_refcount_is_zero(&dn->dn_tx_holds)); 614eda14cbcSMatt Macy ASSERT3U(zfs_refcount_count(&dn->dn_holds), <=, 1); 615eda14cbcSMatt Macy ASSERT(avl_is_empty(&dn->dn_dbufs)); 616eda14cbcSMatt Macy 617eda14cbcSMatt Macy for (i = 0; i < TXG_SIZE; i++) { 618eda14cbcSMatt Macy ASSERT0(dn->dn_next_nblkptr[i]); 619eda14cbcSMatt Macy ASSERT0(dn->dn_next_nlevels[i]); 620eda14cbcSMatt Macy ASSERT0(dn->dn_next_indblkshift[i]); 621eda14cbcSMatt Macy ASSERT0(dn->dn_next_bonuslen[i]); 622eda14cbcSMatt Macy ASSERT0(dn->dn_next_bonustype[i]); 623eda14cbcSMatt Macy ASSERT0(dn->dn_rm_spillblk[i]); 624eda14cbcSMatt Macy ASSERT0(dn->dn_next_blksz[i]); 625eda14cbcSMatt Macy ASSERT0(dn->dn_next_maxblkid[i]); 626eda14cbcSMatt Macy ASSERT(!multilist_link_active(&dn->dn_dirty_link[i])); 627eda14cbcSMatt Macy ASSERT3P(list_head(&dn->dn_dirty_records[i]), ==, NULL); 628eda14cbcSMatt Macy ASSERT3P(dn->dn_free_ranges[i], ==, NULL); 629eda14cbcSMatt Macy } 630eda14cbcSMatt Macy 631eda14cbcSMatt Macy dn->dn_type = ot; 632eda14cbcSMatt Macy dnode_setdblksz(dn, blocksize); 633eda14cbcSMatt Macy dn->dn_indblkshift = ibs; 634eda14cbcSMatt Macy dn->dn_nlevels = 1; 635eda14cbcSMatt Macy dn->dn_num_slots = dn_slots; 636eda14cbcSMatt Macy if (bonustype == DMU_OT_SA) /* Maximize bonus space for SA */ 637eda14cbcSMatt Macy dn->dn_nblkptr = 1; 638eda14cbcSMatt Macy else { 639eda14cbcSMatt Macy dn->dn_nblkptr = MIN(DN_MAX_NBLKPTR, 640eda14cbcSMatt Macy 1 + ((DN_SLOTS_TO_BONUSLEN(dn_slots) - bonuslen) >> 641eda14cbcSMatt Macy SPA_BLKPTRSHIFT)); 642eda14cbcSMatt Macy } 643eda14cbcSMatt Macy 644eda14cbcSMatt Macy dn->dn_bonustype = bonustype; 645eda14cbcSMatt Macy dn->dn_bonuslen = bonuslen; 646eda14cbcSMatt Macy dn->dn_checksum = ZIO_CHECKSUM_INHERIT; 647eda14cbcSMatt Macy dn->dn_compress = ZIO_COMPRESS_INHERIT; 648eda14cbcSMatt Macy dn->dn_dirtyctx = 0; 649eda14cbcSMatt Macy 650eda14cbcSMatt Macy dn->dn_free_txg = 0; 651eda14cbcSMatt Macy dn->dn_dirtyctx_firstset = NULL; 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 ASSERT(!MUTEX_HELD(&odn->dn_zfetch.zf_lock)); 758eda14cbcSMatt Macy 759eda14cbcSMatt Macy /* Copy fields. */ 760eda14cbcSMatt Macy ndn->dn_objset = odn->dn_objset; 761eda14cbcSMatt Macy ndn->dn_object = odn->dn_object; 762eda14cbcSMatt Macy ndn->dn_dbuf = odn->dn_dbuf; 763eda14cbcSMatt Macy ndn->dn_handle = odn->dn_handle; 764eda14cbcSMatt Macy ndn->dn_phys = odn->dn_phys; 765eda14cbcSMatt Macy ndn->dn_type = odn->dn_type; 766eda14cbcSMatt Macy ndn->dn_bonuslen = odn->dn_bonuslen; 767eda14cbcSMatt Macy ndn->dn_bonustype = odn->dn_bonustype; 768eda14cbcSMatt Macy ndn->dn_nblkptr = odn->dn_nblkptr; 769eda14cbcSMatt Macy ndn->dn_checksum = odn->dn_checksum; 770eda14cbcSMatt Macy ndn->dn_compress = odn->dn_compress; 771eda14cbcSMatt Macy ndn->dn_nlevels = odn->dn_nlevels; 772eda14cbcSMatt Macy ndn->dn_indblkshift = odn->dn_indblkshift; 773eda14cbcSMatt Macy ndn->dn_datablkshift = odn->dn_datablkshift; 774eda14cbcSMatt Macy ndn->dn_datablkszsec = odn->dn_datablkszsec; 775eda14cbcSMatt Macy ndn->dn_datablksz = odn->dn_datablksz; 776eda14cbcSMatt Macy ndn->dn_maxblkid = odn->dn_maxblkid; 777eda14cbcSMatt Macy ndn->dn_num_slots = odn->dn_num_slots; 778eda14cbcSMatt Macy bcopy(&odn->dn_next_type[0], &ndn->dn_next_type[0], 779eda14cbcSMatt Macy sizeof (odn->dn_next_type)); 780eda14cbcSMatt Macy bcopy(&odn->dn_next_nblkptr[0], &ndn->dn_next_nblkptr[0], 781eda14cbcSMatt Macy sizeof (odn->dn_next_nblkptr)); 782eda14cbcSMatt Macy bcopy(&odn->dn_next_nlevels[0], &ndn->dn_next_nlevels[0], 783eda14cbcSMatt Macy sizeof (odn->dn_next_nlevels)); 784eda14cbcSMatt Macy bcopy(&odn->dn_next_indblkshift[0], &ndn->dn_next_indblkshift[0], 785eda14cbcSMatt Macy sizeof (odn->dn_next_indblkshift)); 786eda14cbcSMatt Macy bcopy(&odn->dn_next_bonustype[0], &ndn->dn_next_bonustype[0], 787eda14cbcSMatt Macy sizeof (odn->dn_next_bonustype)); 788eda14cbcSMatt Macy bcopy(&odn->dn_rm_spillblk[0], &ndn->dn_rm_spillblk[0], 789eda14cbcSMatt Macy sizeof (odn->dn_rm_spillblk)); 790eda14cbcSMatt Macy bcopy(&odn->dn_next_bonuslen[0], &ndn->dn_next_bonuslen[0], 791eda14cbcSMatt Macy sizeof (odn->dn_next_bonuslen)); 792eda14cbcSMatt Macy bcopy(&odn->dn_next_blksz[0], &ndn->dn_next_blksz[0], 793eda14cbcSMatt Macy sizeof (odn->dn_next_blksz)); 794eda14cbcSMatt Macy bcopy(&odn->dn_next_maxblkid[0], &ndn->dn_next_maxblkid[0], 795eda14cbcSMatt Macy sizeof (odn->dn_next_maxblkid)); 796eda14cbcSMatt Macy for (i = 0; i < TXG_SIZE; i++) { 797eda14cbcSMatt Macy list_move_tail(&ndn->dn_dirty_records[i], 798eda14cbcSMatt Macy &odn->dn_dirty_records[i]); 799eda14cbcSMatt Macy } 800eda14cbcSMatt Macy bcopy(&odn->dn_free_ranges[0], &ndn->dn_free_ranges[0], 801eda14cbcSMatt Macy sizeof (odn->dn_free_ranges)); 802eda14cbcSMatt Macy ndn->dn_allocated_txg = odn->dn_allocated_txg; 803eda14cbcSMatt Macy ndn->dn_free_txg = odn->dn_free_txg; 804eda14cbcSMatt Macy ndn->dn_assigned_txg = odn->dn_assigned_txg; 805eda14cbcSMatt Macy ndn->dn_dirty_txg = odn->dn_dirty_txg; 806eda14cbcSMatt Macy ndn->dn_dirtyctx = odn->dn_dirtyctx; 807eda14cbcSMatt Macy ndn->dn_dirtyctx_firstset = odn->dn_dirtyctx_firstset; 808eda14cbcSMatt Macy ASSERT(zfs_refcount_count(&odn->dn_tx_holds) == 0); 809eda14cbcSMatt Macy zfs_refcount_transfer(&ndn->dn_holds, &odn->dn_holds); 810eda14cbcSMatt Macy ASSERT(avl_is_empty(&ndn->dn_dbufs)); 811eda14cbcSMatt Macy avl_swap(&ndn->dn_dbufs, &odn->dn_dbufs); 812eda14cbcSMatt Macy ndn->dn_dbufs_count = odn->dn_dbufs_count; 813eda14cbcSMatt Macy ndn->dn_bonus = odn->dn_bonus; 814eda14cbcSMatt Macy ndn->dn_have_spill = odn->dn_have_spill; 815eda14cbcSMatt Macy ndn->dn_zio = odn->dn_zio; 816eda14cbcSMatt Macy ndn->dn_oldused = odn->dn_oldused; 817eda14cbcSMatt Macy ndn->dn_oldflags = odn->dn_oldflags; 818eda14cbcSMatt Macy ndn->dn_olduid = odn->dn_olduid; 819eda14cbcSMatt Macy ndn->dn_oldgid = odn->dn_oldgid; 820eda14cbcSMatt Macy ndn->dn_oldprojid = odn->dn_oldprojid; 821eda14cbcSMatt Macy ndn->dn_newuid = odn->dn_newuid; 822eda14cbcSMatt Macy ndn->dn_newgid = odn->dn_newgid; 823eda14cbcSMatt Macy ndn->dn_newprojid = odn->dn_newprojid; 824eda14cbcSMatt Macy ndn->dn_id_flags = odn->dn_id_flags; 825eda14cbcSMatt Macy dmu_zfetch_init(&ndn->dn_zfetch, NULL); 826eda14cbcSMatt Macy list_move_tail(&ndn->dn_zfetch.zf_stream, &odn->dn_zfetch.zf_stream); 827eda14cbcSMatt Macy ndn->dn_zfetch.zf_dnode = odn->dn_zfetch.zf_dnode; 828eda14cbcSMatt Macy 829eda14cbcSMatt Macy /* 830eda14cbcSMatt Macy * Update back pointers. Updating the handle fixes the back pointer of 831eda14cbcSMatt Macy * every descendant dbuf as well as the bonus dbuf. 832eda14cbcSMatt Macy */ 833eda14cbcSMatt Macy ASSERT(ndn->dn_handle->dnh_dnode == odn); 834eda14cbcSMatt Macy ndn->dn_handle->dnh_dnode = ndn; 835eda14cbcSMatt Macy if (ndn->dn_zfetch.zf_dnode == odn) { 836eda14cbcSMatt Macy ndn->dn_zfetch.zf_dnode = ndn; 837eda14cbcSMatt Macy } 838eda14cbcSMatt Macy 839eda14cbcSMatt Macy /* 840eda14cbcSMatt Macy * Invalidate the original dnode by clearing all of its back pointers. 841eda14cbcSMatt Macy */ 842eda14cbcSMatt Macy odn->dn_dbuf = NULL; 843eda14cbcSMatt Macy odn->dn_handle = NULL; 844eda14cbcSMatt Macy avl_create(&odn->dn_dbufs, dbuf_compare, sizeof (dmu_buf_impl_t), 845eda14cbcSMatt Macy offsetof(dmu_buf_impl_t, db_link)); 846eda14cbcSMatt Macy odn->dn_dbufs_count = 0; 847eda14cbcSMatt Macy odn->dn_bonus = NULL; 848eda14cbcSMatt Macy dmu_zfetch_fini(&odn->dn_zfetch); 849eda14cbcSMatt Macy 850eda14cbcSMatt Macy /* 851eda14cbcSMatt Macy * Set the low bit of the objset pointer to ensure that dnode_move() 852eda14cbcSMatt Macy * recognizes the dnode as invalid in any subsequent callback. 853eda14cbcSMatt Macy */ 854eda14cbcSMatt Macy POINTER_INVALIDATE(&odn->dn_objset); 855eda14cbcSMatt Macy 856eda14cbcSMatt Macy /* 857eda14cbcSMatt Macy * Satisfy the destructor. 858eda14cbcSMatt Macy */ 859eda14cbcSMatt Macy for (i = 0; i < TXG_SIZE; i++) { 860eda14cbcSMatt Macy list_create(&odn->dn_dirty_records[i], 861eda14cbcSMatt Macy sizeof (dbuf_dirty_record_t), 862eda14cbcSMatt Macy offsetof(dbuf_dirty_record_t, dr_dirty_node)); 863eda14cbcSMatt Macy odn->dn_free_ranges[i] = NULL; 864eda14cbcSMatt Macy odn->dn_next_nlevels[i] = 0; 865eda14cbcSMatt Macy odn->dn_next_indblkshift[i] = 0; 866eda14cbcSMatt Macy odn->dn_next_bonustype[i] = 0; 867eda14cbcSMatt Macy odn->dn_rm_spillblk[i] = 0; 868eda14cbcSMatt Macy odn->dn_next_bonuslen[i] = 0; 869eda14cbcSMatt Macy odn->dn_next_blksz[i] = 0; 870eda14cbcSMatt Macy } 871eda14cbcSMatt Macy odn->dn_allocated_txg = 0; 872eda14cbcSMatt Macy odn->dn_free_txg = 0; 873eda14cbcSMatt Macy odn->dn_assigned_txg = 0; 874eda14cbcSMatt Macy odn->dn_dirty_txg = 0; 875eda14cbcSMatt Macy odn->dn_dirtyctx = 0; 876eda14cbcSMatt Macy odn->dn_dirtyctx_firstset = NULL; 877eda14cbcSMatt Macy odn->dn_have_spill = B_FALSE; 878eda14cbcSMatt Macy odn->dn_zio = NULL; 879eda14cbcSMatt Macy odn->dn_oldused = 0; 880eda14cbcSMatt Macy odn->dn_oldflags = 0; 881eda14cbcSMatt Macy odn->dn_olduid = 0; 882eda14cbcSMatt Macy odn->dn_oldgid = 0; 883eda14cbcSMatt Macy odn->dn_oldprojid = ZFS_DEFAULT_PROJID; 884eda14cbcSMatt Macy odn->dn_newuid = 0; 885eda14cbcSMatt Macy odn->dn_newgid = 0; 886eda14cbcSMatt Macy odn->dn_newprojid = ZFS_DEFAULT_PROJID; 887eda14cbcSMatt Macy odn->dn_id_flags = 0; 888eda14cbcSMatt Macy 889eda14cbcSMatt Macy /* 890eda14cbcSMatt Macy * Mark the dnode. 891eda14cbcSMatt Macy */ 892eda14cbcSMatt Macy ndn->dn_moved = 1; 893eda14cbcSMatt Macy odn->dn_moved = (uint8_t)-1; 894eda14cbcSMatt Macy } 895eda14cbcSMatt Macy 896eda14cbcSMatt Macy /*ARGSUSED*/ 897eda14cbcSMatt Macy static kmem_cbrc_t 898eda14cbcSMatt Macy dnode_move(void *buf, void *newbuf, size_t size, void *arg) 899eda14cbcSMatt Macy { 900eda14cbcSMatt Macy dnode_t *odn = buf, *ndn = newbuf; 901eda14cbcSMatt Macy objset_t *os; 902eda14cbcSMatt Macy int64_t refcount; 903eda14cbcSMatt Macy uint32_t dbufs; 904eda14cbcSMatt Macy 905eda14cbcSMatt Macy /* 906eda14cbcSMatt Macy * The dnode is on the objset's list of known dnodes if the objset 907eda14cbcSMatt Macy * pointer is valid. We set the low bit of the objset pointer when 908eda14cbcSMatt Macy * freeing the dnode to invalidate it, and the memory patterns written 909eda14cbcSMatt Macy * by kmem (baddcafe and deadbeef) set at least one of the two low bits. 910eda14cbcSMatt Macy * A newly created dnode sets the objset pointer last of all to indicate 911eda14cbcSMatt Macy * that the dnode is known and in a valid state to be moved by this 912eda14cbcSMatt Macy * function. 913eda14cbcSMatt Macy */ 914eda14cbcSMatt Macy os = odn->dn_objset; 915eda14cbcSMatt Macy if (!POINTER_IS_VALID(os)) { 916eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_move_invalid); 917eda14cbcSMatt Macy return (KMEM_CBRC_DONT_KNOW); 918eda14cbcSMatt Macy } 919eda14cbcSMatt Macy 920eda14cbcSMatt Macy /* 921eda14cbcSMatt Macy * Ensure that the objset does not go away during the move. 922eda14cbcSMatt Macy */ 923eda14cbcSMatt Macy rw_enter(&os_lock, RW_WRITER); 924eda14cbcSMatt Macy if (os != odn->dn_objset) { 925eda14cbcSMatt Macy rw_exit(&os_lock); 926eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_move_recheck1); 927eda14cbcSMatt Macy return (KMEM_CBRC_DONT_KNOW); 928eda14cbcSMatt Macy } 929eda14cbcSMatt Macy 930eda14cbcSMatt Macy /* 931eda14cbcSMatt Macy * If the dnode is still valid, then so is the objset. We know that no 932eda14cbcSMatt Macy * valid objset can be freed while we hold os_lock, so we can safely 933eda14cbcSMatt Macy * ensure that the objset remains in use. 934eda14cbcSMatt Macy */ 935eda14cbcSMatt Macy mutex_enter(&os->os_lock); 936eda14cbcSMatt Macy 937eda14cbcSMatt Macy /* 938eda14cbcSMatt Macy * Recheck the objset pointer in case the dnode was removed just before 939eda14cbcSMatt Macy * acquiring the lock. 940eda14cbcSMatt Macy */ 941eda14cbcSMatt Macy if (os != odn->dn_objset) { 942eda14cbcSMatt Macy mutex_exit(&os->os_lock); 943eda14cbcSMatt Macy rw_exit(&os_lock); 944eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_move_recheck2); 945eda14cbcSMatt Macy return (KMEM_CBRC_DONT_KNOW); 946eda14cbcSMatt Macy } 947eda14cbcSMatt Macy 948eda14cbcSMatt Macy /* 949eda14cbcSMatt Macy * At this point we know that as long as we hold os->os_lock, the dnode 950eda14cbcSMatt Macy * cannot be freed and fields within the dnode can be safely accessed. 951eda14cbcSMatt Macy * The objset listing this dnode cannot go away as long as this dnode is 952eda14cbcSMatt Macy * on its list. 953eda14cbcSMatt Macy */ 954eda14cbcSMatt Macy rw_exit(&os_lock); 955eda14cbcSMatt Macy if (DMU_OBJECT_IS_SPECIAL(odn->dn_object)) { 956eda14cbcSMatt Macy mutex_exit(&os->os_lock); 957eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_move_special); 958eda14cbcSMatt Macy return (KMEM_CBRC_NO); 959eda14cbcSMatt Macy } 960eda14cbcSMatt Macy ASSERT(odn->dn_dbuf != NULL); /* only "special" dnodes have no parent */ 961eda14cbcSMatt Macy 962eda14cbcSMatt Macy /* 963eda14cbcSMatt Macy * Lock the dnode handle to prevent the dnode from obtaining any new 964eda14cbcSMatt Macy * holds. This also prevents the descendant dbufs and the bonus dbuf 965eda14cbcSMatt Macy * from accessing the dnode, so that we can discount their holds. The 966eda14cbcSMatt Macy * handle is safe to access because we know that while the dnode cannot 967eda14cbcSMatt Macy * go away, neither can its handle. Once we hold dnh_zrlock, we can 968eda14cbcSMatt Macy * safely move any dnode referenced only by dbufs. 969eda14cbcSMatt Macy */ 970eda14cbcSMatt Macy if (!zrl_tryenter(&odn->dn_handle->dnh_zrlock)) { 971eda14cbcSMatt Macy mutex_exit(&os->os_lock); 972eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_move_handle); 973eda14cbcSMatt Macy return (KMEM_CBRC_LATER); 974eda14cbcSMatt Macy } 975eda14cbcSMatt Macy 976eda14cbcSMatt Macy /* 977eda14cbcSMatt Macy * Ensure a consistent view of the dnode's holds and the dnode's dbufs. 978eda14cbcSMatt Macy * We need to guarantee that there is a hold for every dbuf in order to 979eda14cbcSMatt Macy * determine whether the dnode is actively referenced. Falsely matching 980eda14cbcSMatt Macy * a dbuf to an active hold would lead to an unsafe move. It's possible 981eda14cbcSMatt Macy * that a thread already having an active dnode hold is about to add a 982eda14cbcSMatt Macy * dbuf, and we can't compare hold and dbuf counts while the add is in 983eda14cbcSMatt Macy * progress. 984eda14cbcSMatt Macy */ 985eda14cbcSMatt Macy if (!rw_tryenter(&odn->dn_struct_rwlock, RW_WRITER)) { 986eda14cbcSMatt Macy zrl_exit(&odn->dn_handle->dnh_zrlock); 987eda14cbcSMatt Macy mutex_exit(&os->os_lock); 988eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_move_rwlock); 989eda14cbcSMatt Macy return (KMEM_CBRC_LATER); 990eda14cbcSMatt Macy } 991eda14cbcSMatt Macy 992eda14cbcSMatt Macy /* 993eda14cbcSMatt Macy * A dbuf may be removed (evicted) without an active dnode hold. In that 994eda14cbcSMatt Macy * case, the dbuf count is decremented under the handle lock before the 995eda14cbcSMatt Macy * dbuf's hold is released. This order ensures that if we count the hold 996eda14cbcSMatt Macy * after the dbuf is removed but before its hold is released, we will 997eda14cbcSMatt Macy * treat the unmatched hold as active and exit safely. If we count the 998eda14cbcSMatt Macy * hold before the dbuf is removed, the hold is discounted, and the 999eda14cbcSMatt Macy * removal is blocked until the move completes. 1000eda14cbcSMatt Macy */ 1001eda14cbcSMatt Macy refcount = zfs_refcount_count(&odn->dn_holds); 1002eda14cbcSMatt Macy ASSERT(refcount >= 0); 1003eda14cbcSMatt Macy dbufs = DN_DBUFS_COUNT(odn); 1004eda14cbcSMatt Macy 1005eda14cbcSMatt Macy /* We can't have more dbufs than dnode holds. */ 1006eda14cbcSMatt Macy ASSERT3U(dbufs, <=, refcount); 1007eda14cbcSMatt Macy DTRACE_PROBE3(dnode__move, dnode_t *, odn, int64_t, refcount, 1008eda14cbcSMatt Macy uint32_t, dbufs); 1009eda14cbcSMatt Macy 1010eda14cbcSMatt Macy if (refcount > dbufs) { 1011eda14cbcSMatt Macy rw_exit(&odn->dn_struct_rwlock); 1012eda14cbcSMatt Macy zrl_exit(&odn->dn_handle->dnh_zrlock); 1013eda14cbcSMatt Macy mutex_exit(&os->os_lock); 1014eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_move_active); 1015eda14cbcSMatt Macy return (KMEM_CBRC_LATER); 1016eda14cbcSMatt Macy } 1017eda14cbcSMatt Macy 1018eda14cbcSMatt Macy rw_exit(&odn->dn_struct_rwlock); 1019eda14cbcSMatt Macy 1020eda14cbcSMatt Macy /* 1021eda14cbcSMatt Macy * At this point we know that anyone with a hold on the dnode is not 1022eda14cbcSMatt Macy * actively referencing it. The dnode is known and in a valid state to 1023eda14cbcSMatt Macy * move. We're holding the locks needed to execute the critical section. 1024eda14cbcSMatt Macy */ 1025eda14cbcSMatt Macy dnode_move_impl(odn, ndn); 1026eda14cbcSMatt Macy 1027eda14cbcSMatt Macy list_link_replace(&odn->dn_link, &ndn->dn_link); 1028eda14cbcSMatt Macy /* If the dnode was safe to move, the refcount cannot have changed. */ 1029eda14cbcSMatt Macy ASSERT(refcount == zfs_refcount_count(&ndn->dn_holds)); 1030eda14cbcSMatt Macy ASSERT(dbufs == DN_DBUFS_COUNT(ndn)); 1031eda14cbcSMatt Macy zrl_exit(&ndn->dn_handle->dnh_zrlock); /* handle has moved */ 1032eda14cbcSMatt Macy mutex_exit(&os->os_lock); 1033eda14cbcSMatt Macy 1034eda14cbcSMatt Macy return (KMEM_CBRC_YES); 1035eda14cbcSMatt Macy } 1036eda14cbcSMatt Macy #endif /* _KERNEL */ 1037eda14cbcSMatt Macy 1038eda14cbcSMatt Macy static void 1039eda14cbcSMatt Macy dnode_slots_hold(dnode_children_t *children, int idx, int slots) 1040eda14cbcSMatt Macy { 1041eda14cbcSMatt Macy ASSERT3S(idx + slots, <=, DNODES_PER_BLOCK); 1042eda14cbcSMatt Macy 1043eda14cbcSMatt Macy for (int i = idx; i < idx + slots; i++) { 1044eda14cbcSMatt Macy dnode_handle_t *dnh = &children->dnc_children[i]; 1045eda14cbcSMatt Macy zrl_add(&dnh->dnh_zrlock); 1046eda14cbcSMatt Macy } 1047eda14cbcSMatt Macy } 1048eda14cbcSMatt Macy 1049eda14cbcSMatt Macy static void 1050eda14cbcSMatt Macy dnode_slots_rele(dnode_children_t *children, int idx, int slots) 1051eda14cbcSMatt Macy { 1052eda14cbcSMatt Macy ASSERT3S(idx + slots, <=, DNODES_PER_BLOCK); 1053eda14cbcSMatt Macy 1054eda14cbcSMatt Macy for (int i = idx; i < idx + slots; i++) { 1055eda14cbcSMatt Macy dnode_handle_t *dnh = &children->dnc_children[i]; 1056eda14cbcSMatt Macy 1057eda14cbcSMatt Macy if (zrl_is_locked(&dnh->dnh_zrlock)) 1058eda14cbcSMatt Macy zrl_exit(&dnh->dnh_zrlock); 1059eda14cbcSMatt Macy else 1060eda14cbcSMatt Macy zrl_remove(&dnh->dnh_zrlock); 1061eda14cbcSMatt Macy } 1062eda14cbcSMatt Macy } 1063eda14cbcSMatt Macy 1064eda14cbcSMatt Macy static int 1065eda14cbcSMatt Macy dnode_slots_tryenter(dnode_children_t *children, int idx, int slots) 1066eda14cbcSMatt Macy { 1067eda14cbcSMatt Macy ASSERT3S(idx + slots, <=, DNODES_PER_BLOCK); 1068eda14cbcSMatt Macy 1069eda14cbcSMatt Macy for (int i = idx; i < idx + slots; i++) { 1070eda14cbcSMatt Macy dnode_handle_t *dnh = &children->dnc_children[i]; 1071eda14cbcSMatt Macy 1072eda14cbcSMatt Macy if (!zrl_tryenter(&dnh->dnh_zrlock)) { 1073eda14cbcSMatt Macy for (int j = idx; j < i; j++) { 1074eda14cbcSMatt Macy dnh = &children->dnc_children[j]; 1075eda14cbcSMatt Macy zrl_exit(&dnh->dnh_zrlock); 1076eda14cbcSMatt Macy } 1077eda14cbcSMatt Macy 1078eda14cbcSMatt Macy return (0); 1079eda14cbcSMatt Macy } 1080eda14cbcSMatt Macy } 1081eda14cbcSMatt Macy 1082eda14cbcSMatt Macy return (1); 1083eda14cbcSMatt Macy } 1084eda14cbcSMatt Macy 1085eda14cbcSMatt Macy static void 1086eda14cbcSMatt Macy dnode_set_slots(dnode_children_t *children, int idx, int slots, void *ptr) 1087eda14cbcSMatt Macy { 1088eda14cbcSMatt Macy ASSERT3S(idx + slots, <=, DNODES_PER_BLOCK); 1089eda14cbcSMatt Macy 1090eda14cbcSMatt Macy for (int i = idx; i < idx + slots; i++) { 1091eda14cbcSMatt Macy dnode_handle_t *dnh = &children->dnc_children[i]; 1092eda14cbcSMatt Macy dnh->dnh_dnode = ptr; 1093eda14cbcSMatt Macy } 1094eda14cbcSMatt Macy } 1095eda14cbcSMatt Macy 1096eda14cbcSMatt Macy static boolean_t 1097eda14cbcSMatt Macy dnode_check_slots_free(dnode_children_t *children, int idx, int slots) 1098eda14cbcSMatt Macy { 1099eda14cbcSMatt Macy ASSERT3S(idx + slots, <=, DNODES_PER_BLOCK); 1100eda14cbcSMatt Macy 1101eda14cbcSMatt Macy /* 1102eda14cbcSMatt Macy * If all dnode slots are either already free or 1103eda14cbcSMatt Macy * evictable return B_TRUE. 1104eda14cbcSMatt Macy */ 1105eda14cbcSMatt Macy for (int i = idx; i < idx + slots; i++) { 1106eda14cbcSMatt Macy dnode_handle_t *dnh = &children->dnc_children[i]; 1107eda14cbcSMatt Macy dnode_t *dn = dnh->dnh_dnode; 1108eda14cbcSMatt Macy 1109eda14cbcSMatt Macy if (dn == DN_SLOT_FREE) { 1110eda14cbcSMatt Macy continue; 1111eda14cbcSMatt Macy } else if (DN_SLOT_IS_PTR(dn)) { 1112eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1113eda14cbcSMatt Macy boolean_t can_free = (dn->dn_type == DMU_OT_NONE && 1114eda14cbcSMatt Macy zfs_refcount_is_zero(&dn->dn_holds) && 1115eda14cbcSMatt Macy !DNODE_IS_DIRTY(dn)); 1116eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1117eda14cbcSMatt Macy 1118eda14cbcSMatt Macy if (!can_free) 1119eda14cbcSMatt Macy return (B_FALSE); 1120eda14cbcSMatt Macy else 1121eda14cbcSMatt Macy continue; 1122eda14cbcSMatt Macy } else { 1123eda14cbcSMatt Macy return (B_FALSE); 1124eda14cbcSMatt Macy } 1125eda14cbcSMatt Macy } 1126eda14cbcSMatt Macy 1127eda14cbcSMatt Macy return (B_TRUE); 1128eda14cbcSMatt Macy } 1129eda14cbcSMatt Macy 1130eda14cbcSMatt Macy static void 1131eda14cbcSMatt Macy dnode_reclaim_slots(dnode_children_t *children, int idx, int slots) 1132eda14cbcSMatt Macy { 1133eda14cbcSMatt Macy ASSERT3S(idx + slots, <=, DNODES_PER_BLOCK); 1134eda14cbcSMatt Macy 1135eda14cbcSMatt Macy for (int i = idx; i < idx + slots; i++) { 1136eda14cbcSMatt Macy dnode_handle_t *dnh = &children->dnc_children[i]; 1137eda14cbcSMatt Macy 1138eda14cbcSMatt Macy ASSERT(zrl_is_locked(&dnh->dnh_zrlock)); 1139eda14cbcSMatt Macy 1140eda14cbcSMatt Macy if (DN_SLOT_IS_PTR(dnh->dnh_dnode)) { 1141eda14cbcSMatt Macy ASSERT3S(dnh->dnh_dnode->dn_type, ==, DMU_OT_NONE); 1142eda14cbcSMatt Macy dnode_destroy(dnh->dnh_dnode); 1143eda14cbcSMatt Macy dnh->dnh_dnode = DN_SLOT_FREE; 1144eda14cbcSMatt Macy } 1145eda14cbcSMatt Macy } 1146eda14cbcSMatt Macy } 1147eda14cbcSMatt Macy 1148eda14cbcSMatt Macy void 1149eda14cbcSMatt Macy dnode_free_interior_slots(dnode_t *dn) 1150eda14cbcSMatt Macy { 1151eda14cbcSMatt Macy dnode_children_t *children = dmu_buf_get_user(&dn->dn_dbuf->db); 1152eda14cbcSMatt Macy int epb = dn->dn_dbuf->db.db_size >> DNODE_SHIFT; 1153eda14cbcSMatt Macy int idx = (dn->dn_object & (epb - 1)) + 1; 1154eda14cbcSMatt Macy int slots = dn->dn_num_slots - 1; 1155eda14cbcSMatt Macy 1156eda14cbcSMatt Macy if (slots == 0) 1157eda14cbcSMatt Macy return; 1158eda14cbcSMatt Macy 1159eda14cbcSMatt Macy ASSERT3S(idx + slots, <=, DNODES_PER_BLOCK); 1160eda14cbcSMatt Macy 1161eda14cbcSMatt Macy while (!dnode_slots_tryenter(children, idx, slots)) { 1162eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_free_interior_lock_retry); 1163eda14cbcSMatt Macy cond_resched(); 1164eda14cbcSMatt Macy } 1165eda14cbcSMatt Macy 1166eda14cbcSMatt Macy dnode_set_slots(children, idx, slots, DN_SLOT_FREE); 1167eda14cbcSMatt Macy dnode_slots_rele(children, idx, slots); 1168eda14cbcSMatt Macy } 1169eda14cbcSMatt Macy 1170eda14cbcSMatt Macy void 1171eda14cbcSMatt Macy dnode_special_close(dnode_handle_t *dnh) 1172eda14cbcSMatt Macy { 1173eda14cbcSMatt Macy dnode_t *dn = dnh->dnh_dnode; 1174eda14cbcSMatt Macy 1175eda14cbcSMatt Macy /* 1176eda14cbcSMatt Macy * Ensure dnode_rele_and_unlock() has released dn_mtx, after final 1177eda14cbcSMatt Macy * zfs_refcount_remove() 1178eda14cbcSMatt Macy */ 1179eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1180eda14cbcSMatt Macy if (zfs_refcount_count(&dn->dn_holds) > 0) 1181eda14cbcSMatt Macy cv_wait(&dn->dn_nodnholds, &dn->dn_mtx); 1182eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1183eda14cbcSMatt Macy ASSERT3U(zfs_refcount_count(&dn->dn_holds), ==, 0); 1184eda14cbcSMatt Macy 1185eda14cbcSMatt Macy ASSERT(dn->dn_dbuf == NULL || 1186eda14cbcSMatt Macy dmu_buf_get_user(&dn->dn_dbuf->db) == NULL); 1187eda14cbcSMatt Macy zrl_add(&dnh->dnh_zrlock); 1188eda14cbcSMatt Macy dnode_destroy(dn); /* implicit zrl_remove() */ 1189eda14cbcSMatt Macy zrl_destroy(&dnh->dnh_zrlock); 1190eda14cbcSMatt Macy dnh->dnh_dnode = NULL; 1191eda14cbcSMatt Macy } 1192eda14cbcSMatt Macy 1193eda14cbcSMatt Macy void 1194eda14cbcSMatt Macy dnode_special_open(objset_t *os, dnode_phys_t *dnp, uint64_t object, 1195eda14cbcSMatt Macy dnode_handle_t *dnh) 1196eda14cbcSMatt Macy { 1197eda14cbcSMatt Macy dnode_t *dn; 1198eda14cbcSMatt Macy 1199eda14cbcSMatt Macy zrl_init(&dnh->dnh_zrlock); 1200*2c48331dSMatt Macy VERIFY3U(1, ==, zrl_tryenter(&dnh->dnh_zrlock)); 1201eda14cbcSMatt Macy 1202eda14cbcSMatt Macy dn = dnode_create(os, dnp, NULL, object, dnh); 1203eda14cbcSMatt Macy DNODE_VERIFY(dn); 1204eda14cbcSMatt Macy 1205eda14cbcSMatt Macy zrl_exit(&dnh->dnh_zrlock); 1206eda14cbcSMatt Macy } 1207eda14cbcSMatt Macy 1208eda14cbcSMatt Macy static void 1209eda14cbcSMatt Macy dnode_buf_evict_async(void *dbu) 1210eda14cbcSMatt Macy { 1211eda14cbcSMatt Macy dnode_children_t *dnc = dbu; 1212eda14cbcSMatt Macy 1213eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_buf_evict); 1214eda14cbcSMatt Macy 1215eda14cbcSMatt Macy for (int i = 0; i < dnc->dnc_count; i++) { 1216eda14cbcSMatt Macy dnode_handle_t *dnh = &dnc->dnc_children[i]; 1217eda14cbcSMatt Macy dnode_t *dn; 1218eda14cbcSMatt Macy 1219eda14cbcSMatt Macy /* 1220eda14cbcSMatt Macy * The dnode handle lock guards against the dnode moving to 1221eda14cbcSMatt Macy * another valid address, so there is no need here to guard 1222eda14cbcSMatt Macy * against changes to or from NULL. 1223eda14cbcSMatt Macy */ 1224eda14cbcSMatt Macy if (!DN_SLOT_IS_PTR(dnh->dnh_dnode)) { 1225eda14cbcSMatt Macy zrl_destroy(&dnh->dnh_zrlock); 1226eda14cbcSMatt Macy dnh->dnh_dnode = DN_SLOT_UNINIT; 1227eda14cbcSMatt Macy continue; 1228eda14cbcSMatt Macy } 1229eda14cbcSMatt Macy 1230eda14cbcSMatt Macy zrl_add(&dnh->dnh_zrlock); 1231eda14cbcSMatt Macy dn = dnh->dnh_dnode; 1232eda14cbcSMatt Macy /* 1233eda14cbcSMatt Macy * If there are holds on this dnode, then there should 1234eda14cbcSMatt Macy * be holds on the dnode's containing dbuf as well; thus 1235eda14cbcSMatt Macy * it wouldn't be eligible for eviction and this function 1236eda14cbcSMatt Macy * would not have been called. 1237eda14cbcSMatt Macy */ 1238eda14cbcSMatt Macy ASSERT(zfs_refcount_is_zero(&dn->dn_holds)); 1239eda14cbcSMatt Macy ASSERT(zfs_refcount_is_zero(&dn->dn_tx_holds)); 1240eda14cbcSMatt Macy 1241eda14cbcSMatt Macy dnode_destroy(dn); /* implicit zrl_remove() for first slot */ 1242eda14cbcSMatt Macy zrl_destroy(&dnh->dnh_zrlock); 1243eda14cbcSMatt Macy dnh->dnh_dnode = DN_SLOT_UNINIT; 1244eda14cbcSMatt Macy } 1245eda14cbcSMatt Macy kmem_free(dnc, sizeof (dnode_children_t) + 1246eda14cbcSMatt Macy dnc->dnc_count * sizeof (dnode_handle_t)); 1247eda14cbcSMatt Macy } 1248eda14cbcSMatt Macy 1249eda14cbcSMatt Macy /* 1250eda14cbcSMatt Macy * When the DNODE_MUST_BE_FREE flag is set, the "slots" parameter is used 1251eda14cbcSMatt Macy * to ensure the hole at the specified object offset is large enough to 1252eda14cbcSMatt Macy * hold the dnode being created. The slots parameter is also used to ensure 1253eda14cbcSMatt Macy * a dnode does not span multiple dnode blocks. In both of these cases, if 1254eda14cbcSMatt Macy * a failure occurs, ENOSPC is returned. Keep in mind, these failure cases 1255eda14cbcSMatt Macy * are only possible when using DNODE_MUST_BE_FREE. 1256eda14cbcSMatt Macy * 1257eda14cbcSMatt Macy * If the DNODE_MUST_BE_ALLOCATED flag is set, "slots" must be 0. 1258eda14cbcSMatt Macy * dnode_hold_impl() will check if the requested dnode is already consumed 1259eda14cbcSMatt Macy * as an extra dnode slot by an large dnode, in which case it returns 1260eda14cbcSMatt Macy * ENOENT. 1261eda14cbcSMatt Macy * 1262eda14cbcSMatt Macy * If the DNODE_DRY_RUN flag is set, we don't actually hold the dnode, just 1263eda14cbcSMatt Macy * return whether the hold would succeed or not. tag and dnp should set to 1264eda14cbcSMatt Macy * NULL in this case. 1265eda14cbcSMatt Macy * 1266eda14cbcSMatt Macy * errors: 1267eda14cbcSMatt Macy * EINVAL - Invalid object number or flags. 1268eda14cbcSMatt Macy * ENOSPC - Hole too small to fulfill "slots" request (DNODE_MUST_BE_FREE) 1269eda14cbcSMatt Macy * EEXIST - Refers to an allocated dnode (DNODE_MUST_BE_FREE) 1270eda14cbcSMatt Macy * - Refers to a freeing dnode (DNODE_MUST_BE_FREE) 1271eda14cbcSMatt Macy * - Refers to an interior dnode slot (DNODE_MUST_BE_ALLOCATED) 1272eda14cbcSMatt Macy * ENOENT - The requested dnode is not allocated (DNODE_MUST_BE_ALLOCATED) 1273eda14cbcSMatt Macy * - The requested dnode is being freed (DNODE_MUST_BE_ALLOCATED) 1274eda14cbcSMatt Macy * EIO - I/O error when reading the meta dnode dbuf. 1275eda14cbcSMatt Macy * 1276eda14cbcSMatt Macy * succeeds even for free dnodes. 1277eda14cbcSMatt Macy */ 1278eda14cbcSMatt Macy int 1279eda14cbcSMatt Macy dnode_hold_impl(objset_t *os, uint64_t object, int flag, int slots, 1280eda14cbcSMatt Macy void *tag, dnode_t **dnp) 1281eda14cbcSMatt Macy { 1282eda14cbcSMatt Macy int epb, idx, err; 1283eda14cbcSMatt Macy int drop_struct_lock = FALSE; 1284eda14cbcSMatt Macy int type; 1285eda14cbcSMatt Macy uint64_t blk; 1286eda14cbcSMatt Macy dnode_t *mdn, *dn; 1287eda14cbcSMatt Macy dmu_buf_impl_t *db; 1288eda14cbcSMatt Macy dnode_children_t *dnc; 1289eda14cbcSMatt Macy dnode_phys_t *dn_block; 1290eda14cbcSMatt Macy dnode_handle_t *dnh; 1291eda14cbcSMatt Macy 1292eda14cbcSMatt Macy ASSERT(!(flag & DNODE_MUST_BE_ALLOCATED) || (slots == 0)); 1293eda14cbcSMatt Macy ASSERT(!(flag & DNODE_MUST_BE_FREE) || (slots > 0)); 1294eda14cbcSMatt Macy IMPLY(flag & DNODE_DRY_RUN, (tag == NULL) && (dnp == NULL)); 1295eda14cbcSMatt Macy 1296eda14cbcSMatt Macy /* 1297eda14cbcSMatt Macy * If you are holding the spa config lock as writer, you shouldn't 1298eda14cbcSMatt Macy * be asking the DMU to do *anything* unless it's the root pool 1299eda14cbcSMatt Macy * which may require us to read from the root filesystem while 1300eda14cbcSMatt Macy * holding some (not all) of the locks as writer. 1301eda14cbcSMatt Macy */ 1302eda14cbcSMatt Macy ASSERT(spa_config_held(os->os_spa, SCL_ALL, RW_WRITER) == 0 || 1303eda14cbcSMatt Macy (spa_is_root(os->os_spa) && 1304eda14cbcSMatt Macy spa_config_held(os->os_spa, SCL_STATE, RW_WRITER))); 1305eda14cbcSMatt Macy 1306eda14cbcSMatt Macy ASSERT((flag & DNODE_MUST_BE_ALLOCATED) || (flag & DNODE_MUST_BE_FREE)); 1307eda14cbcSMatt Macy 1308eda14cbcSMatt Macy if (object == DMU_USERUSED_OBJECT || object == DMU_GROUPUSED_OBJECT || 1309eda14cbcSMatt Macy object == DMU_PROJECTUSED_OBJECT) { 1310eda14cbcSMatt Macy if (object == DMU_USERUSED_OBJECT) 1311eda14cbcSMatt Macy dn = DMU_USERUSED_DNODE(os); 1312eda14cbcSMatt Macy else if (object == DMU_GROUPUSED_OBJECT) 1313eda14cbcSMatt Macy dn = DMU_GROUPUSED_DNODE(os); 1314eda14cbcSMatt Macy else 1315eda14cbcSMatt Macy dn = DMU_PROJECTUSED_DNODE(os); 1316eda14cbcSMatt Macy if (dn == NULL) 1317eda14cbcSMatt Macy return (SET_ERROR(ENOENT)); 1318eda14cbcSMatt Macy type = dn->dn_type; 1319eda14cbcSMatt Macy if ((flag & DNODE_MUST_BE_ALLOCATED) && type == DMU_OT_NONE) 1320eda14cbcSMatt Macy return (SET_ERROR(ENOENT)); 1321eda14cbcSMatt Macy if ((flag & DNODE_MUST_BE_FREE) && type != DMU_OT_NONE) 1322eda14cbcSMatt Macy return (SET_ERROR(EEXIST)); 1323eda14cbcSMatt Macy DNODE_VERIFY(dn); 1324eda14cbcSMatt Macy /* Don't actually hold if dry run, just return 0 */ 1325eda14cbcSMatt Macy if (!(flag & DNODE_DRY_RUN)) { 1326eda14cbcSMatt Macy (void) zfs_refcount_add(&dn->dn_holds, tag); 1327eda14cbcSMatt Macy *dnp = dn; 1328eda14cbcSMatt Macy } 1329eda14cbcSMatt Macy return (0); 1330eda14cbcSMatt Macy } 1331eda14cbcSMatt Macy 1332eda14cbcSMatt Macy if (object == 0 || object >= DN_MAX_OBJECT) 1333eda14cbcSMatt Macy return (SET_ERROR(EINVAL)); 1334eda14cbcSMatt Macy 1335eda14cbcSMatt Macy mdn = DMU_META_DNODE(os); 1336eda14cbcSMatt Macy ASSERT(mdn->dn_object == DMU_META_DNODE_OBJECT); 1337eda14cbcSMatt Macy 1338eda14cbcSMatt Macy DNODE_VERIFY(mdn); 1339eda14cbcSMatt Macy 1340eda14cbcSMatt Macy if (!RW_WRITE_HELD(&mdn->dn_struct_rwlock)) { 1341eda14cbcSMatt Macy rw_enter(&mdn->dn_struct_rwlock, RW_READER); 1342eda14cbcSMatt Macy drop_struct_lock = TRUE; 1343eda14cbcSMatt Macy } 1344eda14cbcSMatt Macy 1345eda14cbcSMatt Macy blk = dbuf_whichblock(mdn, 0, object * sizeof (dnode_phys_t)); 1346eda14cbcSMatt Macy db = dbuf_hold(mdn, blk, FTAG); 1347eda14cbcSMatt Macy if (drop_struct_lock) 1348eda14cbcSMatt Macy rw_exit(&mdn->dn_struct_rwlock); 1349eda14cbcSMatt Macy if (db == NULL) { 1350eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_dbuf_hold); 1351eda14cbcSMatt Macy return (SET_ERROR(EIO)); 1352eda14cbcSMatt Macy } 1353eda14cbcSMatt Macy 1354eda14cbcSMatt Macy /* 1355eda14cbcSMatt Macy * We do not need to decrypt to read the dnode so it doesn't matter 1356eda14cbcSMatt Macy * if we get the encrypted or decrypted version. 1357eda14cbcSMatt Macy */ 1358eda14cbcSMatt Macy err = dbuf_read(db, NULL, DB_RF_CANFAIL | DB_RF_NO_DECRYPT); 1359eda14cbcSMatt Macy if (err) { 1360eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_dbuf_read); 1361eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1362eda14cbcSMatt Macy return (err); 1363eda14cbcSMatt Macy } 1364eda14cbcSMatt Macy 1365eda14cbcSMatt Macy ASSERT3U(db->db.db_size, >=, 1<<DNODE_SHIFT); 1366eda14cbcSMatt Macy epb = db->db.db_size >> DNODE_SHIFT; 1367eda14cbcSMatt Macy 1368eda14cbcSMatt Macy idx = object & (epb - 1); 1369eda14cbcSMatt Macy dn_block = (dnode_phys_t *)db->db.db_data; 1370eda14cbcSMatt Macy 1371eda14cbcSMatt Macy ASSERT(DB_DNODE(db)->dn_type == DMU_OT_DNODE); 1372eda14cbcSMatt Macy dnc = dmu_buf_get_user(&db->db); 1373eda14cbcSMatt Macy dnh = NULL; 1374eda14cbcSMatt Macy if (dnc == NULL) { 1375eda14cbcSMatt Macy dnode_children_t *winner; 1376eda14cbcSMatt Macy int skip = 0; 1377eda14cbcSMatt Macy 1378eda14cbcSMatt Macy dnc = kmem_zalloc(sizeof (dnode_children_t) + 1379eda14cbcSMatt Macy epb * sizeof (dnode_handle_t), KM_SLEEP); 1380eda14cbcSMatt Macy dnc->dnc_count = epb; 1381eda14cbcSMatt Macy dnh = &dnc->dnc_children[0]; 1382eda14cbcSMatt Macy 1383eda14cbcSMatt Macy /* Initialize dnode slot status from dnode_phys_t */ 1384eda14cbcSMatt Macy for (int i = 0; i < epb; i++) { 1385eda14cbcSMatt Macy zrl_init(&dnh[i].dnh_zrlock); 1386eda14cbcSMatt Macy 1387eda14cbcSMatt Macy if (skip) { 1388eda14cbcSMatt Macy skip--; 1389eda14cbcSMatt Macy continue; 1390eda14cbcSMatt Macy } 1391eda14cbcSMatt Macy 1392eda14cbcSMatt Macy if (dn_block[i].dn_type != DMU_OT_NONE) { 1393eda14cbcSMatt Macy int interior = dn_block[i].dn_extra_slots; 1394eda14cbcSMatt Macy 1395eda14cbcSMatt Macy dnode_set_slots(dnc, i, 1, DN_SLOT_ALLOCATED); 1396eda14cbcSMatt Macy dnode_set_slots(dnc, i + 1, interior, 1397eda14cbcSMatt Macy DN_SLOT_INTERIOR); 1398eda14cbcSMatt Macy skip = interior; 1399eda14cbcSMatt Macy } else { 1400eda14cbcSMatt Macy dnh[i].dnh_dnode = DN_SLOT_FREE; 1401eda14cbcSMatt Macy skip = 0; 1402eda14cbcSMatt Macy } 1403eda14cbcSMatt Macy } 1404eda14cbcSMatt Macy 1405eda14cbcSMatt Macy dmu_buf_init_user(&dnc->dnc_dbu, NULL, 1406eda14cbcSMatt Macy dnode_buf_evict_async, NULL); 1407eda14cbcSMatt Macy winner = dmu_buf_set_user(&db->db, &dnc->dnc_dbu); 1408eda14cbcSMatt Macy if (winner != NULL) { 1409eda14cbcSMatt Macy 1410eda14cbcSMatt Macy for (int i = 0; i < epb; i++) 1411eda14cbcSMatt Macy zrl_destroy(&dnh[i].dnh_zrlock); 1412eda14cbcSMatt Macy 1413eda14cbcSMatt Macy kmem_free(dnc, sizeof (dnode_children_t) + 1414eda14cbcSMatt Macy epb * sizeof (dnode_handle_t)); 1415eda14cbcSMatt Macy dnc = winner; 1416eda14cbcSMatt Macy } 1417eda14cbcSMatt Macy } 1418eda14cbcSMatt Macy 1419eda14cbcSMatt Macy ASSERT(dnc->dnc_count == epb); 1420eda14cbcSMatt Macy 1421eda14cbcSMatt Macy if (flag & DNODE_MUST_BE_ALLOCATED) { 1422eda14cbcSMatt Macy slots = 1; 1423eda14cbcSMatt Macy 1424eda14cbcSMatt Macy dnode_slots_hold(dnc, idx, slots); 1425eda14cbcSMatt Macy dnh = &dnc->dnc_children[idx]; 1426eda14cbcSMatt Macy 1427eda14cbcSMatt Macy if (DN_SLOT_IS_PTR(dnh->dnh_dnode)) { 1428eda14cbcSMatt Macy dn = dnh->dnh_dnode; 1429eda14cbcSMatt Macy } else if (dnh->dnh_dnode == DN_SLOT_INTERIOR) { 1430eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_alloc_interior); 1431eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1432eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1433eda14cbcSMatt Macy return (SET_ERROR(EEXIST)); 1434eda14cbcSMatt Macy } else if (dnh->dnh_dnode != DN_SLOT_ALLOCATED) { 1435eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_alloc_misses); 1436eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1437eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1438eda14cbcSMatt Macy return (SET_ERROR(ENOENT)); 1439eda14cbcSMatt Macy } else { 1440eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1441eda14cbcSMatt Macy while (!dnode_slots_tryenter(dnc, idx, slots)) { 1442eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_alloc_lock_retry); 1443eda14cbcSMatt Macy cond_resched(); 1444eda14cbcSMatt Macy } 1445eda14cbcSMatt Macy 1446eda14cbcSMatt Macy /* 1447eda14cbcSMatt Macy * Someone else won the race and called dnode_create() 1448eda14cbcSMatt Macy * after we checked DN_SLOT_IS_PTR() above but before 1449eda14cbcSMatt Macy * we acquired the lock. 1450eda14cbcSMatt Macy */ 1451eda14cbcSMatt Macy if (DN_SLOT_IS_PTR(dnh->dnh_dnode)) { 1452eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_alloc_lock_misses); 1453eda14cbcSMatt Macy dn = dnh->dnh_dnode; 1454eda14cbcSMatt Macy } else { 1455eda14cbcSMatt Macy dn = dnode_create(os, dn_block + idx, db, 1456eda14cbcSMatt Macy object, dnh); 1457eda14cbcSMatt Macy } 1458eda14cbcSMatt Macy } 1459eda14cbcSMatt Macy 1460eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1461eda14cbcSMatt Macy if (dn->dn_type == DMU_OT_NONE || dn->dn_free_txg != 0) { 1462eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_alloc_type_none); 1463eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1464eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1465eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1466eda14cbcSMatt Macy return (SET_ERROR(ENOENT)); 1467eda14cbcSMatt Macy } 1468eda14cbcSMatt Macy 1469eda14cbcSMatt Macy /* Don't actually hold if dry run, just return 0 */ 1470eda14cbcSMatt Macy if (flag & DNODE_DRY_RUN) { 1471eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1472eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1473eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1474eda14cbcSMatt Macy return (0); 1475eda14cbcSMatt Macy } 1476eda14cbcSMatt Macy 1477eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_alloc_hits); 1478eda14cbcSMatt Macy } else if (flag & DNODE_MUST_BE_FREE) { 1479eda14cbcSMatt Macy 1480eda14cbcSMatt Macy if (idx + slots - 1 >= DNODES_PER_BLOCK) { 1481eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_free_overflow); 1482eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1483eda14cbcSMatt Macy return (SET_ERROR(ENOSPC)); 1484eda14cbcSMatt Macy } 1485eda14cbcSMatt Macy 1486eda14cbcSMatt Macy dnode_slots_hold(dnc, idx, slots); 1487eda14cbcSMatt Macy 1488eda14cbcSMatt Macy if (!dnode_check_slots_free(dnc, idx, slots)) { 1489eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_free_misses); 1490eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1491eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1492eda14cbcSMatt Macy return (SET_ERROR(ENOSPC)); 1493eda14cbcSMatt Macy } 1494eda14cbcSMatt Macy 1495eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1496eda14cbcSMatt Macy while (!dnode_slots_tryenter(dnc, idx, slots)) { 1497eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_free_lock_retry); 1498eda14cbcSMatt Macy cond_resched(); 1499eda14cbcSMatt Macy } 1500eda14cbcSMatt Macy 1501eda14cbcSMatt Macy if (!dnode_check_slots_free(dnc, idx, slots)) { 1502eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_free_lock_misses); 1503eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1504eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1505eda14cbcSMatt Macy return (SET_ERROR(ENOSPC)); 1506eda14cbcSMatt Macy } 1507eda14cbcSMatt Macy 1508eda14cbcSMatt Macy /* 1509eda14cbcSMatt Macy * Allocated but otherwise free dnodes which would 1510eda14cbcSMatt Macy * be in the interior of a multi-slot dnodes need 1511eda14cbcSMatt Macy * to be freed. Single slot dnodes can be safely 1512eda14cbcSMatt Macy * re-purposed as a performance optimization. 1513eda14cbcSMatt Macy */ 1514eda14cbcSMatt Macy if (slots > 1) 1515eda14cbcSMatt Macy dnode_reclaim_slots(dnc, idx + 1, slots - 1); 1516eda14cbcSMatt Macy 1517eda14cbcSMatt Macy dnh = &dnc->dnc_children[idx]; 1518eda14cbcSMatt Macy if (DN_SLOT_IS_PTR(dnh->dnh_dnode)) { 1519eda14cbcSMatt Macy dn = dnh->dnh_dnode; 1520eda14cbcSMatt Macy } else { 1521eda14cbcSMatt Macy dn = dnode_create(os, dn_block + idx, db, 1522eda14cbcSMatt Macy object, dnh); 1523eda14cbcSMatt Macy } 1524eda14cbcSMatt Macy 1525eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1526eda14cbcSMatt Macy if (!zfs_refcount_is_zero(&dn->dn_holds) || dn->dn_free_txg) { 1527eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_free_refcount); 1528eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1529eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1530eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1531eda14cbcSMatt Macy return (SET_ERROR(EEXIST)); 1532eda14cbcSMatt Macy } 1533eda14cbcSMatt Macy 1534eda14cbcSMatt Macy /* Don't actually hold if dry run, just return 0 */ 1535eda14cbcSMatt Macy if (flag & DNODE_DRY_RUN) { 1536eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1537eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1538eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1539eda14cbcSMatt Macy return (0); 1540eda14cbcSMatt Macy } 1541eda14cbcSMatt Macy 1542eda14cbcSMatt Macy dnode_set_slots(dnc, idx + 1, slots - 1, DN_SLOT_INTERIOR); 1543eda14cbcSMatt Macy DNODE_STAT_BUMP(dnode_hold_free_hits); 1544eda14cbcSMatt Macy } else { 1545eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1546eda14cbcSMatt Macy return (SET_ERROR(EINVAL)); 1547eda14cbcSMatt Macy } 1548eda14cbcSMatt Macy 1549eda14cbcSMatt Macy ASSERT0(dn->dn_free_txg); 1550eda14cbcSMatt Macy 1551eda14cbcSMatt Macy if (zfs_refcount_add(&dn->dn_holds, tag) == 1) 1552eda14cbcSMatt Macy dbuf_add_ref(db, dnh); 1553eda14cbcSMatt Macy 1554eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1555eda14cbcSMatt Macy 1556eda14cbcSMatt Macy /* Now we can rely on the hold to prevent the dnode from moving. */ 1557eda14cbcSMatt Macy dnode_slots_rele(dnc, idx, slots); 1558eda14cbcSMatt Macy 1559eda14cbcSMatt Macy DNODE_VERIFY(dn); 1560eda14cbcSMatt Macy ASSERT3P(dnp, !=, NULL); 1561eda14cbcSMatt Macy ASSERT3P(dn->dn_dbuf, ==, db); 1562eda14cbcSMatt Macy ASSERT3U(dn->dn_object, ==, object); 1563eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1564eda14cbcSMatt Macy 1565eda14cbcSMatt Macy *dnp = dn; 1566eda14cbcSMatt Macy return (0); 1567eda14cbcSMatt Macy } 1568eda14cbcSMatt Macy 1569eda14cbcSMatt Macy /* 1570eda14cbcSMatt Macy * Return held dnode if the object is allocated, NULL if not. 1571eda14cbcSMatt Macy */ 1572eda14cbcSMatt Macy int 1573eda14cbcSMatt Macy dnode_hold(objset_t *os, uint64_t object, void *tag, dnode_t **dnp) 1574eda14cbcSMatt Macy { 1575eda14cbcSMatt Macy return (dnode_hold_impl(os, object, DNODE_MUST_BE_ALLOCATED, 0, tag, 1576eda14cbcSMatt Macy dnp)); 1577eda14cbcSMatt Macy } 1578eda14cbcSMatt Macy 1579eda14cbcSMatt Macy /* 1580eda14cbcSMatt Macy * Can only add a reference if there is already at least one 1581eda14cbcSMatt Macy * reference on the dnode. Returns FALSE if unable to add a 1582eda14cbcSMatt Macy * new reference. 1583eda14cbcSMatt Macy */ 1584eda14cbcSMatt Macy boolean_t 1585eda14cbcSMatt Macy dnode_add_ref(dnode_t *dn, void *tag) 1586eda14cbcSMatt Macy { 1587eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1588eda14cbcSMatt Macy if (zfs_refcount_is_zero(&dn->dn_holds)) { 1589eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1590eda14cbcSMatt Macy return (FALSE); 1591eda14cbcSMatt Macy } 1592eda14cbcSMatt Macy VERIFY(1 < zfs_refcount_add(&dn->dn_holds, tag)); 1593eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1594eda14cbcSMatt Macy return (TRUE); 1595eda14cbcSMatt Macy } 1596eda14cbcSMatt Macy 1597eda14cbcSMatt Macy void 1598eda14cbcSMatt Macy dnode_rele(dnode_t *dn, void *tag) 1599eda14cbcSMatt Macy { 1600eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1601eda14cbcSMatt Macy dnode_rele_and_unlock(dn, tag, B_FALSE); 1602eda14cbcSMatt Macy } 1603eda14cbcSMatt Macy 1604eda14cbcSMatt Macy void 1605eda14cbcSMatt Macy dnode_rele_and_unlock(dnode_t *dn, void *tag, boolean_t evicting) 1606eda14cbcSMatt Macy { 1607eda14cbcSMatt Macy uint64_t refs; 1608eda14cbcSMatt Macy /* Get while the hold prevents the dnode from moving. */ 1609eda14cbcSMatt Macy dmu_buf_impl_t *db = dn->dn_dbuf; 1610eda14cbcSMatt Macy dnode_handle_t *dnh = dn->dn_handle; 1611eda14cbcSMatt Macy 1612eda14cbcSMatt Macy refs = zfs_refcount_remove(&dn->dn_holds, tag); 1613eda14cbcSMatt Macy if (refs == 0) 1614eda14cbcSMatt Macy cv_broadcast(&dn->dn_nodnholds); 1615eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1616eda14cbcSMatt Macy /* dnode could get destroyed at this point, so don't use it anymore */ 1617eda14cbcSMatt Macy 1618eda14cbcSMatt Macy /* 1619eda14cbcSMatt Macy * It's unsafe to release the last hold on a dnode by dnode_rele() or 1620eda14cbcSMatt Macy * indirectly by dbuf_rele() while relying on the dnode handle to 1621eda14cbcSMatt Macy * prevent the dnode from moving, since releasing the last hold could 1622eda14cbcSMatt Macy * result in the dnode's parent dbuf evicting its dnode handles. For 1623eda14cbcSMatt Macy * that reason anyone calling dnode_rele() or dbuf_rele() without some 1624eda14cbcSMatt Macy * other direct or indirect hold on the dnode must first drop the dnode 1625eda14cbcSMatt Macy * handle. 1626eda14cbcSMatt Macy */ 1627eda14cbcSMatt Macy ASSERT(refs > 0 || dnh->dnh_zrlock.zr_owner != curthread); 1628eda14cbcSMatt Macy 1629eda14cbcSMatt Macy /* NOTE: the DNODE_DNODE does not have a dn_dbuf */ 1630eda14cbcSMatt Macy if (refs == 0 && db != NULL) { 1631eda14cbcSMatt Macy /* 1632eda14cbcSMatt Macy * Another thread could add a hold to the dnode handle in 1633eda14cbcSMatt Macy * dnode_hold_impl() while holding the parent dbuf. Since the 1634eda14cbcSMatt Macy * hold on the parent dbuf prevents the handle from being 1635eda14cbcSMatt Macy * destroyed, the hold on the handle is OK. We can't yet assert 1636eda14cbcSMatt Macy * that the handle has zero references, but that will be 1637eda14cbcSMatt Macy * asserted anyway when the handle gets destroyed. 1638eda14cbcSMatt Macy */ 1639eda14cbcSMatt Macy mutex_enter(&db->db_mtx); 1640eda14cbcSMatt Macy dbuf_rele_and_unlock(db, dnh, evicting); 1641eda14cbcSMatt Macy } 1642eda14cbcSMatt Macy } 1643eda14cbcSMatt Macy 1644eda14cbcSMatt Macy /* 1645eda14cbcSMatt Macy * Test whether we can create a dnode at the specified location. 1646eda14cbcSMatt Macy */ 1647eda14cbcSMatt Macy int 1648eda14cbcSMatt Macy dnode_try_claim(objset_t *os, uint64_t object, int slots) 1649eda14cbcSMatt Macy { 1650eda14cbcSMatt Macy return (dnode_hold_impl(os, object, DNODE_MUST_BE_FREE | DNODE_DRY_RUN, 1651eda14cbcSMatt Macy slots, NULL, NULL)); 1652eda14cbcSMatt Macy } 1653eda14cbcSMatt Macy 1654eda14cbcSMatt Macy void 1655eda14cbcSMatt Macy dnode_setdirty(dnode_t *dn, dmu_tx_t *tx) 1656eda14cbcSMatt Macy { 1657eda14cbcSMatt Macy objset_t *os = dn->dn_objset; 1658eda14cbcSMatt Macy uint64_t txg = tx->tx_txg; 1659eda14cbcSMatt Macy 1660eda14cbcSMatt Macy if (DMU_OBJECT_IS_SPECIAL(dn->dn_object)) { 1661eda14cbcSMatt Macy dsl_dataset_dirty(os->os_dsl_dataset, tx); 1662eda14cbcSMatt Macy return; 1663eda14cbcSMatt Macy } 1664eda14cbcSMatt Macy 1665eda14cbcSMatt Macy DNODE_VERIFY(dn); 1666eda14cbcSMatt Macy 1667eda14cbcSMatt Macy #ifdef ZFS_DEBUG 1668eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1669eda14cbcSMatt Macy ASSERT(dn->dn_phys->dn_type || dn->dn_allocated_txg); 1670eda14cbcSMatt Macy ASSERT(dn->dn_free_txg == 0 || dn->dn_free_txg >= txg); 1671eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1672eda14cbcSMatt Macy #endif 1673eda14cbcSMatt Macy 1674eda14cbcSMatt Macy /* 1675eda14cbcSMatt Macy * Determine old uid/gid when necessary 1676eda14cbcSMatt Macy */ 1677eda14cbcSMatt Macy dmu_objset_userquota_get_ids(dn, B_TRUE, tx); 1678eda14cbcSMatt Macy 1679eda14cbcSMatt Macy multilist_t *dirtylist = os->os_dirty_dnodes[txg & TXG_MASK]; 1680eda14cbcSMatt Macy multilist_sublist_t *mls = multilist_sublist_lock_obj(dirtylist, dn); 1681eda14cbcSMatt Macy 1682eda14cbcSMatt Macy /* 1683eda14cbcSMatt Macy * If we are already marked dirty, we're done. 1684eda14cbcSMatt Macy */ 1685eda14cbcSMatt Macy if (multilist_link_active(&dn->dn_dirty_link[txg & TXG_MASK])) { 1686eda14cbcSMatt Macy multilist_sublist_unlock(mls); 1687eda14cbcSMatt Macy return; 1688eda14cbcSMatt Macy } 1689eda14cbcSMatt Macy 1690eda14cbcSMatt Macy ASSERT(!zfs_refcount_is_zero(&dn->dn_holds) || 1691eda14cbcSMatt Macy !avl_is_empty(&dn->dn_dbufs)); 1692eda14cbcSMatt Macy ASSERT(dn->dn_datablksz != 0); 1693eda14cbcSMatt Macy ASSERT0(dn->dn_next_bonuslen[txg & TXG_MASK]); 1694eda14cbcSMatt Macy ASSERT0(dn->dn_next_blksz[txg & TXG_MASK]); 1695eda14cbcSMatt Macy ASSERT0(dn->dn_next_bonustype[txg & TXG_MASK]); 1696eda14cbcSMatt Macy 1697eda14cbcSMatt Macy dprintf_ds(os->os_dsl_dataset, "obj=%llu txg=%llu\n", 1698eda14cbcSMatt Macy dn->dn_object, txg); 1699eda14cbcSMatt Macy 1700eda14cbcSMatt Macy multilist_sublist_insert_head(mls, dn); 1701eda14cbcSMatt Macy 1702eda14cbcSMatt Macy multilist_sublist_unlock(mls); 1703eda14cbcSMatt Macy 1704eda14cbcSMatt Macy /* 1705eda14cbcSMatt Macy * The dnode maintains a hold on its containing dbuf as 1706eda14cbcSMatt Macy * long as there are holds on it. Each instantiated child 1707eda14cbcSMatt Macy * dbuf maintains a hold on the dnode. When the last child 1708eda14cbcSMatt Macy * drops its hold, the dnode will drop its hold on the 1709eda14cbcSMatt Macy * containing dbuf. We add a "dirty hold" here so that the 1710eda14cbcSMatt Macy * dnode will hang around after we finish processing its 1711eda14cbcSMatt Macy * children. 1712eda14cbcSMatt Macy */ 1713eda14cbcSMatt Macy VERIFY(dnode_add_ref(dn, (void *)(uintptr_t)tx->tx_txg)); 1714eda14cbcSMatt Macy 1715eda14cbcSMatt Macy (void) dbuf_dirty(dn->dn_dbuf, tx); 1716eda14cbcSMatt Macy 1717eda14cbcSMatt Macy dsl_dataset_dirty(os->os_dsl_dataset, tx); 1718eda14cbcSMatt Macy } 1719eda14cbcSMatt Macy 1720eda14cbcSMatt Macy void 1721eda14cbcSMatt Macy dnode_free(dnode_t *dn, dmu_tx_t *tx) 1722eda14cbcSMatt Macy { 1723eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1724eda14cbcSMatt Macy if (dn->dn_type == DMU_OT_NONE || dn->dn_free_txg) { 1725eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1726eda14cbcSMatt Macy return; 1727eda14cbcSMatt Macy } 1728eda14cbcSMatt Macy dn->dn_free_txg = tx->tx_txg; 1729eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1730eda14cbcSMatt Macy 1731eda14cbcSMatt Macy dnode_setdirty(dn, tx); 1732eda14cbcSMatt Macy } 1733eda14cbcSMatt Macy 1734eda14cbcSMatt Macy /* 1735eda14cbcSMatt Macy * Try to change the block size for the indicated dnode. This can only 1736eda14cbcSMatt Macy * succeed if there are no blocks allocated or dirty beyond first block 1737eda14cbcSMatt Macy */ 1738eda14cbcSMatt Macy int 1739eda14cbcSMatt Macy dnode_set_blksz(dnode_t *dn, uint64_t size, int ibs, dmu_tx_t *tx) 1740eda14cbcSMatt Macy { 1741eda14cbcSMatt Macy dmu_buf_impl_t *db; 1742eda14cbcSMatt Macy int err; 1743eda14cbcSMatt Macy 1744eda14cbcSMatt Macy ASSERT3U(size, <=, spa_maxblocksize(dmu_objset_spa(dn->dn_objset))); 1745eda14cbcSMatt Macy if (size == 0) 1746eda14cbcSMatt Macy size = SPA_MINBLOCKSIZE; 1747eda14cbcSMatt Macy else 1748eda14cbcSMatt Macy size = P2ROUNDUP(size, SPA_MINBLOCKSIZE); 1749eda14cbcSMatt Macy 1750eda14cbcSMatt Macy if (ibs == dn->dn_indblkshift) 1751eda14cbcSMatt Macy ibs = 0; 1752eda14cbcSMatt Macy 1753eda14cbcSMatt Macy if (size >> SPA_MINBLOCKSHIFT == dn->dn_datablkszsec && ibs == 0) 1754eda14cbcSMatt Macy return (0); 1755eda14cbcSMatt Macy 1756eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_WRITER); 1757eda14cbcSMatt Macy 1758eda14cbcSMatt Macy /* Check for any allocated blocks beyond the first */ 1759eda14cbcSMatt Macy if (dn->dn_maxblkid != 0) 1760eda14cbcSMatt Macy goto fail; 1761eda14cbcSMatt Macy 1762eda14cbcSMatt Macy mutex_enter(&dn->dn_dbufs_mtx); 1763eda14cbcSMatt Macy for (db = avl_first(&dn->dn_dbufs); db != NULL; 1764eda14cbcSMatt Macy db = AVL_NEXT(&dn->dn_dbufs, db)) { 1765eda14cbcSMatt Macy if (db->db_blkid != 0 && db->db_blkid != DMU_BONUS_BLKID && 1766eda14cbcSMatt Macy db->db_blkid != DMU_SPILL_BLKID) { 1767eda14cbcSMatt Macy mutex_exit(&dn->dn_dbufs_mtx); 1768eda14cbcSMatt Macy goto fail; 1769eda14cbcSMatt Macy } 1770eda14cbcSMatt Macy } 1771eda14cbcSMatt Macy mutex_exit(&dn->dn_dbufs_mtx); 1772eda14cbcSMatt Macy 1773eda14cbcSMatt Macy if (ibs && dn->dn_nlevels != 1) 1774eda14cbcSMatt Macy goto fail; 1775eda14cbcSMatt Macy 1776eda14cbcSMatt Macy /* resize the old block */ 1777eda14cbcSMatt Macy err = dbuf_hold_impl(dn, 0, 0, TRUE, FALSE, FTAG, &db); 1778eda14cbcSMatt Macy if (err == 0) { 1779eda14cbcSMatt Macy dbuf_new_size(db, size, tx); 1780eda14cbcSMatt Macy } else if (err != ENOENT) { 1781eda14cbcSMatt Macy goto fail; 1782eda14cbcSMatt Macy } 1783eda14cbcSMatt Macy 1784eda14cbcSMatt Macy dnode_setdblksz(dn, size); 1785eda14cbcSMatt Macy dnode_setdirty(dn, tx); 1786eda14cbcSMatt Macy dn->dn_next_blksz[tx->tx_txg&TXG_MASK] = size; 1787eda14cbcSMatt Macy if (ibs) { 1788eda14cbcSMatt Macy dn->dn_indblkshift = ibs; 1789eda14cbcSMatt Macy dn->dn_next_indblkshift[tx->tx_txg&TXG_MASK] = ibs; 1790eda14cbcSMatt Macy } 1791eda14cbcSMatt Macy /* release after we have fixed the blocksize in the dnode */ 1792eda14cbcSMatt Macy if (db) 1793eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1794eda14cbcSMatt Macy 1795eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 1796eda14cbcSMatt Macy return (0); 1797eda14cbcSMatt Macy 1798eda14cbcSMatt Macy fail: 1799eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 1800eda14cbcSMatt Macy return (SET_ERROR(ENOTSUP)); 1801eda14cbcSMatt Macy } 1802eda14cbcSMatt Macy 1803eda14cbcSMatt Macy static void 1804eda14cbcSMatt Macy dnode_set_nlevels_impl(dnode_t *dn, int new_nlevels, dmu_tx_t *tx) 1805eda14cbcSMatt Macy { 1806eda14cbcSMatt Macy uint64_t txgoff = tx->tx_txg & TXG_MASK; 1807eda14cbcSMatt Macy int old_nlevels = dn->dn_nlevels; 1808eda14cbcSMatt Macy dmu_buf_impl_t *db; 1809eda14cbcSMatt Macy list_t *list; 1810eda14cbcSMatt Macy dbuf_dirty_record_t *new, *dr, *dr_next; 1811eda14cbcSMatt Macy 1812eda14cbcSMatt Macy ASSERT(RW_WRITE_HELD(&dn->dn_struct_rwlock)); 1813eda14cbcSMatt Macy 1814eda14cbcSMatt Macy dn->dn_nlevels = new_nlevels; 1815eda14cbcSMatt Macy 1816eda14cbcSMatt Macy ASSERT3U(new_nlevels, >, dn->dn_next_nlevels[txgoff]); 1817eda14cbcSMatt Macy dn->dn_next_nlevels[txgoff] = new_nlevels; 1818eda14cbcSMatt Macy 1819eda14cbcSMatt Macy /* dirty the left indirects */ 1820eda14cbcSMatt Macy db = dbuf_hold_level(dn, old_nlevels, 0, FTAG); 1821eda14cbcSMatt Macy ASSERT(db != NULL); 1822eda14cbcSMatt Macy new = dbuf_dirty(db, tx); 1823eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1824eda14cbcSMatt Macy 1825eda14cbcSMatt Macy /* transfer the dirty records to the new indirect */ 1826eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 1827eda14cbcSMatt Macy mutex_enter(&new->dt.di.dr_mtx); 1828eda14cbcSMatt Macy list = &dn->dn_dirty_records[txgoff]; 1829eda14cbcSMatt Macy for (dr = list_head(list); dr; dr = dr_next) { 1830eda14cbcSMatt Macy dr_next = list_next(&dn->dn_dirty_records[txgoff], dr); 1831eda14cbcSMatt Macy if (dr->dr_dbuf->db_level != new_nlevels-1 && 1832eda14cbcSMatt Macy dr->dr_dbuf->db_blkid != DMU_BONUS_BLKID && 1833eda14cbcSMatt Macy dr->dr_dbuf->db_blkid != DMU_SPILL_BLKID) { 1834eda14cbcSMatt Macy ASSERT(dr->dr_dbuf->db_level == old_nlevels-1); 1835eda14cbcSMatt Macy list_remove(&dn->dn_dirty_records[txgoff], dr); 1836eda14cbcSMatt Macy list_insert_tail(&new->dt.di.dr_children, dr); 1837eda14cbcSMatt Macy dr->dr_parent = new; 1838eda14cbcSMatt Macy } 1839eda14cbcSMatt Macy } 1840eda14cbcSMatt Macy mutex_exit(&new->dt.di.dr_mtx); 1841eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 1842eda14cbcSMatt Macy } 1843eda14cbcSMatt Macy 1844eda14cbcSMatt Macy int 1845eda14cbcSMatt Macy dnode_set_nlevels(dnode_t *dn, int nlevels, dmu_tx_t *tx) 1846eda14cbcSMatt Macy { 1847eda14cbcSMatt Macy int ret = 0; 1848eda14cbcSMatt Macy 1849eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_WRITER); 1850eda14cbcSMatt Macy 1851eda14cbcSMatt Macy if (dn->dn_nlevels == nlevels) { 1852eda14cbcSMatt Macy ret = 0; 1853eda14cbcSMatt Macy goto out; 1854eda14cbcSMatt Macy } else if (nlevels < dn->dn_nlevels) { 1855eda14cbcSMatt Macy ret = SET_ERROR(EINVAL); 1856eda14cbcSMatt Macy goto out; 1857eda14cbcSMatt Macy } 1858eda14cbcSMatt Macy 1859eda14cbcSMatt Macy dnode_set_nlevels_impl(dn, nlevels, tx); 1860eda14cbcSMatt Macy 1861eda14cbcSMatt Macy out: 1862eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 1863eda14cbcSMatt Macy return (ret); 1864eda14cbcSMatt Macy } 1865eda14cbcSMatt Macy 1866eda14cbcSMatt Macy /* read-holding callers must not rely on the lock being continuously held */ 1867eda14cbcSMatt Macy void 1868eda14cbcSMatt Macy dnode_new_blkid(dnode_t *dn, uint64_t blkid, dmu_tx_t *tx, boolean_t have_read, 1869eda14cbcSMatt Macy boolean_t force) 1870eda14cbcSMatt Macy { 1871eda14cbcSMatt Macy int epbs, new_nlevels; 1872eda14cbcSMatt Macy uint64_t sz; 1873eda14cbcSMatt Macy 1874eda14cbcSMatt Macy ASSERT(blkid != DMU_BONUS_BLKID); 1875eda14cbcSMatt Macy 1876eda14cbcSMatt Macy ASSERT(have_read ? 1877eda14cbcSMatt Macy RW_READ_HELD(&dn->dn_struct_rwlock) : 1878eda14cbcSMatt Macy RW_WRITE_HELD(&dn->dn_struct_rwlock)); 1879eda14cbcSMatt Macy 1880eda14cbcSMatt Macy /* 1881eda14cbcSMatt Macy * if we have a read-lock, check to see if we need to do any work 1882eda14cbcSMatt Macy * before upgrading to a write-lock. 1883eda14cbcSMatt Macy */ 1884eda14cbcSMatt Macy if (have_read) { 1885eda14cbcSMatt Macy if (blkid <= dn->dn_maxblkid) 1886eda14cbcSMatt Macy return; 1887eda14cbcSMatt Macy 1888eda14cbcSMatt Macy if (!rw_tryupgrade(&dn->dn_struct_rwlock)) { 1889eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 1890eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_WRITER); 1891eda14cbcSMatt Macy } 1892eda14cbcSMatt Macy } 1893eda14cbcSMatt Macy 1894eda14cbcSMatt Macy /* 1895eda14cbcSMatt Macy * Raw sends (indicated by the force flag) require that we take the 1896eda14cbcSMatt Macy * given blkid even if the value is lower than the current value. 1897eda14cbcSMatt Macy */ 1898eda14cbcSMatt Macy if (!force && blkid <= dn->dn_maxblkid) 1899eda14cbcSMatt Macy goto out; 1900eda14cbcSMatt Macy 1901eda14cbcSMatt Macy /* 1902eda14cbcSMatt Macy * We use the (otherwise unused) top bit of dn_next_maxblkid[txgoff] 1903eda14cbcSMatt Macy * to indicate that this field is set. This allows us to set the 1904eda14cbcSMatt Macy * maxblkid to 0 on an existing object in dnode_sync(). 1905eda14cbcSMatt Macy */ 1906eda14cbcSMatt Macy dn->dn_maxblkid = blkid; 1907eda14cbcSMatt Macy dn->dn_next_maxblkid[tx->tx_txg & TXG_MASK] = 1908eda14cbcSMatt Macy blkid | DMU_NEXT_MAXBLKID_SET; 1909eda14cbcSMatt Macy 1910eda14cbcSMatt Macy /* 1911eda14cbcSMatt Macy * Compute the number of levels necessary to support the new maxblkid. 1912eda14cbcSMatt Macy * Raw sends will ensure nlevels is set correctly for us. 1913eda14cbcSMatt Macy */ 1914eda14cbcSMatt Macy new_nlevels = 1; 1915eda14cbcSMatt Macy epbs = dn->dn_indblkshift - SPA_BLKPTRSHIFT; 1916eda14cbcSMatt Macy for (sz = dn->dn_nblkptr; 1917eda14cbcSMatt Macy sz <= blkid && sz >= dn->dn_nblkptr; sz <<= epbs) 1918eda14cbcSMatt Macy new_nlevels++; 1919eda14cbcSMatt Macy 1920eda14cbcSMatt Macy ASSERT3U(new_nlevels, <=, DN_MAX_LEVELS); 1921eda14cbcSMatt Macy 1922eda14cbcSMatt Macy if (!force) { 1923eda14cbcSMatt Macy if (new_nlevels > dn->dn_nlevels) 1924eda14cbcSMatt Macy dnode_set_nlevels_impl(dn, new_nlevels, tx); 1925eda14cbcSMatt Macy } else { 1926eda14cbcSMatt Macy ASSERT3U(dn->dn_nlevels, >=, new_nlevels); 1927eda14cbcSMatt Macy } 1928eda14cbcSMatt Macy 1929eda14cbcSMatt Macy out: 1930eda14cbcSMatt Macy if (have_read) 1931eda14cbcSMatt Macy rw_downgrade(&dn->dn_struct_rwlock); 1932eda14cbcSMatt Macy } 1933eda14cbcSMatt Macy 1934eda14cbcSMatt Macy static void 1935eda14cbcSMatt Macy dnode_dirty_l1(dnode_t *dn, uint64_t l1blkid, dmu_tx_t *tx) 1936eda14cbcSMatt Macy { 1937eda14cbcSMatt Macy dmu_buf_impl_t *db = dbuf_hold_level(dn, 1, l1blkid, FTAG); 1938eda14cbcSMatt Macy if (db != NULL) { 1939eda14cbcSMatt Macy dmu_buf_will_dirty(&db->db, tx); 1940eda14cbcSMatt Macy dbuf_rele(db, FTAG); 1941eda14cbcSMatt Macy } 1942eda14cbcSMatt Macy } 1943eda14cbcSMatt Macy 1944eda14cbcSMatt Macy /* 1945eda14cbcSMatt Macy * Dirty all the in-core level-1 dbufs in the range specified by start_blkid 1946eda14cbcSMatt Macy * and end_blkid. 1947eda14cbcSMatt Macy */ 1948eda14cbcSMatt Macy static void 1949eda14cbcSMatt Macy dnode_dirty_l1range(dnode_t *dn, uint64_t start_blkid, uint64_t end_blkid, 1950eda14cbcSMatt Macy dmu_tx_t *tx) 1951eda14cbcSMatt Macy { 1952*2c48331dSMatt Macy dmu_buf_impl_t *db_search; 1953eda14cbcSMatt Macy dmu_buf_impl_t *db; 1954eda14cbcSMatt Macy avl_index_t where; 1955eda14cbcSMatt Macy 1956*2c48331dSMatt Macy db_search = kmem_zalloc(sizeof (dmu_buf_impl_t), KM_SLEEP); 1957*2c48331dSMatt Macy 1958eda14cbcSMatt Macy mutex_enter(&dn->dn_dbufs_mtx); 1959eda14cbcSMatt Macy 1960*2c48331dSMatt Macy db_search->db_level = 1; 1961*2c48331dSMatt Macy db_search->db_blkid = start_blkid + 1; 1962*2c48331dSMatt Macy db_search->db_state = DB_SEARCH; 1963eda14cbcSMatt Macy for (;;) { 1964eda14cbcSMatt Macy 1965*2c48331dSMatt Macy db = avl_find(&dn->dn_dbufs, db_search, &where); 1966eda14cbcSMatt Macy if (db == NULL) 1967eda14cbcSMatt Macy db = avl_nearest(&dn->dn_dbufs, where, AVL_AFTER); 1968eda14cbcSMatt Macy 1969eda14cbcSMatt Macy if (db == NULL || db->db_level != 1 || 1970eda14cbcSMatt Macy db->db_blkid >= end_blkid) { 1971eda14cbcSMatt Macy break; 1972eda14cbcSMatt Macy } 1973eda14cbcSMatt Macy 1974eda14cbcSMatt Macy /* 1975eda14cbcSMatt Macy * Setup the next blkid we want to search for. 1976eda14cbcSMatt Macy */ 1977*2c48331dSMatt Macy db_search->db_blkid = db->db_blkid + 1; 1978eda14cbcSMatt Macy ASSERT3U(db->db_blkid, >=, start_blkid); 1979eda14cbcSMatt Macy 1980eda14cbcSMatt Macy /* 1981eda14cbcSMatt Macy * If the dbuf transitions to DB_EVICTING while we're trying 1982eda14cbcSMatt Macy * to dirty it, then we will be unable to discover it in 1983eda14cbcSMatt Macy * the dbuf hash table. This will result in a call to 1984eda14cbcSMatt Macy * dbuf_create() which needs to acquire the dn_dbufs_mtx 1985eda14cbcSMatt Macy * lock. To avoid a deadlock, we drop the lock before 1986eda14cbcSMatt Macy * dirtying the level-1 dbuf. 1987eda14cbcSMatt Macy */ 1988eda14cbcSMatt Macy mutex_exit(&dn->dn_dbufs_mtx); 1989eda14cbcSMatt Macy dnode_dirty_l1(dn, db->db_blkid, tx); 1990eda14cbcSMatt Macy mutex_enter(&dn->dn_dbufs_mtx); 1991eda14cbcSMatt Macy } 1992eda14cbcSMatt Macy 1993eda14cbcSMatt Macy #ifdef ZFS_DEBUG 1994eda14cbcSMatt Macy /* 1995eda14cbcSMatt Macy * Walk all the in-core level-1 dbufs and verify they have been dirtied. 1996eda14cbcSMatt Macy */ 1997*2c48331dSMatt Macy db_search->db_level = 1; 1998*2c48331dSMatt Macy db_search->db_blkid = start_blkid + 1; 1999*2c48331dSMatt Macy db_search->db_state = DB_SEARCH; 2000*2c48331dSMatt Macy db = avl_find(&dn->dn_dbufs, db_search, &where); 2001eda14cbcSMatt Macy if (db == NULL) 2002eda14cbcSMatt Macy db = avl_nearest(&dn->dn_dbufs, where, AVL_AFTER); 2003eda14cbcSMatt Macy for (; db != NULL; db = AVL_NEXT(&dn->dn_dbufs, db)) { 2004eda14cbcSMatt Macy if (db->db_level != 1 || db->db_blkid >= end_blkid) 2005eda14cbcSMatt Macy break; 2006eda14cbcSMatt Macy if (db->db_state != DB_EVICTING) 2007eda14cbcSMatt Macy ASSERT(db->db_dirtycnt > 0); 2008eda14cbcSMatt Macy } 2009eda14cbcSMatt Macy #endif 2010*2c48331dSMatt Macy kmem_free(db_search, sizeof (dmu_buf_impl_t)); 2011eda14cbcSMatt Macy mutex_exit(&dn->dn_dbufs_mtx); 2012eda14cbcSMatt Macy } 2013eda14cbcSMatt Macy 2014eda14cbcSMatt Macy void 2015eda14cbcSMatt Macy dnode_set_dirtyctx(dnode_t *dn, dmu_tx_t *tx, void *tag) 2016eda14cbcSMatt Macy { 2017eda14cbcSMatt Macy /* 2018eda14cbcSMatt Macy * Don't set dirtyctx to SYNC if we're just modifying this as we 2019eda14cbcSMatt Macy * initialize the objset. 2020eda14cbcSMatt Macy */ 2021eda14cbcSMatt Macy if (dn->dn_dirtyctx == DN_UNDIRTIED) { 2022eda14cbcSMatt Macy dsl_dataset_t *ds = dn->dn_objset->os_dsl_dataset; 2023eda14cbcSMatt Macy 2024eda14cbcSMatt Macy if (ds != NULL) { 2025eda14cbcSMatt Macy rrw_enter(&ds->ds_bp_rwlock, RW_READER, tag); 2026eda14cbcSMatt Macy } 2027eda14cbcSMatt Macy if (!BP_IS_HOLE(dn->dn_objset->os_rootbp)) { 2028eda14cbcSMatt Macy if (dmu_tx_is_syncing(tx)) 2029eda14cbcSMatt Macy dn->dn_dirtyctx = DN_DIRTY_SYNC; 2030eda14cbcSMatt Macy else 2031eda14cbcSMatt Macy dn->dn_dirtyctx = DN_DIRTY_OPEN; 2032eda14cbcSMatt Macy dn->dn_dirtyctx_firstset = tag; 2033eda14cbcSMatt Macy } 2034eda14cbcSMatt Macy if (ds != NULL) { 2035eda14cbcSMatt Macy rrw_exit(&ds->ds_bp_rwlock, tag); 2036eda14cbcSMatt Macy } 2037eda14cbcSMatt Macy } 2038eda14cbcSMatt Macy } 2039eda14cbcSMatt Macy 2040eda14cbcSMatt Macy void 2041eda14cbcSMatt Macy dnode_free_range(dnode_t *dn, uint64_t off, uint64_t len, dmu_tx_t *tx) 2042eda14cbcSMatt Macy { 2043eda14cbcSMatt Macy dmu_buf_impl_t *db; 2044eda14cbcSMatt Macy uint64_t blkoff, blkid, nblks; 2045eda14cbcSMatt Macy int blksz, blkshift, head, tail; 2046eda14cbcSMatt Macy int trunc = FALSE; 2047eda14cbcSMatt Macy int epbs; 2048eda14cbcSMatt Macy 2049eda14cbcSMatt Macy blksz = dn->dn_datablksz; 2050eda14cbcSMatt Macy blkshift = dn->dn_datablkshift; 2051eda14cbcSMatt Macy epbs = dn->dn_indblkshift - SPA_BLKPTRSHIFT; 2052eda14cbcSMatt Macy 2053eda14cbcSMatt Macy if (len == DMU_OBJECT_END) { 2054eda14cbcSMatt Macy len = UINT64_MAX - off; 2055eda14cbcSMatt Macy trunc = TRUE; 2056eda14cbcSMatt Macy } 2057eda14cbcSMatt Macy 2058eda14cbcSMatt Macy /* 2059eda14cbcSMatt Macy * First, block align the region to free: 2060eda14cbcSMatt Macy */ 2061eda14cbcSMatt Macy if (ISP2(blksz)) { 2062eda14cbcSMatt Macy head = P2NPHASE(off, blksz); 2063eda14cbcSMatt Macy blkoff = P2PHASE(off, blksz); 2064eda14cbcSMatt Macy if ((off >> blkshift) > dn->dn_maxblkid) 2065eda14cbcSMatt Macy return; 2066eda14cbcSMatt Macy } else { 2067eda14cbcSMatt Macy ASSERT(dn->dn_maxblkid == 0); 2068eda14cbcSMatt Macy if (off == 0 && len >= blksz) { 2069eda14cbcSMatt Macy /* 2070eda14cbcSMatt Macy * Freeing the whole block; fast-track this request. 2071eda14cbcSMatt Macy */ 2072eda14cbcSMatt Macy blkid = 0; 2073eda14cbcSMatt Macy nblks = 1; 2074eda14cbcSMatt Macy if (dn->dn_nlevels > 1) { 2075eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_WRITER); 2076eda14cbcSMatt Macy dnode_dirty_l1(dn, 0, tx); 2077eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 2078eda14cbcSMatt Macy } 2079eda14cbcSMatt Macy goto done; 2080eda14cbcSMatt Macy } else if (off >= blksz) { 2081eda14cbcSMatt Macy /* Freeing past end-of-data */ 2082eda14cbcSMatt Macy return; 2083eda14cbcSMatt Macy } else { 2084eda14cbcSMatt Macy /* Freeing part of the block. */ 2085eda14cbcSMatt Macy head = blksz - off; 2086eda14cbcSMatt Macy ASSERT3U(head, >, 0); 2087eda14cbcSMatt Macy } 2088eda14cbcSMatt Macy blkoff = off; 2089eda14cbcSMatt Macy } 2090eda14cbcSMatt Macy /* zero out any partial block data at the start of the range */ 2091eda14cbcSMatt Macy if (head) { 2092eda14cbcSMatt Macy int res; 2093eda14cbcSMatt Macy ASSERT3U(blkoff + head, ==, blksz); 2094eda14cbcSMatt Macy if (len < head) 2095eda14cbcSMatt Macy head = len; 2096eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_READER); 2097eda14cbcSMatt Macy res = dbuf_hold_impl(dn, 0, dbuf_whichblock(dn, 0, off), 2098eda14cbcSMatt Macy TRUE, FALSE, FTAG, &db); 2099eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 2100eda14cbcSMatt Macy if (res == 0) { 2101eda14cbcSMatt Macy caddr_t data; 2102eda14cbcSMatt Macy boolean_t dirty; 2103eda14cbcSMatt Macy 2104eda14cbcSMatt Macy db_lock_type_t dblt = dmu_buf_lock_parent(db, RW_READER, 2105eda14cbcSMatt Macy FTAG); 2106eda14cbcSMatt Macy /* don't dirty if it isn't on disk and isn't dirty */ 2107eda14cbcSMatt Macy dirty = !list_is_empty(&db->db_dirty_records) || 2108eda14cbcSMatt Macy (db->db_blkptr && !BP_IS_HOLE(db->db_blkptr)); 2109eda14cbcSMatt Macy dmu_buf_unlock_parent(db, dblt, FTAG); 2110eda14cbcSMatt Macy if (dirty) { 2111eda14cbcSMatt Macy dmu_buf_will_dirty(&db->db, tx); 2112eda14cbcSMatt Macy data = db->db.db_data; 2113eda14cbcSMatt Macy bzero(data + blkoff, head); 2114eda14cbcSMatt Macy } 2115eda14cbcSMatt Macy dbuf_rele(db, FTAG); 2116eda14cbcSMatt Macy } 2117eda14cbcSMatt Macy off += head; 2118eda14cbcSMatt Macy len -= head; 2119eda14cbcSMatt Macy } 2120eda14cbcSMatt Macy 2121eda14cbcSMatt Macy /* If the range was less than one block, we're done */ 2122eda14cbcSMatt Macy if (len == 0) 2123eda14cbcSMatt Macy return; 2124eda14cbcSMatt Macy 2125eda14cbcSMatt Macy /* If the remaining range is past end of file, we're done */ 2126eda14cbcSMatt Macy if ((off >> blkshift) > dn->dn_maxblkid) 2127eda14cbcSMatt Macy return; 2128eda14cbcSMatt Macy 2129eda14cbcSMatt Macy ASSERT(ISP2(blksz)); 2130eda14cbcSMatt Macy if (trunc) 2131eda14cbcSMatt Macy tail = 0; 2132eda14cbcSMatt Macy else 2133eda14cbcSMatt Macy tail = P2PHASE(len, blksz); 2134eda14cbcSMatt Macy 2135eda14cbcSMatt Macy ASSERT0(P2PHASE(off, blksz)); 2136eda14cbcSMatt Macy /* zero out any partial block data at the end of the range */ 2137eda14cbcSMatt Macy if (tail) { 2138eda14cbcSMatt Macy int res; 2139eda14cbcSMatt Macy if (len < tail) 2140eda14cbcSMatt Macy tail = len; 2141eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_READER); 2142eda14cbcSMatt Macy res = dbuf_hold_impl(dn, 0, dbuf_whichblock(dn, 0, off+len), 2143eda14cbcSMatt Macy TRUE, FALSE, FTAG, &db); 2144eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 2145eda14cbcSMatt Macy if (res == 0) { 2146eda14cbcSMatt Macy boolean_t dirty; 2147eda14cbcSMatt Macy /* don't dirty if not on disk and not dirty */ 2148eda14cbcSMatt Macy db_lock_type_t type = dmu_buf_lock_parent(db, RW_READER, 2149eda14cbcSMatt Macy FTAG); 2150eda14cbcSMatt Macy dirty = !list_is_empty(&db->db_dirty_records) || 2151eda14cbcSMatt Macy (db->db_blkptr && !BP_IS_HOLE(db->db_blkptr)); 2152eda14cbcSMatt Macy dmu_buf_unlock_parent(db, type, FTAG); 2153eda14cbcSMatt Macy if (dirty) { 2154eda14cbcSMatt Macy dmu_buf_will_dirty(&db->db, tx); 2155eda14cbcSMatt Macy bzero(db->db.db_data, tail); 2156eda14cbcSMatt Macy } 2157eda14cbcSMatt Macy dbuf_rele(db, FTAG); 2158eda14cbcSMatt Macy } 2159eda14cbcSMatt Macy len -= tail; 2160eda14cbcSMatt Macy } 2161eda14cbcSMatt Macy 2162eda14cbcSMatt Macy /* If the range did not include a full block, we are done */ 2163eda14cbcSMatt Macy if (len == 0) 2164eda14cbcSMatt Macy return; 2165eda14cbcSMatt Macy 2166eda14cbcSMatt Macy ASSERT(IS_P2ALIGNED(off, blksz)); 2167eda14cbcSMatt Macy ASSERT(trunc || IS_P2ALIGNED(len, blksz)); 2168eda14cbcSMatt Macy blkid = off >> blkshift; 2169eda14cbcSMatt Macy nblks = len >> blkshift; 2170eda14cbcSMatt Macy if (trunc) 2171eda14cbcSMatt Macy nblks += 1; 2172eda14cbcSMatt Macy 2173eda14cbcSMatt Macy /* 2174eda14cbcSMatt Macy * Dirty all the indirect blocks in this range. Note that only 2175eda14cbcSMatt Macy * the first and last indirect blocks can actually be written 2176eda14cbcSMatt Macy * (if they were partially freed) -- they must be dirtied, even if 2177eda14cbcSMatt Macy * they do not exist on disk yet. The interior blocks will 2178eda14cbcSMatt Macy * be freed by free_children(), so they will not actually be written. 2179eda14cbcSMatt Macy * Even though these interior blocks will not be written, we 2180eda14cbcSMatt Macy * dirty them for two reasons: 2181eda14cbcSMatt Macy * 2182eda14cbcSMatt Macy * - It ensures that the indirect blocks remain in memory until 2183eda14cbcSMatt Macy * syncing context. (They have already been prefetched by 2184eda14cbcSMatt Macy * dmu_tx_hold_free(), so we don't have to worry about reading 2185eda14cbcSMatt Macy * them serially here.) 2186eda14cbcSMatt Macy * 2187eda14cbcSMatt Macy * - The dirty space accounting will put pressure on the txg sync 2188eda14cbcSMatt Macy * mechanism to begin syncing, and to delay transactions if there 2189eda14cbcSMatt Macy * is a large amount of freeing. Even though these indirect 2190eda14cbcSMatt Macy * blocks will not be written, we could need to write the same 2191eda14cbcSMatt Macy * amount of space if we copy the freed BPs into deadlists. 2192eda14cbcSMatt Macy */ 2193eda14cbcSMatt Macy if (dn->dn_nlevels > 1) { 2194eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_WRITER); 2195eda14cbcSMatt Macy uint64_t first, last; 2196eda14cbcSMatt Macy 2197eda14cbcSMatt Macy first = blkid >> epbs; 2198eda14cbcSMatt Macy dnode_dirty_l1(dn, first, tx); 2199eda14cbcSMatt Macy if (trunc) 2200eda14cbcSMatt Macy last = dn->dn_maxblkid >> epbs; 2201eda14cbcSMatt Macy else 2202eda14cbcSMatt Macy last = (blkid + nblks - 1) >> epbs; 2203eda14cbcSMatt Macy if (last != first) 2204eda14cbcSMatt Macy dnode_dirty_l1(dn, last, tx); 2205eda14cbcSMatt Macy 2206eda14cbcSMatt Macy dnode_dirty_l1range(dn, first, last, tx); 2207eda14cbcSMatt Macy 2208eda14cbcSMatt Macy int shift = dn->dn_datablkshift + dn->dn_indblkshift - 2209eda14cbcSMatt Macy SPA_BLKPTRSHIFT; 2210eda14cbcSMatt Macy for (uint64_t i = first + 1; i < last; i++) { 2211eda14cbcSMatt Macy /* 2212eda14cbcSMatt Macy * Set i to the blockid of the next non-hole 2213eda14cbcSMatt Macy * level-1 indirect block at or after i. Note 2214eda14cbcSMatt Macy * that dnode_next_offset() operates in terms of 2215eda14cbcSMatt Macy * level-0-equivalent bytes. 2216eda14cbcSMatt Macy */ 2217eda14cbcSMatt Macy uint64_t ibyte = i << shift; 2218eda14cbcSMatt Macy int err = dnode_next_offset(dn, DNODE_FIND_HAVELOCK, 2219eda14cbcSMatt Macy &ibyte, 2, 1, 0); 2220eda14cbcSMatt Macy i = ibyte >> shift; 2221eda14cbcSMatt Macy if (i >= last) 2222eda14cbcSMatt Macy break; 2223eda14cbcSMatt Macy 2224eda14cbcSMatt Macy /* 2225eda14cbcSMatt Macy * Normally we should not see an error, either 2226eda14cbcSMatt Macy * from dnode_next_offset() or dbuf_hold_level() 2227eda14cbcSMatt Macy * (except for ESRCH from dnode_next_offset). 2228eda14cbcSMatt Macy * If there is an i/o error, then when we read 2229eda14cbcSMatt Macy * this block in syncing context, it will use 2230eda14cbcSMatt Macy * ZIO_FLAG_MUSTSUCCEED, and thus hang/panic according 2231eda14cbcSMatt Macy * to the "failmode" property. dnode_next_offset() 2232eda14cbcSMatt Macy * doesn't have a flag to indicate MUSTSUCCEED. 2233eda14cbcSMatt Macy */ 2234eda14cbcSMatt Macy if (err != 0) 2235eda14cbcSMatt Macy break; 2236eda14cbcSMatt Macy 2237eda14cbcSMatt Macy dnode_dirty_l1(dn, i, tx); 2238eda14cbcSMatt Macy } 2239eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 2240eda14cbcSMatt Macy } 2241eda14cbcSMatt Macy 2242eda14cbcSMatt Macy done: 2243eda14cbcSMatt Macy /* 2244eda14cbcSMatt Macy * Add this range to the dnode range list. 2245eda14cbcSMatt Macy * We will finish up this free operation in the syncing phase. 2246eda14cbcSMatt Macy */ 2247eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 2248eda14cbcSMatt Macy { 2249eda14cbcSMatt Macy int txgoff = tx->tx_txg & TXG_MASK; 2250eda14cbcSMatt Macy if (dn->dn_free_ranges[txgoff] == NULL) { 2251eda14cbcSMatt Macy dn->dn_free_ranges[txgoff] = range_tree_create(NULL, 2252eda14cbcSMatt Macy RANGE_SEG64, NULL, 0, 0); 2253eda14cbcSMatt Macy } 2254eda14cbcSMatt Macy range_tree_clear(dn->dn_free_ranges[txgoff], blkid, nblks); 2255eda14cbcSMatt Macy range_tree_add(dn->dn_free_ranges[txgoff], blkid, nblks); 2256eda14cbcSMatt Macy } 2257eda14cbcSMatt Macy dprintf_dnode(dn, "blkid=%llu nblks=%llu txg=%llu\n", 2258eda14cbcSMatt Macy blkid, nblks, tx->tx_txg); 2259eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 2260eda14cbcSMatt Macy 2261eda14cbcSMatt Macy dbuf_free_range(dn, blkid, blkid + nblks - 1, tx); 2262eda14cbcSMatt Macy dnode_setdirty(dn, tx); 2263eda14cbcSMatt Macy } 2264eda14cbcSMatt Macy 2265eda14cbcSMatt Macy static boolean_t 2266eda14cbcSMatt Macy dnode_spill_freed(dnode_t *dn) 2267eda14cbcSMatt Macy { 2268eda14cbcSMatt Macy int i; 2269eda14cbcSMatt Macy 2270eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 2271eda14cbcSMatt Macy for (i = 0; i < TXG_SIZE; i++) { 2272eda14cbcSMatt Macy if (dn->dn_rm_spillblk[i] == DN_KILL_SPILLBLK) 2273eda14cbcSMatt Macy break; 2274eda14cbcSMatt Macy } 2275eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 2276eda14cbcSMatt Macy return (i < TXG_SIZE); 2277eda14cbcSMatt Macy } 2278eda14cbcSMatt Macy 2279eda14cbcSMatt Macy /* return TRUE if this blkid was freed in a recent txg, or FALSE if it wasn't */ 2280eda14cbcSMatt Macy uint64_t 2281eda14cbcSMatt Macy dnode_block_freed(dnode_t *dn, uint64_t blkid) 2282eda14cbcSMatt Macy { 2283eda14cbcSMatt Macy void *dp = spa_get_dsl(dn->dn_objset->os_spa); 2284eda14cbcSMatt Macy int i; 2285eda14cbcSMatt Macy 2286eda14cbcSMatt Macy if (blkid == DMU_BONUS_BLKID) 2287eda14cbcSMatt Macy return (FALSE); 2288eda14cbcSMatt Macy 2289eda14cbcSMatt Macy /* 2290eda14cbcSMatt Macy * If we're in the process of opening the pool, dp will not be 2291eda14cbcSMatt Macy * set yet, but there shouldn't be anything dirty. 2292eda14cbcSMatt Macy */ 2293eda14cbcSMatt Macy if (dp == NULL) 2294eda14cbcSMatt Macy return (FALSE); 2295eda14cbcSMatt Macy 2296eda14cbcSMatt Macy if (dn->dn_free_txg) 2297eda14cbcSMatt Macy return (TRUE); 2298eda14cbcSMatt Macy 2299eda14cbcSMatt Macy if (blkid == DMU_SPILL_BLKID) 2300eda14cbcSMatt Macy return (dnode_spill_freed(dn)); 2301eda14cbcSMatt Macy 2302eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 2303eda14cbcSMatt Macy for (i = 0; i < TXG_SIZE; i++) { 2304eda14cbcSMatt Macy if (dn->dn_free_ranges[i] != NULL && 2305eda14cbcSMatt Macy range_tree_contains(dn->dn_free_ranges[i], blkid, 1)) 2306eda14cbcSMatt Macy break; 2307eda14cbcSMatt Macy } 2308eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 2309eda14cbcSMatt Macy return (i < TXG_SIZE); 2310eda14cbcSMatt Macy } 2311eda14cbcSMatt Macy 2312eda14cbcSMatt Macy /* call from syncing context when we actually write/free space for this dnode */ 2313eda14cbcSMatt Macy void 2314eda14cbcSMatt Macy dnode_diduse_space(dnode_t *dn, int64_t delta) 2315eda14cbcSMatt Macy { 2316eda14cbcSMatt Macy uint64_t space; 2317eda14cbcSMatt Macy dprintf_dnode(dn, "dn=%p dnp=%p used=%llu delta=%lld\n", 2318eda14cbcSMatt Macy dn, dn->dn_phys, 2319eda14cbcSMatt Macy (u_longlong_t)dn->dn_phys->dn_used, 2320eda14cbcSMatt Macy (longlong_t)delta); 2321eda14cbcSMatt Macy 2322eda14cbcSMatt Macy mutex_enter(&dn->dn_mtx); 2323eda14cbcSMatt Macy space = DN_USED_BYTES(dn->dn_phys); 2324eda14cbcSMatt Macy if (delta > 0) { 2325eda14cbcSMatt Macy ASSERT3U(space + delta, >=, space); /* no overflow */ 2326eda14cbcSMatt Macy } else { 2327eda14cbcSMatt Macy ASSERT3U(space, >=, -delta); /* no underflow */ 2328eda14cbcSMatt Macy } 2329eda14cbcSMatt Macy space += delta; 2330eda14cbcSMatt Macy if (spa_version(dn->dn_objset->os_spa) < SPA_VERSION_DNODE_BYTES) { 2331eda14cbcSMatt Macy ASSERT((dn->dn_phys->dn_flags & DNODE_FLAG_USED_BYTES) == 0); 2332eda14cbcSMatt Macy ASSERT0(P2PHASE(space, 1<<DEV_BSHIFT)); 2333eda14cbcSMatt Macy dn->dn_phys->dn_used = space >> DEV_BSHIFT; 2334eda14cbcSMatt Macy } else { 2335eda14cbcSMatt Macy dn->dn_phys->dn_used = space; 2336eda14cbcSMatt Macy dn->dn_phys->dn_flags |= DNODE_FLAG_USED_BYTES; 2337eda14cbcSMatt Macy } 2338eda14cbcSMatt Macy mutex_exit(&dn->dn_mtx); 2339eda14cbcSMatt Macy } 2340eda14cbcSMatt Macy 2341eda14cbcSMatt Macy /* 2342eda14cbcSMatt Macy * Scans a block at the indicated "level" looking for a hole or data, 2343eda14cbcSMatt Macy * depending on 'flags'. 2344eda14cbcSMatt Macy * 2345eda14cbcSMatt Macy * If level > 0, then we are scanning an indirect block looking at its 2346eda14cbcSMatt Macy * pointers. If level == 0, then we are looking at a block of dnodes. 2347eda14cbcSMatt Macy * 2348eda14cbcSMatt Macy * If we don't find what we are looking for in the block, we return ESRCH. 2349eda14cbcSMatt Macy * Otherwise, return with *offset pointing to the beginning (if searching 2350eda14cbcSMatt Macy * forwards) or end (if searching backwards) of the range covered by the 2351eda14cbcSMatt Macy * block pointer we matched on (or dnode). 2352eda14cbcSMatt Macy * 2353eda14cbcSMatt Macy * The basic search algorithm used below by dnode_next_offset() is to 2354eda14cbcSMatt Macy * use this function to search up the block tree (widen the search) until 2355eda14cbcSMatt Macy * we find something (i.e., we don't return ESRCH) and then search back 2356eda14cbcSMatt Macy * down the tree (narrow the search) until we reach our original search 2357eda14cbcSMatt Macy * level. 2358eda14cbcSMatt Macy */ 2359eda14cbcSMatt Macy static int 2360eda14cbcSMatt Macy dnode_next_offset_level(dnode_t *dn, int flags, uint64_t *offset, 2361eda14cbcSMatt Macy int lvl, uint64_t blkfill, uint64_t txg) 2362eda14cbcSMatt Macy { 2363eda14cbcSMatt Macy dmu_buf_impl_t *db = NULL; 2364eda14cbcSMatt Macy void *data = NULL; 2365eda14cbcSMatt Macy uint64_t epbs = dn->dn_phys->dn_indblkshift - SPA_BLKPTRSHIFT; 2366eda14cbcSMatt Macy uint64_t epb = 1ULL << epbs; 2367eda14cbcSMatt Macy uint64_t minfill, maxfill; 2368eda14cbcSMatt Macy boolean_t hole; 2369eda14cbcSMatt Macy int i, inc, error, span; 2370eda14cbcSMatt Macy 2371eda14cbcSMatt Macy ASSERT(RW_LOCK_HELD(&dn->dn_struct_rwlock)); 2372eda14cbcSMatt Macy 2373eda14cbcSMatt Macy hole = ((flags & DNODE_FIND_HOLE) != 0); 2374eda14cbcSMatt Macy inc = (flags & DNODE_FIND_BACKWARDS) ? -1 : 1; 2375eda14cbcSMatt Macy ASSERT(txg == 0 || !hole); 2376eda14cbcSMatt Macy 2377eda14cbcSMatt Macy if (lvl == dn->dn_phys->dn_nlevels) { 2378eda14cbcSMatt Macy error = 0; 2379eda14cbcSMatt Macy epb = dn->dn_phys->dn_nblkptr; 2380eda14cbcSMatt Macy data = dn->dn_phys->dn_blkptr; 2381eda14cbcSMatt Macy } else { 2382eda14cbcSMatt Macy uint64_t blkid = dbuf_whichblock(dn, lvl, *offset); 2383eda14cbcSMatt Macy error = dbuf_hold_impl(dn, lvl, blkid, TRUE, FALSE, FTAG, &db); 2384eda14cbcSMatt Macy if (error) { 2385eda14cbcSMatt Macy if (error != ENOENT) 2386eda14cbcSMatt Macy return (error); 2387eda14cbcSMatt Macy if (hole) 2388eda14cbcSMatt Macy return (0); 2389eda14cbcSMatt Macy /* 2390eda14cbcSMatt Macy * This can only happen when we are searching up 2391eda14cbcSMatt Macy * the block tree for data. We don't really need to 2392eda14cbcSMatt Macy * adjust the offset, as we will just end up looking 2393eda14cbcSMatt Macy * at the pointer to this block in its parent, and its 2394eda14cbcSMatt Macy * going to be unallocated, so we will skip over it. 2395eda14cbcSMatt Macy */ 2396eda14cbcSMatt Macy return (SET_ERROR(ESRCH)); 2397eda14cbcSMatt Macy } 2398eda14cbcSMatt Macy error = dbuf_read(db, NULL, 2399eda14cbcSMatt Macy DB_RF_CANFAIL | DB_RF_HAVESTRUCT | DB_RF_NO_DECRYPT); 2400eda14cbcSMatt Macy if (error) { 2401eda14cbcSMatt Macy dbuf_rele(db, FTAG); 2402eda14cbcSMatt Macy return (error); 2403eda14cbcSMatt Macy } 2404eda14cbcSMatt Macy data = db->db.db_data; 2405eda14cbcSMatt Macy rw_enter(&db->db_rwlock, RW_READER); 2406eda14cbcSMatt Macy } 2407eda14cbcSMatt Macy 2408eda14cbcSMatt Macy if (db != NULL && txg != 0 && (db->db_blkptr == NULL || 2409eda14cbcSMatt Macy db->db_blkptr->blk_birth <= txg || 2410eda14cbcSMatt Macy BP_IS_HOLE(db->db_blkptr))) { 2411eda14cbcSMatt Macy /* 2412eda14cbcSMatt Macy * This can only happen when we are searching up the tree 2413eda14cbcSMatt Macy * and these conditions mean that we need to keep climbing. 2414eda14cbcSMatt Macy */ 2415eda14cbcSMatt Macy error = SET_ERROR(ESRCH); 2416eda14cbcSMatt Macy } else if (lvl == 0) { 2417eda14cbcSMatt Macy dnode_phys_t *dnp = data; 2418eda14cbcSMatt Macy 2419eda14cbcSMatt Macy ASSERT(dn->dn_type == DMU_OT_DNODE); 2420eda14cbcSMatt Macy ASSERT(!(flags & DNODE_FIND_BACKWARDS)); 2421eda14cbcSMatt Macy 2422eda14cbcSMatt Macy for (i = (*offset >> DNODE_SHIFT) & (blkfill - 1); 2423eda14cbcSMatt Macy i < blkfill; i += dnp[i].dn_extra_slots + 1) { 2424eda14cbcSMatt Macy if ((dnp[i].dn_type == DMU_OT_NONE) == hole) 2425eda14cbcSMatt Macy break; 2426eda14cbcSMatt Macy } 2427eda14cbcSMatt Macy 2428eda14cbcSMatt Macy if (i == blkfill) 2429eda14cbcSMatt Macy error = SET_ERROR(ESRCH); 2430eda14cbcSMatt Macy 2431eda14cbcSMatt Macy *offset = (*offset & ~(DNODE_BLOCK_SIZE - 1)) + 2432eda14cbcSMatt Macy (i << DNODE_SHIFT); 2433eda14cbcSMatt Macy } else { 2434eda14cbcSMatt Macy blkptr_t *bp = data; 2435eda14cbcSMatt Macy uint64_t start = *offset; 2436eda14cbcSMatt Macy span = (lvl - 1) * epbs + dn->dn_datablkshift; 2437eda14cbcSMatt Macy minfill = 0; 2438eda14cbcSMatt Macy maxfill = blkfill << ((lvl - 1) * epbs); 2439eda14cbcSMatt Macy 2440eda14cbcSMatt Macy if (hole) 2441eda14cbcSMatt Macy maxfill--; 2442eda14cbcSMatt Macy else 2443eda14cbcSMatt Macy minfill++; 2444eda14cbcSMatt Macy 2445eda14cbcSMatt Macy if (span >= 8 * sizeof (*offset)) { 2446eda14cbcSMatt Macy /* This only happens on the highest indirection level */ 2447eda14cbcSMatt Macy ASSERT3U((lvl - 1), ==, dn->dn_phys->dn_nlevels - 1); 2448eda14cbcSMatt Macy *offset = 0; 2449eda14cbcSMatt Macy } else { 2450eda14cbcSMatt Macy *offset = *offset >> span; 2451eda14cbcSMatt Macy } 2452eda14cbcSMatt Macy 2453eda14cbcSMatt Macy for (i = BF64_GET(*offset, 0, epbs); 2454eda14cbcSMatt Macy i >= 0 && i < epb; i += inc) { 2455eda14cbcSMatt Macy if (BP_GET_FILL(&bp[i]) >= minfill && 2456eda14cbcSMatt Macy BP_GET_FILL(&bp[i]) <= maxfill && 2457eda14cbcSMatt Macy (hole || bp[i].blk_birth > txg)) 2458eda14cbcSMatt Macy break; 2459eda14cbcSMatt Macy if (inc > 0 || *offset > 0) 2460eda14cbcSMatt Macy *offset += inc; 2461eda14cbcSMatt Macy } 2462eda14cbcSMatt Macy 2463eda14cbcSMatt Macy if (span >= 8 * sizeof (*offset)) { 2464eda14cbcSMatt Macy *offset = start; 2465eda14cbcSMatt Macy } else { 2466eda14cbcSMatt Macy *offset = *offset << span; 2467eda14cbcSMatt Macy } 2468eda14cbcSMatt Macy 2469eda14cbcSMatt Macy if (inc < 0) { 2470eda14cbcSMatt Macy /* traversing backwards; position offset at the end */ 2471eda14cbcSMatt Macy ASSERT3U(*offset, <=, start); 2472eda14cbcSMatt Macy *offset = MIN(*offset + (1ULL << span) - 1, start); 2473eda14cbcSMatt Macy } else if (*offset < start) { 2474eda14cbcSMatt Macy *offset = start; 2475eda14cbcSMatt Macy } 2476eda14cbcSMatt Macy if (i < 0 || i >= epb) 2477eda14cbcSMatt Macy error = SET_ERROR(ESRCH); 2478eda14cbcSMatt Macy } 2479eda14cbcSMatt Macy 2480eda14cbcSMatt Macy if (db != NULL) { 2481eda14cbcSMatt Macy rw_exit(&db->db_rwlock); 2482eda14cbcSMatt Macy dbuf_rele(db, FTAG); 2483eda14cbcSMatt Macy } 2484eda14cbcSMatt Macy 2485eda14cbcSMatt Macy return (error); 2486eda14cbcSMatt Macy } 2487eda14cbcSMatt Macy 2488eda14cbcSMatt Macy /* 2489eda14cbcSMatt Macy * Find the next hole, data, or sparse region at or after *offset. 2490eda14cbcSMatt Macy * The value 'blkfill' tells us how many items we expect to find 2491eda14cbcSMatt Macy * in an L0 data block; this value is 1 for normal objects, 2492eda14cbcSMatt Macy * DNODES_PER_BLOCK for the meta dnode, and some fraction of 2493eda14cbcSMatt Macy * DNODES_PER_BLOCK when searching for sparse regions thereof. 2494eda14cbcSMatt Macy * 2495eda14cbcSMatt Macy * Examples: 2496eda14cbcSMatt Macy * 2497eda14cbcSMatt Macy * dnode_next_offset(dn, flags, offset, 1, 1, 0); 2498eda14cbcSMatt Macy * Finds the next/previous hole/data in a file. 2499eda14cbcSMatt Macy * Used in dmu_offset_next(). 2500eda14cbcSMatt Macy * 2501eda14cbcSMatt Macy * dnode_next_offset(mdn, flags, offset, 0, DNODES_PER_BLOCK, txg); 2502eda14cbcSMatt Macy * Finds the next free/allocated dnode an objset's meta-dnode. 2503eda14cbcSMatt Macy * Only finds objects that have new contents since txg (ie. 2504eda14cbcSMatt Macy * bonus buffer changes and content removal are ignored). 2505eda14cbcSMatt Macy * Used in dmu_object_next(). 2506eda14cbcSMatt Macy * 2507eda14cbcSMatt Macy * dnode_next_offset(mdn, DNODE_FIND_HOLE, offset, 2, DNODES_PER_BLOCK >> 2, 0); 2508eda14cbcSMatt Macy * Finds the next L2 meta-dnode bp that's at most 1/4 full. 2509eda14cbcSMatt Macy * Used in dmu_object_alloc(). 2510eda14cbcSMatt Macy */ 2511eda14cbcSMatt Macy int 2512eda14cbcSMatt Macy dnode_next_offset(dnode_t *dn, int flags, uint64_t *offset, 2513eda14cbcSMatt Macy int minlvl, uint64_t blkfill, uint64_t txg) 2514eda14cbcSMatt Macy { 2515eda14cbcSMatt Macy uint64_t initial_offset = *offset; 2516eda14cbcSMatt Macy int lvl, maxlvl; 2517eda14cbcSMatt Macy int error = 0; 2518eda14cbcSMatt Macy 2519eda14cbcSMatt Macy if (!(flags & DNODE_FIND_HAVELOCK)) 2520eda14cbcSMatt Macy rw_enter(&dn->dn_struct_rwlock, RW_READER); 2521eda14cbcSMatt Macy 2522eda14cbcSMatt Macy if (dn->dn_phys->dn_nlevels == 0) { 2523eda14cbcSMatt Macy error = SET_ERROR(ESRCH); 2524eda14cbcSMatt Macy goto out; 2525eda14cbcSMatt Macy } 2526eda14cbcSMatt Macy 2527eda14cbcSMatt Macy if (dn->dn_datablkshift == 0) { 2528eda14cbcSMatt Macy if (*offset < dn->dn_datablksz) { 2529eda14cbcSMatt Macy if (flags & DNODE_FIND_HOLE) 2530eda14cbcSMatt Macy *offset = dn->dn_datablksz; 2531eda14cbcSMatt Macy } else { 2532eda14cbcSMatt Macy error = SET_ERROR(ESRCH); 2533eda14cbcSMatt Macy } 2534eda14cbcSMatt Macy goto out; 2535eda14cbcSMatt Macy } 2536eda14cbcSMatt Macy 2537eda14cbcSMatt Macy maxlvl = dn->dn_phys->dn_nlevels; 2538eda14cbcSMatt Macy 2539eda14cbcSMatt Macy for (lvl = minlvl; lvl <= maxlvl; lvl++) { 2540eda14cbcSMatt Macy error = dnode_next_offset_level(dn, 2541eda14cbcSMatt Macy flags, offset, lvl, blkfill, txg); 2542eda14cbcSMatt Macy if (error != ESRCH) 2543eda14cbcSMatt Macy break; 2544eda14cbcSMatt Macy } 2545eda14cbcSMatt Macy 2546eda14cbcSMatt Macy while (error == 0 && --lvl >= minlvl) { 2547eda14cbcSMatt Macy error = dnode_next_offset_level(dn, 2548eda14cbcSMatt Macy flags, offset, lvl, blkfill, txg); 2549eda14cbcSMatt Macy } 2550eda14cbcSMatt Macy 2551eda14cbcSMatt Macy /* 2552eda14cbcSMatt Macy * There's always a "virtual hole" at the end of the object, even 2553eda14cbcSMatt Macy * if all BP's which physically exist are non-holes. 2554eda14cbcSMatt Macy */ 2555eda14cbcSMatt Macy if ((flags & DNODE_FIND_HOLE) && error == ESRCH && txg == 0 && 2556eda14cbcSMatt Macy minlvl == 1 && blkfill == 1 && !(flags & DNODE_FIND_BACKWARDS)) { 2557eda14cbcSMatt Macy error = 0; 2558eda14cbcSMatt Macy } 2559eda14cbcSMatt Macy 2560eda14cbcSMatt Macy if (error == 0 && (flags & DNODE_FIND_BACKWARDS ? 2561eda14cbcSMatt Macy initial_offset < *offset : initial_offset > *offset)) 2562eda14cbcSMatt Macy error = SET_ERROR(ESRCH); 2563eda14cbcSMatt Macy out: 2564eda14cbcSMatt Macy if (!(flags & DNODE_FIND_HAVELOCK)) 2565eda14cbcSMatt Macy rw_exit(&dn->dn_struct_rwlock); 2566eda14cbcSMatt Macy 2567eda14cbcSMatt Macy return (error); 2568eda14cbcSMatt Macy } 2569eda14cbcSMatt Macy 2570eda14cbcSMatt Macy #if defined(_KERNEL) 2571eda14cbcSMatt Macy EXPORT_SYMBOL(dnode_hold); 2572eda14cbcSMatt Macy EXPORT_SYMBOL(dnode_rele); 2573eda14cbcSMatt Macy EXPORT_SYMBOL(dnode_set_nlevels); 2574eda14cbcSMatt Macy EXPORT_SYMBOL(dnode_set_blksz); 2575eda14cbcSMatt Macy EXPORT_SYMBOL(dnode_free_range); 2576eda14cbcSMatt Macy EXPORT_SYMBOL(dnode_evict_dbufs); 2577eda14cbcSMatt Macy EXPORT_SYMBOL(dnode_evict_bonus); 2578eda14cbcSMatt Macy #endif 2579