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