]> git.proxmox.com Git - mirror_zfs.git/blame - module/zfs/dsl_pool.c
OpenZFS 9700 - ZFS resilvered mirror does not balance reads
[mirror_zfs.git] / module / zfs / dsl_pool.c
CommitLineData
34dc7c2f
BB
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21/*
428870ff 22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
64fc7762 23 * Copyright (c) 2011, 2017 by Delphix. All rights reserved.
95fd54a1 24 * Copyright (c) 2013 Steven Hartland. All rights reserved.
0c66c32d 25 * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
539d33c7 26 * Copyright 2016 Nexenta Systems, Inc. All rights reserved.
34dc7c2f
BB
27 */
28
34dc7c2f
BB
29#include <sys/dsl_pool.h>
30#include <sys/dsl_dataset.h>
428870ff 31#include <sys/dsl_prop.h>
34dc7c2f
BB
32#include <sys/dsl_dir.h>
33#include <sys/dsl_synctask.h>
428870ff
BB
34#include <sys/dsl_scan.h>
35#include <sys/dnode.h>
34dc7c2f
BB
36#include <sys/dmu_tx.h>
37#include <sys/dmu_objset.h>
38#include <sys/arc.h>
39#include <sys/zap.h>
40#include <sys/zio.h>
41#include <sys/zfs_context.h>
42#include <sys/fs/zfs.h>
b128c09f
BB
43#include <sys/zfs_znode.h>
44#include <sys/spa_impl.h>
428870ff 45#include <sys/dsl_deadlist.h>
d2734cce
SD
46#include <sys/vdev_impl.h>
47#include <sys/metaslab_impl.h>
9ae529ec
CS
48#include <sys/bptree.h>
49#include <sys/zfeature.h>
29809a6c 50#include <sys/zil_impl.h>
13fe0198 51#include <sys/dsl_userhold.h>
49ee64e5 52#include <sys/trace_txg.h>
379ca9cf 53#include <sys/mmp.h>
34dc7c2f 54
e8b96c60
MA
55/*
56 * ZFS Write Throttle
57 * ------------------
58 *
59 * ZFS must limit the rate of incoming writes to the rate at which it is able
60 * to sync data modifications to the backend storage. Throttling by too much
61 * creates an artificial limit; throttling by too little can only be sustained
62 * for short periods and would lead to highly lumpy performance. On a per-pool
63 * basis, ZFS tracks the amount of modified (dirty) data. As operations change
64 * data, the amount of dirty data increases; as ZFS syncs out data, the amount
65 * of dirty data decreases. When the amount of dirty data exceeds a
66 * predetermined threshold further modifications are blocked until the amount
67 * of dirty data decreases (as data is synced out).
68 *
69 * The limit on dirty data is tunable, and should be adjusted according to
70 * both the IO capacity and available memory of the system. The larger the
71 * window, the more ZFS is able to aggregate and amortize metadata (and data)
72 * changes. However, memory is a limited resource, and allowing for more dirty
73 * data comes at the cost of keeping other useful data in memory (for example
74 * ZFS data cached by the ARC).
75 *
76 * Implementation
77 *
78 * As buffers are modified dsl_pool_willuse_space() increments both the per-
79 * txg (dp_dirty_pertxg[]) and poolwide (dp_dirty_total) accounting of
80 * dirty space used; dsl_pool_dirty_space() decrements those values as data
81 * is synced out from dsl_pool_sync(). While only the poolwide value is
82 * relevant, the per-txg value is useful for debugging. The tunable
83 * zfs_dirty_data_max determines the dirty space limit. Once that value is
84 * exceeded, new writes are halted until space frees up.
85 *
86 * The zfs_dirty_data_sync tunable dictates the threshold at which we
87 * ensure that there is a txg syncing (see the comment in txg.c for a full
88 * description of transaction group stages).
89 *
90 * The IO scheduler uses both the dirty space limit and current amount of
91 * dirty data as inputs. Those values affect the number of concurrent IOs ZFS
92 * issues. See the comment in vdev_queue.c for details of the IO scheduler.
93 *
94 * The delay is also calculated based on the amount of dirty data. See the
95 * comment above dmu_tx_delay() for details.
96 */
97
98/*
99 * zfs_dirty_data_max will be set to zfs_dirty_data_max_percent% of all memory,
100 * capped at zfs_dirty_data_max_max. It can also be overridden with a module
101 * parameter.
102 */
103unsigned long zfs_dirty_data_max = 0;
104unsigned long zfs_dirty_data_max_max = 0;
105int zfs_dirty_data_max_percent = 10;
106int zfs_dirty_data_max_max_percent = 25;
b128c09f 107
e8b96c60
MA
108/*
109 * If there is at least this much dirty data, push out a txg.
110 */
111unsigned long zfs_dirty_data_sync = 64 * 1024 * 1024;
34dc7c2f 112
e8b96c60
MA
113/*
114 * Once there is this amount of dirty data, the dmu_tx_delay() will kick in
115 * and delay each transaction.
116 * This value should be >= zfs_vdev_async_write_active_max_dirty_percent.
117 */
118int zfs_delay_min_dirty_percent = 60;
b128c09f 119
e8b96c60
MA
120/*
121 * This controls how quickly the delay approaches infinity.
122 * Larger values cause it to delay more for a given amount of dirty data.
123 * Therefore larger values will cause there to be less dirty data for a
124 * given throughput.
125 *
126 * For the smoothest delay, this value should be about 1 billion divided
127 * by the maximum number of operations per second. This will smoothly
128 * handle between 10x and 1/10th this number.
129 *
130 * Note: zfs_delay_scale * zfs_dirty_data_max must be < 2^64, due to the
131 * multiply in dmu_tx_delay().
132 */
133unsigned long zfs_delay_scale = 1000 * 1000 * 1000 / 2000;
b128c09f 134
64fc7762
MA
135/*
136 * This determines the number of threads used by the dp_sync_taskq.
137 */
138int zfs_sync_taskq_batch_pct = 75;
139
a032ac4b
BB
140/*
141 * These tunables determine the behavior of how zil_itxg_clean() is
142 * called via zil_clean() in the context of spa_sync(). When an itxg
143 * list needs to be cleaned, TQ_NOSLEEP will be used when dispatching.
144 * If the dispatch fails, the call to zil_itxg_clean() will occur
145 * synchronously in the context of spa_sync(), which can negatively
146 * impact the performance of spa_sync() (e.g. in the case of the itxg
147 * list having a large number of itxs that needs to be cleaned).
148 *
149 * Thus, these tunables can be used to manipulate the behavior of the
150 * taskq used by zil_clean(); they determine the number of taskq entries
151 * that are pre-populated when the taskq is first created (via the
152 * "zfs_zil_clean_taskq_minalloc" tunable) and the maximum number of
153 * taskq entries that are cached after an on-demand allocation (via the
154 * "zfs_zil_clean_taskq_maxalloc").
155 *
156 * The idea being, we want to try reasonably hard to ensure there will
157 * already be a taskq entry pre-allocated by the time that it is needed
158 * by zil_clean(). This way, we can avoid the possibility of an
159 * on-demand allocation of a new taskq entry from failing, which would
160 * result in zil_itxg_clean() being called synchronously from zil_clean()
161 * (which can adversely affect performance of spa_sync()).
162 *
163 * Additionally, the number of threads used by the taskq can be
164 * configured via the "zfs_zil_clean_taskq_nthr_pct" tunable.
165 */
166int zfs_zil_clean_taskq_nthr_pct = 100;
167int zfs_zil_clean_taskq_minalloc = 1024;
168int zfs_zil_clean_taskq_maxalloc = 1024 * 1024;
169
428870ff 170int
b128c09f 171dsl_pool_open_special_dir(dsl_pool_t *dp, const char *name, dsl_dir_t **ddp)
34dc7c2f
BB
172{
173 uint64_t obj;
174 int err;
175
176 err = zap_lookup(dp->dp_meta_objset,
d683ddbb 177 dsl_dir_phys(dp->dp_root_dir)->dd_child_dir_zapobj,
b128c09f 178 name, sizeof (obj), 1, &obj);
34dc7c2f
BB
179 if (err)
180 return (err);
181
13fe0198 182 return (dsl_dir_hold_obj(dp, obj, name, dp, ddp));
34dc7c2f
BB
183}
184
185static dsl_pool_t *
186dsl_pool_open_impl(spa_t *spa, uint64_t txg)
187{
188 dsl_pool_t *dp;
189 blkptr_t *bp = spa_get_rootblkptr(spa);
34dc7c2f
BB
190
191 dp = kmem_zalloc(sizeof (dsl_pool_t), KM_SLEEP);
192 dp->dp_spa = spa;
193 dp->dp_meta_rootbp = *bp;
13fe0198 194 rrw_init(&dp->dp_config_rwlock, B_TRUE);
34dc7c2f 195 txg_init(dp, txg);
379ca9cf 196 mmp_init(spa);
34dc7c2f 197
4747a7d3 198 txg_list_create(&dp->dp_dirty_datasets, spa,
34dc7c2f 199 offsetof(dsl_dataset_t, ds_dirty_link));
4747a7d3 200 txg_list_create(&dp->dp_dirty_zilogs, spa,
29809a6c 201 offsetof(zilog_t, zl_dirty_link));
4747a7d3 202 txg_list_create(&dp->dp_dirty_dirs, spa,
34dc7c2f 203 offsetof(dsl_dir_t, dd_dirty_link));
4747a7d3 204 txg_list_create(&dp->dp_sync_tasks, spa,
13fe0198 205 offsetof(dsl_sync_task_t, dst_node));
d2734cce
SD
206 txg_list_create(&dp->dp_early_sync_tasks, spa,
207 offsetof(dsl_sync_task_t, dst_node));
34dc7c2f 208
64fc7762
MA
209 dp->dp_sync_taskq = taskq_create("dp_sync_taskq",
210 zfs_sync_taskq_batch_pct, minclsyspri, 1, INT_MAX,
211 TASKQ_THREADS_CPU_PCT);
212
a032ac4b
BB
213 dp->dp_zil_clean_taskq = taskq_create("dp_zil_clean_taskq",
214 zfs_zil_clean_taskq_nthr_pct, minclsyspri,
215 zfs_zil_clean_taskq_minalloc,
216 zfs_zil_clean_taskq_maxalloc,
217 TASKQ_PREPOPULATE | TASKQ_THREADS_CPU_PCT);
218
34dc7c2f 219 mutex_init(&dp->dp_lock, NULL, MUTEX_DEFAULT, NULL);
e8b96c60 220 cv_init(&dp->dp_spaceavail_cv, NULL, CV_DEFAULT, NULL);
34dc7c2f 221
1229323d 222 dp->dp_iput_taskq = taskq_create("z_iput", max_ncpus, defclsyspri,
aa9af22c 223 max_ncpus * 8, INT_MAX, TASKQ_PREPOPULATE | TASKQ_DYNAMIC);
9babb374 224
34dc7c2f
BB
225 return (dp);
226}
227
228int
9ae529ec 229dsl_pool_init(spa_t *spa, uint64_t txg, dsl_pool_t **dpp)
34dc7c2f
BB
230{
231 int err;
232 dsl_pool_t *dp = dsl_pool_open_impl(spa, txg);
9ae529ec 233
b7faa7aa
G
234 /*
235 * Initialize the caller's dsl_pool_t structure before we actually open
236 * the meta objset. This is done because a self-healing write zio may
237 * be issued as part of dmu_objset_open_impl() and the spa needs its
238 * dsl_pool_t initialized in order to handle the write.
239 */
240 *dpp = dp;
241
9ae529ec
CS
242 err = dmu_objset_open_impl(spa, NULL, &dp->dp_meta_rootbp,
243 &dp->dp_meta_objset);
b7faa7aa 244 if (err != 0) {
9ae529ec 245 dsl_pool_close(dp);
b7faa7aa
G
246 *dpp = NULL;
247 }
9ae529ec
CS
248
249 return (err);
250}
251
252int
253dsl_pool_open(dsl_pool_t *dp)
254{
255 int err;
b128c09f
BB
256 dsl_dir_t *dd;
257 dsl_dataset_t *ds;
428870ff 258 uint64_t obj;
34dc7c2f 259
13fe0198 260 rrw_enter(&dp->dp_config_rwlock, RW_WRITER, FTAG);
34dc7c2f
BB
261 err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
262 DMU_POOL_ROOT_DATASET, sizeof (uint64_t), 1,
263 &dp->dp_root_dir_obj);
264 if (err)
265 goto out;
266
13fe0198 267 err = dsl_dir_hold_obj(dp, dp->dp_root_dir_obj,
34dc7c2f
BB
268 NULL, dp, &dp->dp_root_dir);
269 if (err)
270 goto out;
271
b128c09f 272 err = dsl_pool_open_special_dir(dp, MOS_DIR_NAME, &dp->dp_mos_dir);
34dc7c2f
BB
273 if (err)
274 goto out;
275
9ae529ec 276 if (spa_version(dp->dp_spa) >= SPA_VERSION_ORIGIN) {
b128c09f
BB
277 err = dsl_pool_open_special_dir(dp, ORIGIN_DIR_NAME, &dd);
278 if (err)
279 goto out;
d683ddbb
JG
280 err = dsl_dataset_hold_obj(dp,
281 dsl_dir_phys(dd)->dd_head_dataset_obj, FTAG, &ds);
9babb374
BB
282 if (err == 0) {
283 err = dsl_dataset_hold_obj(dp,
d683ddbb 284 dsl_dataset_phys(ds)->ds_prev_snap_obj, dp,
9babb374
BB
285 &dp->dp_origin_snap);
286 dsl_dataset_rele(ds, FTAG);
287 }
13fe0198 288 dsl_dir_rele(dd, dp);
b128c09f
BB
289 if (err)
290 goto out;
b128c09f
BB
291 }
292
9ae529ec 293 if (spa_version(dp->dp_spa) >= SPA_VERSION_DEADLISTS) {
428870ff
BB
294 err = dsl_pool_open_special_dir(dp, FREE_DIR_NAME,
295 &dp->dp_free_dir);
b128c09f
BB
296 if (err)
297 goto out;
428870ff 298
b128c09f 299 err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
428870ff 300 DMU_POOL_FREE_BPOBJ, sizeof (uint64_t), 1, &obj);
b128c09f
BB
301 if (err)
302 goto out;
13fe0198 303 VERIFY0(bpobj_open(&dp->dp_free_bpobj,
428870ff 304 dp->dp_meta_objset, obj));
b128c09f
BB
305 }
306
a1d477c2
MA
307 if (spa_feature_is_active(dp->dp_spa, SPA_FEATURE_OBSOLETE_COUNTS)) {
308 err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
309 DMU_POOL_OBSOLETE_BPOBJ, sizeof (uint64_t), 1, &obj);
310 if (err == 0) {
311 VERIFY0(bpobj_open(&dp->dp_obsolete_bpobj,
312 dp->dp_meta_objset, obj));
313 } else if (err == ENOENT) {
314 /*
315 * We might not have created the remap bpobj yet.
316 */
317 err = 0;
318 } else {
319 goto out;
320 }
321 }
322
fbeddd60 323 /*
a1d477c2
MA
324 * Note: errors ignored, because the these special dirs, used for
325 * space accounting, are only created on demand.
fbeddd60
MA
326 */
327 (void) dsl_pool_open_special_dir(dp, LEAK_DIR_NAME,
328 &dp->dp_leak_dir);
329
fa86b5db 330 if (spa_feature_is_active(dp->dp_spa, SPA_FEATURE_ASYNC_DESTROY)) {
9ae529ec
CS
331 err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
332 DMU_POOL_BPTREE_OBJ, sizeof (uint64_t), 1,
333 &dp->dp_bptree_obj);
334 if (err != 0)
335 goto out;
336 }
337
fa86b5db 338 if (spa_feature_is_active(dp->dp_spa, SPA_FEATURE_EMPTY_BPOBJ)) {
753c3839
MA
339 err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
340 DMU_POOL_EMPTY_BPOBJ, sizeof (uint64_t), 1,
341 &dp->dp_empty_bpobj);
342 if (err != 0)
343 goto out;
344 }
345
428870ff
BB
346 err = zap_lookup(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
347 DMU_POOL_TMP_USERREFS, sizeof (uint64_t), 1,
348 &dp->dp_tmp_userrefs_obj);
349 if (err == ENOENT)
350 err = 0;
351 if (err)
352 goto out;
353
9ae529ec 354 err = dsl_scan_init(dp, dp->dp_tx.tx_open_txg);
428870ff 355
34dc7c2f 356out:
13fe0198 357 rrw_exit(&dp->dp_config_rwlock, FTAG);
34dc7c2f
BB
358 return (err);
359}
360
361void
362dsl_pool_close(dsl_pool_t *dp)
363{
b128c09f 364 /*
e8b96c60
MA
365 * Drop our references from dsl_pool_open().
366 *
b128c09f
BB
367 * Since we held the origin_snap from "syncing" context (which
368 * includes pool-opening context), it actually only got a "ref"
369 * and not a hold, so just drop that here.
370 */
a1d477c2 371 if (dp->dp_origin_snap != NULL)
13fe0198 372 dsl_dataset_rele(dp->dp_origin_snap, dp);
a1d477c2 373 if (dp->dp_mos_dir != NULL)
13fe0198 374 dsl_dir_rele(dp->dp_mos_dir, dp);
a1d477c2 375 if (dp->dp_free_dir != NULL)
13fe0198 376 dsl_dir_rele(dp->dp_free_dir, dp);
a1d477c2 377 if (dp->dp_leak_dir != NULL)
fbeddd60 378 dsl_dir_rele(dp->dp_leak_dir, dp);
a1d477c2 379 if (dp->dp_root_dir != NULL)
13fe0198 380 dsl_dir_rele(dp->dp_root_dir, dp);
34dc7c2f 381
428870ff 382 bpobj_close(&dp->dp_free_bpobj);
a1d477c2 383 bpobj_close(&dp->dp_obsolete_bpobj);
428870ff 384
34dc7c2f 385 /* undo the dmu_objset_open_impl(mos) from dsl_pool_open() */
a1d477c2 386 if (dp->dp_meta_objset != NULL)
428870ff 387 dmu_objset_evict(dp->dp_meta_objset);
34dc7c2f
BB
388
389 txg_list_destroy(&dp->dp_dirty_datasets);
29809a6c 390 txg_list_destroy(&dp->dp_dirty_zilogs);
428870ff 391 txg_list_destroy(&dp->dp_sync_tasks);
d2734cce 392 txg_list_destroy(&dp->dp_early_sync_tasks);
34dc7c2f 393 txg_list_destroy(&dp->dp_dirty_dirs);
34dc7c2f 394
a032ac4b 395 taskq_destroy(dp->dp_zil_clean_taskq);
64fc7762
MA
396 taskq_destroy(dp->dp_sync_taskq);
397
ca0bf58d
PS
398 /*
399 * We can't set retry to TRUE since we're explicitly specifying
400 * a spa to flush. This is good enough; any missed buffers for
401 * this spa won't cause trouble, and they'll eventually fall
402 * out of the ARC just like any other unused buffer.
403 */
404 arc_flush(dp->dp_spa, FALSE);
405
379ca9cf 406 mmp_fini(dp->dp_spa);
34dc7c2f 407 txg_fini(dp);
428870ff 408 dsl_scan_fini(dp);
0c66c32d
JG
409 dmu_buf_user_evict_wait();
410
13fe0198 411 rrw_destroy(&dp->dp_config_rwlock);
34dc7c2f 412 mutex_destroy(&dp->dp_lock);
c17486b2 413 cv_destroy(&dp->dp_spaceavail_cv);
3558fd73 414 taskq_destroy(dp->dp_iput_taskq);
a1d477c2 415 if (dp->dp_blkstats != NULL) {
d4a72f23 416 mutex_destroy(&dp->dp_blkstats->zab_lock);
79c76d5b 417 vmem_free(dp->dp_blkstats, sizeof (zfs_all_blkstats_t));
d4a72f23 418 }
34dc7c2f
BB
419 kmem_free(dp, sizeof (dsl_pool_t));
420}
421
a1d477c2
MA
422void
423dsl_pool_create_obsolete_bpobj(dsl_pool_t *dp, dmu_tx_t *tx)
424{
425 uint64_t obj;
426 /*
427 * Currently, we only create the obsolete_bpobj where there are
428 * indirect vdevs with referenced mappings.
429 */
430 ASSERT(spa_feature_is_active(dp->dp_spa, SPA_FEATURE_DEVICE_REMOVAL));
431 /* create and open the obsolete_bpobj */
432 obj = bpobj_alloc(dp->dp_meta_objset, SPA_OLD_MAXBLOCKSIZE, tx);
433 VERIFY0(bpobj_open(&dp->dp_obsolete_bpobj, dp->dp_meta_objset, obj));
434 VERIFY0(zap_add(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
435 DMU_POOL_OBSOLETE_BPOBJ, sizeof (uint64_t), 1, &obj, tx));
436 spa_feature_incr(dp->dp_spa, SPA_FEATURE_OBSOLETE_COUNTS, tx);
437}
438
439void
440dsl_pool_destroy_obsolete_bpobj(dsl_pool_t *dp, dmu_tx_t *tx)
441{
442 spa_feature_decr(dp->dp_spa, SPA_FEATURE_OBSOLETE_COUNTS, tx);
443 VERIFY0(zap_remove(dp->dp_meta_objset,
444 DMU_POOL_DIRECTORY_OBJECT,
445 DMU_POOL_OBSOLETE_BPOBJ, tx));
446 bpobj_free(dp->dp_meta_objset,
447 dp->dp_obsolete_bpobj.bpo_object, tx);
448 bpobj_close(&dp->dp_obsolete_bpobj);
449}
450
34dc7c2f 451dsl_pool_t *
b5256303
TC
452dsl_pool_create(spa_t *spa, nvlist_t *zplprops, dsl_crypto_params_t *dcp,
453 uint64_t txg)
34dc7c2f
BB
454{
455 int err;
456 dsl_pool_t *dp = dsl_pool_open_impl(spa, txg);
457 dmu_tx_t *tx = dmu_tx_create_assigned(dp, txg);
b128c09f 458 dsl_dataset_t *ds;
428870ff 459 uint64_t obj;
b128c09f 460
13fe0198
MA
461 rrw_enter(&dp->dp_config_rwlock, RW_WRITER, FTAG);
462
b128c09f 463 /* create and open the MOS (meta-objset) */
428870ff
BB
464 dp->dp_meta_objset = dmu_objset_create_impl(spa,
465 NULL, &dp->dp_meta_rootbp, DMU_OST_META, tx);
b5256303 466 spa->spa_meta_objset = dp->dp_meta_objset;
34dc7c2f
BB
467
468 /* create the pool directory */
469 err = zap_create_claim(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
470 DMU_OT_OBJECT_DIRECTORY, DMU_OT_NONE, 0, tx);
c99c9001 471 ASSERT0(err);
34dc7c2f 472
428870ff 473 /* Initialize scan structures */
13fe0198 474 VERIFY0(dsl_scan_init(dp, txg));
428870ff 475
34dc7c2f 476 /* create and open the root dir */
b128c09f 477 dp->dp_root_dir_obj = dsl_dir_create_sync(dp, NULL, NULL, tx);
13fe0198 478 VERIFY0(dsl_dir_hold_obj(dp, dp->dp_root_dir_obj,
34dc7c2f
BB
479 NULL, dp, &dp->dp_root_dir));
480
481 /* create and open the meta-objset dir */
b128c09f 482 (void) dsl_dir_create_sync(dp, dp->dp_root_dir, MOS_DIR_NAME, tx);
13fe0198 483 VERIFY0(dsl_pool_open_special_dir(dp,
b128c09f
BB
484 MOS_DIR_NAME, &dp->dp_mos_dir));
485
428870ff
BB
486 if (spa_version(spa) >= SPA_VERSION_DEADLISTS) {
487 /* create and open the free dir */
488 (void) dsl_dir_create_sync(dp, dp->dp_root_dir,
489 FREE_DIR_NAME, tx);
13fe0198 490 VERIFY0(dsl_pool_open_special_dir(dp,
428870ff
BB
491 FREE_DIR_NAME, &dp->dp_free_dir));
492
493 /* create and open the free_bplist */
f1512ee6 494 obj = bpobj_alloc(dp->dp_meta_objset, SPA_OLD_MAXBLOCKSIZE, tx);
428870ff
BB
495 VERIFY(zap_add(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
496 DMU_POOL_FREE_BPOBJ, sizeof (uint64_t), 1, &obj, tx) == 0);
13fe0198 497 VERIFY0(bpobj_open(&dp->dp_free_bpobj,
428870ff
BB
498 dp->dp_meta_objset, obj));
499 }
500
b128c09f
BB
501 if (spa_version(spa) >= SPA_VERSION_DSL_SCRUB)
502 dsl_pool_create_origin(dp, tx);
503
b5256303
TC
504 /*
505 * Some features may be needed when creating the root dataset, so we
506 * create the feature objects here.
507 */
508 if (spa_version(spa) >= SPA_VERSION_FEATURES)
509 spa_feature_create_zap_objects(spa, tx);
510
511 if (dcp != NULL && dcp->cp_crypt != ZIO_CRYPT_OFF &&
512 dcp->cp_crypt != ZIO_CRYPT_INHERIT)
513 spa_feature_enable(spa, SPA_FEATURE_ENCRYPTION, tx);
514
b128c09f 515 /* create the root dataset */
b5256303 516 obj = dsl_dataset_create_sync_dd(dp->dp_root_dir, NULL, dcp, 0, tx);
b128c09f
BB
517
518 /* create the root objset */
13fe0198 519 VERIFY0(dsl_dataset_hold_obj(dp, obj, FTAG, &ds));
b128c09f 520#ifdef _KERNEL
d8fdfc2d
BB
521 {
522 objset_t *os;
523 rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
524 os = dmu_objset_create_impl(dp->dp_spa, ds,
525 dsl_dataset_get_blkptr(ds), DMU_OST_ZFS, tx);
526 rrw_exit(&ds->ds_bp_rwlock, FTAG);
527 zfs_create_fs(os, kcred, zplprops, tx);
528 }
b128c09f
BB
529#endif
530 dsl_dataset_rele(ds, FTAG);
34dc7c2f
BB
531
532 dmu_tx_commit(tx);
533
13fe0198
MA
534 rrw_exit(&dp->dp_config_rwlock, FTAG);
535
34dc7c2f
BB
536 return (dp);
537}
538
29809a6c
MA
539/*
540 * Account for the meta-objset space in its placeholder dsl_dir.
541 */
542void
543dsl_pool_mos_diduse_space(dsl_pool_t *dp,
544 int64_t used, int64_t comp, int64_t uncomp)
545{
546 ASSERT3U(comp, ==, uncomp); /* it's all metadata */
547 mutex_enter(&dp->dp_lock);
548 dp->dp_mos_used_delta += used;
549 dp->dp_mos_compressed_delta += comp;
550 dp->dp_mos_uncompressed_delta += uncomp;
551 mutex_exit(&dp->dp_lock);
552}
553
e8b96c60
MA
554static void
555dsl_pool_sync_mos(dsl_pool_t *dp, dmu_tx_t *tx)
556{
557 zio_t *zio = zio_root(dp->dp_spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
558 dmu_objset_sync(dp->dp_meta_objset, zio, tx);
559 VERIFY0(zio_wait(zio));
560 dprintf_bp(&dp->dp_meta_rootbp, "meta objset rootbp is %s", "");
561 spa_set_rootblkptr(dp->dp_spa, &dp->dp_meta_rootbp);
562}
563
564static void
565dsl_pool_dirty_delta(dsl_pool_t *dp, int64_t delta)
566{
567 ASSERT(MUTEX_HELD(&dp->dp_lock));
568
569 if (delta < 0)
570 ASSERT3U(-delta, <=, dp->dp_dirty_total);
571
572 dp->dp_dirty_total += delta;
573
574 /*
575 * Note: we signal even when increasing dp_dirty_total.
576 * This ensures forward progress -- each thread wakes the next waiter.
577 */
c0c8cc7b 578 if (dp->dp_dirty_total < zfs_dirty_data_max)
e8b96c60
MA
579 cv_signal(&dp->dp_spaceavail_cv);
580}
581
d2734cce
SD
582#ifdef ZFS_DEBUG
583static boolean_t
584dsl_early_sync_task_verify(dsl_pool_t *dp, uint64_t txg)
585{
586 spa_t *spa = dp->dp_spa;
587 vdev_t *rvd = spa->spa_root_vdev;
588
589 for (uint64_t c = 0; c < rvd->vdev_children; c++) {
590 vdev_t *vd = rvd->vdev_child[c];
591 txg_list_t *tl = &vd->vdev_ms_list;
592 metaslab_t *ms;
593
594 for (ms = txg_list_head(tl, TXG_CLEAN(txg)); ms;
595 ms = txg_list_next(tl, ms, TXG_CLEAN(txg))) {
596 VERIFY(range_tree_is_empty(ms->ms_freeing));
597 VERIFY(range_tree_is_empty(ms->ms_checkpointing));
598 }
599 }
600
601 return (B_TRUE);
602}
603#endif
604
34dc7c2f
BB
605void
606dsl_pool_sync(dsl_pool_t *dp, uint64_t txg)
607{
608 zio_t *zio;
609 dmu_tx_t *tx;
610 dsl_dir_t *dd;
611 dsl_dataset_t *ds;
428870ff 612 objset_t *mos = dp->dp_meta_objset;
29809a6c
MA
613 list_t synced_datasets;
614
615 list_create(&synced_datasets, sizeof (dsl_dataset_t),
616 offsetof(dsl_dataset_t, ds_synced_link));
34dc7c2f
BB
617
618 tx = dmu_tx_create_assigned(dp, txg);
619
d2734cce
SD
620 /*
621 * Run all early sync tasks before writing out any dirty blocks.
622 * For more info on early sync tasks see block comment in
623 * dsl_early_sync_task().
624 */
625 if (!txg_list_empty(&dp->dp_early_sync_tasks, txg)) {
626 dsl_sync_task_t *dst;
627
628 ASSERT3U(spa_sync_pass(dp->dp_spa), ==, 1);
629 while ((dst =
630 txg_list_remove(&dp->dp_early_sync_tasks, txg)) != NULL) {
631 ASSERT(dsl_early_sync_task_verify(dp, txg));
632 dsl_sync_task_sync(dst, tx);
633 }
634 ASSERT(dsl_early_sync_task_verify(dp, txg));
635 }
636
e8b96c60
MA
637 /*
638 * Write out all dirty blocks of dirty datasets.
639 */
34dc7c2f 640 zio = zio_root(dp->dp_spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
e8b96c60 641 while ((ds = txg_list_remove(&dp->dp_dirty_datasets, txg)) != NULL) {
9babb374
BB
642 /*
643 * We must not sync any non-MOS datasets twice, because
644 * we may have taken a snapshot of them. However, we
645 * may sync newly-created datasets on pass 2.
646 */
647 ASSERT(!list_link_active(&ds->ds_synced_link));
29809a6c 648 list_insert_tail(&synced_datasets, ds);
34dc7c2f
BB
649 dsl_dataset_sync(ds, zio, tx);
650 }
e8b96c60 651 VERIFY0(zio_wait(zio));
9babb374 652
e8b96c60
MA
653 /*
654 * We have written all of the accounted dirty data, so our
655 * dp_space_towrite should now be zero. However, some seldom-used
656 * code paths do not adhere to this (e.g. dbuf_undirty(), also
657 * rounding error in dbuf_write_physdone).
658 * Shore up the accounting of any dirtied space now.
659 */
660 dsl_pool_undirty_space(dp, dp->dp_dirty_pertxg[txg & TXG_MASK], txg);
34dc7c2f 661
539d33c7
GM
662 /*
663 * Update the long range free counter after
664 * we're done syncing user data
665 */
666 mutex_enter(&dp->dp_lock);
667 ASSERT(spa_sync_pass(dp->dp_spa) == 1 ||
668 dp->dp_long_free_dirty_pertxg[txg & TXG_MASK] == 0);
669 dp->dp_long_free_dirty_pertxg[txg & TXG_MASK] = 0;
670 mutex_exit(&dp->dp_lock);
671
29809a6c
MA
672 /*
673 * After the data blocks have been written (ensured by the zio_wait()
9c5167d1 674 * above), update the user/group/project space accounting. This happens
64fc7762
MA
675 * in tasks dispatched to dp_sync_taskq, so wait for them before
676 * continuing.
29809a6c 677 */
e8b96c60
MA
678 for (ds = list_head(&synced_datasets); ds != NULL;
679 ds = list_next(&synced_datasets, ds)) {
428870ff 680 dmu_objset_do_userquota_updates(ds->ds_objset, tx);
e8b96c60 681 }
64fc7762 682 taskq_wait(dp->dp_sync_taskq);
9babb374
BB
683
684 /*
685 * Sync the datasets again to push out the changes due to
428870ff 686 * userspace updates. This must be done before we process the
29809a6c
MA
687 * sync tasks, so that any snapshots will have the correct
688 * user accounting information (and we won't get confused
689 * about which blocks are part of the snapshot).
9babb374
BB
690 */
691 zio = zio_root(dp->dp_spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
e8b96c60 692 while ((ds = txg_list_remove(&dp->dp_dirty_datasets, txg)) != NULL) {
9babb374
BB
693 ASSERT(list_link_active(&ds->ds_synced_link));
694 dmu_buf_rele(ds->ds_dbuf, ds);
695 dsl_dataset_sync(ds, zio, tx);
696 }
e8b96c60 697 VERIFY0(zio_wait(zio));
9babb374 698
428870ff 699 /*
29809a6c
MA
700 * Now that the datasets have been completely synced, we can
701 * clean up our in-memory structures accumulated while syncing:
702 *
703 * - move dead blocks from the pending deadlist to the on-disk deadlist
29809a6c 704 * - release hold from dsl_dataset_dirty()
428870ff 705 */
e8b96c60 706 while ((ds = list_remove_head(&synced_datasets)) != NULL) {
0efd9791 707 dsl_dataset_sync_done(ds, tx);
428870ff
BB
708 }
709
e8b96c60 710 while ((dd = txg_list_remove(&dp->dp_dirty_dirs, txg)) != NULL) {
34dc7c2f 711 dsl_dir_sync(dd, tx);
e8b96c60 712 }
b128c09f 713
29809a6c
MA
714 /*
715 * The MOS's space is accounted for in the pool/$MOS
716 * (dp_mos_dir). We can't modify the mos while we're syncing
717 * it, so we remember the deltas and apply them here.
718 */
719 if (dp->dp_mos_used_delta != 0 || dp->dp_mos_compressed_delta != 0 ||
720 dp->dp_mos_uncompressed_delta != 0) {
721 dsl_dir_diduse_space(dp->dp_mos_dir, DD_USED_HEAD,
722 dp->dp_mos_used_delta,
723 dp->dp_mos_compressed_delta,
724 dp->dp_mos_uncompressed_delta, tx);
725 dp->dp_mos_used_delta = 0;
726 dp->dp_mos_compressed_delta = 0;
727 dp->dp_mos_uncompressed_delta = 0;
728 }
729
64fc7762 730 if (!multilist_is_empty(mos->os_dirty_dnodes[txg & TXG_MASK])) {
e8b96c60 731 dsl_pool_sync_mos(dp, tx);
34dc7c2f
BB
732 }
733
29809a6c
MA
734 /*
735 * If we modify a dataset in the same txg that we want to destroy it,
736 * its dsl_dir's dd_dbuf will be dirty, and thus have a hold on it.
737 * dsl_dir_destroy_check() will fail if there are unexpected holds.
738 * Therefore, we want to sync the MOS (thus syncing the dd_dbuf
739 * and clearing the hold on it) before we process the sync_tasks.
740 * The MOS data dirtied by the sync_tasks will be synced on the next
741 * pass.
742 */
29809a6c 743 if (!txg_list_empty(&dp->dp_sync_tasks, txg)) {
13fe0198 744 dsl_sync_task_t *dst;
29809a6c
MA
745 /*
746 * No more sync tasks should have been added while we
747 * were syncing.
748 */
e8b96c60
MA
749 ASSERT3U(spa_sync_pass(dp->dp_spa), ==, 1);
750 while ((dst = txg_list_remove(&dp->dp_sync_tasks, txg)) != NULL)
13fe0198 751 dsl_sync_task_sync(dst, tx);
29809a6c
MA
752 }
753
34dc7c2f 754 dmu_tx_commit(tx);
b128c09f 755
e8b96c60 756 DTRACE_PROBE2(dsl_pool_sync__done, dsl_pool_t *dp, dp, uint64_t, txg);
34dc7c2f
BB
757}
758
759void
428870ff 760dsl_pool_sync_done(dsl_pool_t *dp, uint64_t txg)
34dc7c2f 761{
29809a6c 762 zilog_t *zilog;
34dc7c2f 763
55922e73 764 while ((zilog = txg_list_head(&dp->dp_dirty_zilogs, txg))) {
e8b96c60 765 dsl_dataset_t *ds = dmu_objset_ds(zilog->zl_os);
55922e73
GW
766 /*
767 * We don't remove the zilog from the dp_dirty_zilogs
768 * list until after we've cleaned it. This ensures that
769 * callers of zilog_is_dirty() receive an accurate
770 * answer when they are racing with the spa sync thread.
771 */
29809a6c 772 zil_clean(zilog, txg);
55922e73 773 (void) txg_list_remove_this(&dp->dp_dirty_zilogs, zilog, txg);
29809a6c
MA
774 ASSERT(!dmu_objset_is_dirty(zilog->zl_os, txg));
775 dmu_buf_rele(ds->ds_dbuf, zilog);
34dc7c2f 776 }
428870ff 777 ASSERT(!dmu_objset_is_dirty(dp->dp_meta_objset, txg));
34dc7c2f
BB
778}
779
780/*
781 * TRUE if the current thread is the tx_sync_thread or if we
782 * are being called from SPA context during pool initialization.
783 */
784int
785dsl_pool_sync_context(dsl_pool_t *dp)
786{
787 return (curthread == dp->dp_tx.tx_sync_thread ||
64fc7762
MA
788 spa_is_initializing(dp->dp_spa) ||
789 taskq_member(dp->dp_sync_taskq, curthread));
34dc7c2f
BB
790}
791
d2734cce
SD
792/*
793 * This function returns the amount of allocatable space in the pool
794 * minus whatever space is currently reserved by ZFS for specific
795 * purposes. Specifically:
796 *
797 * 1] Any reserved SLOP space
798 * 2] Any space used by the checkpoint
799 * 3] Any space used for deferred frees
800 *
801 * The latter 2 are especially important because they are needed to
802 * rectify the SPA's and DMU's different understanding of how much space
803 * is used. Now the DMU is aware of that extra space tracked by the SPA
804 * without having to maintain a separate special dir (e.g similar to
805 * $MOS, $FREEING, and $LEAKED).
806 *
807 * Note: By deferred frees here, we mean the frees that were deferred
808 * in spa_sync() after sync pass 1 (spa_deferred_bpobj), and not the
809 * segments placed in ms_defer trees during metaslab_sync_done().
810 */
34dc7c2f 811uint64_t
d2734cce 812dsl_pool_adjustedsize(dsl_pool_t *dp, zfs_space_check_t slop_policy)
34dc7c2f 813{
d2734cce
SD
814 spa_t *spa = dp->dp_spa;
815 uint64_t space, resv, adjustedsize;
816 uint64_t spa_deferred_frees =
817 spa->spa_deferred_bpobj.bpo_phys->bpo_bytes;
818
819 space = spa_get_dspace(spa)
820 - spa_get_checkpoint_space(spa) - spa_deferred_frees;
821 resv = spa_get_slop_space(spa);
822
823 switch (slop_policy) {
824 case ZFS_SPACE_CHECK_NORMAL:
825 break;
826 case ZFS_SPACE_CHECK_RESERVED:
34dc7c2f 827 resv >>= 1;
d2734cce
SD
828 break;
829 case ZFS_SPACE_CHECK_EXTRA_RESERVED:
830 resv >>= 2;
831 break;
832 case ZFS_SPACE_CHECK_NONE:
833 resv = 0;
834 break;
835 default:
836 panic("invalid slop policy value: %d", slop_policy);
837 break;
838 }
839 adjustedsize = (space >= resv) ? (space - resv) : 0;
34dc7c2f 840
d2734cce
SD
841 return (adjustedsize);
842}
843
844uint64_t
845dsl_pool_unreserved_space(dsl_pool_t *dp, zfs_space_check_t slop_policy)
846{
847 uint64_t poolsize = dsl_pool_adjustedsize(dp, slop_policy);
848 uint64_t deferred =
849 metaslab_class_get_deferred(spa_normal_class(dp->dp_spa));
850 uint64_t quota = (poolsize >= deferred) ? (poolsize - deferred) : 0;
851 return (quota);
34dc7c2f
BB
852}
853
e8b96c60
MA
854boolean_t
855dsl_pool_need_dirty_delay(dsl_pool_t *dp)
34dc7c2f 856{
e8b96c60
MA
857 uint64_t delay_min_bytes =
858 zfs_dirty_data_max * zfs_delay_min_dirty_percent / 100;
859 boolean_t rv;
34dc7c2f 860
e8b96c60
MA
861 mutex_enter(&dp->dp_lock);
862 if (dp->dp_dirty_total > zfs_dirty_data_sync)
863 txg_kick(dp);
864 rv = (dp->dp_dirty_total > delay_min_bytes);
865 mutex_exit(&dp->dp_lock);
866 return (rv);
34dc7c2f
BB
867}
868
869void
e8b96c60 870dsl_pool_dirty_space(dsl_pool_t *dp, int64_t space, dmu_tx_t *tx)
34dc7c2f 871{
e8b96c60
MA
872 if (space > 0) {
873 mutex_enter(&dp->dp_lock);
874 dp->dp_dirty_pertxg[tx->tx_txg & TXG_MASK] += space;
875 dsl_pool_dirty_delta(dp, space);
876 mutex_exit(&dp->dp_lock);
877 }
34dc7c2f
BB
878}
879
880void
e8b96c60 881dsl_pool_undirty_space(dsl_pool_t *dp, int64_t space, uint64_t txg)
34dc7c2f 882{
e8b96c60
MA
883 ASSERT3S(space, >=, 0);
884 if (space == 0)
34dc7c2f
BB
885 return;
886
e8b96c60
MA
887 mutex_enter(&dp->dp_lock);
888 if (dp->dp_dirty_pertxg[txg & TXG_MASK] < space) {
889 /* XXX writing something we didn't dirty? */
890 space = dp->dp_dirty_pertxg[txg & TXG_MASK];
34dc7c2f 891 }
e8b96c60
MA
892 ASSERT3U(dp->dp_dirty_pertxg[txg & TXG_MASK], >=, space);
893 dp->dp_dirty_pertxg[txg & TXG_MASK] -= space;
894 ASSERT3U(dp->dp_dirty_total, >=, space);
895 dsl_pool_dirty_delta(dp, -space);
896 mutex_exit(&dp->dp_lock);
34dc7c2f 897}
b128c09f
BB
898
899/* ARGSUSED */
900static int
13fe0198 901upgrade_clones_cb(dsl_pool_t *dp, dsl_dataset_t *hds, void *arg)
b128c09f
BB
902{
903 dmu_tx_t *tx = arg;
904 dsl_dataset_t *ds, *prev = NULL;
905 int err;
b128c09f 906
13fe0198 907 err = dsl_dataset_hold_obj(dp, hds->ds_object, FTAG, &ds);
b128c09f
BB
908 if (err)
909 return (err);
910
d683ddbb
JG
911 while (dsl_dataset_phys(ds)->ds_prev_snap_obj != 0) {
912 err = dsl_dataset_hold_obj(dp,
913 dsl_dataset_phys(ds)->ds_prev_snap_obj, FTAG, &prev);
b128c09f
BB
914 if (err) {
915 dsl_dataset_rele(ds, FTAG);
916 return (err);
917 }
918
d683ddbb 919 if (dsl_dataset_phys(prev)->ds_next_snap_obj != ds->ds_object)
b128c09f
BB
920 break;
921 dsl_dataset_rele(ds, FTAG);
922 ds = prev;
923 prev = NULL;
924 }
925
926 if (prev == NULL) {
927 prev = dp->dp_origin_snap;
928
929 /*
930 * The $ORIGIN can't have any data, or the accounting
931 * will be wrong.
932 */
cc9bb3e5 933 rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
d683ddbb 934 ASSERT0(dsl_dataset_phys(prev)->ds_bp.blk_birth);
cc9bb3e5 935 rrw_exit(&ds->ds_bp_rwlock, FTAG);
b128c09f
BB
936
937 /* The origin doesn't get attached to itself */
938 if (ds->ds_object == prev->ds_object) {
939 dsl_dataset_rele(ds, FTAG);
940 return (0);
941 }
942
943 dmu_buf_will_dirty(ds->ds_dbuf, tx);
d683ddbb
JG
944 dsl_dataset_phys(ds)->ds_prev_snap_obj = prev->ds_object;
945 dsl_dataset_phys(ds)->ds_prev_snap_txg =
946 dsl_dataset_phys(prev)->ds_creation_txg;
b128c09f
BB
947
948 dmu_buf_will_dirty(ds->ds_dir->dd_dbuf, tx);
d683ddbb 949 dsl_dir_phys(ds->ds_dir)->dd_origin_obj = prev->ds_object;
b128c09f
BB
950
951 dmu_buf_will_dirty(prev->ds_dbuf, tx);
d683ddbb 952 dsl_dataset_phys(prev)->ds_num_children++;
b128c09f 953
d683ddbb 954 if (dsl_dataset_phys(ds)->ds_next_snap_obj == 0) {
b128c09f 955 ASSERT(ds->ds_prev == NULL);
13fe0198 956 VERIFY0(dsl_dataset_hold_obj(dp,
d683ddbb
JG
957 dsl_dataset_phys(ds)->ds_prev_snap_obj,
958 ds, &ds->ds_prev));
b128c09f
BB
959 }
960 }
961
d683ddbb
JG
962 ASSERT3U(dsl_dir_phys(ds->ds_dir)->dd_origin_obj, ==, prev->ds_object);
963 ASSERT3U(dsl_dataset_phys(ds)->ds_prev_snap_obj, ==, prev->ds_object);
b128c09f 964
d683ddbb 965 if (dsl_dataset_phys(prev)->ds_next_clones_obj == 0) {
428870ff 966 dmu_buf_will_dirty(prev->ds_dbuf, tx);
d683ddbb 967 dsl_dataset_phys(prev)->ds_next_clones_obj =
b128c09f
BB
968 zap_create(dp->dp_meta_objset,
969 DMU_OT_NEXT_CLONES, DMU_OT_NONE, 0, tx);
970 }
13fe0198 971 VERIFY0(zap_add_int(dp->dp_meta_objset,
d683ddbb 972 dsl_dataset_phys(prev)->ds_next_clones_obj, ds->ds_object, tx));
b128c09f
BB
973
974 dsl_dataset_rele(ds, FTAG);
975 if (prev != dp->dp_origin_snap)
976 dsl_dataset_rele(prev, FTAG);
977 return (0);
978}
979
980void
981dsl_pool_upgrade_clones(dsl_pool_t *dp, dmu_tx_t *tx)
982{
983 ASSERT(dmu_tx_is_syncing(tx));
984 ASSERT(dp->dp_origin_snap != NULL);
985
13fe0198 986 VERIFY0(dmu_objset_find_dp(dp, dp->dp_root_dir_obj, upgrade_clones_cb,
9c43027b 987 tx, DS_FIND_CHILDREN | DS_FIND_SERIALIZE));
428870ff
BB
988}
989
990/* ARGSUSED */
991static int
13fe0198 992upgrade_dir_clones_cb(dsl_pool_t *dp, dsl_dataset_t *ds, void *arg)
428870ff
BB
993{
994 dmu_tx_t *tx = arg;
428870ff
BB
995 objset_t *mos = dp->dp_meta_objset;
996
d683ddbb 997 if (dsl_dir_phys(ds->ds_dir)->dd_origin_obj != 0) {
428870ff
BB
998 dsl_dataset_t *origin;
999
13fe0198 1000 VERIFY0(dsl_dataset_hold_obj(dp,
d683ddbb 1001 dsl_dir_phys(ds->ds_dir)->dd_origin_obj, FTAG, &origin));
428870ff 1002
d683ddbb 1003 if (dsl_dir_phys(origin->ds_dir)->dd_clones == 0) {
428870ff 1004 dmu_buf_will_dirty(origin->ds_dir->dd_dbuf, tx);
d683ddbb
JG
1005 dsl_dir_phys(origin->ds_dir)->dd_clones =
1006 zap_create(mos, DMU_OT_DSL_CLONES, DMU_OT_NONE,
1007 0, tx);
428870ff
BB
1008 }
1009
13fe0198 1010 VERIFY0(zap_add_int(dp->dp_meta_objset,
d683ddbb
JG
1011 dsl_dir_phys(origin->ds_dir)->dd_clones,
1012 ds->ds_object, tx));
428870ff
BB
1013
1014 dsl_dataset_rele(origin, FTAG);
1015 }
428870ff
BB
1016 return (0);
1017}
1018
1019void
1020dsl_pool_upgrade_dir_clones(dsl_pool_t *dp, dmu_tx_t *tx)
1021{
428870ff
BB
1022 uint64_t obj;
1023
d6320ddb
BB
1024 ASSERT(dmu_tx_is_syncing(tx));
1025
428870ff 1026 (void) dsl_dir_create_sync(dp, dp->dp_root_dir, FREE_DIR_NAME, tx);
13fe0198 1027 VERIFY0(dsl_pool_open_special_dir(dp,
428870ff
BB
1028 FREE_DIR_NAME, &dp->dp_free_dir));
1029
1030 /*
1031 * We can't use bpobj_alloc(), because spa_version() still
1032 * returns the old version, and we need a new-version bpobj with
1033 * subobj support. So call dmu_object_alloc() directly.
1034 */
1035 obj = dmu_object_alloc(dp->dp_meta_objset, DMU_OT_BPOBJ,
f1512ee6 1036 SPA_OLD_MAXBLOCKSIZE, DMU_OT_BPOBJ_HDR, sizeof (bpobj_phys_t), tx);
13fe0198 1037 VERIFY0(zap_add(dp->dp_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
428870ff 1038 DMU_POOL_FREE_BPOBJ, sizeof (uint64_t), 1, &obj, tx));
13fe0198 1039 VERIFY0(bpobj_open(&dp->dp_free_bpobj, dp->dp_meta_objset, obj));
428870ff 1040
13fe0198 1041 VERIFY0(dmu_objset_find_dp(dp, dp->dp_root_dir_obj,
9c43027b 1042 upgrade_dir_clones_cb, tx, DS_FIND_CHILDREN | DS_FIND_SERIALIZE));
b128c09f
BB
1043}
1044
1045void
1046dsl_pool_create_origin(dsl_pool_t *dp, dmu_tx_t *tx)
1047{
1048 uint64_t dsobj;
1049 dsl_dataset_t *ds;
1050
1051 ASSERT(dmu_tx_is_syncing(tx));
1052 ASSERT(dp->dp_origin_snap == NULL);
13fe0198 1053 ASSERT(rrw_held(&dp->dp_config_rwlock, RW_WRITER));
b128c09f
BB
1054
1055 /* create the origin dir, ds, & snap-ds */
b128c09f 1056 dsobj = dsl_dataset_create_sync(dp->dp_root_dir, ORIGIN_DIR_NAME,
b5256303 1057 NULL, 0, kcred, NULL, tx);
13fe0198
MA
1058 VERIFY0(dsl_dataset_hold_obj(dp, dsobj, FTAG, &ds));
1059 dsl_dataset_snapshot_sync_impl(ds, ORIGIN_DIR_NAME, tx);
d683ddbb 1060 VERIFY0(dsl_dataset_hold_obj(dp, dsl_dataset_phys(ds)->ds_prev_snap_obj,
b128c09f
BB
1061 dp, &dp->dp_origin_snap));
1062 dsl_dataset_rele(ds, FTAG);
b128c09f 1063}
9babb374
BB
1064
1065taskq_t *
3558fd73 1066dsl_pool_iput_taskq(dsl_pool_t *dp)
9babb374 1067{
3558fd73 1068 return (dp->dp_iput_taskq);
9babb374 1069}
428870ff
BB
1070
1071/*
1072 * Walk through the pool-wide zap object of temporary snapshot user holds
1073 * and release them.
1074 */
1075void
1076dsl_pool_clean_tmp_userrefs(dsl_pool_t *dp)
1077{
1078 zap_attribute_t za;
1079 zap_cursor_t zc;
1080 objset_t *mos = dp->dp_meta_objset;
1081 uint64_t zapobj = dp->dp_tmp_userrefs_obj;
95fd54a1 1082 nvlist_t *holds;
428870ff
BB
1083
1084 if (zapobj == 0)
1085 return;
1086 ASSERT(spa_version(dp->dp_spa) >= SPA_VERSION_USERREFS);
1087
95fd54a1
SH
1088 holds = fnvlist_alloc();
1089
428870ff
BB
1090 for (zap_cursor_init(&zc, mos, zapobj);
1091 zap_cursor_retrieve(&zc, &za) == 0;
1092 zap_cursor_advance(&zc)) {
1093 char *htag;
95fd54a1 1094 nvlist_t *tags;
428870ff
BB
1095
1096 htag = strchr(za.za_name, '-');
1097 *htag = '\0';
1098 ++htag;
95fd54a1
SH
1099 if (nvlist_lookup_nvlist(holds, za.za_name, &tags) != 0) {
1100 tags = fnvlist_alloc();
1101 fnvlist_add_boolean(tags, htag);
1102 fnvlist_add_nvlist(holds, za.za_name, tags);
1103 fnvlist_free(tags);
1104 } else {
1105 fnvlist_add_boolean(tags, htag);
1106 }
428870ff 1107 }
95fd54a1
SH
1108 dsl_dataset_user_release_tmp(dp, holds);
1109 fnvlist_free(holds);
428870ff
BB
1110 zap_cursor_fini(&zc);
1111}
1112
1113/*
1114 * Create the pool-wide zap object for storing temporary snapshot holds.
1115 */
1116void
1117dsl_pool_user_hold_create_obj(dsl_pool_t *dp, dmu_tx_t *tx)
1118{
1119 objset_t *mos = dp->dp_meta_objset;
1120
1121 ASSERT(dp->dp_tmp_userrefs_obj == 0);
1122 ASSERT(dmu_tx_is_syncing(tx));
1123
9ae529ec
CS
1124 dp->dp_tmp_userrefs_obj = zap_create_link(mos, DMU_OT_USERREFS,
1125 DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_TMP_USERREFS, tx);
428870ff
BB
1126}
1127
1128static int
1129dsl_pool_user_hold_rele_impl(dsl_pool_t *dp, uint64_t dsobj,
13fe0198 1130 const char *tag, uint64_t now, dmu_tx_t *tx, boolean_t holding)
428870ff
BB
1131{
1132 objset_t *mos = dp->dp_meta_objset;
1133 uint64_t zapobj = dp->dp_tmp_userrefs_obj;
1134 char *name;
1135 int error;
1136
1137 ASSERT(spa_version(dp->dp_spa) >= SPA_VERSION_USERREFS);
1138 ASSERT(dmu_tx_is_syncing(tx));
1139
1140 /*
1141 * If the pool was created prior to SPA_VERSION_USERREFS, the
1142 * zap object for temporary holds might not exist yet.
1143 */
1144 if (zapobj == 0) {
1145 if (holding) {
1146 dsl_pool_user_hold_create_obj(dp, tx);
1147 zapobj = dp->dp_tmp_userrefs_obj;
1148 } else {
2e528b49 1149 return (SET_ERROR(ENOENT));
428870ff
BB
1150 }
1151 }
1152
1153 name = kmem_asprintf("%llx-%s", (u_longlong_t)dsobj, tag);
1154 if (holding)
13fe0198 1155 error = zap_add(mos, zapobj, name, 8, 1, &now, tx);
428870ff
BB
1156 else
1157 error = zap_remove(mos, zapobj, name, tx);
1158 strfree(name);
1159
1160 return (error);
1161}
1162
1163/*
1164 * Add a temporary hold for the given dataset object and tag.
1165 */
1166int
1167dsl_pool_user_hold(dsl_pool_t *dp, uint64_t dsobj, const char *tag,
13fe0198 1168 uint64_t now, dmu_tx_t *tx)
428870ff
BB
1169{
1170 return (dsl_pool_user_hold_rele_impl(dp, dsobj, tag, now, tx, B_TRUE));
1171}
1172
1173/*
1174 * Release a temporary hold for the given dataset object and tag.
1175 */
1176int
1177dsl_pool_user_release(dsl_pool_t *dp, uint64_t dsobj, const char *tag,
1178 dmu_tx_t *tx)
1179{
13fe0198 1180 return (dsl_pool_user_hold_rele_impl(dp, dsobj, tag, 0,
428870ff
BB
1181 tx, B_FALSE));
1182}
c409e464 1183
13fe0198
MA
1184/*
1185 * DSL Pool Configuration Lock
1186 *
1187 * The dp_config_rwlock protects against changes to DSL state (e.g. dataset
1188 * creation / destruction / rename / property setting). It must be held for
1189 * read to hold a dataset or dsl_dir. I.e. you must call
1190 * dsl_pool_config_enter() or dsl_pool_hold() before calling
1191 * dsl_{dataset,dir}_hold{_obj}. In most circumstances, the dp_config_rwlock
1192 * must be held continuously until all datasets and dsl_dirs are released.
1193 *
1194 * The only exception to this rule is that if a "long hold" is placed on
1195 * a dataset, then the dp_config_rwlock may be dropped while the dataset
1196 * is still held. The long hold will prevent the dataset from being
1197 * destroyed -- the destroy will fail with EBUSY. A long hold can be
1198 * obtained by calling dsl_dataset_long_hold(), or by "owning" a dataset
1199 * (by calling dsl_{dataset,objset}_{try}own{_obj}).
1200 *
1201 * Legitimate long-holders (including owners) should be long-running, cancelable
1202 * tasks that should cause "zfs destroy" to fail. This includes DMU
1203 * consumers (i.e. a ZPL filesystem being mounted or ZVOL being open),
1204 * "zfs send", and "zfs diff". There are several other long-holders whose
1205 * uses are suboptimal (e.g. "zfs promote", and zil_suspend()).
1206 *
1207 * The usual formula for long-holding would be:
1208 * dsl_pool_hold()
1209 * dsl_dataset_hold()
1210 * ... perform checks ...
1211 * dsl_dataset_long_hold()
1212 * dsl_pool_rele()
1213 * ... perform long-running task ...
1214 * dsl_dataset_long_rele()
1215 * dsl_dataset_rele()
1216 *
1217 * Note that when the long hold is released, the dataset is still held but
1218 * the pool is not held. The dataset may change arbitrarily during this time
1219 * (e.g. it could be destroyed). Therefore you shouldn't do anything to the
1220 * dataset except release it.
1221 *
1222 * User-initiated operations (e.g. ioctls, zfs_ioc_*()) are either read-only
1223 * or modifying operations.
1224 *
1225 * Modifying operations should generally use dsl_sync_task(). The synctask
1226 * infrastructure enforces proper locking strategy with respect to the
1227 * dp_config_rwlock. See the comment above dsl_sync_task() for details.
1228 *
1229 * Read-only operations will manually hold the pool, then the dataset, obtain
1230 * information from the dataset, then release the pool and dataset.
1231 * dmu_objset_{hold,rele}() are convenience routines that also do the pool
1232 * hold/rele.
1233 */
1234
1235int
1236dsl_pool_hold(const char *name, void *tag, dsl_pool_t **dp)
1237{
1238 spa_t *spa;
1239 int error;
1240
1241 error = spa_open(name, &spa, tag);
1242 if (error == 0) {
1243 *dp = spa_get_dsl(spa);
1244 dsl_pool_config_enter(*dp, tag);
1245 }
1246 return (error);
1247}
1248
1249void
1250dsl_pool_rele(dsl_pool_t *dp, void *tag)
1251{
1252 dsl_pool_config_exit(dp, tag);
1253 spa_close(dp->dp_spa, tag);
1254}
1255
1256void
1257dsl_pool_config_enter(dsl_pool_t *dp, void *tag)
1258{
1259 /*
1260 * We use a "reentrant" reader-writer lock, but not reentrantly.
1261 *
1262 * The rrwlock can (with the track_all flag) track all reading threads,
1263 * which is very useful for debugging which code path failed to release
1264 * the lock, and for verifying that the *current* thread does hold
1265 * the lock.
1266 *
1267 * (Unlike a rwlock, which knows that N threads hold it for
1268 * read, but not *which* threads, so rw_held(RW_READER) returns TRUE
1269 * if any thread holds it for read, even if this thread doesn't).
1270 */
1271 ASSERT(!rrw_held(&dp->dp_config_rwlock, RW_READER));
1272 rrw_enter(&dp->dp_config_rwlock, RW_READER, tag);
1273}
1274
5e8cd5d1
AJ
1275void
1276dsl_pool_config_enter_prio(dsl_pool_t *dp, void *tag)
1277{
1278 ASSERT(!rrw_held(&dp->dp_config_rwlock, RW_READER));
1279 rrw_enter_read_prio(&dp->dp_config_rwlock, tag);
1280}
1281
13fe0198
MA
1282void
1283dsl_pool_config_exit(dsl_pool_t *dp, void *tag)
1284{
1285 rrw_exit(&dp->dp_config_rwlock, tag);
1286}
1287
1288boolean_t
1289dsl_pool_config_held(dsl_pool_t *dp)
1290{
1291 return (RRW_LOCK_HELD(&dp->dp_config_rwlock));
1292}
1293
9c43027b
AJ
1294boolean_t
1295dsl_pool_config_held_writer(dsl_pool_t *dp)
1296{
1297 return (RRW_WRITE_HELD(&dp->dp_config_rwlock));
1298}
1299
93ce2b4c 1300#if defined(_KERNEL)
40a806df
NB
1301EXPORT_SYMBOL(dsl_pool_config_enter);
1302EXPORT_SYMBOL(dsl_pool_config_exit);
1303
02730c33 1304/* BEGIN CSTYLED */
d1d7e268 1305/* zfs_dirty_data_max_percent only applied at module load in arc_init(). */
e8b96c60
MA
1306module_param(zfs_dirty_data_max_percent, int, 0444);
1307MODULE_PARM_DESC(zfs_dirty_data_max_percent, "percent of ram can be dirty");
c409e464 1308
d1d7e268 1309/* zfs_dirty_data_max_max_percent only applied at module load in arc_init(). */
e8b96c60
MA
1310module_param(zfs_dirty_data_max_max_percent, int, 0444);
1311MODULE_PARM_DESC(zfs_dirty_data_max_max_percent,
d1d7e268 1312 "zfs_dirty_data_max upper bound as % of RAM");
c409e464 1313
e8b96c60
MA
1314module_param(zfs_delay_min_dirty_percent, int, 0644);
1315MODULE_PARM_DESC(zfs_delay_min_dirty_percent, "transaction delay threshold");
c409e464 1316
e8b96c60
MA
1317module_param(zfs_dirty_data_max, ulong, 0644);
1318MODULE_PARM_DESC(zfs_dirty_data_max, "determines the dirty space limit");
c409e464 1319
d1d7e268 1320/* zfs_dirty_data_max_max only applied at module load in arc_init(). */
e8b96c60
MA
1321module_param(zfs_dirty_data_max_max, ulong, 0444);
1322MODULE_PARM_DESC(zfs_dirty_data_max_max,
d1d7e268 1323 "zfs_dirty_data_max upper bound in bytes");
c409e464 1324
e8b96c60
MA
1325module_param(zfs_dirty_data_sync, ulong, 0644);
1326MODULE_PARM_DESC(zfs_dirty_data_sync, "sync txg when this much dirty data");
c409e464 1327
e8b96c60
MA
1328module_param(zfs_delay_scale, ulong, 0644);
1329MODULE_PARM_DESC(zfs_delay_scale, "how quickly delay approaches infinity");
64fc7762
MA
1330
1331module_param(zfs_sync_taskq_batch_pct, int, 0644);
1332MODULE_PARM_DESC(zfs_sync_taskq_batch_pct,
1333 "max percent of CPUs that are used to sync dirty data");
a032ac4b
BB
1334
1335module_param(zfs_zil_clean_taskq_nthr_pct, int, 0644);
1336MODULE_PARM_DESC(zfs_zil_clean_taskq_nthr_pct,
1337 "max percent of CPUs that are used per dp_sync_taskq");
1338
1339module_param(zfs_zil_clean_taskq_minalloc, int, 0644);
1340MODULE_PARM_DESC(zfs_zil_clean_taskq_minalloc,
1341 "number of taskq entries that are pre-populated");
1342
1343module_param(zfs_zil_clean_taskq_maxalloc, int, 0644);
1344MODULE_PARM_DESC(zfs_zil_clean_taskq_maxalloc,
1345 "max number of taskq entries that are cached");
1346
02730c33 1347/* END CSTYLED */
c409e464 1348#endif