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