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 https://opensource.org/licenses/CDDL-1.0.
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 /*
23 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Copyright (c) 2012, 2020 by Delphix. All rights reserved.
25 * Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
26 * Copyright (c) 2013, Joyent, Inc. All rights reserved.
27 * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
28 * Copyright (c) 2015, STRATO AG, Inc. All rights reserved.
29 * Copyright (c) 2016 Actifio, Inc. All rights reserved.
30 * Copyright 2017 Nexenta Systems, Inc.
31 * Copyright (c) 2017 Open-E, Inc. All Rights Reserved.
32 * Copyright (c) 2018, loli10K <[email protected]>. All rights reserved.
33 * Copyright (c) 2019, Klara Inc.
34 * Copyright (c) 2019, Allan Jude
35 * Copyright (c) 2022 Hewlett Packard Enterprise Development LP.
36 */
37
38 /* Portions Copyright 2010 Robert Milkowski */
39
40 #include <sys/cred.h>
41 #include <sys/zfs_context.h>
42 #include <sys/dmu_objset.h>
43 #include <sys/dsl_dir.h>
44 #include <sys/dsl_dataset.h>
45 #include <sys/dsl_prop.h>
46 #include <sys/dsl_pool.h>
47 #include <sys/dsl_synctask.h>
48 #include <sys/dsl_deleg.h>
49 #include <sys/dnode.h>
50 #include <sys/dbuf.h>
51 #include <sys/zvol.h>
52 #include <sys/dmu_tx.h>
53 #include <sys/zap.h>
54 #include <sys/zil.h>
55 #include <sys/dmu_impl.h>
56 #include <sys/zfs_ioctl.h>
57 #include <sys/sa.h>
58 #include <sys/zfs_onexit.h>
59 #include <sys/dsl_destroy.h>
60 #include <sys/vdev.h>
61 #include <sys/zfeature.h>
62 #include <sys/policy.h>
63 #include <sys/spa_impl.h>
64 #include <sys/dmu_recv.h>
65 #include <sys/zfs_project.h>
66 #include "zfs_namecheck.h"
67 #include <sys/vdev_impl.h>
68 #include <sys/arc.h>
69
70 /*
71 * Needed to close a window in dnode_move() that allows the objset to be freed
72 * before it can be safely accessed.
73 */
74 krwlock_t os_lock;
75
76 /*
77 * Tunable to overwrite the maximum number of threads for the parallelization
78 * of dmu_objset_find_dp, needed to speed up the import of pools with many
79 * datasets.
80 * Default is 4 times the number of leaf vdevs.
81 */
82 static const int dmu_find_threads = 0;
83
84 /*
85 * Backfill lower metadnode objects after this many have been freed.
86 * Backfilling negatively impacts object creation rates, so only do it
87 * if there are enough holes to fill.
88 */
89 static const int dmu_rescan_dnode_threshold = 1 << DN_MAX_INDBLKSHIFT;
90
91 static const char *upgrade_tag = "upgrade_tag";
92
93 static void dmu_objset_find_dp_cb(void *arg);
94
95 static void dmu_objset_upgrade(objset_t *os, dmu_objset_upgrade_cb_t cb);
96 static void dmu_objset_upgrade_stop(objset_t *os);
97
98 void
dmu_objset_init(void)99 dmu_objset_init(void)
100 {
101 rw_init(&os_lock, NULL, RW_DEFAULT, NULL);
102 }
103
104 void
dmu_objset_fini(void)105 dmu_objset_fini(void)
106 {
107 rw_destroy(&os_lock);
108 }
109
110 spa_t *
dmu_objset_spa(objset_t * os)111 dmu_objset_spa(objset_t *os)
112 {
113 return (os->os_spa);
114 }
115
116 zilog_t *
dmu_objset_zil(objset_t * os)117 dmu_objset_zil(objset_t *os)
118 {
119 return (os->os_zil);
120 }
121
122 dsl_pool_t *
dmu_objset_pool(objset_t * os)123 dmu_objset_pool(objset_t *os)
124 {
125 dsl_dataset_t *ds;
126
127 if ((ds = os->os_dsl_dataset) != NULL && ds->ds_dir)
128 return (ds->ds_dir->dd_pool);
129 else
130 return (spa_get_dsl(os->os_spa));
131 }
132
133 dsl_dataset_t *
dmu_objset_ds(objset_t * os)134 dmu_objset_ds(objset_t *os)
135 {
136 return (os->os_dsl_dataset);
137 }
138
139 dmu_objset_type_t
dmu_objset_type(objset_t * os)140 dmu_objset_type(objset_t *os)
141 {
142 return (os->os_phys->os_type);
143 }
144
145 void
dmu_objset_name(objset_t * os,char * buf)146 dmu_objset_name(objset_t *os, char *buf)
147 {
148 dsl_dataset_name(os->os_dsl_dataset, buf);
149 }
150
151 uint64_t
dmu_objset_id(objset_t * os)152 dmu_objset_id(objset_t *os)
153 {
154 dsl_dataset_t *ds = os->os_dsl_dataset;
155
156 return (ds ? ds->ds_object : 0);
157 }
158
159 uint64_t
dmu_objset_dnodesize(objset_t * os)160 dmu_objset_dnodesize(objset_t *os)
161 {
162 return (os->os_dnodesize);
163 }
164
165 zfs_sync_type_t
dmu_objset_syncprop(objset_t * os)166 dmu_objset_syncprop(objset_t *os)
167 {
168 return (os->os_sync);
169 }
170
171 zfs_logbias_op_t
dmu_objset_logbias(objset_t * os)172 dmu_objset_logbias(objset_t *os)
173 {
174 return (os->os_logbias);
175 }
176
177 static void
checksum_changed_cb(void * arg,uint64_t newval)178 checksum_changed_cb(void *arg, uint64_t newval)
179 {
180 objset_t *os = arg;
181
182 /*
183 * Inheritance should have been done by now.
184 */
185 ASSERT(newval != ZIO_CHECKSUM_INHERIT);
186
187 os->os_checksum = zio_checksum_select(newval, ZIO_CHECKSUM_ON_VALUE);
188 }
189
190 static void
compression_changed_cb(void * arg,uint64_t newval)191 compression_changed_cb(void *arg, uint64_t newval)
192 {
193 objset_t *os = arg;
194
195 /*
196 * Inheritance and range checking should have been done by now.
197 */
198 ASSERT(newval != ZIO_COMPRESS_INHERIT);
199
200 os->os_compress = zio_compress_select(os->os_spa,
201 ZIO_COMPRESS_ALGO(newval), ZIO_COMPRESS_ON);
202 os->os_complevel = zio_complevel_select(os->os_spa, os->os_compress,
203 ZIO_COMPRESS_LEVEL(newval), ZIO_COMPLEVEL_DEFAULT);
204 }
205
206 static void
copies_changed_cb(void * arg,uint64_t newval)207 copies_changed_cb(void *arg, uint64_t newval)
208 {
209 objset_t *os = arg;
210
211 /*
212 * Inheritance and range checking should have been done by now.
213 */
214 ASSERT(newval > 0);
215 ASSERT(newval <= spa_max_replication(os->os_spa));
216
217 os->os_copies = newval;
218 }
219
220 static void
dedup_changed_cb(void * arg,uint64_t newval)221 dedup_changed_cb(void *arg, uint64_t newval)
222 {
223 objset_t *os = arg;
224 spa_t *spa = os->os_spa;
225 enum zio_checksum checksum;
226
227 /*
228 * Inheritance should have been done by now.
229 */
230 ASSERT(newval != ZIO_CHECKSUM_INHERIT);
231
232 checksum = zio_checksum_dedup_select(spa, newval, ZIO_CHECKSUM_OFF);
233
234 os->os_dedup_checksum = checksum & ZIO_CHECKSUM_MASK;
235 os->os_dedup_verify = !!(checksum & ZIO_CHECKSUM_VERIFY);
236 }
237
238 static void
primary_cache_changed_cb(void * arg,uint64_t newval)239 primary_cache_changed_cb(void *arg, uint64_t newval)
240 {
241 objset_t *os = arg;
242
243 /*
244 * Inheritance and range checking should have been done by now.
245 */
246 ASSERT(newval == ZFS_CACHE_ALL || newval == ZFS_CACHE_NONE ||
247 newval == ZFS_CACHE_METADATA);
248
249 os->os_primary_cache = newval;
250 }
251
252 static void
secondary_cache_changed_cb(void * arg,uint64_t newval)253 secondary_cache_changed_cb(void *arg, uint64_t newval)
254 {
255 objset_t *os = arg;
256
257 /*
258 * Inheritance and range checking should have been done by now.
259 */
260 ASSERT(newval == ZFS_CACHE_ALL || newval == ZFS_CACHE_NONE ||
261 newval == ZFS_CACHE_METADATA);
262
263 os->os_secondary_cache = newval;
264 }
265
266 static void
prefetch_changed_cb(void * arg,uint64_t newval)267 prefetch_changed_cb(void *arg, uint64_t newval)
268 {
269 objset_t *os = arg;
270
271 /*
272 * Inheritance should have been done by now.
273 */
274 ASSERT(newval == ZFS_PREFETCH_ALL || newval == ZFS_PREFETCH_NONE ||
275 newval == ZFS_PREFETCH_METADATA);
276 os->os_prefetch = newval;
277 }
278
279 static void
sync_changed_cb(void * arg,uint64_t newval)280 sync_changed_cb(void *arg, uint64_t newval)
281 {
282 objset_t *os = arg;
283
284 /*
285 * Inheritance and range checking should have been done by now.
286 */
287 ASSERT(newval == ZFS_SYNC_STANDARD || newval == ZFS_SYNC_ALWAYS ||
288 newval == ZFS_SYNC_DISABLED);
289
290 os->os_sync = newval;
291 if (os->os_zil)
292 zil_set_sync(os->os_zil, newval);
293 }
294
295 static void
redundant_metadata_changed_cb(void * arg,uint64_t newval)296 redundant_metadata_changed_cb(void *arg, uint64_t newval)
297 {
298 objset_t *os = arg;
299
300 /*
301 * Inheritance and range checking should have been done by now.
302 */
303 ASSERT(newval == ZFS_REDUNDANT_METADATA_ALL ||
304 newval == ZFS_REDUNDANT_METADATA_MOST ||
305 newval == ZFS_REDUNDANT_METADATA_SOME ||
306 newval == ZFS_REDUNDANT_METADATA_NONE);
307
308 os->os_redundant_metadata = newval;
309 }
310
311 static void
dnodesize_changed_cb(void * arg,uint64_t newval)312 dnodesize_changed_cb(void *arg, uint64_t newval)
313 {
314 objset_t *os = arg;
315
316 switch (newval) {
317 case ZFS_DNSIZE_LEGACY:
318 os->os_dnodesize = DNODE_MIN_SIZE;
319 break;
320 case ZFS_DNSIZE_AUTO:
321 /*
322 * Choose a dnode size that will work well for most
323 * workloads if the user specified "auto". Future code
324 * improvements could dynamically select a dnode size
325 * based on observed workload patterns.
326 */
327 os->os_dnodesize = DNODE_MIN_SIZE * 2;
328 break;
329 case ZFS_DNSIZE_1K:
330 case ZFS_DNSIZE_2K:
331 case ZFS_DNSIZE_4K:
332 case ZFS_DNSIZE_8K:
333 case ZFS_DNSIZE_16K:
334 os->os_dnodesize = newval;
335 break;
336 }
337 }
338
339 static void
smallblk_changed_cb(void * arg,uint64_t newval)340 smallblk_changed_cb(void *arg, uint64_t newval)
341 {
342 objset_t *os = arg;
343
344 /*
345 * Inheritance and range checking should have been done by now.
346 */
347 ASSERT(newval <= SPA_MAXBLOCKSIZE);
348 ASSERT(ISP2(newval));
349
350 os->os_zpl_special_smallblock = newval;
351 }
352
353 static void
logbias_changed_cb(void * arg,uint64_t newval)354 logbias_changed_cb(void *arg, uint64_t newval)
355 {
356 objset_t *os = arg;
357
358 ASSERT(newval == ZFS_LOGBIAS_LATENCY ||
359 newval == ZFS_LOGBIAS_THROUGHPUT);
360 os->os_logbias = newval;
361 if (os->os_zil)
362 zil_set_logbias(os->os_zil, newval);
363 }
364
365 static void
recordsize_changed_cb(void * arg,uint64_t newval)366 recordsize_changed_cb(void *arg, uint64_t newval)
367 {
368 objset_t *os = arg;
369
370 os->os_recordsize = newval;
371 }
372
373 void
dmu_objset_byteswap(void * buf,size_t size)374 dmu_objset_byteswap(void *buf, size_t size)
375 {
376 objset_phys_t *osp = buf;
377
378 ASSERT(size == OBJSET_PHYS_SIZE_V1 || size == OBJSET_PHYS_SIZE_V2 ||
379 size == sizeof (objset_phys_t));
380 dnode_byteswap(&osp->os_meta_dnode);
381 byteswap_uint64_array(&osp->os_zil_header, sizeof (zil_header_t));
382 osp->os_type = BSWAP_64(osp->os_type);
383 osp->os_flags = BSWAP_64(osp->os_flags);
384 if (size >= OBJSET_PHYS_SIZE_V2) {
385 dnode_byteswap(&osp->os_userused_dnode);
386 dnode_byteswap(&osp->os_groupused_dnode);
387 if (size >= sizeof (objset_phys_t))
388 dnode_byteswap(&osp->os_projectused_dnode);
389 }
390 }
391
392 /*
393 * The hash is a CRC-based hash of the objset_t pointer and the object number.
394 */
395 static uint64_t
dnode_hash(const objset_t * os,uint64_t obj)396 dnode_hash(const objset_t *os, uint64_t obj)
397 {
398 uintptr_t osv = (uintptr_t)os;
399 uint64_t crc = -1ULL;
400
401 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY);
402 /*
403 * The lower 11 bits of the pointer don't have much entropy, because
404 * the objset_t is more than 1KB long and so likely aligned to 2KB.
405 */
406 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (osv >> 11)) & 0xFF];
407 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 0)) & 0xFF];
408 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 8)) & 0xFF];
409 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 16)) & 0xFF];
410
411 crc ^= (osv>>14) ^ (obj>>24);
412
413 return (crc);
414 }
415
416 static unsigned int
dnode_multilist_index_func(multilist_t * ml,void * obj)417 dnode_multilist_index_func(multilist_t *ml, void *obj)
418 {
419 dnode_t *dn = obj;
420
421 /*
422 * The low order bits of the hash value are thought to be
423 * distributed evenly. Otherwise, in the case that the multilist
424 * has a power of two number of sublists, each sublists' usage
425 * would not be evenly distributed. In this context full 64bit
426 * division would be a waste of time, so limit it to 32 bits.
427 */
428 return ((unsigned int)dnode_hash(dn->dn_objset, dn->dn_object) %
429 multilist_get_num_sublists(ml));
430 }
431
432 static inline boolean_t
dmu_os_is_l2cacheable(objset_t * os)433 dmu_os_is_l2cacheable(objset_t *os)
434 {
435 if (os->os_secondary_cache == ZFS_CACHE_ALL ||
436 os->os_secondary_cache == ZFS_CACHE_METADATA) {
437 if (l2arc_exclude_special == 0)
438 return (B_TRUE);
439
440 blkptr_t *bp = os->os_rootbp;
441 if (bp == NULL || BP_IS_HOLE(bp))
442 return (B_FALSE);
443 uint64_t vdev = DVA_GET_VDEV(bp->blk_dva);
444 vdev_t *rvd = os->os_spa->spa_root_vdev;
445 vdev_t *vd = NULL;
446
447 if (vdev < rvd->vdev_children)
448 vd = rvd->vdev_child[vdev];
449
450 if (vd == NULL)
451 return (B_TRUE);
452
453 if (vd->vdev_alloc_bias != VDEV_BIAS_SPECIAL &&
454 vd->vdev_alloc_bias != VDEV_BIAS_DEDUP)
455 return (B_TRUE);
456 }
457 return (B_FALSE);
458 }
459
460 /*
461 * Instantiates the objset_t in-memory structure corresponding to the
462 * objset_phys_t that's pointed to by the specified blkptr_t.
463 */
464 int
dmu_objset_open_impl(spa_t * spa,dsl_dataset_t * ds,blkptr_t * bp,objset_t ** osp)465 dmu_objset_open_impl(spa_t *spa, dsl_dataset_t *ds, blkptr_t *bp,
466 objset_t **osp)
467 {
468 objset_t *os;
469 int i, err;
470
471 ASSERT(ds == NULL || MUTEX_HELD(&ds->ds_opening_lock));
472 ASSERT(!BP_IS_REDACTED(bp));
473
474 /*
475 * We need the pool config lock to get properties.
476 */
477 ASSERT(ds == NULL || dsl_pool_config_held(ds->ds_dir->dd_pool));
478
479 /*
480 * The $ORIGIN dataset (if it exists) doesn't have an associated
481 * objset, so there's no reason to open it. The $ORIGIN dataset
482 * will not exist on pools older than SPA_VERSION_ORIGIN.
483 */
484 if (ds != NULL && spa_get_dsl(spa) != NULL &&
485 spa_get_dsl(spa)->dp_origin_snap != NULL) {
486 ASSERT3P(ds->ds_dir, !=,
487 spa_get_dsl(spa)->dp_origin_snap->ds_dir);
488 }
489
490 os = kmem_zalloc(sizeof (objset_t), KM_SLEEP);
491 os->os_dsl_dataset = ds;
492 os->os_spa = spa;
493 os->os_rootbp = bp;
494 if (!BP_IS_HOLE(os->os_rootbp)) {
495 arc_flags_t aflags = ARC_FLAG_WAIT;
496 zbookmark_phys_t zb;
497 int size;
498 zio_flag_t zio_flags = ZIO_FLAG_CANFAIL;
499 SET_BOOKMARK(&zb, ds ? ds->ds_object : DMU_META_OBJSET,
500 ZB_ROOT_OBJECT, ZB_ROOT_LEVEL, ZB_ROOT_BLKID);
501
502 if (dmu_os_is_l2cacheable(os))
503 aflags |= ARC_FLAG_L2CACHE;
504
505 if (ds != NULL && ds->ds_dir->dd_crypto_obj != 0) {
506 ASSERT3U(BP_GET_COMPRESS(bp), ==, ZIO_COMPRESS_OFF);
507 ASSERT(BP_IS_AUTHENTICATED(bp));
508 zio_flags |= ZIO_FLAG_RAW;
509 }
510
511 dprintf_bp(os->os_rootbp, "reading %s", "");
512 err = arc_read(NULL, spa, os->os_rootbp,
513 arc_getbuf_func, &os->os_phys_buf,
514 ZIO_PRIORITY_SYNC_READ, zio_flags, &aflags, &zb);
515 if (err != 0) {
516 kmem_free(os, sizeof (objset_t));
517 /* convert checksum errors into IO errors */
518 if (err == ECKSUM)
519 err = SET_ERROR(EIO);
520 return (err);
521 }
522
523 if (spa_version(spa) < SPA_VERSION_USERSPACE)
524 size = OBJSET_PHYS_SIZE_V1;
525 else if (!spa_feature_is_enabled(spa,
526 SPA_FEATURE_PROJECT_QUOTA))
527 size = OBJSET_PHYS_SIZE_V2;
528 else
529 size = sizeof (objset_phys_t);
530
531 /* Increase the blocksize if we are permitted. */
532 if (arc_buf_size(os->os_phys_buf) < size) {
533 arc_buf_t *buf = arc_alloc_buf(spa, &os->os_phys_buf,
534 ARC_BUFC_METADATA, size);
535 memset(buf->b_data, 0, size);
536 memcpy(buf->b_data, os->os_phys_buf->b_data,
537 arc_buf_size(os->os_phys_buf));
538 arc_buf_destroy(os->os_phys_buf, &os->os_phys_buf);
539 os->os_phys_buf = buf;
540 }
541
542 os->os_phys = os->os_phys_buf->b_data;
543 os->os_flags = os->os_phys->os_flags;
544 } else {
545 int size = spa_version(spa) >= SPA_VERSION_USERSPACE ?
546 sizeof (objset_phys_t) : OBJSET_PHYS_SIZE_V1;
547 os->os_phys_buf = arc_alloc_buf(spa, &os->os_phys_buf,
548 ARC_BUFC_METADATA, size);
549 os->os_phys = os->os_phys_buf->b_data;
550 memset(os->os_phys, 0, size);
551 }
552 /*
553 * These properties will be filled in by the logic in zfs_get_zplprop()
554 * when they are queried for the first time.
555 */
556 os->os_version = OBJSET_PROP_UNINITIALIZED;
557 os->os_normalization = OBJSET_PROP_UNINITIALIZED;
558 os->os_utf8only = OBJSET_PROP_UNINITIALIZED;
559 os->os_casesensitivity = OBJSET_PROP_UNINITIALIZED;
560
561 /*
562 * Note: the changed_cb will be called once before the register
563 * func returns, thus changing the checksum/compression from the
564 * default (fletcher2/off). Snapshots don't need to know about
565 * checksum/compression/copies.
566 */
567 if (ds != NULL) {
568 os->os_encrypted = (ds->ds_dir->dd_crypto_obj != 0);
569
570 err = dsl_prop_register(ds,
571 zfs_prop_to_name(ZFS_PROP_PRIMARYCACHE),
572 primary_cache_changed_cb, os);
573 if (err == 0) {
574 err = dsl_prop_register(ds,
575 zfs_prop_to_name(ZFS_PROP_SECONDARYCACHE),
576 secondary_cache_changed_cb, os);
577 }
578 if (err == 0) {
579 err = dsl_prop_register(ds,
580 zfs_prop_to_name(ZFS_PROP_PREFETCH),
581 prefetch_changed_cb, os);
582 }
583 if (!ds->ds_is_snapshot) {
584 if (err == 0) {
585 err = dsl_prop_register(ds,
586 zfs_prop_to_name(ZFS_PROP_CHECKSUM),
587 checksum_changed_cb, os);
588 }
589 if (err == 0) {
590 err = dsl_prop_register(ds,
591 zfs_prop_to_name(ZFS_PROP_COMPRESSION),
592 compression_changed_cb, os);
593 }
594 if (err == 0) {
595 err = dsl_prop_register(ds,
596 zfs_prop_to_name(ZFS_PROP_COPIES),
597 copies_changed_cb, os);
598 }
599 if (err == 0) {
600 err = dsl_prop_register(ds,
601 zfs_prop_to_name(ZFS_PROP_DEDUP),
602 dedup_changed_cb, os);
603 }
604 if (err == 0) {
605 err = dsl_prop_register(ds,
606 zfs_prop_to_name(ZFS_PROP_LOGBIAS),
607 logbias_changed_cb, os);
608 }
609 if (err == 0) {
610 err = dsl_prop_register(ds,
611 zfs_prop_to_name(ZFS_PROP_SYNC),
612 sync_changed_cb, os);
613 }
614 if (err == 0) {
615 err = dsl_prop_register(ds,
616 zfs_prop_to_name(
617 ZFS_PROP_REDUNDANT_METADATA),
618 redundant_metadata_changed_cb, os);
619 }
620 if (err == 0) {
621 err = dsl_prop_register(ds,
622 zfs_prop_to_name(ZFS_PROP_RECORDSIZE),
623 recordsize_changed_cb, os);
624 }
625 if (err == 0) {
626 err = dsl_prop_register(ds,
627 zfs_prop_to_name(ZFS_PROP_DNODESIZE),
628 dnodesize_changed_cb, os);
629 }
630 if (err == 0) {
631 err = dsl_prop_register(ds,
632 zfs_prop_to_name(
633 ZFS_PROP_SPECIAL_SMALL_BLOCKS),
634 smallblk_changed_cb, os);
635 }
636 }
637 if (err != 0) {
638 arc_buf_destroy(os->os_phys_buf, &os->os_phys_buf);
639 kmem_free(os, sizeof (objset_t));
640 return (err);
641 }
642 } else {
643 /* It's the meta-objset. */
644 os->os_checksum = ZIO_CHECKSUM_FLETCHER_4;
645 os->os_compress = ZIO_COMPRESS_ON;
646 os->os_complevel = ZIO_COMPLEVEL_DEFAULT;
647 os->os_encrypted = B_FALSE;
648 os->os_copies = spa_max_replication(spa);
649 os->os_dedup_checksum = ZIO_CHECKSUM_OFF;
650 os->os_dedup_verify = B_FALSE;
651 os->os_logbias = ZFS_LOGBIAS_LATENCY;
652 os->os_sync = ZFS_SYNC_STANDARD;
653 os->os_primary_cache = ZFS_CACHE_ALL;
654 os->os_secondary_cache = ZFS_CACHE_ALL;
655 os->os_dnodesize = DNODE_MIN_SIZE;
656 os->os_prefetch = ZFS_PREFETCH_ALL;
657 }
658
659 if (ds == NULL || !ds->ds_is_snapshot)
660 os->os_zil_header = os->os_phys->os_zil_header;
661 os->os_zil = zil_alloc(os, &os->os_zil_header);
662
663 for (i = 0; i < TXG_SIZE; i++) {
664 multilist_create(&os->os_dirty_dnodes[i], sizeof (dnode_t),
665 offsetof(dnode_t, dn_dirty_link[i]),
666 dnode_multilist_index_func);
667 }
668 list_create(&os->os_dnodes, sizeof (dnode_t),
669 offsetof(dnode_t, dn_link));
670 list_create(&os->os_downgraded_dbufs, sizeof (dmu_buf_impl_t),
671 offsetof(dmu_buf_impl_t, db_link));
672
673 list_link_init(&os->os_evicting_node);
674
675 mutex_init(&os->os_lock, NULL, MUTEX_DEFAULT, NULL);
676 mutex_init(&os->os_userused_lock, NULL, MUTEX_DEFAULT, NULL);
677 mutex_init(&os->os_obj_lock, NULL, MUTEX_DEFAULT, NULL);
678 mutex_init(&os->os_user_ptr_lock, NULL, MUTEX_DEFAULT, NULL);
679 os->os_obj_next_percpu_len = boot_ncpus;
680 os->os_obj_next_percpu = kmem_zalloc(os->os_obj_next_percpu_len *
681 sizeof (os->os_obj_next_percpu[0]), KM_SLEEP);
682
683 dnode_special_open(os, &os->os_phys->os_meta_dnode,
684 DMU_META_DNODE_OBJECT, &os->os_meta_dnode);
685 if (OBJSET_BUF_HAS_USERUSED(os->os_phys_buf)) {
686 dnode_special_open(os, &os->os_phys->os_userused_dnode,
687 DMU_USERUSED_OBJECT, &os->os_userused_dnode);
688 dnode_special_open(os, &os->os_phys->os_groupused_dnode,
689 DMU_GROUPUSED_OBJECT, &os->os_groupused_dnode);
690 if (OBJSET_BUF_HAS_PROJECTUSED(os->os_phys_buf))
691 dnode_special_open(os,
692 &os->os_phys->os_projectused_dnode,
693 DMU_PROJECTUSED_OBJECT, &os->os_projectused_dnode);
694 }
695
696 mutex_init(&os->os_upgrade_lock, NULL, MUTEX_DEFAULT, NULL);
697
698 *osp = os;
699 return (0);
700 }
701
702 int
dmu_objset_from_ds(dsl_dataset_t * ds,objset_t ** osp)703 dmu_objset_from_ds(dsl_dataset_t *ds, objset_t **osp)
704 {
705 int err = 0;
706
707 /*
708 * We need the pool_config lock to manipulate the dsl_dataset_t.
709 * Even if the dataset is long-held, we need the pool_config lock
710 * to open the objset, as it needs to get properties.
711 */
712 ASSERT(dsl_pool_config_held(ds->ds_dir->dd_pool));
713
714 mutex_enter(&ds->ds_opening_lock);
715 if (ds->ds_objset == NULL) {
716 objset_t *os;
717 rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
718 err = dmu_objset_open_impl(dsl_dataset_get_spa(ds),
719 ds, dsl_dataset_get_blkptr(ds), &os);
720 rrw_exit(&ds->ds_bp_rwlock, FTAG);
721
722 if (err == 0) {
723 mutex_enter(&ds->ds_lock);
724 ASSERT(ds->ds_objset == NULL);
725 ds->ds_objset = os;
726 mutex_exit(&ds->ds_lock);
727 }
728 }
729 *osp = ds->ds_objset;
730 mutex_exit(&ds->ds_opening_lock);
731 return (err);
732 }
733
734 /*
735 * Holds the pool while the objset is held. Therefore only one objset
736 * can be held at a time.
737 */
738 int
dmu_objset_hold_flags(const char * name,boolean_t decrypt,const void * tag,objset_t ** osp)739 dmu_objset_hold_flags(const char *name, boolean_t decrypt, const void *tag,
740 objset_t **osp)
741 {
742 dsl_pool_t *dp;
743 dsl_dataset_t *ds;
744 int err;
745 ds_hold_flags_t flags;
746
747 flags = (decrypt) ? DS_HOLD_FLAG_DECRYPT : DS_HOLD_FLAG_NONE;
748 err = dsl_pool_hold(name, tag, &dp);
749 if (err != 0)
750 return (err);
751 err = dsl_dataset_hold_flags(dp, name, flags, tag, &ds);
752 if (err != 0) {
753 dsl_pool_rele(dp, tag);
754 return (err);
755 }
756
757 err = dmu_objset_from_ds(ds, osp);
758 if (err != 0) {
759 dsl_dataset_rele(ds, tag);
760 dsl_pool_rele(dp, tag);
761 }
762
763 return (err);
764 }
765
766 int
dmu_objset_hold(const char * name,const void * tag,objset_t ** osp)767 dmu_objset_hold(const char *name, const void *tag, objset_t **osp)
768 {
769 return (dmu_objset_hold_flags(name, B_FALSE, tag, osp));
770 }
771
772 static int
dmu_objset_own_impl(dsl_dataset_t * ds,dmu_objset_type_t type,boolean_t readonly,boolean_t decrypt,const void * tag,objset_t ** osp)773 dmu_objset_own_impl(dsl_dataset_t *ds, dmu_objset_type_t type,
774 boolean_t readonly, boolean_t decrypt, const void *tag, objset_t **osp)
775 {
776 (void) tag;
777
778 int err = dmu_objset_from_ds(ds, osp);
779 if (err != 0) {
780 return (err);
781 } else if (type != DMU_OST_ANY && type != (*osp)->os_phys->os_type) {
782 return (SET_ERROR(EINVAL));
783 } else if (!readonly && dsl_dataset_is_snapshot(ds)) {
784 return (SET_ERROR(EROFS));
785 } else if (!readonly && decrypt &&
786 dsl_dir_incompatible_encryption_version(ds->ds_dir)) {
787 return (SET_ERROR(EROFS));
788 }
789
790 /* if we are decrypting, we can now check MACs in os->os_phys_buf */
791 if (decrypt && arc_is_unauthenticated((*osp)->os_phys_buf)) {
792 zbookmark_phys_t zb;
793
794 SET_BOOKMARK(&zb, ds->ds_object, ZB_ROOT_OBJECT,
795 ZB_ROOT_LEVEL, ZB_ROOT_BLKID);
796 err = arc_untransform((*osp)->os_phys_buf, (*osp)->os_spa,
797 &zb, B_FALSE);
798 if (err != 0)
799 return (err);
800
801 ASSERT0(arc_is_unauthenticated((*osp)->os_phys_buf));
802 }
803
804 return (0);
805 }
806
807 /*
808 * dsl_pool must not be held when this is called.
809 * Upon successful return, there will be a longhold on the dataset,
810 * and the dsl_pool will not be held.
811 */
812 int
dmu_objset_own(const char * name,dmu_objset_type_t type,boolean_t readonly,boolean_t decrypt,const void * tag,objset_t ** osp)813 dmu_objset_own(const char *name, dmu_objset_type_t type,
814 boolean_t readonly, boolean_t decrypt, const void *tag, objset_t **osp)
815 {
816 dsl_pool_t *dp;
817 dsl_dataset_t *ds;
818 int err;
819 ds_hold_flags_t flags;
820
821 flags = (decrypt) ? DS_HOLD_FLAG_DECRYPT : DS_HOLD_FLAG_NONE;
822 err = dsl_pool_hold(name, FTAG, &dp);
823 if (err != 0)
824 return (err);
825 err = dsl_dataset_own(dp, name, flags, tag, &ds);
826 if (err != 0) {
827 dsl_pool_rele(dp, FTAG);
828 return (err);
829 }
830 err = dmu_objset_own_impl(ds, type, readonly, decrypt, tag, osp);
831 if (err != 0) {
832 dsl_dataset_disown(ds, flags, tag);
833 dsl_pool_rele(dp, FTAG);
834 return (err);
835 }
836
837 /*
838 * User accounting requires the dataset to be decrypted and rw.
839 * We also don't begin user accounting during claiming to help
840 * speed up pool import times and to keep this txg reserved
841 * completely for recovery work.
842 */
843 if (!readonly && !dp->dp_spa->spa_claiming &&
844 (ds->ds_dir->dd_crypto_obj == 0 || decrypt)) {
845 if (dmu_objset_userobjspace_upgradable(*osp) ||
846 dmu_objset_projectquota_upgradable(*osp)) {
847 dmu_objset_id_quota_upgrade(*osp);
848 } else if (dmu_objset_userused_enabled(*osp)) {
849 dmu_objset_userspace_upgrade(*osp);
850 }
851 }
852
853 dsl_pool_rele(dp, FTAG);
854 return (0);
855 }
856
857 int
dmu_objset_own_obj(dsl_pool_t * dp,uint64_t obj,dmu_objset_type_t type,boolean_t readonly,boolean_t decrypt,const void * tag,objset_t ** osp)858 dmu_objset_own_obj(dsl_pool_t *dp, uint64_t obj, dmu_objset_type_t type,
859 boolean_t readonly, boolean_t decrypt, const void *tag, objset_t **osp)
860 {
861 dsl_dataset_t *ds;
862 int err;
863 ds_hold_flags_t flags;
864
865 flags = (decrypt) ? DS_HOLD_FLAG_DECRYPT : DS_HOLD_FLAG_NONE;
866 err = dsl_dataset_own_obj(dp, obj, flags, tag, &ds);
867 if (err != 0)
868 return (err);
869
870 err = dmu_objset_own_impl(ds, type, readonly, decrypt, tag, osp);
871 if (err != 0) {
872 dsl_dataset_disown(ds, flags, tag);
873 return (err);
874 }
875
876 return (0);
877 }
878
879 void
dmu_objset_rele_flags(objset_t * os,boolean_t decrypt,const void * tag)880 dmu_objset_rele_flags(objset_t *os, boolean_t decrypt, const void *tag)
881 {
882 ds_hold_flags_t flags;
883 dsl_pool_t *dp = dmu_objset_pool(os);
884
885 flags = (decrypt) ? DS_HOLD_FLAG_DECRYPT : DS_HOLD_FLAG_NONE;
886 dsl_dataset_rele_flags(os->os_dsl_dataset, flags, tag);
887 dsl_pool_rele(dp, tag);
888 }
889
890 void
dmu_objset_rele(objset_t * os,const void * tag)891 dmu_objset_rele(objset_t *os, const void *tag)
892 {
893 dmu_objset_rele_flags(os, B_FALSE, tag);
894 }
895
896 /*
897 * When we are called, os MUST refer to an objset associated with a dataset
898 * that is owned by 'tag'; that is, is held and long held by 'tag' and ds_owner
899 * == tag. We will then release and reacquire ownership of the dataset while
900 * holding the pool config_rwlock to avoid intervening namespace or ownership
901 * changes may occur.
902 *
903 * This exists solely to accommodate zfs_ioc_userspace_upgrade()'s desire to
904 * release the hold on its dataset and acquire a new one on the dataset of the
905 * same name so that it can be partially torn down and reconstructed.
906 */
907 void
dmu_objset_refresh_ownership(dsl_dataset_t * ds,dsl_dataset_t ** newds,boolean_t decrypt,const void * tag)908 dmu_objset_refresh_ownership(dsl_dataset_t *ds, dsl_dataset_t **newds,
909 boolean_t decrypt, const void *tag)
910 {
911 dsl_pool_t *dp;
912 char name[ZFS_MAX_DATASET_NAME_LEN];
913 ds_hold_flags_t flags;
914
915 flags = (decrypt) ? DS_HOLD_FLAG_DECRYPT : DS_HOLD_FLAG_NONE;
916 VERIFY3P(ds, !=, NULL);
917 VERIFY3P(ds->ds_owner, ==, tag);
918 VERIFY(dsl_dataset_long_held(ds));
919
920 dsl_dataset_name(ds, name);
921 dp = ds->ds_dir->dd_pool;
922 dsl_pool_config_enter(dp, FTAG);
923 dsl_dataset_disown(ds, flags, tag);
924 VERIFY0(dsl_dataset_own(dp, name, flags, tag, newds));
925 dsl_pool_config_exit(dp, FTAG);
926 }
927
928 void
dmu_objset_disown(objset_t * os,boolean_t decrypt,const void * tag)929 dmu_objset_disown(objset_t *os, boolean_t decrypt, const void *tag)
930 {
931 ds_hold_flags_t flags;
932
933 flags = (decrypt) ? DS_HOLD_FLAG_DECRYPT : DS_HOLD_FLAG_NONE;
934 /*
935 * Stop upgrading thread
936 */
937 dmu_objset_upgrade_stop(os);
938 dsl_dataset_disown(os->os_dsl_dataset, flags, tag);
939 }
940
941 void
dmu_objset_evict_dbufs(objset_t * os)942 dmu_objset_evict_dbufs(objset_t *os)
943 {
944 dnode_t *dn_marker;
945 dnode_t *dn;
946
947 dn_marker = kmem_alloc(sizeof (dnode_t), KM_SLEEP);
948
949 mutex_enter(&os->os_lock);
950 dn = list_head(&os->os_dnodes);
951 while (dn != NULL) {
952 /*
953 * Skip dnodes without holds. We have to do this dance
954 * because dnode_add_ref() only works if there is already a
955 * hold. If the dnode has no holds, then it has no dbufs.
956 */
957 if (dnode_add_ref(dn, FTAG)) {
958 list_insert_after(&os->os_dnodes, dn, dn_marker);
959 mutex_exit(&os->os_lock);
960
961 dnode_evict_dbufs(dn);
962 dnode_rele(dn, FTAG);
963
964 mutex_enter(&os->os_lock);
965 dn = list_next(&os->os_dnodes, dn_marker);
966 list_remove(&os->os_dnodes, dn_marker);
967 } else {
968 dn = list_next(&os->os_dnodes, dn);
969 }
970 }
971 mutex_exit(&os->os_lock);
972
973 kmem_free(dn_marker, sizeof (dnode_t));
974
975 if (DMU_USERUSED_DNODE(os) != NULL) {
976 if (DMU_PROJECTUSED_DNODE(os) != NULL)
977 dnode_evict_dbufs(DMU_PROJECTUSED_DNODE(os));
978 dnode_evict_dbufs(DMU_GROUPUSED_DNODE(os));
979 dnode_evict_dbufs(DMU_USERUSED_DNODE(os));
980 }
981 dnode_evict_dbufs(DMU_META_DNODE(os));
982 }
983
984 /*
985 * Objset eviction processing is split into into two pieces.
986 * The first marks the objset as evicting, evicts any dbufs that
987 * have a refcount of zero, and then queues up the objset for the
988 * second phase of eviction. Once os->os_dnodes has been cleared by
989 * dnode_buf_pageout()->dnode_destroy(), the second phase is executed.
990 * The second phase closes the special dnodes, dequeues the objset from
991 * the list of those undergoing eviction, and finally frees the objset.
992 *
993 * NOTE: Due to asynchronous eviction processing (invocation of
994 * dnode_buf_pageout()), it is possible for the meta dnode for the
995 * objset to have no holds even though os->os_dnodes is not empty.
996 */
997 void
dmu_objset_evict(objset_t * os)998 dmu_objset_evict(objset_t *os)
999 {
1000 dsl_dataset_t *ds = os->os_dsl_dataset;
1001
1002 for (int t = 0; t < TXG_SIZE; t++)
1003 ASSERT(!dmu_objset_is_dirty(os, t));
1004
1005 if (ds)
1006 dsl_prop_unregister_all(ds, os);
1007
1008 if (os->os_sa)
1009 sa_tear_down(os);
1010
1011 dmu_objset_evict_dbufs(os);
1012
1013 mutex_enter(&os->os_lock);
1014 spa_evicting_os_register(os->os_spa, os);
1015 if (list_is_empty(&os->os_dnodes)) {
1016 mutex_exit(&os->os_lock);
1017 dmu_objset_evict_done(os);
1018 } else {
1019 mutex_exit(&os->os_lock);
1020 }
1021
1022
1023 }
1024
1025 void
dmu_objset_evict_done(objset_t * os)1026 dmu_objset_evict_done(objset_t *os)
1027 {
1028 ASSERT3P(list_head(&os->os_dnodes), ==, NULL);
1029
1030 dnode_special_close(&os->os_meta_dnode);
1031 if (DMU_USERUSED_DNODE(os)) {
1032 if (DMU_PROJECTUSED_DNODE(os))
1033 dnode_special_close(&os->os_projectused_dnode);
1034 dnode_special_close(&os->os_userused_dnode);
1035 dnode_special_close(&os->os_groupused_dnode);
1036 }
1037 zil_free(os->os_zil);
1038
1039 arc_buf_destroy(os->os_phys_buf, &os->os_phys_buf);
1040
1041 /*
1042 * This is a barrier to prevent the objset from going away in
1043 * dnode_move() until we can safely ensure that the objset is still in
1044 * use. We consider the objset valid before the barrier and invalid
1045 * after the barrier.
1046 */
1047 rw_enter(&os_lock, RW_READER);
1048 rw_exit(&os_lock);
1049
1050 kmem_free(os->os_obj_next_percpu,
1051 os->os_obj_next_percpu_len * sizeof (os->os_obj_next_percpu[0]));
1052
1053 mutex_destroy(&os->os_lock);
1054 mutex_destroy(&os->os_userused_lock);
1055 mutex_destroy(&os->os_obj_lock);
1056 mutex_destroy(&os->os_user_ptr_lock);
1057 mutex_destroy(&os->os_upgrade_lock);
1058 for (int i = 0; i < TXG_SIZE; i++)
1059 multilist_destroy(&os->os_dirty_dnodes[i]);
1060 spa_evicting_os_deregister(os->os_spa, os);
1061 kmem_free(os, sizeof (objset_t));
1062 }
1063
1064 inode_timespec_t
dmu_objset_snap_cmtime(objset_t * os)1065 dmu_objset_snap_cmtime(objset_t *os)
1066 {
1067 return (dsl_dir_snap_cmtime(os->os_dsl_dataset->ds_dir));
1068 }
1069
1070 objset_t *
dmu_objset_create_impl_dnstats(spa_t * spa,dsl_dataset_t * ds,blkptr_t * bp,dmu_objset_type_t type,int levels,int blksz,int ibs,dmu_tx_t * tx)1071 dmu_objset_create_impl_dnstats(spa_t *spa, dsl_dataset_t *ds, blkptr_t *bp,
1072 dmu_objset_type_t type, int levels, int blksz, int ibs, dmu_tx_t *tx)
1073 {
1074 objset_t *os;
1075 dnode_t *mdn;
1076
1077 ASSERT(dmu_tx_is_syncing(tx));
1078
1079 if (blksz == 0)
1080 blksz = DNODE_BLOCK_SIZE;
1081 if (ibs == 0)
1082 ibs = DN_MAX_INDBLKSHIFT;
1083
1084 if (ds != NULL)
1085 VERIFY0(dmu_objset_from_ds(ds, &os));
1086 else
1087 VERIFY0(dmu_objset_open_impl(spa, NULL, bp, &os));
1088
1089 mdn = DMU_META_DNODE(os);
1090
1091 dnode_allocate(mdn, DMU_OT_DNODE, blksz, ibs, DMU_OT_NONE, 0,
1092 DNODE_MIN_SLOTS, tx);
1093
1094 /*
1095 * We don't want to have to increase the meta-dnode's nlevels
1096 * later, because then we could do it in quiescing context while
1097 * we are also accessing it in open context.
1098 *
1099 * This precaution is not necessary for the MOS (ds == NULL),
1100 * because the MOS is only updated in syncing context.
1101 * This is most fortunate: the MOS is the only objset that
1102 * needs to be synced multiple times as spa_sync() iterates
1103 * to convergence, so minimizing its dn_nlevels matters.
1104 */
1105 if (ds != NULL) {
1106 if (levels == 0) {
1107 levels = 1;
1108
1109 /*
1110 * Determine the number of levels necessary for the
1111 * meta-dnode to contain DN_MAX_OBJECT dnodes. Note
1112 * that in order to ensure that we do not overflow
1113 * 64 bits, there has to be a nlevels that gives us a
1114 * number of blocks > DN_MAX_OBJECT but < 2^64.
1115 * Therefore, (mdn->dn_indblkshift - SPA_BLKPTRSHIFT)
1116 * (10) must be less than (64 - log2(DN_MAX_OBJECT))
1117 * (16).
1118 */
1119 while ((uint64_t)mdn->dn_nblkptr <<
1120 (mdn->dn_datablkshift - DNODE_SHIFT + (levels - 1) *
1121 (mdn->dn_indblkshift - SPA_BLKPTRSHIFT)) <
1122 DN_MAX_OBJECT)
1123 levels++;
1124 }
1125
1126 mdn->dn_next_nlevels[tx->tx_txg & TXG_MASK] =
1127 mdn->dn_nlevels = levels;
1128 }
1129
1130 ASSERT(type != DMU_OST_NONE);
1131 ASSERT(type != DMU_OST_ANY);
1132 ASSERT(type < DMU_OST_NUMTYPES);
1133 os->os_phys->os_type = type;
1134
1135 /*
1136 * Enable user accounting if it is enabled and this is not an
1137 * encrypted receive.
1138 */
1139 if (dmu_objset_userused_enabled(os) &&
1140 (!os->os_encrypted || !dmu_objset_is_receiving(os))) {
1141 os->os_phys->os_flags |= OBJSET_FLAG_USERACCOUNTING_COMPLETE;
1142 if (dmu_objset_userobjused_enabled(os)) {
1143 ASSERT3P(ds, !=, NULL);
1144 ds->ds_feature_activation[
1145 SPA_FEATURE_USEROBJ_ACCOUNTING] = (void *)B_TRUE;
1146 os->os_phys->os_flags |=
1147 OBJSET_FLAG_USEROBJACCOUNTING_COMPLETE;
1148 }
1149 if (dmu_objset_projectquota_enabled(os)) {
1150 ASSERT3P(ds, !=, NULL);
1151 ds->ds_feature_activation[
1152 SPA_FEATURE_PROJECT_QUOTA] = (void *)B_TRUE;
1153 os->os_phys->os_flags |=
1154 OBJSET_FLAG_PROJECTQUOTA_COMPLETE;
1155 }
1156 os->os_flags = os->os_phys->os_flags;
1157 }
1158
1159 dsl_dataset_dirty(ds, tx);
1160
1161 return (os);
1162 }
1163
1164 /* called from dsl for meta-objset */
1165 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)1166 dmu_objset_create_impl(spa_t *spa, dsl_dataset_t *ds, blkptr_t *bp,
1167 dmu_objset_type_t type, dmu_tx_t *tx)
1168 {
1169 return (dmu_objset_create_impl_dnstats(spa, ds, bp, type, 0, 0, 0, tx));
1170 }
1171
1172 typedef struct dmu_objset_create_arg {
1173 const char *doca_name;
1174 cred_t *doca_cred;
1175 proc_t *doca_proc;
1176 void (*doca_userfunc)(objset_t *os, void *arg,
1177 cred_t *cr, dmu_tx_t *tx);
1178 void *doca_userarg;
1179 dmu_objset_type_t doca_type;
1180 uint64_t doca_flags;
1181 dsl_crypto_params_t *doca_dcp;
1182 } dmu_objset_create_arg_t;
1183
1184 static int
dmu_objset_create_check(void * arg,dmu_tx_t * tx)1185 dmu_objset_create_check(void *arg, dmu_tx_t *tx)
1186 {
1187 dmu_objset_create_arg_t *doca = arg;
1188 dsl_pool_t *dp = dmu_tx_pool(tx);
1189 dsl_dir_t *pdd;
1190 dsl_dataset_t *parentds;
1191 objset_t *parentos;
1192 const char *tail;
1193 int error;
1194
1195 if (strchr(doca->doca_name, '@') != NULL)
1196 return (SET_ERROR(EINVAL));
1197
1198 if (strlen(doca->doca_name) >= ZFS_MAX_DATASET_NAME_LEN)
1199 return (SET_ERROR(ENAMETOOLONG));
1200
1201 if (dataset_nestcheck(doca->doca_name) != 0)
1202 return (SET_ERROR(ENAMETOOLONG));
1203
1204 error = dsl_dir_hold(dp, doca->doca_name, FTAG, &pdd, &tail);
1205 if (error != 0)
1206 return (error);
1207 if (tail == NULL) {
1208 dsl_dir_rele(pdd, FTAG);
1209 return (SET_ERROR(EEXIST));
1210 }
1211
1212 error = dmu_objset_create_crypt_check(pdd, doca->doca_dcp, NULL);
1213 if (error != 0) {
1214 dsl_dir_rele(pdd, FTAG);
1215 return (error);
1216 }
1217
1218 error = dsl_fs_ss_limit_check(pdd, 1, ZFS_PROP_FILESYSTEM_LIMIT, NULL,
1219 doca->doca_cred, doca->doca_proc);
1220 if (error != 0) {
1221 dsl_dir_rele(pdd, FTAG);
1222 return (error);
1223 }
1224
1225 /* can't create below anything but filesystems (eg. no ZVOLs) */
1226 error = dsl_dataset_hold_obj(pdd->dd_pool,
1227 dsl_dir_phys(pdd)->dd_head_dataset_obj, FTAG, &parentds);
1228 if (error != 0) {
1229 dsl_dir_rele(pdd, FTAG);
1230 return (error);
1231 }
1232 error = dmu_objset_from_ds(parentds, &parentos);
1233 if (error != 0) {
1234 dsl_dataset_rele(parentds, FTAG);
1235 dsl_dir_rele(pdd, FTAG);
1236 return (error);
1237 }
1238 if (dmu_objset_type(parentos) != DMU_OST_ZFS) {
1239 dsl_dataset_rele(parentds, FTAG);
1240 dsl_dir_rele(pdd, FTAG);
1241 return (SET_ERROR(ZFS_ERR_WRONG_PARENT));
1242 }
1243 dsl_dataset_rele(parentds, FTAG);
1244 dsl_dir_rele(pdd, FTAG);
1245
1246 return (error);
1247 }
1248
1249 static void
dmu_objset_create_sync(void * arg,dmu_tx_t * tx)1250 dmu_objset_create_sync(void *arg, dmu_tx_t *tx)
1251 {
1252 dmu_objset_create_arg_t *doca = arg;
1253 dsl_pool_t *dp = dmu_tx_pool(tx);
1254 spa_t *spa = dp->dp_spa;
1255 dsl_dir_t *pdd;
1256 const char *tail;
1257 dsl_dataset_t *ds;
1258 uint64_t obj;
1259 blkptr_t *bp;
1260 objset_t *os;
1261 zio_t *rzio;
1262
1263 VERIFY0(dsl_dir_hold(dp, doca->doca_name, FTAG, &pdd, &tail));
1264
1265 obj = dsl_dataset_create_sync(pdd, tail, NULL, doca->doca_flags,
1266 doca->doca_cred, doca->doca_dcp, tx);
1267
1268 VERIFY0(dsl_dataset_hold_obj_flags(pdd->dd_pool, obj,
1269 DS_HOLD_FLAG_DECRYPT, FTAG, &ds));
1270 rrw_enter(&ds->ds_bp_rwlock, RW_READER, FTAG);
1271 bp = dsl_dataset_get_blkptr(ds);
1272 os = dmu_objset_create_impl(spa, ds, bp, doca->doca_type, tx);
1273 rrw_exit(&ds->ds_bp_rwlock, FTAG);
1274
1275 if (doca->doca_userfunc != NULL) {
1276 doca->doca_userfunc(os, doca->doca_userarg,
1277 doca->doca_cred, tx);
1278 }
1279
1280 /*
1281 * The doca_userfunc() may write out some data that needs to be
1282 * encrypted if the dataset is encrypted (specifically the root
1283 * directory). This data must be written out before the encryption
1284 * key mapping is removed by dsl_dataset_rele_flags(). Force the
1285 * I/O to occur immediately by invoking the relevant sections of
1286 * dsl_pool_sync().
1287 */
1288 if (os->os_encrypted) {
1289 dsl_dataset_t *tmpds = NULL;
1290 boolean_t need_sync_done = B_FALSE;
1291
1292 mutex_enter(&ds->ds_lock);
1293 ds->ds_owner = FTAG;
1294 mutex_exit(&ds->ds_lock);
1295
1296 rzio = zio_root(spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
1297 tmpds = txg_list_remove_this(&dp->dp_dirty_datasets, ds,
1298 tx->tx_txg);
1299 if (tmpds != NULL) {
1300 dsl_dataset_sync(ds, rzio, tx);
1301 need_sync_done = B_TRUE;
1302 }
1303 VERIFY0(zio_wait(rzio));
1304
1305 dmu_objset_sync_done(os, tx);
1306 taskq_wait(dp->dp_sync_taskq);
1307 if (txg_list_member(&dp->dp_dirty_datasets, ds, tx->tx_txg)) {
1308 ASSERT3P(ds->ds_key_mapping, !=, NULL);
1309 key_mapping_rele(spa, ds->ds_key_mapping, ds);
1310 }
1311
1312 rzio = zio_root(spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
1313 tmpds = txg_list_remove_this(&dp->dp_dirty_datasets, ds,
1314 tx->tx_txg);
1315 if (tmpds != NULL) {
1316 dmu_buf_rele(ds->ds_dbuf, ds);
1317 dsl_dataset_sync(ds, rzio, tx);
1318 }
1319 VERIFY0(zio_wait(rzio));
1320
1321 if (need_sync_done) {
1322 ASSERT3P(ds->ds_key_mapping, !=, NULL);
1323 key_mapping_rele(spa, ds->ds_key_mapping, ds);
1324 dsl_dataset_sync_done(ds, tx);
1325 dmu_buf_rele(ds->ds_dbuf, ds);
1326 }
1327
1328 mutex_enter(&ds->ds_lock);
1329 ds->ds_owner = NULL;
1330 mutex_exit(&ds->ds_lock);
1331 }
1332
1333 spa_history_log_internal_ds(ds, "create", tx, " ");
1334
1335 dsl_dataset_rele_flags(ds, DS_HOLD_FLAG_DECRYPT, FTAG);
1336 dsl_dir_rele(pdd, FTAG);
1337 }
1338
1339 int
dmu_objset_create(const char * name,dmu_objset_type_t type,uint64_t flags,dsl_crypto_params_t * dcp,dmu_objset_create_sync_func_t func,void * arg)1340 dmu_objset_create(const char *name, dmu_objset_type_t type, uint64_t flags,
1341 dsl_crypto_params_t *dcp, dmu_objset_create_sync_func_t func, void *arg)
1342 {
1343 dmu_objset_create_arg_t doca;
1344 dsl_crypto_params_t tmp_dcp = { 0 };
1345
1346 doca.doca_name = name;
1347 doca.doca_cred = CRED();
1348 doca.doca_proc = curproc;
1349 doca.doca_flags = flags;
1350 doca.doca_userfunc = func;
1351 doca.doca_userarg = arg;
1352 doca.doca_type = type;
1353
1354 /*
1355 * Some callers (mostly for testing) do not provide a dcp on their
1356 * own but various code inside the sync task will require it to be
1357 * allocated. Rather than adding NULL checks throughout this code
1358 * or adding dummy dcp's to all of the callers we simply create a
1359 * dummy one here and use that. This zero dcp will have the same
1360 * effect as asking for inheritance of all encryption params.
1361 */
1362 doca.doca_dcp = (dcp != NULL) ? dcp : &tmp_dcp;
1363
1364 int rv = dsl_sync_task(name,
1365 dmu_objset_create_check, dmu_objset_create_sync, &doca,
1366 6, ZFS_SPACE_CHECK_NORMAL);
1367
1368 if (rv == 0)
1369 zvol_create_minor(name);
1370 return (rv);
1371 }
1372
1373 typedef struct dmu_objset_clone_arg {
1374 const char *doca_clone;
1375 const char *doca_origin;
1376 cred_t *doca_cred;
1377 proc_t *doca_proc;
1378 } dmu_objset_clone_arg_t;
1379
1380 static int
dmu_objset_clone_check(void * arg,dmu_tx_t * tx)1381 dmu_objset_clone_check(void *arg, dmu_tx_t *tx)
1382 {
1383 dmu_objset_clone_arg_t *doca = arg;
1384 dsl_dir_t *pdd;
1385 const char *tail;
1386 int error;
1387 dsl_dataset_t *origin;
1388 dsl_pool_t *dp = dmu_tx_pool(tx);
1389
1390 if (strchr(doca->doca_clone, '@') != NULL)
1391 return (SET_ERROR(EINVAL));
1392
1393 if (strlen(doca->doca_clone) >= ZFS_MAX_DATASET_NAME_LEN)
1394 return (SET_ERROR(ENAMETOOLONG));
1395
1396 error = dsl_dir_hold(dp, doca->doca_clone, FTAG, &pdd, &tail);
1397 if (error != 0)
1398 return (error);
1399 if (tail == NULL) {
1400 dsl_dir_rele(pdd, FTAG);
1401 return (SET_ERROR(EEXIST));
1402 }
1403
1404 error = dsl_fs_ss_limit_check(pdd, 1, ZFS_PROP_FILESYSTEM_LIMIT, NULL,
1405 doca->doca_cred, doca->doca_proc);
1406 if (error != 0) {
1407 dsl_dir_rele(pdd, FTAG);
1408 return (SET_ERROR(EDQUOT));
1409 }
1410
1411 error = dsl_dataset_hold(dp, doca->doca_origin, FTAG, &origin);
1412 if (error != 0) {
1413 dsl_dir_rele(pdd, FTAG);
1414 return (error);
1415 }
1416
1417 /* You can only clone snapshots, not the head datasets. */
1418 if (!origin->ds_is_snapshot) {
1419 dsl_dataset_rele(origin, FTAG);
1420 dsl_dir_rele(pdd, FTAG);
1421 return (SET_ERROR(EINVAL));
1422 }
1423
1424 dsl_dataset_rele(origin, FTAG);
1425 dsl_dir_rele(pdd, FTAG);
1426
1427 return (0);
1428 }
1429
1430 static void
dmu_objset_clone_sync(void * arg,dmu_tx_t * tx)1431 dmu_objset_clone_sync(void *arg, dmu_tx_t *tx)
1432 {
1433 dmu_objset_clone_arg_t *doca = arg;
1434 dsl_pool_t *dp = dmu_tx_pool(tx);
1435 dsl_dir_t *pdd;
1436 const char *tail;
1437 dsl_dataset_t *origin, *ds;
1438 uint64_t obj;
1439 char namebuf[ZFS_MAX_DATASET_NAME_LEN];
1440
1441 VERIFY0(dsl_dir_hold(dp, doca->doca_clone, FTAG, &pdd, &tail));
1442 VERIFY0(dsl_dataset_hold(dp, doca->doca_origin, FTAG, &origin));
1443
1444 obj = dsl_dataset_create_sync(pdd, tail, origin, 0,
1445 doca->doca_cred, NULL, tx);
1446
1447 VERIFY0(dsl_dataset_hold_obj(pdd->dd_pool, obj, FTAG, &ds));
1448 dsl_dataset_name(origin, namebuf);
1449 spa_history_log_internal_ds(ds, "clone", tx,
1450 "origin=%s (%llu)", namebuf, (u_longlong_t)origin->ds_object);
1451 dsl_dataset_rele(ds, FTAG);
1452 dsl_dataset_rele(origin, FTAG);
1453 dsl_dir_rele(pdd, FTAG);
1454 }
1455
1456 int
dmu_objset_clone(const char * clone,const char * origin)1457 dmu_objset_clone(const char *clone, const char *origin)
1458 {
1459 dmu_objset_clone_arg_t doca;
1460
1461 doca.doca_clone = clone;
1462 doca.doca_origin = origin;
1463 doca.doca_cred = CRED();
1464 doca.doca_proc = curproc;
1465
1466 int rv = dsl_sync_task(clone,
1467 dmu_objset_clone_check, dmu_objset_clone_sync, &doca,
1468 6, ZFS_SPACE_CHECK_NORMAL);
1469
1470 if (rv == 0)
1471 zvol_create_minor(clone);
1472
1473 return (rv);
1474 }
1475
1476 int
dmu_objset_snapshot_one(const char * fsname,const char * snapname)1477 dmu_objset_snapshot_one(const char *fsname, const char *snapname)
1478 {
1479 int err;
1480 char *longsnap = kmem_asprintf("%s@%s", fsname, snapname);
1481 nvlist_t *snaps = fnvlist_alloc();
1482
1483 fnvlist_add_boolean(snaps, longsnap);
1484 kmem_strfree(longsnap);
1485 err = dsl_dataset_snapshot(snaps, NULL, NULL);
1486 fnvlist_free(snaps);
1487 return (err);
1488 }
1489
1490 static void
dmu_objset_upgrade_task_cb(void * data)1491 dmu_objset_upgrade_task_cb(void *data)
1492 {
1493 objset_t *os = data;
1494
1495 mutex_enter(&os->os_upgrade_lock);
1496 os->os_upgrade_status = EINTR;
1497 if (!os->os_upgrade_exit) {
1498 int status;
1499
1500 mutex_exit(&os->os_upgrade_lock);
1501
1502 status = os->os_upgrade_cb(os);
1503
1504 mutex_enter(&os->os_upgrade_lock);
1505
1506 os->os_upgrade_status = status;
1507 }
1508 os->os_upgrade_exit = B_TRUE;
1509 os->os_upgrade_id = 0;
1510 mutex_exit(&os->os_upgrade_lock);
1511 dsl_dataset_long_rele(dmu_objset_ds(os), upgrade_tag);
1512 }
1513
1514 static void
dmu_objset_upgrade(objset_t * os,dmu_objset_upgrade_cb_t cb)1515 dmu_objset_upgrade(objset_t *os, dmu_objset_upgrade_cb_t cb)
1516 {
1517 if (os->os_upgrade_id != 0)
1518 return;
1519
1520 ASSERT(dsl_pool_config_held(dmu_objset_pool(os)));
1521 dsl_dataset_long_hold(dmu_objset_ds(os), upgrade_tag);
1522
1523 mutex_enter(&os->os_upgrade_lock);
1524 if (os->os_upgrade_id == 0 && os->os_upgrade_status == 0) {
1525 os->os_upgrade_exit = B_FALSE;
1526 os->os_upgrade_cb = cb;
1527 os->os_upgrade_id = taskq_dispatch(
1528 os->os_spa->spa_upgrade_taskq,
1529 dmu_objset_upgrade_task_cb, os, TQ_SLEEP);
1530 if (os->os_upgrade_id == TASKQID_INVALID) {
1531 dsl_dataset_long_rele(dmu_objset_ds(os), upgrade_tag);
1532 os->os_upgrade_status = ENOMEM;
1533 }
1534 } else {
1535 dsl_dataset_long_rele(dmu_objset_ds(os), upgrade_tag);
1536 }
1537 mutex_exit(&os->os_upgrade_lock);
1538 }
1539
1540 static void
dmu_objset_upgrade_stop(objset_t * os)1541 dmu_objset_upgrade_stop(objset_t *os)
1542 {
1543 mutex_enter(&os->os_upgrade_lock);
1544 os->os_upgrade_exit = B_TRUE;
1545 if (os->os_upgrade_id != 0) {
1546 taskqid_t id = os->os_upgrade_id;
1547
1548 os->os_upgrade_id = 0;
1549 mutex_exit(&os->os_upgrade_lock);
1550
1551 if ((taskq_cancel_id(os->os_spa->spa_upgrade_taskq, id)) == 0) {
1552 dsl_dataset_long_rele(dmu_objset_ds(os), upgrade_tag);
1553 }
1554 txg_wait_synced(os->os_spa->spa_dsl_pool, 0);
1555 } else {
1556 mutex_exit(&os->os_upgrade_lock);
1557 }
1558 }
1559
1560 static void
dmu_objset_sync_dnodes(multilist_sublist_t * list,dmu_tx_t * tx)1561 dmu_objset_sync_dnodes(multilist_sublist_t *list, dmu_tx_t *tx)
1562 {
1563 dnode_t *dn;
1564
1565 while ((dn = multilist_sublist_head(list)) != NULL) {
1566 ASSERT(dn->dn_object != DMU_META_DNODE_OBJECT);
1567 ASSERT(dn->dn_dbuf->db_data_pending);
1568 /*
1569 * Initialize dn_zio outside dnode_sync() because the
1570 * meta-dnode needs to set it outside dnode_sync().
1571 */
1572 dn->dn_zio = dn->dn_dbuf->db_data_pending->dr_zio;
1573 ASSERT(dn->dn_zio);
1574
1575 ASSERT3U(dn->dn_nlevels, <=, DN_MAX_LEVELS);
1576 multilist_sublist_remove(list, dn);
1577
1578 /*
1579 * See the comment above dnode_rele_task() for an explanation
1580 * of why this dnode hold is always needed (even when not
1581 * doing user accounting).
1582 */
1583 multilist_t *newlist = &dn->dn_objset->os_synced_dnodes;
1584 (void) dnode_add_ref(dn, newlist);
1585 multilist_insert(newlist, dn);
1586
1587 dnode_sync(dn, tx);
1588 }
1589 }
1590
1591 static void
dmu_objset_write_ready(zio_t * zio,arc_buf_t * abuf,void * arg)1592 dmu_objset_write_ready(zio_t *zio, arc_buf_t *abuf, void *arg)
1593 {
1594 (void) abuf;
1595 blkptr_t *bp = zio->io_bp;
1596 objset_t *os = arg;
1597 dnode_phys_t *dnp = &os->os_phys->os_meta_dnode;
1598 uint64_t fill = 0;
1599
1600 ASSERT(!BP_IS_EMBEDDED(bp));
1601 ASSERT3U(BP_GET_TYPE(bp), ==, DMU_OT_OBJSET);
1602 ASSERT0(BP_GET_LEVEL(bp));
1603
1604 /*
1605 * Update rootbp fill count: it should be the number of objects
1606 * allocated in the object set (not counting the "special"
1607 * objects that are stored in the objset_phys_t -- the meta
1608 * dnode and user/group/project accounting objects).
1609 */
1610 for (int i = 0; i < dnp->dn_nblkptr; i++)
1611 fill += BP_GET_FILL(&dnp->dn_blkptr[i]);
1612
1613 BP_SET_FILL(bp, fill);
1614
1615 if (os->os_dsl_dataset != NULL)
1616 rrw_enter(&os->os_dsl_dataset->ds_bp_rwlock, RW_WRITER, FTAG);
1617 *os->os_rootbp = *bp;
1618 if (os->os_dsl_dataset != NULL)
1619 rrw_exit(&os->os_dsl_dataset->ds_bp_rwlock, FTAG);
1620 }
1621
1622 static void
dmu_objset_write_done(zio_t * zio,arc_buf_t * abuf,void * arg)1623 dmu_objset_write_done(zio_t *zio, arc_buf_t *abuf, void *arg)
1624 {
1625 (void) abuf;
1626 blkptr_t *bp = zio->io_bp;
1627 blkptr_t *bp_orig = &zio->io_bp_orig;
1628 objset_t *os = arg;
1629
1630 if (zio->io_flags & ZIO_FLAG_IO_REWRITE) {
1631 ASSERT(BP_EQUAL(bp, bp_orig));
1632 } else {
1633 dsl_dataset_t *ds = os->os_dsl_dataset;
1634 dmu_tx_t *tx = os->os_synctx;
1635
1636 (void) dsl_dataset_block_kill(ds, bp_orig, tx, B_TRUE);
1637 dsl_dataset_block_born(ds, bp, tx);
1638 }
1639 kmem_free(bp, sizeof (*bp));
1640 }
1641
1642 typedef struct sync_dnodes_arg {
1643 multilist_t *sda_list;
1644 int sda_sublist_idx;
1645 multilist_t *sda_newlist;
1646 dmu_tx_t *sda_tx;
1647 } sync_dnodes_arg_t;
1648
1649 static void
sync_dnodes_task(void * arg)1650 sync_dnodes_task(void *arg)
1651 {
1652 sync_dnodes_arg_t *sda = arg;
1653
1654 multilist_sublist_t *ms =
1655 multilist_sublist_lock_idx(sda->sda_list, sda->sda_sublist_idx);
1656
1657 dmu_objset_sync_dnodes(ms, sda->sda_tx);
1658
1659 multilist_sublist_unlock(ms);
1660
1661 kmem_free(sda, sizeof (*sda));
1662 }
1663
1664
1665 /* called from dsl */
1666 void
dmu_objset_sync(objset_t * os,zio_t * pio,dmu_tx_t * tx)1667 dmu_objset_sync(objset_t *os, zio_t *pio, dmu_tx_t *tx)
1668 {
1669 int txgoff;
1670 zbookmark_phys_t zb;
1671 zio_prop_t zp;
1672 zio_t *zio;
1673 list_t *list;
1674 dbuf_dirty_record_t *dr;
1675 int num_sublists;
1676 multilist_t *ml;
1677 blkptr_t *blkptr_copy = kmem_alloc(sizeof (*os->os_rootbp), KM_SLEEP);
1678 *blkptr_copy = *os->os_rootbp;
1679
1680 dprintf_ds(os->os_dsl_dataset, "txg=%llu\n", (u_longlong_t)tx->tx_txg);
1681
1682 ASSERT(dmu_tx_is_syncing(tx));
1683 /* XXX the write_done callback should really give us the tx... */
1684 os->os_synctx = tx;
1685
1686 if (os->os_dsl_dataset == NULL) {
1687 /*
1688 * This is the MOS. If we have upgraded,
1689 * spa_max_replication() could change, so reset
1690 * os_copies here.
1691 */
1692 os->os_copies = spa_max_replication(os->os_spa);
1693 }
1694
1695 /*
1696 * Create the root block IO
1697 */
1698 SET_BOOKMARK(&zb, os->os_dsl_dataset ?
1699 os->os_dsl_dataset->ds_object : DMU_META_OBJSET,
1700 ZB_ROOT_OBJECT, ZB_ROOT_LEVEL, ZB_ROOT_BLKID);
1701 arc_release(os->os_phys_buf, &os->os_phys_buf);
1702
1703 dmu_write_policy(os, NULL, 0, 0, &zp);
1704
1705 /*
1706 * If we are either claiming the ZIL or doing a raw receive, write
1707 * out the os_phys_buf raw. Neither of these actions will effect the
1708 * MAC at this point.
1709 */
1710 if (os->os_raw_receive ||
1711 os->os_next_write_raw[tx->tx_txg & TXG_MASK]) {
1712 ASSERT(os->os_encrypted);
1713 arc_convert_to_raw(os->os_phys_buf,
1714 os->os_dsl_dataset->ds_object, ZFS_HOST_BYTEORDER,
1715 DMU_OT_OBJSET, NULL, NULL, NULL);
1716 }
1717
1718 zio = arc_write(pio, os->os_spa, tx->tx_txg,
1719 blkptr_copy, os->os_phys_buf, B_FALSE, dmu_os_is_l2cacheable(os),
1720 &zp, dmu_objset_write_ready, NULL, dmu_objset_write_done,
1721 os, ZIO_PRIORITY_ASYNC_WRITE, ZIO_FLAG_MUSTSUCCEED, &zb);
1722
1723 /*
1724 * Sync special dnodes - the parent IO for the sync is the root block
1725 */
1726 DMU_META_DNODE(os)->dn_zio = zio;
1727 dnode_sync(DMU_META_DNODE(os), tx);
1728
1729 os->os_phys->os_flags = os->os_flags;
1730
1731 if (DMU_USERUSED_DNODE(os) &&
1732 DMU_USERUSED_DNODE(os)->dn_type != DMU_OT_NONE) {
1733 DMU_USERUSED_DNODE(os)->dn_zio = zio;
1734 dnode_sync(DMU_USERUSED_DNODE(os), tx);
1735 DMU_GROUPUSED_DNODE(os)->dn_zio = zio;
1736 dnode_sync(DMU_GROUPUSED_DNODE(os), tx);
1737 }
1738
1739 if (DMU_PROJECTUSED_DNODE(os) &&
1740 DMU_PROJECTUSED_DNODE(os)->dn_type != DMU_OT_NONE) {
1741 DMU_PROJECTUSED_DNODE(os)->dn_zio = zio;
1742 dnode_sync(DMU_PROJECTUSED_DNODE(os), tx);
1743 }
1744
1745 txgoff = tx->tx_txg & TXG_MASK;
1746
1747 /*
1748 * We must create the list here because it uses the
1749 * dn_dirty_link[] of this txg. But it may already
1750 * exist because we call dsl_dataset_sync() twice per txg.
1751 */
1752 if (os->os_synced_dnodes.ml_sublists == NULL) {
1753 multilist_create(&os->os_synced_dnodes, sizeof (dnode_t),
1754 offsetof(dnode_t, dn_dirty_link[txgoff]),
1755 dnode_multilist_index_func);
1756 } else {
1757 ASSERT3U(os->os_synced_dnodes.ml_offset, ==,
1758 offsetof(dnode_t, dn_dirty_link[txgoff]));
1759 }
1760
1761 ml = &os->os_dirty_dnodes[txgoff];
1762 num_sublists = multilist_get_num_sublists(ml);
1763 for (int i = 0; i < num_sublists; i++) {
1764 if (multilist_sublist_is_empty_idx(ml, i))
1765 continue;
1766 sync_dnodes_arg_t *sda = kmem_alloc(sizeof (*sda), KM_SLEEP);
1767 sda->sda_list = ml;
1768 sda->sda_sublist_idx = i;
1769 sda->sda_tx = tx;
1770 (void) taskq_dispatch(dmu_objset_pool(os)->dp_sync_taskq,
1771 sync_dnodes_task, sda, 0);
1772 /* callback frees sda */
1773 }
1774 taskq_wait(dmu_objset_pool(os)->dp_sync_taskq);
1775
1776 list = &DMU_META_DNODE(os)->dn_dirty_records[txgoff];
1777 while ((dr = list_remove_head(list)) != NULL) {
1778 ASSERT0(dr->dr_dbuf->db_level);
1779 zio_nowait(dr->dr_zio);
1780 }
1781
1782 /* Enable dnode backfill if enough objects have been freed. */
1783 if (os->os_freed_dnodes >= dmu_rescan_dnode_threshold) {
1784 os->os_rescan_dnodes = B_TRUE;
1785 os->os_freed_dnodes = 0;
1786 }
1787
1788 /*
1789 * Free intent log blocks up to this tx.
1790 */
1791 zil_sync(os->os_zil, tx);
1792 os->os_phys->os_zil_header = os->os_zil_header;
1793 zio_nowait(zio);
1794 }
1795
1796 boolean_t
dmu_objset_is_dirty(objset_t * os,uint64_t txg)1797 dmu_objset_is_dirty(objset_t *os, uint64_t txg)
1798 {
1799 return (!multilist_is_empty(&os->os_dirty_dnodes[txg & TXG_MASK]));
1800 }
1801
1802 static file_info_cb_t *file_cbs[DMU_OST_NUMTYPES];
1803
1804 void
dmu_objset_register_type(dmu_objset_type_t ost,file_info_cb_t * cb)1805 dmu_objset_register_type(dmu_objset_type_t ost, file_info_cb_t *cb)
1806 {
1807 file_cbs[ost] = cb;
1808 }
1809
1810 int
dmu_get_file_info(objset_t * os,dmu_object_type_t bonustype,const void * data,zfs_file_info_t * zfi)1811 dmu_get_file_info(objset_t *os, dmu_object_type_t bonustype, const void *data,
1812 zfs_file_info_t *zfi)
1813 {
1814 file_info_cb_t *cb = file_cbs[os->os_phys->os_type];
1815 if (cb == NULL)
1816 return (EINVAL);
1817 return (cb(bonustype, data, zfi));
1818 }
1819
1820 boolean_t
dmu_objset_userused_enabled(objset_t * os)1821 dmu_objset_userused_enabled(objset_t *os)
1822 {
1823 return (spa_version(os->os_spa) >= SPA_VERSION_USERSPACE &&
1824 file_cbs[os->os_phys->os_type] != NULL &&
1825 DMU_USERUSED_DNODE(os) != NULL);
1826 }
1827
1828 boolean_t
dmu_objset_userobjused_enabled(objset_t * os)1829 dmu_objset_userobjused_enabled(objset_t *os)
1830 {
1831 return (dmu_objset_userused_enabled(os) &&
1832 spa_feature_is_enabled(os->os_spa, SPA_FEATURE_USEROBJ_ACCOUNTING));
1833 }
1834
1835 boolean_t
dmu_objset_projectquota_enabled(objset_t * os)1836 dmu_objset_projectquota_enabled(objset_t *os)
1837 {
1838 return (file_cbs[os->os_phys->os_type] != NULL &&
1839 DMU_PROJECTUSED_DNODE(os) != NULL &&
1840 spa_feature_is_enabled(os->os_spa, SPA_FEATURE_PROJECT_QUOTA));
1841 }
1842
1843 typedef struct userquota_node {
1844 /* must be in the first filed, see userquota_update_cache() */
1845 char uqn_id[20 + DMU_OBJACCT_PREFIX_LEN];
1846 int64_t uqn_delta;
1847 avl_node_t uqn_node;
1848 } userquota_node_t;
1849
1850 typedef struct userquota_cache {
1851 avl_tree_t uqc_user_deltas;
1852 avl_tree_t uqc_group_deltas;
1853 avl_tree_t uqc_project_deltas;
1854 } userquota_cache_t;
1855
1856 static int
userquota_compare(const void * l,const void * r)1857 userquota_compare(const void *l, const void *r)
1858 {
1859 const userquota_node_t *luqn = l;
1860 const userquota_node_t *ruqn = r;
1861 int rv;
1862
1863 /*
1864 * NB: can only access uqn_id because userquota_update_cache() doesn't
1865 * pass in an entire userquota_node_t.
1866 */
1867 rv = strcmp(luqn->uqn_id, ruqn->uqn_id);
1868
1869 return (TREE_ISIGN(rv));
1870 }
1871
1872 static void
do_userquota_cacheflush(objset_t * os,userquota_cache_t * cache,dmu_tx_t * tx)1873 do_userquota_cacheflush(objset_t *os, userquota_cache_t *cache, dmu_tx_t *tx)
1874 {
1875 void *cookie;
1876 userquota_node_t *uqn;
1877
1878 ASSERT(dmu_tx_is_syncing(tx));
1879
1880 cookie = NULL;
1881 while ((uqn = avl_destroy_nodes(&cache->uqc_user_deltas,
1882 &cookie)) != NULL) {
1883 /*
1884 * os_userused_lock protects against concurrent calls to
1885 * zap_increment_int(). It's needed because zap_increment_int()
1886 * is not thread-safe (i.e. not atomic).
1887 */
1888 mutex_enter(&os->os_userused_lock);
1889 VERIFY0(zap_increment(os, DMU_USERUSED_OBJECT,
1890 uqn->uqn_id, uqn->uqn_delta, tx));
1891 mutex_exit(&os->os_userused_lock);
1892 kmem_free(uqn, sizeof (*uqn));
1893 }
1894 avl_destroy(&cache->uqc_user_deltas);
1895
1896 cookie = NULL;
1897 while ((uqn = avl_destroy_nodes(&cache->uqc_group_deltas,
1898 &cookie)) != NULL) {
1899 mutex_enter(&os->os_userused_lock);
1900 VERIFY0(zap_increment(os, DMU_GROUPUSED_OBJECT,
1901 uqn->uqn_id, uqn->uqn_delta, tx));
1902 mutex_exit(&os->os_userused_lock);
1903 kmem_free(uqn, sizeof (*uqn));
1904 }
1905 avl_destroy(&cache->uqc_group_deltas);
1906
1907 if (dmu_objset_projectquota_enabled(os)) {
1908 cookie = NULL;
1909 while ((uqn = avl_destroy_nodes(&cache->uqc_project_deltas,
1910 &cookie)) != NULL) {
1911 mutex_enter(&os->os_userused_lock);
1912 VERIFY0(zap_increment(os, DMU_PROJECTUSED_OBJECT,
1913 uqn->uqn_id, uqn->uqn_delta, tx));
1914 mutex_exit(&os->os_userused_lock);
1915 kmem_free(uqn, sizeof (*uqn));
1916 }
1917 avl_destroy(&cache->uqc_project_deltas);
1918 }
1919 }
1920
1921 static void
userquota_update_cache(avl_tree_t * avl,const char * id,int64_t delta)1922 userquota_update_cache(avl_tree_t *avl, const char *id, int64_t delta)
1923 {
1924 userquota_node_t *uqn;
1925 avl_index_t idx;
1926
1927 ASSERT(strlen(id) < sizeof (uqn->uqn_id));
1928 /*
1929 * Use id directly for searching because uqn_id is the first field of
1930 * userquota_node_t and fields after uqn_id won't be accessed in
1931 * avl_find().
1932 */
1933 uqn = avl_find(avl, (const void *)id, &idx);
1934 if (uqn == NULL) {
1935 uqn = kmem_zalloc(sizeof (*uqn), KM_SLEEP);
1936 strlcpy(uqn->uqn_id, id, sizeof (uqn->uqn_id));
1937 avl_insert(avl, uqn, idx);
1938 }
1939 uqn->uqn_delta += delta;
1940 }
1941
1942 static void
do_userquota_update(objset_t * os,userquota_cache_t * cache,uint64_t used,uint64_t flags,uint64_t user,uint64_t group,uint64_t project,boolean_t subtract)1943 do_userquota_update(objset_t *os, userquota_cache_t *cache, uint64_t used,
1944 uint64_t flags, uint64_t user, uint64_t group, uint64_t project,
1945 boolean_t subtract)
1946 {
1947 if (flags & DNODE_FLAG_USERUSED_ACCOUNTED) {
1948 int64_t delta = DNODE_MIN_SIZE + used;
1949 char name[20];
1950
1951 if (subtract)
1952 delta = -delta;
1953
1954 (void) snprintf(name, sizeof (name), "%llx", (longlong_t)user);
1955 userquota_update_cache(&cache->uqc_user_deltas, name, delta);
1956
1957 (void) snprintf(name, sizeof (name), "%llx", (longlong_t)group);
1958 userquota_update_cache(&cache->uqc_group_deltas, name, delta);
1959
1960 if (dmu_objset_projectquota_enabled(os)) {
1961 (void) snprintf(name, sizeof (name), "%llx",
1962 (longlong_t)project);
1963 userquota_update_cache(&cache->uqc_project_deltas,
1964 name, delta);
1965 }
1966 }
1967 }
1968
1969 static void
do_userobjquota_update(objset_t * os,userquota_cache_t * cache,uint64_t flags,uint64_t user,uint64_t group,uint64_t project,boolean_t subtract)1970 do_userobjquota_update(objset_t *os, userquota_cache_t *cache, uint64_t flags,
1971 uint64_t user, uint64_t group, uint64_t project, boolean_t subtract)
1972 {
1973 if (flags & DNODE_FLAG_USEROBJUSED_ACCOUNTED) {
1974 char name[20 + DMU_OBJACCT_PREFIX_LEN];
1975 int delta = subtract ? -1 : 1;
1976
1977 (void) snprintf(name, sizeof (name), DMU_OBJACCT_PREFIX "%llx",
1978 (longlong_t)user);
1979 userquota_update_cache(&cache->uqc_user_deltas, name, delta);
1980
1981 (void) snprintf(name, sizeof (name), DMU_OBJACCT_PREFIX "%llx",
1982 (longlong_t)group);
1983 userquota_update_cache(&cache->uqc_group_deltas, name, delta);
1984
1985 if (dmu_objset_projectquota_enabled(os)) {
1986 (void) snprintf(name, sizeof (name),
1987 DMU_OBJACCT_PREFIX "%llx", (longlong_t)project);
1988 userquota_update_cache(&cache->uqc_project_deltas,
1989 name, delta);
1990 }
1991 }
1992 }
1993
1994 typedef struct userquota_updates_arg {
1995 objset_t *uua_os;
1996 int uua_sublist_idx;
1997 dmu_tx_t *uua_tx;
1998 } userquota_updates_arg_t;
1999
2000 static void
userquota_updates_task(void * arg)2001 userquota_updates_task(void *arg)
2002 {
2003 userquota_updates_arg_t *uua = arg;
2004 objset_t *os = uua->uua_os;
2005 dmu_tx_t *tx = uua->uua_tx;
2006 dnode_t *dn;
2007 userquota_cache_t cache = { { 0 } };
2008
2009 multilist_sublist_t *list = multilist_sublist_lock_idx(
2010 &os->os_synced_dnodes, uua->uua_sublist_idx);
2011
2012 ASSERT(multilist_sublist_head(list) == NULL ||
2013 dmu_objset_userused_enabled(os));
2014 avl_create(&cache.uqc_user_deltas, userquota_compare,
2015 sizeof (userquota_node_t), offsetof(userquota_node_t, uqn_node));
2016 avl_create(&cache.uqc_group_deltas, userquota_compare,
2017 sizeof (userquota_node_t), offsetof(userquota_node_t, uqn_node));
2018 if (dmu_objset_projectquota_enabled(os))
2019 avl_create(&cache.uqc_project_deltas, userquota_compare,
2020 sizeof (userquota_node_t), offsetof(userquota_node_t,
2021 uqn_node));
2022
2023 while ((dn = multilist_sublist_head(list)) != NULL) {
2024 int flags;
2025 ASSERT(!DMU_OBJECT_IS_SPECIAL(dn->dn_object));
2026 ASSERT(dn->dn_phys->dn_type == DMU_OT_NONE ||
2027 dn->dn_phys->dn_flags &
2028 DNODE_FLAG_USERUSED_ACCOUNTED);
2029
2030 flags = dn->dn_id_flags;
2031 ASSERT(flags);
2032 if (flags & DN_ID_OLD_EXIST) {
2033 do_userquota_update(os, &cache, dn->dn_oldused,
2034 dn->dn_oldflags, dn->dn_olduid, dn->dn_oldgid,
2035 dn->dn_oldprojid, B_TRUE);
2036 do_userobjquota_update(os, &cache, dn->dn_oldflags,
2037 dn->dn_olduid, dn->dn_oldgid,
2038 dn->dn_oldprojid, B_TRUE);
2039 }
2040 if (flags & DN_ID_NEW_EXIST) {
2041 do_userquota_update(os, &cache,
2042 DN_USED_BYTES(dn->dn_phys), dn->dn_phys->dn_flags,
2043 dn->dn_newuid, dn->dn_newgid,
2044 dn->dn_newprojid, B_FALSE);
2045 do_userobjquota_update(os, &cache,
2046 dn->dn_phys->dn_flags, dn->dn_newuid, dn->dn_newgid,
2047 dn->dn_newprojid, B_FALSE);
2048 }
2049
2050 mutex_enter(&dn->dn_mtx);
2051 dn->dn_oldused = 0;
2052 dn->dn_oldflags = 0;
2053 if (dn->dn_id_flags & DN_ID_NEW_EXIST) {
2054 dn->dn_olduid = dn->dn_newuid;
2055 dn->dn_oldgid = dn->dn_newgid;
2056 dn->dn_oldprojid = dn->dn_newprojid;
2057 dn->dn_id_flags |= DN_ID_OLD_EXIST;
2058 if (dn->dn_bonuslen == 0)
2059 dn->dn_id_flags |= DN_ID_CHKED_SPILL;
2060 else
2061 dn->dn_id_flags |= DN_ID_CHKED_BONUS;
2062 }
2063 dn->dn_id_flags &= ~(DN_ID_NEW_EXIST);
2064 mutex_exit(&dn->dn_mtx);
2065
2066 multilist_sublist_remove(list, dn);
2067 dnode_rele(dn, &os->os_synced_dnodes);
2068 }
2069 do_userquota_cacheflush(os, &cache, tx);
2070 multilist_sublist_unlock(list);
2071 kmem_free(uua, sizeof (*uua));
2072 }
2073
2074 /*
2075 * Release dnode holds from dmu_objset_sync_dnodes(). When the dnode is being
2076 * synced (i.e. we have issued the zio's for blocks in the dnode), it can't be
2077 * evicted because the block containing the dnode can't be evicted until it is
2078 * written out. However, this hold is necessary to prevent the dnode_t from
2079 * being moved (via dnode_move()) while it's still referenced by
2080 * dbuf_dirty_record_t:dr_dnode. And dr_dnode is needed for
2081 * dirty_lightweight_leaf-type dirty records.
2082 *
2083 * If we are doing user-object accounting, the dnode_rele() happens from
2084 * userquota_updates_task() instead.
2085 */
2086 static void
dnode_rele_task(void * arg)2087 dnode_rele_task(void *arg)
2088 {
2089 userquota_updates_arg_t *uua = arg;
2090 objset_t *os = uua->uua_os;
2091
2092 multilist_sublist_t *list = multilist_sublist_lock_idx(
2093 &os->os_synced_dnodes, uua->uua_sublist_idx);
2094
2095 dnode_t *dn;
2096 while ((dn = multilist_sublist_head(list)) != NULL) {
2097 multilist_sublist_remove(list, dn);
2098 dnode_rele(dn, &os->os_synced_dnodes);
2099 }
2100 multilist_sublist_unlock(list);
2101 kmem_free(uua, sizeof (*uua));
2102 }
2103
2104 /*
2105 * Return TRUE if userquota updates are needed.
2106 */
2107 static boolean_t
dmu_objset_do_userquota_updates_prep(objset_t * os,dmu_tx_t * tx)2108 dmu_objset_do_userquota_updates_prep(objset_t *os, dmu_tx_t *tx)
2109 {
2110 if (!dmu_objset_userused_enabled(os))
2111 return (B_FALSE);
2112
2113 /*
2114 * If this is a raw receive just return and handle accounting
2115 * later when we have the keys loaded. We also don't do user
2116 * accounting during claiming since the datasets are not owned
2117 * for the duration of claiming and this txg should only be
2118 * used for recovery.
2119 */
2120 if (os->os_encrypted && dmu_objset_is_receiving(os))
2121 return (B_FALSE);
2122
2123 if (tx->tx_txg <= os->os_spa->spa_claim_max_txg)
2124 return (B_FALSE);
2125
2126 /* Allocate the user/group/project used objects if necessary. */
2127 if (DMU_USERUSED_DNODE(os)->dn_type == DMU_OT_NONE) {
2128 VERIFY0(zap_create_claim(os,
2129 DMU_USERUSED_OBJECT,
2130 DMU_OT_USERGROUP_USED, DMU_OT_NONE, 0, tx));
2131 VERIFY0(zap_create_claim(os,
2132 DMU_GROUPUSED_OBJECT,
2133 DMU_OT_USERGROUP_USED, DMU_OT_NONE, 0, tx));
2134 }
2135
2136 if (dmu_objset_projectquota_enabled(os) &&
2137 DMU_PROJECTUSED_DNODE(os)->dn_type == DMU_OT_NONE) {
2138 VERIFY0(zap_create_claim(os, DMU_PROJECTUSED_OBJECT,
2139 DMU_OT_USERGROUP_USED, DMU_OT_NONE, 0, tx));
2140 }
2141 return (B_TRUE);
2142 }
2143
2144 /*
2145 * Dispatch taskq tasks to dp_sync_taskq to update the user accounting, and
2146 * also release the holds on the dnodes from dmu_objset_sync_dnodes().
2147 * The caller must taskq_wait(dp_sync_taskq).
2148 */
2149 void
dmu_objset_sync_done(objset_t * os,dmu_tx_t * tx)2150 dmu_objset_sync_done(objset_t *os, dmu_tx_t *tx)
2151 {
2152 boolean_t need_userquota = dmu_objset_do_userquota_updates_prep(os, tx);
2153
2154 int num_sublists = multilist_get_num_sublists(&os->os_synced_dnodes);
2155 for (int i = 0; i < num_sublists; i++) {
2156 userquota_updates_arg_t *uua =
2157 kmem_alloc(sizeof (*uua), KM_SLEEP);
2158 uua->uua_os = os;
2159 uua->uua_sublist_idx = i;
2160 uua->uua_tx = tx;
2161
2162 /*
2163 * If we don't need to update userquotas, use
2164 * dnode_rele_task() to call dnode_rele()
2165 */
2166 (void) taskq_dispatch(dmu_objset_pool(os)->dp_sync_taskq,
2167 need_userquota ? userquota_updates_task : dnode_rele_task,
2168 uua, 0);
2169 /* callback frees uua */
2170 }
2171 }
2172
2173
2174 /*
2175 * Returns a pointer to data to find uid/gid from
2176 *
2177 * If a dirty record for transaction group that is syncing can't
2178 * be found then NULL is returned. In the NULL case it is assumed
2179 * the uid/gid aren't changing.
2180 */
2181 static void *
dmu_objset_userquota_find_data(dmu_buf_impl_t * db,dmu_tx_t * tx)2182 dmu_objset_userquota_find_data(dmu_buf_impl_t *db, dmu_tx_t *tx)
2183 {
2184 dbuf_dirty_record_t *dr;
2185 void *data;
2186
2187 if (db->db_dirtycnt == 0)
2188 return (db->db.db_data); /* Nothing is changing */
2189
2190 dr = dbuf_find_dirty_eq(db, tx->tx_txg);
2191
2192 if (dr == NULL) {
2193 data = NULL;
2194 } else {
2195 if (dr->dr_dnode->dn_bonuslen == 0 &&
2196 dr->dr_dbuf->db_blkid == DMU_SPILL_BLKID)
2197 data = dr->dt.dl.dr_data->b_data;
2198 else
2199 data = dr->dt.dl.dr_data;
2200 }
2201
2202 return (data);
2203 }
2204
2205 void
dmu_objset_userquota_get_ids(dnode_t * dn,boolean_t before,dmu_tx_t * tx)2206 dmu_objset_userquota_get_ids(dnode_t *dn, boolean_t before, dmu_tx_t *tx)
2207 {
2208 objset_t *os = dn->dn_objset;
2209 void *data = NULL;
2210 dmu_buf_impl_t *db = NULL;
2211 int flags = dn->dn_id_flags;
2212 int error;
2213 boolean_t have_spill = B_FALSE;
2214
2215 if (!dmu_objset_userused_enabled(dn->dn_objset))
2216 return;
2217
2218 /*
2219 * Raw receives introduce a problem with user accounting. Raw
2220 * receives cannot update the user accounting info because the
2221 * user ids and the sizes are encrypted. To guarantee that we
2222 * never end up with bad user accounting, we simply disable it
2223 * during raw receives. We also disable this for normal receives
2224 * so that an incremental raw receive may be done on top of an
2225 * existing non-raw receive.
2226 */
2227 if (os->os_encrypted && dmu_objset_is_receiving(os))
2228 return;
2229
2230 if (before && (flags & (DN_ID_CHKED_BONUS|DN_ID_OLD_EXIST|
2231 DN_ID_CHKED_SPILL)))
2232 return;
2233
2234 if (before && dn->dn_bonuslen != 0)
2235 data = DN_BONUS(dn->dn_phys);
2236 else if (!before && dn->dn_bonuslen != 0) {
2237 if (dn->dn_bonus) {
2238 db = dn->dn_bonus;
2239 mutex_enter(&db->db_mtx);
2240 data = dmu_objset_userquota_find_data(db, tx);
2241 } else {
2242 data = DN_BONUS(dn->dn_phys);
2243 }
2244 } else if (dn->dn_bonuslen == 0 && dn->dn_bonustype == DMU_OT_SA) {
2245 int rf = 0;
2246
2247 if (RW_WRITE_HELD(&dn->dn_struct_rwlock))
2248 rf |= DB_RF_HAVESTRUCT;
2249 error = dmu_spill_hold_by_dnode(dn,
2250 rf | DB_RF_MUST_SUCCEED,
2251 FTAG, (dmu_buf_t **)&db);
2252 ASSERT(error == 0);
2253 mutex_enter(&db->db_mtx);
2254 data = (before) ? db->db.db_data :
2255 dmu_objset_userquota_find_data(db, tx);
2256 have_spill = B_TRUE;
2257 } else {
2258 mutex_enter(&dn->dn_mtx);
2259 dn->dn_id_flags |= DN_ID_CHKED_BONUS;
2260 mutex_exit(&dn->dn_mtx);
2261 return;
2262 }
2263
2264 /*
2265 * Must always call the callback in case the object
2266 * type has changed and that type isn't an object type to track
2267 */
2268 zfs_file_info_t zfi;
2269 error = file_cbs[os->os_phys->os_type](dn->dn_bonustype, data, &zfi);
2270
2271 if (before) {
2272 ASSERT(data);
2273 dn->dn_olduid = zfi.zfi_user;
2274 dn->dn_oldgid = zfi.zfi_group;
2275 dn->dn_oldprojid = zfi.zfi_project;
2276 } else if (data) {
2277 dn->dn_newuid = zfi.zfi_user;
2278 dn->dn_newgid = zfi.zfi_group;
2279 dn->dn_newprojid = zfi.zfi_project;
2280 }
2281
2282 /*
2283 * Preserve existing uid/gid when the callback can't determine
2284 * what the new uid/gid are and the callback returned EEXIST.
2285 * The EEXIST error tells us to just use the existing uid/gid.
2286 * If we don't know what the old values are then just assign
2287 * them to 0, since that is a new file being created.
2288 */
2289 if (!before && data == NULL && error == EEXIST) {
2290 if (flags & DN_ID_OLD_EXIST) {
2291 dn->dn_newuid = dn->dn_olduid;
2292 dn->dn_newgid = dn->dn_oldgid;
2293 dn->dn_newprojid = dn->dn_oldprojid;
2294 } else {
2295 dn->dn_newuid = 0;
2296 dn->dn_newgid = 0;
2297 dn->dn_newprojid = ZFS_DEFAULT_PROJID;
2298 }
2299 error = 0;
2300 }
2301
2302 if (db)
2303 mutex_exit(&db->db_mtx);
2304
2305 mutex_enter(&dn->dn_mtx);
2306 if (error == 0 && before)
2307 dn->dn_id_flags |= DN_ID_OLD_EXIST;
2308 if (error == 0 && !before)
2309 dn->dn_id_flags |= DN_ID_NEW_EXIST;
2310
2311 if (have_spill) {
2312 dn->dn_id_flags |= DN_ID_CHKED_SPILL;
2313 } else {
2314 dn->dn_id_flags |= DN_ID_CHKED_BONUS;
2315 }
2316 mutex_exit(&dn->dn_mtx);
2317 if (have_spill)
2318 dmu_buf_rele((dmu_buf_t *)db, FTAG);
2319 }
2320
2321 boolean_t
dmu_objset_userspace_present(objset_t * os)2322 dmu_objset_userspace_present(objset_t *os)
2323 {
2324 return (os->os_phys->os_flags &
2325 OBJSET_FLAG_USERACCOUNTING_COMPLETE);
2326 }
2327
2328 boolean_t
dmu_objset_userobjspace_present(objset_t * os)2329 dmu_objset_userobjspace_present(objset_t *os)
2330 {
2331 return (os->os_phys->os_flags &
2332 OBJSET_FLAG_USEROBJACCOUNTING_COMPLETE);
2333 }
2334
2335 boolean_t
dmu_objset_projectquota_present(objset_t * os)2336 dmu_objset_projectquota_present(objset_t *os)
2337 {
2338 return (os->os_phys->os_flags &
2339 OBJSET_FLAG_PROJECTQUOTA_COMPLETE);
2340 }
2341
2342 static int
dmu_objset_space_upgrade(objset_t * os)2343 dmu_objset_space_upgrade(objset_t *os)
2344 {
2345 uint64_t obj;
2346 int err = 0;
2347
2348 /*
2349 * We simply need to mark every object dirty, so that it will be
2350 * synced out and now accounted. If this is called
2351 * concurrently, or if we already did some work before crashing,
2352 * that's fine, since we track each object's accounted state
2353 * independently.
2354 */
2355
2356 for (obj = 0; err == 0; err = dmu_object_next(os, &obj, FALSE, 0)) {
2357 dmu_tx_t *tx;
2358 dmu_buf_t *db;
2359 int objerr;
2360
2361 mutex_enter(&os->os_upgrade_lock);
2362 if (os->os_upgrade_exit)
2363 err = SET_ERROR(EINTR);
2364 mutex_exit(&os->os_upgrade_lock);
2365 if (err != 0)
2366 return (err);
2367
2368 if (issig(JUSTLOOKING) && issig(FORREAL))
2369 return (SET_ERROR(EINTR));
2370
2371 objerr = dmu_bonus_hold(os, obj, FTAG, &db);
2372 if (objerr != 0)
2373 continue;
2374 tx = dmu_tx_create(os);
2375 dmu_tx_hold_bonus(tx, obj);
2376 objerr = dmu_tx_assign(tx, TXG_WAIT);
2377 if (objerr != 0) {
2378 dmu_buf_rele(db, FTAG);
2379 dmu_tx_abort(tx);
2380 continue;
2381 }
2382 dmu_buf_will_dirty(db, tx);
2383 dmu_buf_rele(db, FTAG);
2384 dmu_tx_commit(tx);
2385 }
2386 return (0);
2387 }
2388
2389 static int
dmu_objset_userspace_upgrade_cb(objset_t * os)2390 dmu_objset_userspace_upgrade_cb(objset_t *os)
2391 {
2392 int err = 0;
2393
2394 if (dmu_objset_userspace_present(os))
2395 return (0);
2396 if (dmu_objset_is_snapshot(os))
2397 return (SET_ERROR(EINVAL));
2398 if (!dmu_objset_userused_enabled(os))
2399 return (SET_ERROR(ENOTSUP));
2400
2401 err = dmu_objset_space_upgrade(os);
2402 if (err)
2403 return (err);
2404
2405 os->os_flags |= OBJSET_FLAG_USERACCOUNTING_COMPLETE;
2406 txg_wait_synced(dmu_objset_pool(os), 0);
2407 return (0);
2408 }
2409
2410 void
dmu_objset_userspace_upgrade(objset_t * os)2411 dmu_objset_userspace_upgrade(objset_t *os)
2412 {
2413 dmu_objset_upgrade(os, dmu_objset_userspace_upgrade_cb);
2414 }
2415
2416 static int
dmu_objset_id_quota_upgrade_cb(objset_t * os)2417 dmu_objset_id_quota_upgrade_cb(objset_t *os)
2418 {
2419 int err = 0;
2420
2421 if (dmu_objset_userobjspace_present(os) &&
2422 dmu_objset_projectquota_present(os))
2423 return (0);
2424 if (dmu_objset_is_snapshot(os))
2425 return (SET_ERROR(EINVAL));
2426 if (!dmu_objset_userused_enabled(os))
2427 return (SET_ERROR(ENOTSUP));
2428 if (!dmu_objset_projectquota_enabled(os) &&
2429 dmu_objset_userobjspace_present(os))
2430 return (SET_ERROR(ENOTSUP));
2431
2432 if (dmu_objset_userobjused_enabled(os))
2433 dmu_objset_ds(os)->ds_feature_activation[
2434 SPA_FEATURE_USEROBJ_ACCOUNTING] = (void *)B_TRUE;
2435 if (dmu_objset_projectquota_enabled(os))
2436 dmu_objset_ds(os)->ds_feature_activation[
2437 SPA_FEATURE_PROJECT_QUOTA] = (void *)B_TRUE;
2438
2439 err = dmu_objset_space_upgrade(os);
2440 if (err)
2441 return (err);
2442
2443 os->os_flags |= OBJSET_FLAG_USERACCOUNTING_COMPLETE;
2444 if (dmu_objset_userobjused_enabled(os))
2445 os->os_flags |= OBJSET_FLAG_USEROBJACCOUNTING_COMPLETE;
2446 if (dmu_objset_projectquota_enabled(os))
2447 os->os_flags |= OBJSET_FLAG_PROJECTQUOTA_COMPLETE;
2448
2449 txg_wait_synced(dmu_objset_pool(os), 0);
2450 return (0);
2451 }
2452
2453 void
dmu_objset_id_quota_upgrade(objset_t * os)2454 dmu_objset_id_quota_upgrade(objset_t *os)
2455 {
2456 dmu_objset_upgrade(os, dmu_objset_id_quota_upgrade_cb);
2457 }
2458
2459 boolean_t
dmu_objset_userobjspace_upgradable(objset_t * os)2460 dmu_objset_userobjspace_upgradable(objset_t *os)
2461 {
2462 return (dmu_objset_type(os) == DMU_OST_ZFS &&
2463 !dmu_objset_is_snapshot(os) &&
2464 dmu_objset_userobjused_enabled(os) &&
2465 !dmu_objset_userobjspace_present(os) &&
2466 spa_writeable(dmu_objset_spa(os)));
2467 }
2468
2469 boolean_t
dmu_objset_projectquota_upgradable(objset_t * os)2470 dmu_objset_projectquota_upgradable(objset_t *os)
2471 {
2472 return (dmu_objset_type(os) == DMU_OST_ZFS &&
2473 !dmu_objset_is_snapshot(os) &&
2474 dmu_objset_projectquota_enabled(os) &&
2475 !dmu_objset_projectquota_present(os) &&
2476 spa_writeable(dmu_objset_spa(os)));
2477 }
2478
2479 void
dmu_objset_space(objset_t * os,uint64_t * refdbytesp,uint64_t * availbytesp,uint64_t * usedobjsp,uint64_t * availobjsp)2480 dmu_objset_space(objset_t *os, uint64_t *refdbytesp, uint64_t *availbytesp,
2481 uint64_t *usedobjsp, uint64_t *availobjsp)
2482 {
2483 dsl_dataset_space(os->os_dsl_dataset, refdbytesp, availbytesp,
2484 usedobjsp, availobjsp);
2485 }
2486
2487 uint64_t
dmu_objset_fsid_guid(objset_t * os)2488 dmu_objset_fsid_guid(objset_t *os)
2489 {
2490 return (dsl_dataset_fsid_guid(os->os_dsl_dataset));
2491 }
2492
2493 void
dmu_objset_fast_stat(objset_t * os,dmu_objset_stats_t * stat)2494 dmu_objset_fast_stat(objset_t *os, dmu_objset_stats_t *stat)
2495 {
2496 stat->dds_type = os->os_phys->os_type;
2497 if (os->os_dsl_dataset)
2498 dsl_dataset_fast_stat(os->os_dsl_dataset, stat);
2499 }
2500
2501 void
dmu_objset_stats(objset_t * os,nvlist_t * nv)2502 dmu_objset_stats(objset_t *os, nvlist_t *nv)
2503 {
2504 ASSERT(os->os_dsl_dataset ||
2505 os->os_phys->os_type == DMU_OST_META);
2506
2507 if (os->os_dsl_dataset != NULL)
2508 dsl_dataset_stats(os->os_dsl_dataset, nv);
2509
2510 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_TYPE,
2511 os->os_phys->os_type);
2512 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_USERACCOUNTING,
2513 dmu_objset_userspace_present(os));
2514 }
2515
2516 int
dmu_objset_is_snapshot(objset_t * os)2517 dmu_objset_is_snapshot(objset_t *os)
2518 {
2519 if (os->os_dsl_dataset != NULL)
2520 return (os->os_dsl_dataset->ds_is_snapshot);
2521 else
2522 return (B_FALSE);
2523 }
2524
2525 int
dmu_snapshot_realname(objset_t * os,const char * name,char * real,int maxlen,boolean_t * conflict)2526 dmu_snapshot_realname(objset_t *os, const char *name, char *real, int maxlen,
2527 boolean_t *conflict)
2528 {
2529 dsl_dataset_t *ds = os->os_dsl_dataset;
2530 uint64_t ignored;
2531
2532 if (dsl_dataset_phys(ds)->ds_snapnames_zapobj == 0)
2533 return (SET_ERROR(ENOENT));
2534
2535 return (zap_lookup_norm(ds->ds_dir->dd_pool->dp_meta_objset,
2536 dsl_dataset_phys(ds)->ds_snapnames_zapobj, name, 8, 1, &ignored,
2537 MT_NORMALIZE, real, maxlen, conflict));
2538 }
2539
2540 int
dmu_snapshot_list_next(objset_t * os,int namelen,char * name,uint64_t * idp,uint64_t * offp,boolean_t * case_conflict)2541 dmu_snapshot_list_next(objset_t *os, int namelen, char *name,
2542 uint64_t *idp, uint64_t *offp, boolean_t *case_conflict)
2543 {
2544 dsl_dataset_t *ds = os->os_dsl_dataset;
2545 zap_cursor_t cursor;
2546 zap_attribute_t attr;
2547
2548 ASSERT(dsl_pool_config_held(dmu_objset_pool(os)));
2549
2550 if (dsl_dataset_phys(ds)->ds_snapnames_zapobj == 0)
2551 return (SET_ERROR(ENOENT));
2552
2553 zap_cursor_init_serialized(&cursor,
2554 ds->ds_dir->dd_pool->dp_meta_objset,
2555 dsl_dataset_phys(ds)->ds_snapnames_zapobj, *offp);
2556
2557 if (zap_cursor_retrieve(&cursor, &attr) != 0) {
2558 zap_cursor_fini(&cursor);
2559 return (SET_ERROR(ENOENT));
2560 }
2561
2562 if (strlen(attr.za_name) + 1 > namelen) {
2563 zap_cursor_fini(&cursor);
2564 return (SET_ERROR(ENAMETOOLONG));
2565 }
2566
2567 (void) strlcpy(name, attr.za_name, namelen);
2568 if (idp)
2569 *idp = attr.za_first_integer;
2570 if (case_conflict)
2571 *case_conflict = attr.za_normalization_conflict;
2572 zap_cursor_advance(&cursor);
2573 *offp = zap_cursor_serialize(&cursor);
2574 zap_cursor_fini(&cursor);
2575
2576 return (0);
2577 }
2578
2579 int
dmu_snapshot_lookup(objset_t * os,const char * name,uint64_t * value)2580 dmu_snapshot_lookup(objset_t *os, const char *name, uint64_t *value)
2581 {
2582 return (dsl_dataset_snap_lookup(os->os_dsl_dataset, name, value));
2583 }
2584
2585 int
dmu_dir_list_next(objset_t * os,int namelen,char * name,uint64_t * idp,uint64_t * offp)2586 dmu_dir_list_next(objset_t *os, int namelen, char *name,
2587 uint64_t *idp, uint64_t *offp)
2588 {
2589 dsl_dir_t *dd = os->os_dsl_dataset->ds_dir;
2590 zap_cursor_t cursor;
2591 zap_attribute_t attr;
2592
2593 /* there is no next dir on a snapshot! */
2594 if (os->os_dsl_dataset->ds_object !=
2595 dsl_dir_phys(dd)->dd_head_dataset_obj)
2596 return (SET_ERROR(ENOENT));
2597
2598 zap_cursor_init_serialized(&cursor,
2599 dd->dd_pool->dp_meta_objset,
2600 dsl_dir_phys(dd)->dd_child_dir_zapobj, *offp);
2601
2602 if (zap_cursor_retrieve(&cursor, &attr) != 0) {
2603 zap_cursor_fini(&cursor);
2604 return (SET_ERROR(ENOENT));
2605 }
2606
2607 if (strlen(attr.za_name) + 1 > namelen) {
2608 zap_cursor_fini(&cursor);
2609 return (SET_ERROR(ENAMETOOLONG));
2610 }
2611
2612 (void) strlcpy(name, attr.za_name, namelen);
2613 if (idp)
2614 *idp = attr.za_first_integer;
2615 zap_cursor_advance(&cursor);
2616 *offp = zap_cursor_serialize(&cursor);
2617 zap_cursor_fini(&cursor);
2618
2619 return (0);
2620 }
2621
2622 typedef struct dmu_objset_find_ctx {
2623 taskq_t *dc_tq;
2624 dsl_pool_t *dc_dp;
2625 uint64_t dc_ddobj;
2626 char *dc_ddname; /* last component of ddobj's name */
2627 int (*dc_func)(dsl_pool_t *, dsl_dataset_t *, void *);
2628 void *dc_arg;
2629 int dc_flags;
2630 kmutex_t *dc_error_lock;
2631 int *dc_error;
2632 } dmu_objset_find_ctx_t;
2633
2634 static void
dmu_objset_find_dp_impl(dmu_objset_find_ctx_t * dcp)2635 dmu_objset_find_dp_impl(dmu_objset_find_ctx_t *dcp)
2636 {
2637 dsl_pool_t *dp = dcp->dc_dp;
2638 dsl_dir_t *dd;
2639 dsl_dataset_t *ds;
2640 zap_cursor_t zc;
2641 zap_attribute_t *attr;
2642 uint64_t thisobj;
2643 int err = 0;
2644
2645 /* don't process if there already was an error */
2646 if (*dcp->dc_error != 0)
2647 goto out;
2648
2649 /*
2650 * Note: passing the name (dc_ddname) here is optional, but it
2651 * improves performance because we don't need to call
2652 * zap_value_search() to determine the name.
2653 */
2654 err = dsl_dir_hold_obj(dp, dcp->dc_ddobj, dcp->dc_ddname, FTAG, &dd);
2655 if (err != 0)
2656 goto out;
2657
2658 /* Don't visit hidden ($MOS & $ORIGIN) objsets. */
2659 if (dd->dd_myname[0] == '$') {
2660 dsl_dir_rele(dd, FTAG);
2661 goto out;
2662 }
2663
2664 thisobj = dsl_dir_phys(dd)->dd_head_dataset_obj;
2665 attr = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP);
2666
2667 /*
2668 * Iterate over all children.
2669 */
2670 if (dcp->dc_flags & DS_FIND_CHILDREN) {
2671 for (zap_cursor_init(&zc, dp->dp_meta_objset,
2672 dsl_dir_phys(dd)->dd_child_dir_zapobj);
2673 zap_cursor_retrieve(&zc, attr) == 0;
2674 (void) zap_cursor_advance(&zc)) {
2675 ASSERT3U(attr->za_integer_length, ==,
2676 sizeof (uint64_t));
2677 ASSERT3U(attr->za_num_integers, ==, 1);
2678
2679 dmu_objset_find_ctx_t *child_dcp =
2680 kmem_alloc(sizeof (*child_dcp), KM_SLEEP);
2681 *child_dcp = *dcp;
2682 child_dcp->dc_ddobj = attr->za_first_integer;
2683 child_dcp->dc_ddname = spa_strdup(attr->za_name);
2684 if (dcp->dc_tq != NULL)
2685 (void) taskq_dispatch(dcp->dc_tq,
2686 dmu_objset_find_dp_cb, child_dcp, TQ_SLEEP);
2687 else
2688 dmu_objset_find_dp_impl(child_dcp);
2689 }
2690 zap_cursor_fini(&zc);
2691 }
2692
2693 /*
2694 * Iterate over all snapshots.
2695 */
2696 if (dcp->dc_flags & DS_FIND_SNAPSHOTS) {
2697 dsl_dataset_t *ds;
2698 err = dsl_dataset_hold_obj(dp, thisobj, FTAG, &ds);
2699
2700 if (err == 0) {
2701 uint64_t snapobj;
2702
2703 snapobj = dsl_dataset_phys(ds)->ds_snapnames_zapobj;
2704 dsl_dataset_rele(ds, FTAG);
2705
2706 for (zap_cursor_init(&zc, dp->dp_meta_objset, snapobj);
2707 zap_cursor_retrieve(&zc, attr) == 0;
2708 (void) zap_cursor_advance(&zc)) {
2709 ASSERT3U(attr->za_integer_length, ==,
2710 sizeof (uint64_t));
2711 ASSERT3U(attr->za_num_integers, ==, 1);
2712
2713 err = dsl_dataset_hold_obj(dp,
2714 attr->za_first_integer, FTAG, &ds);
2715 if (err != 0)
2716 break;
2717 err = dcp->dc_func(dp, ds, dcp->dc_arg);
2718 dsl_dataset_rele(ds, FTAG);
2719 if (err != 0)
2720 break;
2721 }
2722 zap_cursor_fini(&zc);
2723 }
2724 }
2725
2726 kmem_free(attr, sizeof (zap_attribute_t));
2727
2728 if (err != 0) {
2729 dsl_dir_rele(dd, FTAG);
2730 goto out;
2731 }
2732
2733 /*
2734 * Apply to self.
2735 */
2736 err = dsl_dataset_hold_obj(dp, thisobj, FTAG, &ds);
2737
2738 /*
2739 * Note: we hold the dir while calling dsl_dataset_hold_obj() so
2740 * that the dir will remain cached, and we won't have to re-instantiate
2741 * it (which could be expensive due to finding its name via
2742 * zap_value_search()).
2743 */
2744 dsl_dir_rele(dd, FTAG);
2745 if (err != 0)
2746 goto out;
2747 err = dcp->dc_func(dp, ds, dcp->dc_arg);
2748 dsl_dataset_rele(ds, FTAG);
2749
2750 out:
2751 if (err != 0) {
2752 mutex_enter(dcp->dc_error_lock);
2753 /* only keep first error */
2754 if (*dcp->dc_error == 0)
2755 *dcp->dc_error = err;
2756 mutex_exit(dcp->dc_error_lock);
2757 }
2758
2759 if (dcp->dc_ddname != NULL)
2760 spa_strfree(dcp->dc_ddname);
2761 kmem_free(dcp, sizeof (*dcp));
2762 }
2763
2764 static void
dmu_objset_find_dp_cb(void * arg)2765 dmu_objset_find_dp_cb(void *arg)
2766 {
2767 dmu_objset_find_ctx_t *dcp = arg;
2768 dsl_pool_t *dp = dcp->dc_dp;
2769
2770 /*
2771 * We need to get a pool_config_lock here, as there are several
2772 * assert(pool_config_held) down the stack. Getting a lock via
2773 * dsl_pool_config_enter is risky, as it might be stalled by a
2774 * pending writer. This would deadlock, as the write lock can
2775 * only be granted when our parent thread gives up the lock.
2776 * The _prio interface gives us priority over a pending writer.
2777 */
2778 dsl_pool_config_enter_prio(dp, FTAG);
2779
2780 dmu_objset_find_dp_impl(dcp);
2781
2782 dsl_pool_config_exit(dp, FTAG);
2783 }
2784
2785 /*
2786 * Find objsets under and including ddobj, call func(ds) on each.
2787 * The order for the enumeration is completely undefined.
2788 * func is called with dsl_pool_config held.
2789 */
2790 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)2791 dmu_objset_find_dp(dsl_pool_t *dp, uint64_t ddobj,
2792 int func(dsl_pool_t *, dsl_dataset_t *, void *), void *arg, int flags)
2793 {
2794 int error = 0;
2795 taskq_t *tq = NULL;
2796 int ntasks;
2797 dmu_objset_find_ctx_t *dcp;
2798 kmutex_t err_lock;
2799
2800 mutex_init(&err_lock, NULL, MUTEX_DEFAULT, NULL);
2801 dcp = kmem_alloc(sizeof (*dcp), KM_SLEEP);
2802 dcp->dc_tq = NULL;
2803 dcp->dc_dp = dp;
2804 dcp->dc_ddobj = ddobj;
2805 dcp->dc_ddname = NULL;
2806 dcp->dc_func = func;
2807 dcp->dc_arg = arg;
2808 dcp->dc_flags = flags;
2809 dcp->dc_error_lock = &err_lock;
2810 dcp->dc_error = &error;
2811
2812 if ((flags & DS_FIND_SERIALIZE) || dsl_pool_config_held_writer(dp)) {
2813 /*
2814 * In case a write lock is held we can't make use of
2815 * parallelism, as down the stack of the worker threads
2816 * the lock is asserted via dsl_pool_config_held.
2817 * In case of a read lock this is solved by getting a read
2818 * lock in each worker thread, which isn't possible in case
2819 * of a writer lock. So we fall back to the synchronous path
2820 * here.
2821 * In the future it might be possible to get some magic into
2822 * dsl_pool_config_held in a way that it returns true for
2823 * the worker threads so that a single lock held from this
2824 * thread suffices. For now, stay single threaded.
2825 */
2826 dmu_objset_find_dp_impl(dcp);
2827 mutex_destroy(&err_lock);
2828
2829 return (error);
2830 }
2831
2832 ntasks = dmu_find_threads;
2833 if (ntasks == 0)
2834 ntasks = vdev_count_leaves(dp->dp_spa) * 4;
2835 tq = taskq_create("dmu_objset_find", ntasks, maxclsyspri, ntasks,
2836 INT_MAX, 0);
2837 if (tq == NULL) {
2838 kmem_free(dcp, sizeof (*dcp));
2839 mutex_destroy(&err_lock);
2840
2841 return (SET_ERROR(ENOMEM));
2842 }
2843 dcp->dc_tq = tq;
2844
2845 /* dcp will be freed by task */
2846 (void) taskq_dispatch(tq, dmu_objset_find_dp_cb, dcp, TQ_SLEEP);
2847
2848 /*
2849 * PORTING: this code relies on the property of taskq_wait to wait
2850 * until no more tasks are queued and no more tasks are active. As
2851 * we always queue new tasks from within other tasks, task_wait
2852 * reliably waits for the full recursion to finish, even though we
2853 * enqueue new tasks after taskq_wait has been called.
2854 * On platforms other than illumos, taskq_wait may not have this
2855 * property.
2856 */
2857 taskq_wait(tq);
2858 taskq_destroy(tq);
2859 mutex_destroy(&err_lock);
2860
2861 return (error);
2862 }
2863
2864 /*
2865 * Find all objsets under name, and for each, call 'func(child_name, arg)'.
2866 * The dp_config_rwlock must not be held when this is called, and it
2867 * will not be held when the callback is called.
2868 * Therefore this function should only be used when the pool is not changing
2869 * (e.g. in syncing context), or the callback can deal with the possible races.
2870 */
2871 static int
dmu_objset_find_impl(spa_t * spa,const char * name,int func (const char *,void *),void * arg,int flags)2872 dmu_objset_find_impl(spa_t *spa, const char *name,
2873 int func(const char *, void *), void *arg, int flags)
2874 {
2875 dsl_dir_t *dd;
2876 dsl_pool_t *dp = spa_get_dsl(spa);
2877 dsl_dataset_t *ds;
2878 zap_cursor_t zc;
2879 zap_attribute_t *attr;
2880 char *child;
2881 uint64_t thisobj;
2882 int err;
2883
2884 dsl_pool_config_enter(dp, FTAG);
2885
2886 err = dsl_dir_hold(dp, name, FTAG, &dd, NULL);
2887 if (err != 0) {
2888 dsl_pool_config_exit(dp, FTAG);
2889 return (err);
2890 }
2891
2892 /* Don't visit hidden ($MOS & $ORIGIN) objsets. */
2893 if (dd->dd_myname[0] == '$') {
2894 dsl_dir_rele(dd, FTAG);
2895 dsl_pool_config_exit(dp, FTAG);
2896 return (0);
2897 }
2898
2899 thisobj = dsl_dir_phys(dd)->dd_head_dataset_obj;
2900 attr = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP);
2901
2902 /*
2903 * Iterate over all children.
2904 */
2905 if (flags & DS_FIND_CHILDREN) {
2906 for (zap_cursor_init(&zc, dp->dp_meta_objset,
2907 dsl_dir_phys(dd)->dd_child_dir_zapobj);
2908 zap_cursor_retrieve(&zc, attr) == 0;
2909 (void) zap_cursor_advance(&zc)) {
2910 ASSERT3U(attr->za_integer_length, ==,
2911 sizeof (uint64_t));
2912 ASSERT3U(attr->za_num_integers, ==, 1);
2913
2914 child = kmem_asprintf("%s/%s", name, attr->za_name);
2915 dsl_pool_config_exit(dp, FTAG);
2916 err = dmu_objset_find_impl(spa, child,
2917 func, arg, flags);
2918 dsl_pool_config_enter(dp, FTAG);
2919 kmem_strfree(child);
2920 if (err != 0)
2921 break;
2922 }
2923 zap_cursor_fini(&zc);
2924
2925 if (err != 0) {
2926 dsl_dir_rele(dd, FTAG);
2927 dsl_pool_config_exit(dp, FTAG);
2928 kmem_free(attr, sizeof (zap_attribute_t));
2929 return (err);
2930 }
2931 }
2932
2933 /*
2934 * Iterate over all snapshots.
2935 */
2936 if (flags & DS_FIND_SNAPSHOTS) {
2937 err = dsl_dataset_hold_obj(dp, thisobj, FTAG, &ds);
2938
2939 if (err == 0) {
2940 uint64_t snapobj;
2941
2942 snapobj = dsl_dataset_phys(ds)->ds_snapnames_zapobj;
2943 dsl_dataset_rele(ds, FTAG);
2944
2945 for (zap_cursor_init(&zc, dp->dp_meta_objset, snapobj);
2946 zap_cursor_retrieve(&zc, attr) == 0;
2947 (void) zap_cursor_advance(&zc)) {
2948 ASSERT3U(attr->za_integer_length, ==,
2949 sizeof (uint64_t));
2950 ASSERT3U(attr->za_num_integers, ==, 1);
2951
2952 child = kmem_asprintf("%s@%s",
2953 name, attr->za_name);
2954 dsl_pool_config_exit(dp, FTAG);
2955 err = func(child, arg);
2956 dsl_pool_config_enter(dp, FTAG);
2957 kmem_strfree(child);
2958 if (err != 0)
2959 break;
2960 }
2961 zap_cursor_fini(&zc);
2962 }
2963 }
2964
2965 dsl_dir_rele(dd, FTAG);
2966 kmem_free(attr, sizeof (zap_attribute_t));
2967 dsl_pool_config_exit(dp, FTAG);
2968
2969 if (err != 0)
2970 return (err);
2971
2972 /* Apply to self. */
2973 return (func(name, arg));
2974 }
2975
2976 /*
2977 * See comment above dmu_objset_find_impl().
2978 */
2979 int
dmu_objset_find(const char * name,int func (const char *,void *),void * arg,int flags)2980 dmu_objset_find(const char *name, int func(const char *, void *), void *arg,
2981 int flags)
2982 {
2983 spa_t *spa;
2984 int error;
2985
2986 error = spa_open(name, &spa, FTAG);
2987 if (error != 0)
2988 return (error);
2989 error = dmu_objset_find_impl(spa, name, func, arg, flags);
2990 spa_close(spa, FTAG);
2991 return (error);
2992 }
2993
2994 boolean_t
dmu_objset_incompatible_encryption_version(objset_t * os)2995 dmu_objset_incompatible_encryption_version(objset_t *os)
2996 {
2997 return (dsl_dir_incompatible_encryption_version(
2998 os->os_dsl_dataset->ds_dir));
2999 }
3000
3001 void
dmu_objset_set_user(objset_t * os,void * user_ptr)3002 dmu_objset_set_user(objset_t *os, void *user_ptr)
3003 {
3004 ASSERT(MUTEX_HELD(&os->os_user_ptr_lock));
3005 os->os_user_ptr = user_ptr;
3006 }
3007
3008 void *
dmu_objset_get_user(objset_t * os)3009 dmu_objset_get_user(objset_t *os)
3010 {
3011 ASSERT(MUTEX_HELD(&os->os_user_ptr_lock));
3012 return (os->os_user_ptr);
3013 }
3014
3015 /*
3016 * Determine name of filesystem, given name of snapshot.
3017 * buf must be at least ZFS_MAX_DATASET_NAME_LEN bytes
3018 */
3019 int
dmu_fsname(const char * snapname,char * buf)3020 dmu_fsname(const char *snapname, char *buf)
3021 {
3022 char *atp = strchr(snapname, '@');
3023 if (atp == NULL)
3024 return (SET_ERROR(EINVAL));
3025 if (atp - snapname >= ZFS_MAX_DATASET_NAME_LEN)
3026 return (SET_ERROR(ENAMETOOLONG));
3027 (void) strlcpy(buf, snapname, atp - snapname + 1);
3028 return (0);
3029 }
3030
3031 /*
3032 * Call when we think we're going to write/free space in open context
3033 * to track the amount of dirty data in the open txg, which is also the
3034 * amount of memory that can not be evicted until this txg syncs.
3035 *
3036 * Note that there are two conditions where this can be called from
3037 * syncing context:
3038 *
3039 * [1] When we just created the dataset, in which case we go on with
3040 * updating any accounting of dirty data as usual.
3041 * [2] When we are dirtying MOS data, in which case we only update the
3042 * pool's accounting of dirty data.
3043 */
3044 void
dmu_objset_willuse_space(objset_t * os,int64_t space,dmu_tx_t * tx)3045 dmu_objset_willuse_space(objset_t *os, int64_t space, dmu_tx_t *tx)
3046 {
3047 dsl_dataset_t *ds = os->os_dsl_dataset;
3048 int64_t aspace = spa_get_worst_case_asize(os->os_spa, space);
3049
3050 if (ds != NULL) {
3051 dsl_dir_willuse_space(ds->ds_dir, aspace, tx);
3052 }
3053
3054 dsl_pool_dirty_space(dmu_tx_pool(tx), space, tx);
3055 }
3056
3057 #if defined(_KERNEL)
3058 EXPORT_SYMBOL(dmu_objset_zil);
3059 EXPORT_SYMBOL(dmu_objset_pool);
3060 EXPORT_SYMBOL(dmu_objset_ds);
3061 EXPORT_SYMBOL(dmu_objset_type);
3062 EXPORT_SYMBOL(dmu_objset_name);
3063 EXPORT_SYMBOL(dmu_objset_hold);
3064 EXPORT_SYMBOL(dmu_objset_hold_flags);
3065 EXPORT_SYMBOL(dmu_objset_own);
3066 EXPORT_SYMBOL(dmu_objset_rele);
3067 EXPORT_SYMBOL(dmu_objset_rele_flags);
3068 EXPORT_SYMBOL(dmu_objset_disown);
3069 EXPORT_SYMBOL(dmu_objset_from_ds);
3070 EXPORT_SYMBOL(dmu_objset_create);
3071 EXPORT_SYMBOL(dmu_objset_clone);
3072 EXPORT_SYMBOL(dmu_objset_stats);
3073 EXPORT_SYMBOL(dmu_objset_fast_stat);
3074 EXPORT_SYMBOL(dmu_objset_spa);
3075 EXPORT_SYMBOL(dmu_objset_space);
3076 EXPORT_SYMBOL(dmu_objset_fsid_guid);
3077 EXPORT_SYMBOL(dmu_objset_find);
3078 EXPORT_SYMBOL(dmu_objset_byteswap);
3079 EXPORT_SYMBOL(dmu_objset_evict_dbufs);
3080 EXPORT_SYMBOL(dmu_objset_snap_cmtime);
3081 EXPORT_SYMBOL(dmu_objset_dnodesize);
3082
3083 EXPORT_SYMBOL(dmu_objset_sync);
3084 EXPORT_SYMBOL(dmu_objset_is_dirty);
3085 EXPORT_SYMBOL(dmu_objset_create_impl_dnstats);
3086 EXPORT_SYMBOL(dmu_objset_create_impl);
3087 EXPORT_SYMBOL(dmu_objset_open_impl);
3088 EXPORT_SYMBOL(dmu_objset_evict);
3089 EXPORT_SYMBOL(dmu_objset_register_type);
3090 EXPORT_SYMBOL(dmu_objset_sync_done);
3091 EXPORT_SYMBOL(dmu_objset_userquota_get_ids);
3092 EXPORT_SYMBOL(dmu_objset_userused_enabled);
3093 EXPORT_SYMBOL(dmu_objset_userspace_upgrade);
3094 EXPORT_SYMBOL(dmu_objset_userspace_present);
3095 EXPORT_SYMBOL(dmu_objset_userobjused_enabled);
3096 EXPORT_SYMBOL(dmu_objset_userobjspace_upgradable);
3097 EXPORT_SYMBOL(dmu_objset_userobjspace_present);
3098 EXPORT_SYMBOL(dmu_objset_projectquota_enabled);
3099 EXPORT_SYMBOL(dmu_objset_projectquota_present);
3100 EXPORT_SYMBOL(dmu_objset_projectquota_upgradable);
3101 EXPORT_SYMBOL(dmu_objset_id_quota_upgrade);
3102 #endif
3103