]> git.proxmox.com Git - mirror_zfs.git/blob - module/zfs/dmu_objset.c
Add TASKQID_INVALID
[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 == TASKQID_INVALID)
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 typedef struct userquota_node {
1342 /* must be in the first filed, see userquota_update_cache() */
1343 char uqn_id[20 + DMU_OBJACCT_PREFIX_LEN];
1344 int64_t uqn_delta;
1345 avl_node_t uqn_node;
1346 } userquota_node_t;
1347
1348 typedef struct userquota_cache {
1349 avl_tree_t uqc_user_deltas;
1350 avl_tree_t uqc_group_deltas;
1351 } userquota_cache_t;
1352
1353 static int
1354 userquota_compare(const void *l, const void *r)
1355 {
1356 const userquota_node_t *luqn = l;
1357 const userquota_node_t *ruqn = r;
1358 int rv;
1359
1360 /*
1361 * NB: can only access uqn_id because userquota_update_cache() doesn't
1362 * pass in an entire userquota_node_t.
1363 */
1364 rv = strcmp(luqn->uqn_id, ruqn->uqn_id);
1365
1366 return (AVL_ISIGN(rv));
1367 }
1368
1369 static void
1370 do_userquota_cacheflush(objset_t *os, userquota_cache_t *cache, dmu_tx_t *tx)
1371 {
1372 void *cookie;
1373 userquota_node_t *uqn;
1374
1375 ASSERT(dmu_tx_is_syncing(tx));
1376
1377 cookie = NULL;
1378 while ((uqn = avl_destroy_nodes(&cache->uqc_user_deltas,
1379 &cookie)) != NULL) {
1380 VERIFY0(zap_increment(os, DMU_USERUSED_OBJECT,
1381 uqn->uqn_id, uqn->uqn_delta, tx));
1382 kmem_free(uqn, sizeof (*uqn));
1383 }
1384 avl_destroy(&cache->uqc_user_deltas);
1385
1386 cookie = NULL;
1387 while ((uqn = avl_destroy_nodes(&cache->uqc_group_deltas,
1388 &cookie)) != NULL) {
1389 VERIFY0(zap_increment(os, DMU_GROUPUSED_OBJECT,
1390 uqn->uqn_id, uqn->uqn_delta, tx));
1391 kmem_free(uqn, sizeof (*uqn));
1392 }
1393 avl_destroy(&cache->uqc_group_deltas);
1394 }
1395
1396 static void
1397 userquota_update_cache(avl_tree_t *avl, const char *id, int64_t delta)
1398 {
1399 userquota_node_t *uqn;
1400 avl_index_t idx;
1401
1402 ASSERT(strlen(id) < sizeof (uqn->uqn_id));
1403 /*
1404 * Use id directly for searching because uqn_id is the first field of
1405 * userquota_node_t and fields after uqn_id won't be accessed in
1406 * avl_find().
1407 */
1408 uqn = avl_find(avl, (const void *)id, &idx);
1409 if (uqn == NULL) {
1410 uqn = kmem_zalloc(sizeof (*uqn), KM_SLEEP);
1411 strlcpy(uqn->uqn_id, id, sizeof (uqn->uqn_id));
1412 avl_insert(avl, uqn, idx);
1413 }
1414 uqn->uqn_delta += delta;
1415 }
1416
1417 static void
1418 do_userquota_update(userquota_cache_t *cache, uint64_t used, uint64_t flags,
1419 uint64_t user, uint64_t group, boolean_t subtract)
1420 {
1421 if ((flags & DNODE_FLAG_USERUSED_ACCOUNTED)) {
1422 int64_t delta = DNODE_MIN_SIZE + used;
1423 char name[20];
1424
1425 if (subtract)
1426 delta = -delta;
1427
1428 (void) sprintf(name, "%llx", (longlong_t)user);
1429 userquota_update_cache(&cache->uqc_user_deltas, name, delta);
1430
1431 (void) sprintf(name, "%llx", (longlong_t)group);
1432 userquota_update_cache(&cache->uqc_group_deltas, name, delta);
1433 }
1434 }
1435
1436 static void
1437 do_userobjquota_update(userquota_cache_t *cache, uint64_t flags,
1438 uint64_t user, uint64_t group, boolean_t subtract)
1439 {
1440 if (flags & DNODE_FLAG_USEROBJUSED_ACCOUNTED) {
1441 char name[20 + DMU_OBJACCT_PREFIX_LEN];
1442 int delta = subtract ? -1 : 1;
1443
1444 (void) snprintf(name, sizeof (name), DMU_OBJACCT_PREFIX "%llx",
1445 (longlong_t)user);
1446 userquota_update_cache(&cache->uqc_user_deltas, name, delta);
1447
1448 (void) snprintf(name, sizeof (name), DMU_OBJACCT_PREFIX "%llx",
1449 (longlong_t)group);
1450 userquota_update_cache(&cache->uqc_group_deltas, name, delta);
1451 }
1452 }
1453
1454 void
1455 dmu_objset_do_userquota_updates(objset_t *os, dmu_tx_t *tx)
1456 {
1457 dnode_t *dn;
1458 list_t *list = &os->os_synced_dnodes;
1459 userquota_cache_t cache = { { 0 } };
1460
1461 ASSERT(list_head(list) == NULL || dmu_objset_userused_enabled(os));
1462
1463 avl_create(&cache.uqc_user_deltas, userquota_compare,
1464 sizeof (userquota_node_t), offsetof(userquota_node_t, uqn_node));
1465 avl_create(&cache.uqc_group_deltas, userquota_compare,
1466 sizeof (userquota_node_t), offsetof(userquota_node_t, uqn_node));
1467
1468 while ((dn = list_head(list))) {
1469 int flags;
1470 ASSERT(!DMU_OBJECT_IS_SPECIAL(dn->dn_object));
1471 ASSERT(dn->dn_phys->dn_type == DMU_OT_NONE ||
1472 dn->dn_phys->dn_flags &
1473 DNODE_FLAG_USERUSED_ACCOUNTED);
1474
1475 /* Allocate the user/groupused objects if necessary. */
1476 if (DMU_USERUSED_DNODE(os)->dn_type == DMU_OT_NONE) {
1477 VERIFY0(zap_create_claim(os, DMU_USERUSED_OBJECT,
1478 DMU_OT_USERGROUP_USED, DMU_OT_NONE, 0, tx));
1479 VERIFY0(zap_create_claim(os, DMU_GROUPUSED_OBJECT,
1480 DMU_OT_USERGROUP_USED, DMU_OT_NONE, 0, tx));
1481 }
1482
1483 flags = dn->dn_id_flags;
1484 ASSERT(flags);
1485 if (flags & DN_ID_OLD_EXIST) {
1486 do_userquota_update(&cache,
1487 dn->dn_oldused, dn->dn_oldflags,
1488 dn->dn_olduid, dn->dn_oldgid, B_TRUE);
1489 do_userobjquota_update(&cache, dn->dn_oldflags,
1490 dn->dn_olduid, dn->dn_oldgid, B_TRUE);
1491 }
1492 if (flags & DN_ID_NEW_EXIST) {
1493 do_userquota_update(&cache,
1494 DN_USED_BYTES(dn->dn_phys), dn->dn_phys->dn_flags,
1495 dn->dn_newuid, dn->dn_newgid, B_FALSE);
1496 do_userobjquota_update(&cache, dn->dn_phys->dn_flags,
1497 dn->dn_newuid, dn->dn_newgid, B_FALSE);
1498 }
1499
1500 mutex_enter(&dn->dn_mtx);
1501 dn->dn_oldused = 0;
1502 dn->dn_oldflags = 0;
1503 if (dn->dn_id_flags & DN_ID_NEW_EXIST) {
1504 dn->dn_olduid = dn->dn_newuid;
1505 dn->dn_oldgid = dn->dn_newgid;
1506 dn->dn_id_flags |= DN_ID_OLD_EXIST;
1507 if (dn->dn_bonuslen == 0)
1508 dn->dn_id_flags |= DN_ID_CHKED_SPILL;
1509 else
1510 dn->dn_id_flags |= DN_ID_CHKED_BONUS;
1511 }
1512 dn->dn_id_flags &= ~(DN_ID_NEW_EXIST);
1513 mutex_exit(&dn->dn_mtx);
1514
1515 list_remove(list, dn);
1516 dnode_rele(dn, list);
1517 }
1518 do_userquota_cacheflush(os, &cache, tx);
1519 }
1520
1521 /*
1522 * Returns a pointer to data to find uid/gid from
1523 *
1524 * If a dirty record for transaction group that is syncing can't
1525 * be found then NULL is returned. In the NULL case it is assumed
1526 * the uid/gid aren't changing.
1527 */
1528 static void *
1529 dmu_objset_userquota_find_data(dmu_buf_impl_t *db, dmu_tx_t *tx)
1530 {
1531 dbuf_dirty_record_t *dr, **drp;
1532 void *data;
1533
1534 if (db->db_dirtycnt == 0)
1535 return (db->db.db_data); /* Nothing is changing */
1536
1537 for (drp = &db->db_last_dirty; (dr = *drp) != NULL; drp = &dr->dr_next)
1538 if (dr->dr_txg == tx->tx_txg)
1539 break;
1540
1541 if (dr == NULL) {
1542 data = NULL;
1543 } else {
1544 dnode_t *dn;
1545
1546 DB_DNODE_ENTER(dr->dr_dbuf);
1547 dn = DB_DNODE(dr->dr_dbuf);
1548
1549 if (dn->dn_bonuslen == 0 &&
1550 dr->dr_dbuf->db_blkid == DMU_SPILL_BLKID)
1551 data = dr->dt.dl.dr_data->b_data;
1552 else
1553 data = dr->dt.dl.dr_data;
1554
1555 DB_DNODE_EXIT(dr->dr_dbuf);
1556 }
1557
1558 return (data);
1559 }
1560
1561 void
1562 dmu_objset_userquota_get_ids(dnode_t *dn, boolean_t before, dmu_tx_t *tx)
1563 {
1564 objset_t *os = dn->dn_objset;
1565 void *data = NULL;
1566 dmu_buf_impl_t *db = NULL;
1567 uint64_t *user = NULL;
1568 uint64_t *group = NULL;
1569 int flags = dn->dn_id_flags;
1570 int error;
1571 boolean_t have_spill = B_FALSE;
1572
1573 if (!dmu_objset_userused_enabled(dn->dn_objset))
1574 return;
1575
1576 if (before && (flags & (DN_ID_CHKED_BONUS|DN_ID_OLD_EXIST|
1577 DN_ID_CHKED_SPILL)))
1578 return;
1579
1580 if (before && dn->dn_bonuslen != 0)
1581 data = DN_BONUS(dn->dn_phys);
1582 else if (!before && dn->dn_bonuslen != 0) {
1583 if (dn->dn_bonus) {
1584 db = dn->dn_bonus;
1585 mutex_enter(&db->db_mtx);
1586 data = dmu_objset_userquota_find_data(db, tx);
1587 } else {
1588 data = DN_BONUS(dn->dn_phys);
1589 }
1590 } else if (dn->dn_bonuslen == 0 && dn->dn_bonustype == DMU_OT_SA) {
1591 int rf = 0;
1592
1593 if (RW_WRITE_HELD(&dn->dn_struct_rwlock))
1594 rf |= DB_RF_HAVESTRUCT;
1595 error = dmu_spill_hold_by_dnode(dn,
1596 rf | DB_RF_MUST_SUCCEED,
1597 FTAG, (dmu_buf_t **)&db);
1598 ASSERT(error == 0);
1599 mutex_enter(&db->db_mtx);
1600 data = (before) ? db->db.db_data :
1601 dmu_objset_userquota_find_data(db, tx);
1602 have_spill = B_TRUE;
1603 } else {
1604 mutex_enter(&dn->dn_mtx);
1605 dn->dn_id_flags |= DN_ID_CHKED_BONUS;
1606 mutex_exit(&dn->dn_mtx);
1607 return;
1608 }
1609
1610 if (before) {
1611 ASSERT(data);
1612 user = &dn->dn_olduid;
1613 group = &dn->dn_oldgid;
1614 } else if (data) {
1615 user = &dn->dn_newuid;
1616 group = &dn->dn_newgid;
1617 }
1618
1619 /*
1620 * Must always call the callback in case the object
1621 * type has changed and that type isn't an object type to track
1622 */
1623 error = used_cbs[os->os_phys->os_type](dn->dn_bonustype, data,
1624 user, group);
1625
1626 /*
1627 * Preserve existing uid/gid when the callback can't determine
1628 * what the new uid/gid are and the callback returned EEXIST.
1629 * The EEXIST error tells us to just use the existing uid/gid.
1630 * If we don't know what the old values are then just assign
1631 * them to 0, since that is a new file being created.
1632 */
1633 if (!before && data == NULL && error == EEXIST) {
1634 if (flags & DN_ID_OLD_EXIST) {
1635 dn->dn_newuid = dn->dn_olduid;
1636 dn->dn_newgid = dn->dn_oldgid;
1637 } else {
1638 dn->dn_newuid = 0;
1639 dn->dn_newgid = 0;
1640 }
1641 error = 0;
1642 }
1643
1644 if (db)
1645 mutex_exit(&db->db_mtx);
1646
1647 mutex_enter(&dn->dn_mtx);
1648 if (error == 0 && before)
1649 dn->dn_id_flags |= DN_ID_OLD_EXIST;
1650 if (error == 0 && !before)
1651 dn->dn_id_flags |= DN_ID_NEW_EXIST;
1652
1653 if (have_spill) {
1654 dn->dn_id_flags |= DN_ID_CHKED_SPILL;
1655 } else {
1656 dn->dn_id_flags |= DN_ID_CHKED_BONUS;
1657 }
1658 mutex_exit(&dn->dn_mtx);
1659 if (have_spill)
1660 dmu_buf_rele((dmu_buf_t *)db, FTAG);
1661 }
1662
1663 boolean_t
1664 dmu_objset_userspace_present(objset_t *os)
1665 {
1666 return (os->os_phys->os_flags &
1667 OBJSET_FLAG_USERACCOUNTING_COMPLETE);
1668 }
1669
1670 boolean_t
1671 dmu_objset_userobjspace_present(objset_t *os)
1672 {
1673 return (os->os_phys->os_flags &
1674 OBJSET_FLAG_USEROBJACCOUNTING_COMPLETE);
1675 }
1676
1677 static int
1678 dmu_objset_space_upgrade(objset_t *os)
1679 {
1680 uint64_t obj;
1681 int err = 0;
1682
1683 /*
1684 * We simply need to mark every object dirty, so that it will be
1685 * synced out and now accounted. If this is called
1686 * concurrently, or if we already did some work before crashing,
1687 * that's fine, since we track each object's accounted state
1688 * independently.
1689 */
1690
1691 for (obj = 0; err == 0; err = dmu_object_next(os, &obj, FALSE, 0)) {
1692 dmu_tx_t *tx;
1693 dmu_buf_t *db;
1694 int objerr;
1695
1696 mutex_enter(&os->os_upgrade_lock);
1697 if (os->os_upgrade_exit)
1698 err = SET_ERROR(EINTR);
1699 mutex_exit(&os->os_upgrade_lock);
1700 if (err != 0)
1701 return (err);
1702
1703 if (issig(JUSTLOOKING) && issig(FORREAL))
1704 return (SET_ERROR(EINTR));
1705
1706 objerr = dmu_bonus_hold(os, obj, FTAG, &db);
1707 if (objerr != 0)
1708 continue;
1709 tx = dmu_tx_create(os);
1710 dmu_tx_hold_bonus(tx, obj);
1711 objerr = dmu_tx_assign(tx, TXG_WAIT);
1712 if (objerr != 0) {
1713 dmu_tx_abort(tx);
1714 continue;
1715 }
1716 dmu_buf_will_dirty(db, tx);
1717 dmu_buf_rele(db, FTAG);
1718 dmu_tx_commit(tx);
1719 }
1720 return (0);
1721 }
1722
1723 int
1724 dmu_objset_userspace_upgrade(objset_t *os)
1725 {
1726 int err = 0;
1727
1728 if (dmu_objset_userspace_present(os))
1729 return (0);
1730 if (dmu_objset_is_snapshot(os))
1731 return (SET_ERROR(EINVAL));
1732 if (!dmu_objset_userused_enabled(os))
1733 return (SET_ERROR(ENOTSUP));
1734
1735 err = dmu_objset_space_upgrade(os);
1736 if (err)
1737 return (err);
1738
1739 os->os_flags |= OBJSET_FLAG_USERACCOUNTING_COMPLETE;
1740 txg_wait_synced(dmu_objset_pool(os), 0);
1741 return (0);
1742 }
1743
1744 static int
1745 dmu_objset_userobjspace_upgrade_cb(objset_t *os)
1746 {
1747 int err = 0;
1748
1749 if (dmu_objset_userobjspace_present(os))
1750 return (0);
1751 if (dmu_objset_is_snapshot(os))
1752 return (SET_ERROR(EINVAL));
1753 if (!dmu_objset_userobjused_enabled(os))
1754 return (SET_ERROR(ENOTSUP));
1755
1756 dmu_objset_ds(os)->ds_feature_activation_needed[
1757 SPA_FEATURE_USEROBJ_ACCOUNTING] = B_TRUE;
1758
1759 err = dmu_objset_space_upgrade(os);
1760 if (err)
1761 return (err);
1762
1763 os->os_flags |= OBJSET_FLAG_USEROBJACCOUNTING_COMPLETE;
1764 txg_wait_synced(dmu_objset_pool(os), 0);
1765 return (0);
1766 }
1767
1768 void
1769 dmu_objset_userobjspace_upgrade(objset_t *os)
1770 {
1771 dmu_objset_upgrade(os, dmu_objset_userobjspace_upgrade_cb);
1772 }
1773
1774 void
1775 dmu_objset_space(objset_t *os, uint64_t *refdbytesp, uint64_t *availbytesp,
1776 uint64_t *usedobjsp, uint64_t *availobjsp)
1777 {
1778 dsl_dataset_space(os->os_dsl_dataset, refdbytesp, availbytesp,
1779 usedobjsp, availobjsp);
1780 }
1781
1782 uint64_t
1783 dmu_objset_fsid_guid(objset_t *os)
1784 {
1785 return (dsl_dataset_fsid_guid(os->os_dsl_dataset));
1786 }
1787
1788 void
1789 dmu_objset_fast_stat(objset_t *os, dmu_objset_stats_t *stat)
1790 {
1791 stat->dds_type = os->os_phys->os_type;
1792 if (os->os_dsl_dataset)
1793 dsl_dataset_fast_stat(os->os_dsl_dataset, stat);
1794 }
1795
1796 void
1797 dmu_objset_stats(objset_t *os, nvlist_t *nv)
1798 {
1799 ASSERT(os->os_dsl_dataset ||
1800 os->os_phys->os_type == DMU_OST_META);
1801
1802 if (os->os_dsl_dataset != NULL)
1803 dsl_dataset_stats(os->os_dsl_dataset, nv);
1804
1805 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_TYPE,
1806 os->os_phys->os_type);
1807 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_USERACCOUNTING,
1808 dmu_objset_userspace_present(os));
1809 }
1810
1811 int
1812 dmu_objset_is_snapshot(objset_t *os)
1813 {
1814 if (os->os_dsl_dataset != NULL)
1815 return (os->os_dsl_dataset->ds_is_snapshot);
1816 else
1817 return (B_FALSE);
1818 }
1819
1820 int
1821 dmu_snapshot_realname(objset_t *os, char *name, char *real, int maxlen,
1822 boolean_t *conflict)
1823 {
1824 dsl_dataset_t *ds = os->os_dsl_dataset;
1825 uint64_t ignored;
1826
1827 if (dsl_dataset_phys(ds)->ds_snapnames_zapobj == 0)
1828 return (SET_ERROR(ENOENT));
1829
1830 return (zap_lookup_norm(ds->ds_dir->dd_pool->dp_meta_objset,
1831 dsl_dataset_phys(ds)->ds_snapnames_zapobj, name, 8, 1, &ignored,
1832 MT_FIRST, real, maxlen, conflict));
1833 }
1834
1835 int
1836 dmu_snapshot_list_next(objset_t *os, int namelen, char *name,
1837 uint64_t *idp, uint64_t *offp, boolean_t *case_conflict)
1838 {
1839 dsl_dataset_t *ds = os->os_dsl_dataset;
1840 zap_cursor_t cursor;
1841 zap_attribute_t attr;
1842
1843 ASSERT(dsl_pool_config_held(dmu_objset_pool(os)));
1844
1845 if (dsl_dataset_phys(ds)->ds_snapnames_zapobj == 0)
1846 return (SET_ERROR(ENOENT));
1847
1848 zap_cursor_init_serialized(&cursor,
1849 ds->ds_dir->dd_pool->dp_meta_objset,
1850 dsl_dataset_phys(ds)->ds_snapnames_zapobj, *offp);
1851
1852 if (zap_cursor_retrieve(&cursor, &attr) != 0) {
1853 zap_cursor_fini(&cursor);
1854 return (SET_ERROR(ENOENT));
1855 }
1856
1857 if (strlen(attr.za_name) + 1 > namelen) {
1858 zap_cursor_fini(&cursor);
1859 return (SET_ERROR(ENAMETOOLONG));
1860 }
1861
1862 (void) strcpy(name, attr.za_name);
1863 if (idp)
1864 *idp = attr.za_first_integer;
1865 if (case_conflict)
1866 *case_conflict = attr.za_normalization_conflict;
1867 zap_cursor_advance(&cursor);
1868 *offp = zap_cursor_serialize(&cursor);
1869 zap_cursor_fini(&cursor);
1870
1871 return (0);
1872 }
1873
1874 int
1875 dmu_snapshot_lookup(objset_t *os, const char *name, uint64_t *value)
1876 {
1877 return (dsl_dataset_snap_lookup(os->os_dsl_dataset, name, value));
1878 }
1879
1880 int
1881 dmu_dir_list_next(objset_t *os, int namelen, char *name,
1882 uint64_t *idp, uint64_t *offp)
1883 {
1884 dsl_dir_t *dd = os->os_dsl_dataset->ds_dir;
1885 zap_cursor_t cursor;
1886 zap_attribute_t attr;
1887
1888 /* there is no next dir on a snapshot! */
1889 if (os->os_dsl_dataset->ds_object !=
1890 dsl_dir_phys(dd)->dd_head_dataset_obj)
1891 return (SET_ERROR(ENOENT));
1892
1893 zap_cursor_init_serialized(&cursor,
1894 dd->dd_pool->dp_meta_objset,
1895 dsl_dir_phys(dd)->dd_child_dir_zapobj, *offp);
1896
1897 if (zap_cursor_retrieve(&cursor, &attr) != 0) {
1898 zap_cursor_fini(&cursor);
1899 return (SET_ERROR(ENOENT));
1900 }
1901
1902 if (strlen(attr.za_name) + 1 > namelen) {
1903 zap_cursor_fini(&cursor);
1904 return (SET_ERROR(ENAMETOOLONG));
1905 }
1906
1907 (void) strcpy(name, attr.za_name);
1908 if (idp)
1909 *idp = attr.za_first_integer;
1910 zap_cursor_advance(&cursor);
1911 *offp = zap_cursor_serialize(&cursor);
1912 zap_cursor_fini(&cursor);
1913
1914 return (0);
1915 }
1916
1917 typedef struct dmu_objset_find_ctx {
1918 taskq_t *dc_tq;
1919 dsl_pool_t *dc_dp;
1920 uint64_t dc_ddobj;
1921 int (*dc_func)(dsl_pool_t *, dsl_dataset_t *, void *);
1922 void *dc_arg;
1923 int dc_flags;
1924 kmutex_t *dc_error_lock;
1925 int *dc_error;
1926 } dmu_objset_find_ctx_t;
1927
1928 static void
1929 dmu_objset_find_dp_impl(dmu_objset_find_ctx_t *dcp)
1930 {
1931 dsl_pool_t *dp = dcp->dc_dp;
1932 dmu_objset_find_ctx_t *child_dcp;
1933 dsl_dir_t *dd;
1934 dsl_dataset_t *ds;
1935 zap_cursor_t zc;
1936 zap_attribute_t *attr;
1937 uint64_t thisobj;
1938 int err = 0;
1939
1940 /* don't process if there already was an error */
1941 if (*dcp->dc_error != 0)
1942 goto out;
1943
1944 err = dsl_dir_hold_obj(dp, dcp->dc_ddobj, NULL, FTAG, &dd);
1945 if (err != 0)
1946 goto out;
1947
1948 /* Don't visit hidden ($MOS & $ORIGIN) objsets. */
1949 if (dd->dd_myname[0] == '$') {
1950 dsl_dir_rele(dd, FTAG);
1951 goto out;
1952 }
1953
1954 thisobj = dsl_dir_phys(dd)->dd_head_dataset_obj;
1955 attr = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP);
1956
1957 /*
1958 * Iterate over all children.
1959 */
1960 if (dcp->dc_flags & DS_FIND_CHILDREN) {
1961 for (zap_cursor_init(&zc, dp->dp_meta_objset,
1962 dsl_dir_phys(dd)->dd_child_dir_zapobj);
1963 zap_cursor_retrieve(&zc, attr) == 0;
1964 (void) zap_cursor_advance(&zc)) {
1965 ASSERT3U(attr->za_integer_length, ==,
1966 sizeof (uint64_t));
1967 ASSERT3U(attr->za_num_integers, ==, 1);
1968
1969 child_dcp = kmem_alloc(sizeof (*child_dcp), KM_SLEEP);
1970 *child_dcp = *dcp;
1971 child_dcp->dc_ddobj = attr->za_first_integer;
1972 if (dcp->dc_tq != NULL)
1973 (void) taskq_dispatch(dcp->dc_tq,
1974 dmu_objset_find_dp_cb, child_dcp, TQ_SLEEP);
1975 else
1976 dmu_objset_find_dp_impl(child_dcp);
1977 }
1978 zap_cursor_fini(&zc);
1979 }
1980
1981 /*
1982 * Iterate over all snapshots.
1983 */
1984 if (dcp->dc_flags & DS_FIND_SNAPSHOTS) {
1985 dsl_dataset_t *ds;
1986 err = dsl_dataset_hold_obj(dp, thisobj, FTAG, &ds);
1987
1988 if (err == 0) {
1989 uint64_t snapobj;
1990
1991 snapobj = dsl_dataset_phys(ds)->ds_snapnames_zapobj;
1992 dsl_dataset_rele(ds, FTAG);
1993
1994 for (zap_cursor_init(&zc, dp->dp_meta_objset, snapobj);
1995 zap_cursor_retrieve(&zc, attr) == 0;
1996 (void) zap_cursor_advance(&zc)) {
1997 ASSERT3U(attr->za_integer_length, ==,
1998 sizeof (uint64_t));
1999 ASSERT3U(attr->za_num_integers, ==, 1);
2000
2001 err = dsl_dataset_hold_obj(dp,
2002 attr->za_first_integer, FTAG, &ds);
2003 if (err != 0)
2004 break;
2005 err = dcp->dc_func(dp, ds, dcp->dc_arg);
2006 dsl_dataset_rele(ds, FTAG);
2007 if (err != 0)
2008 break;
2009 }
2010 zap_cursor_fini(&zc);
2011 }
2012 }
2013
2014 dsl_dir_rele(dd, FTAG);
2015 kmem_free(attr, sizeof (zap_attribute_t));
2016
2017 if (err != 0)
2018 goto out;
2019
2020 /*
2021 * Apply to self.
2022 */
2023 err = dsl_dataset_hold_obj(dp, thisobj, FTAG, &ds);
2024 if (err != 0)
2025 goto out;
2026 err = dcp->dc_func(dp, ds, dcp->dc_arg);
2027 dsl_dataset_rele(ds, FTAG);
2028
2029 out:
2030 if (err != 0) {
2031 mutex_enter(dcp->dc_error_lock);
2032 /* only keep first error */
2033 if (*dcp->dc_error == 0)
2034 *dcp->dc_error = err;
2035 mutex_exit(dcp->dc_error_lock);
2036 }
2037
2038 kmem_free(dcp, sizeof (*dcp));
2039 }
2040
2041 static void
2042 dmu_objset_find_dp_cb(void *arg)
2043 {
2044 dmu_objset_find_ctx_t *dcp = arg;
2045 dsl_pool_t *dp = dcp->dc_dp;
2046
2047 /*
2048 * We need to get a pool_config_lock here, as there are several
2049 * asssert(pool_config_held) down the stack. Getting a lock via
2050 * dsl_pool_config_enter is risky, as it might be stalled by a
2051 * pending writer. This would deadlock, as the write lock can
2052 * only be granted when our parent thread gives up the lock.
2053 * The _prio interface gives us priority over a pending writer.
2054 */
2055 dsl_pool_config_enter_prio(dp, FTAG);
2056
2057 dmu_objset_find_dp_impl(dcp);
2058
2059 dsl_pool_config_exit(dp, FTAG);
2060 }
2061
2062 /*
2063 * Find objsets under and including ddobj, call func(ds) on each.
2064 * The order for the enumeration is completely undefined.
2065 * func is called with dsl_pool_config held.
2066 */
2067 int
2068 dmu_objset_find_dp(dsl_pool_t *dp, uint64_t ddobj,
2069 int func(dsl_pool_t *, dsl_dataset_t *, void *), void *arg, int flags)
2070 {
2071 int error = 0;
2072 taskq_t *tq = NULL;
2073 int ntasks;
2074 dmu_objset_find_ctx_t *dcp;
2075 kmutex_t err_lock;
2076
2077 mutex_init(&err_lock, NULL, MUTEX_DEFAULT, NULL);
2078 dcp = kmem_alloc(sizeof (*dcp), KM_SLEEP);
2079 dcp->dc_tq = NULL;
2080 dcp->dc_dp = dp;
2081 dcp->dc_ddobj = ddobj;
2082 dcp->dc_func = func;
2083 dcp->dc_arg = arg;
2084 dcp->dc_flags = flags;
2085 dcp->dc_error_lock = &err_lock;
2086 dcp->dc_error = &error;
2087
2088 if ((flags & DS_FIND_SERIALIZE) || dsl_pool_config_held_writer(dp)) {
2089 /*
2090 * In case a write lock is held we can't make use of
2091 * parallelism, as down the stack of the worker threads
2092 * the lock is asserted via dsl_pool_config_held.
2093 * In case of a read lock this is solved by getting a read
2094 * lock in each worker thread, which isn't possible in case
2095 * of a writer lock. So we fall back to the synchronous path
2096 * here.
2097 * In the future it might be possible to get some magic into
2098 * dsl_pool_config_held in a way that it returns true for
2099 * the worker threads so that a single lock held from this
2100 * thread suffices. For now, stay single threaded.
2101 */
2102 dmu_objset_find_dp_impl(dcp);
2103 mutex_destroy(&err_lock);
2104
2105 return (error);
2106 }
2107
2108 ntasks = dmu_find_threads;
2109 if (ntasks == 0)
2110 ntasks = vdev_count_leaves(dp->dp_spa) * 4;
2111 tq = taskq_create("dmu_objset_find", ntasks, maxclsyspri, ntasks,
2112 INT_MAX, 0);
2113 if (tq == NULL) {
2114 kmem_free(dcp, sizeof (*dcp));
2115 mutex_destroy(&err_lock);
2116
2117 return (SET_ERROR(ENOMEM));
2118 }
2119 dcp->dc_tq = tq;
2120
2121 /* dcp will be freed by task */
2122 (void) taskq_dispatch(tq, dmu_objset_find_dp_cb, dcp, TQ_SLEEP);
2123
2124 /*
2125 * PORTING: this code relies on the property of taskq_wait to wait
2126 * until no more tasks are queued and no more tasks are active. As
2127 * we always queue new tasks from within other tasks, task_wait
2128 * reliably waits for the full recursion to finish, even though we
2129 * enqueue new tasks after taskq_wait has been called.
2130 * On platforms other than illumos, taskq_wait may not have this
2131 * property.
2132 */
2133 taskq_wait(tq);
2134 taskq_destroy(tq);
2135 mutex_destroy(&err_lock);
2136
2137 return (error);
2138 }
2139
2140 /*
2141 * Find all objsets under name, and for each, call 'func(child_name, arg)'.
2142 * The dp_config_rwlock must not be held when this is called, and it
2143 * will not be held when the callback is called.
2144 * Therefore this function should only be used when the pool is not changing
2145 * (e.g. in syncing context), or the callback can deal with the possible races.
2146 */
2147 static int
2148 dmu_objset_find_impl(spa_t *spa, const char *name,
2149 int func(const char *, void *), void *arg, int flags)
2150 {
2151 dsl_dir_t *dd;
2152 dsl_pool_t *dp = spa_get_dsl(spa);
2153 dsl_dataset_t *ds;
2154 zap_cursor_t zc;
2155 zap_attribute_t *attr;
2156 char *child;
2157 uint64_t thisobj;
2158 int err;
2159
2160 dsl_pool_config_enter(dp, FTAG);
2161
2162 err = dsl_dir_hold(dp, name, FTAG, &dd, NULL);
2163 if (err != 0) {
2164 dsl_pool_config_exit(dp, FTAG);
2165 return (err);
2166 }
2167
2168 /* Don't visit hidden ($MOS & $ORIGIN) objsets. */
2169 if (dd->dd_myname[0] == '$') {
2170 dsl_dir_rele(dd, FTAG);
2171 dsl_pool_config_exit(dp, FTAG);
2172 return (0);
2173 }
2174
2175 thisobj = dsl_dir_phys(dd)->dd_head_dataset_obj;
2176 attr = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP);
2177
2178 /*
2179 * Iterate over all children.
2180 */
2181 if (flags & DS_FIND_CHILDREN) {
2182 for (zap_cursor_init(&zc, dp->dp_meta_objset,
2183 dsl_dir_phys(dd)->dd_child_dir_zapobj);
2184 zap_cursor_retrieve(&zc, attr) == 0;
2185 (void) zap_cursor_advance(&zc)) {
2186 ASSERT3U(attr->za_integer_length, ==,
2187 sizeof (uint64_t));
2188 ASSERT3U(attr->za_num_integers, ==, 1);
2189
2190 child = kmem_asprintf("%s/%s", name, attr->za_name);
2191 dsl_pool_config_exit(dp, FTAG);
2192 err = dmu_objset_find_impl(spa, child,
2193 func, arg, flags);
2194 dsl_pool_config_enter(dp, FTAG);
2195 strfree(child);
2196 if (err != 0)
2197 break;
2198 }
2199 zap_cursor_fini(&zc);
2200
2201 if (err != 0) {
2202 dsl_dir_rele(dd, FTAG);
2203 dsl_pool_config_exit(dp, FTAG);
2204 kmem_free(attr, sizeof (zap_attribute_t));
2205 return (err);
2206 }
2207 }
2208
2209 /*
2210 * Iterate over all snapshots.
2211 */
2212 if (flags & DS_FIND_SNAPSHOTS) {
2213 err = dsl_dataset_hold_obj(dp, thisobj, FTAG, &ds);
2214
2215 if (err == 0) {
2216 uint64_t snapobj;
2217
2218 snapobj = dsl_dataset_phys(ds)->ds_snapnames_zapobj;
2219 dsl_dataset_rele(ds, FTAG);
2220
2221 for (zap_cursor_init(&zc, dp->dp_meta_objset, snapobj);
2222 zap_cursor_retrieve(&zc, attr) == 0;
2223 (void) zap_cursor_advance(&zc)) {
2224 ASSERT3U(attr->za_integer_length, ==,
2225 sizeof (uint64_t));
2226 ASSERT3U(attr->za_num_integers, ==, 1);
2227
2228 child = kmem_asprintf("%s@%s",
2229 name, attr->za_name);
2230 dsl_pool_config_exit(dp, FTAG);
2231 err = func(child, arg);
2232 dsl_pool_config_enter(dp, FTAG);
2233 strfree(child);
2234 if (err != 0)
2235 break;
2236 }
2237 zap_cursor_fini(&zc);
2238 }
2239 }
2240
2241 dsl_dir_rele(dd, FTAG);
2242 kmem_free(attr, sizeof (zap_attribute_t));
2243 dsl_pool_config_exit(dp, FTAG);
2244
2245 if (err != 0)
2246 return (err);
2247
2248 /* Apply to self. */
2249 return (func(name, arg));
2250 }
2251
2252 /*
2253 * See comment above dmu_objset_find_impl().
2254 */
2255 int
2256 dmu_objset_find(char *name, int func(const char *, void *), void *arg,
2257 int flags)
2258 {
2259 spa_t *spa;
2260 int error;
2261
2262 error = spa_open(name, &spa, FTAG);
2263 if (error != 0)
2264 return (error);
2265 error = dmu_objset_find_impl(spa, name, func, arg, flags);
2266 spa_close(spa, FTAG);
2267 return (error);
2268 }
2269
2270 void
2271 dmu_objset_set_user(objset_t *os, void *user_ptr)
2272 {
2273 ASSERT(MUTEX_HELD(&os->os_user_ptr_lock));
2274 os->os_user_ptr = user_ptr;
2275 }
2276
2277 void *
2278 dmu_objset_get_user(objset_t *os)
2279 {
2280 ASSERT(MUTEX_HELD(&os->os_user_ptr_lock));
2281 return (os->os_user_ptr);
2282 }
2283
2284 /*
2285 * Determine name of filesystem, given name of snapshot.
2286 * buf must be at least ZFS_MAX_DATASET_NAME_LEN bytes
2287 */
2288 int
2289 dmu_fsname(const char *snapname, char *buf)
2290 {
2291 char *atp = strchr(snapname, '@');
2292 if (atp == NULL)
2293 return (SET_ERROR(EINVAL));
2294 if (atp - snapname >= ZFS_MAX_DATASET_NAME_LEN)
2295 return (SET_ERROR(ENAMETOOLONG));
2296 (void) strlcpy(buf, snapname, atp - snapname + 1);
2297 return (0);
2298 }
2299
2300 #if defined(_KERNEL) && defined(HAVE_SPL)
2301 EXPORT_SYMBOL(dmu_objset_zil);
2302 EXPORT_SYMBOL(dmu_objset_pool);
2303 EXPORT_SYMBOL(dmu_objset_ds);
2304 EXPORT_SYMBOL(dmu_objset_type);
2305 EXPORT_SYMBOL(dmu_objset_name);
2306 EXPORT_SYMBOL(dmu_objset_hold);
2307 EXPORT_SYMBOL(dmu_objset_own);
2308 EXPORT_SYMBOL(dmu_objset_rele);
2309 EXPORT_SYMBOL(dmu_objset_disown);
2310 EXPORT_SYMBOL(dmu_objset_from_ds);
2311 EXPORT_SYMBOL(dmu_objset_create);
2312 EXPORT_SYMBOL(dmu_objset_clone);
2313 EXPORT_SYMBOL(dmu_objset_stats);
2314 EXPORT_SYMBOL(dmu_objset_fast_stat);
2315 EXPORT_SYMBOL(dmu_objset_spa);
2316 EXPORT_SYMBOL(dmu_objset_space);
2317 EXPORT_SYMBOL(dmu_objset_fsid_guid);
2318 EXPORT_SYMBOL(dmu_objset_find);
2319 EXPORT_SYMBOL(dmu_objset_byteswap);
2320 EXPORT_SYMBOL(dmu_objset_evict_dbufs);
2321 EXPORT_SYMBOL(dmu_objset_snap_cmtime);
2322 EXPORT_SYMBOL(dmu_objset_dnodesize);
2323
2324 EXPORT_SYMBOL(dmu_objset_sync);
2325 EXPORT_SYMBOL(dmu_objset_is_dirty);
2326 EXPORT_SYMBOL(dmu_objset_create_impl);
2327 EXPORT_SYMBOL(dmu_objset_open_impl);
2328 EXPORT_SYMBOL(dmu_objset_evict);
2329 EXPORT_SYMBOL(dmu_objset_register_type);
2330 EXPORT_SYMBOL(dmu_objset_do_userquota_updates);
2331 EXPORT_SYMBOL(dmu_objset_userquota_get_ids);
2332 EXPORT_SYMBOL(dmu_objset_userused_enabled);
2333 EXPORT_SYMBOL(dmu_objset_userspace_upgrade);
2334 EXPORT_SYMBOL(dmu_objset_userspace_present);
2335 EXPORT_SYMBOL(dmu_objset_userobjused_enabled);
2336 EXPORT_SYMBOL(dmu_objset_userobjspace_upgrade);
2337 EXPORT_SYMBOL(dmu_objset_userobjspace_present);
2338 #endif