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