xref: /illumos-gate/usr/src/uts/common/fs/zfs/dsl_pool.c (revision 2acef22db7808606888f8f92715629ff3ba555b9)
1fa9e4066Sahrens /*
2fa9e4066Sahrens  * CDDL HEADER START
3fa9e4066Sahrens  *
4fa9e4066Sahrens  * The contents of this file are subject to the terms of the
5ea8dc4b6Seschrock  * Common Development and Distribution License (the "License").
6ea8dc4b6Seschrock  * You may not use this file except in compliance with the License.
7fa9e4066Sahrens  *
8fa9e4066Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9fa9e4066Sahrens  * or http://www.opensolaris.org/os/licensing.
10fa9e4066Sahrens  * See the License for the specific language governing permissions
11fa9e4066Sahrens  * and limitations under the License.
12fa9e4066Sahrens  *
13fa9e4066Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
14fa9e4066Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15fa9e4066Sahrens  * If applicable, add the following below this CDDL HEADER, with the
16fa9e4066Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
17fa9e4066Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
18fa9e4066Sahrens  *
19fa9e4066Sahrens  * CDDL HEADER END
20fa9e4066Sahrens  */
21fa9e4066Sahrens /*
223f9d6ad7SLin Ling  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23be6fd75aSMatthew Ahrens  * Copyright (c) 2013 by Delphix. All rights reserved.
24a7a845e4SSteven Hartland  * Copyright (c) 2013 Steven Hartland. All rights reserved.
25fa9e4066Sahrens  */
26fa9e4066Sahrens 
27fa9e4066Sahrens #include <sys/dsl_pool.h>
28fa9e4066Sahrens #include <sys/dsl_dataset.h>
293f9d6ad7SLin Ling #include <sys/dsl_prop.h>
30fa9e4066Sahrens #include <sys/dsl_dir.h>
311d452cf5Sahrens #include <sys/dsl_synctask.h>
323f9d6ad7SLin Ling #include <sys/dsl_scan.h>
333f9d6ad7SLin Ling #include <sys/dnode.h>
34fa9e4066Sahrens #include <sys/dmu_tx.h>
35fa9e4066Sahrens #include <sys/dmu_objset.h>
36fa9e4066Sahrens #include <sys/arc.h>
37fa9e4066Sahrens #include <sys/zap.h>
38c717a561Smaybee #include <sys/zio.h>
39fa9e4066Sahrens #include <sys/zfs_context.h>
40fa9e4066Sahrens #include <sys/fs/zfs.h>
41088f3894Sahrens #include <sys/zfs_znode.h>
42088f3894Sahrens #include <sys/spa_impl.h>
43cde58dbcSMatthew Ahrens #include <sys/dsl_deadlist.h>
44ad135b5dSChristopher Siden #include <sys/bptree.h>
45ad135b5dSChristopher Siden #include <sys/zfeature.h>
46ce636f8bSMatthew Ahrens #include <sys/zil_impl.h>
473b2aab18SMatthew Ahrens #include <sys/dsl_userhold.h>
48fa9e4066Sahrens 
4969962b56SMatthew Ahrens /*
5069962b56SMatthew Ahrens  * ZFS Write Throttle
5169962b56SMatthew Ahrens  * ------------------
5269962b56SMatthew Ahrens  *
5369962b56SMatthew Ahrens  * ZFS must limit the rate of incoming writes to the rate at which it is able
5469962b56SMatthew Ahrens  * to sync data modifications to the backend storage. Throttling by too much
5569962b56SMatthew Ahrens  * creates an artificial limit; throttling by too little can only be sustained
5669962b56SMatthew Ahrens  * for short periods and would lead to highly lumpy performance. On a per-pool
5769962b56SMatthew Ahrens  * basis, ZFS tracks the amount of modified (dirty) data. As operations change
5869962b56SMatthew Ahrens  * data, the amount of dirty data increases; as ZFS syncs out data, the amount
5969962b56SMatthew Ahrens  * of dirty data decreases. When the amount of dirty data exceeds a
6069962b56SMatthew Ahrens  * predetermined threshold further modifications are blocked until the amount
6169962b56SMatthew Ahrens  * of dirty data decreases (as data is synced out).
6269962b56SMatthew Ahrens  *
6369962b56SMatthew Ahrens  * The limit on dirty data is tunable, and should be adjusted according to
6469962b56SMatthew Ahrens  * both the IO capacity and available memory of the system. The larger the
6569962b56SMatthew Ahrens  * window, the more ZFS is able to aggregate and amortize metadata (and data)
6669962b56SMatthew Ahrens  * changes. However, memory is a limited resource, and allowing for more dirty
6769962b56SMatthew Ahrens  * data comes at the cost of keeping other useful data in memory (for example
6869962b56SMatthew Ahrens  * ZFS data cached by the ARC).
6969962b56SMatthew Ahrens  *
7069962b56SMatthew Ahrens  * Implementation
7169962b56SMatthew Ahrens  *
7269962b56SMatthew Ahrens  * As buffers are modified dsl_pool_willuse_space() increments both the per-
7369962b56SMatthew Ahrens  * txg (dp_dirty_pertxg[]) and poolwide (dp_dirty_total) accounting of
7469962b56SMatthew Ahrens  * dirty space used; dsl_pool_dirty_space() decrements those values as data
7569962b56SMatthew Ahrens  * is synced out from dsl_pool_sync(). While only the poolwide value is
7669962b56SMatthew Ahrens  * relevant, the per-txg value is useful for debugging. The tunable
7769962b56SMatthew Ahrens  * zfs_dirty_data_max determines the dirty space limit. Once that value is
7869962b56SMatthew Ahrens  * exceeded, new writes are halted until space frees up.
7969962b56SMatthew Ahrens  *
8069962b56SMatthew Ahrens  * The zfs_dirty_data_sync tunable dictates the threshold at which we
8169962b56SMatthew Ahrens  * ensure that there is a txg syncing (see the comment in txg.c for a full
8269962b56SMatthew Ahrens  * description of transaction group stages).
8369962b56SMatthew Ahrens  *
8469962b56SMatthew Ahrens  * The IO scheduler uses both the dirty space limit and current amount of
8569962b56SMatthew Ahrens  * dirty data as inputs. Those values affect the number of concurrent IOs ZFS
8669962b56SMatthew Ahrens  * issues. See the comment in vdev_queue.c for details of the IO scheduler.
8769962b56SMatthew Ahrens  *
8869962b56SMatthew Ahrens  * The delay is also calculated based on the amount of dirty data.  See the
8969962b56SMatthew Ahrens  * comment above dmu_tx_delay() for details.
9069962b56SMatthew Ahrens  */
9169962b56SMatthew Ahrens 
9269962b56SMatthew Ahrens /*
9369962b56SMatthew Ahrens  * zfs_dirty_data_max will be set to zfs_dirty_data_max_percent% of all memory,
9469962b56SMatthew Ahrens  * capped at zfs_dirty_data_max_max.  It can also be overridden in /etc/system.
9569962b56SMatthew Ahrens  */
9669962b56SMatthew Ahrens uint64_t zfs_dirty_data_max;
9769962b56SMatthew Ahrens uint64_t zfs_dirty_data_max_max = 4ULL * 1024 * 1024 * 1024;
9869962b56SMatthew Ahrens int zfs_dirty_data_max_percent = 10;
9969962b56SMatthew Ahrens 
10069962b56SMatthew Ahrens /*
10169962b56SMatthew Ahrens  * If there is at least this much dirty data, push out a txg.
10269962b56SMatthew Ahrens  */
10369962b56SMatthew Ahrens uint64_t zfs_dirty_data_sync = 64 * 1024 * 1024;
10469962b56SMatthew Ahrens 
10569962b56SMatthew Ahrens /*
10669962b56SMatthew Ahrens  * Once there is this amount of dirty data, the dmu_tx_delay() will kick in
10769962b56SMatthew Ahrens  * and delay each transaction.
10869962b56SMatthew Ahrens  * This value should be >= zfs_vdev_async_write_active_max_dirty_percent.
10969962b56SMatthew Ahrens  */
11069962b56SMatthew Ahrens int zfs_delay_min_dirty_percent = 60;
11169962b56SMatthew Ahrens 
11269962b56SMatthew Ahrens /*
11369962b56SMatthew Ahrens  * This controls how quickly the delay approaches infinity.
11469962b56SMatthew Ahrens  * Larger values cause it to delay less for a given amount of dirty data.
11569962b56SMatthew Ahrens  * Therefore larger values will cause there to be more dirty data for a
11669962b56SMatthew Ahrens  * given throughput.
11769962b56SMatthew Ahrens  *
11869962b56SMatthew Ahrens  * For the smoothest delay, this value should be about 1 billion divided
11969962b56SMatthew Ahrens  * by the maximum number of operations per second.  This will smoothly
12069962b56SMatthew Ahrens  * handle between 10x and 1/10th this number.
12169962b56SMatthew Ahrens  *
12269962b56SMatthew Ahrens  * Note: zfs_delay_scale * zfs_dirty_data_max must be < 2^64, due to the
12369962b56SMatthew Ahrens  * multiply in dmu_tx_delay().
12469962b56SMatthew Ahrens  */
12569962b56SMatthew Ahrens uint64_t zfs_delay_scale = 1000 * 1000 * 1000 / 2000;
12605715f94SMark Maybee 
1271ab7f2deSmaybee 
12869962b56SMatthew Ahrens /*
12969962b56SMatthew Ahrens  * XXX someday maybe turn these into #defines, and you have to tune it on a
13069962b56SMatthew Ahrens  * per-pool basis using zfs.conf.
13169962b56SMatthew Ahrens  */
13205715f94SMark Maybee 
133088f3894Sahrens 
1340689f76cSAdam Leventhal hrtime_t zfs_throttle_delay = MSEC2NSEC(10);
1350689f76cSAdam Leventhal hrtime_t zfs_throttle_resolution = MSEC2NSEC(10);
1360689f76cSAdam Leventhal 
1373f9d6ad7SLin Ling int
138088f3894Sahrens dsl_pool_open_special_dir(dsl_pool_t *dp, const char *name, dsl_dir_t **ddp)
139fa9e4066Sahrens {
140fa9e4066Sahrens 	uint64_t obj;
141fa9e4066Sahrens 	int err;
142fa9e4066Sahrens 
143fa9e4066Sahrens 	err = zap_lookup(dp->dp_meta_objset,
144fa9e4066Sahrens 	    dp->dp_root_dir->dd_phys->dd_child_dir_zapobj,
145088f3894Sahrens 	    name, sizeof (obj), 1, &obj);
146ea8dc4b6Seschrock 	if (err)
147ea8dc4b6Seschrock 		return (err);
148fa9e4066Sahrens 
1493b2aab18SMatthew Ahrens 	return (dsl_dir_hold_obj(dp, obj, name, dp, ddp));
150fa9e4066Sahrens }
151fa9e4066Sahrens 
152fa9e4066Sahrens static dsl_pool_t *
153fa9e4066Sahrens dsl_pool_open_impl(spa_t *spa, uint64_t txg)
154fa9e4066Sahrens {
155fa9e4066Sahrens 	dsl_pool_t *dp;
156fa9e4066Sahrens 	blkptr_t *bp = spa_get_rootblkptr(spa);
157fa9e4066Sahrens 
158fa9e4066Sahrens 	dp = kmem_zalloc(sizeof (dsl_pool_t), KM_SLEEP);
159fa9e4066Sahrens 	dp->dp_spa = spa;
160fa9e4066Sahrens 	dp->dp_meta_rootbp = *bp;
1613b2aab18SMatthew Ahrens 	rrw_init(&dp->dp_config_rwlock, B_TRUE);
162fa9e4066Sahrens 	txg_init(dp, txg);
163fa9e4066Sahrens 
164fa9e4066Sahrens 	txg_list_create(&dp->dp_dirty_datasets,
165fa9e4066Sahrens 	    offsetof(dsl_dataset_t, ds_dirty_link));
166ce636f8bSMatthew Ahrens 	txg_list_create(&dp->dp_dirty_zilogs,
167ce636f8bSMatthew Ahrens 	    offsetof(zilog_t, zl_dirty_link));
168fa9e4066Sahrens 	txg_list_create(&dp->dp_dirty_dirs,
169fa9e4066Sahrens 	    offsetof(dsl_dir_t, dd_dirty_link));
1701d452cf5Sahrens 	txg_list_create(&dp->dp_sync_tasks,
1713b2aab18SMatthew Ahrens 	    offsetof(dsl_sync_task_t, dst_node));
172fa9e4066Sahrens 
1731ab7f2deSmaybee 	mutex_init(&dp->dp_lock, NULL, MUTEX_DEFAULT, NULL);
17469962b56SMatthew Ahrens 	cv_init(&dp->dp_spaceavail_cv, NULL, CV_DEFAULT, NULL);
1751ab7f2deSmaybee 
1769d3574bfSNeil Perrin 	dp->dp_vnrele_taskq = taskq_create("zfs_vn_rele_taskq", 1, minclsyspri,
1779d3574bfSNeil Perrin 	    1, 4, 0);
1789d3574bfSNeil Perrin 
179fa9e4066Sahrens 	return (dp);
180fa9e4066Sahrens }
181fa9e4066Sahrens 
182ea8dc4b6Seschrock int
183ad135b5dSChristopher Siden dsl_pool_init(spa_t *spa, uint64_t txg, dsl_pool_t **dpp)
184fa9e4066Sahrens {
185fa9e4066Sahrens 	int err;
186fa9e4066Sahrens 	dsl_pool_t *dp = dsl_pool_open_impl(spa, txg);
187ad135b5dSChristopher Siden 
188ad135b5dSChristopher Siden 	err = dmu_objset_open_impl(spa, NULL, &dp->dp_meta_rootbp,
189ad135b5dSChristopher Siden 	    &dp->dp_meta_objset);
190ad135b5dSChristopher Siden 	if (err != 0)
191ad135b5dSChristopher Siden 		dsl_pool_close(dp);
192ad135b5dSChristopher Siden 	else
193ad135b5dSChristopher Siden 		*dpp = dp;
194ad135b5dSChristopher Siden 
195ad135b5dSChristopher Siden 	return (err);
196ad135b5dSChristopher Siden }
197ad135b5dSChristopher Siden 
198ad135b5dSChristopher Siden int
199ad135b5dSChristopher Siden dsl_pool_open(dsl_pool_t *dp)
200ad135b5dSChristopher Siden {
201ad135b5dSChristopher Siden 	int err;
202088f3894Sahrens 	dsl_dir_t *dd;
203088f3894Sahrens 	dsl_dataset_t *ds;
204cde58dbcSMatthew Ahrens 	uint64_t obj;
205fa9e4066Sahrens 
2063b2aab18SMatthew Ahrens 	rrw_enter(&dp->dp_config_rwlock, RW_WRITER, FTAG);
207fa9e4066Sahrens 	err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
208fa9e4066Sahrens 	    DMU_POOL_ROOT_DATASET, sizeof (uint64_t), 1,
209fa9e4066Sahrens 	    &dp->dp_root_dir_obj);
210ea8dc4b6Seschrock 	if (err)
211ea8dc4b6Seschrock 		goto out;
212ea8dc4b6Seschrock 
2133b2aab18SMatthew Ahrens 	err = dsl_dir_hold_obj(dp, dp->dp_root_dir_obj,
214ea8dc4b6Seschrock 	    NULL, dp, &dp->dp_root_dir);
215ea8dc4b6Seschrock 	if (err)
216ea8dc4b6Seschrock 		goto out;
217fa9e4066Sahrens 
218088f3894Sahrens 	err = dsl_pool_open_special_dir(dp, MOS_DIR_NAME, &dp->dp_mos_dir);
219ea8dc4b6Seschrock 	if (err)
220ea8dc4b6Seschrock 		goto out;
221ea8dc4b6Seschrock 
222ad135b5dSChristopher Siden 	if (spa_version(dp->dp_spa) >= SPA_VERSION_ORIGIN) {
223088f3894Sahrens 		err = dsl_pool_open_special_dir(dp, ORIGIN_DIR_NAME, &dd);
224088f3894Sahrens 		if (err)
225088f3894Sahrens 			goto out;
226088f3894Sahrens 		err = dsl_dataset_hold_obj(dp, dd->dd_phys->dd_head_dataset_obj,
227088f3894Sahrens 		    FTAG, &ds);
2288f63aa46SLin Ling 		if (err == 0) {
2298f63aa46SLin Ling 			err = dsl_dataset_hold_obj(dp,
2308f63aa46SLin Ling 			    ds->ds_phys->ds_prev_snap_obj, dp,
2318f63aa46SLin Ling 			    &dp->dp_origin_snap);
2328f63aa46SLin Ling 			dsl_dataset_rele(ds, FTAG);
2338f63aa46SLin Ling 		}
2343b2aab18SMatthew Ahrens 		dsl_dir_rele(dd, dp);
235088f3894Sahrens 		if (err)
236088f3894Sahrens 			goto out;
237088f3894Sahrens 	}
238088f3894Sahrens 
239ad135b5dSChristopher Siden 	if (spa_version(dp->dp_spa) >= SPA_VERSION_DEADLISTS) {
240cde58dbcSMatthew Ahrens 		err = dsl_pool_open_special_dir(dp, FREE_DIR_NAME,
241cde58dbcSMatthew Ahrens 		    &dp->dp_free_dir);
242cde58dbcSMatthew Ahrens 		if (err)
243cde58dbcSMatthew Ahrens 			goto out;
244cde58dbcSMatthew Ahrens 
245cde58dbcSMatthew Ahrens 		err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
246cde58dbcSMatthew Ahrens 		    DMU_POOL_FREE_BPOBJ, sizeof (uint64_t), 1, &obj);
247cde58dbcSMatthew Ahrens 		if (err)
248cde58dbcSMatthew Ahrens 			goto out;
2493b2aab18SMatthew Ahrens 		VERIFY0(bpobj_open(&dp->dp_free_bpobj,
250cde58dbcSMatthew Ahrens 		    dp->dp_meta_objset, obj));
251cde58dbcSMatthew Ahrens 	}
252cde58dbcSMatthew Ahrens 
253*2acef22dSMatthew Ahrens 	if (spa_feature_is_active(dp->dp_spa, SPA_FEATURE_ASYNC_DESTROY)) {
254ad135b5dSChristopher Siden 		err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
255ad135b5dSChristopher Siden 		    DMU_POOL_BPTREE_OBJ, sizeof (uint64_t), 1,
256ad135b5dSChristopher Siden 		    &dp->dp_bptree_obj);
257ad135b5dSChristopher Siden 		if (err != 0)
258ad135b5dSChristopher Siden 			goto out;
259ad135b5dSChristopher Siden 	}
260ad135b5dSChristopher Siden 
261*2acef22dSMatthew Ahrens 	if (spa_feature_is_active(dp->dp_spa, SPA_FEATURE_EMPTY_BPOBJ)) {
262f1745736SMatthew Ahrens 		err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
263f1745736SMatthew Ahrens 		    DMU_POOL_EMPTY_BPOBJ, sizeof (uint64_t), 1,
264f1745736SMatthew Ahrens 		    &dp->dp_empty_bpobj);
265f1745736SMatthew Ahrens 		if (err != 0)
266f1745736SMatthew Ahrens 			goto out;
267f1745736SMatthew Ahrens 	}
268f1745736SMatthew Ahrens 
269ca45db41SChris Kirby 	err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
270ca45db41SChris Kirby 	    DMU_POOL_TMP_USERREFS, sizeof (uint64_t), 1,
271ca45db41SChris Kirby 	    &dp->dp_tmp_userrefs_obj);
272ca45db41SChris Kirby 	if (err == ENOENT)
273ca45db41SChris Kirby 		err = 0;
274ca45db41SChris Kirby 	if (err)
275ca45db41SChris Kirby 		goto out;
276ca45db41SChris Kirby 
277ad135b5dSChristopher Siden 	err = dsl_scan_init(dp, dp->dp_tx.tx_open_txg);
278088f3894Sahrens 
279ea8dc4b6Seschrock out:
2803b2aab18SMatthew Ahrens 	rrw_exit(&dp->dp_config_rwlock, FTAG);
281ea8dc4b6Seschrock 	return (err);
282fa9e4066Sahrens }
283fa9e4066Sahrens 
284fa9e4066Sahrens void
285fa9e4066Sahrens dsl_pool_close(dsl_pool_t *dp)
286fa9e4066Sahrens {
287088f3894Sahrens 	/*
28869962b56SMatthew Ahrens 	 * Drop our references from dsl_pool_open().
28969962b56SMatthew Ahrens 	 *
290088f3894Sahrens 	 * Since we held the origin_snap from "syncing" context (which
291088f3894Sahrens 	 * includes pool-opening context), it actually only got a "ref"
292088f3894Sahrens 	 * and not a hold, so just drop that here.
293088f3894Sahrens 	 */
294088f3894Sahrens 	if (dp->dp_origin_snap)
2953b2aab18SMatthew Ahrens 		dsl_dataset_rele(dp->dp_origin_snap, dp);
296ea8dc4b6Seschrock 	if (dp->dp_mos_dir)
2973b2aab18SMatthew Ahrens 		dsl_dir_rele(dp->dp_mos_dir, dp);
298cde58dbcSMatthew Ahrens 	if (dp->dp_free_dir)
2993b2aab18SMatthew Ahrens 		dsl_dir_rele(dp->dp_free_dir, dp);
300ea8dc4b6Seschrock 	if (dp->dp_root_dir)
3013b2aab18SMatthew Ahrens 		dsl_dir_rele(dp->dp_root_dir, dp);
302fa9e4066Sahrens 
303cde58dbcSMatthew Ahrens 	bpobj_close(&dp->dp_free_bpobj);
304cde58dbcSMatthew Ahrens 
305fa9e4066Sahrens 	/* undo the dmu_objset_open_impl(mos) from dsl_pool_open() */
306ea8dc4b6Seschrock 	if (dp->dp_meta_objset)
307503ad85cSMatthew Ahrens 		dmu_objset_evict(dp->dp_meta_objset);
308fa9e4066Sahrens 
309fa9e4066Sahrens 	txg_list_destroy(&dp->dp_dirty_datasets);
310ce636f8bSMatthew Ahrens 	txg_list_destroy(&dp->dp_dirty_zilogs);
31154a91118SChris Kirby 	txg_list_destroy(&dp->dp_sync_tasks);
312fa9e4066Sahrens 	txg_list_destroy(&dp->dp_dirty_dirs);
313fa9e4066Sahrens 
314874395d5Smaybee 	arc_flush(dp->dp_spa);
315fa9e4066Sahrens 	txg_fini(dp);
3163f9d6ad7SLin Ling 	dsl_scan_fini(dp);
3173b2aab18SMatthew Ahrens 	rrw_destroy(&dp->dp_config_rwlock);
3181ab7f2deSmaybee 	mutex_destroy(&dp->dp_lock);
3199d3574bfSNeil Perrin 	taskq_destroy(dp->dp_vnrele_taskq);
32088b7b0f2SMatthew Ahrens 	if (dp->dp_blkstats)
32188b7b0f2SMatthew Ahrens 		kmem_free(dp->dp_blkstats, sizeof (zfs_all_blkstats_t));
322fa9e4066Sahrens 	kmem_free(dp, sizeof (dsl_pool_t));
323fa9e4066Sahrens }
324fa9e4066Sahrens 
325fa9e4066Sahrens dsl_pool_t *
3260a48a24eStimh dsl_pool_create(spa_t *spa, nvlist_t *zplprops, uint64_t txg)
327fa9e4066Sahrens {
328fa9e4066Sahrens 	int err;
329fa9e4066Sahrens 	dsl_pool_t *dp = dsl_pool_open_impl(spa, txg);
330fa9e4066Sahrens 	dmu_tx_t *tx = dmu_tx_create_assigned(dp, txg);
331503ad85cSMatthew Ahrens 	objset_t *os;
332088f3894Sahrens 	dsl_dataset_t *ds;
333cde58dbcSMatthew Ahrens 	uint64_t obj;
334088f3894Sahrens 
3353b2aab18SMatthew Ahrens 	rrw_enter(&dp->dp_config_rwlock, RW_WRITER, FTAG);
3363b2aab18SMatthew Ahrens 
337088f3894Sahrens 	/* create and open the MOS (meta-objset) */
338503ad85cSMatthew Ahrens 	dp->dp_meta_objset = dmu_objset_create_impl(spa,
339503ad85cSMatthew Ahrens 	    NULL, &dp->dp_meta_rootbp, DMU_OST_META, tx);
340fa9e4066Sahrens 
341fa9e4066Sahrens 	/* create the pool directory */
342fa9e4066Sahrens 	err = zap_create_claim(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
343fa9e4066Sahrens 	    DMU_OT_OBJECT_DIRECTORY, DMU_OT_NONE, 0, tx);
344fb09f5aaSMadhav Suresh 	ASSERT0(err);
345fa9e4066Sahrens 
3463f9d6ad7SLin Ling 	/* Initialize scan structures */
3473b2aab18SMatthew Ahrens 	VERIFY0(dsl_scan_init(dp, txg));
3483f9d6ad7SLin Ling 
349fa9e4066Sahrens 	/* create and open the root dir */
350088f3894Sahrens 	dp->dp_root_dir_obj = dsl_dir_create_sync(dp, NULL, NULL, tx);
3513b2aab18SMatthew Ahrens 	VERIFY0(dsl_dir_hold_obj(dp, dp->dp_root_dir_obj,
352ea8dc4b6Seschrock 	    NULL, dp, &dp->dp_root_dir));
353fa9e4066Sahrens 
354fa9e4066Sahrens 	/* create and open the meta-objset dir */
355088f3894Sahrens 	(void) dsl_dir_create_sync(dp, dp->dp_root_dir, MOS_DIR_NAME, tx);
3563b2aab18SMatthew Ahrens 	VERIFY0(dsl_pool_open_special_dir(dp,
357088f3894Sahrens 	    MOS_DIR_NAME, &dp->dp_mos_dir));
358088f3894Sahrens 
359cde58dbcSMatthew Ahrens 	if (spa_version(spa) >= SPA_VERSION_DEADLISTS) {
360cde58dbcSMatthew Ahrens 		/* create and open the free dir */
361cde58dbcSMatthew Ahrens 		(void) dsl_dir_create_sync(dp, dp->dp_root_dir,
362cde58dbcSMatthew Ahrens 		    FREE_DIR_NAME, tx);
3633b2aab18SMatthew Ahrens 		VERIFY0(dsl_pool_open_special_dir(dp,
364cde58dbcSMatthew Ahrens 		    FREE_DIR_NAME, &dp->dp_free_dir));
365cde58dbcSMatthew Ahrens 
366cde58dbcSMatthew Ahrens 		/* create and open the free_bplist */
367cde58dbcSMatthew Ahrens 		obj = bpobj_alloc(dp->dp_meta_objset, SPA_MAXBLOCKSIZE, tx);
368cde58dbcSMatthew Ahrens 		VERIFY(zap_add(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
369cde58dbcSMatthew Ahrens 		    DMU_POOL_FREE_BPOBJ, sizeof (uint64_t), 1, &obj, tx) == 0);
3703b2aab18SMatthew Ahrens 		VERIFY0(bpobj_open(&dp->dp_free_bpobj,
371cde58dbcSMatthew Ahrens 		    dp->dp_meta_objset, obj));
372cde58dbcSMatthew Ahrens 	}
373cde58dbcSMatthew Ahrens 
374088f3894Sahrens 	if (spa_version(spa) >= SPA_VERSION_DSL_SCRUB)
375088f3894Sahrens 		dsl_pool_create_origin(dp, tx);
376088f3894Sahrens 
377088f3894Sahrens 	/* create the root dataset */
378cde58dbcSMatthew Ahrens 	obj = dsl_dataset_create_sync_dd(dp->dp_root_dir, NULL, 0, tx);
379088f3894Sahrens 
380088f3894Sahrens 	/* create the root objset */
3813b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold_obj(dp, obj, FTAG, &ds));
382503ad85cSMatthew Ahrens 	os = dmu_objset_create_impl(dp->dp_spa, ds,
383088f3894Sahrens 	    dsl_dataset_get_blkptr(ds), DMU_OST_ZFS, tx);
384088f3894Sahrens #ifdef _KERNEL
385503ad85cSMatthew Ahrens 	zfs_create_fs(os, kcred, zplprops, tx);
386088f3894Sahrens #endif
387088f3894Sahrens 	dsl_dataset_rele(ds, FTAG);
388fa9e4066Sahrens 
389fa9e4066Sahrens 	dmu_tx_commit(tx);
390fa9e4066Sahrens 
3913b2aab18SMatthew Ahrens 	rrw_exit(&dp->dp_config_rwlock, FTAG);
3923b2aab18SMatthew Ahrens 
393fa9e4066Sahrens 	return (dp);
394fa9e4066Sahrens }
395fa9e4066Sahrens 
396ce636f8bSMatthew Ahrens /*
397ce636f8bSMatthew Ahrens  * Account for the meta-objset space in its placeholder dsl_dir.
398ce636f8bSMatthew Ahrens  */
399ce636f8bSMatthew Ahrens void
400ce636f8bSMatthew Ahrens dsl_pool_mos_diduse_space(dsl_pool_t *dp,
401ce636f8bSMatthew Ahrens     int64_t used, int64_t comp, int64_t uncomp)
402ce636f8bSMatthew Ahrens {
403ce636f8bSMatthew Ahrens 	ASSERT3U(comp, ==, uncomp); /* it's all metadata */
404ce636f8bSMatthew Ahrens 	mutex_enter(&dp->dp_lock);
405ce636f8bSMatthew Ahrens 	dp->dp_mos_used_delta += used;
406ce636f8bSMatthew Ahrens 	dp->dp_mos_compressed_delta += comp;
407ce636f8bSMatthew Ahrens 	dp->dp_mos_uncompressed_delta += uncomp;
408ce636f8bSMatthew Ahrens 	mutex_exit(&dp->dp_lock);
409ce636f8bSMatthew Ahrens }
410ce636f8bSMatthew Ahrens 
411cde58dbcSMatthew Ahrens static int
412cde58dbcSMatthew Ahrens deadlist_enqueue_cb(void *arg, const blkptr_t *bp, dmu_tx_t *tx)
413cde58dbcSMatthew Ahrens {
414cde58dbcSMatthew Ahrens 	dsl_deadlist_t *dl = arg;
415cde58dbcSMatthew Ahrens 	dsl_deadlist_insert(dl, bp, tx);
416cde58dbcSMatthew Ahrens 	return (0);
417cde58dbcSMatthew Ahrens }
418cde58dbcSMatthew Ahrens 
41969962b56SMatthew Ahrens static void
42069962b56SMatthew Ahrens dsl_pool_sync_mos(dsl_pool_t *dp, dmu_tx_t *tx)
42169962b56SMatthew Ahrens {
42269962b56SMatthew Ahrens 	zio_t *zio = zio_root(dp->dp_spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
42369962b56SMatthew Ahrens 	dmu_objset_sync(dp->dp_meta_objset, zio, tx);
42469962b56SMatthew Ahrens 	VERIFY0(zio_wait(zio));
42569962b56SMatthew Ahrens 	dprintf_bp(&dp->dp_meta_rootbp, "meta objset rootbp is %s", "");
42669962b56SMatthew Ahrens 	spa_set_rootblkptr(dp->dp_spa, &dp->dp_meta_rootbp);
42769962b56SMatthew Ahrens }
42869962b56SMatthew Ahrens 
42969962b56SMatthew Ahrens static void
43069962b56SMatthew Ahrens dsl_pool_dirty_delta(dsl_pool_t *dp, int64_t delta)
43169962b56SMatthew Ahrens {
43269962b56SMatthew Ahrens 	ASSERT(MUTEX_HELD(&dp->dp_lock));
43369962b56SMatthew Ahrens 
43469962b56SMatthew Ahrens 	if (delta < 0)
43569962b56SMatthew Ahrens 		ASSERT3U(-delta, <=, dp->dp_dirty_total);
43669962b56SMatthew Ahrens 
43769962b56SMatthew Ahrens 	dp->dp_dirty_total += delta;
43869962b56SMatthew Ahrens 
43969962b56SMatthew Ahrens 	/*
44069962b56SMatthew Ahrens 	 * Note: we signal even when increasing dp_dirty_total.
44169962b56SMatthew Ahrens 	 * This ensures forward progress -- each thread wakes the next waiter.
44269962b56SMatthew Ahrens 	 */
44369962b56SMatthew Ahrens 	if (dp->dp_dirty_total <= zfs_dirty_data_max)
44469962b56SMatthew Ahrens 		cv_signal(&dp->dp_spaceavail_cv);
44569962b56SMatthew Ahrens }
44669962b56SMatthew Ahrens 
447fa9e4066Sahrens void
448fa9e4066Sahrens dsl_pool_sync(dsl_pool_t *dp, uint64_t txg)
449fa9e4066Sahrens {
450c717a561Smaybee 	zio_t *zio;
451fa9e4066Sahrens 	dmu_tx_t *tx;
452c717a561Smaybee 	dsl_dir_t *dd;
453c717a561Smaybee 	dsl_dataset_t *ds;
454503ad85cSMatthew Ahrens 	objset_t *mos = dp->dp_meta_objset;
455ce636f8bSMatthew Ahrens 	list_t synced_datasets;
456ce636f8bSMatthew Ahrens 
457ce636f8bSMatthew Ahrens 	list_create(&synced_datasets, sizeof (dsl_dataset_t),
458ce636f8bSMatthew Ahrens 	    offsetof(dsl_dataset_t, ds_synced_link));
459fa9e4066Sahrens 
460fa9e4066Sahrens 	tx = dmu_tx_create_assigned(dp, txg);
461fa9e4066Sahrens 
46269962b56SMatthew Ahrens 	/*
46369962b56SMatthew Ahrens 	 * Write out all dirty blocks of dirty datasets.
46469962b56SMatthew Ahrens 	 */
465c717a561Smaybee 	zio = zio_root(dp->dp_spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
46669962b56SMatthew Ahrens 	while ((ds = txg_list_remove(&dp->dp_dirty_datasets, txg)) != NULL) {
46714843421SMatthew Ahrens 		/*
46814843421SMatthew Ahrens 		 * We must not sync any non-MOS datasets twice, because
46914843421SMatthew Ahrens 		 * we may have taken a snapshot of them.  However, we
47014843421SMatthew Ahrens 		 * may sync newly-created datasets on pass 2.
47114843421SMatthew Ahrens 		 */
47214843421SMatthew Ahrens 		ASSERT(!list_link_active(&ds->ds_synced_link));
473ce636f8bSMatthew Ahrens 		list_insert_tail(&synced_datasets, ds);
474c717a561Smaybee 		dsl_dataset_sync(ds, zio, tx);
475c717a561Smaybee 	}
47669962b56SMatthew Ahrens 	VERIFY0(zio_wait(zio));
47714843421SMatthew Ahrens 
47869962b56SMatthew Ahrens 	/*
47969962b56SMatthew Ahrens 	 * We have written all of the accounted dirty data, so our
48069962b56SMatthew Ahrens 	 * dp_space_towrite should now be zero.  However, some seldom-used
48169962b56SMatthew Ahrens 	 * code paths do not adhere to this (e.g. dbuf_undirty(), also
48269962b56SMatthew Ahrens 	 * rounding error in dbuf_write_physdone).
48369962b56SMatthew Ahrens 	 * Shore up the accounting of any dirtied space now.
48469962b56SMatthew Ahrens 	 */
48569962b56SMatthew Ahrens 	dsl_pool_undirty_space(dp, dp->dp_dirty_pertxg[txg & TXG_MASK], txg);
486c717a561Smaybee 
487ce636f8bSMatthew Ahrens 	/*
488ce636f8bSMatthew Ahrens 	 * After the data blocks have been written (ensured by the zio_wait()
489ce636f8bSMatthew Ahrens 	 * above), update the user/group space accounting.
490ce636f8bSMatthew Ahrens 	 */
49169962b56SMatthew Ahrens 	for (ds = list_head(&synced_datasets); ds != NULL;
49269962b56SMatthew Ahrens 	    ds = list_next(&synced_datasets, ds)) {
4930a586ceaSMark Shellenbaum 		dmu_objset_do_userquota_updates(ds->ds_objset, tx);
49469962b56SMatthew Ahrens 	}
49514843421SMatthew Ahrens 
49614843421SMatthew Ahrens 	/*
49714843421SMatthew Ahrens 	 * Sync the datasets again to push out the changes due to
4983f9d6ad7SLin Ling 	 * userspace updates.  This must be done before we process the
499ce636f8bSMatthew Ahrens 	 * sync tasks, so that any snapshots will have the correct
500ce636f8bSMatthew Ahrens 	 * user accounting information (and we won't get confused
501ce636f8bSMatthew Ahrens 	 * about which blocks are part of the snapshot).
50214843421SMatthew Ahrens 	 */
50314843421SMatthew Ahrens 	zio = zio_root(dp->dp_spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
50469962b56SMatthew Ahrens 	while ((ds = txg_list_remove(&dp->dp_dirty_datasets, txg)) != NULL) {
50514843421SMatthew Ahrens 		ASSERT(list_link_active(&ds->ds_synced_link));
50614843421SMatthew Ahrens 		dmu_buf_rele(ds->ds_dbuf, ds);
50714843421SMatthew Ahrens 		dsl_dataset_sync(ds, zio, tx);
50814843421SMatthew Ahrens 	}
50969962b56SMatthew Ahrens 	VERIFY0(zio_wait(zio));
51014843421SMatthew Ahrens 
511b24ab676SJeff Bonwick 	/*
512ce636f8bSMatthew Ahrens 	 * Now that the datasets have been completely synced, we can
513ce636f8bSMatthew Ahrens 	 * clean up our in-memory structures accumulated while syncing:
514ce636f8bSMatthew Ahrens 	 *
515ce636f8bSMatthew Ahrens 	 *  - move dead blocks from the pending deadlist to the on-disk deadlist
516ce636f8bSMatthew Ahrens 	 *  - release hold from dsl_dataset_dirty()
517b24ab676SJeff Bonwick 	 */
51869962b56SMatthew Ahrens 	while ((ds = list_remove_head(&synced_datasets)) != NULL) {
519ce636f8bSMatthew Ahrens 		objset_t *os = ds->ds_objset;
520cde58dbcSMatthew Ahrens 		bplist_iterate(&ds->ds_pending_deadlist,
521cde58dbcSMatthew Ahrens 		    deadlist_enqueue_cb, &ds->ds_deadlist, tx);
522ce636f8bSMatthew Ahrens 		ASSERT(!dmu_objset_is_dirty(os, txg));
523ce636f8bSMatthew Ahrens 		dmu_buf_rele(ds->ds_dbuf, ds);
524cde58dbcSMatthew Ahrens 	}
52569962b56SMatthew Ahrens 	while ((dd = txg_list_remove(&dp->dp_dirty_dirs, txg)) != NULL) {
526c717a561Smaybee 		dsl_dir_sync(dd, tx);
52769962b56SMatthew Ahrens 	}
528fa9e4066Sahrens 
529ce636f8bSMatthew Ahrens 	/*
530ce636f8bSMatthew Ahrens 	 * The MOS's space is accounted for in the pool/$MOS
531ce636f8bSMatthew Ahrens 	 * (dp_mos_dir).  We can't modify the mos while we're syncing
532ce636f8bSMatthew Ahrens 	 * it, so we remember the deltas and apply them here.
533ce636f8bSMatthew Ahrens 	 */
534ce636f8bSMatthew Ahrens 	if (dp->dp_mos_used_delta != 0 || dp->dp_mos_compressed_delta != 0 ||
535ce636f8bSMatthew Ahrens 	    dp->dp_mos_uncompressed_delta != 0) {
536ce636f8bSMatthew Ahrens 		dsl_dir_diduse_space(dp->dp_mos_dir, DD_USED_HEAD,
537ce636f8bSMatthew Ahrens 		    dp->dp_mos_used_delta,
538ce636f8bSMatthew Ahrens 		    dp->dp_mos_compressed_delta,
539ce636f8bSMatthew Ahrens 		    dp->dp_mos_uncompressed_delta, tx);
540ce636f8bSMatthew Ahrens 		dp->dp_mos_used_delta = 0;
541ce636f8bSMatthew Ahrens 		dp->dp_mos_compressed_delta = 0;
542ce636f8bSMatthew Ahrens 		dp->dp_mos_uncompressed_delta = 0;
543ce636f8bSMatthew Ahrens 	}
544ce636f8bSMatthew Ahrens 
545503ad85cSMatthew Ahrens 	if (list_head(&mos->os_dirty_dnodes[txg & TXG_MASK]) != NULL ||
546503ad85cSMatthew Ahrens 	    list_head(&mos->os_free_dnodes[txg & TXG_MASK]) != NULL) {
54769962b56SMatthew Ahrens 		dsl_pool_sync_mos(dp, tx);
548fa9e4066Sahrens 	}
549fa9e4066Sahrens 
550ce636f8bSMatthew Ahrens 	/*
551ce636f8bSMatthew Ahrens 	 * If we modify a dataset in the same txg that we want to destroy it,
552ce636f8bSMatthew Ahrens 	 * its dsl_dir's dd_dbuf will be dirty, and thus have a hold on it.
553ce636f8bSMatthew Ahrens 	 * dsl_dir_destroy_check() will fail if there are unexpected holds.
554ce636f8bSMatthew Ahrens 	 * Therefore, we want to sync the MOS (thus syncing the dd_dbuf
555ce636f8bSMatthew Ahrens 	 * and clearing the hold on it) before we process the sync_tasks.
556ce636f8bSMatthew Ahrens 	 * The MOS data dirtied by the sync_tasks will be synced on the next
557ce636f8bSMatthew Ahrens 	 * pass.
558ce636f8bSMatthew Ahrens 	 */
559ce636f8bSMatthew Ahrens 	if (!txg_list_empty(&dp->dp_sync_tasks, txg)) {
5603b2aab18SMatthew Ahrens 		dsl_sync_task_t *dst;
561ce636f8bSMatthew Ahrens 		/*
562ce636f8bSMatthew Ahrens 		 * No more sync tasks should have been added while we
563ce636f8bSMatthew Ahrens 		 * were syncing.
564ce636f8bSMatthew Ahrens 		 */
56569962b56SMatthew Ahrens 		ASSERT3U(spa_sync_pass(dp->dp_spa), ==, 1);
56669962b56SMatthew Ahrens 		while ((dst = txg_list_remove(&dp->dp_sync_tasks, txg)) != NULL)
5673b2aab18SMatthew Ahrens 			dsl_sync_task_sync(dst, tx);
568ce636f8bSMatthew Ahrens 	}
569ce636f8bSMatthew Ahrens 
570fa9e4066Sahrens 	dmu_tx_commit(tx);
57105715f94SMark Maybee 
57269962b56SMatthew Ahrens 	DTRACE_PROBE2(dsl_pool_sync__done, dsl_pool_t *dp, dp, uint64_t, txg);
573fa9e4066Sahrens }
574fa9e4066Sahrens 
575fa9e4066Sahrens void
576b24ab676SJeff Bonwick dsl_pool_sync_done(dsl_pool_t *dp, uint64_t txg)
577fa9e4066Sahrens {
578ce636f8bSMatthew Ahrens 	zilog_t *zilog;
579fa9e4066Sahrens 
580ce636f8bSMatthew Ahrens 	while (zilog = txg_list_remove(&dp->dp_dirty_zilogs, txg)) {
58169962b56SMatthew Ahrens 		dsl_dataset_t *ds = dmu_objset_ds(zilog->zl_os);
582ce636f8bSMatthew Ahrens 		zil_clean(zilog, txg);
583ce636f8bSMatthew Ahrens 		ASSERT(!dmu_objset_is_dirty(zilog->zl_os, txg));
584ce636f8bSMatthew Ahrens 		dmu_buf_rele(ds->ds_dbuf, zilog);
585fa9e4066Sahrens 	}
586b24ab676SJeff Bonwick 	ASSERT(!dmu_objset_is_dirty(dp->dp_meta_objset, txg));
587fa9e4066Sahrens }
588fa9e4066Sahrens 
589c717a561Smaybee /*
590c717a561Smaybee  * TRUE if the current thread is the tx_sync_thread or if we
591c717a561Smaybee  * are being called from SPA context during pool initialization.
592c717a561Smaybee  */
593fa9e4066Sahrens int
594fa9e4066Sahrens dsl_pool_sync_context(dsl_pool_t *dp)
595fa9e4066Sahrens {
596fa9e4066Sahrens 	return (curthread == dp->dp_tx.tx_sync_thread ||
597ad135b5dSChristopher Siden 	    spa_is_initializing(dp->dp_spa));
598fa9e4066Sahrens }
599fa9e4066Sahrens 
600fa9e4066Sahrens uint64_t
601fa9e4066Sahrens dsl_pool_adjustedsize(dsl_pool_t *dp, boolean_t netfree)
602fa9e4066Sahrens {
603fa9e4066Sahrens 	uint64_t space, resv;
604fa9e4066Sahrens 
605fa9e4066Sahrens 	/*
60644cd46caSbillm 	 * Reserve about 1.6% (1/64), or at least 32MB, for allocation
607fa9e4066Sahrens 	 * efficiency.
608fa9e4066Sahrens 	 * XXX The intent log is not accounted for, so it must fit
609fa9e4066Sahrens 	 * within this slop.
610fa9e4066Sahrens 	 *
611fa9e4066Sahrens 	 * If we're trying to assess whether it's OK to do a free,
612fa9e4066Sahrens 	 * cut the reservation in half to allow forward progress
613fa9e4066Sahrens 	 * (e.g. make it possible to rm(1) files from a full pool).
614fa9e4066Sahrens 	 */
615485bbbf5SGeorge Wilson 	space = spa_get_dspace(dp->dp_spa);
61644cd46caSbillm 	resv = MAX(space >> 6, SPA_MINDEVSIZE >> 1);
617fa9e4066Sahrens 	if (netfree)
618fa9e4066Sahrens 		resv >>= 1;
619fa9e4066Sahrens 
620fa9e4066Sahrens 	return (space - resv);
621fa9e4066Sahrens }
6221ab7f2deSmaybee 
62369962b56SMatthew Ahrens boolean_t
62469962b56SMatthew Ahrens dsl_pool_need_dirty_delay(dsl_pool_t *dp)
6251ab7f2deSmaybee {
62669962b56SMatthew Ahrens 	uint64_t delay_min_bytes =
62769962b56SMatthew Ahrens 	    zfs_dirty_data_max * zfs_delay_min_dirty_percent / 100;
62869962b56SMatthew Ahrens 	boolean_t rv;
6291ab7f2deSmaybee 
63069962b56SMatthew Ahrens 	mutex_enter(&dp->dp_lock);
63169962b56SMatthew Ahrens 	if (dp->dp_dirty_total > zfs_dirty_data_sync)
63269962b56SMatthew Ahrens 		txg_kick(dp);
63369962b56SMatthew Ahrens 	rv = (dp->dp_dirty_total > delay_min_bytes);
63469962b56SMatthew Ahrens 	mutex_exit(&dp->dp_lock);
63569962b56SMatthew Ahrens 	return (rv);
6361ab7f2deSmaybee }
6371ab7f2deSmaybee 
6381ab7f2deSmaybee void
63969962b56SMatthew Ahrens dsl_pool_dirty_space(dsl_pool_t *dp, int64_t space, dmu_tx_t *tx)
6401ab7f2deSmaybee {
64169962b56SMatthew Ahrens 	if (space > 0) {
64269962b56SMatthew Ahrens 		mutex_enter(&dp->dp_lock);
64369962b56SMatthew Ahrens 		dp->dp_dirty_pertxg[tx->tx_txg & TXG_MASK] += space;
64469962b56SMatthew Ahrens 		dsl_pool_dirty_delta(dp, space);
64569962b56SMatthew Ahrens 		mutex_exit(&dp->dp_lock);
6461ab7f2deSmaybee 	}
6471ab7f2deSmaybee }
6481ab7f2deSmaybee 
6491ab7f2deSmaybee void
65069962b56SMatthew Ahrens dsl_pool_undirty_space(dsl_pool_t *dp, int64_t space, uint64_t txg)
6511ab7f2deSmaybee {
65269962b56SMatthew Ahrens 	ASSERT3S(space, >=, 0);
65369962b56SMatthew Ahrens 	if (space == 0)
65469962b56SMatthew Ahrens 		return;
65569962b56SMatthew Ahrens 	mutex_enter(&dp->dp_lock);
65669962b56SMatthew Ahrens 	if (dp->dp_dirty_pertxg[txg & TXG_MASK] < space) {
65769962b56SMatthew Ahrens 		/* XXX writing something we didn't dirty? */
65869962b56SMatthew Ahrens 		space = dp->dp_dirty_pertxg[txg & TXG_MASK];
6591ab7f2deSmaybee 	}
66069962b56SMatthew Ahrens 	ASSERT3U(dp->dp_dirty_pertxg[txg & TXG_MASK], >=, space);
66169962b56SMatthew Ahrens 	dp->dp_dirty_pertxg[txg & TXG_MASK] -= space;
66269962b56SMatthew Ahrens 	ASSERT3U(dp->dp_dirty_total, >=, space);
66369962b56SMatthew Ahrens 	dsl_pool_dirty_delta(dp, -space);
66469962b56SMatthew Ahrens 	mutex_exit(&dp->dp_lock);
6651ab7f2deSmaybee }
666088f3894Sahrens 
667088f3894Sahrens /* ARGSUSED */
668088f3894Sahrens static int
6693b2aab18SMatthew Ahrens upgrade_clones_cb(dsl_pool_t *dp, dsl_dataset_t *hds, void *arg)
670088f3894Sahrens {
671088f3894Sahrens 	dmu_tx_t *tx = arg;
672088f3894Sahrens 	dsl_dataset_t *ds, *prev = NULL;
673088f3894Sahrens 	int err;
674088f3894Sahrens 
6753b2aab18SMatthew Ahrens 	err = dsl_dataset_hold_obj(dp, hds->ds_object, FTAG, &ds);
676088f3894Sahrens 	if (err)
677088f3894Sahrens 		return (err);
678088f3894Sahrens 
679088f3894Sahrens 	while (ds->ds_phys->ds_prev_snap_obj != 0) {
680088f3894Sahrens 		err = dsl_dataset_hold_obj(dp, ds->ds_phys->ds_prev_snap_obj,
681088f3894Sahrens 		    FTAG, &prev);
682088f3894Sahrens 		if (err) {
683088f3894Sahrens 			dsl_dataset_rele(ds, FTAG);
684088f3894Sahrens 			return (err);
685088f3894Sahrens 		}
686088f3894Sahrens 
687088f3894Sahrens 		if (prev->ds_phys->ds_next_snap_obj != ds->ds_object)
688088f3894Sahrens 			break;
689088f3894Sahrens 		dsl_dataset_rele(ds, FTAG);
690088f3894Sahrens 		ds = prev;
691088f3894Sahrens 		prev = NULL;
692088f3894Sahrens 	}
693088f3894Sahrens 
694088f3894Sahrens 	if (prev == NULL) {
695088f3894Sahrens 		prev = dp->dp_origin_snap;
696088f3894Sahrens 
697088f3894Sahrens 		/*
698088f3894Sahrens 		 * The $ORIGIN can't have any data, or the accounting
699088f3894Sahrens 		 * will be wrong.
700088f3894Sahrens 		 */
7013b2aab18SMatthew Ahrens 		ASSERT0(prev->ds_phys->ds_bp.blk_birth);
702088f3894Sahrens 
703088f3894Sahrens 		/* The origin doesn't get attached to itself */
704088f3894Sahrens 		if (ds->ds_object == prev->ds_object) {
705088f3894Sahrens 			dsl_dataset_rele(ds, FTAG);
706088f3894Sahrens 			return (0);
707088f3894Sahrens 		}
708088f3894Sahrens 
709088f3894Sahrens 		dmu_buf_will_dirty(ds->ds_dbuf, tx);
710088f3894Sahrens 		ds->ds_phys->ds_prev_snap_obj = prev->ds_object;
711088f3894Sahrens 		ds->ds_phys->ds_prev_snap_txg = prev->ds_phys->ds_creation_txg;
712088f3894Sahrens 
713088f3894Sahrens 		dmu_buf_will_dirty(ds->ds_dir->dd_dbuf, tx);
714088f3894Sahrens 		ds->ds_dir->dd_phys->dd_origin_obj = prev->ds_object;
715088f3894Sahrens 
716088f3894Sahrens 		dmu_buf_will_dirty(prev->ds_dbuf, tx);
717088f3894Sahrens 		prev->ds_phys->ds_num_children++;
718088f3894Sahrens 
719088f3894Sahrens 		if (ds->ds_phys->ds_next_snap_obj == 0) {
720088f3894Sahrens 			ASSERT(ds->ds_prev == NULL);
7213b2aab18SMatthew Ahrens 			VERIFY0(dsl_dataset_hold_obj(dp,
722088f3894Sahrens 			    ds->ds_phys->ds_prev_snap_obj, ds, &ds->ds_prev));
723088f3894Sahrens 		}
724088f3894Sahrens 	}
725088f3894Sahrens 
7263b2aab18SMatthew Ahrens 	ASSERT3U(ds->ds_dir->dd_phys->dd_origin_obj, ==, prev->ds_object);
7273b2aab18SMatthew Ahrens 	ASSERT3U(ds->ds_phys->ds_prev_snap_obj, ==, prev->ds_object);
728088f3894Sahrens 
729088f3894Sahrens 	if (prev->ds_phys->ds_next_clones_obj == 0) {
730c33e334fSMatthew Ahrens 		dmu_buf_will_dirty(prev->ds_dbuf, tx);
731088f3894Sahrens 		prev->ds_phys->ds_next_clones_obj =
732088f3894Sahrens 		    zap_create(dp->dp_meta_objset,
733088f3894Sahrens 		    DMU_OT_NEXT_CLONES, DMU_OT_NONE, 0, tx);
734088f3894Sahrens 	}
7353b2aab18SMatthew Ahrens 	VERIFY0(zap_add_int(dp->dp_meta_objset,
736088f3894Sahrens 	    prev->ds_phys->ds_next_clones_obj, ds->ds_object, tx));
737088f3894Sahrens 
738088f3894Sahrens 	dsl_dataset_rele(ds, FTAG);
739088f3894Sahrens 	if (prev != dp->dp_origin_snap)
740088f3894Sahrens 		dsl_dataset_rele(prev, FTAG);
741088f3894Sahrens 	return (0);
742088f3894Sahrens }
743088f3894Sahrens 
744088f3894Sahrens void
745088f3894Sahrens dsl_pool_upgrade_clones(dsl_pool_t *dp, dmu_tx_t *tx)
746088f3894Sahrens {
747088f3894Sahrens 	ASSERT(dmu_tx_is_syncing(tx));
748088f3894Sahrens 	ASSERT(dp->dp_origin_snap != NULL);
749088f3894Sahrens 
7503b2aab18SMatthew Ahrens 	VERIFY0(dmu_objset_find_dp(dp, dp->dp_root_dir_obj, upgrade_clones_cb,
751c33e334fSMatthew Ahrens 	    tx, DS_FIND_CHILDREN));
752088f3894Sahrens }
753088f3894Sahrens 
754cde58dbcSMatthew Ahrens /* ARGSUSED */
755cde58dbcSMatthew Ahrens static int
7563b2aab18SMatthew Ahrens upgrade_dir_clones_cb(dsl_pool_t *dp, dsl_dataset_t *ds, void *arg)
757cde58dbcSMatthew Ahrens {
758cde58dbcSMatthew Ahrens 	dmu_tx_t *tx = arg;
759cde58dbcSMatthew Ahrens 	objset_t *mos = dp->dp_meta_objset;
760cde58dbcSMatthew Ahrens 
7613b2aab18SMatthew Ahrens 	if (ds->ds_dir->dd_phys->dd_origin_obj != 0) {
762cde58dbcSMatthew Ahrens 		dsl_dataset_t *origin;
763cde58dbcSMatthew Ahrens 
7643b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(dp,
765cde58dbcSMatthew Ahrens 		    ds->ds_dir->dd_phys->dd_origin_obj, FTAG, &origin));
766cde58dbcSMatthew Ahrens 
767cde58dbcSMatthew Ahrens 		if (origin->ds_dir->dd_phys->dd_clones == 0) {
768cde58dbcSMatthew Ahrens 			dmu_buf_will_dirty(origin->ds_dir->dd_dbuf, tx);
769cde58dbcSMatthew Ahrens 			origin->ds_dir->dd_phys->dd_clones = zap_create(mos,
770cde58dbcSMatthew Ahrens 			    DMU_OT_DSL_CLONES, DMU_OT_NONE, 0, tx);
771cde58dbcSMatthew Ahrens 		}
772cde58dbcSMatthew Ahrens 
7733b2aab18SMatthew Ahrens 		VERIFY0(zap_add_int(dp->dp_meta_objset,
7743b2aab18SMatthew Ahrens 		    origin->ds_dir->dd_phys->dd_clones, ds->ds_object, tx));
775cde58dbcSMatthew Ahrens 
776cde58dbcSMatthew Ahrens 		dsl_dataset_rele(origin, FTAG);
777cde58dbcSMatthew Ahrens 	}
778cde58dbcSMatthew Ahrens 	return (0);
779cde58dbcSMatthew Ahrens }
780cde58dbcSMatthew Ahrens 
781cde58dbcSMatthew Ahrens void
782cde58dbcSMatthew Ahrens dsl_pool_upgrade_dir_clones(dsl_pool_t *dp, dmu_tx_t *tx)
783cde58dbcSMatthew Ahrens {
784cde58dbcSMatthew Ahrens 	ASSERT(dmu_tx_is_syncing(tx));
785cde58dbcSMatthew Ahrens 	uint64_t obj;
786cde58dbcSMatthew Ahrens 
787cde58dbcSMatthew Ahrens 	(void) dsl_dir_create_sync(dp, dp->dp_root_dir, FREE_DIR_NAME, tx);
7883b2aab18SMatthew Ahrens 	VERIFY0(dsl_pool_open_special_dir(dp,
789cde58dbcSMatthew Ahrens 	    FREE_DIR_NAME, &dp->dp_free_dir));
790cde58dbcSMatthew Ahrens 
791cde58dbcSMatthew Ahrens 	/*
792cde58dbcSMatthew Ahrens 	 * We can't use bpobj_alloc(), because spa_version() still
793cde58dbcSMatthew Ahrens 	 * returns the old version, and we need a new-version bpobj with
794cde58dbcSMatthew Ahrens 	 * subobj support.  So call dmu_object_alloc() directly.
795cde58dbcSMatthew Ahrens 	 */
796cde58dbcSMatthew Ahrens 	obj = dmu_object_alloc(dp->dp_meta_objset, DMU_OT_BPOBJ,
797cde58dbcSMatthew Ahrens 	    SPA_MAXBLOCKSIZE, DMU_OT_BPOBJ_HDR, sizeof (bpobj_phys_t), tx);
7983b2aab18SMatthew Ahrens 	VERIFY0(zap_add(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
799cde58dbcSMatthew Ahrens 	    DMU_POOL_FREE_BPOBJ, sizeof (uint64_t), 1, &obj, tx));
8003b2aab18SMatthew Ahrens 	VERIFY0(bpobj_open(&dp->dp_free_bpobj, dp->dp_meta_objset, obj));
801cde58dbcSMatthew Ahrens 
8023b2aab18SMatthew Ahrens 	VERIFY0(dmu_objset_find_dp(dp, dp->dp_root_dir_obj,
803cde58dbcSMatthew Ahrens 	    upgrade_dir_clones_cb, tx, DS_FIND_CHILDREN));
804cde58dbcSMatthew Ahrens }
805cde58dbcSMatthew Ahrens 
806088f3894Sahrens void
807088f3894Sahrens dsl_pool_create_origin(dsl_pool_t *dp, dmu_tx_t *tx)
808088f3894Sahrens {
809088f3894Sahrens 	uint64_t dsobj;
810088f3894Sahrens 	dsl_dataset_t *ds;
811088f3894Sahrens 
812088f3894Sahrens 	ASSERT(dmu_tx_is_syncing(tx));
813088f3894Sahrens 	ASSERT(dp->dp_origin_snap == NULL);
8143b2aab18SMatthew Ahrens 	ASSERT(rrw_held(&dp->dp_config_rwlock, RW_WRITER));
815088f3894Sahrens 
816088f3894Sahrens 	/* create the origin dir, ds, & snap-ds */
817088f3894Sahrens 	dsobj = dsl_dataset_create_sync(dp->dp_root_dir, ORIGIN_DIR_NAME,
818088f3894Sahrens 	    NULL, 0, kcred, tx);
8193b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold_obj(dp, dsobj, FTAG, &ds));
8203b2aab18SMatthew Ahrens 	dsl_dataset_snapshot_sync_impl(ds, ORIGIN_DIR_NAME, tx);
8213b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold_obj(dp, ds->ds_phys->ds_prev_snap_obj,
822088f3894Sahrens 	    dp, &dp->dp_origin_snap));
823088f3894Sahrens 	dsl_dataset_rele(ds, FTAG);
824088f3894Sahrens }
8259d3574bfSNeil Perrin 
8269d3574bfSNeil Perrin taskq_t *
8279d3574bfSNeil Perrin dsl_pool_vnrele_taskq(dsl_pool_t *dp)
8289d3574bfSNeil Perrin {
8299d3574bfSNeil Perrin 	return (dp->dp_vnrele_taskq);
8309d3574bfSNeil Perrin }
831ca45db41SChris Kirby 
832ca45db41SChris Kirby /*
833ca45db41SChris Kirby  * Walk through the pool-wide zap object of temporary snapshot user holds
834ca45db41SChris Kirby  * and release them.
835ca45db41SChris Kirby  */
836ca45db41SChris Kirby void
837ca45db41SChris Kirby dsl_pool_clean_tmp_userrefs(dsl_pool_t *dp)
838ca45db41SChris Kirby {
839ca45db41SChris Kirby 	zap_attribute_t za;
840ca45db41SChris Kirby 	zap_cursor_t zc;
841ca45db41SChris Kirby 	objset_t *mos = dp->dp_meta_objset;
842ca45db41SChris Kirby 	uint64_t zapobj = dp->dp_tmp_userrefs_obj;
843a7a845e4SSteven Hartland 	nvlist_t *holds;
844ca45db41SChris Kirby 
845ca45db41SChris Kirby 	if (zapobj == 0)
846ca45db41SChris Kirby 		return;
847ca45db41SChris Kirby 	ASSERT(spa_version(dp->dp_spa) >= SPA_VERSION_USERREFS);
848ca45db41SChris Kirby 
849a7a845e4SSteven Hartland 	holds = fnvlist_alloc();
850a7a845e4SSteven Hartland 
851ca45db41SChris Kirby 	for (zap_cursor_init(&zc, mos, zapobj);
852ca45db41SChris Kirby 	    zap_cursor_retrieve(&zc, &za) == 0;
853ca45db41SChris Kirby 	    zap_cursor_advance(&zc)) {
854ca45db41SChris Kirby 		char *htag;
855a7a845e4SSteven Hartland 		nvlist_t *tags;
856ca45db41SChris Kirby 
857ca45db41SChris Kirby 		htag = strchr(za.za_name, '-');
858ca45db41SChris Kirby 		*htag = '\0';
859ca45db41SChris Kirby 		++htag;
860a7a845e4SSteven Hartland 		if (nvlist_lookup_nvlist(holds, za.za_name, &tags) != 0) {
861a7a845e4SSteven Hartland 			tags = fnvlist_alloc();
862a7a845e4SSteven Hartland 			fnvlist_add_boolean(tags, htag);
863a7a845e4SSteven Hartland 			fnvlist_add_nvlist(holds, za.za_name, tags);
864a7a845e4SSteven Hartland 			fnvlist_free(tags);
865a7a845e4SSteven Hartland 		} else {
866a7a845e4SSteven Hartland 			fnvlist_add_boolean(tags, htag);
867a7a845e4SSteven Hartland 		}
868ca45db41SChris Kirby 	}
869a7a845e4SSteven Hartland 	dsl_dataset_user_release_tmp(dp, holds);
870a7a845e4SSteven Hartland 	fnvlist_free(holds);
871ca45db41SChris Kirby 	zap_cursor_fini(&zc);
872ca45db41SChris Kirby }
873ca45db41SChris Kirby 
874ca45db41SChris Kirby /*
875ca45db41SChris Kirby  * Create the pool-wide zap object for storing temporary snapshot holds.
876ca45db41SChris Kirby  */
877ca45db41SChris Kirby void
878ca45db41SChris Kirby dsl_pool_user_hold_create_obj(dsl_pool_t *dp, dmu_tx_t *tx)
879ca45db41SChris Kirby {
880ca45db41SChris Kirby 	objset_t *mos = dp->dp_meta_objset;
881ca45db41SChris Kirby 
882ca45db41SChris Kirby 	ASSERT(dp->dp_tmp_userrefs_obj == 0);
883ca45db41SChris Kirby 	ASSERT(dmu_tx_is_syncing(tx));
884ca45db41SChris Kirby 
885ad135b5dSChristopher Siden 	dp->dp_tmp_userrefs_obj = zap_create_link(mos, DMU_OT_USERREFS,
886ad135b5dSChristopher Siden 	    DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_TMP_USERREFS, tx);
887ca45db41SChris Kirby }
888ca45db41SChris Kirby 
889ca45db41SChris Kirby static int
890ca45db41SChris Kirby dsl_pool_user_hold_rele_impl(dsl_pool_t *dp, uint64_t dsobj,
8913b2aab18SMatthew Ahrens     const char *tag, uint64_t now, dmu_tx_t *tx, boolean_t holding)
892ca45db41SChris Kirby {
893ca45db41SChris Kirby 	objset_t *mos = dp->dp_meta_objset;
894ca45db41SChris Kirby 	uint64_t zapobj = dp->dp_tmp_userrefs_obj;
895ca45db41SChris Kirby 	char *name;
896ca45db41SChris Kirby 	int error;
897ca45db41SChris Kirby 
898ca45db41SChris Kirby 	ASSERT(spa_version(dp->dp_spa) >= SPA_VERSION_USERREFS);
899ca45db41SChris Kirby 	ASSERT(dmu_tx_is_syncing(tx));
900ca45db41SChris Kirby 
901ca45db41SChris Kirby 	/*
902ca45db41SChris Kirby 	 * If the pool was created prior to SPA_VERSION_USERREFS, the
903ca45db41SChris Kirby 	 * zap object for temporary holds might not exist yet.
904ca45db41SChris Kirby 	 */
905ca45db41SChris Kirby 	if (zapobj == 0) {
906ca45db41SChris Kirby 		if (holding) {
907ca45db41SChris Kirby 			dsl_pool_user_hold_create_obj(dp, tx);
908ca45db41SChris Kirby 			zapobj = dp->dp_tmp_userrefs_obj;
909ca45db41SChris Kirby 		} else {
910be6fd75aSMatthew Ahrens 			return (SET_ERROR(ENOENT));
911ca45db41SChris Kirby 		}
912ca45db41SChris Kirby 	}
913ca45db41SChris Kirby 
914ca45db41SChris Kirby 	name = kmem_asprintf("%llx-%s", (u_longlong_t)dsobj, tag);
915ca45db41SChris Kirby 	if (holding)
9163b2aab18SMatthew Ahrens 		error = zap_add(mos, zapobj, name, 8, 1, &now, tx);
917ca45db41SChris Kirby 	else
918ca45db41SChris Kirby 		error = zap_remove(mos, zapobj, name, tx);
919ca45db41SChris Kirby 	strfree(name);
920ca45db41SChris Kirby 
921ca45db41SChris Kirby 	return (error);
922ca45db41SChris Kirby }
923ca45db41SChris Kirby 
924ca45db41SChris Kirby /*
925ca45db41SChris Kirby  * Add a temporary hold for the given dataset object and tag.
926ca45db41SChris Kirby  */
927ca45db41SChris Kirby int
928ca45db41SChris Kirby dsl_pool_user_hold(dsl_pool_t *dp, uint64_t dsobj, const char *tag,
9293b2aab18SMatthew Ahrens     uint64_t now, dmu_tx_t *tx)
930ca45db41SChris Kirby {
93115508ac0SChris Kirby 	return (dsl_pool_user_hold_rele_impl(dp, dsobj, tag, now, tx, B_TRUE));
932ca45db41SChris Kirby }
933ca45db41SChris Kirby 
934ca45db41SChris Kirby /*
935ca45db41SChris Kirby  * Release a temporary hold for the given dataset object and tag.
936ca45db41SChris Kirby  */
937ca45db41SChris Kirby int
938ca45db41SChris Kirby dsl_pool_user_release(dsl_pool_t *dp, uint64_t dsobj, const char *tag,
939ca45db41SChris Kirby     dmu_tx_t *tx)
940ca45db41SChris Kirby {
941ca45db41SChris Kirby 	return (dsl_pool_user_hold_rele_impl(dp, dsobj, tag, NULL,
942ca45db41SChris Kirby 	    tx, B_FALSE));
943ca45db41SChris Kirby }
9443b2aab18SMatthew Ahrens 
9453b2aab18SMatthew Ahrens /*
9463b2aab18SMatthew Ahrens  * DSL Pool Configuration Lock
9473b2aab18SMatthew Ahrens  *
9483b2aab18SMatthew Ahrens  * The dp_config_rwlock protects against changes to DSL state (e.g. dataset
9493b2aab18SMatthew Ahrens  * creation / destruction / rename / property setting).  It must be held for
9503b2aab18SMatthew Ahrens  * read to hold a dataset or dsl_dir.  I.e. you must call
9513b2aab18SMatthew Ahrens  * dsl_pool_config_enter() or dsl_pool_hold() before calling
9523b2aab18SMatthew Ahrens  * dsl_{dataset,dir}_hold{_obj}.  In most circumstances, the dp_config_rwlock
9533b2aab18SMatthew Ahrens  * must be held continuously until all datasets and dsl_dirs are released.
9543b2aab18SMatthew Ahrens  *
9553b2aab18SMatthew Ahrens  * The only exception to this rule is that if a "long hold" is placed on
9563b2aab18SMatthew Ahrens  * a dataset, then the dp_config_rwlock may be dropped while the dataset
9573b2aab18SMatthew Ahrens  * is still held.  The long hold will prevent the dataset from being
9583b2aab18SMatthew Ahrens  * destroyed -- the destroy will fail with EBUSY.  A long hold can be
9593b2aab18SMatthew Ahrens  * obtained by calling dsl_dataset_long_hold(), or by "owning" a dataset
9603b2aab18SMatthew Ahrens  * (by calling dsl_{dataset,objset}_{try}own{_obj}).
9613b2aab18SMatthew Ahrens  *
9623b2aab18SMatthew Ahrens  * Legitimate long-holders (including owners) should be long-running, cancelable
9633b2aab18SMatthew Ahrens  * tasks that should cause "zfs destroy" to fail.  This includes DMU
9643b2aab18SMatthew Ahrens  * consumers (i.e. a ZPL filesystem being mounted or ZVOL being open),
9653b2aab18SMatthew Ahrens  * "zfs send", and "zfs diff".  There are several other long-holders whose
9663b2aab18SMatthew Ahrens  * uses are suboptimal (e.g. "zfs promote", and zil_suspend()).
9673b2aab18SMatthew Ahrens  *
9683b2aab18SMatthew Ahrens  * The usual formula for long-holding would be:
9693b2aab18SMatthew Ahrens  * dsl_pool_hold()
9703b2aab18SMatthew Ahrens  * dsl_dataset_hold()
9713b2aab18SMatthew Ahrens  * ... perform checks ...
9723b2aab18SMatthew Ahrens  * dsl_dataset_long_hold()
9733b2aab18SMatthew Ahrens  * dsl_pool_rele()
9743b2aab18SMatthew Ahrens  * ... perform long-running task ...
9753b2aab18SMatthew Ahrens  * dsl_dataset_long_rele()
9763b2aab18SMatthew Ahrens  * dsl_dataset_rele()
9773b2aab18SMatthew Ahrens  *
9783b2aab18SMatthew Ahrens  * Note that when the long hold is released, the dataset is still held but
9793b2aab18SMatthew Ahrens  * the pool is not held.  The dataset may change arbitrarily during this time
9803b2aab18SMatthew Ahrens  * (e.g. it could be destroyed).  Therefore you shouldn't do anything to the
9813b2aab18SMatthew Ahrens  * dataset except release it.
9823b2aab18SMatthew Ahrens  *
9833b2aab18SMatthew Ahrens  * User-initiated operations (e.g. ioctls, zfs_ioc_*()) are either read-only
9843b2aab18SMatthew Ahrens  * or modifying operations.
9853b2aab18SMatthew Ahrens  *
9863b2aab18SMatthew Ahrens  * Modifying operations should generally use dsl_sync_task().  The synctask
9873b2aab18SMatthew Ahrens  * infrastructure enforces proper locking strategy with respect to the
9883b2aab18SMatthew Ahrens  * dp_config_rwlock.  See the comment above dsl_sync_task() for details.
9893b2aab18SMatthew Ahrens  *
9903b2aab18SMatthew Ahrens  * Read-only operations will manually hold the pool, then the dataset, obtain
9913b2aab18SMatthew Ahrens  * information from the dataset, then release the pool and dataset.
9923b2aab18SMatthew Ahrens  * dmu_objset_{hold,rele}() are convenience routines that also do the pool
9933b2aab18SMatthew Ahrens  * hold/rele.
9943b2aab18SMatthew Ahrens  */
9953b2aab18SMatthew Ahrens 
9963b2aab18SMatthew Ahrens int
9973b2aab18SMatthew Ahrens dsl_pool_hold(const char *name, void *tag, dsl_pool_t **dp)
9983b2aab18SMatthew Ahrens {
9993b2aab18SMatthew Ahrens 	spa_t *spa;
10003b2aab18SMatthew Ahrens 	int error;
10013b2aab18SMatthew Ahrens 
10023b2aab18SMatthew Ahrens 	error = spa_open(name, &spa, tag);
10033b2aab18SMatthew Ahrens 	if (error == 0) {
10043b2aab18SMatthew Ahrens 		*dp = spa_get_dsl(spa);
10053b2aab18SMatthew Ahrens 		dsl_pool_config_enter(*dp, tag);
10063b2aab18SMatthew Ahrens 	}
10073b2aab18SMatthew Ahrens 	return (error);
10083b2aab18SMatthew Ahrens }
10093b2aab18SMatthew Ahrens 
10103b2aab18SMatthew Ahrens void
10113b2aab18SMatthew Ahrens dsl_pool_rele(dsl_pool_t *dp, void *tag)
10123b2aab18SMatthew Ahrens {
10133b2aab18SMatthew Ahrens 	dsl_pool_config_exit(dp, tag);
10143b2aab18SMatthew Ahrens 	spa_close(dp->dp_spa, tag);
10153b2aab18SMatthew Ahrens }
10163b2aab18SMatthew Ahrens 
10173b2aab18SMatthew Ahrens void
10183b2aab18SMatthew Ahrens dsl_pool_config_enter(dsl_pool_t *dp, void *tag)
10193b2aab18SMatthew Ahrens {
10203b2aab18SMatthew Ahrens 	/*
10213b2aab18SMatthew Ahrens 	 * We use a "reentrant" reader-writer lock, but not reentrantly.
10223b2aab18SMatthew Ahrens 	 *
10233b2aab18SMatthew Ahrens 	 * The rrwlock can (with the track_all flag) track all reading threads,
10243b2aab18SMatthew Ahrens 	 * which is very useful for debugging which code path failed to release
10253b2aab18SMatthew Ahrens 	 * the lock, and for verifying that the *current* thread does hold
10263b2aab18SMatthew Ahrens 	 * the lock.
10273b2aab18SMatthew Ahrens 	 *
10283b2aab18SMatthew Ahrens 	 * (Unlike a rwlock, which knows that N threads hold it for
10293b2aab18SMatthew Ahrens 	 * read, but not *which* threads, so rw_held(RW_READER) returns TRUE
10303b2aab18SMatthew Ahrens 	 * if any thread holds it for read, even if this thread doesn't).
10313b2aab18SMatthew Ahrens 	 */
10323b2aab18SMatthew Ahrens 	ASSERT(!rrw_held(&dp->dp_config_rwlock, RW_READER));
10333b2aab18SMatthew Ahrens 	rrw_enter(&dp->dp_config_rwlock, RW_READER, tag);
10343b2aab18SMatthew Ahrens }
10353b2aab18SMatthew Ahrens 
10363b2aab18SMatthew Ahrens void
10373b2aab18SMatthew Ahrens dsl_pool_config_exit(dsl_pool_t *dp, void *tag)
10383b2aab18SMatthew Ahrens {
10393b2aab18SMatthew Ahrens 	rrw_exit(&dp->dp_config_rwlock, tag);
10403b2aab18SMatthew Ahrens }
10413b2aab18SMatthew Ahrens 
10423b2aab18SMatthew Ahrens boolean_t
10433b2aab18SMatthew Ahrens dsl_pool_config_held(dsl_pool_t *dp)
10443b2aab18SMatthew Ahrens {
10453b2aab18SMatthew Ahrens 	return (RRW_LOCK_HELD(&dp->dp_config_rwlock));
10463b2aab18SMatthew Ahrens }
1047