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