xref: /illumos-gate/usr/src/uts/common/fs/zfs/dmu_objset.c (revision 3cb34c601f3ef3016f638574f5982e80c3735c71)
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 2007 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #pragma ident	"%Z%%M%	%I%	%E% SMI"
27 
28 #include <sys/cred.h>
29 #include <sys/zfs_context.h>
30 #include <sys/dmu_objset.h>
31 #include <sys/dsl_dir.h>
32 #include <sys/dsl_dataset.h>
33 #include <sys/dsl_prop.h>
34 #include <sys/dsl_pool.h>
35 #include <sys/dsl_synctask.h>
36 #include <sys/dsl_deleg.h>
37 #include <sys/dnode.h>
38 #include <sys/dbuf.h>
39 #include <sys/zvol.h>
40 #include <sys/dmu_tx.h>
41 #include <sys/zio_checksum.h>
42 #include <sys/zap.h>
43 #include <sys/zil.h>
44 #include <sys/dmu_impl.h>
45 #include <sys/zfs_ioctl.h>
46 
47 spa_t *
48 dmu_objset_spa(objset_t *os)
49 {
50 	return (os->os->os_spa);
51 }
52 
53 zilog_t *
54 dmu_objset_zil(objset_t *os)
55 {
56 	return (os->os->os_zil);
57 }
58 
59 dsl_pool_t *
60 dmu_objset_pool(objset_t *os)
61 {
62 	dsl_dataset_t *ds;
63 
64 	if ((ds = os->os->os_dsl_dataset) != NULL && ds->ds_dir)
65 		return (ds->ds_dir->dd_pool);
66 	else
67 		return (spa_get_dsl(os->os->os_spa));
68 }
69 
70 dsl_dataset_t *
71 dmu_objset_ds(objset_t *os)
72 {
73 	return (os->os->os_dsl_dataset);
74 }
75 
76 dmu_objset_type_t
77 dmu_objset_type(objset_t *os)
78 {
79 	return (os->os->os_phys->os_type);
80 }
81 
82 void
83 dmu_objset_name(objset_t *os, char *buf)
84 {
85 	dsl_dataset_name(os->os->os_dsl_dataset, buf);
86 }
87 
88 uint64_t
89 dmu_objset_id(objset_t *os)
90 {
91 	dsl_dataset_t *ds = os->os->os_dsl_dataset;
92 
93 	return (ds ? ds->ds_object : 0);
94 }
95 
96 static void
97 checksum_changed_cb(void *arg, uint64_t newval)
98 {
99 	objset_impl_t *osi = arg;
100 
101 	/*
102 	 * Inheritance should have been done by now.
103 	 */
104 	ASSERT(newval != ZIO_CHECKSUM_INHERIT);
105 
106 	osi->os_checksum = zio_checksum_select(newval, ZIO_CHECKSUM_ON_VALUE);
107 }
108 
109 static void
110 compression_changed_cb(void *arg, uint64_t newval)
111 {
112 	objset_impl_t *osi = arg;
113 
114 	/*
115 	 * Inheritance and range checking should have been done by now.
116 	 */
117 	ASSERT(newval != ZIO_COMPRESS_INHERIT);
118 
119 	osi->os_compress = zio_compress_select(newval, ZIO_COMPRESS_ON_VALUE);
120 }
121 
122 static void
123 copies_changed_cb(void *arg, uint64_t newval)
124 {
125 	objset_impl_t *osi = arg;
126 
127 	/*
128 	 * Inheritance and range checking should have been done by now.
129 	 */
130 	ASSERT(newval > 0);
131 	ASSERT(newval <= spa_max_replication(osi->os_spa));
132 
133 	osi->os_copies = newval;
134 }
135 
136 void
137 dmu_objset_byteswap(void *buf, size_t size)
138 {
139 	objset_phys_t *osp = buf;
140 
141 	ASSERT(size == sizeof (objset_phys_t));
142 	dnode_byteswap(&osp->os_meta_dnode);
143 	byteswap_uint64_array(&osp->os_zil_header, sizeof (zil_header_t));
144 	osp->os_type = BSWAP_64(osp->os_type);
145 }
146 
147 int
148 dmu_objset_open_impl(spa_t *spa, dsl_dataset_t *ds, blkptr_t *bp,
149     objset_impl_t **osip)
150 {
151 	objset_impl_t *osi;
152 	int i, err, checksum;
153 
154 	ASSERT(ds == NULL || MUTEX_HELD(&ds->ds_opening_lock));
155 
156 	osi = kmem_zalloc(sizeof (objset_impl_t), KM_SLEEP);
157 	osi->os.os = osi;
158 	osi->os_dsl_dataset = ds;
159 	osi->os_spa = spa;
160 	osi->os_rootbp = bp;
161 	if (!BP_IS_HOLE(osi->os_rootbp)) {
162 		uint32_t aflags = ARC_WAIT;
163 		zbookmark_t zb;
164 		zb.zb_objset = ds ? ds->ds_object : 0;
165 		zb.zb_object = 0;
166 		zb.zb_level = -1;
167 		zb.zb_blkid = 0;
168 
169 		dprintf_bp(osi->os_rootbp, "reading %s", "");
170 		err = arc_read(NULL, spa, osi->os_rootbp,
171 		    dmu_ot[DMU_OT_OBJSET].ot_byteswap,
172 		    arc_getbuf_func, &osi->os_phys_buf,
173 		    ZIO_PRIORITY_SYNC_READ, ZIO_FLAG_CANFAIL, &aflags, &zb);
174 		if (err) {
175 			kmem_free(osi, sizeof (objset_impl_t));
176 			return (err);
177 		}
178 		osi->os_phys = osi->os_phys_buf->b_data;
179 		if (ds == NULL || dsl_dataset_is_snapshot(ds) == 0)
180 			arc_release(osi->os_phys_buf, &osi->os_phys_buf);
181 	} else {
182 		osi->os_phys_buf = arc_buf_alloc(spa, sizeof (objset_phys_t),
183 		    &osi->os_phys_buf, ARC_BUFC_METADATA);
184 		osi->os_phys = osi->os_phys_buf->b_data;
185 		bzero(osi->os_phys, sizeof (objset_phys_t));
186 	}
187 
188 	/*
189 	 * Note: the changed_cb will be called once before the register
190 	 * func returns, thus changing the checksum/compression from the
191 	 * default (fletcher2/off).  Snapshots don't need to know, and
192 	 * registering would complicate clone promotion.
193 	 */
194 	if (ds && ds->ds_phys->ds_num_children == 0) {
195 		err = dsl_prop_register(ds, "checksum",
196 		    checksum_changed_cb, osi);
197 		if (err == 0)
198 			err = dsl_prop_register(ds, "compression",
199 			    compression_changed_cb, osi);
200 		if (err == 0)
201 			err = dsl_prop_register(ds, "copies",
202 			    copies_changed_cb, osi);
203 		if (err) {
204 			VERIFY(arc_buf_remove_ref(osi->os_phys_buf,
205 			    &osi->os_phys_buf) == 1);
206 			kmem_free(osi, sizeof (objset_impl_t));
207 			return (err);
208 		}
209 	} else if (ds == NULL) {
210 		/* It's the meta-objset. */
211 		osi->os_checksum = ZIO_CHECKSUM_FLETCHER_4;
212 		osi->os_compress = ZIO_COMPRESS_LZJB;
213 		osi->os_copies = spa_max_replication(spa);
214 	}
215 
216 	osi->os_zil = zil_alloc(&osi->os, &osi->os_phys->os_zil_header);
217 
218 	/*
219 	 * Metadata always gets compressed and checksummed.
220 	 * If the data checksum is multi-bit correctable, and it's not
221 	 * a ZBT-style checksum, then it's suitable for metadata as well.
222 	 * Otherwise, the metadata checksum defaults to fletcher4.
223 	 */
224 	checksum = osi->os_checksum;
225 
226 	if (zio_checksum_table[checksum].ci_correctable &&
227 	    !zio_checksum_table[checksum].ci_zbt)
228 		osi->os_md_checksum = checksum;
229 	else
230 		osi->os_md_checksum = ZIO_CHECKSUM_FLETCHER_4;
231 	osi->os_md_compress = ZIO_COMPRESS_LZJB;
232 
233 	for (i = 0; i < TXG_SIZE; i++) {
234 		list_create(&osi->os_dirty_dnodes[i], sizeof (dnode_t),
235 		    offsetof(dnode_t, dn_dirty_link[i]));
236 		list_create(&osi->os_free_dnodes[i], sizeof (dnode_t),
237 		    offsetof(dnode_t, dn_dirty_link[i]));
238 	}
239 	list_create(&osi->os_dnodes, sizeof (dnode_t),
240 	    offsetof(dnode_t, dn_link));
241 	list_create(&osi->os_downgraded_dbufs, sizeof (dmu_buf_impl_t),
242 	    offsetof(dmu_buf_impl_t, db_link));
243 
244 	mutex_init(&osi->os_lock, NULL, MUTEX_DEFAULT, NULL);
245 	mutex_init(&osi->os_obj_lock, NULL, MUTEX_DEFAULT, NULL);
246 	mutex_init(&osi->os_user_ptr_lock, NULL, MUTEX_DEFAULT, NULL);
247 
248 	osi->os_meta_dnode = dnode_special_open(osi,
249 	    &osi->os_phys->os_meta_dnode, DMU_META_DNODE_OBJECT);
250 
251 	/*
252 	 * We should be the only thread trying to do this because we
253 	 * have ds_opening_lock
254 	 */
255 	if (ds) {
256 		VERIFY(NULL == dsl_dataset_set_user_ptr(ds, osi,
257 		    dmu_objset_evict));
258 	}
259 
260 	*osip = osi;
261 	return (0);
262 }
263 
264 static int
265 dmu_objset_open_ds_os(dsl_dataset_t *ds, objset_t *os, dmu_objset_type_t type)
266 {
267 	objset_impl_t *osi;
268 	int err;
269 
270 	mutex_enter(&ds->ds_opening_lock);
271 	osi = dsl_dataset_get_user_ptr(ds);
272 	if (osi == NULL) {
273 		err = dmu_objset_open_impl(dsl_dataset_get_spa(ds),
274 		    ds, &ds->ds_phys->ds_bp, &osi);
275 		if (err)
276 			return (err);
277 	}
278 	mutex_exit(&ds->ds_opening_lock);
279 
280 	os->os = osi;
281 	os->os_mode = DS_MODE_NONE;
282 
283 	if (type != DMU_OST_ANY && type != os->os->os_phys->os_type)
284 		return (EINVAL);
285 	return (0);
286 }
287 
288 int
289 dmu_objset_open_ds(dsl_dataset_t *ds, dmu_objset_type_t type, objset_t **osp)
290 {
291 	objset_t *os;
292 	int err;
293 
294 	os = kmem_alloc(sizeof (objset_t), KM_SLEEP);
295 	err = dmu_objset_open_ds_os(ds, os, type);
296 	if (err)
297 		kmem_free(os, sizeof (objset_t));
298 	else
299 		*osp = os;
300 	return (err);
301 }
302 
303 /* called from zpl */
304 int
305 dmu_objset_open(const char *name, dmu_objset_type_t type, int mode,
306     objset_t **osp)
307 {
308 	objset_t *os;
309 	dsl_dataset_t *ds;
310 	int err;
311 
312 	ASSERT(mode != DS_MODE_NONE);
313 
314 	os = kmem_alloc(sizeof (objset_t), KM_SLEEP);
315 	err = dsl_dataset_open(name, mode, os, &ds);
316 	if (err) {
317 		kmem_free(os, sizeof (objset_t));
318 		return (err);
319 	}
320 
321 	err = dmu_objset_open_ds_os(ds, os, type);
322 	os->os_mode = mode;
323 	if (err) {
324 		kmem_free(os, sizeof (objset_t));
325 		dsl_dataset_close(ds, mode, os);
326 	} else {
327 		*osp = os;
328 	}
329 	return (err);
330 }
331 
332 void
333 dmu_objset_close(objset_t *os)
334 {
335 	if (os->os_mode != DS_MODE_NONE)
336 		dsl_dataset_close(os->os->os_dsl_dataset, os->os_mode, os);
337 	kmem_free(os, sizeof (objset_t));
338 }
339 
340 int
341 dmu_objset_evict_dbufs(objset_t *os)
342 {
343 	objset_impl_t *osi = os->os;
344 	dnode_t *dn;
345 
346 	mutex_enter(&osi->os_lock);
347 
348 	/* process the mdn last, since the other dnodes have holds on it */
349 	list_remove(&osi->os_dnodes, osi->os_meta_dnode);
350 	list_insert_tail(&osi->os_dnodes, osi->os_meta_dnode);
351 
352 	/*
353 	 * Find the first dnode with holds.  We have to do this dance
354 	 * because dnode_add_ref() only works if you already have a
355 	 * hold.  If there are no holds then it has no dbufs so OK to
356 	 * skip.
357 	 */
358 	for (dn = list_head(&osi->os_dnodes);
359 	    dn && !dnode_add_ref(dn, FTAG);
360 	    dn = list_next(&osi->os_dnodes, dn))
361 		continue;
362 
363 	while (dn) {
364 		dnode_t *next_dn = dn;
365 
366 		do {
367 			next_dn = list_next(&osi->os_dnodes, next_dn);
368 		} while (next_dn && !dnode_add_ref(next_dn, FTAG));
369 
370 		mutex_exit(&osi->os_lock);
371 		dnode_evict_dbufs(dn);
372 		dnode_rele(dn, FTAG);
373 		mutex_enter(&osi->os_lock);
374 		dn = next_dn;
375 	}
376 	mutex_exit(&osi->os_lock);
377 	return (list_head(&osi->os_dnodes) != osi->os_meta_dnode);
378 }
379 
380 void
381 dmu_objset_evict(dsl_dataset_t *ds, void *arg)
382 {
383 	objset_impl_t *osi = arg;
384 	objset_t os;
385 	int i;
386 
387 	for (i = 0; i < TXG_SIZE; i++) {
388 		ASSERT(list_head(&osi->os_dirty_dnodes[i]) == NULL);
389 		ASSERT(list_head(&osi->os_free_dnodes[i]) == NULL);
390 	}
391 
392 	if (ds && ds->ds_phys->ds_num_children == 0) {
393 		VERIFY(0 == dsl_prop_unregister(ds, "checksum",
394 		    checksum_changed_cb, osi));
395 		VERIFY(0 == dsl_prop_unregister(ds, "compression",
396 		    compression_changed_cb, osi));
397 		VERIFY(0 == dsl_prop_unregister(ds, "copies",
398 		    copies_changed_cb, osi));
399 	}
400 
401 	/*
402 	 * We should need only a single pass over the dnode list, since
403 	 * nothing can be added to the list at this point.
404 	 */
405 	os.os = osi;
406 	(void) dmu_objset_evict_dbufs(&os);
407 
408 	ASSERT3P(list_head(&osi->os_dnodes), ==, osi->os_meta_dnode);
409 	ASSERT3P(list_tail(&osi->os_dnodes), ==, osi->os_meta_dnode);
410 	ASSERT3P(list_head(&osi->os_meta_dnode->dn_dbufs), ==, NULL);
411 
412 	dnode_special_close(osi->os_meta_dnode);
413 	zil_free(osi->os_zil);
414 
415 	VERIFY(arc_buf_remove_ref(osi->os_phys_buf, &osi->os_phys_buf) == 1);
416 	mutex_destroy(&osi->os_lock);
417 	mutex_destroy(&osi->os_obj_lock);
418 	mutex_destroy(&osi->os_user_ptr_lock);
419 	kmem_free(osi, sizeof (objset_impl_t));
420 }
421 
422 /* called from dsl for meta-objset */
423 objset_impl_t *
424 dmu_objset_create_impl(spa_t *spa, dsl_dataset_t *ds, blkptr_t *bp,
425     dmu_objset_type_t type, dmu_tx_t *tx)
426 {
427 	objset_impl_t *osi;
428 	dnode_t *mdn;
429 
430 	ASSERT(dmu_tx_is_syncing(tx));
431 	if (ds)
432 		mutex_enter(&ds->ds_opening_lock);
433 	VERIFY(0 == dmu_objset_open_impl(spa, ds, bp, &osi));
434 	if (ds)
435 		mutex_exit(&ds->ds_opening_lock);
436 	mdn = osi->os_meta_dnode;
437 
438 	dnode_allocate(mdn, DMU_OT_DNODE, 1 << DNODE_BLOCK_SHIFT,
439 	    DN_MAX_INDBLKSHIFT, DMU_OT_NONE, 0, tx);
440 
441 	/*
442 	 * We don't want to have to increase the meta-dnode's nlevels
443 	 * later, because then we could do it in quescing context while
444 	 * we are also accessing it in open context.
445 	 *
446 	 * This precaution is not necessary for the MOS (ds == NULL),
447 	 * because the MOS is only updated in syncing context.
448 	 * This is most fortunate: the MOS is the only objset that
449 	 * needs to be synced multiple times as spa_sync() iterates
450 	 * to convergence, so minimizing its dn_nlevels matters.
451 	 */
452 	if (ds != NULL) {
453 		int levels = 1;
454 
455 		/*
456 		 * Determine the number of levels necessary for the meta-dnode
457 		 * to contain DN_MAX_OBJECT dnodes.
458 		 */
459 		while ((uint64_t)mdn->dn_nblkptr << (mdn->dn_datablkshift +
460 		    (levels - 1) * (mdn->dn_indblkshift - SPA_BLKPTRSHIFT)) <
461 		    DN_MAX_OBJECT * sizeof (dnode_phys_t))
462 			levels++;
463 
464 		mdn->dn_next_nlevels[tx->tx_txg & TXG_MASK] =
465 		    mdn->dn_nlevels = levels;
466 	}
467 
468 	ASSERT(type != DMU_OST_NONE);
469 	ASSERT(type != DMU_OST_ANY);
470 	ASSERT(type < DMU_OST_NUMTYPES);
471 	osi->os_phys->os_type = type;
472 
473 	dsl_dataset_dirty(ds, tx);
474 
475 	return (osi);
476 }
477 
478 struct oscarg {
479 	void (*userfunc)(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx);
480 	void *userarg;
481 	dsl_dataset_t *clone_parent;
482 	const char *lastname;
483 	dmu_objset_type_t type;
484 };
485 
486 /*ARGSUSED*/
487 static int
488 dmu_objset_create_check(void *arg1, void *arg2, dmu_tx_t *tx)
489 {
490 	dsl_dir_t *dd = arg1;
491 	struct oscarg *oa = arg2;
492 	objset_t *mos = dd->dd_pool->dp_meta_objset;
493 	int err;
494 	uint64_t ddobj;
495 
496 	err = zap_lookup(mos, dd->dd_phys->dd_child_dir_zapobj,
497 	    oa->lastname, sizeof (uint64_t), 1, &ddobj);
498 	if (err != ENOENT)
499 		return (err ? err : EEXIST);
500 
501 	if (oa->clone_parent != NULL) {
502 		/*
503 		 * You can't clone across pools.
504 		 */
505 		if (oa->clone_parent->ds_dir->dd_pool != dd->dd_pool)
506 			return (EXDEV);
507 
508 		/*
509 		 * You can only clone snapshots, not the head datasets.
510 		 */
511 		if (oa->clone_parent->ds_phys->ds_num_children == 0)
512 			return (EINVAL);
513 	}
514 
515 	return (0);
516 }
517 
518 static void
519 dmu_objset_create_sync(void *arg1, void *arg2, cred_t *cr, dmu_tx_t *tx)
520 {
521 	dsl_dir_t *dd = arg1;
522 	struct oscarg *oa = arg2;
523 	dsl_dataset_t *ds;
524 	blkptr_t *bp;
525 	uint64_t dsobj;
526 
527 	ASSERT(dmu_tx_is_syncing(tx));
528 
529 	dsobj = dsl_dataset_create_sync(dd, oa->lastname,
530 	    oa->clone_parent, cr, tx);
531 
532 	VERIFY(0 == dsl_dataset_open_obj(dd->dd_pool, dsobj, NULL,
533 	    DS_MODE_STANDARD | DS_MODE_READONLY, FTAG, &ds));
534 	bp = dsl_dataset_get_blkptr(ds);
535 	if (BP_IS_HOLE(bp)) {
536 		objset_impl_t *osi;
537 
538 		/* This is an empty dmu_objset; not a clone. */
539 		osi = dmu_objset_create_impl(dsl_dataset_get_spa(ds),
540 		    ds, bp, oa->type, tx);
541 
542 		if (oa->userfunc)
543 			oa->userfunc(&osi->os, oa->userarg, cr, tx);
544 	}
545 
546 	spa_history_internal_log(LOG_DS_CREATE, dd->dd_pool->dp_spa,
547 	    tx, cr, "dataset = %llu", dsobj);
548 
549 	dsl_dataset_close(ds, DS_MODE_STANDARD | DS_MODE_READONLY, FTAG);
550 }
551 
552 int
553 dmu_objset_create(const char *name, dmu_objset_type_t type,
554     objset_t *clone_parent,
555     void (*func)(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx), void *arg)
556 {
557 	dsl_dir_t *pdd;
558 	const char *tail;
559 	int err = 0;
560 	struct oscarg oa = { 0 };
561 
562 	ASSERT(strchr(name, '@') == NULL);
563 	err = dsl_dir_open(name, FTAG, &pdd, &tail);
564 	if (err)
565 		return (err);
566 	if (tail == NULL) {
567 		dsl_dir_close(pdd, FTAG);
568 		return (EEXIST);
569 	}
570 
571 	dprintf("name=%s\n", name);
572 
573 	oa.userfunc = func;
574 	oa.userarg = arg;
575 	oa.lastname = tail;
576 	oa.type = type;
577 
578 	if (clone_parent != NULL) {
579 		/*
580 		 * You can't clone to a different type.
581 		 */
582 		if (clone_parent->os->os_phys->os_type != type) {
583 			dsl_dir_close(pdd, FTAG);
584 			return (EINVAL);
585 		}
586 		oa.clone_parent = clone_parent->os->os_dsl_dataset;
587 	}
588 	err = dsl_sync_task_do(pdd->dd_pool, dmu_objset_create_check,
589 	    dmu_objset_create_sync, pdd, &oa, 5);
590 	dsl_dir_close(pdd, FTAG);
591 	return (err);
592 }
593 
594 int
595 dmu_objset_destroy(const char *name)
596 {
597 	objset_t *os;
598 	int error;
599 
600 	/*
601 	 * If it looks like we'll be able to destroy it, and there's
602 	 * an unplayed replay log sitting around, destroy the log.
603 	 * It would be nicer to do this in dsl_dataset_destroy_sync(),
604 	 * but the replay log objset is modified in open context.
605 	 */
606 	error = dmu_objset_open(name, DMU_OST_ANY,
607 	    DS_MODE_EXCLUSIVE|DS_MODE_READONLY, &os);
608 	if (error == 0) {
609 		dsl_dataset_t *ds = os->os->os_dsl_dataset;
610 		zil_destroy(dmu_objset_zil(os), B_FALSE);
611 
612 		/*
613 		 * dsl_dataset_destroy() closes the ds.
614 		 * os is just used as the tag after it's freed.
615 		 */
616 		kmem_free(os, sizeof (objset_t));
617 		error = dsl_dataset_destroy(ds, os);
618 	}
619 
620 	return (error);
621 }
622 
623 int
624 dmu_objset_rollback(const char *name)
625 {
626 	int err;
627 	objset_t *os;
628 	dsl_dataset_t *ds;
629 
630 	err = dmu_objset_open(name, DMU_OST_ANY,
631 	    DS_MODE_EXCLUSIVE | DS_MODE_INCONSISTENT, &os);
632 	if (err)
633 		return (err);
634 
635 	ds = os->os->os_dsl_dataset;
636 	err = dsl_dataset_rollback(ds, os->os->os_phys->os_type);
637 
638 	/*
639 	 * NB: we close the objset manually because the rollback
640 	 * actually implicitly called dmu_objset_evict(), thus freeing
641 	 * the objset_impl_t.
642 	 */
643 	dsl_dataset_close(ds, DS_MODE_EXCLUSIVE, os);
644 	kmem_free(os, sizeof (objset_t));
645 	return (err);
646 }
647 
648 struct snaparg {
649 	dsl_sync_task_group_t *dstg;
650 	char *snapname;
651 	char failed[MAXPATHLEN];
652 	boolean_t checkperms;
653 	list_t objsets;
654 };
655 
656 struct osnode {
657 	list_node_t node;
658 	objset_t *os;
659 };
660 
661 static int
662 dmu_objset_snapshot_one(char *name, void *arg)
663 {
664 	struct snaparg *sn = arg;
665 	objset_t *os;
666 	dmu_objset_stats_t stat;
667 	int err;
668 
669 	(void) strcpy(sn->failed, name);
670 
671 	/*
672 	 * Check permissions only when requested.  This only applies when
673 	 * doing a recursive snapshot.  The permission checks for the starting
674 	 * dataset have already been performed in zfs_secpolicy_snapshot()
675 	 */
676 	if (sn->checkperms == B_TRUE &&
677 	    (err = zfs_secpolicy_snapshot_perms(name, CRED())))
678 		return (err);
679 
680 	err = dmu_objset_open(name, DMU_OST_ANY, DS_MODE_STANDARD, &os);
681 	if (err != 0)
682 		return (err);
683 
684 	/*
685 	 * If the objset is in an inconsistent state, return busy.
686 	 */
687 	dmu_objset_fast_stat(os, &stat);
688 	if (stat.dds_inconsistent) {
689 		dmu_objset_close(os);
690 		return (EBUSY);
691 	}
692 
693 	/*
694 	 * NB: we need to wait for all in-flight changes to get to disk,
695 	 * so that we snapshot those changes.  zil_suspend does this as
696 	 * a side effect.
697 	 */
698 	err = zil_suspend(dmu_objset_zil(os));
699 	if (err == 0) {
700 		struct osnode *osn;
701 		dsl_sync_task_create(sn->dstg, dsl_dataset_snapshot_check,
702 		    dsl_dataset_snapshot_sync, os->os->os_dsl_dataset,
703 		    sn->snapname, 3);
704 		osn = kmem_alloc(sizeof (struct osnode), KM_SLEEP);
705 		osn->os = os;
706 		list_insert_tail(&sn->objsets, osn);
707 	} else {
708 		dmu_objset_close(os);
709 	}
710 
711 	return (err);
712 }
713 
714 int
715 dmu_objset_snapshot(char *fsname, char *snapname, boolean_t recursive)
716 {
717 	dsl_sync_task_t *dst;
718 	struct osnode *osn;
719 	struct snaparg sn = { 0 };
720 	spa_t *spa;
721 	int err;
722 
723 	(void) strcpy(sn.failed, fsname);
724 
725 	err = spa_open(fsname, &spa, FTAG);
726 	if (err)
727 		return (err);
728 
729 	sn.dstg = dsl_sync_task_group_create(spa_get_dsl(spa));
730 	sn.snapname = snapname;
731 	list_create(&sn.objsets, sizeof (struct osnode),
732 	    offsetof(struct osnode, node));
733 
734 	if (recursive) {
735 		sn.checkperms = B_TRUE;
736 		err = dmu_objset_find(fsname,
737 		    dmu_objset_snapshot_one, &sn, DS_FIND_CHILDREN);
738 	} else {
739 		sn.checkperms = B_FALSE;
740 		err = dmu_objset_snapshot_one(fsname, &sn);
741 	}
742 
743 	if (err)
744 		goto out;
745 
746 	err = dsl_sync_task_group_wait(sn.dstg);
747 
748 	for (dst = list_head(&sn.dstg->dstg_tasks); dst;
749 	    dst = list_next(&sn.dstg->dstg_tasks, dst)) {
750 		dsl_dataset_t *ds = dst->dst_arg1;
751 		if (dst->dst_err)
752 			dsl_dataset_name(ds, sn.failed);
753 	}
754 
755 	while (osn = list_head(&sn.objsets)) {
756 		list_remove(&sn.objsets, osn);
757 		zil_resume(dmu_objset_zil(osn->os));
758 		dmu_objset_close(osn->os);
759 		kmem_free(osn, sizeof (struct osnode));
760 	}
761 	list_destroy(&sn.objsets);
762 out:
763 	if (err)
764 		(void) strcpy(fsname, sn.failed);
765 	dsl_sync_task_group_destroy(sn.dstg);
766 	spa_close(spa, FTAG);
767 	return (err);
768 }
769 
770 static void
771 dmu_objset_sync_dnodes(list_t *list, dmu_tx_t *tx)
772 {
773 	dnode_t *dn;
774 
775 	while (dn = list_head(list)) {
776 		ASSERT(dn->dn_object != DMU_META_DNODE_OBJECT);
777 		ASSERT(dn->dn_dbuf->db_data_pending);
778 		/*
779 		 * Initialize dn_zio outside dnode_sync()
780 		 * to accomodate meta-dnode
781 		 */
782 		dn->dn_zio = dn->dn_dbuf->db_data_pending->dr_zio;
783 		ASSERT(dn->dn_zio);
784 
785 		ASSERT3U(dn->dn_nlevels, <=, DN_MAX_LEVELS);
786 		list_remove(list, dn);
787 		dnode_sync(dn, tx);
788 	}
789 }
790 
791 /* ARGSUSED */
792 static void
793 ready(zio_t *zio, arc_buf_t *abuf, void *arg)
794 {
795 	objset_impl_t *os = arg;
796 	blkptr_t *bp = os->os_rootbp;
797 	dnode_phys_t *dnp = &os->os_phys->os_meta_dnode;
798 	int i;
799 
800 	ASSERT(bp == zio->io_bp);
801 
802 	/*
803 	 * Update rootbp fill count.
804 	 */
805 	bp->blk_fill = 1;	/* count the meta-dnode */
806 	for (i = 0; i < dnp->dn_nblkptr; i++)
807 		bp->blk_fill += dnp->dn_blkptr[i].blk_fill;
808 
809 	BP_SET_TYPE(bp, DMU_OT_OBJSET);
810 	BP_SET_LEVEL(bp, 0);
811 
812 	/* We must do this after we've set the bp's type and level */
813 	if (!DVA_EQUAL(BP_IDENTITY(bp),
814 	    BP_IDENTITY(&zio->io_bp_orig))) {
815 		if (zio->io_bp_orig.blk_birth == os->os_synctx->tx_txg)
816 			dsl_dataset_block_kill(os->os_dsl_dataset,
817 			    &zio->io_bp_orig, NULL, os->os_synctx);
818 		dsl_dataset_block_born(os->os_dsl_dataset, bp, os->os_synctx);
819 	}
820 }
821 
822 /* ARGSUSED */
823 static void
824 killer(zio_t *zio, arc_buf_t *abuf, void *arg)
825 {
826 	objset_impl_t *os = arg;
827 
828 	ASSERT3U(zio->io_error, ==, 0);
829 	arc_release(os->os_phys_buf, &os->os_phys_buf);
830 }
831 
832 /* called from dsl */
833 void
834 dmu_objset_sync(objset_impl_t *os, zio_t *pio, dmu_tx_t *tx)
835 {
836 	int txgoff;
837 	zbookmark_t zb;
838 	zio_t *zio;
839 	list_t *list;
840 	dbuf_dirty_record_t *dr;
841 
842 	dprintf_ds(os->os_dsl_dataset, "txg=%llu\n", tx->tx_txg);
843 
844 	ASSERT(dmu_tx_is_syncing(tx));
845 	/* XXX the write_done callback should really give us the tx... */
846 	os->os_synctx = tx;
847 
848 	if (os->os_dsl_dataset == NULL) {
849 		/*
850 		 * This is the MOS.  If we have upgraded,
851 		 * spa_max_replication() could change, so reset
852 		 * os_copies here.
853 		 */
854 		os->os_copies = spa_max_replication(os->os_spa);
855 	}
856 
857 	/*
858 	 * Create the root block IO
859 	 */
860 	zb.zb_objset = os->os_dsl_dataset ? os->os_dsl_dataset->ds_object : 0;
861 	zb.zb_object = 0;
862 	zb.zb_level = -1;
863 	zb.zb_blkid = 0;
864 	if (BP_IS_OLDER(os->os_rootbp, tx->tx_txg)) {
865 		dsl_dataset_block_kill(os->os_dsl_dataset,
866 		    os->os_rootbp, pio, tx);
867 	}
868 	zio = arc_write(pio, os->os_spa, os->os_md_checksum,
869 	    os->os_md_compress,
870 	    dmu_get_replication_level(os, &zb, DMU_OT_OBJSET),
871 	    tx->tx_txg, os->os_rootbp, os->os_phys_buf, ready, killer, os,
872 	    ZIO_PRIORITY_ASYNC_WRITE, ZIO_FLAG_MUSTSUCCEED | ZIO_FLAG_METADATA,
873 	    &zb);
874 
875 	/*
876 	 * Sync meta-dnode - the parent IO for the sync is the root block
877 	 */
878 	os->os_meta_dnode->dn_zio = zio;
879 	dnode_sync(os->os_meta_dnode, tx);
880 
881 	txgoff = tx->tx_txg & TXG_MASK;
882 
883 	dmu_objset_sync_dnodes(&os->os_free_dnodes[txgoff], tx);
884 	dmu_objset_sync_dnodes(&os->os_dirty_dnodes[txgoff], tx);
885 
886 	list = &os->os_meta_dnode->dn_dirty_records[txgoff];
887 	while (dr = list_head(list)) {
888 		ASSERT(dr->dr_dbuf->db_level == 0);
889 		list_remove(list, dr);
890 		if (dr->dr_zio)
891 			zio_nowait(dr->dr_zio);
892 	}
893 	/*
894 	 * Free intent log blocks up to this tx.
895 	 */
896 	zil_sync(os->os_zil, tx);
897 	zio_nowait(zio);
898 }
899 
900 void
901 dmu_objset_space(objset_t *os, uint64_t *refdbytesp, uint64_t *availbytesp,
902     uint64_t *usedobjsp, uint64_t *availobjsp)
903 {
904 	dsl_dataset_space(os->os->os_dsl_dataset, refdbytesp, availbytesp,
905 	    usedobjsp, availobjsp);
906 }
907 
908 uint64_t
909 dmu_objset_fsid_guid(objset_t *os)
910 {
911 	return (dsl_dataset_fsid_guid(os->os->os_dsl_dataset));
912 }
913 
914 void
915 dmu_objset_fast_stat(objset_t *os, dmu_objset_stats_t *stat)
916 {
917 	stat->dds_type = os->os->os_phys->os_type;
918 	if (os->os->os_dsl_dataset)
919 		dsl_dataset_fast_stat(os->os->os_dsl_dataset, stat);
920 }
921 
922 void
923 dmu_objset_stats(objset_t *os, nvlist_t *nv)
924 {
925 	ASSERT(os->os->os_dsl_dataset ||
926 	    os->os->os_phys->os_type == DMU_OST_META);
927 
928 	if (os->os->os_dsl_dataset != NULL)
929 		dsl_dataset_stats(os->os->os_dsl_dataset, nv);
930 
931 	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_TYPE,
932 	    os->os->os_phys->os_type);
933 }
934 
935 int
936 dmu_objset_is_snapshot(objset_t *os)
937 {
938 	if (os->os->os_dsl_dataset != NULL)
939 		return (dsl_dataset_is_snapshot(os->os->os_dsl_dataset));
940 	else
941 		return (B_FALSE);
942 }
943 
944 int
945 dmu_snapshot_list_next(objset_t *os, int namelen, char *name,
946     uint64_t *idp, uint64_t *offp)
947 {
948 	dsl_dataset_t *ds = os->os->os_dsl_dataset;
949 	zap_cursor_t cursor;
950 	zap_attribute_t attr;
951 
952 	if (ds->ds_phys->ds_snapnames_zapobj == 0)
953 		return (ENOENT);
954 
955 	zap_cursor_init_serialized(&cursor,
956 	    ds->ds_dir->dd_pool->dp_meta_objset,
957 	    ds->ds_phys->ds_snapnames_zapobj, *offp);
958 
959 	if (zap_cursor_retrieve(&cursor, &attr) != 0) {
960 		zap_cursor_fini(&cursor);
961 		return (ENOENT);
962 	}
963 
964 	if (strlen(attr.za_name) + 1 > namelen) {
965 		zap_cursor_fini(&cursor);
966 		return (ENAMETOOLONG);
967 	}
968 
969 	(void) strcpy(name, attr.za_name);
970 	if (idp)
971 		*idp = attr.za_first_integer;
972 	zap_cursor_advance(&cursor);
973 	*offp = zap_cursor_serialize(&cursor);
974 	zap_cursor_fini(&cursor);
975 
976 	return (0);
977 }
978 
979 int
980 dmu_dir_list_next(objset_t *os, int namelen, char *name,
981     uint64_t *idp, uint64_t *offp)
982 {
983 	dsl_dir_t *dd = os->os->os_dsl_dataset->ds_dir;
984 	zap_cursor_t cursor;
985 	zap_attribute_t attr;
986 
987 	/* there is no next dir on a snapshot! */
988 	if (os->os->os_dsl_dataset->ds_object !=
989 	    dd->dd_phys->dd_head_dataset_obj)
990 		return (ENOENT);
991 
992 	zap_cursor_init_serialized(&cursor,
993 	    dd->dd_pool->dp_meta_objset,
994 	    dd->dd_phys->dd_child_dir_zapobj, *offp);
995 
996 	if (zap_cursor_retrieve(&cursor, &attr) != 0) {
997 		zap_cursor_fini(&cursor);
998 		return (ENOENT);
999 	}
1000 
1001 	if (strlen(attr.za_name) + 1 > namelen) {
1002 		zap_cursor_fini(&cursor);
1003 		return (ENAMETOOLONG);
1004 	}
1005 
1006 	(void) strcpy(name, attr.za_name);
1007 	if (idp)
1008 		*idp = attr.za_first_integer;
1009 	zap_cursor_advance(&cursor);
1010 	*offp = zap_cursor_serialize(&cursor);
1011 	zap_cursor_fini(&cursor);
1012 
1013 	return (0);
1014 }
1015 
1016 /*
1017  * Find all objsets under name, and for each, call 'func(child_name, arg)'.
1018  */
1019 int
1020 dmu_objset_find(char *name, int func(char *, void *), void *arg, int flags)
1021 {
1022 	dsl_dir_t *dd;
1023 	objset_t *os;
1024 	uint64_t snapobj;
1025 	zap_cursor_t zc;
1026 	zap_attribute_t *attr;
1027 	char *child;
1028 	int do_self, err;
1029 
1030 	err = dsl_dir_open(name, FTAG, &dd, NULL);
1031 	if (err)
1032 		return (err);
1033 
1034 	/* NB: the $MOS dir doesn't have a head dataset */
1035 	do_self = (dd->dd_phys->dd_head_dataset_obj != 0);
1036 	attr = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP);
1037 
1038 	/*
1039 	 * Iterate over all children.
1040 	 */
1041 	if (flags & DS_FIND_CHILDREN) {
1042 		for (zap_cursor_init(&zc, dd->dd_pool->dp_meta_objset,
1043 		    dd->dd_phys->dd_child_dir_zapobj);
1044 		    zap_cursor_retrieve(&zc, attr) == 0;
1045 		    (void) zap_cursor_advance(&zc)) {
1046 			ASSERT(attr->za_integer_length == sizeof (uint64_t));
1047 			ASSERT(attr->za_num_integers == 1);
1048 
1049 			/*
1050 			 * No separating '/' because parent's name ends in /.
1051 			 */
1052 			child = kmem_alloc(MAXPATHLEN, KM_SLEEP);
1053 			/* XXX could probably just use name here */
1054 			dsl_dir_name(dd, child);
1055 			(void) strcat(child, "/");
1056 			(void) strcat(child, attr->za_name);
1057 			err = dmu_objset_find(child, func, arg, flags);
1058 			kmem_free(child, MAXPATHLEN);
1059 			if (err)
1060 				break;
1061 		}
1062 		zap_cursor_fini(&zc);
1063 
1064 		if (err) {
1065 			dsl_dir_close(dd, FTAG);
1066 			kmem_free(attr, sizeof (zap_attribute_t));
1067 			return (err);
1068 		}
1069 	}
1070 
1071 	/*
1072 	 * Iterate over all snapshots.
1073 	 */
1074 	if ((flags & DS_FIND_SNAPSHOTS) &&
1075 	    dmu_objset_open(name, DMU_OST_ANY,
1076 	    DS_MODE_STANDARD | DS_MODE_READONLY, &os) == 0) {
1077 
1078 		snapobj = os->os->os_dsl_dataset->ds_phys->ds_snapnames_zapobj;
1079 		dmu_objset_close(os);
1080 
1081 		for (zap_cursor_init(&zc, dd->dd_pool->dp_meta_objset, snapobj);
1082 		    zap_cursor_retrieve(&zc, attr) == 0;
1083 		    (void) zap_cursor_advance(&zc)) {
1084 			ASSERT(attr->za_integer_length == sizeof (uint64_t));
1085 			ASSERT(attr->za_num_integers == 1);
1086 
1087 			child = kmem_alloc(MAXPATHLEN, KM_SLEEP);
1088 			/* XXX could probably just use name here */
1089 			dsl_dir_name(dd, child);
1090 			(void) strcat(child, "@");
1091 			(void) strcat(child, attr->za_name);
1092 			err = func(child, arg);
1093 			kmem_free(child, MAXPATHLEN);
1094 			if (err)
1095 				break;
1096 		}
1097 		zap_cursor_fini(&zc);
1098 	}
1099 
1100 	dsl_dir_close(dd, FTAG);
1101 	kmem_free(attr, sizeof (zap_attribute_t));
1102 
1103 	if (err)
1104 		return (err);
1105 
1106 	/*
1107 	 * Apply to self if appropriate.
1108 	 */
1109 	if (do_self)
1110 		err = func(name, arg);
1111 	return (err);
1112 }
1113 
1114 void
1115 dmu_objset_set_user(objset_t *os, void *user_ptr)
1116 {
1117 	ASSERT(MUTEX_HELD(&os->os->os_user_ptr_lock));
1118 	os->os->os_user_ptr = user_ptr;
1119 }
1120 
1121 void *
1122 dmu_objset_get_user(objset_t *os)
1123 {
1124 	ASSERT(MUTEX_HELD(&os->os->os_user_ptr_lock));
1125 	return (os->os->os_user_ptr);
1126 }
1127