xref: /freebsd-src/sys/contrib/openzfs/module/zfs/dmu.c (revision 681ce946f33e75c590e97c53076e86dff1fe8f4a)
1eda14cbcSMatt Macy /*
2eda14cbcSMatt Macy  * CDDL HEADER START
3eda14cbcSMatt Macy  *
4eda14cbcSMatt Macy  * The contents of this file are subject to the terms of the
5eda14cbcSMatt Macy  * Common Development and Distribution License (the "License").
6eda14cbcSMatt Macy  * You may not use this file except in compliance with the License.
7eda14cbcSMatt Macy  *
8eda14cbcSMatt Macy  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9eda14cbcSMatt Macy  * or http://www.opensolaris.org/os/licensing.
10eda14cbcSMatt Macy  * See the License for the specific language governing permissions
11eda14cbcSMatt Macy  * and limitations under the License.
12eda14cbcSMatt Macy  *
13eda14cbcSMatt Macy  * When distributing Covered Code, include this CDDL HEADER in each
14eda14cbcSMatt Macy  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15eda14cbcSMatt Macy  * If applicable, add the following below this CDDL HEADER, with the
16eda14cbcSMatt Macy  * fields enclosed by brackets "[]" replaced with your own identifying
17eda14cbcSMatt Macy  * information: Portions Copyright [yyyy] [name of copyright owner]
18eda14cbcSMatt Macy  *
19eda14cbcSMatt Macy  * CDDL HEADER END
20eda14cbcSMatt Macy  */
21eda14cbcSMatt Macy /*
22eda14cbcSMatt Macy  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23eda14cbcSMatt Macy  * Copyright (c) 2011, 2020 by Delphix. All rights reserved.
24eda14cbcSMatt Macy  * Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
25eda14cbcSMatt Macy  * Copyright (c) 2013, Joyent, Inc. All rights reserved.
26eda14cbcSMatt Macy  * Copyright (c) 2016, Nexenta Systems, Inc. All rights reserved.
27eda14cbcSMatt Macy  * Copyright (c) 2015 by Chunwei Chen. All rights reserved.
28eda14cbcSMatt Macy  * Copyright (c) 2019 Datto Inc.
29eda14cbcSMatt Macy  * Copyright (c) 2019, Klara Inc.
30eda14cbcSMatt Macy  * Copyright (c) 2019, Allan Jude
31eda14cbcSMatt Macy  */
32eda14cbcSMatt Macy 
33eda14cbcSMatt Macy #include <sys/dmu.h>
34eda14cbcSMatt Macy #include <sys/dmu_impl.h>
35eda14cbcSMatt Macy #include <sys/dmu_tx.h>
36eda14cbcSMatt Macy #include <sys/dbuf.h>
37eda14cbcSMatt Macy #include <sys/dnode.h>
38eda14cbcSMatt Macy #include <sys/zfs_context.h>
39eda14cbcSMatt Macy #include <sys/dmu_objset.h>
40eda14cbcSMatt Macy #include <sys/dmu_traverse.h>
41eda14cbcSMatt Macy #include <sys/dsl_dataset.h>
42eda14cbcSMatt Macy #include <sys/dsl_dir.h>
43eda14cbcSMatt Macy #include <sys/dsl_pool.h>
44eda14cbcSMatt Macy #include <sys/dsl_synctask.h>
45eda14cbcSMatt Macy #include <sys/dsl_prop.h>
46eda14cbcSMatt Macy #include <sys/dmu_zfetch.h>
47eda14cbcSMatt Macy #include <sys/zfs_ioctl.h>
48eda14cbcSMatt Macy #include <sys/zap.h>
49eda14cbcSMatt Macy #include <sys/zio_checksum.h>
50eda14cbcSMatt Macy #include <sys/zio_compress.h>
51eda14cbcSMatt Macy #include <sys/sa.h>
52eda14cbcSMatt Macy #include <sys/zfeature.h>
53eda14cbcSMatt Macy #include <sys/abd.h>
54eda14cbcSMatt Macy #include <sys/trace_zfs.h>
55ba27dd8bSMartin Matuska #include <sys/zfs_racct.h>
56eda14cbcSMatt Macy #include <sys/zfs_rlock.h>
57eda14cbcSMatt Macy #ifdef _KERNEL
58eda14cbcSMatt Macy #include <sys/vmsystm.h>
59eda14cbcSMatt Macy #include <sys/zfs_znode.h>
60eda14cbcSMatt Macy #endif
61eda14cbcSMatt Macy 
62eda14cbcSMatt Macy /*
63eda14cbcSMatt Macy  * Enable/disable nopwrite feature.
64eda14cbcSMatt Macy  */
65eda14cbcSMatt Macy int zfs_nopwrite_enabled = 1;
66eda14cbcSMatt Macy 
67eda14cbcSMatt Macy /*
68eda14cbcSMatt Macy  * Tunable to control percentage of dirtied L1 blocks from frees allowed into
69eda14cbcSMatt Macy  * one TXG. After this threshold is crossed, additional dirty blocks from frees
70eda14cbcSMatt Macy  * will wait until the next TXG.
71eda14cbcSMatt Macy  * A value of zero will disable this throttle.
72eda14cbcSMatt Macy  */
73eda14cbcSMatt Macy unsigned long zfs_per_txg_dirty_frees_percent = 5;
74eda14cbcSMatt Macy 
75eda14cbcSMatt Macy /*
76*681ce946SMartin Matuska  * Enable/disable forcing txg sync when dirty checking for holes with lseek().
77*681ce946SMartin Matuska  * By default this is enabled to ensure accurate hole reporting, it can result
78*681ce946SMartin Matuska  * in a significant performance penalty for lseek(SEEK_HOLE) heavy workloads.
79*681ce946SMartin Matuska  * Disabling this option will result in holes never being reported in dirty
80*681ce946SMartin Matuska  * files which is always safe.
81eda14cbcSMatt Macy  */
82*681ce946SMartin Matuska int zfs_dmu_offset_next_sync = 1;
83eda14cbcSMatt Macy 
84eda14cbcSMatt Macy /*
85eda14cbcSMatt Macy  * Limit the amount we can prefetch with one call to this amount.  This
86eda14cbcSMatt Macy  * helps to limit the amount of memory that can be used by prefetching.
87eda14cbcSMatt Macy  * Larger objects should be prefetched a bit at a time.
88eda14cbcSMatt Macy  */
89eda14cbcSMatt Macy int dmu_prefetch_max = 8 * SPA_MAXBLOCKSIZE;
90eda14cbcSMatt Macy 
91eda14cbcSMatt Macy const dmu_object_type_info_t dmu_ot[DMU_OT_NUMTYPES] = {
92eda14cbcSMatt Macy 	{DMU_BSWAP_UINT8,  TRUE,  FALSE, FALSE, "unallocated"		},
93eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  TRUE,  FALSE, "object directory"	},
94eda14cbcSMatt Macy 	{DMU_BSWAP_UINT64, TRUE,  TRUE,  FALSE, "object array"		},
95eda14cbcSMatt Macy 	{DMU_BSWAP_UINT8,  TRUE,  FALSE, FALSE, "packed nvlist"		},
96eda14cbcSMatt Macy 	{DMU_BSWAP_UINT64, TRUE,  FALSE, FALSE, "packed nvlist size"	},
97eda14cbcSMatt Macy 	{DMU_BSWAP_UINT64, TRUE,  FALSE, FALSE, "bpobj"			},
98eda14cbcSMatt Macy 	{DMU_BSWAP_UINT64, TRUE,  FALSE, FALSE, "bpobj header"		},
99eda14cbcSMatt Macy 	{DMU_BSWAP_UINT64, TRUE,  FALSE, FALSE, "SPA space map header"	},
100eda14cbcSMatt Macy 	{DMU_BSWAP_UINT64, TRUE,  FALSE, FALSE, "SPA space map"		},
101eda14cbcSMatt Macy 	{DMU_BSWAP_UINT64, TRUE,  FALSE, TRUE,  "ZIL intent log"	},
102eda14cbcSMatt Macy 	{DMU_BSWAP_DNODE,  TRUE,  FALSE, TRUE,  "DMU dnode"		},
103eda14cbcSMatt Macy 	{DMU_BSWAP_OBJSET, TRUE,  TRUE,  FALSE, "DMU objset"		},
104eda14cbcSMatt Macy 	{DMU_BSWAP_UINT64, TRUE,  TRUE,  FALSE, "DSL directory"		},
105eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  TRUE,  FALSE, "DSL directory child map"},
106eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  TRUE,  FALSE, "DSL dataset snap map"	},
107eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  TRUE,  FALSE, "DSL props"		},
108eda14cbcSMatt Macy 	{DMU_BSWAP_UINT64, TRUE,  TRUE,  FALSE, "DSL dataset"		},
109eda14cbcSMatt Macy 	{DMU_BSWAP_ZNODE,  TRUE,  FALSE, FALSE, "ZFS znode"		},
110eda14cbcSMatt Macy 	{DMU_BSWAP_OLDACL, TRUE,  FALSE, TRUE,  "ZFS V0 ACL"		},
111eda14cbcSMatt Macy 	{DMU_BSWAP_UINT8,  FALSE, FALSE, TRUE,  "ZFS plain file"	},
112eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, TRUE,  "ZFS directory"		},
113eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, FALSE, "ZFS master node"	},
114eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, TRUE,  "ZFS delete queue"	},
115eda14cbcSMatt Macy 	{DMU_BSWAP_UINT8,  FALSE, FALSE, TRUE,  "zvol object"		},
116eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, FALSE, "zvol prop"		},
117eda14cbcSMatt Macy 	{DMU_BSWAP_UINT8,  FALSE, FALSE, TRUE,  "other uint8[]"		},
118eda14cbcSMatt Macy 	{DMU_BSWAP_UINT64, FALSE, FALSE, TRUE,  "other uint64[]"	},
119eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, FALSE, "other ZAP"		},
120eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, FALSE, "persistent error log"	},
121eda14cbcSMatt Macy 	{DMU_BSWAP_UINT8,  TRUE,  FALSE, FALSE, "SPA history"		},
122eda14cbcSMatt Macy 	{DMU_BSWAP_UINT64, TRUE,  FALSE, FALSE, "SPA history offsets"	},
123eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  TRUE,  FALSE, "Pool properties"	},
124eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  TRUE,  FALSE, "DSL permissions"	},
125eda14cbcSMatt Macy 	{DMU_BSWAP_ACL,    TRUE,  FALSE, TRUE,  "ZFS ACL"		},
126eda14cbcSMatt Macy 	{DMU_BSWAP_UINT8,  TRUE,  FALSE, TRUE,  "ZFS SYSACL"		},
127eda14cbcSMatt Macy 	{DMU_BSWAP_UINT8,  TRUE,  FALSE, TRUE,  "FUID table"		},
128eda14cbcSMatt Macy 	{DMU_BSWAP_UINT64, TRUE,  FALSE, FALSE, "FUID table size"	},
129eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  TRUE,  FALSE, "DSL dataset next clones"},
130eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, FALSE, "scan work queue"	},
131eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, TRUE,  "ZFS user/group/project used" },
132eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, TRUE,  "ZFS user/group/project quota"},
133eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  TRUE,  FALSE, "snapshot refcount tags"},
134eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, FALSE, "DDT ZAP algorithm"	},
135eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, FALSE, "DDT statistics"	},
136eda14cbcSMatt Macy 	{DMU_BSWAP_UINT8,  TRUE,  FALSE, TRUE,	"System attributes"	},
137eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, TRUE,	"SA master node"	},
138eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, TRUE,	"SA attr registration"	},
139eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, TRUE,	"SA attr layouts"	},
140eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  FALSE, FALSE, "scan translations"	},
141eda14cbcSMatt Macy 	{DMU_BSWAP_UINT8,  FALSE, FALSE, TRUE,  "deduplicated block"	},
142eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  TRUE,  FALSE, "DSL deadlist map"	},
143eda14cbcSMatt Macy 	{DMU_BSWAP_UINT64, TRUE,  TRUE,  FALSE, "DSL deadlist map hdr"	},
144eda14cbcSMatt Macy 	{DMU_BSWAP_ZAP,    TRUE,  TRUE,  FALSE, "DSL dir clones"	},
145eda14cbcSMatt Macy 	{DMU_BSWAP_UINT64, TRUE,  FALSE, FALSE, "bpobj subobj"		}
146eda14cbcSMatt Macy };
147eda14cbcSMatt Macy 
148eda14cbcSMatt Macy const dmu_object_byteswap_info_t dmu_ot_byteswap[DMU_BSWAP_NUMFUNCS] = {
149eda14cbcSMatt Macy 	{	byteswap_uint8_array,	"uint8"		},
150eda14cbcSMatt Macy 	{	byteswap_uint16_array,	"uint16"	},
151eda14cbcSMatt Macy 	{	byteswap_uint32_array,	"uint32"	},
152eda14cbcSMatt Macy 	{	byteswap_uint64_array,	"uint64"	},
153eda14cbcSMatt Macy 	{	zap_byteswap,		"zap"		},
154eda14cbcSMatt Macy 	{	dnode_buf_byteswap,	"dnode"		},
155eda14cbcSMatt Macy 	{	dmu_objset_byteswap,	"objset"	},
156eda14cbcSMatt Macy 	{	zfs_znode_byteswap,	"znode"		},
157eda14cbcSMatt Macy 	{	zfs_oldacl_byteswap,	"oldacl"	},
158eda14cbcSMatt Macy 	{	zfs_acl_byteswap,	"acl"		}
159eda14cbcSMatt Macy };
160eda14cbcSMatt Macy 
161eda14cbcSMatt Macy static int
162eda14cbcSMatt Macy dmu_buf_hold_noread_by_dnode(dnode_t *dn, uint64_t offset,
163eda14cbcSMatt Macy     void *tag, dmu_buf_t **dbp)
164eda14cbcSMatt Macy {
165eda14cbcSMatt Macy 	uint64_t blkid;
166eda14cbcSMatt Macy 	dmu_buf_impl_t *db;
167eda14cbcSMatt Macy 
168eda14cbcSMatt Macy 	rw_enter(&dn->dn_struct_rwlock, RW_READER);
169eda14cbcSMatt Macy 	blkid = dbuf_whichblock(dn, 0, offset);
170eda14cbcSMatt Macy 	db = dbuf_hold(dn, blkid, tag);
171eda14cbcSMatt Macy 	rw_exit(&dn->dn_struct_rwlock);
172eda14cbcSMatt Macy 
173eda14cbcSMatt Macy 	if (db == NULL) {
174eda14cbcSMatt Macy 		*dbp = NULL;
175eda14cbcSMatt Macy 		return (SET_ERROR(EIO));
176eda14cbcSMatt Macy 	}
177eda14cbcSMatt Macy 
178eda14cbcSMatt Macy 	*dbp = &db->db;
179eda14cbcSMatt Macy 	return (0);
180eda14cbcSMatt Macy }
181eda14cbcSMatt Macy int
182eda14cbcSMatt Macy dmu_buf_hold_noread(objset_t *os, uint64_t object, uint64_t offset,
183eda14cbcSMatt Macy     void *tag, dmu_buf_t **dbp)
184eda14cbcSMatt Macy {
185eda14cbcSMatt Macy 	dnode_t *dn;
186eda14cbcSMatt Macy 	uint64_t blkid;
187eda14cbcSMatt Macy 	dmu_buf_impl_t *db;
188eda14cbcSMatt Macy 	int err;
189eda14cbcSMatt Macy 
190eda14cbcSMatt Macy 	err = dnode_hold(os, object, FTAG, &dn);
191eda14cbcSMatt Macy 	if (err)
192eda14cbcSMatt Macy 		return (err);
193eda14cbcSMatt Macy 	rw_enter(&dn->dn_struct_rwlock, RW_READER);
194eda14cbcSMatt Macy 	blkid = dbuf_whichblock(dn, 0, offset);
195eda14cbcSMatt Macy 	db = dbuf_hold(dn, blkid, tag);
196eda14cbcSMatt Macy 	rw_exit(&dn->dn_struct_rwlock);
197eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
198eda14cbcSMatt Macy 
199eda14cbcSMatt Macy 	if (db == NULL) {
200eda14cbcSMatt Macy 		*dbp = NULL;
201eda14cbcSMatt Macy 		return (SET_ERROR(EIO));
202eda14cbcSMatt Macy 	}
203eda14cbcSMatt Macy 
204eda14cbcSMatt Macy 	*dbp = &db->db;
205eda14cbcSMatt Macy 	return (err);
206eda14cbcSMatt Macy }
207eda14cbcSMatt Macy 
208eda14cbcSMatt Macy int
209eda14cbcSMatt Macy dmu_buf_hold_by_dnode(dnode_t *dn, uint64_t offset,
210eda14cbcSMatt Macy     void *tag, dmu_buf_t **dbp, int flags)
211eda14cbcSMatt Macy {
212eda14cbcSMatt Macy 	int err;
213eda14cbcSMatt Macy 	int db_flags = DB_RF_CANFAIL;
214eda14cbcSMatt Macy 
215eda14cbcSMatt Macy 	if (flags & DMU_READ_NO_PREFETCH)
216eda14cbcSMatt Macy 		db_flags |= DB_RF_NOPREFETCH;
217eda14cbcSMatt Macy 	if (flags & DMU_READ_NO_DECRYPT)
218eda14cbcSMatt Macy 		db_flags |= DB_RF_NO_DECRYPT;
219eda14cbcSMatt Macy 
220eda14cbcSMatt Macy 	err = dmu_buf_hold_noread_by_dnode(dn, offset, tag, dbp);
221eda14cbcSMatt Macy 	if (err == 0) {
222eda14cbcSMatt Macy 		dmu_buf_impl_t *db = (dmu_buf_impl_t *)(*dbp);
223eda14cbcSMatt Macy 		err = dbuf_read(db, NULL, db_flags);
224eda14cbcSMatt Macy 		if (err != 0) {
225eda14cbcSMatt Macy 			dbuf_rele(db, tag);
226eda14cbcSMatt Macy 			*dbp = NULL;
227eda14cbcSMatt Macy 		}
228eda14cbcSMatt Macy 	}
229eda14cbcSMatt Macy 
230eda14cbcSMatt Macy 	return (err);
231eda14cbcSMatt Macy }
232eda14cbcSMatt Macy 
233eda14cbcSMatt Macy int
234eda14cbcSMatt Macy dmu_buf_hold(objset_t *os, uint64_t object, uint64_t offset,
235eda14cbcSMatt Macy     void *tag, dmu_buf_t **dbp, int flags)
236eda14cbcSMatt Macy {
237eda14cbcSMatt Macy 	int err;
238eda14cbcSMatt Macy 	int db_flags = DB_RF_CANFAIL;
239eda14cbcSMatt Macy 
240eda14cbcSMatt Macy 	if (flags & DMU_READ_NO_PREFETCH)
241eda14cbcSMatt Macy 		db_flags |= DB_RF_NOPREFETCH;
242eda14cbcSMatt Macy 	if (flags & DMU_READ_NO_DECRYPT)
243eda14cbcSMatt Macy 		db_flags |= DB_RF_NO_DECRYPT;
244eda14cbcSMatt Macy 
245eda14cbcSMatt Macy 	err = dmu_buf_hold_noread(os, object, offset, tag, dbp);
246eda14cbcSMatt Macy 	if (err == 0) {
247eda14cbcSMatt Macy 		dmu_buf_impl_t *db = (dmu_buf_impl_t *)(*dbp);
248eda14cbcSMatt Macy 		err = dbuf_read(db, NULL, db_flags);
249eda14cbcSMatt Macy 		if (err != 0) {
250eda14cbcSMatt Macy 			dbuf_rele(db, tag);
251eda14cbcSMatt Macy 			*dbp = NULL;
252eda14cbcSMatt Macy 		}
253eda14cbcSMatt Macy 	}
254eda14cbcSMatt Macy 
255eda14cbcSMatt Macy 	return (err);
256eda14cbcSMatt Macy }
257eda14cbcSMatt Macy 
258eda14cbcSMatt Macy int
259eda14cbcSMatt Macy dmu_bonus_max(void)
260eda14cbcSMatt Macy {
261eda14cbcSMatt Macy 	return (DN_OLD_MAX_BONUSLEN);
262eda14cbcSMatt Macy }
263eda14cbcSMatt Macy 
264eda14cbcSMatt Macy int
265eda14cbcSMatt Macy dmu_set_bonus(dmu_buf_t *db_fake, int newsize, dmu_tx_t *tx)
266eda14cbcSMatt Macy {
267eda14cbcSMatt Macy 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
268eda14cbcSMatt Macy 	dnode_t *dn;
269eda14cbcSMatt Macy 	int error;
270eda14cbcSMatt Macy 
271eda14cbcSMatt Macy 	DB_DNODE_ENTER(db);
272eda14cbcSMatt Macy 	dn = DB_DNODE(db);
273eda14cbcSMatt Macy 
274eda14cbcSMatt Macy 	if (dn->dn_bonus != db) {
275eda14cbcSMatt Macy 		error = SET_ERROR(EINVAL);
276eda14cbcSMatt Macy 	} else if (newsize < 0 || newsize > db_fake->db_size) {
277eda14cbcSMatt Macy 		error = SET_ERROR(EINVAL);
278eda14cbcSMatt Macy 	} else {
279eda14cbcSMatt Macy 		dnode_setbonuslen(dn, newsize, tx);
280eda14cbcSMatt Macy 		error = 0;
281eda14cbcSMatt Macy 	}
282eda14cbcSMatt Macy 
283eda14cbcSMatt Macy 	DB_DNODE_EXIT(db);
284eda14cbcSMatt Macy 	return (error);
285eda14cbcSMatt Macy }
286eda14cbcSMatt Macy 
287eda14cbcSMatt Macy int
288eda14cbcSMatt Macy dmu_set_bonustype(dmu_buf_t *db_fake, dmu_object_type_t type, dmu_tx_t *tx)
289eda14cbcSMatt Macy {
290eda14cbcSMatt Macy 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
291eda14cbcSMatt Macy 	dnode_t *dn;
292eda14cbcSMatt Macy 	int error;
293eda14cbcSMatt Macy 
294eda14cbcSMatt Macy 	DB_DNODE_ENTER(db);
295eda14cbcSMatt Macy 	dn = DB_DNODE(db);
296eda14cbcSMatt Macy 
297eda14cbcSMatt Macy 	if (!DMU_OT_IS_VALID(type)) {
298eda14cbcSMatt Macy 		error = SET_ERROR(EINVAL);
299eda14cbcSMatt Macy 	} else if (dn->dn_bonus != db) {
300eda14cbcSMatt Macy 		error = SET_ERROR(EINVAL);
301eda14cbcSMatt Macy 	} else {
302eda14cbcSMatt Macy 		dnode_setbonus_type(dn, type, tx);
303eda14cbcSMatt Macy 		error = 0;
304eda14cbcSMatt Macy 	}
305eda14cbcSMatt Macy 
306eda14cbcSMatt Macy 	DB_DNODE_EXIT(db);
307eda14cbcSMatt Macy 	return (error);
308eda14cbcSMatt Macy }
309eda14cbcSMatt Macy 
310eda14cbcSMatt Macy dmu_object_type_t
311eda14cbcSMatt Macy dmu_get_bonustype(dmu_buf_t *db_fake)
312eda14cbcSMatt Macy {
313eda14cbcSMatt Macy 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
314eda14cbcSMatt Macy 	dnode_t *dn;
315eda14cbcSMatt Macy 	dmu_object_type_t type;
316eda14cbcSMatt Macy 
317eda14cbcSMatt Macy 	DB_DNODE_ENTER(db);
318eda14cbcSMatt Macy 	dn = DB_DNODE(db);
319eda14cbcSMatt Macy 	type = dn->dn_bonustype;
320eda14cbcSMatt Macy 	DB_DNODE_EXIT(db);
321eda14cbcSMatt Macy 
322eda14cbcSMatt Macy 	return (type);
323eda14cbcSMatt Macy }
324eda14cbcSMatt Macy 
325eda14cbcSMatt Macy int
326eda14cbcSMatt Macy dmu_rm_spill(objset_t *os, uint64_t object, dmu_tx_t *tx)
327eda14cbcSMatt Macy {
328eda14cbcSMatt Macy 	dnode_t *dn;
329eda14cbcSMatt Macy 	int error;
330eda14cbcSMatt Macy 
331eda14cbcSMatt Macy 	error = dnode_hold(os, object, FTAG, &dn);
332eda14cbcSMatt Macy 	dbuf_rm_spill(dn, tx);
333eda14cbcSMatt Macy 	rw_enter(&dn->dn_struct_rwlock, RW_WRITER);
334eda14cbcSMatt Macy 	dnode_rm_spill(dn, tx);
335eda14cbcSMatt Macy 	rw_exit(&dn->dn_struct_rwlock);
336eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
337eda14cbcSMatt Macy 	return (error);
338eda14cbcSMatt Macy }
339eda14cbcSMatt Macy 
340eda14cbcSMatt Macy /*
341eda14cbcSMatt Macy  * Lookup and hold the bonus buffer for the provided dnode.  If the dnode
342eda14cbcSMatt Macy  * has not yet been allocated a new bonus dbuf a will be allocated.
343eda14cbcSMatt Macy  * Returns ENOENT, EIO, or 0.
344eda14cbcSMatt Macy  */
345eda14cbcSMatt Macy int dmu_bonus_hold_by_dnode(dnode_t *dn, void *tag, dmu_buf_t **dbp,
346eda14cbcSMatt Macy     uint32_t flags)
347eda14cbcSMatt Macy {
348eda14cbcSMatt Macy 	dmu_buf_impl_t *db;
349eda14cbcSMatt Macy 	int error;
350eda14cbcSMatt Macy 	uint32_t db_flags = DB_RF_MUST_SUCCEED;
351eda14cbcSMatt Macy 
352eda14cbcSMatt Macy 	if (flags & DMU_READ_NO_PREFETCH)
353eda14cbcSMatt Macy 		db_flags |= DB_RF_NOPREFETCH;
354eda14cbcSMatt Macy 	if (flags & DMU_READ_NO_DECRYPT)
355eda14cbcSMatt Macy 		db_flags |= DB_RF_NO_DECRYPT;
356eda14cbcSMatt Macy 
357eda14cbcSMatt Macy 	rw_enter(&dn->dn_struct_rwlock, RW_READER);
358eda14cbcSMatt Macy 	if (dn->dn_bonus == NULL) {
359eda14cbcSMatt Macy 		rw_exit(&dn->dn_struct_rwlock);
360eda14cbcSMatt Macy 		rw_enter(&dn->dn_struct_rwlock, RW_WRITER);
361eda14cbcSMatt Macy 		if (dn->dn_bonus == NULL)
362eda14cbcSMatt Macy 			dbuf_create_bonus(dn);
363eda14cbcSMatt Macy 	}
364eda14cbcSMatt Macy 	db = dn->dn_bonus;
365eda14cbcSMatt Macy 
366eda14cbcSMatt Macy 	/* as long as the bonus buf is held, the dnode will be held */
367eda14cbcSMatt Macy 	if (zfs_refcount_add(&db->db_holds, tag) == 1) {
368eda14cbcSMatt Macy 		VERIFY(dnode_add_ref(dn, db));
369eda14cbcSMatt Macy 		atomic_inc_32(&dn->dn_dbufs_count);
370eda14cbcSMatt Macy 	}
371eda14cbcSMatt Macy 
372eda14cbcSMatt Macy 	/*
373eda14cbcSMatt Macy 	 * Wait to drop dn_struct_rwlock until after adding the bonus dbuf's
374eda14cbcSMatt Macy 	 * hold and incrementing the dbuf count to ensure that dnode_move() sees
375eda14cbcSMatt Macy 	 * a dnode hold for every dbuf.
376eda14cbcSMatt Macy 	 */
377eda14cbcSMatt Macy 	rw_exit(&dn->dn_struct_rwlock);
378eda14cbcSMatt Macy 
379eda14cbcSMatt Macy 	error = dbuf_read(db, NULL, db_flags);
380eda14cbcSMatt Macy 	if (error) {
381eda14cbcSMatt Macy 		dnode_evict_bonus(dn);
382eda14cbcSMatt Macy 		dbuf_rele(db, tag);
383eda14cbcSMatt Macy 		*dbp = NULL;
384eda14cbcSMatt Macy 		return (error);
385eda14cbcSMatt Macy 	}
386eda14cbcSMatt Macy 
387eda14cbcSMatt Macy 	*dbp = &db->db;
388eda14cbcSMatt Macy 	return (0);
389eda14cbcSMatt Macy }
390eda14cbcSMatt Macy 
391eda14cbcSMatt Macy int
392eda14cbcSMatt Macy dmu_bonus_hold(objset_t *os, uint64_t object, void *tag, dmu_buf_t **dbp)
393eda14cbcSMatt Macy {
394eda14cbcSMatt Macy 	dnode_t *dn;
395eda14cbcSMatt Macy 	int error;
396eda14cbcSMatt Macy 
397eda14cbcSMatt Macy 	error = dnode_hold(os, object, FTAG, &dn);
398eda14cbcSMatt Macy 	if (error)
399eda14cbcSMatt Macy 		return (error);
400eda14cbcSMatt Macy 
401eda14cbcSMatt Macy 	error = dmu_bonus_hold_by_dnode(dn, tag, dbp, DMU_READ_NO_PREFETCH);
402eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
403eda14cbcSMatt Macy 
404eda14cbcSMatt Macy 	return (error);
405eda14cbcSMatt Macy }
406eda14cbcSMatt Macy 
407eda14cbcSMatt Macy /*
408eda14cbcSMatt Macy  * returns ENOENT, EIO, or 0.
409eda14cbcSMatt Macy  *
410eda14cbcSMatt Macy  * This interface will allocate a blank spill dbuf when a spill blk
411eda14cbcSMatt Macy  * doesn't already exist on the dnode.
412eda14cbcSMatt Macy  *
413eda14cbcSMatt Macy  * if you only want to find an already existing spill db, then
414eda14cbcSMatt Macy  * dmu_spill_hold_existing() should be used.
415eda14cbcSMatt Macy  */
416eda14cbcSMatt Macy int
417eda14cbcSMatt Macy dmu_spill_hold_by_dnode(dnode_t *dn, uint32_t flags, void *tag, dmu_buf_t **dbp)
418eda14cbcSMatt Macy {
419eda14cbcSMatt Macy 	dmu_buf_impl_t *db = NULL;
420eda14cbcSMatt Macy 	int err;
421eda14cbcSMatt Macy 
422eda14cbcSMatt Macy 	if ((flags & DB_RF_HAVESTRUCT) == 0)
423eda14cbcSMatt Macy 		rw_enter(&dn->dn_struct_rwlock, RW_READER);
424eda14cbcSMatt Macy 
425eda14cbcSMatt Macy 	db = dbuf_hold(dn, DMU_SPILL_BLKID, tag);
426eda14cbcSMatt Macy 
427eda14cbcSMatt Macy 	if ((flags & DB_RF_HAVESTRUCT) == 0)
428eda14cbcSMatt Macy 		rw_exit(&dn->dn_struct_rwlock);
429eda14cbcSMatt Macy 
430eda14cbcSMatt Macy 	if (db == NULL) {
431eda14cbcSMatt Macy 		*dbp = NULL;
432eda14cbcSMatt Macy 		return (SET_ERROR(EIO));
433eda14cbcSMatt Macy 	}
434eda14cbcSMatt Macy 	err = dbuf_read(db, NULL, flags);
435eda14cbcSMatt Macy 	if (err == 0)
436eda14cbcSMatt Macy 		*dbp = &db->db;
437eda14cbcSMatt Macy 	else {
438eda14cbcSMatt Macy 		dbuf_rele(db, tag);
439eda14cbcSMatt Macy 		*dbp = NULL;
440eda14cbcSMatt Macy 	}
441eda14cbcSMatt Macy 	return (err);
442eda14cbcSMatt Macy }
443eda14cbcSMatt Macy 
444eda14cbcSMatt Macy int
445eda14cbcSMatt Macy dmu_spill_hold_existing(dmu_buf_t *bonus, void *tag, dmu_buf_t **dbp)
446eda14cbcSMatt Macy {
447eda14cbcSMatt Macy 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)bonus;
448eda14cbcSMatt Macy 	dnode_t *dn;
449eda14cbcSMatt Macy 	int err;
450eda14cbcSMatt Macy 
451eda14cbcSMatt Macy 	DB_DNODE_ENTER(db);
452eda14cbcSMatt Macy 	dn = DB_DNODE(db);
453eda14cbcSMatt Macy 
454eda14cbcSMatt Macy 	if (spa_version(dn->dn_objset->os_spa) < SPA_VERSION_SA) {
455eda14cbcSMatt Macy 		err = SET_ERROR(EINVAL);
456eda14cbcSMatt Macy 	} else {
457eda14cbcSMatt Macy 		rw_enter(&dn->dn_struct_rwlock, RW_READER);
458eda14cbcSMatt Macy 
459eda14cbcSMatt Macy 		if (!dn->dn_have_spill) {
460eda14cbcSMatt Macy 			err = SET_ERROR(ENOENT);
461eda14cbcSMatt Macy 		} else {
462eda14cbcSMatt Macy 			err = dmu_spill_hold_by_dnode(dn,
463eda14cbcSMatt Macy 			    DB_RF_HAVESTRUCT | DB_RF_CANFAIL, tag, dbp);
464eda14cbcSMatt Macy 		}
465eda14cbcSMatt Macy 
466eda14cbcSMatt Macy 		rw_exit(&dn->dn_struct_rwlock);
467eda14cbcSMatt Macy 	}
468eda14cbcSMatt Macy 
469eda14cbcSMatt Macy 	DB_DNODE_EXIT(db);
470eda14cbcSMatt Macy 	return (err);
471eda14cbcSMatt Macy }
472eda14cbcSMatt Macy 
473eda14cbcSMatt Macy int
474eda14cbcSMatt Macy dmu_spill_hold_by_bonus(dmu_buf_t *bonus, uint32_t flags, void *tag,
475eda14cbcSMatt Macy     dmu_buf_t **dbp)
476eda14cbcSMatt Macy {
477eda14cbcSMatt Macy 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)bonus;
478eda14cbcSMatt Macy 	dnode_t *dn;
479eda14cbcSMatt Macy 	int err;
480eda14cbcSMatt Macy 	uint32_t db_flags = DB_RF_CANFAIL;
481eda14cbcSMatt Macy 
482eda14cbcSMatt Macy 	if (flags & DMU_READ_NO_DECRYPT)
483eda14cbcSMatt Macy 		db_flags |= DB_RF_NO_DECRYPT;
484eda14cbcSMatt Macy 
485eda14cbcSMatt Macy 	DB_DNODE_ENTER(db);
486eda14cbcSMatt Macy 	dn = DB_DNODE(db);
487eda14cbcSMatt Macy 	err = dmu_spill_hold_by_dnode(dn, db_flags, tag, dbp);
488eda14cbcSMatt Macy 	DB_DNODE_EXIT(db);
489eda14cbcSMatt Macy 
490eda14cbcSMatt Macy 	return (err);
491eda14cbcSMatt Macy }
492eda14cbcSMatt Macy 
493eda14cbcSMatt Macy /*
494eda14cbcSMatt Macy  * Note: longer-term, we should modify all of the dmu_buf_*() interfaces
495eda14cbcSMatt Macy  * to take a held dnode rather than <os, object> -- the lookup is wasteful,
496eda14cbcSMatt Macy  * and can induce severe lock contention when writing to several files
497eda14cbcSMatt Macy  * whose dnodes are in the same block.
498eda14cbcSMatt Macy  */
499eda14cbcSMatt Macy int
500eda14cbcSMatt Macy dmu_buf_hold_array_by_dnode(dnode_t *dn, uint64_t offset, uint64_t length,
501eda14cbcSMatt Macy     boolean_t read, void *tag, int *numbufsp, dmu_buf_t ***dbpp, uint32_t flags)
502eda14cbcSMatt Macy {
503eda14cbcSMatt Macy 	dmu_buf_t **dbp;
504f9693befSMartin Matuska 	zstream_t *zs = NULL;
505eda14cbcSMatt Macy 	uint64_t blkid, nblks, i;
506eda14cbcSMatt Macy 	uint32_t dbuf_flags;
507eda14cbcSMatt Macy 	int err;
5087877fdebSMatt Macy 	zio_t *zio = NULL;
509f9693befSMartin Matuska 	boolean_t missed = B_FALSE;
510eda14cbcSMatt Macy 
511eda14cbcSMatt Macy 	ASSERT(length <= DMU_MAX_ACCESS);
512eda14cbcSMatt Macy 
513eda14cbcSMatt Macy 	/*
514eda14cbcSMatt Macy 	 * Note: We directly notify the prefetch code of this read, so that
515eda14cbcSMatt Macy 	 * we can tell it about the multi-block read.  dbuf_read() only knows
516eda14cbcSMatt Macy 	 * about the one block it is accessing.
517eda14cbcSMatt Macy 	 */
518eda14cbcSMatt Macy 	dbuf_flags = DB_RF_CANFAIL | DB_RF_NEVERWAIT | DB_RF_HAVESTRUCT |
519eda14cbcSMatt Macy 	    DB_RF_NOPREFETCH;
520eda14cbcSMatt Macy 
521eda14cbcSMatt Macy 	rw_enter(&dn->dn_struct_rwlock, RW_READER);
522eda14cbcSMatt Macy 	if (dn->dn_datablkshift) {
523eda14cbcSMatt Macy 		int blkshift = dn->dn_datablkshift;
524eda14cbcSMatt Macy 		nblks = (P2ROUNDUP(offset + length, 1ULL << blkshift) -
525eda14cbcSMatt Macy 		    P2ALIGN(offset, 1ULL << blkshift)) >> blkshift;
526eda14cbcSMatt Macy 	} else {
527eda14cbcSMatt Macy 		if (offset + length > dn->dn_datablksz) {
528eda14cbcSMatt Macy 			zfs_panic_recover("zfs: accessing past end of object "
529eda14cbcSMatt Macy 			    "%llx/%llx (size=%u access=%llu+%llu)",
530eda14cbcSMatt Macy 			    (longlong_t)dn->dn_objset->
531eda14cbcSMatt Macy 			    os_dsl_dataset->ds_object,
532eda14cbcSMatt Macy 			    (longlong_t)dn->dn_object, dn->dn_datablksz,
533eda14cbcSMatt Macy 			    (longlong_t)offset, (longlong_t)length);
534eda14cbcSMatt Macy 			rw_exit(&dn->dn_struct_rwlock);
535eda14cbcSMatt Macy 			return (SET_ERROR(EIO));
536eda14cbcSMatt Macy 		}
537eda14cbcSMatt Macy 		nblks = 1;
538eda14cbcSMatt Macy 	}
539eda14cbcSMatt Macy 	dbp = kmem_zalloc(sizeof (dmu_buf_t *) * nblks, KM_SLEEP);
540eda14cbcSMatt Macy 
5417877fdebSMatt Macy 	if (read)
5427877fdebSMatt Macy 		zio = zio_root(dn->dn_objset->os_spa, NULL, NULL,
5437877fdebSMatt Macy 		    ZIO_FLAG_CANFAIL);
544eda14cbcSMatt Macy 	blkid = dbuf_whichblock(dn, 0, offset);
545f9693befSMartin Matuska 	if ((flags & DMU_READ_NO_PREFETCH) == 0 &&
546f9693befSMartin Matuska 	    DNODE_META_IS_CACHEABLE(dn) && length <= zfetch_array_rd_sz) {
547f9693befSMartin Matuska 		/*
548f9693befSMartin Matuska 		 * Prepare the zfetch before initiating the demand reads, so
549f9693befSMartin Matuska 		 * that if multiple threads block on same indirect block, we
550f9693befSMartin Matuska 		 * base predictions on the original less racy request order.
551f9693befSMartin Matuska 		 */
552f9693befSMartin Matuska 		zs = dmu_zfetch_prepare(&dn->dn_zfetch, blkid, nblks,
553f9693befSMartin Matuska 		    read && DNODE_IS_CACHEABLE(dn), B_TRUE);
554f9693befSMartin Matuska 	}
555eda14cbcSMatt Macy 	for (i = 0; i < nblks; i++) {
556eda14cbcSMatt Macy 		dmu_buf_impl_t *db = dbuf_hold(dn, blkid + i, tag);
557eda14cbcSMatt Macy 		if (db == NULL) {
558f9693befSMartin Matuska 			if (zs)
559f9693befSMartin Matuska 				dmu_zfetch_run(zs, missed, B_TRUE);
560eda14cbcSMatt Macy 			rw_exit(&dn->dn_struct_rwlock);
561eda14cbcSMatt Macy 			dmu_buf_rele_array(dbp, nblks, tag);
5627877fdebSMatt Macy 			if (read)
563eda14cbcSMatt Macy 				zio_nowait(zio);
564eda14cbcSMatt Macy 			return (SET_ERROR(EIO));
565eda14cbcSMatt Macy 		}
566eda14cbcSMatt Macy 
567f9693befSMartin Matuska 		/*
568f9693befSMartin Matuska 		 * Initiate async demand data read.
569f9693befSMartin Matuska 		 * We check the db_state after calling dbuf_read() because
570f9693befSMartin Matuska 		 * (1) dbuf_read() may change the state to CACHED due to a
571f9693befSMartin Matuska 		 * hit in the ARC, and (2) on a cache miss, a child will
572f9693befSMartin Matuska 		 * have been added to "zio" but not yet completed, so the
573f9693befSMartin Matuska 		 * state will not yet be CACHED.
574f9693befSMartin Matuska 		 */
575f9693befSMartin Matuska 		if (read) {
576eda14cbcSMatt Macy 			(void) dbuf_read(db, zio, dbuf_flags);
577f9693befSMartin Matuska 			if (db->db_state != DB_CACHED)
578f9693befSMartin Matuska 				missed = B_TRUE;
579f9693befSMartin Matuska 		}
580eda14cbcSMatt Macy 		dbp[i] = &db->db;
581eda14cbcSMatt Macy 	}
582eda14cbcSMatt Macy 
583ba27dd8bSMartin Matuska 	if (!read)
584ba27dd8bSMartin Matuska 		zfs_racct_write(length, nblks);
585ba27dd8bSMartin Matuska 
586f9693befSMartin Matuska 	if (zs)
587f9693befSMartin Matuska 		dmu_zfetch_run(zs, missed, B_TRUE);
588eda14cbcSMatt Macy 	rw_exit(&dn->dn_struct_rwlock);
589eda14cbcSMatt Macy 
5907877fdebSMatt Macy 	if (read) {
5917877fdebSMatt Macy 		/* wait for async read i/o */
592eda14cbcSMatt Macy 		err = zio_wait(zio);
593eda14cbcSMatt Macy 		if (err) {
594eda14cbcSMatt Macy 			dmu_buf_rele_array(dbp, nblks, tag);
595eda14cbcSMatt Macy 			return (err);
596eda14cbcSMatt Macy 		}
597eda14cbcSMatt Macy 
598eda14cbcSMatt Macy 		/* wait for other io to complete */
599eda14cbcSMatt Macy 		for (i = 0; i < nblks; i++) {
600eda14cbcSMatt Macy 			dmu_buf_impl_t *db = (dmu_buf_impl_t *)dbp[i];
601eda14cbcSMatt Macy 			mutex_enter(&db->db_mtx);
602eda14cbcSMatt Macy 			while (db->db_state == DB_READ ||
603eda14cbcSMatt Macy 			    db->db_state == DB_FILL)
604eda14cbcSMatt Macy 				cv_wait(&db->db_changed, &db->db_mtx);
605eda14cbcSMatt Macy 			if (db->db_state == DB_UNCACHED)
606eda14cbcSMatt Macy 				err = SET_ERROR(EIO);
607eda14cbcSMatt Macy 			mutex_exit(&db->db_mtx);
608eda14cbcSMatt Macy 			if (err) {
609eda14cbcSMatt Macy 				dmu_buf_rele_array(dbp, nblks, tag);
610eda14cbcSMatt Macy 				return (err);
611eda14cbcSMatt Macy 			}
612eda14cbcSMatt Macy 		}
613eda14cbcSMatt Macy 	}
614eda14cbcSMatt Macy 
615eda14cbcSMatt Macy 	*numbufsp = nblks;
616eda14cbcSMatt Macy 	*dbpp = dbp;
617eda14cbcSMatt Macy 	return (0);
618eda14cbcSMatt Macy }
619eda14cbcSMatt Macy 
6206ba2210eSMartin Matuska int
621eda14cbcSMatt Macy dmu_buf_hold_array(objset_t *os, uint64_t object, uint64_t offset,
622eda14cbcSMatt Macy     uint64_t length, int read, void *tag, int *numbufsp, dmu_buf_t ***dbpp)
623eda14cbcSMatt Macy {
624eda14cbcSMatt Macy 	dnode_t *dn;
625eda14cbcSMatt Macy 	int err;
626eda14cbcSMatt Macy 
627eda14cbcSMatt Macy 	err = dnode_hold(os, object, FTAG, &dn);
628eda14cbcSMatt Macy 	if (err)
629eda14cbcSMatt Macy 		return (err);
630eda14cbcSMatt Macy 
631eda14cbcSMatt Macy 	err = dmu_buf_hold_array_by_dnode(dn, offset, length, read, tag,
632eda14cbcSMatt Macy 	    numbufsp, dbpp, DMU_READ_PREFETCH);
633eda14cbcSMatt Macy 
634eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
635eda14cbcSMatt Macy 
636eda14cbcSMatt Macy 	return (err);
637eda14cbcSMatt Macy }
638eda14cbcSMatt Macy 
639eda14cbcSMatt Macy int
640eda14cbcSMatt Macy dmu_buf_hold_array_by_bonus(dmu_buf_t *db_fake, uint64_t offset,
641eda14cbcSMatt Macy     uint64_t length, boolean_t read, void *tag, int *numbufsp,
642eda14cbcSMatt Macy     dmu_buf_t ***dbpp)
643eda14cbcSMatt Macy {
644eda14cbcSMatt Macy 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
645eda14cbcSMatt Macy 	dnode_t *dn;
646eda14cbcSMatt Macy 	int err;
647eda14cbcSMatt Macy 
648eda14cbcSMatt Macy 	DB_DNODE_ENTER(db);
649eda14cbcSMatt Macy 	dn = DB_DNODE(db);
650eda14cbcSMatt Macy 	err = dmu_buf_hold_array_by_dnode(dn, offset, length, read, tag,
651eda14cbcSMatt Macy 	    numbufsp, dbpp, DMU_READ_PREFETCH);
652eda14cbcSMatt Macy 	DB_DNODE_EXIT(db);
653eda14cbcSMatt Macy 
654eda14cbcSMatt Macy 	return (err);
655eda14cbcSMatt Macy }
656eda14cbcSMatt Macy 
657eda14cbcSMatt Macy void
658eda14cbcSMatt Macy dmu_buf_rele_array(dmu_buf_t **dbp_fake, int numbufs, void *tag)
659eda14cbcSMatt Macy {
660eda14cbcSMatt Macy 	int i;
661eda14cbcSMatt Macy 	dmu_buf_impl_t **dbp = (dmu_buf_impl_t **)dbp_fake;
662eda14cbcSMatt Macy 
663eda14cbcSMatt Macy 	if (numbufs == 0)
664eda14cbcSMatt Macy 		return;
665eda14cbcSMatt Macy 
666eda14cbcSMatt Macy 	for (i = 0; i < numbufs; i++) {
667eda14cbcSMatt Macy 		if (dbp[i])
668eda14cbcSMatt Macy 			dbuf_rele(dbp[i], tag);
669eda14cbcSMatt Macy 	}
670eda14cbcSMatt Macy 
671eda14cbcSMatt Macy 	kmem_free(dbp, sizeof (dmu_buf_t *) * numbufs);
672eda14cbcSMatt Macy }
673eda14cbcSMatt Macy 
674eda14cbcSMatt Macy /*
675eda14cbcSMatt Macy  * Issue prefetch i/os for the given blocks.  If level is greater than 0, the
676eda14cbcSMatt Macy  * indirect blocks prefetched will be those that point to the blocks containing
677eda14cbcSMatt Macy  * the data starting at offset, and continuing to offset + len.
678eda14cbcSMatt Macy  *
679eda14cbcSMatt Macy  * Note that if the indirect blocks above the blocks being prefetched are not
680eda14cbcSMatt Macy  * in cache, they will be asynchronously read in.
681eda14cbcSMatt Macy  */
682eda14cbcSMatt Macy void
683eda14cbcSMatt Macy dmu_prefetch(objset_t *os, uint64_t object, int64_t level, uint64_t offset,
684eda14cbcSMatt Macy     uint64_t len, zio_priority_t pri)
685eda14cbcSMatt Macy {
686eda14cbcSMatt Macy 	dnode_t *dn;
687eda14cbcSMatt Macy 	uint64_t blkid;
688eda14cbcSMatt Macy 	int nblks, err;
689eda14cbcSMatt Macy 
690eda14cbcSMatt Macy 	if (len == 0) {  /* they're interested in the bonus buffer */
691eda14cbcSMatt Macy 		dn = DMU_META_DNODE(os);
692eda14cbcSMatt Macy 
693eda14cbcSMatt Macy 		if (object == 0 || object >= DN_MAX_OBJECT)
694eda14cbcSMatt Macy 			return;
695eda14cbcSMatt Macy 
696eda14cbcSMatt Macy 		rw_enter(&dn->dn_struct_rwlock, RW_READER);
697eda14cbcSMatt Macy 		blkid = dbuf_whichblock(dn, level,
698eda14cbcSMatt Macy 		    object * sizeof (dnode_phys_t));
699eda14cbcSMatt Macy 		dbuf_prefetch(dn, level, blkid, pri, 0);
700eda14cbcSMatt Macy 		rw_exit(&dn->dn_struct_rwlock);
701eda14cbcSMatt Macy 		return;
702eda14cbcSMatt Macy 	}
703eda14cbcSMatt Macy 
704eda14cbcSMatt Macy 	/*
705eda14cbcSMatt Macy 	 * See comment before the definition of dmu_prefetch_max.
706eda14cbcSMatt Macy 	 */
707eda14cbcSMatt Macy 	len = MIN(len, dmu_prefetch_max);
708eda14cbcSMatt Macy 
709eda14cbcSMatt Macy 	/*
710eda14cbcSMatt Macy 	 * XXX - Note, if the dnode for the requested object is not
711eda14cbcSMatt Macy 	 * already cached, we will do a *synchronous* read in the
712eda14cbcSMatt Macy 	 * dnode_hold() call.  The same is true for any indirects.
713eda14cbcSMatt Macy 	 */
714eda14cbcSMatt Macy 	err = dnode_hold(os, object, FTAG, &dn);
715eda14cbcSMatt Macy 	if (err != 0)
716eda14cbcSMatt Macy 		return;
717eda14cbcSMatt Macy 
718eda14cbcSMatt Macy 	/*
719eda14cbcSMatt Macy 	 * offset + len - 1 is the last byte we want to prefetch for, and offset
720eda14cbcSMatt Macy 	 * is the first.  Then dbuf_whichblk(dn, level, off + len - 1) is the
721eda14cbcSMatt Macy 	 * last block we want to prefetch, and dbuf_whichblock(dn, level,
722eda14cbcSMatt Macy 	 * offset)  is the first.  Then the number we need to prefetch is the
723eda14cbcSMatt Macy 	 * last - first + 1.
724eda14cbcSMatt Macy 	 */
725eda14cbcSMatt Macy 	rw_enter(&dn->dn_struct_rwlock, RW_READER);
726eda14cbcSMatt Macy 	if (level > 0 || dn->dn_datablkshift != 0) {
727eda14cbcSMatt Macy 		nblks = dbuf_whichblock(dn, level, offset + len - 1) -
728eda14cbcSMatt Macy 		    dbuf_whichblock(dn, level, offset) + 1;
729eda14cbcSMatt Macy 	} else {
730eda14cbcSMatt Macy 		nblks = (offset < dn->dn_datablksz);
731eda14cbcSMatt Macy 	}
732eda14cbcSMatt Macy 
733eda14cbcSMatt Macy 	if (nblks != 0) {
734eda14cbcSMatt Macy 		blkid = dbuf_whichblock(dn, level, offset);
735eda14cbcSMatt Macy 		for (int i = 0; i < nblks; i++)
736eda14cbcSMatt Macy 			dbuf_prefetch(dn, level, blkid + i, pri, 0);
737eda14cbcSMatt Macy 	}
738eda14cbcSMatt Macy 	rw_exit(&dn->dn_struct_rwlock);
739eda14cbcSMatt Macy 
740eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
741eda14cbcSMatt Macy }
742eda14cbcSMatt Macy 
743eda14cbcSMatt Macy /*
744eda14cbcSMatt Macy  * Get the next "chunk" of file data to free.  We traverse the file from
745eda14cbcSMatt Macy  * the end so that the file gets shorter over time (if we crashes in the
746eda14cbcSMatt Macy  * middle, this will leave us in a better state).  We find allocated file
747eda14cbcSMatt Macy  * data by simply searching the allocated level 1 indirects.
748eda14cbcSMatt Macy  *
749eda14cbcSMatt Macy  * On input, *start should be the first offset that does not need to be
750eda14cbcSMatt Macy  * freed (e.g. "offset + length").  On return, *start will be the first
751eda14cbcSMatt Macy  * offset that should be freed and l1blks is set to the number of level 1
752eda14cbcSMatt Macy  * indirect blocks found within the chunk.
753eda14cbcSMatt Macy  */
754eda14cbcSMatt Macy static int
755eda14cbcSMatt Macy get_next_chunk(dnode_t *dn, uint64_t *start, uint64_t minimum, uint64_t *l1blks)
756eda14cbcSMatt Macy {
757eda14cbcSMatt Macy 	uint64_t blks;
758eda14cbcSMatt Macy 	uint64_t maxblks = DMU_MAX_ACCESS >> (dn->dn_indblkshift + 1);
759eda14cbcSMatt Macy 	/* bytes of data covered by a level-1 indirect block */
760eda14cbcSMatt Macy 	uint64_t iblkrange = (uint64_t)dn->dn_datablksz *
761eda14cbcSMatt Macy 	    EPB(dn->dn_indblkshift, SPA_BLKPTRSHIFT);
762eda14cbcSMatt Macy 
763eda14cbcSMatt Macy 	ASSERT3U(minimum, <=, *start);
764eda14cbcSMatt Macy 
765eda14cbcSMatt Macy 	/*
766eda14cbcSMatt Macy 	 * Check if we can free the entire range assuming that all of the
767eda14cbcSMatt Macy 	 * L1 blocks in this range have data. If we can, we use this
768eda14cbcSMatt Macy 	 * worst case value as an estimate so we can avoid having to look
769eda14cbcSMatt Macy 	 * at the object's actual data.
770eda14cbcSMatt Macy 	 */
771eda14cbcSMatt Macy 	uint64_t total_l1blks =
772eda14cbcSMatt Macy 	    (roundup(*start, iblkrange) - (minimum / iblkrange * iblkrange)) /
773eda14cbcSMatt Macy 	    iblkrange;
774eda14cbcSMatt Macy 	if (total_l1blks <= maxblks) {
775eda14cbcSMatt Macy 		*l1blks = total_l1blks;
776eda14cbcSMatt Macy 		*start = minimum;
777eda14cbcSMatt Macy 		return (0);
778eda14cbcSMatt Macy 	}
779eda14cbcSMatt Macy 	ASSERT(ISP2(iblkrange));
780eda14cbcSMatt Macy 
781eda14cbcSMatt Macy 	for (blks = 0; *start > minimum && blks < maxblks; blks++) {
782eda14cbcSMatt Macy 		int err;
783eda14cbcSMatt Macy 
784eda14cbcSMatt Macy 		/*
785eda14cbcSMatt Macy 		 * dnode_next_offset(BACKWARDS) will find an allocated L1
786eda14cbcSMatt Macy 		 * indirect block at or before the input offset.  We must
787eda14cbcSMatt Macy 		 * decrement *start so that it is at the end of the region
788eda14cbcSMatt Macy 		 * to search.
789eda14cbcSMatt Macy 		 */
790eda14cbcSMatt Macy 		(*start)--;
791eda14cbcSMatt Macy 
792eda14cbcSMatt Macy 		err = dnode_next_offset(dn,
793eda14cbcSMatt Macy 		    DNODE_FIND_BACKWARDS, start, 2, 1, 0);
794eda14cbcSMatt Macy 
795eda14cbcSMatt Macy 		/* if there are no indirect blocks before start, we are done */
796eda14cbcSMatt Macy 		if (err == ESRCH) {
797eda14cbcSMatt Macy 			*start = minimum;
798eda14cbcSMatt Macy 			break;
799eda14cbcSMatt Macy 		} else if (err != 0) {
800eda14cbcSMatt Macy 			*l1blks = blks;
801eda14cbcSMatt Macy 			return (err);
802eda14cbcSMatt Macy 		}
803eda14cbcSMatt Macy 
804eda14cbcSMatt Macy 		/* set start to the beginning of this L1 indirect */
805eda14cbcSMatt Macy 		*start = P2ALIGN(*start, iblkrange);
806eda14cbcSMatt Macy 	}
807eda14cbcSMatt Macy 	if (*start < minimum)
808eda14cbcSMatt Macy 		*start = minimum;
809eda14cbcSMatt Macy 	*l1blks = blks;
810eda14cbcSMatt Macy 
811eda14cbcSMatt Macy 	return (0);
812eda14cbcSMatt Macy }
813eda14cbcSMatt Macy 
814eda14cbcSMatt Macy /*
815eda14cbcSMatt Macy  * If this objset is of type OST_ZFS return true if vfs's unmounted flag is set,
816eda14cbcSMatt Macy  * otherwise return false.
817eda14cbcSMatt Macy  * Used below in dmu_free_long_range_impl() to enable abort when unmounting
818eda14cbcSMatt Macy  */
819eda14cbcSMatt Macy /*ARGSUSED*/
820eda14cbcSMatt Macy static boolean_t
821eda14cbcSMatt Macy dmu_objset_zfs_unmounting(objset_t *os)
822eda14cbcSMatt Macy {
823eda14cbcSMatt Macy #ifdef _KERNEL
824eda14cbcSMatt Macy 	if (dmu_objset_type(os) == DMU_OST_ZFS)
825eda14cbcSMatt Macy 		return (zfs_get_vfs_flag_unmounted(os));
826eda14cbcSMatt Macy #endif
827eda14cbcSMatt Macy 	return (B_FALSE);
828eda14cbcSMatt Macy }
829eda14cbcSMatt Macy 
830eda14cbcSMatt Macy static int
831eda14cbcSMatt Macy dmu_free_long_range_impl(objset_t *os, dnode_t *dn, uint64_t offset,
832eda14cbcSMatt Macy     uint64_t length)
833eda14cbcSMatt Macy {
834eda14cbcSMatt Macy 	uint64_t object_size;
835eda14cbcSMatt Macy 	int err;
836eda14cbcSMatt Macy 	uint64_t dirty_frees_threshold;
837eda14cbcSMatt Macy 	dsl_pool_t *dp = dmu_objset_pool(os);
838eda14cbcSMatt Macy 
839eda14cbcSMatt Macy 	if (dn == NULL)
840eda14cbcSMatt Macy 		return (SET_ERROR(EINVAL));
841eda14cbcSMatt Macy 
842eda14cbcSMatt Macy 	object_size = (dn->dn_maxblkid + 1) * dn->dn_datablksz;
843eda14cbcSMatt Macy 	if (offset >= object_size)
844eda14cbcSMatt Macy 		return (0);
845eda14cbcSMatt Macy 
846eda14cbcSMatt Macy 	if (zfs_per_txg_dirty_frees_percent <= 100)
847eda14cbcSMatt Macy 		dirty_frees_threshold =
848eda14cbcSMatt Macy 		    zfs_per_txg_dirty_frees_percent * zfs_dirty_data_max / 100;
849eda14cbcSMatt Macy 	else
850eda14cbcSMatt Macy 		dirty_frees_threshold = zfs_dirty_data_max / 20;
851eda14cbcSMatt Macy 
852eda14cbcSMatt Macy 	if (length == DMU_OBJECT_END || offset + length > object_size)
853eda14cbcSMatt Macy 		length = object_size - offset;
854eda14cbcSMatt Macy 
855eda14cbcSMatt Macy 	while (length != 0) {
856eda14cbcSMatt Macy 		uint64_t chunk_end, chunk_begin, chunk_len;
857eda14cbcSMatt Macy 		uint64_t l1blks;
858eda14cbcSMatt Macy 		dmu_tx_t *tx;
859eda14cbcSMatt Macy 
860eda14cbcSMatt Macy 		if (dmu_objset_zfs_unmounting(dn->dn_objset))
861eda14cbcSMatt Macy 			return (SET_ERROR(EINTR));
862eda14cbcSMatt Macy 
863eda14cbcSMatt Macy 		chunk_end = chunk_begin = offset + length;
864eda14cbcSMatt Macy 
865eda14cbcSMatt Macy 		/* move chunk_begin backwards to the beginning of this chunk */
866eda14cbcSMatt Macy 		err = get_next_chunk(dn, &chunk_begin, offset, &l1blks);
867eda14cbcSMatt Macy 		if (err)
868eda14cbcSMatt Macy 			return (err);
869eda14cbcSMatt Macy 		ASSERT3U(chunk_begin, >=, offset);
870eda14cbcSMatt Macy 		ASSERT3U(chunk_begin, <=, chunk_end);
871eda14cbcSMatt Macy 
872eda14cbcSMatt Macy 		chunk_len = chunk_end - chunk_begin;
873eda14cbcSMatt Macy 
874eda14cbcSMatt Macy 		tx = dmu_tx_create(os);
875eda14cbcSMatt Macy 		dmu_tx_hold_free(tx, dn->dn_object, chunk_begin, chunk_len);
876eda14cbcSMatt Macy 
877eda14cbcSMatt Macy 		/*
878eda14cbcSMatt Macy 		 * Mark this transaction as typically resulting in a net
879eda14cbcSMatt Macy 		 * reduction in space used.
880eda14cbcSMatt Macy 		 */
881eda14cbcSMatt Macy 		dmu_tx_mark_netfree(tx);
882eda14cbcSMatt Macy 		err = dmu_tx_assign(tx, TXG_WAIT);
883eda14cbcSMatt Macy 		if (err) {
884eda14cbcSMatt Macy 			dmu_tx_abort(tx);
885eda14cbcSMatt Macy 			return (err);
886eda14cbcSMatt Macy 		}
887eda14cbcSMatt Macy 
888eda14cbcSMatt Macy 		uint64_t txg = dmu_tx_get_txg(tx);
889eda14cbcSMatt Macy 
890eda14cbcSMatt Macy 		mutex_enter(&dp->dp_lock);
891eda14cbcSMatt Macy 		uint64_t long_free_dirty =
892eda14cbcSMatt Macy 		    dp->dp_long_free_dirty_pertxg[txg & TXG_MASK];
893eda14cbcSMatt Macy 		mutex_exit(&dp->dp_lock);
894eda14cbcSMatt Macy 
895eda14cbcSMatt Macy 		/*
896eda14cbcSMatt Macy 		 * To avoid filling up a TXG with just frees, wait for
897eda14cbcSMatt Macy 		 * the next TXG to open before freeing more chunks if
898eda14cbcSMatt Macy 		 * we have reached the threshold of frees.
899eda14cbcSMatt Macy 		 */
900eda14cbcSMatt Macy 		if (dirty_frees_threshold != 0 &&
901eda14cbcSMatt Macy 		    long_free_dirty >= dirty_frees_threshold) {
902eda14cbcSMatt Macy 			DMU_TX_STAT_BUMP(dmu_tx_dirty_frees_delay);
903eda14cbcSMatt Macy 			dmu_tx_commit(tx);
904eda14cbcSMatt Macy 			txg_wait_open(dp, 0, B_TRUE);
905eda14cbcSMatt Macy 			continue;
906eda14cbcSMatt Macy 		}
907eda14cbcSMatt Macy 
908eda14cbcSMatt Macy 		/*
909eda14cbcSMatt Macy 		 * In order to prevent unnecessary write throttling, for each
910eda14cbcSMatt Macy 		 * TXG, we track the cumulative size of L1 blocks being dirtied
911eda14cbcSMatt Macy 		 * in dnode_free_range() below. We compare this number to a
912eda14cbcSMatt Macy 		 * tunable threshold, past which we prevent new L1 dirty freeing
913eda14cbcSMatt Macy 		 * blocks from being added into the open TXG. See
914eda14cbcSMatt Macy 		 * dmu_free_long_range_impl() for details. The threshold
915eda14cbcSMatt Macy 		 * prevents write throttle activation due to dirty freeing L1
916eda14cbcSMatt Macy 		 * blocks taking up a large percentage of zfs_dirty_data_max.
917eda14cbcSMatt Macy 		 */
918eda14cbcSMatt Macy 		mutex_enter(&dp->dp_lock);
919eda14cbcSMatt Macy 		dp->dp_long_free_dirty_pertxg[txg & TXG_MASK] +=
920eda14cbcSMatt Macy 		    l1blks << dn->dn_indblkshift;
921eda14cbcSMatt Macy 		mutex_exit(&dp->dp_lock);
922eda14cbcSMatt Macy 		DTRACE_PROBE3(free__long__range,
923eda14cbcSMatt Macy 		    uint64_t, long_free_dirty, uint64_t, chunk_len,
924eda14cbcSMatt Macy 		    uint64_t, txg);
925eda14cbcSMatt Macy 		dnode_free_range(dn, chunk_begin, chunk_len, tx);
926eda14cbcSMatt Macy 
927eda14cbcSMatt Macy 		dmu_tx_commit(tx);
928eda14cbcSMatt Macy 
929eda14cbcSMatt Macy 		length -= chunk_len;
930eda14cbcSMatt Macy 	}
931eda14cbcSMatt Macy 	return (0);
932eda14cbcSMatt Macy }
933eda14cbcSMatt Macy 
934eda14cbcSMatt Macy int
935eda14cbcSMatt Macy dmu_free_long_range(objset_t *os, uint64_t object,
936eda14cbcSMatt Macy     uint64_t offset, uint64_t length)
937eda14cbcSMatt Macy {
938eda14cbcSMatt Macy 	dnode_t *dn;
939eda14cbcSMatt Macy 	int err;
940eda14cbcSMatt Macy 
941eda14cbcSMatt Macy 	err = dnode_hold(os, object, FTAG, &dn);
942eda14cbcSMatt Macy 	if (err != 0)
943eda14cbcSMatt Macy 		return (err);
944eda14cbcSMatt Macy 	err = dmu_free_long_range_impl(os, dn, offset, length);
945eda14cbcSMatt Macy 
946eda14cbcSMatt Macy 	/*
947eda14cbcSMatt Macy 	 * It is important to zero out the maxblkid when freeing the entire
948eda14cbcSMatt Macy 	 * file, so that (a) subsequent calls to dmu_free_long_range_impl()
949eda14cbcSMatt Macy 	 * will take the fast path, and (b) dnode_reallocate() can verify
950eda14cbcSMatt Macy 	 * that the entire file has been freed.
951eda14cbcSMatt Macy 	 */
952eda14cbcSMatt Macy 	if (err == 0 && offset == 0 && length == DMU_OBJECT_END)
953eda14cbcSMatt Macy 		dn->dn_maxblkid = 0;
954eda14cbcSMatt Macy 
955eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
956eda14cbcSMatt Macy 	return (err);
957eda14cbcSMatt Macy }
958eda14cbcSMatt Macy 
959eda14cbcSMatt Macy int
960eda14cbcSMatt Macy dmu_free_long_object(objset_t *os, uint64_t object)
961eda14cbcSMatt Macy {
962eda14cbcSMatt Macy 	dmu_tx_t *tx;
963eda14cbcSMatt Macy 	int err;
964eda14cbcSMatt Macy 
965eda14cbcSMatt Macy 	err = dmu_free_long_range(os, object, 0, DMU_OBJECT_END);
966eda14cbcSMatt Macy 	if (err != 0)
967eda14cbcSMatt Macy 		return (err);
968eda14cbcSMatt Macy 
969eda14cbcSMatt Macy 	tx = dmu_tx_create(os);
970eda14cbcSMatt Macy 	dmu_tx_hold_bonus(tx, object);
971eda14cbcSMatt Macy 	dmu_tx_hold_free(tx, object, 0, DMU_OBJECT_END);
972eda14cbcSMatt Macy 	dmu_tx_mark_netfree(tx);
973eda14cbcSMatt Macy 	err = dmu_tx_assign(tx, TXG_WAIT);
974eda14cbcSMatt Macy 	if (err == 0) {
975eda14cbcSMatt Macy 		err = dmu_object_free(os, object, tx);
976eda14cbcSMatt Macy 		dmu_tx_commit(tx);
977eda14cbcSMatt Macy 	} else {
978eda14cbcSMatt Macy 		dmu_tx_abort(tx);
979eda14cbcSMatt Macy 	}
980eda14cbcSMatt Macy 
981eda14cbcSMatt Macy 	return (err);
982eda14cbcSMatt Macy }
983eda14cbcSMatt Macy 
984eda14cbcSMatt Macy int
985eda14cbcSMatt Macy dmu_free_range(objset_t *os, uint64_t object, uint64_t offset,
986eda14cbcSMatt Macy     uint64_t size, dmu_tx_t *tx)
987eda14cbcSMatt Macy {
988eda14cbcSMatt Macy 	dnode_t *dn;
989eda14cbcSMatt Macy 	int err = dnode_hold(os, object, FTAG, &dn);
990eda14cbcSMatt Macy 	if (err)
991eda14cbcSMatt Macy 		return (err);
992eda14cbcSMatt Macy 	ASSERT(offset < UINT64_MAX);
993eda14cbcSMatt Macy 	ASSERT(size == DMU_OBJECT_END || size <= UINT64_MAX - offset);
994eda14cbcSMatt Macy 	dnode_free_range(dn, offset, size, tx);
995eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
996eda14cbcSMatt Macy 	return (0);
997eda14cbcSMatt Macy }
998eda14cbcSMatt Macy 
999eda14cbcSMatt Macy static int
1000eda14cbcSMatt Macy dmu_read_impl(dnode_t *dn, uint64_t offset, uint64_t size,
1001eda14cbcSMatt Macy     void *buf, uint32_t flags)
1002eda14cbcSMatt Macy {
1003eda14cbcSMatt Macy 	dmu_buf_t **dbp;
1004eda14cbcSMatt Macy 	int numbufs, err = 0;
1005eda14cbcSMatt Macy 
1006eda14cbcSMatt Macy 	/*
1007eda14cbcSMatt Macy 	 * Deal with odd block sizes, where there can't be data past the first
1008eda14cbcSMatt Macy 	 * block.  If we ever do the tail block optimization, we will need to
1009eda14cbcSMatt Macy 	 * handle that here as well.
1010eda14cbcSMatt Macy 	 */
1011eda14cbcSMatt Macy 	if (dn->dn_maxblkid == 0) {
1012eda14cbcSMatt Macy 		uint64_t newsz = offset > dn->dn_datablksz ? 0 :
1013eda14cbcSMatt Macy 		    MIN(size, dn->dn_datablksz - offset);
1014eda14cbcSMatt Macy 		bzero((char *)buf + newsz, size - newsz);
1015eda14cbcSMatt Macy 		size = newsz;
1016eda14cbcSMatt Macy 	}
1017eda14cbcSMatt Macy 
1018eda14cbcSMatt Macy 	while (size > 0) {
1019eda14cbcSMatt Macy 		uint64_t mylen = MIN(size, DMU_MAX_ACCESS / 2);
1020eda14cbcSMatt Macy 		int i;
1021eda14cbcSMatt Macy 
1022eda14cbcSMatt Macy 		/*
1023eda14cbcSMatt Macy 		 * NB: we could do this block-at-a-time, but it's nice
1024eda14cbcSMatt Macy 		 * to be reading in parallel.
1025eda14cbcSMatt Macy 		 */
1026eda14cbcSMatt Macy 		err = dmu_buf_hold_array_by_dnode(dn, offset, mylen,
1027eda14cbcSMatt Macy 		    TRUE, FTAG, &numbufs, &dbp, flags);
1028eda14cbcSMatt Macy 		if (err)
1029eda14cbcSMatt Macy 			break;
1030eda14cbcSMatt Macy 
1031eda14cbcSMatt Macy 		for (i = 0; i < numbufs; i++) {
1032eda14cbcSMatt Macy 			uint64_t tocpy;
1033eda14cbcSMatt Macy 			int64_t bufoff;
1034eda14cbcSMatt Macy 			dmu_buf_t *db = dbp[i];
1035eda14cbcSMatt Macy 
1036eda14cbcSMatt Macy 			ASSERT(size > 0);
1037eda14cbcSMatt Macy 
1038eda14cbcSMatt Macy 			bufoff = offset - db->db_offset;
1039eda14cbcSMatt Macy 			tocpy = MIN(db->db_size - bufoff, size);
1040eda14cbcSMatt Macy 
1041eda14cbcSMatt Macy 			(void) memcpy(buf, (char *)db->db_data + bufoff, tocpy);
1042eda14cbcSMatt Macy 
1043eda14cbcSMatt Macy 			offset += tocpy;
1044eda14cbcSMatt Macy 			size -= tocpy;
1045eda14cbcSMatt Macy 			buf = (char *)buf + tocpy;
1046eda14cbcSMatt Macy 		}
1047eda14cbcSMatt Macy 		dmu_buf_rele_array(dbp, numbufs, FTAG);
1048eda14cbcSMatt Macy 	}
1049eda14cbcSMatt Macy 	return (err);
1050eda14cbcSMatt Macy }
1051eda14cbcSMatt Macy 
1052eda14cbcSMatt Macy int
1053eda14cbcSMatt Macy dmu_read(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
1054eda14cbcSMatt Macy     void *buf, uint32_t flags)
1055eda14cbcSMatt Macy {
1056eda14cbcSMatt Macy 	dnode_t *dn;
1057eda14cbcSMatt Macy 	int err;
1058eda14cbcSMatt Macy 
1059eda14cbcSMatt Macy 	err = dnode_hold(os, object, FTAG, &dn);
1060eda14cbcSMatt Macy 	if (err != 0)
1061eda14cbcSMatt Macy 		return (err);
1062eda14cbcSMatt Macy 
1063eda14cbcSMatt Macy 	err = dmu_read_impl(dn, offset, size, buf, flags);
1064eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
1065eda14cbcSMatt Macy 	return (err);
1066eda14cbcSMatt Macy }
1067eda14cbcSMatt Macy 
1068eda14cbcSMatt Macy int
1069eda14cbcSMatt Macy dmu_read_by_dnode(dnode_t *dn, uint64_t offset, uint64_t size, void *buf,
1070eda14cbcSMatt Macy     uint32_t flags)
1071eda14cbcSMatt Macy {
1072eda14cbcSMatt Macy 	return (dmu_read_impl(dn, offset, size, buf, flags));
1073eda14cbcSMatt Macy }
1074eda14cbcSMatt Macy 
1075eda14cbcSMatt Macy static void
1076eda14cbcSMatt Macy dmu_write_impl(dmu_buf_t **dbp, int numbufs, uint64_t offset, uint64_t size,
1077eda14cbcSMatt Macy     const void *buf, dmu_tx_t *tx)
1078eda14cbcSMatt Macy {
1079eda14cbcSMatt Macy 	int i;
1080eda14cbcSMatt Macy 
1081eda14cbcSMatt Macy 	for (i = 0; i < numbufs; i++) {
1082eda14cbcSMatt Macy 		uint64_t tocpy;
1083eda14cbcSMatt Macy 		int64_t bufoff;
1084eda14cbcSMatt Macy 		dmu_buf_t *db = dbp[i];
1085eda14cbcSMatt Macy 
1086eda14cbcSMatt Macy 		ASSERT(size > 0);
1087eda14cbcSMatt Macy 
1088eda14cbcSMatt Macy 		bufoff = offset - db->db_offset;
1089eda14cbcSMatt Macy 		tocpy = MIN(db->db_size - bufoff, size);
1090eda14cbcSMatt Macy 
1091eda14cbcSMatt Macy 		ASSERT(i == 0 || i == numbufs-1 || tocpy == db->db_size);
1092eda14cbcSMatt Macy 
1093eda14cbcSMatt Macy 		if (tocpy == db->db_size)
1094eda14cbcSMatt Macy 			dmu_buf_will_fill(db, tx);
1095eda14cbcSMatt Macy 		else
1096eda14cbcSMatt Macy 			dmu_buf_will_dirty(db, tx);
1097eda14cbcSMatt Macy 
1098eda14cbcSMatt Macy 		(void) memcpy((char *)db->db_data + bufoff, buf, tocpy);
1099eda14cbcSMatt Macy 
1100eda14cbcSMatt Macy 		if (tocpy == db->db_size)
1101eda14cbcSMatt Macy 			dmu_buf_fill_done(db, tx);
1102eda14cbcSMatt Macy 
1103eda14cbcSMatt Macy 		offset += tocpy;
1104eda14cbcSMatt Macy 		size -= tocpy;
1105eda14cbcSMatt Macy 		buf = (char *)buf + tocpy;
1106eda14cbcSMatt Macy 	}
1107eda14cbcSMatt Macy }
1108eda14cbcSMatt Macy 
1109eda14cbcSMatt Macy void
1110eda14cbcSMatt Macy dmu_write(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
1111eda14cbcSMatt Macy     const void *buf, dmu_tx_t *tx)
1112eda14cbcSMatt Macy {
1113eda14cbcSMatt Macy 	dmu_buf_t **dbp;
1114eda14cbcSMatt Macy 	int numbufs;
1115eda14cbcSMatt Macy 
1116eda14cbcSMatt Macy 	if (size == 0)
1117eda14cbcSMatt Macy 		return;
1118eda14cbcSMatt Macy 
1119eda14cbcSMatt Macy 	VERIFY0(dmu_buf_hold_array(os, object, offset, size,
1120eda14cbcSMatt Macy 	    FALSE, FTAG, &numbufs, &dbp));
1121eda14cbcSMatt Macy 	dmu_write_impl(dbp, numbufs, offset, size, buf, tx);
1122eda14cbcSMatt Macy 	dmu_buf_rele_array(dbp, numbufs, FTAG);
1123eda14cbcSMatt Macy }
1124eda14cbcSMatt Macy 
1125eda14cbcSMatt Macy /*
1126eda14cbcSMatt Macy  * Note: Lustre is an external consumer of this interface.
1127eda14cbcSMatt Macy  */
1128eda14cbcSMatt Macy void
1129eda14cbcSMatt Macy dmu_write_by_dnode(dnode_t *dn, uint64_t offset, uint64_t size,
1130eda14cbcSMatt Macy     const void *buf, dmu_tx_t *tx)
1131eda14cbcSMatt Macy {
1132eda14cbcSMatt Macy 	dmu_buf_t **dbp;
1133eda14cbcSMatt Macy 	int numbufs;
1134eda14cbcSMatt Macy 
1135eda14cbcSMatt Macy 	if (size == 0)
1136eda14cbcSMatt Macy 		return;
1137eda14cbcSMatt Macy 
1138eda14cbcSMatt Macy 	VERIFY0(dmu_buf_hold_array_by_dnode(dn, offset, size,
1139eda14cbcSMatt Macy 	    FALSE, FTAG, &numbufs, &dbp, DMU_READ_PREFETCH));
1140eda14cbcSMatt Macy 	dmu_write_impl(dbp, numbufs, offset, size, buf, tx);
1141eda14cbcSMatt Macy 	dmu_buf_rele_array(dbp, numbufs, FTAG);
1142eda14cbcSMatt Macy }
1143eda14cbcSMatt Macy 
1144eda14cbcSMatt Macy void
1145eda14cbcSMatt Macy dmu_prealloc(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
1146eda14cbcSMatt Macy     dmu_tx_t *tx)
1147eda14cbcSMatt Macy {
1148eda14cbcSMatt Macy 	dmu_buf_t **dbp;
1149eda14cbcSMatt Macy 	int numbufs, i;
1150eda14cbcSMatt Macy 
1151eda14cbcSMatt Macy 	if (size == 0)
1152eda14cbcSMatt Macy 		return;
1153eda14cbcSMatt Macy 
1154eda14cbcSMatt Macy 	VERIFY(0 == dmu_buf_hold_array(os, object, offset, size,
1155eda14cbcSMatt Macy 	    FALSE, FTAG, &numbufs, &dbp));
1156eda14cbcSMatt Macy 
1157eda14cbcSMatt Macy 	for (i = 0; i < numbufs; i++) {
1158eda14cbcSMatt Macy 		dmu_buf_t *db = dbp[i];
1159eda14cbcSMatt Macy 
1160eda14cbcSMatt Macy 		dmu_buf_will_not_fill(db, tx);
1161eda14cbcSMatt Macy 	}
1162eda14cbcSMatt Macy 	dmu_buf_rele_array(dbp, numbufs, FTAG);
1163eda14cbcSMatt Macy }
1164eda14cbcSMatt Macy 
1165eda14cbcSMatt Macy void
1166eda14cbcSMatt Macy dmu_write_embedded(objset_t *os, uint64_t object, uint64_t offset,
1167eda14cbcSMatt Macy     void *data, uint8_t etype, uint8_t comp, int uncompressed_size,
1168eda14cbcSMatt Macy     int compressed_size, int byteorder, dmu_tx_t *tx)
1169eda14cbcSMatt Macy {
1170eda14cbcSMatt Macy 	dmu_buf_t *db;
1171eda14cbcSMatt Macy 
1172eda14cbcSMatt Macy 	ASSERT3U(etype, <, NUM_BP_EMBEDDED_TYPES);
1173eda14cbcSMatt Macy 	ASSERT3U(comp, <, ZIO_COMPRESS_FUNCTIONS);
1174eda14cbcSMatt Macy 	VERIFY0(dmu_buf_hold_noread(os, object, offset,
1175eda14cbcSMatt Macy 	    FTAG, &db));
1176eda14cbcSMatt Macy 
1177eda14cbcSMatt Macy 	dmu_buf_write_embedded(db,
1178eda14cbcSMatt Macy 	    data, (bp_embedded_type_t)etype, (enum zio_compress)comp,
1179eda14cbcSMatt Macy 	    uncompressed_size, compressed_size, byteorder, tx);
1180eda14cbcSMatt Macy 
1181eda14cbcSMatt Macy 	dmu_buf_rele(db, FTAG);
1182eda14cbcSMatt Macy }
1183eda14cbcSMatt Macy 
1184eda14cbcSMatt Macy void
1185eda14cbcSMatt Macy dmu_redact(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
1186eda14cbcSMatt Macy     dmu_tx_t *tx)
1187eda14cbcSMatt Macy {
1188eda14cbcSMatt Macy 	int numbufs, i;
1189eda14cbcSMatt Macy 	dmu_buf_t **dbp;
1190eda14cbcSMatt Macy 
1191eda14cbcSMatt Macy 	VERIFY0(dmu_buf_hold_array(os, object, offset, size, FALSE, FTAG,
1192eda14cbcSMatt Macy 	    &numbufs, &dbp));
1193eda14cbcSMatt Macy 	for (i = 0; i < numbufs; i++)
1194eda14cbcSMatt Macy 		dmu_buf_redact(dbp[i], tx);
1195eda14cbcSMatt Macy 	dmu_buf_rele_array(dbp, numbufs, FTAG);
1196eda14cbcSMatt Macy }
1197eda14cbcSMatt Macy 
1198eda14cbcSMatt Macy #ifdef _KERNEL
1199eda14cbcSMatt Macy int
1200184c1b94SMartin Matuska dmu_read_uio_dnode(dnode_t *dn, zfs_uio_t *uio, uint64_t size)
1201eda14cbcSMatt Macy {
1202eda14cbcSMatt Macy 	dmu_buf_t **dbp;
1203eda14cbcSMatt Macy 	int numbufs, i, err;
1204eda14cbcSMatt Macy 
1205eda14cbcSMatt Macy 	/*
1206eda14cbcSMatt Macy 	 * NB: we could do this block-at-a-time, but it's nice
1207eda14cbcSMatt Macy 	 * to be reading in parallel.
1208eda14cbcSMatt Macy 	 */
1209184c1b94SMartin Matuska 	err = dmu_buf_hold_array_by_dnode(dn, zfs_uio_offset(uio), size,
1210eda14cbcSMatt Macy 	    TRUE, FTAG, &numbufs, &dbp, 0);
1211eda14cbcSMatt Macy 	if (err)
1212eda14cbcSMatt Macy 		return (err);
1213eda14cbcSMatt Macy 
1214eda14cbcSMatt Macy 	for (i = 0; i < numbufs; i++) {
1215eda14cbcSMatt Macy 		uint64_t tocpy;
1216eda14cbcSMatt Macy 		int64_t bufoff;
1217eda14cbcSMatt Macy 		dmu_buf_t *db = dbp[i];
1218eda14cbcSMatt Macy 
1219eda14cbcSMatt Macy 		ASSERT(size > 0);
1220eda14cbcSMatt Macy 
1221184c1b94SMartin Matuska 		bufoff = zfs_uio_offset(uio) - db->db_offset;
1222eda14cbcSMatt Macy 		tocpy = MIN(db->db_size - bufoff, size);
1223eda14cbcSMatt Macy 
1224184c1b94SMartin Matuska 		err = zfs_uio_fault_move((char *)db->db_data + bufoff, tocpy,
1225eda14cbcSMatt Macy 		    UIO_READ, uio);
1226184c1b94SMartin Matuska 
1227eda14cbcSMatt Macy 		if (err)
1228eda14cbcSMatt Macy 			break;
1229eda14cbcSMatt Macy 
1230eda14cbcSMatt Macy 		size -= tocpy;
1231eda14cbcSMatt Macy 	}
1232eda14cbcSMatt Macy 	dmu_buf_rele_array(dbp, numbufs, FTAG);
1233eda14cbcSMatt Macy 
1234eda14cbcSMatt Macy 	return (err);
1235eda14cbcSMatt Macy }
1236eda14cbcSMatt Macy 
1237eda14cbcSMatt Macy /*
1238eda14cbcSMatt Macy  * Read 'size' bytes into the uio buffer.
1239eda14cbcSMatt Macy  * From object zdb->db_object.
1240184c1b94SMartin Matuska  * Starting at zfs_uio_offset(uio).
1241eda14cbcSMatt Macy  *
1242eda14cbcSMatt Macy  * If the caller already has a dbuf in the target object
1243eda14cbcSMatt Macy  * (e.g. its bonus buffer), this routine is faster than dmu_read_uio(),
1244eda14cbcSMatt Macy  * because we don't have to find the dnode_t for the object.
1245eda14cbcSMatt Macy  */
1246eda14cbcSMatt Macy int
1247184c1b94SMartin Matuska dmu_read_uio_dbuf(dmu_buf_t *zdb, zfs_uio_t *uio, uint64_t size)
1248eda14cbcSMatt Macy {
1249eda14cbcSMatt Macy 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)zdb;
1250eda14cbcSMatt Macy 	dnode_t *dn;
1251eda14cbcSMatt Macy 	int err;
1252eda14cbcSMatt Macy 
1253eda14cbcSMatt Macy 	if (size == 0)
1254eda14cbcSMatt Macy 		return (0);
1255eda14cbcSMatt Macy 
1256eda14cbcSMatt Macy 	DB_DNODE_ENTER(db);
1257eda14cbcSMatt Macy 	dn = DB_DNODE(db);
1258eda14cbcSMatt Macy 	err = dmu_read_uio_dnode(dn, uio, size);
1259eda14cbcSMatt Macy 	DB_DNODE_EXIT(db);
1260eda14cbcSMatt Macy 
1261eda14cbcSMatt Macy 	return (err);
1262eda14cbcSMatt Macy }
1263eda14cbcSMatt Macy 
1264eda14cbcSMatt Macy /*
1265eda14cbcSMatt Macy  * Read 'size' bytes into the uio buffer.
1266eda14cbcSMatt Macy  * From the specified object
1267184c1b94SMartin Matuska  * Starting at offset zfs_uio_offset(uio).
1268eda14cbcSMatt Macy  */
1269eda14cbcSMatt Macy int
1270184c1b94SMartin Matuska dmu_read_uio(objset_t *os, uint64_t object, zfs_uio_t *uio, uint64_t size)
1271eda14cbcSMatt Macy {
1272eda14cbcSMatt Macy 	dnode_t *dn;
1273eda14cbcSMatt Macy 	int err;
1274eda14cbcSMatt Macy 
1275eda14cbcSMatt Macy 	if (size == 0)
1276eda14cbcSMatt Macy 		return (0);
1277eda14cbcSMatt Macy 
1278eda14cbcSMatt Macy 	err = dnode_hold(os, object, FTAG, &dn);
1279eda14cbcSMatt Macy 	if (err)
1280eda14cbcSMatt Macy 		return (err);
1281eda14cbcSMatt Macy 
1282eda14cbcSMatt Macy 	err = dmu_read_uio_dnode(dn, uio, size);
1283eda14cbcSMatt Macy 
1284eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
1285eda14cbcSMatt Macy 
1286eda14cbcSMatt Macy 	return (err);
1287eda14cbcSMatt Macy }
1288eda14cbcSMatt Macy 
1289eda14cbcSMatt Macy int
1290184c1b94SMartin Matuska dmu_write_uio_dnode(dnode_t *dn, zfs_uio_t *uio, uint64_t size, dmu_tx_t *tx)
1291eda14cbcSMatt Macy {
1292eda14cbcSMatt Macy 	dmu_buf_t **dbp;
1293eda14cbcSMatt Macy 	int numbufs;
1294eda14cbcSMatt Macy 	int err = 0;
1295eda14cbcSMatt Macy 	int i;
1296eda14cbcSMatt Macy 
1297184c1b94SMartin Matuska 	err = dmu_buf_hold_array_by_dnode(dn, zfs_uio_offset(uio), size,
1298eda14cbcSMatt Macy 	    FALSE, FTAG, &numbufs, &dbp, DMU_READ_PREFETCH);
1299eda14cbcSMatt Macy 	if (err)
1300eda14cbcSMatt Macy 		return (err);
1301eda14cbcSMatt Macy 
1302eda14cbcSMatt Macy 	for (i = 0; i < numbufs; i++) {
1303eda14cbcSMatt Macy 		uint64_t tocpy;
1304eda14cbcSMatt Macy 		int64_t bufoff;
1305eda14cbcSMatt Macy 		dmu_buf_t *db = dbp[i];
1306eda14cbcSMatt Macy 
1307eda14cbcSMatt Macy 		ASSERT(size > 0);
1308eda14cbcSMatt Macy 
1309184c1b94SMartin Matuska 		bufoff = zfs_uio_offset(uio) - db->db_offset;
1310eda14cbcSMatt Macy 		tocpy = MIN(db->db_size - bufoff, size);
1311eda14cbcSMatt Macy 
1312eda14cbcSMatt Macy 		ASSERT(i == 0 || i == numbufs-1 || tocpy == db->db_size);
1313eda14cbcSMatt Macy 
1314eda14cbcSMatt Macy 		if (tocpy == db->db_size)
1315eda14cbcSMatt Macy 			dmu_buf_will_fill(db, tx);
1316eda14cbcSMatt Macy 		else
1317eda14cbcSMatt Macy 			dmu_buf_will_dirty(db, tx);
1318eda14cbcSMatt Macy 
1319eda14cbcSMatt Macy 		/*
1320184c1b94SMartin Matuska 		 * XXX zfs_uiomove could block forever (eg.nfs-backed
1321eda14cbcSMatt Macy 		 * pages).  There needs to be a uiolockdown() function
1322184c1b94SMartin Matuska 		 * to lock the pages in memory, so that zfs_uiomove won't
1323eda14cbcSMatt Macy 		 * block.
1324eda14cbcSMatt Macy 		 */
1325184c1b94SMartin Matuska 		err = zfs_uio_fault_move((char *)db->db_data + bufoff,
1326184c1b94SMartin Matuska 		    tocpy, UIO_WRITE, uio);
1327184c1b94SMartin Matuska 
1328eda14cbcSMatt Macy 		if (tocpy == db->db_size)
1329eda14cbcSMatt Macy 			dmu_buf_fill_done(db, tx);
1330eda14cbcSMatt Macy 
1331eda14cbcSMatt Macy 		if (err)
1332eda14cbcSMatt Macy 			break;
1333eda14cbcSMatt Macy 
1334eda14cbcSMatt Macy 		size -= tocpy;
1335eda14cbcSMatt Macy 	}
1336eda14cbcSMatt Macy 
1337eda14cbcSMatt Macy 	dmu_buf_rele_array(dbp, numbufs, FTAG);
1338eda14cbcSMatt Macy 	return (err);
1339eda14cbcSMatt Macy }
1340eda14cbcSMatt Macy 
1341eda14cbcSMatt Macy /*
1342eda14cbcSMatt Macy  * Write 'size' bytes from the uio buffer.
1343eda14cbcSMatt Macy  * To object zdb->db_object.
1344184c1b94SMartin Matuska  * Starting at offset zfs_uio_offset(uio).
1345eda14cbcSMatt Macy  *
1346eda14cbcSMatt Macy  * If the caller already has a dbuf in the target object
1347eda14cbcSMatt Macy  * (e.g. its bonus buffer), this routine is faster than dmu_write_uio(),
1348eda14cbcSMatt Macy  * because we don't have to find the dnode_t for the object.
1349eda14cbcSMatt Macy  */
1350eda14cbcSMatt Macy int
1351184c1b94SMartin Matuska dmu_write_uio_dbuf(dmu_buf_t *zdb, zfs_uio_t *uio, uint64_t size,
1352eda14cbcSMatt Macy     dmu_tx_t *tx)
1353eda14cbcSMatt Macy {
1354eda14cbcSMatt Macy 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)zdb;
1355eda14cbcSMatt Macy 	dnode_t *dn;
1356eda14cbcSMatt Macy 	int err;
1357eda14cbcSMatt Macy 
1358eda14cbcSMatt Macy 	if (size == 0)
1359eda14cbcSMatt Macy 		return (0);
1360eda14cbcSMatt Macy 
1361eda14cbcSMatt Macy 	DB_DNODE_ENTER(db);
1362eda14cbcSMatt Macy 	dn = DB_DNODE(db);
1363eda14cbcSMatt Macy 	err = dmu_write_uio_dnode(dn, uio, size, tx);
1364eda14cbcSMatt Macy 	DB_DNODE_EXIT(db);
1365eda14cbcSMatt Macy 
1366eda14cbcSMatt Macy 	return (err);
1367eda14cbcSMatt Macy }
1368eda14cbcSMatt Macy 
1369eda14cbcSMatt Macy /*
1370eda14cbcSMatt Macy  * Write 'size' bytes from the uio buffer.
1371eda14cbcSMatt Macy  * To the specified object.
1372184c1b94SMartin Matuska  * Starting at offset zfs_uio_offset(uio).
1373eda14cbcSMatt Macy  */
1374eda14cbcSMatt Macy int
1375184c1b94SMartin Matuska dmu_write_uio(objset_t *os, uint64_t object, zfs_uio_t *uio, uint64_t size,
1376eda14cbcSMatt Macy     dmu_tx_t *tx)
1377eda14cbcSMatt Macy {
1378eda14cbcSMatt Macy 	dnode_t *dn;
1379eda14cbcSMatt Macy 	int err;
1380eda14cbcSMatt Macy 
1381eda14cbcSMatt Macy 	if (size == 0)
1382eda14cbcSMatt Macy 		return (0);
1383eda14cbcSMatt Macy 
1384eda14cbcSMatt Macy 	err = dnode_hold(os, object, FTAG, &dn);
1385eda14cbcSMatt Macy 	if (err)
1386eda14cbcSMatt Macy 		return (err);
1387eda14cbcSMatt Macy 
1388eda14cbcSMatt Macy 	err = dmu_write_uio_dnode(dn, uio, size, tx);
1389eda14cbcSMatt Macy 
1390eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
1391eda14cbcSMatt Macy 
1392eda14cbcSMatt Macy 	return (err);
1393eda14cbcSMatt Macy }
1394eda14cbcSMatt Macy #endif /* _KERNEL */
1395eda14cbcSMatt Macy 
1396eda14cbcSMatt Macy /*
1397eda14cbcSMatt Macy  * Allocate a loaned anonymous arc buffer.
1398eda14cbcSMatt Macy  */
1399eda14cbcSMatt Macy arc_buf_t *
1400eda14cbcSMatt Macy dmu_request_arcbuf(dmu_buf_t *handle, int size)
1401eda14cbcSMatt Macy {
1402eda14cbcSMatt Macy 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)handle;
1403eda14cbcSMatt Macy 
1404eda14cbcSMatt Macy 	return (arc_loan_buf(db->db_objset->os_spa, B_FALSE, size));
1405eda14cbcSMatt Macy }
1406eda14cbcSMatt Macy 
1407eda14cbcSMatt Macy /*
1408eda14cbcSMatt Macy  * Free a loaned arc buffer.
1409eda14cbcSMatt Macy  */
1410eda14cbcSMatt Macy void
1411eda14cbcSMatt Macy dmu_return_arcbuf(arc_buf_t *buf)
1412eda14cbcSMatt Macy {
1413eda14cbcSMatt Macy 	arc_return_buf(buf, FTAG);
1414eda14cbcSMatt Macy 	arc_buf_destroy(buf, FTAG);
1415eda14cbcSMatt Macy }
1416eda14cbcSMatt Macy 
1417eda14cbcSMatt Macy /*
14187877fdebSMatt Macy  * A "lightweight" write is faster than a regular write (e.g.
14197877fdebSMatt Macy  * dmu_write_by_dnode() or dmu_assign_arcbuf_by_dnode()), because it avoids the
14207877fdebSMatt Macy  * CPU cost of creating a dmu_buf_impl_t and arc_buf_[hdr_]_t.  However, the
14217877fdebSMatt Macy  * data can not be read or overwritten until the transaction's txg has been
14227877fdebSMatt Macy  * synced.  This makes it appropriate for workloads that are known to be
14237877fdebSMatt Macy  * (temporarily) write-only, like "zfs receive".
14247877fdebSMatt Macy  *
14257877fdebSMatt Macy  * A single block is written, starting at the specified offset in bytes.  If
14267877fdebSMatt Macy  * the call is successful, it returns 0 and the provided abd has been
14277877fdebSMatt Macy  * consumed (the caller should not free it).
14287877fdebSMatt Macy  */
14297877fdebSMatt Macy int
14307877fdebSMatt Macy dmu_lightweight_write_by_dnode(dnode_t *dn, uint64_t offset, abd_t *abd,
14317877fdebSMatt Macy     const zio_prop_t *zp, enum zio_flag flags, dmu_tx_t *tx)
14327877fdebSMatt Macy {
14337877fdebSMatt Macy 	dbuf_dirty_record_t *dr =
14347877fdebSMatt Macy 	    dbuf_dirty_lightweight(dn, dbuf_whichblock(dn, 0, offset), tx);
14357877fdebSMatt Macy 	if (dr == NULL)
14367877fdebSMatt Macy 		return (SET_ERROR(EIO));
14377877fdebSMatt Macy 	dr->dt.dll.dr_abd = abd;
14387877fdebSMatt Macy 	dr->dt.dll.dr_props = *zp;
14397877fdebSMatt Macy 	dr->dt.dll.dr_flags = flags;
14407877fdebSMatt Macy 	return (0);
14417877fdebSMatt Macy }
14427877fdebSMatt Macy 
14437877fdebSMatt Macy /*
1444eda14cbcSMatt Macy  * When possible directly assign passed loaned arc buffer to a dbuf.
1445eda14cbcSMatt Macy  * If this is not possible copy the contents of passed arc buf via
1446eda14cbcSMatt Macy  * dmu_write().
1447eda14cbcSMatt Macy  */
1448eda14cbcSMatt Macy int
1449eda14cbcSMatt Macy dmu_assign_arcbuf_by_dnode(dnode_t *dn, uint64_t offset, arc_buf_t *buf,
1450eda14cbcSMatt Macy     dmu_tx_t *tx)
1451eda14cbcSMatt Macy {
1452eda14cbcSMatt Macy 	dmu_buf_impl_t *db;
1453eda14cbcSMatt Macy 	objset_t *os = dn->dn_objset;
1454eda14cbcSMatt Macy 	uint64_t object = dn->dn_object;
1455eda14cbcSMatt Macy 	uint32_t blksz = (uint32_t)arc_buf_lsize(buf);
1456eda14cbcSMatt Macy 	uint64_t blkid;
1457eda14cbcSMatt Macy 
1458eda14cbcSMatt Macy 	rw_enter(&dn->dn_struct_rwlock, RW_READER);
1459eda14cbcSMatt Macy 	blkid = dbuf_whichblock(dn, 0, offset);
1460eda14cbcSMatt Macy 	db = dbuf_hold(dn, blkid, FTAG);
1461eda14cbcSMatt Macy 	if (db == NULL)
1462eda14cbcSMatt Macy 		return (SET_ERROR(EIO));
1463eda14cbcSMatt Macy 	rw_exit(&dn->dn_struct_rwlock);
1464eda14cbcSMatt Macy 
1465eda14cbcSMatt Macy 	/*
14667877fdebSMatt Macy 	 * We can only assign if the offset is aligned and the arc buf is the
14677877fdebSMatt Macy 	 * same size as the dbuf.
1468eda14cbcSMatt Macy 	 */
1469eda14cbcSMatt Macy 	if (offset == db->db.db_offset && blksz == db->db.db_size) {
1470ba27dd8bSMartin Matuska 		zfs_racct_write(blksz, 1);
1471eda14cbcSMatt Macy 		dbuf_assign_arcbuf(db, buf, tx);
1472eda14cbcSMatt Macy 		dbuf_rele(db, FTAG);
1473eda14cbcSMatt Macy 	} else {
1474eda14cbcSMatt Macy 		/* compressed bufs must always be assignable to their dbuf */
1475eda14cbcSMatt Macy 		ASSERT3U(arc_get_compression(buf), ==, ZIO_COMPRESS_OFF);
1476eda14cbcSMatt Macy 		ASSERT(!(buf->b_flags & ARC_BUF_FLAG_COMPRESSED));
1477eda14cbcSMatt Macy 
1478eda14cbcSMatt Macy 		dbuf_rele(db, FTAG);
1479eda14cbcSMatt Macy 		dmu_write(os, object, offset, blksz, buf->b_data, tx);
1480eda14cbcSMatt Macy 		dmu_return_arcbuf(buf);
1481eda14cbcSMatt Macy 	}
1482eda14cbcSMatt Macy 
1483eda14cbcSMatt Macy 	return (0);
1484eda14cbcSMatt Macy }
1485eda14cbcSMatt Macy 
1486eda14cbcSMatt Macy int
1487eda14cbcSMatt Macy dmu_assign_arcbuf_by_dbuf(dmu_buf_t *handle, uint64_t offset, arc_buf_t *buf,
1488eda14cbcSMatt Macy     dmu_tx_t *tx)
1489eda14cbcSMatt Macy {
1490eda14cbcSMatt Macy 	int err;
1491eda14cbcSMatt Macy 	dmu_buf_impl_t *dbuf = (dmu_buf_impl_t *)handle;
1492eda14cbcSMatt Macy 
1493eda14cbcSMatt Macy 	DB_DNODE_ENTER(dbuf);
1494eda14cbcSMatt Macy 	err = dmu_assign_arcbuf_by_dnode(DB_DNODE(dbuf), offset, buf, tx);
1495eda14cbcSMatt Macy 	DB_DNODE_EXIT(dbuf);
1496eda14cbcSMatt Macy 
1497eda14cbcSMatt Macy 	return (err);
1498eda14cbcSMatt Macy }
1499eda14cbcSMatt Macy 
1500eda14cbcSMatt Macy typedef struct {
1501eda14cbcSMatt Macy 	dbuf_dirty_record_t	*dsa_dr;
1502eda14cbcSMatt Macy 	dmu_sync_cb_t		*dsa_done;
1503eda14cbcSMatt Macy 	zgd_t			*dsa_zgd;
1504eda14cbcSMatt Macy 	dmu_tx_t		*dsa_tx;
1505eda14cbcSMatt Macy } dmu_sync_arg_t;
1506eda14cbcSMatt Macy 
1507eda14cbcSMatt Macy /* ARGSUSED */
1508eda14cbcSMatt Macy static void
1509eda14cbcSMatt Macy dmu_sync_ready(zio_t *zio, arc_buf_t *buf, void *varg)
1510eda14cbcSMatt Macy {
1511eda14cbcSMatt Macy 	dmu_sync_arg_t *dsa = varg;
1512eda14cbcSMatt Macy 	dmu_buf_t *db = dsa->dsa_zgd->zgd_db;
1513eda14cbcSMatt Macy 	blkptr_t *bp = zio->io_bp;
1514eda14cbcSMatt Macy 
1515eda14cbcSMatt Macy 	if (zio->io_error == 0) {
1516eda14cbcSMatt Macy 		if (BP_IS_HOLE(bp)) {
1517eda14cbcSMatt Macy 			/*
1518eda14cbcSMatt Macy 			 * A block of zeros may compress to a hole, but the
1519eda14cbcSMatt Macy 			 * block size still needs to be known for replay.
1520eda14cbcSMatt Macy 			 */
1521eda14cbcSMatt Macy 			BP_SET_LSIZE(bp, db->db_size);
1522eda14cbcSMatt Macy 		} else if (!BP_IS_EMBEDDED(bp)) {
1523eda14cbcSMatt Macy 			ASSERT(BP_GET_LEVEL(bp) == 0);
1524eda14cbcSMatt Macy 			BP_SET_FILL(bp, 1);
1525eda14cbcSMatt Macy 		}
1526eda14cbcSMatt Macy 	}
1527eda14cbcSMatt Macy }
1528eda14cbcSMatt Macy 
1529eda14cbcSMatt Macy static void
1530eda14cbcSMatt Macy dmu_sync_late_arrival_ready(zio_t *zio)
1531eda14cbcSMatt Macy {
1532eda14cbcSMatt Macy 	dmu_sync_ready(zio, NULL, zio->io_private);
1533eda14cbcSMatt Macy }
1534eda14cbcSMatt Macy 
1535eda14cbcSMatt Macy /* ARGSUSED */
1536eda14cbcSMatt Macy static void
1537eda14cbcSMatt Macy dmu_sync_done(zio_t *zio, arc_buf_t *buf, void *varg)
1538eda14cbcSMatt Macy {
1539eda14cbcSMatt Macy 	dmu_sync_arg_t *dsa = varg;
1540eda14cbcSMatt Macy 	dbuf_dirty_record_t *dr = dsa->dsa_dr;
1541eda14cbcSMatt Macy 	dmu_buf_impl_t *db = dr->dr_dbuf;
1542eda14cbcSMatt Macy 	zgd_t *zgd = dsa->dsa_zgd;
1543eda14cbcSMatt Macy 
1544eda14cbcSMatt Macy 	/*
1545eda14cbcSMatt Macy 	 * Record the vdev(s) backing this blkptr so they can be flushed after
1546eda14cbcSMatt Macy 	 * the writes for the lwb have completed.
1547eda14cbcSMatt Macy 	 */
1548eda14cbcSMatt Macy 	if (zio->io_error == 0) {
1549eda14cbcSMatt Macy 		zil_lwb_add_block(zgd->zgd_lwb, zgd->zgd_bp);
1550eda14cbcSMatt Macy 	}
1551eda14cbcSMatt Macy 
1552eda14cbcSMatt Macy 	mutex_enter(&db->db_mtx);
1553eda14cbcSMatt Macy 	ASSERT(dr->dt.dl.dr_override_state == DR_IN_DMU_SYNC);
1554eda14cbcSMatt Macy 	if (zio->io_error == 0) {
1555eda14cbcSMatt Macy 		dr->dt.dl.dr_nopwrite = !!(zio->io_flags & ZIO_FLAG_NOPWRITE);
1556eda14cbcSMatt Macy 		if (dr->dt.dl.dr_nopwrite) {
1557eda14cbcSMatt Macy 			blkptr_t *bp = zio->io_bp;
1558eda14cbcSMatt Macy 			blkptr_t *bp_orig = &zio->io_bp_orig;
1559eda14cbcSMatt Macy 			uint8_t chksum = BP_GET_CHECKSUM(bp_orig);
1560eda14cbcSMatt Macy 
1561eda14cbcSMatt Macy 			ASSERT(BP_EQUAL(bp, bp_orig));
1562eda14cbcSMatt Macy 			VERIFY(BP_EQUAL(bp, db->db_blkptr));
1563eda14cbcSMatt Macy 			ASSERT(zio->io_prop.zp_compress != ZIO_COMPRESS_OFF);
1564eda14cbcSMatt Macy 			VERIFY(zio_checksum_table[chksum].ci_flags &
1565eda14cbcSMatt Macy 			    ZCHECKSUM_FLAG_NOPWRITE);
1566eda14cbcSMatt Macy 		}
1567eda14cbcSMatt Macy 		dr->dt.dl.dr_overridden_by = *zio->io_bp;
1568eda14cbcSMatt Macy 		dr->dt.dl.dr_override_state = DR_OVERRIDDEN;
1569eda14cbcSMatt Macy 		dr->dt.dl.dr_copies = zio->io_prop.zp_copies;
1570eda14cbcSMatt Macy 
1571eda14cbcSMatt Macy 		/*
1572eda14cbcSMatt Macy 		 * Old style holes are filled with all zeros, whereas
1573eda14cbcSMatt Macy 		 * new-style holes maintain their lsize, type, level,
1574eda14cbcSMatt Macy 		 * and birth time (see zio_write_compress). While we
1575eda14cbcSMatt Macy 		 * need to reset the BP_SET_LSIZE() call that happened
1576eda14cbcSMatt Macy 		 * in dmu_sync_ready for old style holes, we do *not*
1577eda14cbcSMatt Macy 		 * want to wipe out the information contained in new
1578eda14cbcSMatt Macy 		 * style holes. Thus, only zero out the block pointer if
1579eda14cbcSMatt Macy 		 * it's an old style hole.
1580eda14cbcSMatt Macy 		 */
1581eda14cbcSMatt Macy 		if (BP_IS_HOLE(&dr->dt.dl.dr_overridden_by) &&
1582eda14cbcSMatt Macy 		    dr->dt.dl.dr_overridden_by.blk_birth == 0)
1583eda14cbcSMatt Macy 			BP_ZERO(&dr->dt.dl.dr_overridden_by);
1584eda14cbcSMatt Macy 	} else {
1585eda14cbcSMatt Macy 		dr->dt.dl.dr_override_state = DR_NOT_OVERRIDDEN;
1586eda14cbcSMatt Macy 	}
1587eda14cbcSMatt Macy 	cv_broadcast(&db->db_changed);
1588eda14cbcSMatt Macy 	mutex_exit(&db->db_mtx);
1589eda14cbcSMatt Macy 
1590eda14cbcSMatt Macy 	dsa->dsa_done(dsa->dsa_zgd, zio->io_error);
1591eda14cbcSMatt Macy 
1592eda14cbcSMatt Macy 	kmem_free(dsa, sizeof (*dsa));
1593eda14cbcSMatt Macy }
1594eda14cbcSMatt Macy 
1595eda14cbcSMatt Macy static void
1596eda14cbcSMatt Macy dmu_sync_late_arrival_done(zio_t *zio)
1597eda14cbcSMatt Macy {
1598eda14cbcSMatt Macy 	blkptr_t *bp = zio->io_bp;
1599eda14cbcSMatt Macy 	dmu_sync_arg_t *dsa = zio->io_private;
1600eda14cbcSMatt Macy 	zgd_t *zgd = dsa->dsa_zgd;
1601eda14cbcSMatt Macy 
1602eda14cbcSMatt Macy 	if (zio->io_error == 0) {
1603eda14cbcSMatt Macy 		/*
1604eda14cbcSMatt Macy 		 * Record the vdev(s) backing this blkptr so they can be
1605eda14cbcSMatt Macy 		 * flushed after the writes for the lwb have completed.
1606eda14cbcSMatt Macy 		 */
1607eda14cbcSMatt Macy 		zil_lwb_add_block(zgd->zgd_lwb, zgd->zgd_bp);
1608eda14cbcSMatt Macy 
1609eda14cbcSMatt Macy 		if (!BP_IS_HOLE(bp)) {
1610eda14cbcSMatt Macy 			blkptr_t *bp_orig __maybe_unused = &zio->io_bp_orig;
1611eda14cbcSMatt Macy 			ASSERT(!(zio->io_flags & ZIO_FLAG_NOPWRITE));
1612eda14cbcSMatt Macy 			ASSERT(BP_IS_HOLE(bp_orig) || !BP_EQUAL(bp, bp_orig));
1613eda14cbcSMatt Macy 			ASSERT(zio->io_bp->blk_birth == zio->io_txg);
1614eda14cbcSMatt Macy 			ASSERT(zio->io_txg > spa_syncing_txg(zio->io_spa));
1615eda14cbcSMatt Macy 			zio_free(zio->io_spa, zio->io_txg, zio->io_bp);
1616eda14cbcSMatt Macy 		}
1617eda14cbcSMatt Macy 	}
1618eda14cbcSMatt Macy 
1619eda14cbcSMatt Macy 	dmu_tx_commit(dsa->dsa_tx);
1620eda14cbcSMatt Macy 
1621eda14cbcSMatt Macy 	dsa->dsa_done(dsa->dsa_zgd, zio->io_error);
1622eda14cbcSMatt Macy 
1623184c1b94SMartin Matuska 	abd_free(zio->io_abd);
1624eda14cbcSMatt Macy 	kmem_free(dsa, sizeof (*dsa));
1625eda14cbcSMatt Macy }
1626eda14cbcSMatt Macy 
1627eda14cbcSMatt Macy static int
1628eda14cbcSMatt Macy dmu_sync_late_arrival(zio_t *pio, objset_t *os, dmu_sync_cb_t *done, zgd_t *zgd,
1629eda14cbcSMatt Macy     zio_prop_t *zp, zbookmark_phys_t *zb)
1630eda14cbcSMatt Macy {
1631eda14cbcSMatt Macy 	dmu_sync_arg_t *dsa;
1632eda14cbcSMatt Macy 	dmu_tx_t *tx;
1633eda14cbcSMatt Macy 
1634eda14cbcSMatt Macy 	tx = dmu_tx_create(os);
1635eda14cbcSMatt Macy 	dmu_tx_hold_space(tx, zgd->zgd_db->db_size);
1636eda14cbcSMatt Macy 	if (dmu_tx_assign(tx, TXG_WAIT) != 0) {
1637eda14cbcSMatt Macy 		dmu_tx_abort(tx);
1638eda14cbcSMatt Macy 		/* Make zl_get_data do txg_waited_synced() */
1639eda14cbcSMatt Macy 		return (SET_ERROR(EIO));
1640eda14cbcSMatt Macy 	}
1641eda14cbcSMatt Macy 
1642eda14cbcSMatt Macy 	/*
1643eda14cbcSMatt Macy 	 * In order to prevent the zgd's lwb from being free'd prior to
1644eda14cbcSMatt Macy 	 * dmu_sync_late_arrival_done() being called, we have to ensure
1645eda14cbcSMatt Macy 	 * the lwb's "max txg" takes this tx's txg into account.
1646eda14cbcSMatt Macy 	 */
1647eda14cbcSMatt Macy 	zil_lwb_add_txg(zgd->zgd_lwb, dmu_tx_get_txg(tx));
1648eda14cbcSMatt Macy 
1649eda14cbcSMatt Macy 	dsa = kmem_alloc(sizeof (dmu_sync_arg_t), KM_SLEEP);
1650eda14cbcSMatt Macy 	dsa->dsa_dr = NULL;
1651eda14cbcSMatt Macy 	dsa->dsa_done = done;
1652eda14cbcSMatt Macy 	dsa->dsa_zgd = zgd;
1653eda14cbcSMatt Macy 	dsa->dsa_tx = tx;
1654eda14cbcSMatt Macy 
1655eda14cbcSMatt Macy 	/*
1656eda14cbcSMatt Macy 	 * Since we are currently syncing this txg, it's nontrivial to
1657eda14cbcSMatt Macy 	 * determine what BP to nopwrite against, so we disable nopwrite.
1658eda14cbcSMatt Macy 	 *
1659eda14cbcSMatt Macy 	 * When syncing, the db_blkptr is initially the BP of the previous
1660eda14cbcSMatt Macy 	 * txg.  We can not nopwrite against it because it will be changed
1661eda14cbcSMatt Macy 	 * (this is similar to the non-late-arrival case where the dbuf is
1662eda14cbcSMatt Macy 	 * dirty in a future txg).
1663eda14cbcSMatt Macy 	 *
1664eda14cbcSMatt Macy 	 * Then dbuf_write_ready() sets bp_blkptr to the location we will write.
1665eda14cbcSMatt Macy 	 * We can not nopwrite against it because although the BP will not
1666eda14cbcSMatt Macy 	 * (typically) be changed, the data has not yet been persisted to this
1667eda14cbcSMatt Macy 	 * location.
1668eda14cbcSMatt Macy 	 *
1669eda14cbcSMatt Macy 	 * Finally, when dbuf_write_done() is called, it is theoretically
1670eda14cbcSMatt Macy 	 * possible to always nopwrite, because the data that was written in
1671eda14cbcSMatt Macy 	 * this txg is the same data that we are trying to write.  However we
1672eda14cbcSMatt Macy 	 * would need to check that this dbuf is not dirty in any future
1673eda14cbcSMatt Macy 	 * txg's (as we do in the normal dmu_sync() path). For simplicity, we
1674eda14cbcSMatt Macy 	 * don't nopwrite in this case.
1675eda14cbcSMatt Macy 	 */
1676eda14cbcSMatt Macy 	zp->zp_nopwrite = B_FALSE;
1677eda14cbcSMatt Macy 
1678eda14cbcSMatt Macy 	zio_nowait(zio_write(pio, os->os_spa, dmu_tx_get_txg(tx), zgd->zgd_bp,
1679eda14cbcSMatt Macy 	    abd_get_from_buf(zgd->zgd_db->db_data, zgd->zgd_db->db_size),
1680eda14cbcSMatt Macy 	    zgd->zgd_db->db_size, zgd->zgd_db->db_size, zp,
1681eda14cbcSMatt Macy 	    dmu_sync_late_arrival_ready, NULL, NULL, dmu_sync_late_arrival_done,
1682eda14cbcSMatt Macy 	    dsa, ZIO_PRIORITY_SYNC_WRITE, ZIO_FLAG_CANFAIL, zb));
1683eda14cbcSMatt Macy 
1684eda14cbcSMatt Macy 	return (0);
1685eda14cbcSMatt Macy }
1686eda14cbcSMatt Macy 
1687eda14cbcSMatt Macy /*
1688eda14cbcSMatt Macy  * Intent log support: sync the block associated with db to disk.
1689eda14cbcSMatt Macy  * N.B. and XXX: the caller is responsible for making sure that the
1690eda14cbcSMatt Macy  * data isn't changing while dmu_sync() is writing it.
1691eda14cbcSMatt Macy  *
1692eda14cbcSMatt Macy  * Return values:
1693eda14cbcSMatt Macy  *
1694eda14cbcSMatt Macy  *	EEXIST: this txg has already been synced, so there's nothing to do.
1695eda14cbcSMatt Macy  *		The caller should not log the write.
1696eda14cbcSMatt Macy  *
1697eda14cbcSMatt Macy  *	ENOENT: the block was dbuf_free_range()'d, so there's nothing to do.
1698eda14cbcSMatt Macy  *		The caller should not log the write.
1699eda14cbcSMatt Macy  *
1700eda14cbcSMatt Macy  *	EALREADY: this block is already in the process of being synced.
1701eda14cbcSMatt Macy  *		The caller should track its progress (somehow).
1702eda14cbcSMatt Macy  *
1703eda14cbcSMatt Macy  *	EIO: could not do the I/O.
1704eda14cbcSMatt Macy  *		The caller should do a txg_wait_synced().
1705eda14cbcSMatt Macy  *
1706eda14cbcSMatt Macy  *	0: the I/O has been initiated.
1707eda14cbcSMatt Macy  *		The caller should log this blkptr in the done callback.
1708eda14cbcSMatt Macy  *		It is possible that the I/O will fail, in which case
1709eda14cbcSMatt Macy  *		the error will be reported to the done callback and
1710eda14cbcSMatt Macy  *		propagated to pio from zio_done().
1711eda14cbcSMatt Macy  */
1712eda14cbcSMatt Macy int
1713eda14cbcSMatt Macy dmu_sync(zio_t *pio, uint64_t txg, dmu_sync_cb_t *done, zgd_t *zgd)
1714eda14cbcSMatt Macy {
1715eda14cbcSMatt Macy 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)zgd->zgd_db;
1716eda14cbcSMatt Macy 	objset_t *os = db->db_objset;
1717eda14cbcSMatt Macy 	dsl_dataset_t *ds = os->os_dsl_dataset;
1718eda14cbcSMatt Macy 	dbuf_dirty_record_t *dr, *dr_next;
1719eda14cbcSMatt Macy 	dmu_sync_arg_t *dsa;
1720eda14cbcSMatt Macy 	zbookmark_phys_t zb;
1721eda14cbcSMatt Macy 	zio_prop_t zp;
1722eda14cbcSMatt Macy 	dnode_t *dn;
1723eda14cbcSMatt Macy 
1724eda14cbcSMatt Macy 	ASSERT(pio != NULL);
1725eda14cbcSMatt Macy 	ASSERT(txg != 0);
1726eda14cbcSMatt Macy 
1727eda14cbcSMatt Macy 	SET_BOOKMARK(&zb, ds->ds_object,
1728eda14cbcSMatt Macy 	    db->db.db_object, db->db_level, db->db_blkid);
1729eda14cbcSMatt Macy 
1730eda14cbcSMatt Macy 	DB_DNODE_ENTER(db);
1731eda14cbcSMatt Macy 	dn = DB_DNODE(db);
1732eda14cbcSMatt Macy 	dmu_write_policy(os, dn, db->db_level, WP_DMU_SYNC, &zp);
1733eda14cbcSMatt Macy 	DB_DNODE_EXIT(db);
1734eda14cbcSMatt Macy 
1735eda14cbcSMatt Macy 	/*
1736eda14cbcSMatt Macy 	 * If we're frozen (running ziltest), we always need to generate a bp.
1737eda14cbcSMatt Macy 	 */
1738eda14cbcSMatt Macy 	if (txg > spa_freeze_txg(os->os_spa))
1739eda14cbcSMatt Macy 		return (dmu_sync_late_arrival(pio, os, done, zgd, &zp, &zb));
1740eda14cbcSMatt Macy 
1741eda14cbcSMatt Macy 	/*
1742eda14cbcSMatt Macy 	 * Grabbing db_mtx now provides a barrier between dbuf_sync_leaf()
1743eda14cbcSMatt Macy 	 * and us.  If we determine that this txg is not yet syncing,
1744eda14cbcSMatt Macy 	 * but it begins to sync a moment later, that's OK because the
1745eda14cbcSMatt Macy 	 * sync thread will block in dbuf_sync_leaf() until we drop db_mtx.
1746eda14cbcSMatt Macy 	 */
1747eda14cbcSMatt Macy 	mutex_enter(&db->db_mtx);
1748eda14cbcSMatt Macy 
1749eda14cbcSMatt Macy 	if (txg <= spa_last_synced_txg(os->os_spa)) {
1750eda14cbcSMatt Macy 		/*
1751eda14cbcSMatt Macy 		 * This txg has already synced.  There's nothing to do.
1752eda14cbcSMatt Macy 		 */
1753eda14cbcSMatt Macy 		mutex_exit(&db->db_mtx);
1754eda14cbcSMatt Macy 		return (SET_ERROR(EEXIST));
1755eda14cbcSMatt Macy 	}
1756eda14cbcSMatt Macy 
1757eda14cbcSMatt Macy 	if (txg <= spa_syncing_txg(os->os_spa)) {
1758eda14cbcSMatt Macy 		/*
1759eda14cbcSMatt Macy 		 * This txg is currently syncing, so we can't mess with
1760eda14cbcSMatt Macy 		 * the dirty record anymore; just write a new log block.
1761eda14cbcSMatt Macy 		 */
1762eda14cbcSMatt Macy 		mutex_exit(&db->db_mtx);
1763eda14cbcSMatt Macy 		return (dmu_sync_late_arrival(pio, os, done, zgd, &zp, &zb));
1764eda14cbcSMatt Macy 	}
1765eda14cbcSMatt Macy 
1766eda14cbcSMatt Macy 	dr = dbuf_find_dirty_eq(db, txg);
1767eda14cbcSMatt Macy 
1768eda14cbcSMatt Macy 	if (dr == NULL) {
1769eda14cbcSMatt Macy 		/*
1770eda14cbcSMatt Macy 		 * There's no dr for this dbuf, so it must have been freed.
1771eda14cbcSMatt Macy 		 * There's no need to log writes to freed blocks, so we're done.
1772eda14cbcSMatt Macy 		 */
1773eda14cbcSMatt Macy 		mutex_exit(&db->db_mtx);
1774eda14cbcSMatt Macy 		return (SET_ERROR(ENOENT));
1775eda14cbcSMatt Macy 	}
1776eda14cbcSMatt Macy 
1777eda14cbcSMatt Macy 	dr_next = list_next(&db->db_dirty_records, dr);
1778eda14cbcSMatt Macy 	ASSERT(dr_next == NULL || dr_next->dr_txg < txg);
1779eda14cbcSMatt Macy 
1780eda14cbcSMatt Macy 	if (db->db_blkptr != NULL) {
1781eda14cbcSMatt Macy 		/*
1782eda14cbcSMatt Macy 		 * We need to fill in zgd_bp with the current blkptr so that
1783eda14cbcSMatt Macy 		 * the nopwrite code can check if we're writing the same
1784eda14cbcSMatt Macy 		 * data that's already on disk.  We can only nopwrite if we
1785eda14cbcSMatt Macy 		 * are sure that after making the copy, db_blkptr will not
1786eda14cbcSMatt Macy 		 * change until our i/o completes.  We ensure this by
1787eda14cbcSMatt Macy 		 * holding the db_mtx, and only allowing nopwrite if the
1788eda14cbcSMatt Macy 		 * block is not already dirty (see below).  This is verified
1789eda14cbcSMatt Macy 		 * by dmu_sync_done(), which VERIFYs that the db_blkptr has
1790eda14cbcSMatt Macy 		 * not changed.
1791eda14cbcSMatt Macy 		 */
1792eda14cbcSMatt Macy 		*zgd->zgd_bp = *db->db_blkptr;
1793eda14cbcSMatt Macy 	}
1794eda14cbcSMatt Macy 
1795eda14cbcSMatt Macy 	/*
1796eda14cbcSMatt Macy 	 * Assume the on-disk data is X, the current syncing data (in
1797eda14cbcSMatt Macy 	 * txg - 1) is Y, and the current in-memory data is Z (currently
1798eda14cbcSMatt Macy 	 * in dmu_sync).
1799eda14cbcSMatt Macy 	 *
1800eda14cbcSMatt Macy 	 * We usually want to perform a nopwrite if X and Z are the
1801eda14cbcSMatt Macy 	 * same.  However, if Y is different (i.e. the BP is going to
1802eda14cbcSMatt Macy 	 * change before this write takes effect), then a nopwrite will
1803eda14cbcSMatt Macy 	 * be incorrect - we would override with X, which could have
1804eda14cbcSMatt Macy 	 * been freed when Y was written.
1805eda14cbcSMatt Macy 	 *
1806eda14cbcSMatt Macy 	 * (Note that this is not a concern when we are nop-writing from
1807eda14cbcSMatt Macy 	 * syncing context, because X and Y must be identical, because
1808eda14cbcSMatt Macy 	 * all previous txgs have been synced.)
1809eda14cbcSMatt Macy 	 *
1810eda14cbcSMatt Macy 	 * Therefore, we disable nopwrite if the current BP could change
1811eda14cbcSMatt Macy 	 * before this TXG.  There are two ways it could change: by
1812eda14cbcSMatt Macy 	 * being dirty (dr_next is non-NULL), or by being freed
1813eda14cbcSMatt Macy 	 * (dnode_block_freed()).  This behavior is verified by
1814eda14cbcSMatt Macy 	 * zio_done(), which VERIFYs that the override BP is identical
1815eda14cbcSMatt Macy 	 * to the on-disk BP.
1816eda14cbcSMatt Macy 	 */
1817eda14cbcSMatt Macy 	DB_DNODE_ENTER(db);
1818eda14cbcSMatt Macy 	dn = DB_DNODE(db);
1819eda14cbcSMatt Macy 	if (dr_next != NULL || dnode_block_freed(dn, db->db_blkid))
1820eda14cbcSMatt Macy 		zp.zp_nopwrite = B_FALSE;
1821eda14cbcSMatt Macy 	DB_DNODE_EXIT(db);
1822eda14cbcSMatt Macy 
1823eda14cbcSMatt Macy 	ASSERT(dr->dr_txg == txg);
1824eda14cbcSMatt Macy 	if (dr->dt.dl.dr_override_state == DR_IN_DMU_SYNC ||
1825eda14cbcSMatt Macy 	    dr->dt.dl.dr_override_state == DR_OVERRIDDEN) {
1826eda14cbcSMatt Macy 		/*
1827eda14cbcSMatt Macy 		 * We have already issued a sync write for this buffer,
1828eda14cbcSMatt Macy 		 * or this buffer has already been synced.  It could not
1829eda14cbcSMatt Macy 		 * have been dirtied since, or we would have cleared the state.
1830eda14cbcSMatt Macy 		 */
1831eda14cbcSMatt Macy 		mutex_exit(&db->db_mtx);
1832eda14cbcSMatt Macy 		return (SET_ERROR(EALREADY));
1833eda14cbcSMatt Macy 	}
1834eda14cbcSMatt Macy 
1835eda14cbcSMatt Macy 	ASSERT(dr->dt.dl.dr_override_state == DR_NOT_OVERRIDDEN);
1836eda14cbcSMatt Macy 	dr->dt.dl.dr_override_state = DR_IN_DMU_SYNC;
1837eda14cbcSMatt Macy 	mutex_exit(&db->db_mtx);
1838eda14cbcSMatt Macy 
1839eda14cbcSMatt Macy 	dsa = kmem_alloc(sizeof (dmu_sync_arg_t), KM_SLEEP);
1840eda14cbcSMatt Macy 	dsa->dsa_dr = dr;
1841eda14cbcSMatt Macy 	dsa->dsa_done = done;
1842eda14cbcSMatt Macy 	dsa->dsa_zgd = zgd;
1843eda14cbcSMatt Macy 	dsa->dsa_tx = NULL;
1844eda14cbcSMatt Macy 
1845eda14cbcSMatt Macy 	zio_nowait(arc_write(pio, os->os_spa, txg,
1846dae17134SMartin Matuska 	    zgd->zgd_bp, dr->dt.dl.dr_data, dbuf_is_l2cacheable(db),
1847eda14cbcSMatt Macy 	    &zp, dmu_sync_ready, NULL, NULL, dmu_sync_done, dsa,
1848eda14cbcSMatt Macy 	    ZIO_PRIORITY_SYNC_WRITE, ZIO_FLAG_CANFAIL, &zb));
1849eda14cbcSMatt Macy 
1850eda14cbcSMatt Macy 	return (0);
1851eda14cbcSMatt Macy }
1852eda14cbcSMatt Macy 
1853eda14cbcSMatt Macy int
1854eda14cbcSMatt Macy dmu_object_set_nlevels(objset_t *os, uint64_t object, int nlevels, dmu_tx_t *tx)
1855eda14cbcSMatt Macy {
1856eda14cbcSMatt Macy 	dnode_t *dn;
1857eda14cbcSMatt Macy 	int err;
1858eda14cbcSMatt Macy 
1859eda14cbcSMatt Macy 	err = dnode_hold(os, object, FTAG, &dn);
1860eda14cbcSMatt Macy 	if (err)
1861eda14cbcSMatt Macy 		return (err);
1862eda14cbcSMatt Macy 	err = dnode_set_nlevels(dn, nlevels, tx);
1863eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
1864eda14cbcSMatt Macy 	return (err);
1865eda14cbcSMatt Macy }
1866eda14cbcSMatt Macy 
1867eda14cbcSMatt Macy int
1868eda14cbcSMatt Macy dmu_object_set_blocksize(objset_t *os, uint64_t object, uint64_t size, int ibs,
1869eda14cbcSMatt Macy     dmu_tx_t *tx)
1870eda14cbcSMatt Macy {
1871eda14cbcSMatt Macy 	dnode_t *dn;
1872eda14cbcSMatt Macy 	int err;
1873eda14cbcSMatt Macy 
1874eda14cbcSMatt Macy 	err = dnode_hold(os, object, FTAG, &dn);
1875eda14cbcSMatt Macy 	if (err)
1876eda14cbcSMatt Macy 		return (err);
1877eda14cbcSMatt Macy 	err = dnode_set_blksz(dn, size, ibs, tx);
1878eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
1879eda14cbcSMatt Macy 	return (err);
1880eda14cbcSMatt Macy }
1881eda14cbcSMatt Macy 
1882eda14cbcSMatt Macy int
1883eda14cbcSMatt Macy dmu_object_set_maxblkid(objset_t *os, uint64_t object, uint64_t maxblkid,
1884eda14cbcSMatt Macy     dmu_tx_t *tx)
1885eda14cbcSMatt Macy {
1886eda14cbcSMatt Macy 	dnode_t *dn;
1887eda14cbcSMatt Macy 	int err;
1888eda14cbcSMatt Macy 
1889eda14cbcSMatt Macy 	err = dnode_hold(os, object, FTAG, &dn);
1890eda14cbcSMatt Macy 	if (err)
1891eda14cbcSMatt Macy 		return (err);
1892eda14cbcSMatt Macy 	rw_enter(&dn->dn_struct_rwlock, RW_WRITER);
1893eda14cbcSMatt Macy 	dnode_new_blkid(dn, maxblkid, tx, B_FALSE, B_TRUE);
1894eda14cbcSMatt Macy 	rw_exit(&dn->dn_struct_rwlock);
1895eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
1896eda14cbcSMatt Macy 	return (0);
1897eda14cbcSMatt Macy }
1898eda14cbcSMatt Macy 
1899eda14cbcSMatt Macy void
1900eda14cbcSMatt Macy dmu_object_set_checksum(objset_t *os, uint64_t object, uint8_t checksum,
1901eda14cbcSMatt Macy     dmu_tx_t *tx)
1902eda14cbcSMatt Macy {
1903eda14cbcSMatt Macy 	dnode_t *dn;
1904eda14cbcSMatt Macy 
1905eda14cbcSMatt Macy 	/*
1906eda14cbcSMatt Macy 	 * Send streams include each object's checksum function.  This
1907eda14cbcSMatt Macy 	 * check ensures that the receiving system can understand the
1908eda14cbcSMatt Macy 	 * checksum function transmitted.
1909eda14cbcSMatt Macy 	 */
1910eda14cbcSMatt Macy 	ASSERT3U(checksum, <, ZIO_CHECKSUM_LEGACY_FUNCTIONS);
1911eda14cbcSMatt Macy 
1912eda14cbcSMatt Macy 	VERIFY0(dnode_hold(os, object, FTAG, &dn));
1913eda14cbcSMatt Macy 	ASSERT3U(checksum, <, ZIO_CHECKSUM_FUNCTIONS);
1914eda14cbcSMatt Macy 	dn->dn_checksum = checksum;
1915eda14cbcSMatt Macy 	dnode_setdirty(dn, tx);
1916eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
1917eda14cbcSMatt Macy }
1918eda14cbcSMatt Macy 
1919eda14cbcSMatt Macy void
1920eda14cbcSMatt Macy dmu_object_set_compress(objset_t *os, uint64_t object, uint8_t compress,
1921eda14cbcSMatt Macy     dmu_tx_t *tx)
1922eda14cbcSMatt Macy {
1923eda14cbcSMatt Macy 	dnode_t *dn;
1924eda14cbcSMatt Macy 
1925eda14cbcSMatt Macy 	/*
1926eda14cbcSMatt Macy 	 * Send streams include each object's compression function.  This
1927eda14cbcSMatt Macy 	 * check ensures that the receiving system can understand the
1928eda14cbcSMatt Macy 	 * compression function transmitted.
1929eda14cbcSMatt Macy 	 */
1930eda14cbcSMatt Macy 	ASSERT3U(compress, <, ZIO_COMPRESS_LEGACY_FUNCTIONS);
1931eda14cbcSMatt Macy 
1932eda14cbcSMatt Macy 	VERIFY0(dnode_hold(os, object, FTAG, &dn));
1933eda14cbcSMatt Macy 	dn->dn_compress = compress;
1934eda14cbcSMatt Macy 	dnode_setdirty(dn, tx);
1935eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
1936eda14cbcSMatt Macy }
1937eda14cbcSMatt Macy 
1938eda14cbcSMatt Macy /*
1939eda14cbcSMatt Macy  * When the "redundant_metadata" property is set to "most", only indirect
1940eda14cbcSMatt Macy  * blocks of this level and higher will have an additional ditto block.
1941eda14cbcSMatt Macy  */
1942eda14cbcSMatt Macy int zfs_redundant_metadata_most_ditto_level = 2;
1943eda14cbcSMatt Macy 
1944eda14cbcSMatt Macy void
1945eda14cbcSMatt Macy dmu_write_policy(objset_t *os, dnode_t *dn, int level, int wp, zio_prop_t *zp)
1946eda14cbcSMatt Macy {
1947eda14cbcSMatt Macy 	dmu_object_type_t type = dn ? dn->dn_type : DMU_OT_OBJSET;
1948eda14cbcSMatt Macy 	boolean_t ismd = (level > 0 || DMU_OT_IS_METADATA(type) ||
1949eda14cbcSMatt Macy 	    (wp & WP_SPILL));
1950eda14cbcSMatt Macy 	enum zio_checksum checksum = os->os_checksum;
1951eda14cbcSMatt Macy 	enum zio_compress compress = os->os_compress;
1952eda14cbcSMatt Macy 	uint8_t complevel = os->os_complevel;
1953eda14cbcSMatt Macy 	enum zio_checksum dedup_checksum = os->os_dedup_checksum;
1954eda14cbcSMatt Macy 	boolean_t dedup = B_FALSE;
1955eda14cbcSMatt Macy 	boolean_t nopwrite = B_FALSE;
1956eda14cbcSMatt Macy 	boolean_t dedup_verify = os->os_dedup_verify;
1957eda14cbcSMatt Macy 	boolean_t encrypt = B_FALSE;
1958eda14cbcSMatt Macy 	int copies = os->os_copies;
1959eda14cbcSMatt Macy 
1960eda14cbcSMatt Macy 	/*
1961eda14cbcSMatt Macy 	 * We maintain different write policies for each of the following
1962eda14cbcSMatt Macy 	 * types of data:
1963eda14cbcSMatt Macy 	 *	 1. metadata
1964eda14cbcSMatt Macy 	 *	 2. preallocated blocks (i.e. level-0 blocks of a dump device)
1965eda14cbcSMatt Macy 	 *	 3. all other level 0 blocks
1966eda14cbcSMatt Macy 	 */
1967eda14cbcSMatt Macy 	if (ismd) {
1968eda14cbcSMatt Macy 		/*
1969eda14cbcSMatt Macy 		 * XXX -- we should design a compression algorithm
1970eda14cbcSMatt Macy 		 * that specializes in arrays of bps.
1971eda14cbcSMatt Macy 		 */
1972eda14cbcSMatt Macy 		compress = zio_compress_select(os->os_spa,
1973eda14cbcSMatt Macy 		    ZIO_COMPRESS_ON, ZIO_COMPRESS_ON);
1974eda14cbcSMatt Macy 
1975eda14cbcSMatt Macy 		/*
1976eda14cbcSMatt Macy 		 * Metadata always gets checksummed.  If the data
1977eda14cbcSMatt Macy 		 * checksum is multi-bit correctable, and it's not a
1978eda14cbcSMatt Macy 		 * ZBT-style checksum, then it's suitable for metadata
1979eda14cbcSMatt Macy 		 * as well.  Otherwise, the metadata checksum defaults
1980eda14cbcSMatt Macy 		 * to fletcher4.
1981eda14cbcSMatt Macy 		 */
1982eda14cbcSMatt Macy 		if (!(zio_checksum_table[checksum].ci_flags &
1983eda14cbcSMatt Macy 		    ZCHECKSUM_FLAG_METADATA) ||
1984eda14cbcSMatt Macy 		    (zio_checksum_table[checksum].ci_flags &
1985eda14cbcSMatt Macy 		    ZCHECKSUM_FLAG_EMBEDDED))
1986eda14cbcSMatt Macy 			checksum = ZIO_CHECKSUM_FLETCHER_4;
1987eda14cbcSMatt Macy 
1988eda14cbcSMatt Macy 		if (os->os_redundant_metadata == ZFS_REDUNDANT_METADATA_ALL ||
1989eda14cbcSMatt Macy 		    (os->os_redundant_metadata ==
1990eda14cbcSMatt Macy 		    ZFS_REDUNDANT_METADATA_MOST &&
1991eda14cbcSMatt Macy 		    (level >= zfs_redundant_metadata_most_ditto_level ||
1992eda14cbcSMatt Macy 		    DMU_OT_IS_METADATA(type) || (wp & WP_SPILL))))
1993eda14cbcSMatt Macy 			copies++;
1994eda14cbcSMatt Macy 	} else if (wp & WP_NOFILL) {
1995eda14cbcSMatt Macy 		ASSERT(level == 0);
1996eda14cbcSMatt Macy 
1997eda14cbcSMatt Macy 		/*
1998eda14cbcSMatt Macy 		 * If we're writing preallocated blocks, we aren't actually
1999eda14cbcSMatt Macy 		 * writing them so don't set any policy properties.  These
2000eda14cbcSMatt Macy 		 * blocks are currently only used by an external subsystem
2001eda14cbcSMatt Macy 		 * outside of zfs (i.e. dump) and not written by the zio
2002eda14cbcSMatt Macy 		 * pipeline.
2003eda14cbcSMatt Macy 		 */
2004eda14cbcSMatt Macy 		compress = ZIO_COMPRESS_OFF;
2005eda14cbcSMatt Macy 		checksum = ZIO_CHECKSUM_OFF;
2006eda14cbcSMatt Macy 	} else {
2007eda14cbcSMatt Macy 		compress = zio_compress_select(os->os_spa, dn->dn_compress,
2008eda14cbcSMatt Macy 		    compress);
2009eda14cbcSMatt Macy 		complevel = zio_complevel_select(os->os_spa, compress,
2010eda14cbcSMatt Macy 		    complevel, complevel);
2011eda14cbcSMatt Macy 
2012eda14cbcSMatt Macy 		checksum = (dedup_checksum == ZIO_CHECKSUM_OFF) ?
2013eda14cbcSMatt Macy 		    zio_checksum_select(dn->dn_checksum, checksum) :
2014eda14cbcSMatt Macy 		    dedup_checksum;
2015eda14cbcSMatt Macy 
2016eda14cbcSMatt Macy 		/*
2017eda14cbcSMatt Macy 		 * Determine dedup setting.  If we are in dmu_sync(),
2018eda14cbcSMatt Macy 		 * we won't actually dedup now because that's all
2019eda14cbcSMatt Macy 		 * done in syncing context; but we do want to use the
2020eda14cbcSMatt Macy 		 * dedup checksum.  If the checksum is not strong
2021eda14cbcSMatt Macy 		 * enough to ensure unique signatures, force
2022eda14cbcSMatt Macy 		 * dedup_verify.
2023eda14cbcSMatt Macy 		 */
2024eda14cbcSMatt Macy 		if (dedup_checksum != ZIO_CHECKSUM_OFF) {
2025eda14cbcSMatt Macy 			dedup = (wp & WP_DMU_SYNC) ? B_FALSE : B_TRUE;
2026eda14cbcSMatt Macy 			if (!(zio_checksum_table[checksum].ci_flags &
2027eda14cbcSMatt Macy 			    ZCHECKSUM_FLAG_DEDUP))
2028eda14cbcSMatt Macy 				dedup_verify = B_TRUE;
2029eda14cbcSMatt Macy 		}
2030eda14cbcSMatt Macy 
2031eda14cbcSMatt Macy 		/*
2032eda14cbcSMatt Macy 		 * Enable nopwrite if we have secure enough checksum
2033eda14cbcSMatt Macy 		 * algorithm (see comment in zio_nop_write) and
2034eda14cbcSMatt Macy 		 * compression is enabled.  We don't enable nopwrite if
2035eda14cbcSMatt Macy 		 * dedup is enabled as the two features are mutually
2036eda14cbcSMatt Macy 		 * exclusive.
2037eda14cbcSMatt Macy 		 */
2038eda14cbcSMatt Macy 		nopwrite = (!dedup && (zio_checksum_table[checksum].ci_flags &
2039eda14cbcSMatt Macy 		    ZCHECKSUM_FLAG_NOPWRITE) &&
2040eda14cbcSMatt Macy 		    compress != ZIO_COMPRESS_OFF && zfs_nopwrite_enabled);
2041eda14cbcSMatt Macy 	}
2042eda14cbcSMatt Macy 
2043eda14cbcSMatt Macy 	/*
2044eda14cbcSMatt Macy 	 * All objects in an encrypted objset are protected from modification
2045eda14cbcSMatt Macy 	 * via a MAC. Encrypted objects store their IV and salt in the last DVA
2046eda14cbcSMatt Macy 	 * in the bp, so we cannot use all copies. Encrypted objects are also
2047eda14cbcSMatt Macy 	 * not subject to nopwrite since writing the same data will still
2048eda14cbcSMatt Macy 	 * result in a new ciphertext. Only encrypted blocks can be dedup'd
2049eda14cbcSMatt Macy 	 * to avoid ambiguity in the dedup code since the DDT does not store
2050eda14cbcSMatt Macy 	 * object types.
2051eda14cbcSMatt Macy 	 */
2052eda14cbcSMatt Macy 	if (os->os_encrypted && (wp & WP_NOFILL) == 0) {
2053eda14cbcSMatt Macy 		encrypt = B_TRUE;
2054eda14cbcSMatt Macy 
2055eda14cbcSMatt Macy 		if (DMU_OT_IS_ENCRYPTED(type)) {
2056eda14cbcSMatt Macy 			copies = MIN(copies, SPA_DVAS_PER_BP - 1);
2057eda14cbcSMatt Macy 			nopwrite = B_FALSE;
2058eda14cbcSMatt Macy 		} else {
2059eda14cbcSMatt Macy 			dedup = B_FALSE;
2060eda14cbcSMatt Macy 		}
2061eda14cbcSMatt Macy 
2062eda14cbcSMatt Macy 		if (level <= 0 &&
2063eda14cbcSMatt Macy 		    (type == DMU_OT_DNODE || type == DMU_OT_OBJSET)) {
2064eda14cbcSMatt Macy 			compress = ZIO_COMPRESS_EMPTY;
2065eda14cbcSMatt Macy 		}
2066eda14cbcSMatt Macy 	}
2067eda14cbcSMatt Macy 
2068eda14cbcSMatt Macy 	zp->zp_compress = compress;
2069eda14cbcSMatt Macy 	zp->zp_complevel = complevel;
2070eda14cbcSMatt Macy 	zp->zp_checksum = checksum;
2071eda14cbcSMatt Macy 	zp->zp_type = (wp & WP_SPILL) ? dn->dn_bonustype : type;
2072eda14cbcSMatt Macy 	zp->zp_level = level;
2073eda14cbcSMatt Macy 	zp->zp_copies = MIN(copies, spa_max_replication(os->os_spa));
2074eda14cbcSMatt Macy 	zp->zp_dedup = dedup;
2075eda14cbcSMatt Macy 	zp->zp_dedup_verify = dedup && dedup_verify;
2076eda14cbcSMatt Macy 	zp->zp_nopwrite = nopwrite;
2077eda14cbcSMatt Macy 	zp->zp_encrypt = encrypt;
2078eda14cbcSMatt Macy 	zp->zp_byteorder = ZFS_HOST_BYTEORDER;
2079eda14cbcSMatt Macy 	bzero(zp->zp_salt, ZIO_DATA_SALT_LEN);
2080eda14cbcSMatt Macy 	bzero(zp->zp_iv, ZIO_DATA_IV_LEN);
2081eda14cbcSMatt Macy 	bzero(zp->zp_mac, ZIO_DATA_MAC_LEN);
2082eda14cbcSMatt Macy 	zp->zp_zpl_smallblk = DMU_OT_IS_FILE(zp->zp_type) ?
2083eda14cbcSMatt Macy 	    os->os_zpl_special_smallblock : 0;
2084eda14cbcSMatt Macy 
2085eda14cbcSMatt Macy 	ASSERT3U(zp->zp_compress, !=, ZIO_COMPRESS_INHERIT);
2086eda14cbcSMatt Macy }
2087eda14cbcSMatt Macy 
2088eda14cbcSMatt Macy /*
2089eda14cbcSMatt Macy  * This function is only called from zfs_holey_common() for zpl_llseek()
2090eda14cbcSMatt Macy  * in order to determine the location of holes.  In order to accurately
2091eda14cbcSMatt Macy  * report holes all dirty data must be synced to disk.  This causes extremely
2092eda14cbcSMatt Macy  * poor performance when seeking for holes in a dirty file.  As a compromise,
2093eda14cbcSMatt Macy  * only provide hole data when the dnode is clean.  When a dnode is dirty
2094eda14cbcSMatt Macy  * report the dnode as having no holes which is always a safe thing to do.
2095eda14cbcSMatt Macy  */
2096eda14cbcSMatt Macy int
2097eda14cbcSMatt Macy dmu_offset_next(objset_t *os, uint64_t object, boolean_t hole, uint64_t *off)
2098eda14cbcSMatt Macy {
2099eda14cbcSMatt Macy 	dnode_t *dn;
210081b22a98SMartin Matuska 	int err;
2101eda14cbcSMatt Macy 
210281b22a98SMartin Matuska restart:
2103eda14cbcSMatt Macy 	err = dnode_hold(os, object, FTAG, &dn);
2104eda14cbcSMatt Macy 	if (err)
2105eda14cbcSMatt Macy 		return (err);
2106eda14cbcSMatt Macy 
210781b22a98SMartin Matuska 	rw_enter(&dn->dn_struct_rwlock, RW_READER);
2108eda14cbcSMatt Macy 
210981b22a98SMartin Matuska 	if (dnode_is_dirty(dn)) {
2110eda14cbcSMatt Macy 		/*
211181b22a98SMartin Matuska 		 * If the zfs_dmu_offset_next_sync module option is enabled
211281b22a98SMartin Matuska 		 * then strict hole reporting has been requested.  Dirty
211381b22a98SMartin Matuska 		 * dnodes must be synced to disk to accurately report all
2114*681ce946SMartin Matuska 		 * holes.  When disabled dirty dnodes are reported to not
2115*681ce946SMartin Matuska 		 * have any holes which is always safe.
211681b22a98SMartin Matuska 		 *
211781b22a98SMartin Matuska 		 * When called by zfs_holey_common() the zp->z_rangelock
211881b22a98SMartin Matuska 		 * is held to prevent zfs_write() and mmap writeback from
211981b22a98SMartin Matuska 		 * re-dirtying the dnode after txg_wait_synced().
2120eda14cbcSMatt Macy 		 */
212181b22a98SMartin Matuska 		if (zfs_dmu_offset_next_sync) {
212281b22a98SMartin Matuska 			rw_exit(&dn->dn_struct_rwlock);
2123eda14cbcSMatt Macy 			dnode_rele(dn, FTAG);
2124eda14cbcSMatt Macy 			txg_wait_synced(dmu_objset_pool(os), 0);
212581b22a98SMartin Matuska 			goto restart;
2126eda14cbcSMatt Macy 		}
2127eda14cbcSMatt Macy 
2128eda14cbcSMatt Macy 		err = SET_ERROR(EBUSY);
212981b22a98SMartin Matuska 	} else {
213081b22a98SMartin Matuska 		err = dnode_next_offset(dn, DNODE_FIND_HAVELOCK |
213181b22a98SMartin Matuska 		    (hole ? DNODE_FIND_HOLE : 0), off, 1, 1, 0);
213281b22a98SMartin Matuska 	}
2133eda14cbcSMatt Macy 
213481b22a98SMartin Matuska 	rw_exit(&dn->dn_struct_rwlock);
2135eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
2136eda14cbcSMatt Macy 
2137eda14cbcSMatt Macy 	return (err);
2138eda14cbcSMatt Macy }
2139eda14cbcSMatt Macy 
2140eda14cbcSMatt Macy void
2141eda14cbcSMatt Macy __dmu_object_info_from_dnode(dnode_t *dn, dmu_object_info_t *doi)
2142eda14cbcSMatt Macy {
2143eda14cbcSMatt Macy 	dnode_phys_t *dnp = dn->dn_phys;
2144eda14cbcSMatt Macy 
2145eda14cbcSMatt Macy 	doi->doi_data_block_size = dn->dn_datablksz;
2146eda14cbcSMatt Macy 	doi->doi_metadata_block_size = dn->dn_indblkshift ?
2147eda14cbcSMatt Macy 	    1ULL << dn->dn_indblkshift : 0;
2148eda14cbcSMatt Macy 	doi->doi_type = dn->dn_type;
2149eda14cbcSMatt Macy 	doi->doi_bonus_type = dn->dn_bonustype;
2150eda14cbcSMatt Macy 	doi->doi_bonus_size = dn->dn_bonuslen;
2151eda14cbcSMatt Macy 	doi->doi_dnodesize = dn->dn_num_slots << DNODE_SHIFT;
2152eda14cbcSMatt Macy 	doi->doi_indirection = dn->dn_nlevels;
2153eda14cbcSMatt Macy 	doi->doi_checksum = dn->dn_checksum;
2154eda14cbcSMatt Macy 	doi->doi_compress = dn->dn_compress;
2155eda14cbcSMatt Macy 	doi->doi_nblkptr = dn->dn_nblkptr;
2156eda14cbcSMatt Macy 	doi->doi_physical_blocks_512 = (DN_USED_BYTES(dnp) + 256) >> 9;
2157eda14cbcSMatt Macy 	doi->doi_max_offset = (dn->dn_maxblkid + 1) * dn->dn_datablksz;
2158eda14cbcSMatt Macy 	doi->doi_fill_count = 0;
2159eda14cbcSMatt Macy 	for (int i = 0; i < dnp->dn_nblkptr; i++)
2160eda14cbcSMatt Macy 		doi->doi_fill_count += BP_GET_FILL(&dnp->dn_blkptr[i]);
2161eda14cbcSMatt Macy }
2162eda14cbcSMatt Macy 
2163eda14cbcSMatt Macy void
2164eda14cbcSMatt Macy dmu_object_info_from_dnode(dnode_t *dn, dmu_object_info_t *doi)
2165eda14cbcSMatt Macy {
2166eda14cbcSMatt Macy 	rw_enter(&dn->dn_struct_rwlock, RW_READER);
2167eda14cbcSMatt Macy 	mutex_enter(&dn->dn_mtx);
2168eda14cbcSMatt Macy 
2169eda14cbcSMatt Macy 	__dmu_object_info_from_dnode(dn, doi);
2170eda14cbcSMatt Macy 
2171eda14cbcSMatt Macy 	mutex_exit(&dn->dn_mtx);
2172eda14cbcSMatt Macy 	rw_exit(&dn->dn_struct_rwlock);
2173eda14cbcSMatt Macy }
2174eda14cbcSMatt Macy 
2175eda14cbcSMatt Macy /*
2176eda14cbcSMatt Macy  * Get information on a DMU object.
2177eda14cbcSMatt Macy  * If doi is NULL, just indicates whether the object exists.
2178eda14cbcSMatt Macy  */
2179eda14cbcSMatt Macy int
2180eda14cbcSMatt Macy dmu_object_info(objset_t *os, uint64_t object, dmu_object_info_t *doi)
2181eda14cbcSMatt Macy {
2182eda14cbcSMatt Macy 	dnode_t *dn;
2183eda14cbcSMatt Macy 	int err = dnode_hold(os, object, FTAG, &dn);
2184eda14cbcSMatt Macy 
2185eda14cbcSMatt Macy 	if (err)
2186eda14cbcSMatt Macy 		return (err);
2187eda14cbcSMatt Macy 
2188eda14cbcSMatt Macy 	if (doi != NULL)
2189eda14cbcSMatt Macy 		dmu_object_info_from_dnode(dn, doi);
2190eda14cbcSMatt Macy 
2191eda14cbcSMatt Macy 	dnode_rele(dn, FTAG);
2192eda14cbcSMatt Macy 	return (0);
2193eda14cbcSMatt Macy }
2194eda14cbcSMatt Macy 
2195eda14cbcSMatt Macy /*
2196eda14cbcSMatt Macy  * As above, but faster; can be used when you have a held dbuf in hand.
2197eda14cbcSMatt Macy  */
2198eda14cbcSMatt Macy void
2199eda14cbcSMatt Macy dmu_object_info_from_db(dmu_buf_t *db_fake, dmu_object_info_t *doi)
2200eda14cbcSMatt Macy {
2201eda14cbcSMatt Macy 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
2202eda14cbcSMatt Macy 
2203eda14cbcSMatt Macy 	DB_DNODE_ENTER(db);
2204eda14cbcSMatt Macy 	dmu_object_info_from_dnode(DB_DNODE(db), doi);
2205eda14cbcSMatt Macy 	DB_DNODE_EXIT(db);
2206eda14cbcSMatt Macy }
2207eda14cbcSMatt Macy 
2208eda14cbcSMatt Macy /*
2209eda14cbcSMatt Macy  * Faster still when you only care about the size.
2210eda14cbcSMatt Macy  */
2211eda14cbcSMatt Macy void
2212eda14cbcSMatt Macy dmu_object_size_from_db(dmu_buf_t *db_fake, uint32_t *blksize,
2213eda14cbcSMatt Macy     u_longlong_t *nblk512)
2214eda14cbcSMatt Macy {
2215eda14cbcSMatt Macy 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
2216eda14cbcSMatt Macy 	dnode_t *dn;
2217eda14cbcSMatt Macy 
2218eda14cbcSMatt Macy 	DB_DNODE_ENTER(db);
2219eda14cbcSMatt Macy 	dn = DB_DNODE(db);
2220eda14cbcSMatt Macy 
2221eda14cbcSMatt Macy 	*blksize = dn->dn_datablksz;
2222eda14cbcSMatt Macy 	/* add in number of slots used for the dnode itself */
2223eda14cbcSMatt Macy 	*nblk512 = ((DN_USED_BYTES(dn->dn_phys) + SPA_MINBLOCKSIZE/2) >>
2224eda14cbcSMatt Macy 	    SPA_MINBLOCKSHIFT) + dn->dn_num_slots;
2225eda14cbcSMatt Macy 	DB_DNODE_EXIT(db);
2226eda14cbcSMatt Macy }
2227eda14cbcSMatt Macy 
2228eda14cbcSMatt Macy void
2229eda14cbcSMatt Macy dmu_object_dnsize_from_db(dmu_buf_t *db_fake, int *dnsize)
2230eda14cbcSMatt Macy {
2231eda14cbcSMatt Macy 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
2232eda14cbcSMatt Macy 	dnode_t *dn;
2233eda14cbcSMatt Macy 
2234eda14cbcSMatt Macy 	DB_DNODE_ENTER(db);
2235eda14cbcSMatt Macy 	dn = DB_DNODE(db);
2236eda14cbcSMatt Macy 	*dnsize = dn->dn_num_slots << DNODE_SHIFT;
2237eda14cbcSMatt Macy 	DB_DNODE_EXIT(db);
2238eda14cbcSMatt Macy }
2239eda14cbcSMatt Macy 
2240eda14cbcSMatt Macy void
2241eda14cbcSMatt Macy byteswap_uint64_array(void *vbuf, size_t size)
2242eda14cbcSMatt Macy {
2243eda14cbcSMatt Macy 	uint64_t *buf = vbuf;
2244eda14cbcSMatt Macy 	size_t count = size >> 3;
2245eda14cbcSMatt Macy 	int i;
2246eda14cbcSMatt Macy 
2247eda14cbcSMatt Macy 	ASSERT((size & 7) == 0);
2248eda14cbcSMatt Macy 
2249eda14cbcSMatt Macy 	for (i = 0; i < count; i++)
2250eda14cbcSMatt Macy 		buf[i] = BSWAP_64(buf[i]);
2251eda14cbcSMatt Macy }
2252eda14cbcSMatt Macy 
2253eda14cbcSMatt Macy void
2254eda14cbcSMatt Macy byteswap_uint32_array(void *vbuf, size_t size)
2255eda14cbcSMatt Macy {
2256eda14cbcSMatt Macy 	uint32_t *buf = vbuf;
2257eda14cbcSMatt Macy 	size_t count = size >> 2;
2258eda14cbcSMatt Macy 	int i;
2259eda14cbcSMatt Macy 
2260eda14cbcSMatt Macy 	ASSERT((size & 3) == 0);
2261eda14cbcSMatt Macy 
2262eda14cbcSMatt Macy 	for (i = 0; i < count; i++)
2263eda14cbcSMatt Macy 		buf[i] = BSWAP_32(buf[i]);
2264eda14cbcSMatt Macy }
2265eda14cbcSMatt Macy 
2266eda14cbcSMatt Macy void
2267eda14cbcSMatt Macy byteswap_uint16_array(void *vbuf, size_t size)
2268eda14cbcSMatt Macy {
2269eda14cbcSMatt Macy 	uint16_t *buf = vbuf;
2270eda14cbcSMatt Macy 	size_t count = size >> 1;
2271eda14cbcSMatt Macy 	int i;
2272eda14cbcSMatt Macy 
2273eda14cbcSMatt Macy 	ASSERT((size & 1) == 0);
2274eda14cbcSMatt Macy 
2275eda14cbcSMatt Macy 	for (i = 0; i < count; i++)
2276eda14cbcSMatt Macy 		buf[i] = BSWAP_16(buf[i]);
2277eda14cbcSMatt Macy }
2278eda14cbcSMatt Macy 
2279eda14cbcSMatt Macy /* ARGSUSED */
2280eda14cbcSMatt Macy void
2281eda14cbcSMatt Macy byteswap_uint8_array(void *vbuf, size_t size)
2282eda14cbcSMatt Macy {
2283eda14cbcSMatt Macy }
2284eda14cbcSMatt Macy 
2285eda14cbcSMatt Macy void
2286eda14cbcSMatt Macy dmu_init(void)
2287eda14cbcSMatt Macy {
2288eda14cbcSMatt Macy 	abd_init();
2289eda14cbcSMatt Macy 	zfs_dbgmsg_init();
2290eda14cbcSMatt Macy 	sa_cache_init();
2291eda14cbcSMatt Macy 	dmu_objset_init();
2292eda14cbcSMatt Macy 	dnode_init();
2293eda14cbcSMatt Macy 	zfetch_init();
2294eda14cbcSMatt Macy 	dmu_tx_init();
2295eda14cbcSMatt Macy 	l2arc_init();
2296eda14cbcSMatt Macy 	arc_init();
2297eda14cbcSMatt Macy 	dbuf_init();
2298eda14cbcSMatt Macy }
2299eda14cbcSMatt Macy 
2300eda14cbcSMatt Macy void
2301eda14cbcSMatt Macy dmu_fini(void)
2302eda14cbcSMatt Macy {
2303eda14cbcSMatt Macy 	arc_fini(); /* arc depends on l2arc, so arc must go first */
2304eda14cbcSMatt Macy 	l2arc_fini();
2305eda14cbcSMatt Macy 	dmu_tx_fini();
2306eda14cbcSMatt Macy 	zfetch_fini();
2307eda14cbcSMatt Macy 	dbuf_fini();
2308eda14cbcSMatt Macy 	dnode_fini();
2309eda14cbcSMatt Macy 	dmu_objset_fini();
2310eda14cbcSMatt Macy 	sa_cache_fini();
2311eda14cbcSMatt Macy 	zfs_dbgmsg_fini();
2312eda14cbcSMatt Macy 	abd_fini();
2313eda14cbcSMatt Macy }
2314eda14cbcSMatt Macy 
2315eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_bonus_hold);
2316eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_bonus_hold_by_dnode);
2317eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_buf_hold_array_by_bonus);
2318eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_buf_rele_array);
2319eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_prefetch);
2320eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_free_range);
2321eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_free_long_range);
2322eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_free_long_object);
2323eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_read);
2324eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_read_by_dnode);
2325eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_write);
2326eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_write_by_dnode);
2327eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_prealloc);
2328eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_object_info);
2329eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_object_info_from_dnode);
2330eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_object_info_from_db);
2331eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_object_size_from_db);
2332eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_object_dnsize_from_db);
2333eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_object_set_nlevels);
2334eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_object_set_blocksize);
2335eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_object_set_maxblkid);
2336eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_object_set_checksum);
2337eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_object_set_compress);
2338ac0bf12eSMatt Macy EXPORT_SYMBOL(dmu_offset_next);
2339eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_write_policy);
2340eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_sync);
2341eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_request_arcbuf);
2342eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_return_arcbuf);
2343eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_assign_arcbuf_by_dnode);
2344eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_assign_arcbuf_by_dbuf);
2345eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_buf_hold);
2346eda14cbcSMatt Macy EXPORT_SYMBOL(dmu_ot);
2347eda14cbcSMatt Macy 
2348eda14cbcSMatt Macy /* BEGIN CSTYLED */
2349eda14cbcSMatt Macy ZFS_MODULE_PARAM(zfs, zfs_, nopwrite_enabled, INT, ZMOD_RW,
2350eda14cbcSMatt Macy 	"Enable NOP writes");
2351eda14cbcSMatt Macy 
2352eda14cbcSMatt Macy ZFS_MODULE_PARAM(zfs, zfs_, per_txg_dirty_frees_percent, ULONG, ZMOD_RW,
2353eda14cbcSMatt Macy 	"Percentage of dirtied blocks from frees in one TXG");
2354eda14cbcSMatt Macy 
2355eda14cbcSMatt Macy ZFS_MODULE_PARAM(zfs, zfs_, dmu_offset_next_sync, INT, ZMOD_RW,
2356eda14cbcSMatt Macy 	"Enable forcing txg sync to find holes");
2357eda14cbcSMatt Macy 
2358eda14cbcSMatt Macy ZFS_MODULE_PARAM(zfs, , dmu_prefetch_max, INT, ZMOD_RW,
2359eda14cbcSMatt Macy 	"Limit one prefetch call to this size");
2360eda14cbcSMatt Macy /* END CSTYLED */
2361