xref: /illumos-gate/usr/src/uts/common/fs/zfs/dmu_objset.c (revision 9c3fd1216fa7fb02cfbc78a2518a686d54b48ab8)
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 /*
22  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  * Copyright (c) 2012, 2014 by Delphix. All rights reserved.
24  * Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
25  * Copyright (c) 2013, Joyent, Inc. All rights reserved.
26  * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
27  * Copyright 2015 Nexenta Systems, Inc. All rights reserved.
28  * Copyright (c) 2015, STRATO AG, Inc. All rights reserved.
29  */
30 
31 /* Portions Copyright 2010 Robert Milkowski */
32 
33 #include <sys/cred.h>
34 #include <sys/zfs_context.h>
35 #include <sys/dmu_objset.h>
36 #include <sys/dsl_dir.h>
37 #include <sys/dsl_dataset.h>
38 #include <sys/dsl_prop.h>
39 #include <sys/dsl_pool.h>
40 #include <sys/dsl_synctask.h>
41 #include <sys/dsl_deleg.h>
42 #include <sys/dnode.h>
43 #include <sys/dbuf.h>
44 #include <sys/zvol.h>
45 #include <sys/dmu_tx.h>
46 #include <sys/zap.h>
47 #include <sys/zil.h>
48 #include <sys/dmu_impl.h>
49 #include <sys/zfs_ioctl.h>
50 #include <sys/sa.h>
51 #include <sys/zfs_onexit.h>
52 #include <sys/dsl_destroy.h>
53 #include <sys/vdev.h>
54 
55 /*
56  * Needed to close a window in dnode_move() that allows the objset to be freed
57  * before it can be safely accessed.
58  */
59 krwlock_t os_lock;
60 
61 /*
62  * Tunable to overwrite the maximum number of threads for the parallization
63  * of dmu_objset_find_dp, needed to speed up the import of pools with many
64  * datasets.
65  * Default is 4 times the number of leaf vdevs.
66  */
67 int dmu_find_threads = 0;
68 
69 static void dmu_objset_find_dp_cb(void *arg);
70 
71 void
72 dmu_objset_init(void)
73 {
74 	rw_init(&os_lock, NULL, RW_DEFAULT, NULL);
75 }
76 
77 void
78 dmu_objset_fini(void)
79 {
80 	rw_destroy(&os_lock);
81 }
82 
83 spa_t *
84 dmu_objset_spa(objset_t *os)
85 {
86 	return (os->os_spa);
87 }
88 
89 zilog_t *
90 dmu_objset_zil(objset_t *os)
91 {
92 	return (os->os_zil);
93 }
94 
95 dsl_pool_t *
96 dmu_objset_pool(objset_t *os)
97 {
98 	dsl_dataset_t *ds;
99 
100 	if ((ds = os->os_dsl_dataset) != NULL && ds->ds_dir)
101 		return (ds->ds_dir->dd_pool);
102 	else
103 		return (spa_get_dsl(os->os_spa));
104 }
105 
106 dsl_dataset_t *
107 dmu_objset_ds(objset_t *os)
108 {
109 	return (os->os_dsl_dataset);
110 }
111 
112 dmu_objset_type_t
113 dmu_objset_type(objset_t *os)
114 {
115 	return (os->os_phys->os_type);
116 }
117 
118 void
119 dmu_objset_name(objset_t *os, char *buf)
120 {
121 	dsl_dataset_name(os->os_dsl_dataset, buf);
122 }
123 
124 uint64_t
125 dmu_objset_id(objset_t *os)
126 {
127 	dsl_dataset_t *ds = os->os_dsl_dataset;
128 
129 	return (ds ? ds->ds_object : 0);
130 }
131 
132 zfs_sync_type_t
133 dmu_objset_syncprop(objset_t *os)
134 {
135 	return (os->os_sync);
136 }
137 
138 zfs_logbias_op_t
139 dmu_objset_logbias(objset_t *os)
140 {
141 	return (os->os_logbias);
142 }
143 
144 static void
145 checksum_changed_cb(void *arg, uint64_t newval)
146 {
147 	objset_t *os = arg;
148 
149 	/*
150 	 * Inheritance should have been done by now.
151 	 */
152 	ASSERT(newval != ZIO_CHECKSUM_INHERIT);
153 
154 	os->os_checksum = zio_checksum_select(newval, ZIO_CHECKSUM_ON_VALUE);
155 }
156 
157 static void
158 compression_changed_cb(void *arg, uint64_t newval)
159 {
160 	objset_t *os = arg;
161 
162 	/*
163 	 * Inheritance and range checking should have been done by now.
164 	 */
165 	ASSERT(newval != ZIO_COMPRESS_INHERIT);
166 
167 	os->os_compress = zio_compress_select(os->os_spa, newval,
168 	    ZIO_COMPRESS_ON);
169 }
170 
171 static void
172 copies_changed_cb(void *arg, uint64_t newval)
173 {
174 	objset_t *os = arg;
175 
176 	/*
177 	 * Inheritance and range checking should have been done by now.
178 	 */
179 	ASSERT(newval > 0);
180 	ASSERT(newval <= spa_max_replication(os->os_spa));
181 
182 	os->os_copies = newval;
183 }
184 
185 static void
186 dedup_changed_cb(void *arg, uint64_t newval)
187 {
188 	objset_t *os = arg;
189 	spa_t *spa = os->os_spa;
190 	enum zio_checksum checksum;
191 
192 	/*
193 	 * Inheritance should have been done by now.
194 	 */
195 	ASSERT(newval != ZIO_CHECKSUM_INHERIT);
196 
197 	checksum = zio_checksum_dedup_select(spa, newval, ZIO_CHECKSUM_OFF);
198 
199 	os->os_dedup_checksum = checksum & ZIO_CHECKSUM_MASK;
200 	os->os_dedup_verify = !!(checksum & ZIO_CHECKSUM_VERIFY);
201 }
202 
203 static void
204 primary_cache_changed_cb(void *arg, uint64_t newval)
205 {
206 	objset_t *os = arg;
207 
208 	/*
209 	 * Inheritance and range checking should have been done by now.
210 	 */
211 	ASSERT(newval == ZFS_CACHE_ALL || newval == ZFS_CACHE_NONE ||
212 	    newval == ZFS_CACHE_METADATA);
213 
214 	os->os_primary_cache = newval;
215 }
216 
217 static void
218 secondary_cache_changed_cb(void *arg, uint64_t newval)
219 {
220 	objset_t *os = arg;
221 
222 	/*
223 	 * Inheritance and range checking should have been done by now.
224 	 */
225 	ASSERT(newval == ZFS_CACHE_ALL || newval == ZFS_CACHE_NONE ||
226 	    newval == ZFS_CACHE_METADATA);
227 
228 	os->os_secondary_cache = newval;
229 }
230 
231 static void
232 sync_changed_cb(void *arg, uint64_t newval)
233 {
234 	objset_t *os = arg;
235 
236 	/*
237 	 * Inheritance and range checking should have been done by now.
238 	 */
239 	ASSERT(newval == ZFS_SYNC_STANDARD || newval == ZFS_SYNC_ALWAYS ||
240 	    newval == ZFS_SYNC_DISABLED);
241 
242 	os->os_sync = newval;
243 	if (os->os_zil)
244 		zil_set_sync(os->os_zil, newval);
245 }
246 
247 static void
248 redundant_metadata_changed_cb(void *arg, uint64_t newval)
249 {
250 	objset_t *os = arg;
251 
252 	/*
253 	 * Inheritance and range checking should have been done by now.
254 	 */
255 	ASSERT(newval == ZFS_REDUNDANT_METADATA_ALL ||
256 	    newval == ZFS_REDUNDANT_METADATA_MOST);
257 
258 	os->os_redundant_metadata = newval;
259 }
260 
261 static void
262 logbias_changed_cb(void *arg, uint64_t newval)
263 {
264 	objset_t *os = arg;
265 
266 	ASSERT(newval == ZFS_LOGBIAS_LATENCY ||
267 	    newval == ZFS_LOGBIAS_THROUGHPUT);
268 	os->os_logbias = newval;
269 	if (os->os_zil)
270 		zil_set_logbias(os->os_zil, newval);
271 }
272 
273 static void
274 recordsize_changed_cb(void *arg, uint64_t newval)
275 {
276 	objset_t *os = arg;
277 
278 	os->os_recordsize = newval;
279 }
280 
281 void
282 dmu_objset_byteswap(void *buf, size_t size)
283 {
284 	objset_phys_t *osp = buf;
285 
286 	ASSERT(size == OBJSET_OLD_PHYS_SIZE || size == sizeof (objset_phys_t));
287 	dnode_byteswap(&osp->os_meta_dnode);
288 	byteswap_uint64_array(&osp->os_zil_header, sizeof (zil_header_t));
289 	osp->os_type = BSWAP_64(osp->os_type);
290 	osp->os_flags = BSWAP_64(osp->os_flags);
291 	if (size == sizeof (objset_phys_t)) {
292 		dnode_byteswap(&osp->os_userused_dnode);
293 		dnode_byteswap(&osp->os_groupused_dnode);
294 	}
295 }
296 
297 int
298 dmu_objset_open_impl(spa_t *spa, dsl_dataset_t *ds, blkptr_t *bp,
299     objset_t **osp)
300 {
301 	objset_t *os;
302 	int i, err;
303 
304 	ASSERT(ds == NULL || MUTEX_HELD(&ds->ds_opening_lock));
305 
306 	os = kmem_zalloc(sizeof (objset_t), KM_SLEEP);
307 	os->os_dsl_dataset = ds;
308 	os->os_spa = spa;
309 	os->os_rootbp = bp;
310 	if (!BP_IS_HOLE(os->os_rootbp)) {
311 		arc_flags_t aflags = ARC_FLAG_WAIT;
312 		zbookmark_phys_t zb;
313 		SET_BOOKMARK(&zb, ds ? ds->ds_object : DMU_META_OBJSET,
314 		    ZB_ROOT_OBJECT, ZB_ROOT_LEVEL, ZB_ROOT_BLKID);
315 
316 		if (DMU_OS_IS_L2CACHEABLE(os))
317 			aflags |= ARC_FLAG_L2CACHE;
318 		if (DMU_OS_IS_L2COMPRESSIBLE(os))
319 			aflags |= ARC_FLAG_L2COMPRESS;
320 
321 		dprintf_bp(os->os_rootbp, "reading %s", "");
322 		err = arc_read(NULL, spa, os->os_rootbp,
323 		    arc_getbuf_func, &os->os_phys_buf,
324 		    ZIO_PRIORITY_SYNC_READ, ZIO_FLAG_CANFAIL, &aflags, &zb);
325 		if (err != 0) {
326 			kmem_free(os, sizeof (objset_t));
327 			/* convert checksum errors into IO errors */
328 			if (err == ECKSUM)
329 				err = SET_ERROR(EIO);
330 			return (err);
331 		}
332 
333 		/* Increase the blocksize if we are permitted. */
334 		if (spa_version(spa) >= SPA_VERSION_USERSPACE &&
335 		    arc_buf_size(os->os_phys_buf) < sizeof (objset_phys_t)) {
336 			arc_buf_t *buf = arc_buf_alloc(spa,
337 			    sizeof (objset_phys_t), &os->os_phys_buf,
338 			    ARC_BUFC_METADATA);
339 			bzero(buf->b_data, sizeof (objset_phys_t));
340 			bcopy(os->os_phys_buf->b_data, buf->b_data,
341 			    arc_buf_size(os->os_phys_buf));
342 			(void) arc_buf_remove_ref(os->os_phys_buf,
343 			    &os->os_phys_buf);
344 			os->os_phys_buf = buf;
345 		}
346 
347 		os->os_phys = os->os_phys_buf->b_data;
348 		os->os_flags = os->os_phys->os_flags;
349 	} else {
350 		int size = spa_version(spa) >= SPA_VERSION_USERSPACE ?
351 		    sizeof (objset_phys_t) : OBJSET_OLD_PHYS_SIZE;
352 		os->os_phys_buf = arc_buf_alloc(spa, size,
353 		    &os->os_phys_buf, ARC_BUFC_METADATA);
354 		os->os_phys = os->os_phys_buf->b_data;
355 		bzero(os->os_phys, size);
356 	}
357 
358 	/*
359 	 * Note: the changed_cb will be called once before the register
360 	 * func returns, thus changing the checksum/compression from the
361 	 * default (fletcher2/off).  Snapshots don't need to know about
362 	 * checksum/compression/copies.
363 	 */
364 	if (ds != NULL) {
365 		boolean_t needlock = B_FALSE;
366 
367 		/*
368 		 * Note: it's valid to open the objset if the dataset is
369 		 * long-held, in which case the pool_config lock will not
370 		 * be held.
371 		 */
372 		if (!dsl_pool_config_held(dmu_objset_pool(os))) {
373 			needlock = B_TRUE;
374 			dsl_pool_config_enter(dmu_objset_pool(os), FTAG);
375 		}
376 		err = dsl_prop_register(ds,
377 		    zfs_prop_to_name(ZFS_PROP_PRIMARYCACHE),
378 		    primary_cache_changed_cb, os);
379 		if (err == 0) {
380 			err = dsl_prop_register(ds,
381 			    zfs_prop_to_name(ZFS_PROP_SECONDARYCACHE),
382 			    secondary_cache_changed_cb, os);
383 		}
384 		if (!ds->ds_is_snapshot) {
385 			if (err == 0) {
386 				err = dsl_prop_register(ds,
387 				    zfs_prop_to_name(ZFS_PROP_CHECKSUM),
388 				    checksum_changed_cb, os);
389 			}
390 			if (err == 0) {
391 				err = dsl_prop_register(ds,
392 				    zfs_prop_to_name(ZFS_PROP_COMPRESSION),
393 				    compression_changed_cb, os);
394 			}
395 			if (err == 0) {
396 				err = dsl_prop_register(ds,
397 				    zfs_prop_to_name(ZFS_PROP_COPIES),
398 				    copies_changed_cb, os);
399 			}
400 			if (err == 0) {
401 				err = dsl_prop_register(ds,
402 				    zfs_prop_to_name(ZFS_PROP_DEDUP),
403 				    dedup_changed_cb, os);
404 			}
405 			if (err == 0) {
406 				err = dsl_prop_register(ds,
407 				    zfs_prop_to_name(ZFS_PROP_LOGBIAS),
408 				    logbias_changed_cb, os);
409 			}
410 			if (err == 0) {
411 				err = dsl_prop_register(ds,
412 				    zfs_prop_to_name(ZFS_PROP_SYNC),
413 				    sync_changed_cb, os);
414 			}
415 			if (err == 0) {
416 				err = dsl_prop_register(ds,
417 				    zfs_prop_to_name(
418 				    ZFS_PROP_REDUNDANT_METADATA),
419 				    redundant_metadata_changed_cb, os);
420 			}
421 			if (err == 0) {
422 				err = dsl_prop_register(ds,
423 				    zfs_prop_to_name(ZFS_PROP_RECORDSIZE),
424 				    recordsize_changed_cb, os);
425 			}
426 		}
427 		if (needlock)
428 			dsl_pool_config_exit(dmu_objset_pool(os), FTAG);
429 		if (err != 0) {
430 			VERIFY(arc_buf_remove_ref(os->os_phys_buf,
431 			    &os->os_phys_buf));
432 			kmem_free(os, sizeof (objset_t));
433 			return (err);
434 		}
435 	} else {
436 		/* It's the meta-objset. */
437 		os->os_checksum = ZIO_CHECKSUM_FLETCHER_4;
438 		os->os_compress = ZIO_COMPRESS_ON;
439 		os->os_copies = spa_max_replication(spa);
440 		os->os_dedup_checksum = ZIO_CHECKSUM_OFF;
441 		os->os_dedup_verify = B_FALSE;
442 		os->os_logbias = ZFS_LOGBIAS_LATENCY;
443 		os->os_sync = ZFS_SYNC_STANDARD;
444 		os->os_primary_cache = ZFS_CACHE_ALL;
445 		os->os_secondary_cache = ZFS_CACHE_ALL;
446 	}
447 
448 	if (ds == NULL || !ds->ds_is_snapshot)
449 		os->os_zil_header = os->os_phys->os_zil_header;
450 	os->os_zil = zil_alloc(os, &os->os_zil_header);
451 
452 	for (i = 0; i < TXG_SIZE; i++) {
453 		list_create(&os->os_dirty_dnodes[i], sizeof (dnode_t),
454 		    offsetof(dnode_t, dn_dirty_link[i]));
455 		list_create(&os->os_free_dnodes[i], sizeof (dnode_t),
456 		    offsetof(dnode_t, dn_dirty_link[i]));
457 	}
458 	list_create(&os->os_dnodes, sizeof (dnode_t),
459 	    offsetof(dnode_t, dn_link));
460 	list_create(&os->os_downgraded_dbufs, sizeof (dmu_buf_impl_t),
461 	    offsetof(dmu_buf_impl_t, db_link));
462 
463 	mutex_init(&os->os_lock, NULL, MUTEX_DEFAULT, NULL);
464 	mutex_init(&os->os_obj_lock, NULL, MUTEX_DEFAULT, NULL);
465 	mutex_init(&os->os_user_ptr_lock, NULL, MUTEX_DEFAULT, NULL);
466 
467 	dnode_special_open(os, &os->os_phys->os_meta_dnode,
468 	    DMU_META_DNODE_OBJECT, &os->os_meta_dnode);
469 	if (arc_buf_size(os->os_phys_buf) >= sizeof (objset_phys_t)) {
470 		dnode_special_open(os, &os->os_phys->os_userused_dnode,
471 		    DMU_USERUSED_OBJECT, &os->os_userused_dnode);
472 		dnode_special_open(os, &os->os_phys->os_groupused_dnode,
473 		    DMU_GROUPUSED_OBJECT, &os->os_groupused_dnode);
474 	}
475 
476 	*osp = os;
477 	return (0);
478 }
479 
480 int
481 dmu_objset_from_ds(dsl_dataset_t *ds, objset_t **osp)
482 {
483 	int err = 0;
484 
485 	/*
486 	 * We shouldn't be doing anything with dsl_dataset_t's unless the
487 	 * pool_config lock is held, or the dataset is long-held.
488 	 */
489 	ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool) ||
490 	    dsl_dataset_long_held(ds));
491 
492 	mutex_enter(&ds->ds_opening_lock);
493 	if (ds->ds_objset == NULL) {
494 		objset_t *os;
495 		err = dmu_objset_open_impl(dsl_dataset_get_spa(ds),
496 		    ds, dsl_dataset_get_blkptr(ds), &os);
497 
498 		if (err == 0) {
499 			mutex_enter(&ds->ds_lock);
500 			ASSERT(ds->ds_objset == NULL);
501 			ds->ds_objset = os;
502 			mutex_exit(&ds->ds_lock);
503 		}
504 	}
505 	*osp = ds->ds_objset;
506 	mutex_exit(&ds->ds_opening_lock);
507 	return (err);
508 }
509 
510 /*
511  * Holds the pool while the objset is held.  Therefore only one objset
512  * can be held at a time.
513  */
514 int
515 dmu_objset_hold(const char *name, void *tag, objset_t **osp)
516 {
517 	dsl_pool_t *dp;
518 	dsl_dataset_t *ds;
519 	int err;
520 
521 	err = dsl_pool_hold(name, tag, &dp);
522 	if (err != 0)
523 		return (err);
524 	err = dsl_dataset_hold(dp, name, tag, &ds);
525 	if (err != 0) {
526 		dsl_pool_rele(dp, tag);
527 		return (err);
528 	}
529 
530 	err = dmu_objset_from_ds(ds, osp);
531 	if (err != 0) {
532 		dsl_dataset_rele(ds, tag);
533 		dsl_pool_rele(dp, tag);
534 	}
535 
536 	return (err);
537 }
538 
539 static int
540 dmu_objset_own_impl(dsl_dataset_t *ds, dmu_objset_type_t type,
541     boolean_t readonly, void *tag, objset_t **osp)
542 {
543 	int err;
544 
545 	err = dmu_objset_from_ds(ds, osp);
546 	if (err != 0) {
547 		dsl_dataset_disown(ds, tag);
548 	} else if (type != DMU_OST_ANY && type != (*osp)->os_phys->os_type) {
549 		dsl_dataset_disown(ds, tag);
550 		return (SET_ERROR(EINVAL));
551 	} else if (!readonly && dsl_dataset_is_snapshot(ds)) {
552 		dsl_dataset_disown(ds, tag);
553 		return (SET_ERROR(EROFS));
554 	}
555 	return (err);
556 }
557 
558 /*
559  * dsl_pool must not be held when this is called.
560  * Upon successful return, there will be a longhold on the dataset,
561  * and the dsl_pool will not be held.
562  */
563 int
564 dmu_objset_own(const char *name, dmu_objset_type_t type,
565     boolean_t readonly, void *tag, objset_t **osp)
566 {
567 	dsl_pool_t *dp;
568 	dsl_dataset_t *ds;
569 	int err;
570 
571 	err = dsl_pool_hold(name, FTAG, &dp);
572 	if (err != 0)
573 		return (err);
574 	err = dsl_dataset_own(dp, name, tag, &ds);
575 	if (err != 0) {
576 		dsl_pool_rele(dp, FTAG);
577 		return (err);
578 	}
579 	err = dmu_objset_own_impl(ds, type, readonly, tag, osp);
580 	dsl_pool_rele(dp, FTAG);
581 
582 	return (err);
583 }
584 
585 int
586 dmu_objset_own_obj(dsl_pool_t *dp, uint64_t obj, dmu_objset_type_t type,
587     boolean_t readonly, void *tag, objset_t **osp)
588 {
589 	dsl_dataset_t *ds;
590 	int err;
591 
592 	err = dsl_dataset_own_obj(dp, obj, tag, &ds);
593 	if (err != 0)
594 		return (err);
595 
596 	return (dmu_objset_own_impl(ds, type, readonly, tag, osp));
597 }
598 
599 void
600 dmu_objset_rele(objset_t *os, void *tag)
601 {
602 	dsl_pool_t *dp = dmu_objset_pool(os);
603 	dsl_dataset_rele(os->os_dsl_dataset, tag);
604 	dsl_pool_rele(dp, tag);
605 }
606 
607 /*
608  * When we are called, os MUST refer to an objset associated with a dataset
609  * that is owned by 'tag'; that is, is held and long held by 'tag' and ds_owner
610  * == tag.  We will then release and reacquire ownership of the dataset while
611  * holding the pool config_rwlock to avoid intervening namespace or ownership
612  * changes may occur.
613  *
614  * This exists solely to accommodate zfs_ioc_userspace_upgrade()'s desire to
615  * release the hold on its dataset and acquire a new one on the dataset of the
616  * same name so that it can be partially torn down and reconstructed.
617  */
618 void
619 dmu_objset_refresh_ownership(objset_t *os, void *tag)
620 {
621 	dsl_pool_t *dp;
622 	dsl_dataset_t *ds, *newds;
623 	char name[MAXNAMELEN];
624 
625 	ds = os->os_dsl_dataset;
626 	VERIFY3P(ds, !=, NULL);
627 	VERIFY3P(ds->ds_owner, ==, tag);
628 	VERIFY(dsl_dataset_long_held(ds));
629 
630 	dsl_dataset_name(ds, name);
631 	dp = dmu_objset_pool(os);
632 	dsl_pool_config_enter(dp, FTAG);
633 	dmu_objset_disown(os, tag);
634 	VERIFY0(dsl_dataset_own(dp, name, tag, &newds));
635 	VERIFY3P(newds, ==, os->os_dsl_dataset);
636 	dsl_pool_config_exit(dp, FTAG);
637 }
638 
639 void
640 dmu_objset_disown(objset_t *os, void *tag)
641 {
642 	dsl_dataset_disown(os->os_dsl_dataset, tag);
643 }
644 
645 void
646 dmu_objset_evict_dbufs(objset_t *os)
647 {
648 	dnode_t dn_marker;
649 	dnode_t *dn;
650 
651 	mutex_enter(&os->os_lock);
652 	dn = list_head(&os->os_dnodes);
653 	while (dn != NULL) {
654 		/*
655 		 * Skip dnodes without holds.  We have to do this dance
656 		 * because dnode_add_ref() only works if there is already a
657 		 * hold.  If the dnode has no holds, then it has no dbufs.
658 		 */
659 		if (dnode_add_ref(dn, FTAG)) {
660 			list_insert_after(&os->os_dnodes, dn, &dn_marker);
661 			mutex_exit(&os->os_lock);
662 
663 			dnode_evict_dbufs(dn);
664 			dnode_rele(dn, FTAG);
665 
666 			mutex_enter(&os->os_lock);
667 			dn = list_next(&os->os_dnodes, &dn_marker);
668 			list_remove(&os->os_dnodes, &dn_marker);
669 		} else {
670 			dn = list_next(&os->os_dnodes, dn);
671 		}
672 	}
673 	mutex_exit(&os->os_lock);
674 
675 	if (DMU_USERUSED_DNODE(os) != NULL) {
676 		dnode_evict_dbufs(DMU_GROUPUSED_DNODE(os));
677 		dnode_evict_dbufs(DMU_USERUSED_DNODE(os));
678 	}
679 	dnode_evict_dbufs(DMU_META_DNODE(os));
680 }
681 
682 /*
683  * Objset eviction processing is split into into two pieces.
684  * The first marks the objset as evicting, evicts any dbufs that
685  * have a refcount of zero, and then queues up the objset for the
686  * second phase of eviction.  Once os->os_dnodes has been cleared by
687  * dnode_buf_pageout()->dnode_destroy(), the second phase is executed.
688  * The second phase closes the special dnodes, dequeues the objset from
689  * the list of those undergoing eviction, and finally frees the objset.
690  *
691  * NOTE: Due to asynchronous eviction processing (invocation of
692  *       dnode_buf_pageout()), it is possible for the meta dnode for the
693  *       objset to have no holds even though os->os_dnodes is not empty.
694  */
695 void
696 dmu_objset_evict(objset_t *os)
697 {
698 	dsl_dataset_t *ds = os->os_dsl_dataset;
699 
700 	for (int t = 0; t < TXG_SIZE; t++)
701 		ASSERT(!dmu_objset_is_dirty(os, t));
702 
703 	if (ds)
704 		dsl_prop_unregister_all(ds, os);
705 
706 	if (os->os_sa)
707 		sa_tear_down(os);
708 
709 	os->os_evicting = B_TRUE;
710 	dmu_objset_evict_dbufs(os);
711 
712 	mutex_enter(&os->os_lock);
713 	spa_evicting_os_register(os->os_spa, os);
714 	if (list_is_empty(&os->os_dnodes)) {
715 		mutex_exit(&os->os_lock);
716 		dmu_objset_evict_done(os);
717 	} else {
718 		mutex_exit(&os->os_lock);
719 	}
720 }
721 
722 void
723 dmu_objset_evict_done(objset_t *os)
724 {
725 	ASSERT3P(list_head(&os->os_dnodes), ==, NULL);
726 
727 	dnode_special_close(&os->os_meta_dnode);
728 	if (DMU_USERUSED_DNODE(os)) {
729 		dnode_special_close(&os->os_userused_dnode);
730 		dnode_special_close(&os->os_groupused_dnode);
731 	}
732 	zil_free(os->os_zil);
733 
734 	VERIFY(arc_buf_remove_ref(os->os_phys_buf, &os->os_phys_buf));
735 
736 	/*
737 	 * This is a barrier to prevent the objset from going away in
738 	 * dnode_move() until we can safely ensure that the objset is still in
739 	 * use. We consider the objset valid before the barrier and invalid
740 	 * after the barrier.
741 	 */
742 	rw_enter(&os_lock, RW_READER);
743 	rw_exit(&os_lock);
744 
745 	mutex_destroy(&os->os_lock);
746 	mutex_destroy(&os->os_obj_lock);
747 	mutex_destroy(&os->os_user_ptr_lock);
748 	spa_evicting_os_deregister(os->os_spa, os);
749 	kmem_free(os, sizeof (objset_t));
750 }
751 
752 timestruc_t
753 dmu_objset_snap_cmtime(objset_t *os)
754 {
755 	return (dsl_dir_snap_cmtime(os->os_dsl_dataset->ds_dir));
756 }
757 
758 /* called from dsl for meta-objset */
759 objset_t *
760 dmu_objset_create_impl(spa_t *spa, dsl_dataset_t *ds, blkptr_t *bp,
761     dmu_objset_type_t type, dmu_tx_t *tx)
762 {
763 	objset_t *os;
764 	dnode_t *mdn;
765 
766 	ASSERT(dmu_tx_is_syncing(tx));
767 
768 	if (ds != NULL)
769 		VERIFY0(dmu_objset_from_ds(ds, &os));
770 	else
771 		VERIFY0(dmu_objset_open_impl(spa, NULL, bp, &os));
772 
773 	mdn = DMU_META_DNODE(os);
774 
775 	dnode_allocate(mdn, DMU_OT_DNODE, 1 << DNODE_BLOCK_SHIFT,
776 	    DN_MAX_INDBLKSHIFT, DMU_OT_NONE, 0, tx);
777 
778 	/*
779 	 * We don't want to have to increase the meta-dnode's nlevels
780 	 * later, because then we could do it in quescing context while
781 	 * we are also accessing it in open context.
782 	 *
783 	 * This precaution is not necessary for the MOS (ds == NULL),
784 	 * because the MOS is only updated in syncing context.
785 	 * This is most fortunate: the MOS is the only objset that
786 	 * needs to be synced multiple times as spa_sync() iterates
787 	 * to convergence, so minimizing its dn_nlevels matters.
788 	 */
789 	if (ds != NULL) {
790 		int levels = 1;
791 
792 		/*
793 		 * Determine the number of levels necessary for the meta-dnode
794 		 * to contain DN_MAX_OBJECT dnodes.
795 		 */
796 		while ((uint64_t)mdn->dn_nblkptr << (mdn->dn_datablkshift +
797 		    (levels - 1) * (mdn->dn_indblkshift - SPA_BLKPTRSHIFT)) <
798 		    DN_MAX_OBJECT * sizeof (dnode_phys_t))
799 			levels++;
800 
801 		mdn->dn_next_nlevels[tx->tx_txg & TXG_MASK] =
802 		    mdn->dn_nlevels = levels;
803 	}
804 
805 	ASSERT(type != DMU_OST_NONE);
806 	ASSERT(type != DMU_OST_ANY);
807 	ASSERT(type < DMU_OST_NUMTYPES);
808 	os->os_phys->os_type = type;
809 	if (dmu_objset_userused_enabled(os)) {
810 		os->os_phys->os_flags |= OBJSET_FLAG_USERACCOUNTING_COMPLETE;
811 		os->os_flags = os->os_phys->os_flags;
812 	}
813 
814 	dsl_dataset_dirty(ds, tx);
815 
816 	return (os);
817 }
818 
819 typedef struct dmu_objset_create_arg {
820 	const char *doca_name;
821 	cred_t *doca_cred;
822 	void (*doca_userfunc)(objset_t *os, void *arg,
823 	    cred_t *cr, dmu_tx_t *tx);
824 	void *doca_userarg;
825 	dmu_objset_type_t doca_type;
826 	uint64_t doca_flags;
827 } dmu_objset_create_arg_t;
828 
829 /*ARGSUSED*/
830 static int
831 dmu_objset_create_check(void *arg, dmu_tx_t *tx)
832 {
833 	dmu_objset_create_arg_t *doca = arg;
834 	dsl_pool_t *dp = dmu_tx_pool(tx);
835 	dsl_dir_t *pdd;
836 	const char *tail;
837 	int error;
838 
839 	if (strchr(doca->doca_name, '@') != NULL)
840 		return (SET_ERROR(EINVAL));
841 
842 	error = dsl_dir_hold(dp, doca->doca_name, FTAG, &pdd, &tail);
843 	if (error != 0)
844 		return (error);
845 	if (tail == NULL) {
846 		dsl_dir_rele(pdd, FTAG);
847 		return (SET_ERROR(EEXIST));
848 	}
849 	error = dsl_fs_ss_limit_check(pdd, 1, ZFS_PROP_FILESYSTEM_LIMIT, NULL,
850 	    doca->doca_cred);
851 	dsl_dir_rele(pdd, FTAG);
852 
853 	return (error);
854 }
855 
856 static void
857 dmu_objset_create_sync(void *arg, dmu_tx_t *tx)
858 {
859 	dmu_objset_create_arg_t *doca = arg;
860 	dsl_pool_t *dp = dmu_tx_pool(tx);
861 	dsl_dir_t *pdd;
862 	const char *tail;
863 	dsl_dataset_t *ds;
864 	uint64_t obj;
865 	blkptr_t *bp;
866 	objset_t *os;
867 
868 	VERIFY0(dsl_dir_hold(dp, doca->doca_name, FTAG, &pdd, &tail));
869 
870 	obj = dsl_dataset_create_sync(pdd, tail, NULL, doca->doca_flags,
871 	    doca->doca_cred, tx);
872 
873 	VERIFY0(dsl_dataset_hold_obj(pdd->dd_pool, obj, FTAG, &ds));
874 	bp = dsl_dataset_get_blkptr(ds);
875 	os = dmu_objset_create_impl(pdd->dd_pool->dp_spa,
876 	    ds, bp, doca->doca_type, tx);
877 
878 	if (doca->doca_userfunc != NULL) {
879 		doca->doca_userfunc(os, doca->doca_userarg,
880 		    doca->doca_cred, tx);
881 	}
882 
883 	spa_history_log_internal_ds(ds, "create", tx, "");
884 	dsl_dataset_rele(ds, FTAG);
885 	dsl_dir_rele(pdd, FTAG);
886 }
887 
888 int
889 dmu_objset_create(const char *name, dmu_objset_type_t type, uint64_t flags,
890     void (*func)(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx), void *arg)
891 {
892 	dmu_objset_create_arg_t doca;
893 
894 	doca.doca_name = name;
895 	doca.doca_cred = CRED();
896 	doca.doca_flags = flags;
897 	doca.doca_userfunc = func;
898 	doca.doca_userarg = arg;
899 	doca.doca_type = type;
900 
901 	return (dsl_sync_task(name,
902 	    dmu_objset_create_check, dmu_objset_create_sync, &doca,
903 	    5, ZFS_SPACE_CHECK_NORMAL));
904 }
905 
906 typedef struct dmu_objset_clone_arg {
907 	const char *doca_clone;
908 	const char *doca_origin;
909 	cred_t *doca_cred;
910 } dmu_objset_clone_arg_t;
911 
912 /*ARGSUSED*/
913 static int
914 dmu_objset_clone_check(void *arg, dmu_tx_t *tx)
915 {
916 	dmu_objset_clone_arg_t *doca = arg;
917 	dsl_dir_t *pdd;
918 	const char *tail;
919 	int error;
920 	dsl_dataset_t *origin;
921 	dsl_pool_t *dp = dmu_tx_pool(tx);
922 
923 	if (strchr(doca->doca_clone, '@') != NULL)
924 		return (SET_ERROR(EINVAL));
925 
926 	error = dsl_dir_hold(dp, doca->doca_clone, FTAG, &pdd, &tail);
927 	if (error != 0)
928 		return (error);
929 	if (tail == NULL) {
930 		dsl_dir_rele(pdd, FTAG);
931 		return (SET_ERROR(EEXIST));
932 	}
933 
934 	error = dsl_fs_ss_limit_check(pdd, 1, ZFS_PROP_FILESYSTEM_LIMIT, NULL,
935 	    doca->doca_cred);
936 	if (error != 0) {
937 		dsl_dir_rele(pdd, FTAG);
938 		return (SET_ERROR(EDQUOT));
939 	}
940 	dsl_dir_rele(pdd, FTAG);
941 
942 	error = dsl_dataset_hold(dp, doca->doca_origin, FTAG, &origin);
943 	if (error != 0)
944 		return (error);
945 
946 	/* You can only clone snapshots, not the head datasets. */
947 	if (!origin->ds_is_snapshot) {
948 		dsl_dataset_rele(origin, FTAG);
949 		return (SET_ERROR(EINVAL));
950 	}
951 	dsl_dataset_rele(origin, FTAG);
952 
953 	return (0);
954 }
955 
956 static void
957 dmu_objset_clone_sync(void *arg, dmu_tx_t *tx)
958 {
959 	dmu_objset_clone_arg_t *doca = arg;
960 	dsl_pool_t *dp = dmu_tx_pool(tx);
961 	dsl_dir_t *pdd;
962 	const char *tail;
963 	dsl_dataset_t *origin, *ds;
964 	uint64_t obj;
965 	char namebuf[MAXNAMELEN];
966 
967 	VERIFY0(dsl_dir_hold(dp, doca->doca_clone, FTAG, &pdd, &tail));
968 	VERIFY0(dsl_dataset_hold(dp, doca->doca_origin, FTAG, &origin));
969 
970 	obj = dsl_dataset_create_sync(pdd, tail, origin, 0,
971 	    doca->doca_cred, tx);
972 
973 	VERIFY0(dsl_dataset_hold_obj(pdd->dd_pool, obj, FTAG, &ds));
974 	dsl_dataset_name(origin, namebuf);
975 	spa_history_log_internal_ds(ds, "clone", tx,
976 	    "origin=%s (%llu)", namebuf, origin->ds_object);
977 	dsl_dataset_rele(ds, FTAG);
978 	dsl_dataset_rele(origin, FTAG);
979 	dsl_dir_rele(pdd, FTAG);
980 }
981 
982 int
983 dmu_objset_clone(const char *clone, const char *origin)
984 {
985 	dmu_objset_clone_arg_t doca;
986 
987 	doca.doca_clone = clone;
988 	doca.doca_origin = origin;
989 	doca.doca_cred = CRED();
990 
991 	return (dsl_sync_task(clone,
992 	    dmu_objset_clone_check, dmu_objset_clone_sync, &doca,
993 	    5, ZFS_SPACE_CHECK_NORMAL));
994 }
995 
996 int
997 dmu_objset_snapshot_one(const char *fsname, const char *snapname)
998 {
999 	int err;
1000 	char *longsnap = kmem_asprintf("%s@%s", fsname, snapname);
1001 	nvlist_t *snaps = fnvlist_alloc();
1002 
1003 	fnvlist_add_boolean(snaps, longsnap);
1004 	strfree(longsnap);
1005 	err = dsl_dataset_snapshot(snaps, NULL, NULL);
1006 	fnvlist_free(snaps);
1007 	return (err);
1008 }
1009 
1010 static void
1011 dmu_objset_sync_dnodes(list_t *list, list_t *newlist, dmu_tx_t *tx)
1012 {
1013 	dnode_t *dn;
1014 
1015 	while (dn = list_head(list)) {
1016 		ASSERT(dn->dn_object != DMU_META_DNODE_OBJECT);
1017 		ASSERT(dn->dn_dbuf->db_data_pending);
1018 		/*
1019 		 * Initialize dn_zio outside dnode_sync() because the
1020 		 * meta-dnode needs to set it ouside dnode_sync().
1021 		 */
1022 		dn->dn_zio = dn->dn_dbuf->db_data_pending->dr_zio;
1023 		ASSERT(dn->dn_zio);
1024 
1025 		ASSERT3U(dn->dn_nlevels, <=, DN_MAX_LEVELS);
1026 		list_remove(list, dn);
1027 
1028 		if (newlist) {
1029 			(void) dnode_add_ref(dn, newlist);
1030 			list_insert_tail(newlist, dn);
1031 		}
1032 
1033 		dnode_sync(dn, tx);
1034 	}
1035 }
1036 
1037 /* ARGSUSED */
1038 static void
1039 dmu_objset_write_ready(zio_t *zio, arc_buf_t *abuf, void *arg)
1040 {
1041 	blkptr_t *bp = zio->io_bp;
1042 	objset_t *os = arg;
1043 	dnode_phys_t *dnp = &os->os_phys->os_meta_dnode;
1044 
1045 	ASSERT(!BP_IS_EMBEDDED(bp));
1046 	ASSERT3P(bp, ==, os->os_rootbp);
1047 	ASSERT3U(BP_GET_TYPE(bp), ==, DMU_OT_OBJSET);
1048 	ASSERT0(BP_GET_LEVEL(bp));
1049 
1050 	/*
1051 	 * Update rootbp fill count: it should be the number of objects
1052 	 * allocated in the object set (not counting the "special"
1053 	 * objects that are stored in the objset_phys_t -- the meta
1054 	 * dnode and user/group accounting objects).
1055 	 */
1056 	bp->blk_fill = 0;
1057 	for (int i = 0; i < dnp->dn_nblkptr; i++)
1058 		bp->blk_fill += BP_GET_FILL(&dnp->dn_blkptr[i]);
1059 }
1060 
1061 /* ARGSUSED */
1062 static void
1063 dmu_objset_write_done(zio_t *zio, arc_buf_t *abuf, void *arg)
1064 {
1065 	blkptr_t *bp = zio->io_bp;
1066 	blkptr_t *bp_orig = &zio->io_bp_orig;
1067 	objset_t *os = arg;
1068 
1069 	if (zio->io_flags & ZIO_FLAG_IO_REWRITE) {
1070 		ASSERT(BP_EQUAL(bp, bp_orig));
1071 	} else {
1072 		dsl_dataset_t *ds = os->os_dsl_dataset;
1073 		dmu_tx_t *tx = os->os_synctx;
1074 
1075 		(void) dsl_dataset_block_kill(ds, bp_orig, tx, B_TRUE);
1076 		dsl_dataset_block_born(ds, bp, tx);
1077 	}
1078 }
1079 
1080 /* called from dsl */
1081 void
1082 dmu_objset_sync(objset_t *os, zio_t *pio, dmu_tx_t *tx)
1083 {
1084 	int txgoff;
1085 	zbookmark_phys_t zb;
1086 	zio_prop_t zp;
1087 	zio_t *zio;
1088 	list_t *list;
1089 	list_t *newlist = NULL;
1090 	dbuf_dirty_record_t *dr;
1091 
1092 	dprintf_ds(os->os_dsl_dataset, "txg=%llu\n", tx->tx_txg);
1093 
1094 	ASSERT(dmu_tx_is_syncing(tx));
1095 	/* XXX the write_done callback should really give us the tx... */
1096 	os->os_synctx = tx;
1097 
1098 	if (os->os_dsl_dataset == NULL) {
1099 		/*
1100 		 * This is the MOS.  If we have upgraded,
1101 		 * spa_max_replication() could change, so reset
1102 		 * os_copies here.
1103 		 */
1104 		os->os_copies = spa_max_replication(os->os_spa);
1105 	}
1106 
1107 	/*
1108 	 * Create the root block IO
1109 	 */
1110 	SET_BOOKMARK(&zb, os->os_dsl_dataset ?
1111 	    os->os_dsl_dataset->ds_object : DMU_META_OBJSET,
1112 	    ZB_ROOT_OBJECT, ZB_ROOT_LEVEL, ZB_ROOT_BLKID);
1113 	arc_release(os->os_phys_buf, &os->os_phys_buf);
1114 
1115 	dmu_write_policy(os, NULL, 0, 0, &zp);
1116 
1117 	zio = arc_write(pio, os->os_spa, tx->tx_txg,
1118 	    os->os_rootbp, os->os_phys_buf, DMU_OS_IS_L2CACHEABLE(os),
1119 	    DMU_OS_IS_L2COMPRESSIBLE(os), &zp, dmu_objset_write_ready,
1120 	    NULL, dmu_objset_write_done, os, ZIO_PRIORITY_ASYNC_WRITE,
1121 	    ZIO_FLAG_MUSTSUCCEED, &zb);
1122 
1123 	/*
1124 	 * Sync special dnodes - the parent IO for the sync is the root block
1125 	 */
1126 	DMU_META_DNODE(os)->dn_zio = zio;
1127 	dnode_sync(DMU_META_DNODE(os), tx);
1128 
1129 	os->os_phys->os_flags = os->os_flags;
1130 
1131 	if (DMU_USERUSED_DNODE(os) &&
1132 	    DMU_USERUSED_DNODE(os)->dn_type != DMU_OT_NONE) {
1133 		DMU_USERUSED_DNODE(os)->dn_zio = zio;
1134 		dnode_sync(DMU_USERUSED_DNODE(os), tx);
1135 		DMU_GROUPUSED_DNODE(os)->dn_zio = zio;
1136 		dnode_sync(DMU_GROUPUSED_DNODE(os), tx);
1137 	}
1138 
1139 	txgoff = tx->tx_txg & TXG_MASK;
1140 
1141 	if (dmu_objset_userused_enabled(os)) {
1142 		newlist = &os->os_synced_dnodes;
1143 		/*
1144 		 * We must create the list here because it uses the
1145 		 * dn_dirty_link[] of this txg.
1146 		 */
1147 		list_create(newlist, sizeof (dnode_t),
1148 		    offsetof(dnode_t, dn_dirty_link[txgoff]));
1149 	}
1150 
1151 	dmu_objset_sync_dnodes(&os->os_free_dnodes[txgoff], newlist, tx);
1152 	dmu_objset_sync_dnodes(&os->os_dirty_dnodes[txgoff], newlist, tx);
1153 
1154 	list = &DMU_META_DNODE(os)->dn_dirty_records[txgoff];
1155 	while (dr = list_head(list)) {
1156 		ASSERT0(dr->dr_dbuf->db_level);
1157 		list_remove(list, dr);
1158 		if (dr->dr_zio)
1159 			zio_nowait(dr->dr_zio);
1160 	}
1161 	/*
1162 	 * Free intent log blocks up to this tx.
1163 	 */
1164 	zil_sync(os->os_zil, tx);
1165 	os->os_phys->os_zil_header = os->os_zil_header;
1166 	zio_nowait(zio);
1167 }
1168 
1169 boolean_t
1170 dmu_objset_is_dirty(objset_t *os, uint64_t txg)
1171 {
1172 	return (!list_is_empty(&os->os_dirty_dnodes[txg & TXG_MASK]) ||
1173 	    !list_is_empty(&os->os_free_dnodes[txg & TXG_MASK]));
1174 }
1175 
1176 static objset_used_cb_t *used_cbs[DMU_OST_NUMTYPES];
1177 
1178 void
1179 dmu_objset_register_type(dmu_objset_type_t ost, objset_used_cb_t *cb)
1180 {
1181 	used_cbs[ost] = cb;
1182 }
1183 
1184 boolean_t
1185 dmu_objset_userused_enabled(objset_t *os)
1186 {
1187 	return (spa_version(os->os_spa) >= SPA_VERSION_USERSPACE &&
1188 	    used_cbs[os->os_phys->os_type] != NULL &&
1189 	    DMU_USERUSED_DNODE(os) != NULL);
1190 }
1191 
1192 static void
1193 do_userquota_update(objset_t *os, uint64_t used, uint64_t flags,
1194     uint64_t user, uint64_t group, boolean_t subtract, dmu_tx_t *tx)
1195 {
1196 	if ((flags & DNODE_FLAG_USERUSED_ACCOUNTED)) {
1197 		int64_t delta = DNODE_SIZE + used;
1198 		if (subtract)
1199 			delta = -delta;
1200 		VERIFY3U(0, ==, zap_increment_int(os, DMU_USERUSED_OBJECT,
1201 		    user, delta, tx));
1202 		VERIFY3U(0, ==, zap_increment_int(os, DMU_GROUPUSED_OBJECT,
1203 		    group, delta, tx));
1204 	}
1205 }
1206 
1207 void
1208 dmu_objset_do_userquota_updates(objset_t *os, dmu_tx_t *tx)
1209 {
1210 	dnode_t *dn;
1211 	list_t *list = &os->os_synced_dnodes;
1212 
1213 	ASSERT(list_head(list) == NULL || dmu_objset_userused_enabled(os));
1214 
1215 	while (dn = list_head(list)) {
1216 		int flags;
1217 		ASSERT(!DMU_OBJECT_IS_SPECIAL(dn->dn_object));
1218 		ASSERT(dn->dn_phys->dn_type == DMU_OT_NONE ||
1219 		    dn->dn_phys->dn_flags &
1220 		    DNODE_FLAG_USERUSED_ACCOUNTED);
1221 
1222 		/* Allocate the user/groupused objects if necessary. */
1223 		if (DMU_USERUSED_DNODE(os)->dn_type == DMU_OT_NONE) {
1224 			VERIFY(0 == zap_create_claim(os,
1225 			    DMU_USERUSED_OBJECT,
1226 			    DMU_OT_USERGROUP_USED, DMU_OT_NONE, 0, tx));
1227 			VERIFY(0 == zap_create_claim(os,
1228 			    DMU_GROUPUSED_OBJECT,
1229 			    DMU_OT_USERGROUP_USED, DMU_OT_NONE, 0, tx));
1230 		}
1231 
1232 		/*
1233 		 * We intentionally modify the zap object even if the
1234 		 * net delta is zero.  Otherwise
1235 		 * the block of the zap obj could be shared between
1236 		 * datasets but need to be different between them after
1237 		 * a bprewrite.
1238 		 */
1239 
1240 		flags = dn->dn_id_flags;
1241 		ASSERT(flags);
1242 		if (flags & DN_ID_OLD_EXIST)  {
1243 			do_userquota_update(os, dn->dn_oldused, dn->dn_oldflags,
1244 			    dn->dn_olduid, dn->dn_oldgid, B_TRUE, tx);
1245 		}
1246 		if (flags & DN_ID_NEW_EXIST) {
1247 			do_userquota_update(os, DN_USED_BYTES(dn->dn_phys),
1248 			    dn->dn_phys->dn_flags,  dn->dn_newuid,
1249 			    dn->dn_newgid, B_FALSE, tx);
1250 		}
1251 
1252 		mutex_enter(&dn->dn_mtx);
1253 		dn->dn_oldused = 0;
1254 		dn->dn_oldflags = 0;
1255 		if (dn->dn_id_flags & DN_ID_NEW_EXIST) {
1256 			dn->dn_olduid = dn->dn_newuid;
1257 			dn->dn_oldgid = dn->dn_newgid;
1258 			dn->dn_id_flags |= DN_ID_OLD_EXIST;
1259 			if (dn->dn_bonuslen == 0)
1260 				dn->dn_id_flags |= DN_ID_CHKED_SPILL;
1261 			else
1262 				dn->dn_id_flags |= DN_ID_CHKED_BONUS;
1263 		}
1264 		dn->dn_id_flags &= ~(DN_ID_NEW_EXIST);
1265 		mutex_exit(&dn->dn_mtx);
1266 
1267 		list_remove(list, dn);
1268 		dnode_rele(dn, list);
1269 	}
1270 }
1271 
1272 /*
1273  * Returns a pointer to data to find uid/gid from
1274  *
1275  * If a dirty record for transaction group that is syncing can't
1276  * be found then NULL is returned.  In the NULL case it is assumed
1277  * the uid/gid aren't changing.
1278  */
1279 static void *
1280 dmu_objset_userquota_find_data(dmu_buf_impl_t *db, dmu_tx_t *tx)
1281 {
1282 	dbuf_dirty_record_t *dr, **drp;
1283 	void *data;
1284 
1285 	if (db->db_dirtycnt == 0)
1286 		return (db->db.db_data);  /* Nothing is changing */
1287 
1288 	for (drp = &db->db_last_dirty; (dr = *drp) != NULL; drp = &dr->dr_next)
1289 		if (dr->dr_txg == tx->tx_txg)
1290 			break;
1291 
1292 	if (dr == NULL) {
1293 		data = NULL;
1294 	} else {
1295 		dnode_t *dn;
1296 
1297 		DB_DNODE_ENTER(dr->dr_dbuf);
1298 		dn = DB_DNODE(dr->dr_dbuf);
1299 
1300 		if (dn->dn_bonuslen == 0 &&
1301 		    dr->dr_dbuf->db_blkid == DMU_SPILL_BLKID)
1302 			data = dr->dt.dl.dr_data->b_data;
1303 		else
1304 			data = dr->dt.dl.dr_data;
1305 
1306 		DB_DNODE_EXIT(dr->dr_dbuf);
1307 	}
1308 
1309 	return (data);
1310 }
1311 
1312 void
1313 dmu_objset_userquota_get_ids(dnode_t *dn, boolean_t before, dmu_tx_t *tx)
1314 {
1315 	objset_t *os = dn->dn_objset;
1316 	void *data = NULL;
1317 	dmu_buf_impl_t *db = NULL;
1318 	uint64_t *user = NULL;
1319 	uint64_t *group = NULL;
1320 	int flags = dn->dn_id_flags;
1321 	int error;
1322 	boolean_t have_spill = B_FALSE;
1323 
1324 	if (!dmu_objset_userused_enabled(dn->dn_objset))
1325 		return;
1326 
1327 	if (before && (flags & (DN_ID_CHKED_BONUS|DN_ID_OLD_EXIST|
1328 	    DN_ID_CHKED_SPILL)))
1329 		return;
1330 
1331 	if (before && dn->dn_bonuslen != 0)
1332 		data = DN_BONUS(dn->dn_phys);
1333 	else if (!before && dn->dn_bonuslen != 0) {
1334 		if (dn->dn_bonus) {
1335 			db = dn->dn_bonus;
1336 			mutex_enter(&db->db_mtx);
1337 			data = dmu_objset_userquota_find_data(db, tx);
1338 		} else {
1339 			data = DN_BONUS(dn->dn_phys);
1340 		}
1341 	} else if (dn->dn_bonuslen == 0 && dn->dn_bonustype == DMU_OT_SA) {
1342 			int rf = 0;
1343 
1344 			if (RW_WRITE_HELD(&dn->dn_struct_rwlock))
1345 				rf |= DB_RF_HAVESTRUCT;
1346 			error = dmu_spill_hold_by_dnode(dn,
1347 			    rf | DB_RF_MUST_SUCCEED,
1348 			    FTAG, (dmu_buf_t **)&db);
1349 			ASSERT(error == 0);
1350 			mutex_enter(&db->db_mtx);
1351 			data = (before) ? db->db.db_data :
1352 			    dmu_objset_userquota_find_data(db, tx);
1353 			have_spill = B_TRUE;
1354 	} else {
1355 		mutex_enter(&dn->dn_mtx);
1356 		dn->dn_id_flags |= DN_ID_CHKED_BONUS;
1357 		mutex_exit(&dn->dn_mtx);
1358 		return;
1359 	}
1360 
1361 	if (before) {
1362 		ASSERT(data);
1363 		user = &dn->dn_olduid;
1364 		group = &dn->dn_oldgid;
1365 	} else if (data) {
1366 		user = &dn->dn_newuid;
1367 		group = &dn->dn_newgid;
1368 	}
1369 
1370 	/*
1371 	 * Must always call the callback in case the object
1372 	 * type has changed and that type isn't an object type to track
1373 	 */
1374 	error = used_cbs[os->os_phys->os_type](dn->dn_bonustype, data,
1375 	    user, group);
1376 
1377 	/*
1378 	 * Preserve existing uid/gid when the callback can't determine
1379 	 * what the new uid/gid are and the callback returned EEXIST.
1380 	 * The EEXIST error tells us to just use the existing uid/gid.
1381 	 * If we don't know what the old values are then just assign
1382 	 * them to 0, since that is a new file  being created.
1383 	 */
1384 	if (!before && data == NULL && error == EEXIST) {
1385 		if (flags & DN_ID_OLD_EXIST) {
1386 			dn->dn_newuid = dn->dn_olduid;
1387 			dn->dn_newgid = dn->dn_oldgid;
1388 		} else {
1389 			dn->dn_newuid = 0;
1390 			dn->dn_newgid = 0;
1391 		}
1392 		error = 0;
1393 	}
1394 
1395 	if (db)
1396 		mutex_exit(&db->db_mtx);
1397 
1398 	mutex_enter(&dn->dn_mtx);
1399 	if (error == 0 && before)
1400 		dn->dn_id_flags |= DN_ID_OLD_EXIST;
1401 	if (error == 0 && !before)
1402 		dn->dn_id_flags |= DN_ID_NEW_EXIST;
1403 
1404 	if (have_spill) {
1405 		dn->dn_id_flags |= DN_ID_CHKED_SPILL;
1406 	} else {
1407 		dn->dn_id_flags |= DN_ID_CHKED_BONUS;
1408 	}
1409 	mutex_exit(&dn->dn_mtx);
1410 	if (have_spill)
1411 		dmu_buf_rele((dmu_buf_t *)db, FTAG);
1412 }
1413 
1414 boolean_t
1415 dmu_objset_userspace_present(objset_t *os)
1416 {
1417 	return (os->os_phys->os_flags &
1418 	    OBJSET_FLAG_USERACCOUNTING_COMPLETE);
1419 }
1420 
1421 int
1422 dmu_objset_userspace_upgrade(objset_t *os)
1423 {
1424 	uint64_t obj;
1425 	int err = 0;
1426 
1427 	if (dmu_objset_userspace_present(os))
1428 		return (0);
1429 	if (!dmu_objset_userused_enabled(os))
1430 		return (SET_ERROR(ENOTSUP));
1431 	if (dmu_objset_is_snapshot(os))
1432 		return (SET_ERROR(EINVAL));
1433 
1434 	/*
1435 	 * We simply need to mark every object dirty, so that it will be
1436 	 * synced out and now accounted.  If this is called
1437 	 * concurrently, or if we already did some work before crashing,
1438 	 * that's fine, since we track each object's accounted state
1439 	 * independently.
1440 	 */
1441 
1442 	for (obj = 0; err == 0; err = dmu_object_next(os, &obj, FALSE, 0)) {
1443 		dmu_tx_t *tx;
1444 		dmu_buf_t *db;
1445 		int objerr;
1446 
1447 		if (issig(JUSTLOOKING) && issig(FORREAL))
1448 			return (SET_ERROR(EINTR));
1449 
1450 		objerr = dmu_bonus_hold(os, obj, FTAG, &db);
1451 		if (objerr != 0)
1452 			continue;
1453 		tx = dmu_tx_create(os);
1454 		dmu_tx_hold_bonus(tx, obj);
1455 		objerr = dmu_tx_assign(tx, TXG_WAIT);
1456 		if (objerr != 0) {
1457 			dmu_tx_abort(tx);
1458 			continue;
1459 		}
1460 		dmu_buf_will_dirty(db, tx);
1461 		dmu_buf_rele(db, FTAG);
1462 		dmu_tx_commit(tx);
1463 	}
1464 
1465 	os->os_flags |= OBJSET_FLAG_USERACCOUNTING_COMPLETE;
1466 	txg_wait_synced(dmu_objset_pool(os), 0);
1467 	return (0);
1468 }
1469 
1470 void
1471 dmu_objset_space(objset_t *os, uint64_t *refdbytesp, uint64_t *availbytesp,
1472     uint64_t *usedobjsp, uint64_t *availobjsp)
1473 {
1474 	dsl_dataset_space(os->os_dsl_dataset, refdbytesp, availbytesp,
1475 	    usedobjsp, availobjsp);
1476 }
1477 
1478 uint64_t
1479 dmu_objset_fsid_guid(objset_t *os)
1480 {
1481 	return (dsl_dataset_fsid_guid(os->os_dsl_dataset));
1482 }
1483 
1484 void
1485 dmu_objset_fast_stat(objset_t *os, dmu_objset_stats_t *stat)
1486 {
1487 	stat->dds_type = os->os_phys->os_type;
1488 	if (os->os_dsl_dataset)
1489 		dsl_dataset_fast_stat(os->os_dsl_dataset, stat);
1490 }
1491 
1492 void
1493 dmu_objset_stats(objset_t *os, nvlist_t *nv)
1494 {
1495 	ASSERT(os->os_dsl_dataset ||
1496 	    os->os_phys->os_type == DMU_OST_META);
1497 
1498 	if (os->os_dsl_dataset != NULL)
1499 		dsl_dataset_stats(os->os_dsl_dataset, nv);
1500 
1501 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_TYPE,
1502 	    os->os_phys->os_type);
1503 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_USERACCOUNTING,
1504 	    dmu_objset_userspace_present(os));
1505 }
1506 
1507 int
1508 dmu_objset_is_snapshot(objset_t *os)
1509 {
1510 	if (os->os_dsl_dataset != NULL)
1511 		return (os->os_dsl_dataset->ds_is_snapshot);
1512 	else
1513 		return (B_FALSE);
1514 }
1515 
1516 int
1517 dmu_snapshot_realname(objset_t *os, char *name, char *real, int maxlen,
1518     boolean_t *conflict)
1519 {
1520 	dsl_dataset_t *ds = os->os_dsl_dataset;
1521 	uint64_t ignored;
1522 
1523 	if (dsl_dataset_phys(ds)->ds_snapnames_zapobj == 0)
1524 		return (SET_ERROR(ENOENT));
1525 
1526 	return (zap_lookup_norm(ds->ds_dir->dd_pool->dp_meta_objset,
1527 	    dsl_dataset_phys(ds)->ds_snapnames_zapobj, name, 8, 1, &ignored,
1528 	    MT_FIRST, real, maxlen, conflict));
1529 }
1530 
1531 int
1532 dmu_snapshot_list_next(objset_t *os, int namelen, char *name,
1533     uint64_t *idp, uint64_t *offp, boolean_t *case_conflict)
1534 {
1535 	dsl_dataset_t *ds = os->os_dsl_dataset;
1536 	zap_cursor_t cursor;
1537 	zap_attribute_t attr;
1538 
1539 	ASSERT(dsl_pool_config_held(dmu_objset_pool(os)));
1540 
1541 	if (dsl_dataset_phys(ds)->ds_snapnames_zapobj == 0)
1542 		return (SET_ERROR(ENOENT));
1543 
1544 	zap_cursor_init_serialized(&cursor,
1545 	    ds->ds_dir->dd_pool->dp_meta_objset,
1546 	    dsl_dataset_phys(ds)->ds_snapnames_zapobj, *offp);
1547 
1548 	if (zap_cursor_retrieve(&cursor, &attr) != 0) {
1549 		zap_cursor_fini(&cursor);
1550 		return (SET_ERROR(ENOENT));
1551 	}
1552 
1553 	if (strlen(attr.za_name) + 1 > namelen) {
1554 		zap_cursor_fini(&cursor);
1555 		return (SET_ERROR(ENAMETOOLONG));
1556 	}
1557 
1558 	(void) strcpy(name, attr.za_name);
1559 	if (idp)
1560 		*idp = attr.za_first_integer;
1561 	if (case_conflict)
1562 		*case_conflict = attr.za_normalization_conflict;
1563 	zap_cursor_advance(&cursor);
1564 	*offp = zap_cursor_serialize(&cursor);
1565 	zap_cursor_fini(&cursor);
1566 
1567 	return (0);
1568 }
1569 
1570 int
1571 dmu_dir_list_next(objset_t *os, int namelen, char *name,
1572     uint64_t *idp, uint64_t *offp)
1573 {
1574 	dsl_dir_t *dd = os->os_dsl_dataset->ds_dir;
1575 	zap_cursor_t cursor;
1576 	zap_attribute_t attr;
1577 
1578 	/* there is no next dir on a snapshot! */
1579 	if (os->os_dsl_dataset->ds_object !=
1580 	    dsl_dir_phys(dd)->dd_head_dataset_obj)
1581 		return (SET_ERROR(ENOENT));
1582 
1583 	zap_cursor_init_serialized(&cursor,
1584 	    dd->dd_pool->dp_meta_objset,
1585 	    dsl_dir_phys(dd)->dd_child_dir_zapobj, *offp);
1586 
1587 	if (zap_cursor_retrieve(&cursor, &attr) != 0) {
1588 		zap_cursor_fini(&cursor);
1589 		return (SET_ERROR(ENOENT));
1590 	}
1591 
1592 	if (strlen(attr.za_name) + 1 > namelen) {
1593 		zap_cursor_fini(&cursor);
1594 		return (SET_ERROR(ENAMETOOLONG));
1595 	}
1596 
1597 	(void) strcpy(name, attr.za_name);
1598 	if (idp)
1599 		*idp = attr.za_first_integer;
1600 	zap_cursor_advance(&cursor);
1601 	*offp = zap_cursor_serialize(&cursor);
1602 	zap_cursor_fini(&cursor);
1603 
1604 	return (0);
1605 }
1606 
1607 typedef struct dmu_objset_find_ctx {
1608 	taskq_t		*dc_tq;
1609 	dsl_pool_t	*dc_dp;
1610 	uint64_t	dc_ddobj;
1611 	int		(*dc_func)(dsl_pool_t *, dsl_dataset_t *, void *);
1612 	void		*dc_arg;
1613 	int		dc_flags;
1614 	kmutex_t	*dc_error_lock;
1615 	int		*dc_error;
1616 } dmu_objset_find_ctx_t;
1617 
1618 static void
1619 dmu_objset_find_dp_impl(dmu_objset_find_ctx_t *dcp)
1620 {
1621 	dsl_pool_t *dp = dcp->dc_dp;
1622 	dmu_objset_find_ctx_t *child_dcp;
1623 	dsl_dir_t *dd;
1624 	dsl_dataset_t *ds;
1625 	zap_cursor_t zc;
1626 	zap_attribute_t *attr;
1627 	uint64_t thisobj;
1628 	int err = 0;
1629 
1630 	/* don't process if there already was an error */
1631 	if (*dcp->dc_error != 0)
1632 		goto out;
1633 
1634 	err = dsl_dir_hold_obj(dp, dcp->dc_ddobj, NULL, FTAG, &dd);
1635 	if (err != 0)
1636 		goto out;
1637 
1638 	/* Don't visit hidden ($MOS & $ORIGIN) objsets. */
1639 	if (dd->dd_myname[0] == '$') {
1640 		dsl_dir_rele(dd, FTAG);
1641 		goto out;
1642 	}
1643 
1644 	thisobj = dsl_dir_phys(dd)->dd_head_dataset_obj;
1645 	attr = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP);
1646 
1647 	/*
1648 	 * Iterate over all children.
1649 	 */
1650 	if (dcp->dc_flags & DS_FIND_CHILDREN) {
1651 		for (zap_cursor_init(&zc, dp->dp_meta_objset,
1652 		    dsl_dir_phys(dd)->dd_child_dir_zapobj);
1653 		    zap_cursor_retrieve(&zc, attr) == 0;
1654 		    (void) zap_cursor_advance(&zc)) {
1655 			ASSERT3U(attr->za_integer_length, ==,
1656 			    sizeof (uint64_t));
1657 			ASSERT3U(attr->za_num_integers, ==, 1);
1658 
1659 			child_dcp = kmem_alloc(sizeof (*child_dcp), KM_SLEEP);
1660 			*child_dcp = *dcp;
1661 			child_dcp->dc_ddobj = attr->za_first_integer;
1662 			if (dcp->dc_tq != NULL)
1663 				(void) taskq_dispatch(dcp->dc_tq,
1664 				    dmu_objset_find_dp_cb, child_dcp, TQ_SLEEP);
1665 			else
1666 				dmu_objset_find_dp_impl(child_dcp);
1667 		}
1668 		zap_cursor_fini(&zc);
1669 	}
1670 
1671 	/*
1672 	 * Iterate over all snapshots.
1673 	 */
1674 	if (dcp->dc_flags & DS_FIND_SNAPSHOTS) {
1675 		dsl_dataset_t *ds;
1676 		err = dsl_dataset_hold_obj(dp, thisobj, FTAG, &ds);
1677 
1678 		if (err == 0) {
1679 			uint64_t snapobj;
1680 
1681 			snapobj = dsl_dataset_phys(ds)->ds_snapnames_zapobj;
1682 			dsl_dataset_rele(ds, FTAG);
1683 
1684 			for (zap_cursor_init(&zc, dp->dp_meta_objset, snapobj);
1685 			    zap_cursor_retrieve(&zc, attr) == 0;
1686 			    (void) zap_cursor_advance(&zc)) {
1687 				ASSERT3U(attr->za_integer_length, ==,
1688 				    sizeof (uint64_t));
1689 				ASSERT3U(attr->za_num_integers, ==, 1);
1690 
1691 				err = dsl_dataset_hold_obj(dp,
1692 				    attr->za_first_integer, FTAG, &ds);
1693 				if (err != 0)
1694 					break;
1695 				err = dcp->dc_func(dp, ds, dcp->dc_arg);
1696 				dsl_dataset_rele(ds, FTAG);
1697 				if (err != 0)
1698 					break;
1699 			}
1700 			zap_cursor_fini(&zc);
1701 		}
1702 	}
1703 
1704 	dsl_dir_rele(dd, FTAG);
1705 	kmem_free(attr, sizeof (zap_attribute_t));
1706 
1707 	if (err != 0)
1708 		goto out;
1709 
1710 	/*
1711 	 * Apply to self.
1712 	 */
1713 	err = dsl_dataset_hold_obj(dp, thisobj, FTAG, &ds);
1714 	if (err != 0)
1715 		goto out;
1716 	err = dcp->dc_func(dp, ds, dcp->dc_arg);
1717 	dsl_dataset_rele(ds, FTAG);
1718 
1719 out:
1720 	if (err != 0) {
1721 		mutex_enter(dcp->dc_error_lock);
1722 		/* only keep first error */
1723 		if (*dcp->dc_error == 0)
1724 			*dcp->dc_error = err;
1725 		mutex_exit(dcp->dc_error_lock);
1726 	}
1727 
1728 	kmem_free(dcp, sizeof (*dcp));
1729 }
1730 
1731 static void
1732 dmu_objset_find_dp_cb(void *arg)
1733 {
1734 	dmu_objset_find_ctx_t *dcp = arg;
1735 	dsl_pool_t *dp = dcp->dc_dp;
1736 
1737 	/*
1738 	 * We need to get a pool_config_lock here, as there are several
1739 	 * asssert(pool_config_held) down the stack. Getting a lock via
1740 	 * dsl_pool_config_enter is risky, as it might be stalled by a
1741 	 * pending writer. This would deadlock, as the write lock can
1742 	 * only be granted when our parent thread gives up the lock.
1743 	 * The _prio interface gives us priority over a pending writer.
1744 	 */
1745 	dsl_pool_config_enter_prio(dp, FTAG);
1746 
1747 	dmu_objset_find_dp_impl(dcp);
1748 
1749 	dsl_pool_config_exit(dp, FTAG);
1750 }
1751 
1752 /*
1753  * Find objsets under and including ddobj, call func(ds) on each.
1754  * The order for the enumeration is completely undefined.
1755  * func is called with dsl_pool_config held.
1756  */
1757 int
1758 dmu_objset_find_dp(dsl_pool_t *dp, uint64_t ddobj,
1759     int func(dsl_pool_t *, dsl_dataset_t *, void *), void *arg, int flags)
1760 {
1761 	int error = 0;
1762 	taskq_t *tq = NULL;
1763 	int ntasks;
1764 	dmu_objset_find_ctx_t *dcp;
1765 	kmutex_t err_lock;
1766 
1767 	mutex_init(&err_lock, NULL, MUTEX_DEFAULT, NULL);
1768 	dcp = kmem_alloc(sizeof (*dcp), KM_SLEEP);
1769 	dcp->dc_tq = NULL;
1770 	dcp->dc_dp = dp;
1771 	dcp->dc_ddobj = ddobj;
1772 	dcp->dc_func = func;
1773 	dcp->dc_arg = arg;
1774 	dcp->dc_flags = flags;
1775 	dcp->dc_error_lock = &err_lock;
1776 	dcp->dc_error = &error;
1777 
1778 	if ((flags & DS_FIND_SERIALIZE) || dsl_pool_config_held_writer(dp)) {
1779 		/*
1780 		 * In case a write lock is held we can't make use of
1781 		 * parallelism, as down the stack of the worker threads
1782 		 * the lock is asserted via dsl_pool_config_held.
1783 		 * In case of a read lock this is solved by getting a read
1784 		 * lock in each worker thread, which isn't possible in case
1785 		 * of a writer lock. So we fall back to the synchronous path
1786 		 * here.
1787 		 * In the future it might be possible to get some magic into
1788 		 * dsl_pool_config_held in a way that it returns true for
1789 		 * the worker threads so that a single lock held from this
1790 		 * thread suffices. For now, stay single threaded.
1791 		 */
1792 		dmu_objset_find_dp_impl(dcp);
1793 
1794 		return (error);
1795 	}
1796 
1797 	ntasks = dmu_find_threads;
1798 	if (ntasks == 0)
1799 		ntasks = vdev_count_leaves(dp->dp_spa) * 4;
1800 	tq = taskq_create("dmu_objset_find", ntasks, minclsyspri, ntasks,
1801 	    INT_MAX, 0);
1802 	if (tq == NULL) {
1803 		kmem_free(dcp, sizeof (*dcp));
1804 		return (SET_ERROR(ENOMEM));
1805 	}
1806 	dcp->dc_tq = tq;
1807 
1808 	/* dcp will be freed by task */
1809 	(void) taskq_dispatch(tq, dmu_objset_find_dp_cb, dcp, TQ_SLEEP);
1810 
1811 	/*
1812 	 * PORTING: this code relies on the property of taskq_wait to wait
1813 	 * until no more tasks are queued and no more tasks are active. As
1814 	 * we always queue new tasks from within other tasks, task_wait
1815 	 * reliably waits for the full recursion to finish, even though we
1816 	 * enqueue new tasks after taskq_wait has been called.
1817 	 * On platforms other than illumos, taskq_wait may not have this
1818 	 * property.
1819 	 */
1820 	taskq_wait(tq);
1821 	taskq_destroy(tq);
1822 	mutex_destroy(&err_lock);
1823 
1824 	return (error);
1825 }
1826 
1827 /*
1828  * Find all objsets under name, and for each, call 'func(child_name, arg)'.
1829  * The dp_config_rwlock must not be held when this is called, and it
1830  * will not be held when the callback is called.
1831  * Therefore this function should only be used when the pool is not changing
1832  * (e.g. in syncing context), or the callback can deal with the possible races.
1833  */
1834 static int
1835 dmu_objset_find_impl(spa_t *spa, const char *name,
1836     int func(const char *, void *), void *arg, int flags)
1837 {
1838 	dsl_dir_t *dd;
1839 	dsl_pool_t *dp = spa_get_dsl(spa);
1840 	dsl_dataset_t *ds;
1841 	zap_cursor_t zc;
1842 	zap_attribute_t *attr;
1843 	char *child;
1844 	uint64_t thisobj;
1845 	int err;
1846 
1847 	dsl_pool_config_enter(dp, FTAG);
1848 
1849 	err = dsl_dir_hold(dp, name, FTAG, &dd, NULL);
1850 	if (err != 0) {
1851 		dsl_pool_config_exit(dp, FTAG);
1852 		return (err);
1853 	}
1854 
1855 	/* Don't visit hidden ($MOS & $ORIGIN) objsets. */
1856 	if (dd->dd_myname[0] == '$') {
1857 		dsl_dir_rele(dd, FTAG);
1858 		dsl_pool_config_exit(dp, FTAG);
1859 		return (0);
1860 	}
1861 
1862 	thisobj = dsl_dir_phys(dd)->dd_head_dataset_obj;
1863 	attr = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP);
1864 
1865 	/*
1866 	 * Iterate over all children.
1867 	 */
1868 	if (flags & DS_FIND_CHILDREN) {
1869 		for (zap_cursor_init(&zc, dp->dp_meta_objset,
1870 		    dsl_dir_phys(dd)->dd_child_dir_zapobj);
1871 		    zap_cursor_retrieve(&zc, attr) == 0;
1872 		    (void) zap_cursor_advance(&zc)) {
1873 			ASSERT3U(attr->za_integer_length, ==,
1874 			    sizeof (uint64_t));
1875 			ASSERT3U(attr->za_num_integers, ==, 1);
1876 
1877 			child = kmem_asprintf("%s/%s", name, attr->za_name);
1878 			dsl_pool_config_exit(dp, FTAG);
1879 			err = dmu_objset_find_impl(spa, child,
1880 			    func, arg, flags);
1881 			dsl_pool_config_enter(dp, FTAG);
1882 			strfree(child);
1883 			if (err != 0)
1884 				break;
1885 		}
1886 		zap_cursor_fini(&zc);
1887 
1888 		if (err != 0) {
1889 			dsl_dir_rele(dd, FTAG);
1890 			dsl_pool_config_exit(dp, FTAG);
1891 			kmem_free(attr, sizeof (zap_attribute_t));
1892 			return (err);
1893 		}
1894 	}
1895 
1896 	/*
1897 	 * Iterate over all snapshots.
1898 	 */
1899 	if (flags & DS_FIND_SNAPSHOTS) {
1900 		err = dsl_dataset_hold_obj(dp, thisobj, FTAG, &ds);
1901 
1902 		if (err == 0) {
1903 			uint64_t snapobj;
1904 
1905 			snapobj = dsl_dataset_phys(ds)->ds_snapnames_zapobj;
1906 			dsl_dataset_rele(ds, FTAG);
1907 
1908 			for (zap_cursor_init(&zc, dp->dp_meta_objset, snapobj);
1909 			    zap_cursor_retrieve(&zc, attr) == 0;
1910 			    (void) zap_cursor_advance(&zc)) {
1911 				ASSERT3U(attr->za_integer_length, ==,
1912 				    sizeof (uint64_t));
1913 				ASSERT3U(attr->za_num_integers, ==, 1);
1914 
1915 				child = kmem_asprintf("%s@%s",
1916 				    name, attr->za_name);
1917 				dsl_pool_config_exit(dp, FTAG);
1918 				err = func(child, arg);
1919 				dsl_pool_config_enter(dp, FTAG);
1920 				strfree(child);
1921 				if (err != 0)
1922 					break;
1923 			}
1924 			zap_cursor_fini(&zc);
1925 		}
1926 	}
1927 
1928 	dsl_dir_rele(dd, FTAG);
1929 	kmem_free(attr, sizeof (zap_attribute_t));
1930 	dsl_pool_config_exit(dp, FTAG);
1931 
1932 	if (err != 0)
1933 		return (err);
1934 
1935 	/* Apply to self. */
1936 	return (func(name, arg));
1937 }
1938 
1939 /*
1940  * See comment above dmu_objset_find_impl().
1941  */
1942 int
1943 dmu_objset_find(char *name, int func(const char *, void *), void *arg,
1944     int flags)
1945 {
1946 	spa_t *spa;
1947 	int error;
1948 
1949 	error = spa_open(name, &spa, FTAG);
1950 	if (error != 0)
1951 		return (error);
1952 	error = dmu_objset_find_impl(spa, name, func, arg, flags);
1953 	spa_close(spa, FTAG);
1954 	return (error);
1955 }
1956 
1957 void
1958 dmu_objset_set_user(objset_t *os, void *user_ptr)
1959 {
1960 	ASSERT(MUTEX_HELD(&os->os_user_ptr_lock));
1961 	os->os_user_ptr = user_ptr;
1962 }
1963 
1964 void *
1965 dmu_objset_get_user(objset_t *os)
1966 {
1967 	ASSERT(MUTEX_HELD(&os->os_user_ptr_lock));
1968 	return (os->os_user_ptr);
1969 }
1970 
1971 /*
1972  * Determine name of filesystem, given name of snapshot.
1973  * buf must be at least MAXNAMELEN bytes
1974  */
1975 int
1976 dmu_fsname(const char *snapname, char *buf)
1977 {
1978 	char *atp = strchr(snapname, '@');
1979 	if (atp == NULL)
1980 		return (SET_ERROR(EINVAL));
1981 	if (atp - snapname >= MAXNAMELEN)
1982 		return (SET_ERROR(ENAMETOOLONG));
1983 	(void) strlcpy(buf, snapname, atp - snapname + 1);
1984 	return (0);
1985 }
1986