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