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