xref: /illumos-gate/usr/src/uts/common/fs/zfs/dmu.c (revision 5d7b4d438c4a51eccc95e77a83a437b4d48380eb)
1fa9e4066Sahrens /*
2fa9e4066Sahrens  * CDDL HEADER START
3fa9e4066Sahrens  *
4fa9e4066Sahrens  * The contents of this file are subject to the terms of the
5ea8dc4b6Seschrock  * Common Development and Distribution License (the "License").
6ea8dc4b6Seschrock  * You may not use this file except in compliance with the License.
7fa9e4066Sahrens  *
8fa9e4066Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9fa9e4066Sahrens  * or http://www.opensolaris.org/os/licensing.
10fa9e4066Sahrens  * See the License for the specific language governing permissions
11fa9e4066Sahrens  * and limitations under the License.
12fa9e4066Sahrens  *
13fa9e4066Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
14fa9e4066Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15fa9e4066Sahrens  * If applicable, add the following below this CDDL HEADER, with the
16fa9e4066Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
17fa9e4066Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
18fa9e4066Sahrens  *
19fa9e4066Sahrens  * CDDL HEADER END
20fa9e4066Sahrens  */
21fa9e4066Sahrens /*
2294d1a210STim Haley  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23edf345e6SMatthew Ahrens  * Copyright (c) 2012, 2014 by Delphix. All rights reserved.
24fa9e4066Sahrens  */
25aad02571SSaso Kiselkov /* Copyright (c) 2013 by Saso Kiselkov. All rights reserved. */
26810e43b2SBill Pijewski /* Copyright (c) 2013, Joyent, Inc. All rights reserved. */
27aad02571SSaso Kiselkov 
28fa9e4066Sahrens #include <sys/dmu.h>
29fa9e4066Sahrens #include <sys/dmu_impl.h>
30fa9e4066Sahrens #include <sys/dmu_tx.h>
31fa9e4066Sahrens #include <sys/dbuf.h>
32fa9e4066Sahrens #include <sys/dnode.h>
33fa9e4066Sahrens #include <sys/zfs_context.h>
34fa9e4066Sahrens #include <sys/dmu_objset.h>
35fa9e4066Sahrens #include <sys/dmu_traverse.h>
36fa9e4066Sahrens #include <sys/dsl_dataset.h>
37fa9e4066Sahrens #include <sys/dsl_dir.h>
38fa9e4066Sahrens #include <sys/dsl_pool.h>
391d452cf5Sahrens #include <sys/dsl_synctask.h>
40a2eea2e1Sahrens #include <sys/dsl_prop.h>
41fa9e4066Sahrens #include <sys/dmu_zfetch.h>
42fa9e4066Sahrens #include <sys/zfs_ioctl.h>
43fa9e4066Sahrens #include <sys/zap.h>
44ea8dc4b6Seschrock #include <sys/zio_checksum.h>
4580901aeaSGeorge Wilson #include <sys/zio_compress.h>
460a586ceaSMark Shellenbaum #include <sys/sa.h>
4744eda4d7Smaybee #ifdef _KERNEL
4844eda4d7Smaybee #include <sys/vmsystm.h>
490fab61baSJonathan W Adams #include <sys/zfs_znode.h>
5044eda4d7Smaybee #endif
51fa9e4066Sahrens 
5280901aeaSGeorge Wilson /*
5380901aeaSGeorge Wilson  * Enable/disable nopwrite feature.
5480901aeaSGeorge Wilson  */
5580901aeaSGeorge Wilson int zfs_nopwrite_enabled = 1;
5680901aeaSGeorge Wilson 
57fa9e4066Sahrens const dmu_object_type_info_t dmu_ot[DMU_OT_NUMTYPES] = {
58ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT8,	TRUE,	"unallocated"		},
59ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"object directory"	},
60ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT64,	TRUE,	"object array"		},
61ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT8,	TRUE,	"packed nvlist"		},
62ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT64,	TRUE,	"packed nvlist size"	},
63ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT64,	TRUE,	"bpobj"			},
64ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT64,	TRUE,	"bpobj header"		},
65ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT64,	TRUE,	"SPA space map header"	},
66ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT64,	TRUE,	"SPA space map"		},
67ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT64,	TRUE,	"ZIL intent log"	},
68ad135b5dSChristopher Siden 	{	DMU_BSWAP_DNODE,	TRUE,	"DMU dnode"		},
69ad135b5dSChristopher Siden 	{	DMU_BSWAP_OBJSET,	TRUE,	"DMU objset"		},
70ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT64,	TRUE,	"DSL directory"		},
71ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"DSL directory child map"},
72ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"DSL dataset snap map"	},
73ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"DSL props"		},
74ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT64,	TRUE,	"DSL dataset"		},
75ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZNODE,	TRUE,	"ZFS znode"		},
76ad135b5dSChristopher Siden 	{	DMU_BSWAP_OLDACL,	TRUE,	"ZFS V0 ACL"		},
77ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT8,	FALSE,	"ZFS plain file"	},
78ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"ZFS directory"		},
79ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"ZFS master node"	},
80ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"ZFS delete queue"	},
81ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT8,	FALSE,	"zvol object"		},
82ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"zvol prop"		},
83ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT8,	FALSE,	"other uint8[]"		},
84ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT64,	FALSE,	"other uint64[]"	},
85ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"other ZAP"		},
86ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"persistent error log"	},
87ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT8,	TRUE,	"SPA history"		},
88ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT64,	TRUE,	"SPA history offsets"	},
89ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"Pool properties"	},
90ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"DSL permissions"	},
91ad135b5dSChristopher Siden 	{	DMU_BSWAP_ACL,		TRUE,	"ZFS ACL"		},
92ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT8,	TRUE,	"ZFS SYSACL"		},
93ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT8,	TRUE,	"FUID table"		},
94ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT64,	TRUE,	"FUID table size"	},
95ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"DSL dataset next clones"},
96ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"scan work queue"	},
97ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"ZFS user/group used"	},
98ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"ZFS user/group quota"	},
99ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"snapshot refcount tags"},
100ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"DDT ZAP algorithm"	},
101ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"DDT statistics"	},
102ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT8,	TRUE,	"System attributes"	},
103ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"SA master node"	},
104ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"SA attr registration"	},
105ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"SA attr layouts"	},
106ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"scan translations"	},
107ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT8,	FALSE,	"deduplicated block"	},
108ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"DSL deadlist map"	},
109ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT64,	TRUE,	"DSL deadlist map hdr"	},
110ad135b5dSChristopher Siden 	{	DMU_BSWAP_ZAP,		TRUE,	"DSL dir clones"	},
111ad135b5dSChristopher Siden 	{	DMU_BSWAP_UINT64,	TRUE,	"bpobj subobj"		}
112ad135b5dSChristopher Siden };
113ad135b5dSChristopher Siden 
114ad135b5dSChristopher Siden const dmu_object_byteswap_info_t dmu_ot_byteswap[DMU_BSWAP_NUMFUNCS] = {
115ad135b5dSChristopher Siden 	{	byteswap_uint8_array,	"uint8"		},
116ad135b5dSChristopher Siden 	{	byteswap_uint16_array,	"uint16"	},
117ad135b5dSChristopher Siden 	{	byteswap_uint32_array,	"uint32"	},
118ad135b5dSChristopher Siden 	{	byteswap_uint64_array,	"uint64"	},
119ad135b5dSChristopher Siden 	{	zap_byteswap,		"zap"		},
120ad135b5dSChristopher Siden 	{	dnode_buf_byteswap,	"dnode"		},
121ad135b5dSChristopher Siden 	{	dmu_objset_byteswap,	"objset"	},
122ad135b5dSChristopher Siden 	{	zfs_znode_byteswap,	"znode"		},
123ad135b5dSChristopher Siden 	{	zfs_oldacl_byteswap,	"oldacl"	},
124ad135b5dSChristopher Siden 	{	zfs_acl_byteswap,	"acl"		}
1253f9d6ad7SLin Ling };
126fa9e4066Sahrens 
127fa9e4066Sahrens int
128*5d7b4d43SMatthew Ahrens dmu_buf_hold_noread(objset_t *os, uint64_t object, uint64_t offset,
129*5d7b4d43SMatthew Ahrens     void *tag, dmu_buf_t **dbp)
130fa9e4066Sahrens {
131fa9e4066Sahrens 	dnode_t *dn;
132fa9e4066Sahrens 	uint64_t blkid;
133fa9e4066Sahrens 	dmu_buf_impl_t *db;
134ea8dc4b6Seschrock 	int err;
135fa9e4066Sahrens 
136503ad85cSMatthew Ahrens 	err = dnode_hold(os, object, FTAG, &dn);
137ea8dc4b6Seschrock 	if (err)
138ea8dc4b6Seschrock 		return (err);
139fa9e4066Sahrens 	blkid = dbuf_whichblock(dn, offset);
140fa9e4066Sahrens 	rw_enter(&dn->dn_struct_rwlock, RW_READER);
141ea8dc4b6Seschrock 	db = dbuf_hold(dn, blkid, tag);
142fa9e4066Sahrens 	rw_exit(&dn->dn_struct_rwlock);
143*5d7b4d43SMatthew Ahrens 	dnode_rele(dn, FTAG);
144*5d7b4d43SMatthew Ahrens 
145ea8dc4b6Seschrock 	if (db == NULL) {
146*5d7b4d43SMatthew Ahrens 		*dbp = NULL;
147*5d7b4d43SMatthew Ahrens 		return (SET_ERROR(EIO));
148*5d7b4d43SMatthew Ahrens 	}
149*5d7b4d43SMatthew Ahrens 
150*5d7b4d43SMatthew Ahrens 	*dbp = &db->db;
151*5d7b4d43SMatthew Ahrens 	return (err);
152*5d7b4d43SMatthew Ahrens }
153*5d7b4d43SMatthew Ahrens 
154*5d7b4d43SMatthew Ahrens int
155*5d7b4d43SMatthew Ahrens dmu_buf_hold(objset_t *os, uint64_t object, uint64_t offset,
156*5d7b4d43SMatthew Ahrens     void *tag, dmu_buf_t **dbp, int flags)
157*5d7b4d43SMatthew Ahrens {
158*5d7b4d43SMatthew Ahrens 	int err;
159*5d7b4d43SMatthew Ahrens 	int db_flags = DB_RF_CANFAIL;
160*5d7b4d43SMatthew Ahrens 
161*5d7b4d43SMatthew Ahrens 	if (flags & DMU_READ_NO_PREFETCH)
162*5d7b4d43SMatthew Ahrens 		db_flags |= DB_RF_NOPREFETCH;
163*5d7b4d43SMatthew Ahrens 
164*5d7b4d43SMatthew Ahrens 	err = dmu_buf_hold_noread(os, object, offset, tag, dbp);
165*5d7b4d43SMatthew Ahrens 	if (err == 0) {
166*5d7b4d43SMatthew Ahrens 		dmu_buf_impl_t *db = (dmu_buf_impl_t *)(*dbp);
16747cb52daSJeff Bonwick 		err = dbuf_read(db, NULL, db_flags);
168*5d7b4d43SMatthew Ahrens 		if (err != 0) {
169ea8dc4b6Seschrock 			dbuf_rele(db, tag);
170*5d7b4d43SMatthew Ahrens 			*dbp = NULL;
171ea8dc4b6Seschrock 		}
172fa9e4066Sahrens 	}
173fa9e4066Sahrens 
174ea8dc4b6Seschrock 	return (err);
175fa9e4066Sahrens }
176fa9e4066Sahrens 
177fa9e4066Sahrens int
178fa9e4066Sahrens dmu_bonus_max(void)
179fa9e4066Sahrens {
180fa9e4066Sahrens 	return (DN_MAX_BONUSLEN);
181fa9e4066Sahrens }
182fa9e4066Sahrens 
1831934e92fSmaybee int
184744947dcSTom Erickson dmu_set_bonus(dmu_buf_t *db_fake, int newsize, dmu_tx_t *tx)
1851934e92fSmaybee {
186744947dcSTom Erickson 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
187744947dcSTom Erickson 	dnode_t *dn;
188744947dcSTom Erickson 	int error;
1891934e92fSmaybee 
190744947dcSTom Erickson 	DB_DNODE_ENTER(db);
191744947dcSTom Erickson 	dn = DB_DNODE(db);
192744947dcSTom Erickson 
193744947dcSTom Erickson 	if (dn->dn_bonus != db) {
194be6fd75aSMatthew Ahrens 		error = SET_ERROR(EINVAL);
195744947dcSTom Erickson 	} else if (newsize < 0 || newsize > db_fake->db_size) {
196be6fd75aSMatthew Ahrens 		error = SET_ERROR(EINVAL);
197744947dcSTom Erickson 	} else {
1981934e92fSmaybee 		dnode_setbonuslen(dn, newsize, tx);
199744947dcSTom Erickson 		error = 0;
200744947dcSTom Erickson 	}
201744947dcSTom Erickson 
202744947dcSTom Erickson 	DB_DNODE_EXIT(db);
203744947dcSTom Erickson 	return (error);
2041934e92fSmaybee }
2051934e92fSmaybee 
2060a586ceaSMark Shellenbaum int
207744947dcSTom Erickson dmu_set_bonustype(dmu_buf_t *db_fake, dmu_object_type_t type, dmu_tx_t *tx)
2080a586ceaSMark Shellenbaum {
209744947dcSTom Erickson 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
210744947dcSTom Erickson 	dnode_t *dn;
211744947dcSTom Erickson 	int error;
2120a586ceaSMark Shellenbaum 
213744947dcSTom Erickson 	DB_DNODE_ENTER(db);
214744947dcSTom Erickson 	dn = DB_DNODE(db);
2150a586ceaSMark Shellenbaum 
216ad135b5dSChristopher Siden 	if (!DMU_OT_IS_VALID(type)) {
217be6fd75aSMatthew Ahrens 		error = SET_ERROR(EINVAL);
218744947dcSTom Erickson 	} else if (dn->dn_bonus != db) {
219be6fd75aSMatthew Ahrens 		error = SET_ERROR(EINVAL);
220744947dcSTom Erickson 	} else {
2210a586ceaSMark Shellenbaum 		dnode_setbonus_type(dn, type, tx);
222744947dcSTom Erickson 		error = 0;
223744947dcSTom Erickson 	}
224744947dcSTom Erickson 
225744947dcSTom Erickson 	DB_DNODE_EXIT(db);
226744947dcSTom Erickson 	return (error);
227744947dcSTom Erickson }
228744947dcSTom Erickson 
229744947dcSTom Erickson dmu_object_type_t
230744947dcSTom Erickson dmu_get_bonustype(dmu_buf_t *db_fake)
231744947dcSTom Erickson {
232744947dcSTom Erickson 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
233744947dcSTom Erickson 	dnode_t *dn;
234744947dcSTom Erickson 	dmu_object_type_t type;
235744947dcSTom Erickson 
236744947dcSTom Erickson 	DB_DNODE_ENTER(db);
237744947dcSTom Erickson 	dn = DB_DNODE(db);
238744947dcSTom Erickson 	type = dn->dn_bonustype;
239744947dcSTom Erickson 	DB_DNODE_EXIT(db);
240744947dcSTom Erickson 
241744947dcSTom Erickson 	return (type);
2420a586ceaSMark Shellenbaum }
2430a586ceaSMark Shellenbaum 
2440a586ceaSMark Shellenbaum int
2450a586ceaSMark Shellenbaum dmu_rm_spill(objset_t *os, uint64_t object, dmu_tx_t *tx)
2460a586ceaSMark Shellenbaum {
2470a586ceaSMark Shellenbaum 	dnode_t *dn;
2480a586ceaSMark Shellenbaum 	int error;
2490a586ceaSMark Shellenbaum 
2500a586ceaSMark Shellenbaum 	error = dnode_hold(os, object, FTAG, &dn);
2510a586ceaSMark Shellenbaum 	dbuf_rm_spill(dn, tx);
25206e0070dSMark Shellenbaum 	rw_enter(&dn->dn_struct_rwlock, RW_WRITER);
25306e0070dSMark Shellenbaum 	dnode_rm_spill(dn, tx);
25406e0070dSMark Shellenbaum 	rw_exit(&dn->dn_struct_rwlock);
2550a586ceaSMark Shellenbaum 	dnode_rele(dn, FTAG);
2560a586ceaSMark Shellenbaum 	return (error);
2570a586ceaSMark Shellenbaum }
2580a586ceaSMark Shellenbaum 
259fa9e4066Sahrens /*
260ea8dc4b6Seschrock  * returns ENOENT, EIO, or 0.
261fa9e4066Sahrens  */
262ea8dc4b6Seschrock int
263ea8dc4b6Seschrock dmu_bonus_hold(objset_t *os, uint64_t object, void *tag, dmu_buf_t **dbp)
264fa9e4066Sahrens {
265ea8dc4b6Seschrock 	dnode_t *dn;
266fa9e4066Sahrens 	dmu_buf_impl_t *db;
2671934e92fSmaybee 	int error;
268fa9e4066Sahrens 
269503ad85cSMatthew Ahrens 	error = dnode_hold(os, object, FTAG, &dn);
2701934e92fSmaybee 	if (error)
2711934e92fSmaybee 		return (error);
272fa9e4066Sahrens 
273fa9e4066Sahrens 	rw_enter(&dn->dn_struct_rwlock, RW_READER);
274ea8dc4b6Seschrock 	if (dn->dn_bonus == NULL) {
275fa9e4066Sahrens 		rw_exit(&dn->dn_struct_rwlock);
276ea8dc4b6Seschrock 		rw_enter(&dn->dn_struct_rwlock, RW_WRITER);
277ea8dc4b6Seschrock 		if (dn->dn_bonus == NULL)
2781934e92fSmaybee 			dbuf_create_bonus(dn);
279fa9e4066Sahrens 	}
280ea8dc4b6Seschrock 	db = dn->dn_bonus;
2811934e92fSmaybee 
2821934e92fSmaybee 	/* as long as the bonus buf is held, the dnode will be held */
283744947dcSTom Erickson 	if (refcount_add(&db->db_holds, tag) == 1) {
2841934e92fSmaybee 		VERIFY(dnode_add_ref(dn, db));
285744947dcSTom Erickson 		(void) atomic_inc_32_nv(&dn->dn_dbufs_count);
286744947dcSTom Erickson 	}
287744947dcSTom Erickson 
288744947dcSTom Erickson 	/*
289744947dcSTom Erickson 	 * Wait to drop dn_struct_rwlock until after adding the bonus dbuf's
290744947dcSTom Erickson 	 * hold and incrementing the dbuf count to ensure that dnode_move() sees
291744947dcSTom Erickson 	 * a dnode hold for every dbuf.
292744947dcSTom Erickson 	 */
293744947dcSTom Erickson 	rw_exit(&dn->dn_struct_rwlock);
2941934e92fSmaybee 
295fa9e4066Sahrens 	dnode_rele(dn, FTAG);
296ea8dc4b6Seschrock 
29747cb52daSJeff Bonwick 	VERIFY(0 == dbuf_read(db, NULL, DB_RF_MUST_SUCCEED | DB_RF_NOPREFETCH));
298ea8dc4b6Seschrock 
299ea8dc4b6Seschrock 	*dbp = &db->db;
300ea8dc4b6Seschrock 	return (0);
301fa9e4066Sahrens }
302fa9e4066Sahrens 
30313506d1eSmaybee /*
3040a586ceaSMark Shellenbaum  * returns ENOENT, EIO, or 0.
3050a586ceaSMark Shellenbaum  *
3060a586ceaSMark Shellenbaum  * This interface will allocate a blank spill dbuf when a spill blk
3070a586ceaSMark Shellenbaum  * doesn't already exist on the dnode.
3080a586ceaSMark Shellenbaum  *
3090a586ceaSMark Shellenbaum  * if you only want to find an already existing spill db, then
3100a586ceaSMark Shellenbaum  * dmu_spill_hold_existing() should be used.
3110a586ceaSMark Shellenbaum  */
3120a586ceaSMark Shellenbaum int
3130a586ceaSMark Shellenbaum dmu_spill_hold_by_dnode(dnode_t *dn, uint32_t flags, void *tag, dmu_buf_t **dbp)
3140a586ceaSMark Shellenbaum {
3150a586ceaSMark Shellenbaum 	dmu_buf_impl_t *db = NULL;
3160a586ceaSMark Shellenbaum 	int err;
3170a586ceaSMark Shellenbaum 
3180a586ceaSMark Shellenbaum 	if ((flags & DB_RF_HAVESTRUCT) == 0)
3190a586ceaSMark Shellenbaum 		rw_enter(&dn->dn_struct_rwlock, RW_READER);
3200a586ceaSMark Shellenbaum 
3210a586ceaSMark Shellenbaum 	db = dbuf_hold(dn, DMU_SPILL_BLKID, tag);
3220a586ceaSMark Shellenbaum 
3230a586ceaSMark Shellenbaum 	if ((flags & DB_RF_HAVESTRUCT) == 0)
3240a586ceaSMark Shellenbaum 		rw_exit(&dn->dn_struct_rwlock);
3250a586ceaSMark Shellenbaum 
3260a586ceaSMark Shellenbaum 	ASSERT(db != NULL);
3271d8ccc7bSMark Shellenbaum 	err = dbuf_read(db, NULL, flags);
3281d8ccc7bSMark Shellenbaum 	if (err == 0)
3290a586ceaSMark Shellenbaum 		*dbp = &db->db;
3301d8ccc7bSMark Shellenbaum 	else
3311d8ccc7bSMark Shellenbaum 		dbuf_rele(db, tag);
3320a586ceaSMark Shellenbaum 	return (err);
3330a586ceaSMark Shellenbaum }
3340a586ceaSMark Shellenbaum 
3350a586ceaSMark Shellenbaum int
3360a586ceaSMark Shellenbaum dmu_spill_hold_existing(dmu_buf_t *bonus, void *tag, dmu_buf_t **dbp)
3370a586ceaSMark Shellenbaum {
338744947dcSTom Erickson 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)bonus;
339744947dcSTom Erickson 	dnode_t *dn;
3400a586ceaSMark Shellenbaum 	int err;
3410a586ceaSMark Shellenbaum 
342744947dcSTom Erickson 	DB_DNODE_ENTER(db);
343744947dcSTom Erickson 	dn = DB_DNODE(db);
344744947dcSTom Erickson 
345744947dcSTom Erickson 	if (spa_version(dn->dn_objset->os_spa) < SPA_VERSION_SA) {
346be6fd75aSMatthew Ahrens 		err = SET_ERROR(EINVAL);
347744947dcSTom Erickson 	} else {
3480a586ceaSMark Shellenbaum 		rw_enter(&dn->dn_struct_rwlock, RW_READER);
3490a586ceaSMark Shellenbaum 
3500a586ceaSMark Shellenbaum 		if (!dn->dn_have_spill) {
351be6fd75aSMatthew Ahrens 			err = SET_ERROR(ENOENT);
352744947dcSTom Erickson 		} else {
3531d8ccc7bSMark Shellenbaum 			err = dmu_spill_hold_by_dnode(dn,
3541d8ccc7bSMark Shellenbaum 			    DB_RF_HAVESTRUCT | DB_RF_CANFAIL, tag, dbp);
355744947dcSTom Erickson 		}
356744947dcSTom Erickson 
3570a586ceaSMark Shellenbaum 		rw_exit(&dn->dn_struct_rwlock);
358744947dcSTom Erickson 	}
359744947dcSTom Erickson 
360744947dcSTom Erickson 	DB_DNODE_EXIT(db);
3610a586ceaSMark Shellenbaum 	return (err);
3620a586ceaSMark Shellenbaum }
3630a586ceaSMark Shellenbaum 
3640a586ceaSMark Shellenbaum int
3650a586ceaSMark Shellenbaum dmu_spill_hold_by_bonus(dmu_buf_t *bonus, void *tag, dmu_buf_t **dbp)
3660a586ceaSMark Shellenbaum {
367744947dcSTom Erickson 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)bonus;
368744947dcSTom Erickson 	dnode_t *dn;
369744947dcSTom Erickson 	int err;
370744947dcSTom Erickson 
371744947dcSTom Erickson 	DB_DNODE_ENTER(db);
372744947dcSTom Erickson 	dn = DB_DNODE(db);
373744947dcSTom Erickson 	err = dmu_spill_hold_by_dnode(dn, DB_RF_CANFAIL, tag, dbp);
374744947dcSTom Erickson 	DB_DNODE_EXIT(db);
375744947dcSTom Erickson 
376744947dcSTom Erickson 	return (err);
3770a586ceaSMark Shellenbaum }
3780a586ceaSMark Shellenbaum 
3790a586ceaSMark Shellenbaum /*
38013506d1eSmaybee  * Note: longer-term, we should modify all of the dmu_buf_*() interfaces
38113506d1eSmaybee  * to take a held dnode rather than <os, object> -- the lookup is wasteful,
38213506d1eSmaybee  * and can induce severe lock contention when writing to several files
38313506d1eSmaybee  * whose dnodes are in the same block.
38413506d1eSmaybee  */
38513506d1eSmaybee static int
3867bfdf011SNeil Perrin dmu_buf_hold_array_by_dnode(dnode_t *dn, uint64_t offset, uint64_t length,
3877bfdf011SNeil Perrin     int read, void *tag, int *numbufsp, dmu_buf_t ***dbpp, uint32_t flags)
388fa9e4066Sahrens {
389fa9e4066Sahrens 	dmu_buf_t **dbp;
390fa9e4066Sahrens 	uint64_t blkid, nblks, i;
3917bfdf011SNeil Perrin 	uint32_t dbuf_flags;
392ea8dc4b6Seschrock 	int err;
393ea8dc4b6Seschrock 	zio_t *zio;
394ea8dc4b6Seschrock 
395ea8dc4b6Seschrock 	ASSERT(length <= DMU_MAX_ACCESS);
396fa9e4066Sahrens 
397c87b8fc5SMark J Musante 	dbuf_flags = DB_RF_CANFAIL | DB_RF_NEVERWAIT | DB_RF_HAVESTRUCT;
3987bfdf011SNeil Perrin 	if (flags & DMU_READ_NO_PREFETCH || length > zfetch_array_rd_sz)
3997bfdf011SNeil Perrin 		dbuf_flags |= DB_RF_NOPREFETCH;
400ea8dc4b6Seschrock 
401fa9e4066Sahrens 	rw_enter(&dn->dn_struct_rwlock, RW_READER);
402fa9e4066Sahrens 	if (dn->dn_datablkshift) {
403fa9e4066Sahrens 		int blkshift = dn->dn_datablkshift;
404fa9e4066Sahrens 		nblks = (P2ROUNDUP(offset+length, 1ULL<<blkshift) -
405fa9e4066Sahrens 		    P2ALIGN(offset, 1ULL<<blkshift)) >> blkshift;
406fa9e4066Sahrens 	} else {
4070125049cSahrens 		if (offset + length > dn->dn_datablksz) {
4080125049cSahrens 			zfs_panic_recover("zfs: accessing past end of object "
4090125049cSahrens 			    "%llx/%llx (size=%u access=%llu+%llu)",
4100125049cSahrens 			    (longlong_t)dn->dn_objset->
4110125049cSahrens 			    os_dsl_dataset->ds_object,
4120125049cSahrens 			    (longlong_t)dn->dn_object, dn->dn_datablksz,
4130125049cSahrens 			    (longlong_t)offset, (longlong_t)length);
414c87b8fc5SMark J Musante 			rw_exit(&dn->dn_struct_rwlock);
415be6fd75aSMatthew Ahrens 			return (SET_ERROR(EIO));
4160125049cSahrens 		}
417fa9e4066Sahrens 		nblks = 1;
418fa9e4066Sahrens 	}
419ea8dc4b6Seschrock 	dbp = kmem_zalloc(sizeof (dmu_buf_t *) * nblks, KM_SLEEP);
420fa9e4066Sahrens 
421e14bb325SJeff Bonwick 	zio = zio_root(dn->dn_objset->os_spa, NULL, NULL, ZIO_FLAG_CANFAIL);
422fa9e4066Sahrens 	blkid = dbuf_whichblock(dn, offset);
423fa9e4066Sahrens 	for (i = 0; i < nblks; i++) {
424ea8dc4b6Seschrock 		dmu_buf_impl_t *db = dbuf_hold(dn, blkid+i, tag);
425ea8dc4b6Seschrock 		if (db == NULL) {
426ea8dc4b6Seschrock 			rw_exit(&dn->dn_struct_rwlock);
427ea8dc4b6Seschrock 			dmu_buf_rele_array(dbp, nblks, tag);
428ea8dc4b6Seschrock 			zio_nowait(zio);
429be6fd75aSMatthew Ahrens 			return (SET_ERROR(EIO));
430ea8dc4b6Seschrock 		}
431ea8dc4b6Seschrock 		/* initiate async i/o */
43213506d1eSmaybee 		if (read) {
4337bfdf011SNeil Perrin 			(void) dbuf_read(db, zio, dbuf_flags);
434ea8dc4b6Seschrock 		}
435ea8dc4b6Seschrock 		dbp[i] = &db->db;
436fa9e4066Sahrens 	}
437fa9e4066Sahrens 	rw_exit(&dn->dn_struct_rwlock);
438fa9e4066Sahrens 
439ea8dc4b6Seschrock 	/* wait for async i/o */
440ea8dc4b6Seschrock 	err = zio_wait(zio);
441ea8dc4b6Seschrock 	if (err) {
442ea8dc4b6Seschrock 		dmu_buf_rele_array(dbp, nblks, tag);
443ea8dc4b6Seschrock 		return (err);
444ea8dc4b6Seschrock 	}
445ea8dc4b6Seschrock 
446ea8dc4b6Seschrock 	/* wait for other io to complete */
447ea8dc4b6Seschrock 	if (read) {
448ea8dc4b6Seschrock 		for (i = 0; i < nblks; i++) {
449ea8dc4b6Seschrock 			dmu_buf_impl_t *db = (dmu_buf_impl_t *)dbp[i];
450ea8dc4b6Seschrock 			mutex_enter(&db->db_mtx);
451ea8dc4b6Seschrock 			while (db->db_state == DB_READ ||
452ea8dc4b6Seschrock 			    db->db_state == DB_FILL)
453ea8dc4b6Seschrock 				cv_wait(&db->db_changed, &db->db_mtx);
454ea8dc4b6Seschrock 			if (db->db_state == DB_UNCACHED)
455be6fd75aSMatthew Ahrens 				err = SET_ERROR(EIO);
456ea8dc4b6Seschrock 			mutex_exit(&db->db_mtx);
457ea8dc4b6Seschrock 			if (err) {
458ea8dc4b6Seschrock 				dmu_buf_rele_array(dbp, nblks, tag);
459ea8dc4b6Seschrock 				return (err);
460ea8dc4b6Seschrock 			}
461ea8dc4b6Seschrock 		}
462ea8dc4b6Seschrock 	}
463ea8dc4b6Seschrock 
464ea8dc4b6Seschrock 	*numbufsp = nblks;
465ea8dc4b6Seschrock 	*dbpp = dbp;
466ea8dc4b6Seschrock 	return (0);
467fa9e4066Sahrens }
468fa9e4066Sahrens 
469a2eea2e1Sahrens static int
47013506d1eSmaybee dmu_buf_hold_array(objset_t *os, uint64_t object, uint64_t offset,
47113506d1eSmaybee     uint64_t length, int read, void *tag, int *numbufsp, dmu_buf_t ***dbpp)
47213506d1eSmaybee {
47313506d1eSmaybee 	dnode_t *dn;
47413506d1eSmaybee 	int err;
47513506d1eSmaybee 
476503ad85cSMatthew Ahrens 	err = dnode_hold(os, object, FTAG, &dn);
47713506d1eSmaybee 	if (err)
47813506d1eSmaybee 		return (err);
47913506d1eSmaybee 
48013506d1eSmaybee 	err = dmu_buf_hold_array_by_dnode(dn, offset, length, read, tag,
4817bfdf011SNeil Perrin 	    numbufsp, dbpp, DMU_READ_PREFETCH);
48213506d1eSmaybee 
48313506d1eSmaybee 	dnode_rele(dn, FTAG);
48413506d1eSmaybee 
48513506d1eSmaybee 	return (err);
48613506d1eSmaybee }
48713506d1eSmaybee 
48813506d1eSmaybee int
489744947dcSTom Erickson dmu_buf_hold_array_by_bonus(dmu_buf_t *db_fake, uint64_t offset,
49013506d1eSmaybee     uint64_t length, int read, void *tag, int *numbufsp, dmu_buf_t ***dbpp)
49113506d1eSmaybee {
492744947dcSTom Erickson 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
493744947dcSTom Erickson 	dnode_t *dn;
49413506d1eSmaybee 	int err;
49513506d1eSmaybee 
496744947dcSTom Erickson 	DB_DNODE_ENTER(db);
497744947dcSTom Erickson 	dn = DB_DNODE(db);
49813506d1eSmaybee 	err = dmu_buf_hold_array_by_dnode(dn, offset, length, read, tag,
4997bfdf011SNeil Perrin 	    numbufsp, dbpp, DMU_READ_PREFETCH);
500744947dcSTom Erickson 	DB_DNODE_EXIT(db);
50113506d1eSmaybee 
50213506d1eSmaybee 	return (err);
50313506d1eSmaybee }
50413506d1eSmaybee 
505fa9e4066Sahrens void
506ea8dc4b6Seschrock dmu_buf_rele_array(dmu_buf_t **dbp_fake, int numbufs, void *tag)
507fa9e4066Sahrens {
508fa9e4066Sahrens 	int i;
509fa9e4066Sahrens 	dmu_buf_impl_t **dbp = (dmu_buf_impl_t **)dbp_fake;
510fa9e4066Sahrens 
511fa9e4066Sahrens 	if (numbufs == 0)
512fa9e4066Sahrens 		return;
513fa9e4066Sahrens 
514ea8dc4b6Seschrock 	for (i = 0; i < numbufs; i++) {
515ea8dc4b6Seschrock 		if (dbp[i])
516ea8dc4b6Seschrock 			dbuf_rele(dbp[i], tag);
517ea8dc4b6Seschrock 	}
518fa9e4066Sahrens 
519fa9e4066Sahrens 	kmem_free(dbp, sizeof (dmu_buf_t *) * numbufs);
520fa9e4066Sahrens }
521fa9e4066Sahrens 
52269962b56SMatthew Ahrens /*
52369962b56SMatthew Ahrens  * Issue prefetch i/os for the given blocks.
52469962b56SMatthew Ahrens  *
52569962b56SMatthew Ahrens  * Note: The assumption is that we *know* these blocks will be needed
52669962b56SMatthew Ahrens  * almost immediately.  Therefore, the prefetch i/os will be issued at
52769962b56SMatthew Ahrens  * ZIO_PRIORITY_SYNC_READ
52869962b56SMatthew Ahrens  *
52969962b56SMatthew Ahrens  * Note: indirect blocks and other metadata will be read synchronously,
53069962b56SMatthew Ahrens  * causing this function to block if they are not already cached.
53169962b56SMatthew Ahrens  */
532fa9e4066Sahrens void
533fa9e4066Sahrens dmu_prefetch(objset_t *os, uint64_t object, uint64_t offset, uint64_t len)
534fa9e4066Sahrens {
535fa9e4066Sahrens 	dnode_t *dn;
536fa9e4066Sahrens 	uint64_t blkid;
53769962b56SMatthew Ahrens 	int nblks, err;
538fa9e4066Sahrens 
539416e0cd8Sek110237 	if (zfs_prefetch_disable)
540416e0cd8Sek110237 		return;
541416e0cd8Sek110237 
542fa9e4066Sahrens 	if (len == 0) {  /* they're interested in the bonus buffer */
543744947dcSTom Erickson 		dn = DMU_META_DNODE(os);
544fa9e4066Sahrens 
545fa9e4066Sahrens 		if (object == 0 || object >= DN_MAX_OBJECT)
546fa9e4066Sahrens 			return;
547fa9e4066Sahrens 
548fa9e4066Sahrens 		rw_enter(&dn->dn_struct_rwlock, RW_READER);
549fa9e4066Sahrens 		blkid = dbuf_whichblock(dn, object * sizeof (dnode_phys_t));
55069962b56SMatthew Ahrens 		dbuf_prefetch(dn, blkid, ZIO_PRIORITY_SYNC_READ);
551fa9e4066Sahrens 		rw_exit(&dn->dn_struct_rwlock);
552fa9e4066Sahrens 		return;
553fa9e4066Sahrens 	}
554fa9e4066Sahrens 
555fa9e4066Sahrens 	/*
556fa9e4066Sahrens 	 * XXX - Note, if the dnode for the requested object is not
557fa9e4066Sahrens 	 * already cached, we will do a *synchronous* read in the
558fa9e4066Sahrens 	 * dnode_hold() call.  The same is true for any indirects.
559fa9e4066Sahrens 	 */
560503ad85cSMatthew Ahrens 	err = dnode_hold(os, object, FTAG, &dn);
561ea8dc4b6Seschrock 	if (err != 0)
562fa9e4066Sahrens 		return;
563fa9e4066Sahrens 
564fa9e4066Sahrens 	rw_enter(&dn->dn_struct_rwlock, RW_READER);
565fa9e4066Sahrens 	if (dn->dn_datablkshift) {
566fa9e4066Sahrens 		int blkshift = dn->dn_datablkshift;
567fa9e4066Sahrens 		nblks = (P2ROUNDUP(offset + len, 1 << blkshift) -
568fa9e4066Sahrens 		    P2ALIGN(offset, 1 << blkshift)) >> blkshift;
569fa9e4066Sahrens 	} else {
570fa9e4066Sahrens 		nblks = (offset < dn->dn_datablksz);
571fa9e4066Sahrens 	}
572fa9e4066Sahrens 
573fa9e4066Sahrens 	if (nblks != 0) {
574fa9e4066Sahrens 		blkid = dbuf_whichblock(dn, offset);
57569962b56SMatthew Ahrens 		for (int i = 0; i < nblks; i++)
57669962b56SMatthew Ahrens 			dbuf_prefetch(dn, blkid + i, ZIO_PRIORITY_SYNC_READ);
577fa9e4066Sahrens 	}
578fa9e4066Sahrens 
579fa9e4066Sahrens 	rw_exit(&dn->dn_struct_rwlock);
580fa9e4066Sahrens 
581fa9e4066Sahrens 	dnode_rele(dn, FTAG);
582fa9e4066Sahrens }
583fa9e4066Sahrens 
58476256205SMark Maybee /*
58576256205SMark Maybee  * Get the next "chunk" of file data to free.  We traverse the file from
58676256205SMark Maybee  * the end so that the file gets shorter over time (if we crashes in the
58776256205SMark Maybee  * middle, this will leave us in a better state).  We find allocated file
58876256205SMark Maybee  * data by simply searching the allocated level 1 indirects.
589713d6c20SMatthew Ahrens  *
590713d6c20SMatthew Ahrens  * On input, *start should be the first offset that does not need to be
591713d6c20SMatthew Ahrens  * freed (e.g. "offset + length").  On return, *start will be the first
592713d6c20SMatthew Ahrens  * offset that should be freed.
59376256205SMark Maybee  */
594cdb0ab79Smaybee static int
595713d6c20SMatthew Ahrens get_next_chunk(dnode_t *dn, uint64_t *start, uint64_t minimum)
596cdb0ab79Smaybee {
597713d6c20SMatthew Ahrens 	uint64_t maxblks = DMU_MAX_ACCESS >> (dn->dn_indblkshift + 1);
598713d6c20SMatthew Ahrens 	/* bytes of data covered by a level-1 indirect block */
59976256205SMark Maybee 	uint64_t iblkrange =
6001c8564a7SMark Maybee 	    dn->dn_datablksz * EPB(dn->dn_indblkshift, SPA_BLKPTRSHIFT);
601cdb0ab79Smaybee 
602713d6c20SMatthew Ahrens 	ASSERT3U(minimum, <=, *start);
603cdb0ab79Smaybee 
604713d6c20SMatthew Ahrens 	if (*start - minimum <= iblkrange * maxblks) {
605713d6c20SMatthew Ahrens 		*start = minimum;
606cdb0ab79Smaybee 		return (0);
607cdb0ab79Smaybee 	}
60876256205SMark Maybee 	ASSERT(ISP2(iblkrange));
609cdb0ab79Smaybee 
610713d6c20SMatthew Ahrens 	for (uint64_t blks = 0; *start > minimum && blks < maxblks; blks++) {
6111c8564a7SMark Maybee 		int err;
612cdb0ab79Smaybee 
613713d6c20SMatthew Ahrens 		/*
614713d6c20SMatthew Ahrens 		 * dnode_next_offset(BACKWARDS) will find an allocated L1
615713d6c20SMatthew Ahrens 		 * indirect block at or before the input offset.  We must
616713d6c20SMatthew Ahrens 		 * decrement *start so that it is at the end of the region
617713d6c20SMatthew Ahrens 		 * to search.
618713d6c20SMatthew Ahrens 		 */
619713d6c20SMatthew Ahrens 		(*start)--;
620cdb0ab79Smaybee 		err = dnode_next_offset(dn,
62176256205SMark Maybee 		    DNODE_FIND_BACKWARDS, start, 2, 1, 0);
622cdb0ab79Smaybee 
623713d6c20SMatthew Ahrens 		/* if there are no indirect blocks before start, we are done */
62476256205SMark Maybee 		if (err == ESRCH) {
625713d6c20SMatthew Ahrens 			*start = minimum;
626713d6c20SMatthew Ahrens 			break;
627713d6c20SMatthew Ahrens 		} else if (err != 0) {
628cdb0ab79Smaybee 			return (err);
62976256205SMark Maybee 		}
630cdb0ab79Smaybee 
631713d6c20SMatthew Ahrens 		/* set start to the beginning of this L1 indirect */
63276256205SMark Maybee 		*start = P2ALIGN(*start, iblkrange);
633cdb0ab79Smaybee 	}
634713d6c20SMatthew Ahrens 	if (*start < minimum)
635713d6c20SMatthew Ahrens 		*start = minimum;
636cdb0ab79Smaybee 	return (0);
637cdb0ab79Smaybee }
638cdb0ab79Smaybee 
639cdb0ab79Smaybee static int
640cdb0ab79Smaybee dmu_free_long_range_impl(objset_t *os, dnode_t *dn, uint64_t offset,
641713d6c20SMatthew Ahrens     uint64_t length)
642cdb0ab79Smaybee {
643713d6c20SMatthew Ahrens 	uint64_t object_size = (dn->dn_maxblkid + 1) * dn->dn_datablksz;
644713d6c20SMatthew Ahrens 	int err;
645cdb0ab79Smaybee 
646713d6c20SMatthew Ahrens 	if (offset >= object_size)
647cdb0ab79Smaybee 		return (0);
648cdb0ab79Smaybee 
649713d6c20SMatthew Ahrens 	if (length == DMU_OBJECT_END || offset + length > object_size)
650713d6c20SMatthew Ahrens 		length = object_size - offset;
651713d6c20SMatthew Ahrens 
652713d6c20SMatthew Ahrens 	while (length != 0) {
653713d6c20SMatthew Ahrens 		uint64_t chunk_end, chunk_begin;
654713d6c20SMatthew Ahrens 
655713d6c20SMatthew Ahrens 		chunk_end = chunk_begin = offset + length;
656713d6c20SMatthew Ahrens 
657713d6c20SMatthew Ahrens 		/* move chunk_begin backwards to the beginning of this chunk */
658713d6c20SMatthew Ahrens 		err = get_next_chunk(dn, &chunk_begin, offset);
659cdb0ab79Smaybee 		if (err)
660cdb0ab79Smaybee 			return (err);
661713d6c20SMatthew Ahrens 		ASSERT3U(chunk_begin, >=, offset);
662713d6c20SMatthew Ahrens 		ASSERT3U(chunk_begin, <=, chunk_end);
663cdb0ab79Smaybee 
664713d6c20SMatthew Ahrens 		dmu_tx_t *tx = dmu_tx_create(os);
665713d6c20SMatthew Ahrens 		dmu_tx_hold_free(tx, dn->dn_object,
666713d6c20SMatthew Ahrens 		    chunk_begin, chunk_end - chunk_begin);
667cdb0ab79Smaybee 		err = dmu_tx_assign(tx, TXG_WAIT);
668cdb0ab79Smaybee 		if (err) {
669cdb0ab79Smaybee 			dmu_tx_abort(tx);
670cdb0ab79Smaybee 			return (err);
671cdb0ab79Smaybee 		}
672713d6c20SMatthew Ahrens 		dnode_free_range(dn, chunk_begin, chunk_end - chunk_begin, tx);
673cdb0ab79Smaybee 		dmu_tx_commit(tx);
674713d6c20SMatthew Ahrens 
675713d6c20SMatthew Ahrens 		length -= chunk_end - chunk_begin;
676cdb0ab79Smaybee 	}
677cdb0ab79Smaybee 	return (0);
678cdb0ab79Smaybee }
679cdb0ab79Smaybee 
680cdb0ab79Smaybee int
681cdb0ab79Smaybee dmu_free_long_range(objset_t *os, uint64_t object,
682cdb0ab79Smaybee     uint64_t offset, uint64_t length)
683cdb0ab79Smaybee {
684cdb0ab79Smaybee 	dnode_t *dn;
685cdb0ab79Smaybee 	int err;
686cdb0ab79Smaybee 
687503ad85cSMatthew Ahrens 	err = dnode_hold(os, object, FTAG, &dn);
688cdb0ab79Smaybee 	if (err != 0)
689cdb0ab79Smaybee 		return (err);
690713d6c20SMatthew Ahrens 	err = dmu_free_long_range_impl(os, dn, offset, length);
6915253393bSMatthew Ahrens 
6925253393bSMatthew Ahrens 	/*
6935253393bSMatthew Ahrens 	 * It is important to zero out the maxblkid when freeing the entire
6945253393bSMatthew Ahrens 	 * file, so that (a) subsequent calls to dmu_free_long_range_impl()
6955253393bSMatthew Ahrens 	 * will take the fast path, and (b) dnode_reallocate() can verify
6965253393bSMatthew Ahrens 	 * that the entire file has been freed.
6975253393bSMatthew Ahrens 	 */
69843466aaeSMax Grossman 	if (err == 0 && offset == 0 && length == DMU_OBJECT_END)
6995253393bSMatthew Ahrens 		dn->dn_maxblkid = 0;
7005253393bSMatthew Ahrens 
701cdb0ab79Smaybee 	dnode_rele(dn, FTAG);
702cdb0ab79Smaybee 	return (err);
703cdb0ab79Smaybee }
704cdb0ab79Smaybee 
705cdb0ab79Smaybee int
706713d6c20SMatthew Ahrens dmu_free_long_object(objset_t *os, uint64_t object)
707cdb0ab79Smaybee {
708cdb0ab79Smaybee 	dmu_tx_t *tx;
709cdb0ab79Smaybee 	int err;
710cdb0ab79Smaybee 
711713d6c20SMatthew Ahrens 	err = dmu_free_long_range(os, object, 0, DMU_OBJECT_END);
712cdb0ab79Smaybee 	if (err != 0)
713cdb0ab79Smaybee 		return (err);
714713d6c20SMatthew Ahrens 
715cdb0ab79Smaybee 	tx = dmu_tx_create(os);
716cdb0ab79Smaybee 	dmu_tx_hold_bonus(tx, object);
717713d6c20SMatthew Ahrens 	dmu_tx_hold_free(tx, object, 0, DMU_OBJECT_END);
718cdb0ab79Smaybee 	err = dmu_tx_assign(tx, TXG_WAIT);
719cdb0ab79Smaybee 	if (err == 0) {
720713d6c20SMatthew Ahrens 		err = dmu_object_free(os, object, tx);
721cdb0ab79Smaybee 		dmu_tx_commit(tx);
722cdb0ab79Smaybee 	} else {
723cdb0ab79Smaybee 		dmu_tx_abort(tx);
724cdb0ab79Smaybee 	}
725713d6c20SMatthew Ahrens 
726cdb0ab79Smaybee 	return (err);
727cdb0ab79Smaybee }
728cdb0ab79Smaybee 
729ea8dc4b6Seschrock int
730fa9e4066Sahrens dmu_free_range(objset_t *os, uint64_t object, uint64_t offset,
731fa9e4066Sahrens     uint64_t size, dmu_tx_t *tx)
732fa9e4066Sahrens {
733ea8dc4b6Seschrock 	dnode_t *dn;
734503ad85cSMatthew Ahrens 	int err = dnode_hold(os, object, FTAG, &dn);
735ea8dc4b6Seschrock 	if (err)
736ea8dc4b6Seschrock 		return (err);
737fa9e4066Sahrens 	ASSERT(offset < UINT64_MAX);
738fa9e4066Sahrens 	ASSERT(size == -1ULL || size <= UINT64_MAX - offset);
739fa9e4066Sahrens 	dnode_free_range(dn, offset, size, tx);
740fa9e4066Sahrens 	dnode_rele(dn, FTAG);
741ea8dc4b6Seschrock 	return (0);
742fa9e4066Sahrens }
743fa9e4066Sahrens 
744ea8dc4b6Seschrock int
745ea8dc4b6Seschrock dmu_read(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
7467bfdf011SNeil Perrin     void *buf, uint32_t flags)
747fa9e4066Sahrens {
748fa9e4066Sahrens 	dnode_t *dn;
749fa9e4066Sahrens 	dmu_buf_t **dbp;
750c87b8fc5SMark J Musante 	int numbufs, err;
751fa9e4066Sahrens 
752503ad85cSMatthew Ahrens 	err = dnode_hold(os, object, FTAG, &dn);
753ea8dc4b6Seschrock 	if (err)
754ea8dc4b6Seschrock 		return (err);
755feb08c6bSbillm 
756feb08c6bSbillm 	/*
757feb08c6bSbillm 	 * Deal with odd block sizes, where there can't be data past the first
758feb08c6bSbillm 	 * block.  If we ever do the tail block optimization, we will need to
759feb08c6bSbillm 	 * handle that here as well.
760feb08c6bSbillm 	 */
761c87b8fc5SMark J Musante 	if (dn->dn_maxblkid == 0) {
762fa9e4066Sahrens 		int newsz = offset > dn->dn_datablksz ? 0 :
763fa9e4066Sahrens 		    MIN(size, dn->dn_datablksz - offset);
764fa9e4066Sahrens 		bzero((char *)buf + newsz, size - newsz);
765fa9e4066Sahrens 		size = newsz;
766fa9e4066Sahrens 	}
767fa9e4066Sahrens 
768fa9e4066Sahrens 	while (size > 0) {
769fa9e4066Sahrens 		uint64_t mylen = MIN(size, DMU_MAX_ACCESS / 2);
770c87b8fc5SMark J Musante 		int i;
771fa9e4066Sahrens 
772fa9e4066Sahrens 		/*
773fa9e4066Sahrens 		 * NB: we could do this block-at-a-time, but it's nice
774fa9e4066Sahrens 		 * to be reading in parallel.
775fa9e4066Sahrens 		 */
776a2eea2e1Sahrens 		err = dmu_buf_hold_array_by_dnode(dn, offset, mylen,
7777bfdf011SNeil Perrin 		    TRUE, FTAG, &numbufs, &dbp, flags);
778ea8dc4b6Seschrock 		if (err)
7791934e92fSmaybee 			break;
780fa9e4066Sahrens 
781fa9e4066Sahrens 		for (i = 0; i < numbufs; i++) {
782fa9e4066Sahrens 			int tocpy;
783fa9e4066Sahrens 			int bufoff;
784fa9e4066Sahrens 			dmu_buf_t *db = dbp[i];
785fa9e4066Sahrens 
786fa9e4066Sahrens 			ASSERT(size > 0);
787fa9e4066Sahrens 
788fa9e4066Sahrens 			bufoff = offset - db->db_offset;
789fa9e4066Sahrens 			tocpy = (int)MIN(db->db_size - bufoff, size);
790fa9e4066Sahrens 
791fa9e4066Sahrens 			bcopy((char *)db->db_data + bufoff, buf, tocpy);
792fa9e4066Sahrens 
793fa9e4066Sahrens 			offset += tocpy;
794fa9e4066Sahrens 			size -= tocpy;
795fa9e4066Sahrens 			buf = (char *)buf + tocpy;
796fa9e4066Sahrens 		}
797ea8dc4b6Seschrock 		dmu_buf_rele_array(dbp, numbufs, FTAG);
798fa9e4066Sahrens 	}
799a2eea2e1Sahrens 	dnode_rele(dn, FTAG);
8001934e92fSmaybee 	return (err);
801fa9e4066Sahrens }
802fa9e4066Sahrens 
803fa9e4066Sahrens void
804fa9e4066Sahrens dmu_write(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
805fa9e4066Sahrens     const void *buf, dmu_tx_t *tx)
806fa9e4066Sahrens {
807fa9e4066Sahrens 	dmu_buf_t **dbp;
808fa9e4066Sahrens 	int numbufs, i;
809fa9e4066Sahrens 
81013506d1eSmaybee 	if (size == 0)
81113506d1eSmaybee 		return;
81213506d1eSmaybee 
813ea8dc4b6Seschrock 	VERIFY(0 == dmu_buf_hold_array(os, object, offset, size,
814ea8dc4b6Seschrock 	    FALSE, FTAG, &numbufs, &dbp));
815fa9e4066Sahrens 
816fa9e4066Sahrens 	for (i = 0; i < numbufs; i++) {
817fa9e4066Sahrens 		int tocpy;
818fa9e4066Sahrens 		int bufoff;
819fa9e4066Sahrens 		dmu_buf_t *db = dbp[i];
820fa9e4066Sahrens 
821fa9e4066Sahrens 		ASSERT(size > 0);
822fa9e4066Sahrens 
823fa9e4066Sahrens 		bufoff = offset - db->db_offset;
824fa9e4066Sahrens 		tocpy = (int)MIN(db->db_size - bufoff, size);
825fa9e4066Sahrens 
826fa9e4066Sahrens 		ASSERT(i == 0 || i == numbufs-1 || tocpy == db->db_size);
827fa9e4066Sahrens 
828fa9e4066Sahrens 		if (tocpy == db->db_size)
829fa9e4066Sahrens 			dmu_buf_will_fill(db, tx);
830fa9e4066Sahrens 		else
831fa9e4066Sahrens 			dmu_buf_will_dirty(db, tx);
832fa9e4066Sahrens 
833fa9e4066Sahrens 		bcopy(buf, (char *)db->db_data + bufoff, tocpy);
834fa9e4066Sahrens 
835fa9e4066Sahrens 		if (tocpy == db->db_size)
836fa9e4066Sahrens 			dmu_buf_fill_done(db, tx);
837fa9e4066Sahrens 
838fa9e4066Sahrens 		offset += tocpy;
839fa9e4066Sahrens 		size -= tocpy;
840fa9e4066Sahrens 		buf = (char *)buf + tocpy;
841fa9e4066Sahrens 	}
842ea8dc4b6Seschrock 	dmu_buf_rele_array(dbp, numbufs, FTAG);
843fa9e4066Sahrens }
844fa9e4066Sahrens 
84582c9918fSTim Haley void
84682c9918fSTim Haley dmu_prealloc(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
84782c9918fSTim Haley     dmu_tx_t *tx)
84882c9918fSTim Haley {
84982c9918fSTim Haley 	dmu_buf_t **dbp;
85082c9918fSTim Haley 	int numbufs, i;
85182c9918fSTim Haley 
85282c9918fSTim Haley 	if (size == 0)
85382c9918fSTim Haley 		return;
85482c9918fSTim Haley 
85582c9918fSTim Haley 	VERIFY(0 == dmu_buf_hold_array(os, object, offset, size,
85682c9918fSTim Haley 	    FALSE, FTAG, &numbufs, &dbp));
85782c9918fSTim Haley 
85882c9918fSTim Haley 	for (i = 0; i < numbufs; i++) {
85982c9918fSTim Haley 		dmu_buf_t *db = dbp[i];
86082c9918fSTim Haley 
86182c9918fSTim Haley 		dmu_buf_will_not_fill(db, tx);
86282c9918fSTim Haley 	}
86382c9918fSTim Haley 	dmu_buf_rele_array(dbp, numbufs, FTAG);
86482c9918fSTim Haley }
86582c9918fSTim Haley 
866*5d7b4d43SMatthew Ahrens void
867*5d7b4d43SMatthew Ahrens dmu_write_embedded(objset_t *os, uint64_t object, uint64_t offset,
868*5d7b4d43SMatthew Ahrens     void *data, uint8_t etype, uint8_t comp, int uncompressed_size,
869*5d7b4d43SMatthew Ahrens     int compressed_size, int byteorder, dmu_tx_t *tx)
870*5d7b4d43SMatthew Ahrens {
871*5d7b4d43SMatthew Ahrens 	dmu_buf_t *db;
872*5d7b4d43SMatthew Ahrens 
873*5d7b4d43SMatthew Ahrens 	ASSERT3U(etype, <, NUM_BP_EMBEDDED_TYPES);
874*5d7b4d43SMatthew Ahrens 	ASSERT3U(comp, <, ZIO_COMPRESS_FUNCTIONS);
875*5d7b4d43SMatthew Ahrens 	VERIFY0(dmu_buf_hold_noread(os, object, offset,
876*5d7b4d43SMatthew Ahrens 	    FTAG, &db));
877*5d7b4d43SMatthew Ahrens 
878*5d7b4d43SMatthew Ahrens 	dmu_buf_write_embedded(db,
879*5d7b4d43SMatthew Ahrens 	    data, (bp_embedded_type_t)etype, (enum zio_compress)comp,
880*5d7b4d43SMatthew Ahrens 	    uncompressed_size, compressed_size, byteorder, tx);
881*5d7b4d43SMatthew Ahrens 
882*5d7b4d43SMatthew Ahrens 	dmu_buf_rele(db, FTAG);
883*5d7b4d43SMatthew Ahrens }
884*5d7b4d43SMatthew Ahrens 
885c242f9a0Schunli zhang - Sun Microsystems - Irvine United States /*
886c242f9a0Schunli zhang - Sun Microsystems - Irvine United States  * DMU support for xuio
887c242f9a0Schunli zhang - Sun Microsystems - Irvine United States  */
888c242f9a0Schunli zhang - Sun Microsystems - Irvine United States kstat_t *xuio_ksp = NULL;
889c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
890c242f9a0Schunli zhang - Sun Microsystems - Irvine United States int
891c242f9a0Schunli zhang - Sun Microsystems - Irvine United States dmu_xuio_init(xuio_t *xuio, int nblk)
892c242f9a0Schunli zhang - Sun Microsystems - Irvine United States {
893c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	dmu_xuio_t *priv;
894c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	uio_t *uio = &xuio->xu_uio;
895c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
896c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	uio->uio_iovcnt = nblk;
897c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	uio->uio_iov = kmem_zalloc(nblk * sizeof (iovec_t), KM_SLEEP);
898c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
899c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	priv = kmem_zalloc(sizeof (dmu_xuio_t), KM_SLEEP);
900c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	priv->cnt = nblk;
901c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	priv->bufs = kmem_zalloc(nblk * sizeof (arc_buf_t *), KM_SLEEP);
902c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	priv->iovp = uio->uio_iov;
903c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	XUIO_XUZC_PRIV(xuio) = priv;
904c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
905c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	if (XUIO_XUZC_RW(xuio) == UIO_READ)
906c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 		XUIOSTAT_INCR(xuiostat_onloan_rbuf, nblk);
907c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	else
908c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 		XUIOSTAT_INCR(xuiostat_onloan_wbuf, nblk);
909c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
910c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	return (0);
911c242f9a0Schunli zhang - Sun Microsystems - Irvine United States }
912c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
913c242f9a0Schunli zhang - Sun Microsystems - Irvine United States void
914c242f9a0Schunli zhang - Sun Microsystems - Irvine United States dmu_xuio_fini(xuio_t *xuio)
915c242f9a0Schunli zhang - Sun Microsystems - Irvine United States {
916c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	dmu_xuio_t *priv = XUIO_XUZC_PRIV(xuio);
917c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	int nblk = priv->cnt;
918c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
919c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	kmem_free(priv->iovp, nblk * sizeof (iovec_t));
920c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	kmem_free(priv->bufs, nblk * sizeof (arc_buf_t *));
921c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	kmem_free(priv, sizeof (dmu_xuio_t));
922c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
923c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	if (XUIO_XUZC_RW(xuio) == UIO_READ)
924c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 		XUIOSTAT_INCR(xuiostat_onloan_rbuf, -nblk);
925c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	else
926c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 		XUIOSTAT_INCR(xuiostat_onloan_wbuf, -nblk);
927c242f9a0Schunli zhang - Sun Microsystems - Irvine United States }
928c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
929c242f9a0Schunli zhang - Sun Microsystems - Irvine United States /*
930c242f9a0Schunli zhang - Sun Microsystems - Irvine United States  * Initialize iov[priv->next] and priv->bufs[priv->next] with { off, n, abuf }
931c242f9a0Schunli zhang - Sun Microsystems - Irvine United States  * and increase priv->next by 1.
932c242f9a0Schunli zhang - Sun Microsystems - Irvine United States  */
933c242f9a0Schunli zhang - Sun Microsystems - Irvine United States int
934c242f9a0Schunli zhang - Sun Microsystems - Irvine United States dmu_xuio_add(xuio_t *xuio, arc_buf_t *abuf, offset_t off, size_t n)
935c242f9a0Schunli zhang - Sun Microsystems - Irvine United States {
936c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	struct iovec *iov;
937c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	uio_t *uio = &xuio->xu_uio;
938c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	dmu_xuio_t *priv = XUIO_XUZC_PRIV(xuio);
939c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	int i = priv->next++;
940c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
941c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	ASSERT(i < priv->cnt);
942c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	ASSERT(off + n <= arc_buf_size(abuf));
943c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	iov = uio->uio_iov + i;
944c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	iov->iov_base = (char *)abuf->b_data + off;
945c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	iov->iov_len = n;
946c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	priv->bufs[i] = abuf;
947c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	return (0);
948c242f9a0Schunli zhang - Sun Microsystems - Irvine United States }
949c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
950c242f9a0Schunli zhang - Sun Microsystems - Irvine United States int
951c242f9a0Schunli zhang - Sun Microsystems - Irvine United States dmu_xuio_cnt(xuio_t *xuio)
952c242f9a0Schunli zhang - Sun Microsystems - Irvine United States {
953c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	dmu_xuio_t *priv = XUIO_XUZC_PRIV(xuio);
954c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	return (priv->cnt);
955c242f9a0Schunli zhang - Sun Microsystems - Irvine United States }
956c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
957c242f9a0Schunli zhang - Sun Microsystems - Irvine United States arc_buf_t *
958c242f9a0Schunli zhang - Sun Microsystems - Irvine United States dmu_xuio_arcbuf(xuio_t *xuio, int i)
959c242f9a0Schunli zhang - Sun Microsystems - Irvine United States {
960c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	dmu_xuio_t *priv = XUIO_XUZC_PRIV(xuio);
961c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
962c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	ASSERT(i < priv->cnt);
963c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	return (priv->bufs[i]);
964c242f9a0Schunli zhang - Sun Microsystems - Irvine United States }
965c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
966c242f9a0Schunli zhang - Sun Microsystems - Irvine United States void
967c242f9a0Schunli zhang - Sun Microsystems - Irvine United States dmu_xuio_clear(xuio_t *xuio, int i)
968c242f9a0Schunli zhang - Sun Microsystems - Irvine United States {
969c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	dmu_xuio_t *priv = XUIO_XUZC_PRIV(xuio);
970c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
971c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	ASSERT(i < priv->cnt);
972c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	priv->bufs[i] = NULL;
973c242f9a0Schunli zhang - Sun Microsystems - Irvine United States }
974c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
975c242f9a0Schunli zhang - Sun Microsystems - Irvine United States static void
976c242f9a0Schunli zhang - Sun Microsystems - Irvine United States xuio_stat_init(void)
977c242f9a0Schunli zhang - Sun Microsystems - Irvine United States {
978c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	xuio_ksp = kstat_create("zfs", 0, "xuio_stats", "misc",
979c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	    KSTAT_TYPE_NAMED, sizeof (xuio_stats) / sizeof (kstat_named_t),
980c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	    KSTAT_FLAG_VIRTUAL);
981c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	if (xuio_ksp != NULL) {
982c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 		xuio_ksp->ks_data = &xuio_stats;
983c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 		kstat_install(xuio_ksp);
984c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	}
985c242f9a0Schunli zhang - Sun Microsystems - Irvine United States }
986c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
987c242f9a0Schunli zhang - Sun Microsystems - Irvine United States static void
988c242f9a0Schunli zhang - Sun Microsystems - Irvine United States xuio_stat_fini(void)
989c242f9a0Schunli zhang - Sun Microsystems - Irvine United States {
990c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	if (xuio_ksp != NULL) {
991c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 		kstat_delete(xuio_ksp);
992c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 		xuio_ksp = NULL;
993c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	}
994c242f9a0Schunli zhang - Sun Microsystems - Irvine United States }
995c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
996c242f9a0Schunli zhang - Sun Microsystems - Irvine United States void
997c242f9a0Schunli zhang - Sun Microsystems - Irvine United States xuio_stat_wbuf_copied()
998c242f9a0Schunli zhang - Sun Microsystems - Irvine United States {
999c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	XUIOSTAT_BUMP(xuiostat_wbuf_copied);
1000c242f9a0Schunli zhang - Sun Microsystems - Irvine United States }
1001c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
1002c242f9a0Schunli zhang - Sun Microsystems - Irvine United States void
1003c242f9a0Schunli zhang - Sun Microsystems - Irvine United States xuio_stat_wbuf_nocopy()
1004c242f9a0Schunli zhang - Sun Microsystems - Irvine United States {
1005c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	XUIOSTAT_BUMP(xuiostat_wbuf_nocopy);
1006c242f9a0Schunli zhang - Sun Microsystems - Irvine United States }
1007c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
1008fa9e4066Sahrens #ifdef _KERNEL
1009fa9e4066Sahrens int
1010feb08c6bSbillm dmu_read_uio(objset_t *os, uint64_t object, uio_t *uio, uint64_t size)
1011feb08c6bSbillm {
1012feb08c6bSbillm 	dmu_buf_t **dbp;
1013feb08c6bSbillm 	int numbufs, i, err;
1014c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	xuio_t *xuio = NULL;
1015feb08c6bSbillm 
1016feb08c6bSbillm 	/*
1017feb08c6bSbillm 	 * NB: we could do this block-at-a-time, but it's nice
1018feb08c6bSbillm 	 * to be reading in parallel.
1019feb08c6bSbillm 	 */
1020feb08c6bSbillm 	err = dmu_buf_hold_array(os, object, uio->uio_loffset, size, TRUE, FTAG,
1021feb08c6bSbillm 	    &numbufs, &dbp);
1022feb08c6bSbillm 	if (err)
1023feb08c6bSbillm 		return (err);
1024feb08c6bSbillm 
1025c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	if (uio->uio_extflg == UIO_XUIO)
1026c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 		xuio = (xuio_t *)uio;
1027c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
1028feb08c6bSbillm 	for (i = 0; i < numbufs; i++) {
1029feb08c6bSbillm 		int tocpy;
1030feb08c6bSbillm 		int bufoff;
1031feb08c6bSbillm 		dmu_buf_t *db = dbp[i];
1032feb08c6bSbillm 
1033feb08c6bSbillm 		ASSERT(size > 0);
1034feb08c6bSbillm 
1035feb08c6bSbillm 		bufoff = uio->uio_loffset - db->db_offset;
1036feb08c6bSbillm 		tocpy = (int)MIN(db->db_size - bufoff, size);
1037feb08c6bSbillm 
1038c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 		if (xuio) {
1039c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 			dmu_buf_impl_t *dbi = (dmu_buf_impl_t *)db;
1040c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 			arc_buf_t *dbuf_abuf = dbi->db_buf;
1041c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 			arc_buf_t *abuf = dbuf_loan_arcbuf(dbi);
1042c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 			err = dmu_xuio_add(xuio, abuf, bufoff, tocpy);
1043c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 			if (!err) {
1044c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 				uio->uio_resid -= tocpy;
1045c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 				uio->uio_loffset += tocpy;
1046c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 			}
1047c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 
1048c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 			if (abuf == dbuf_abuf)
1049c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 				XUIOSTAT_BUMP(xuiostat_rbuf_nocopy);
1050c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 			else
1051c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 				XUIOSTAT_BUMP(xuiostat_rbuf_copied);
1052c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 		} else {
1053feb08c6bSbillm 			err = uiomove((char *)db->db_data + bufoff, tocpy,
1054feb08c6bSbillm 			    UIO_READ, uio);
1055c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 		}
1056feb08c6bSbillm 		if (err)
1057feb08c6bSbillm 			break;
1058feb08c6bSbillm 
1059feb08c6bSbillm 		size -= tocpy;
1060feb08c6bSbillm 	}
1061feb08c6bSbillm 	dmu_buf_rele_array(dbp, numbufs, FTAG);
1062feb08c6bSbillm 
1063feb08c6bSbillm 	return (err);
1064feb08c6bSbillm }
1065feb08c6bSbillm 
106694d1a210STim Haley static int
106794d1a210STim Haley dmu_write_uio_dnode(dnode_t *dn, uio_t *uio, uint64_t size, dmu_tx_t *tx)
1068fa9e4066Sahrens {
1069fa9e4066Sahrens 	dmu_buf_t **dbp;
107094d1a210STim Haley 	int numbufs;
1071fa9e4066Sahrens 	int err = 0;
107294d1a210STim Haley 	int i;
1073fa9e4066Sahrens 
107494d1a210STim Haley 	err = dmu_buf_hold_array_by_dnode(dn, uio->uio_loffset, size,
107594d1a210STim Haley 	    FALSE, FTAG, &numbufs, &dbp, DMU_READ_PREFETCH);
1076ea8dc4b6Seschrock 	if (err)
1077ea8dc4b6Seschrock 		return (err);
1078fa9e4066Sahrens 
1079fa9e4066Sahrens 	for (i = 0; i < numbufs; i++) {
1080fa9e4066Sahrens 		int tocpy;
1081fa9e4066Sahrens 		int bufoff;
1082fa9e4066Sahrens 		dmu_buf_t *db = dbp[i];
1083fa9e4066Sahrens 
1084fa9e4066Sahrens 		ASSERT(size > 0);
1085fa9e4066Sahrens 
1086feb08c6bSbillm 		bufoff = uio->uio_loffset - db->db_offset;
1087fa9e4066Sahrens 		tocpy = (int)MIN(db->db_size - bufoff, size);
1088fa9e4066Sahrens 
1089fa9e4066Sahrens 		ASSERT(i == 0 || i == numbufs-1 || tocpy == db->db_size);
1090fa9e4066Sahrens 
1091fa9e4066Sahrens 		if (tocpy == db->db_size)
1092fa9e4066Sahrens 			dmu_buf_will_fill(db, tx);
1093fa9e4066Sahrens 		else
1094fa9e4066Sahrens 			dmu_buf_will_dirty(db, tx);
1095fa9e4066Sahrens 
1096fa9e4066Sahrens 		/*
1097fa9e4066Sahrens 		 * XXX uiomove could block forever (eg. nfs-backed
1098fa9e4066Sahrens 		 * pages).  There needs to be a uiolockdown() function
1099fa9e4066Sahrens 		 * to lock the pages in memory, so that uiomove won't
1100fa9e4066Sahrens 		 * block.
1101fa9e4066Sahrens 		 */
1102fa9e4066Sahrens 		err = uiomove((char *)db->db_data + bufoff, tocpy,
1103fa9e4066Sahrens 		    UIO_WRITE, uio);
1104fa9e4066Sahrens 
1105fa9e4066Sahrens 		if (tocpy == db->db_size)
1106fa9e4066Sahrens 			dmu_buf_fill_done(db, tx);
1107fa9e4066Sahrens 
1108fa9e4066Sahrens 		if (err)
1109fa9e4066Sahrens 			break;
1110fa9e4066Sahrens 
1111fa9e4066Sahrens 		size -= tocpy;
1112fa9e4066Sahrens 	}
111394d1a210STim Haley 
1114ea8dc4b6Seschrock 	dmu_buf_rele_array(dbp, numbufs, FTAG);
1115fa9e4066Sahrens 	return (err);
1116fa9e4066Sahrens }
111744eda4d7Smaybee 
111844eda4d7Smaybee int
111994d1a210STim Haley dmu_write_uio_dbuf(dmu_buf_t *zdb, uio_t *uio, uint64_t size,
112094d1a210STim Haley     dmu_tx_t *tx)
112194d1a210STim Haley {
1122744947dcSTom Erickson 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)zdb;
1123744947dcSTom Erickson 	dnode_t *dn;
1124744947dcSTom Erickson 	int err;
1125744947dcSTom Erickson 
112694d1a210STim Haley 	if (size == 0)
112794d1a210STim Haley 		return (0);
112894d1a210STim Haley 
1129744947dcSTom Erickson 	DB_DNODE_ENTER(db);
1130744947dcSTom Erickson 	dn = DB_DNODE(db);
1131744947dcSTom Erickson 	err = dmu_write_uio_dnode(dn, uio, size, tx);
1132744947dcSTom Erickson 	DB_DNODE_EXIT(db);
1133744947dcSTom Erickson 
1134744947dcSTom Erickson 	return (err);
113594d1a210STim Haley }
113694d1a210STim Haley 
113794d1a210STim Haley int
113894d1a210STim Haley dmu_write_uio(objset_t *os, uint64_t object, uio_t *uio, uint64_t size,
113994d1a210STim Haley     dmu_tx_t *tx)
114094d1a210STim Haley {
114194d1a210STim Haley 	dnode_t *dn;
114294d1a210STim Haley 	int err;
114394d1a210STim Haley 
114494d1a210STim Haley 	if (size == 0)
114594d1a210STim Haley 		return (0);
114694d1a210STim Haley 
114794d1a210STim Haley 	err = dnode_hold(os, object, FTAG, &dn);
114894d1a210STim Haley 	if (err)
114994d1a210STim Haley 		return (err);
115094d1a210STim Haley 
115194d1a210STim Haley 	err = dmu_write_uio_dnode(dn, uio, size, tx);
115294d1a210STim Haley 
115394d1a210STim Haley 	dnode_rele(dn, FTAG);
115494d1a210STim Haley 
115594d1a210STim Haley 	return (err);
115694d1a210STim Haley }
115794d1a210STim Haley 
115894d1a210STim Haley int
115944eda4d7Smaybee dmu_write_pages(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
116044eda4d7Smaybee     page_t *pp, dmu_tx_t *tx)
116144eda4d7Smaybee {
116244eda4d7Smaybee 	dmu_buf_t **dbp;
116344eda4d7Smaybee 	int numbufs, i;
116444eda4d7Smaybee 	int err;
116544eda4d7Smaybee 
116644eda4d7Smaybee 	if (size == 0)
116744eda4d7Smaybee 		return (0);
116844eda4d7Smaybee 
116944eda4d7Smaybee 	err = dmu_buf_hold_array(os, object, offset, size,
117044eda4d7Smaybee 	    FALSE, FTAG, &numbufs, &dbp);
117144eda4d7Smaybee 	if (err)
117244eda4d7Smaybee 		return (err);
117344eda4d7Smaybee 
117444eda4d7Smaybee 	for (i = 0; i < numbufs; i++) {
117544eda4d7Smaybee 		int tocpy, copied, thiscpy;
117644eda4d7Smaybee 		int bufoff;
117744eda4d7Smaybee 		dmu_buf_t *db = dbp[i];
117844eda4d7Smaybee 		caddr_t va;
117944eda4d7Smaybee 
118044eda4d7Smaybee 		ASSERT(size > 0);
118144eda4d7Smaybee 		ASSERT3U(db->db_size, >=, PAGESIZE);
118244eda4d7Smaybee 
118344eda4d7Smaybee 		bufoff = offset - db->db_offset;
118444eda4d7Smaybee 		tocpy = (int)MIN(db->db_size - bufoff, size);
118544eda4d7Smaybee 
118644eda4d7Smaybee 		ASSERT(i == 0 || i == numbufs-1 || tocpy == db->db_size);
118744eda4d7Smaybee 
118844eda4d7Smaybee 		if (tocpy == db->db_size)
118944eda4d7Smaybee 			dmu_buf_will_fill(db, tx);
119044eda4d7Smaybee 		else
119144eda4d7Smaybee 			dmu_buf_will_dirty(db, tx);
119244eda4d7Smaybee 
119344eda4d7Smaybee 		for (copied = 0; copied < tocpy; copied += PAGESIZE) {
119444eda4d7Smaybee 			ASSERT3U(pp->p_offset, ==, db->db_offset + bufoff);
119544eda4d7Smaybee 			thiscpy = MIN(PAGESIZE, tocpy - copied);
11960fab61baSJonathan W Adams 			va = zfs_map_page(pp, S_READ);
119744eda4d7Smaybee 			bcopy(va, (char *)db->db_data + bufoff, thiscpy);
11980fab61baSJonathan W Adams 			zfs_unmap_page(pp, va);
119944eda4d7Smaybee 			pp = pp->p_next;
120044eda4d7Smaybee 			bufoff += PAGESIZE;
120144eda4d7Smaybee 		}
120244eda4d7Smaybee 
120344eda4d7Smaybee 		if (tocpy == db->db_size)
120444eda4d7Smaybee 			dmu_buf_fill_done(db, tx);
120544eda4d7Smaybee 
120644eda4d7Smaybee 		offset += tocpy;
120744eda4d7Smaybee 		size -= tocpy;
120844eda4d7Smaybee 	}
120944eda4d7Smaybee 	dmu_buf_rele_array(dbp, numbufs, FTAG);
121044eda4d7Smaybee 	return (err);
121144eda4d7Smaybee }
1212fa9e4066Sahrens #endif
1213fa9e4066Sahrens 
12142fdbea25SAleksandr Guzovskiy /*
12152fdbea25SAleksandr Guzovskiy  * Allocate a loaned anonymous arc buffer.
12162fdbea25SAleksandr Guzovskiy  */
12172fdbea25SAleksandr Guzovskiy arc_buf_t *
12182fdbea25SAleksandr Guzovskiy dmu_request_arcbuf(dmu_buf_t *handle, int size)
12192fdbea25SAleksandr Guzovskiy {
1220744947dcSTom Erickson 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)handle;
12212fdbea25SAleksandr Guzovskiy 
122243466aaeSMax Grossman 	return (arc_loan_buf(db->db_objset->os_spa, size));
12232fdbea25SAleksandr Guzovskiy }
12242fdbea25SAleksandr Guzovskiy 
12252fdbea25SAleksandr Guzovskiy /*
12262fdbea25SAleksandr Guzovskiy  * Free a loaned arc buffer.
12272fdbea25SAleksandr Guzovskiy  */
12282fdbea25SAleksandr Guzovskiy void
12292fdbea25SAleksandr Guzovskiy dmu_return_arcbuf(arc_buf_t *buf)
12302fdbea25SAleksandr Guzovskiy {
12312fdbea25SAleksandr Guzovskiy 	arc_return_buf(buf, FTAG);
12323b2aab18SMatthew Ahrens 	VERIFY(arc_buf_remove_ref(buf, FTAG));
12332fdbea25SAleksandr Guzovskiy }
12342fdbea25SAleksandr Guzovskiy 
12352fdbea25SAleksandr Guzovskiy /*
12362fdbea25SAleksandr Guzovskiy  * When possible directly assign passed loaned arc buffer to a dbuf.
12372fdbea25SAleksandr Guzovskiy  * If this is not possible copy the contents of passed arc buf via
12382fdbea25SAleksandr Guzovskiy  * dmu_write().
12392fdbea25SAleksandr Guzovskiy  */
12402fdbea25SAleksandr Guzovskiy void
12412fdbea25SAleksandr Guzovskiy dmu_assign_arcbuf(dmu_buf_t *handle, uint64_t offset, arc_buf_t *buf,
12422fdbea25SAleksandr Guzovskiy     dmu_tx_t *tx)
12432fdbea25SAleksandr Guzovskiy {
1244744947dcSTom Erickson 	dmu_buf_impl_t *dbuf = (dmu_buf_impl_t *)handle;
1245744947dcSTom Erickson 	dnode_t *dn;
12462fdbea25SAleksandr Guzovskiy 	dmu_buf_impl_t *db;
12472fdbea25SAleksandr Guzovskiy 	uint32_t blksz = (uint32_t)arc_buf_size(buf);
12482fdbea25SAleksandr Guzovskiy 	uint64_t blkid;
12492fdbea25SAleksandr Guzovskiy 
1250744947dcSTom Erickson 	DB_DNODE_ENTER(dbuf);
1251744947dcSTom Erickson 	dn = DB_DNODE(dbuf);
12522fdbea25SAleksandr Guzovskiy 	rw_enter(&dn->dn_struct_rwlock, RW_READER);
12532fdbea25SAleksandr Guzovskiy 	blkid = dbuf_whichblock(dn, offset);
12542fdbea25SAleksandr Guzovskiy 	VERIFY((db = dbuf_hold(dn, blkid, FTAG)) != NULL);
12552fdbea25SAleksandr Guzovskiy 	rw_exit(&dn->dn_struct_rwlock);
1256744947dcSTom Erickson 	DB_DNODE_EXIT(dbuf);
12572fdbea25SAleksandr Guzovskiy 
12582fdbea25SAleksandr Guzovskiy 	if (offset == db->db.db_offset && blksz == db->db.db_size) {
12592fdbea25SAleksandr Guzovskiy 		dbuf_assign_arcbuf(db, buf, tx);
12602fdbea25SAleksandr Guzovskiy 		dbuf_rele(db, FTAG);
12612fdbea25SAleksandr Guzovskiy 	} else {
1262744947dcSTom Erickson 		objset_t *os;
1263744947dcSTom Erickson 		uint64_t object;
1264744947dcSTom Erickson 
1265744947dcSTom Erickson 		DB_DNODE_ENTER(dbuf);
1266744947dcSTom Erickson 		dn = DB_DNODE(dbuf);
1267744947dcSTom Erickson 		os = dn->dn_objset;
1268744947dcSTom Erickson 		object = dn->dn_object;
1269744947dcSTom Erickson 		DB_DNODE_EXIT(dbuf);
1270744947dcSTom Erickson 
12712fdbea25SAleksandr Guzovskiy 		dbuf_rele(db, FTAG);
1272744947dcSTom Erickson 		dmu_write(os, object, offset, blksz, buf->b_data, tx);
12732fdbea25SAleksandr Guzovskiy 		dmu_return_arcbuf(buf);
1274c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 		XUIOSTAT_BUMP(xuiostat_wbuf_copied);
12752fdbea25SAleksandr Guzovskiy 	}
12762fdbea25SAleksandr Guzovskiy }
12772fdbea25SAleksandr Guzovskiy 
1278c5c6ffa0Smaybee typedef struct {
1279b24ab676SJeff Bonwick 	dbuf_dirty_record_t	*dsa_dr;
1280b24ab676SJeff Bonwick 	dmu_sync_cb_t		*dsa_done;
1281b24ab676SJeff Bonwick 	zgd_t			*dsa_zgd;
1282b24ab676SJeff Bonwick 	dmu_tx_t		*dsa_tx;
1283c717a561Smaybee } dmu_sync_arg_t;
1284c5c6ffa0Smaybee 
1285c5c6ffa0Smaybee /* ARGSUSED */
1286c5c6ffa0Smaybee static void
1287e14bb325SJeff Bonwick dmu_sync_ready(zio_t *zio, arc_buf_t *buf, void *varg)
1288e14bb325SJeff Bonwick {
1289b24ab676SJeff Bonwick 	dmu_sync_arg_t *dsa = varg;
1290b24ab676SJeff Bonwick 	dmu_buf_t *db = dsa->dsa_zgd->zgd_db;
1291e14bb325SJeff Bonwick 	blkptr_t *bp = zio->io_bp;
1292975c32a0SNeil Perrin 
1293b24ab676SJeff Bonwick 	if (zio->io_error == 0) {
1294b24ab676SJeff Bonwick 		if (BP_IS_HOLE(bp)) {
1295b24ab676SJeff Bonwick 			/*
1296b24ab676SJeff Bonwick 			 * A block of zeros may compress to a hole, but the
1297b24ab676SJeff Bonwick 			 * block size still needs to be known for replay.
1298b24ab676SJeff Bonwick 			 */
1299b24ab676SJeff Bonwick 			BP_SET_LSIZE(bp, db->db_size);
1300*5d7b4d43SMatthew Ahrens 		} else if (!BP_IS_EMBEDDED(bp)) {
1301e14bb325SJeff Bonwick 			ASSERT(BP_GET_LEVEL(bp) == 0);
1302e14bb325SJeff Bonwick 			bp->blk_fill = 1;
1303e14bb325SJeff Bonwick 		}
1304e14bb325SJeff Bonwick 	}
1305b24ab676SJeff Bonwick }
1306b24ab676SJeff Bonwick 
1307b24ab676SJeff Bonwick static void
1308b24ab676SJeff Bonwick dmu_sync_late_arrival_ready(zio_t *zio)
1309b24ab676SJeff Bonwick {
1310b24ab676SJeff Bonwick 	dmu_sync_ready(zio, NULL, zio->io_private);
1311b24ab676SJeff Bonwick }
1312e14bb325SJeff Bonwick 
1313e14bb325SJeff Bonwick /* ARGSUSED */
1314e14bb325SJeff Bonwick static void
1315c5c6ffa0Smaybee dmu_sync_done(zio_t *zio, arc_buf_t *buf, void *varg)
1316c5c6ffa0Smaybee {
1317b24ab676SJeff Bonwick 	dmu_sync_arg_t *dsa = varg;
1318b24ab676SJeff Bonwick 	dbuf_dirty_record_t *dr = dsa->dsa_dr;
1319c717a561Smaybee 	dmu_buf_impl_t *db = dr->dr_dbuf;
1320c5c6ffa0Smaybee 
1321b50a0fe0SNeil Perrin 	mutex_enter(&db->db_mtx);
1322b50a0fe0SNeil Perrin 	ASSERT(dr->dt.dl.dr_override_state == DR_IN_DMU_SYNC);
1323b24ab676SJeff Bonwick 	if (zio->io_error == 0) {
132480901aeaSGeorge Wilson 		dr->dt.dl.dr_nopwrite = !!(zio->io_flags & ZIO_FLAG_NOPWRITE);
132580901aeaSGeorge Wilson 		if (dr->dt.dl.dr_nopwrite) {
132680901aeaSGeorge Wilson 			blkptr_t *bp = zio->io_bp;
132780901aeaSGeorge Wilson 			blkptr_t *bp_orig = &zio->io_bp_orig;
132880901aeaSGeorge Wilson 			uint8_t chksum = BP_GET_CHECKSUM(bp_orig);
132980901aeaSGeorge Wilson 
133080901aeaSGeorge Wilson 			ASSERT(BP_EQUAL(bp, bp_orig));
133180901aeaSGeorge Wilson 			ASSERT(zio->io_prop.zp_compress != ZIO_COMPRESS_OFF);
133280901aeaSGeorge Wilson 			ASSERT(zio_checksum_table[chksum].ci_dedup);
133380901aeaSGeorge Wilson 		}
1334b24ab676SJeff Bonwick 		dr->dt.dl.dr_overridden_by = *zio->io_bp;
1335b24ab676SJeff Bonwick 		dr->dt.dl.dr_override_state = DR_OVERRIDDEN;
1336b24ab676SJeff Bonwick 		dr->dt.dl.dr_copies = zio->io_prop.zp_copies;
1337b50a0fe0SNeil Perrin 		if (BP_IS_HOLE(&dr->dt.dl.dr_overridden_by))
1338b50a0fe0SNeil Perrin 			BP_ZERO(&dr->dt.dl.dr_overridden_by);
1339b24ab676SJeff Bonwick 	} else {
1340b24ab676SJeff Bonwick 		dr->dt.dl.dr_override_state = DR_NOT_OVERRIDDEN;
1341b24ab676SJeff Bonwick 	}
1342c5c6ffa0Smaybee 	cv_broadcast(&db->db_changed);
1343b50a0fe0SNeil Perrin 	mutex_exit(&db->db_mtx);
1344b50a0fe0SNeil Perrin 
1345b24ab676SJeff Bonwick 	dsa->dsa_done(dsa->dsa_zgd, zio->io_error);
1346c717a561Smaybee 
1347b24ab676SJeff Bonwick 	kmem_free(dsa, sizeof (*dsa));
1348b24ab676SJeff Bonwick }
1349b24ab676SJeff Bonwick 
1350b24ab676SJeff Bonwick static void
1351b24ab676SJeff Bonwick dmu_sync_late_arrival_done(zio_t *zio)
1352b24ab676SJeff Bonwick {
1353b24ab676SJeff Bonwick 	blkptr_t *bp = zio->io_bp;
1354b24ab676SJeff Bonwick 	dmu_sync_arg_t *dsa = zio->io_private;
135580901aeaSGeorge Wilson 	blkptr_t *bp_orig = &zio->io_bp_orig;
1356b24ab676SJeff Bonwick 
1357b24ab676SJeff Bonwick 	if (zio->io_error == 0 && !BP_IS_HOLE(bp)) {
135880901aeaSGeorge Wilson 		/*
135980901aeaSGeorge Wilson 		 * If we didn't allocate a new block (i.e. ZIO_FLAG_NOPWRITE)
136080901aeaSGeorge Wilson 		 * then there is nothing to do here. Otherwise, free the
136180901aeaSGeorge Wilson 		 * newly allocated block in this txg.
136280901aeaSGeorge Wilson 		 */
136380901aeaSGeorge Wilson 		if (zio->io_flags & ZIO_FLAG_NOPWRITE) {
136480901aeaSGeorge Wilson 			ASSERT(BP_EQUAL(bp, bp_orig));
136580901aeaSGeorge Wilson 		} else {
136680901aeaSGeorge Wilson 			ASSERT(BP_IS_HOLE(bp_orig) || !BP_EQUAL(bp, bp_orig));
1367b24ab676SJeff Bonwick 			ASSERT(zio->io_bp->blk_birth == zio->io_txg);
1368b24ab676SJeff Bonwick 			ASSERT(zio->io_txg > spa_syncing_txg(zio->io_spa));
1369b24ab676SJeff Bonwick 			zio_free(zio->io_spa, zio->io_txg, zio->io_bp);
1370b24ab676SJeff Bonwick 		}
137180901aeaSGeorge Wilson 	}
1372b24ab676SJeff Bonwick 
1373b24ab676SJeff Bonwick 	dmu_tx_commit(dsa->dsa_tx);
1374b24ab676SJeff Bonwick 
1375b24ab676SJeff Bonwick 	dsa->dsa_done(dsa->dsa_zgd, zio->io_error);
1376b24ab676SJeff Bonwick 
1377b24ab676SJeff Bonwick 	kmem_free(dsa, sizeof (*dsa));
1378b24ab676SJeff Bonwick }
1379b24ab676SJeff Bonwick 
1380b24ab676SJeff Bonwick static int
1381b24ab676SJeff Bonwick dmu_sync_late_arrival(zio_t *pio, objset_t *os, dmu_sync_cb_t *done, zgd_t *zgd,
1382b24ab676SJeff Bonwick     zio_prop_t *zp, zbookmark_t *zb)
1383b24ab676SJeff Bonwick {
1384b24ab676SJeff Bonwick 	dmu_sync_arg_t *dsa;
1385b24ab676SJeff Bonwick 	dmu_tx_t *tx;
1386b24ab676SJeff Bonwick 
1387b24ab676SJeff Bonwick 	tx = dmu_tx_create(os);
1388b24ab676SJeff Bonwick 	dmu_tx_hold_space(tx, zgd->zgd_db->db_size);
13896e1f5caaSNeil Perrin 	if (dmu_tx_assign(tx, TXG_WAIT) != 0) {
1390b24ab676SJeff Bonwick 		dmu_tx_abort(tx);
1391be6fd75aSMatthew Ahrens 		/* Make zl_get_data do txg_waited_synced() */
1392be6fd75aSMatthew Ahrens 		return (SET_ERROR(EIO));
1393b24ab676SJeff Bonwick 	}
1394b24ab676SJeff Bonwick 
1395b24ab676SJeff Bonwick 	dsa = kmem_alloc(sizeof (dmu_sync_arg_t), KM_SLEEP);
1396b24ab676SJeff Bonwick 	dsa->dsa_dr = NULL;
1397b24ab676SJeff Bonwick 	dsa->dsa_done = done;
1398b24ab676SJeff Bonwick 	dsa->dsa_zgd = zgd;
1399b24ab676SJeff Bonwick 	dsa->dsa_tx = tx;
1400b24ab676SJeff Bonwick 
1401b24ab676SJeff Bonwick 	zio_nowait(zio_write(pio, os->os_spa, dmu_tx_get_txg(tx), zgd->zgd_bp,
1402b24ab676SJeff Bonwick 	    zgd->zgd_db->db_data, zgd->zgd_db->db_size, zp,
140369962b56SMatthew Ahrens 	    dmu_sync_late_arrival_ready, NULL, dmu_sync_late_arrival_done, dsa,
1404b24ab676SJeff Bonwick 	    ZIO_PRIORITY_SYNC_WRITE, ZIO_FLAG_CANFAIL, zb));
1405b24ab676SJeff Bonwick 
1406b24ab676SJeff Bonwick 	return (0);
1407c5c6ffa0Smaybee }
1408c5c6ffa0Smaybee 
1409fa9e4066Sahrens /*
1410c5c6ffa0Smaybee  * Intent log support: sync the block associated with db to disk.
1411c5c6ffa0Smaybee  * N.B. and XXX: the caller is responsible for making sure that the
1412c5c6ffa0Smaybee  * data isn't changing while dmu_sync() is writing it.
1413fa9e4066Sahrens  *
1414fa9e4066Sahrens  * Return values:
1415fa9e4066Sahrens  *
141680901aeaSGeorge Wilson  *	EEXIST: this txg has already been synced, so there's nothing to do.
1417fa9e4066Sahrens  *		The caller should not log the write.
1418fa9e4066Sahrens  *
1419fa9e4066Sahrens  *	ENOENT: the block was dbuf_free_range()'d, so there's nothing to do.
1420fa9e4066Sahrens  *		The caller should not log the write.
1421fa9e4066Sahrens  *
1422c5c6ffa0Smaybee  *	EALREADY: this block is already in the process of being synced.
1423c5c6ffa0Smaybee  *		The caller should track its progress (somehow).
1424fa9e4066Sahrens  *
1425b24ab676SJeff Bonwick  *	EIO: could not do the I/O.
1426b24ab676SJeff Bonwick  *		The caller should do a txg_wait_synced().
1427fa9e4066Sahrens  *
1428b24ab676SJeff Bonwick  *	0: the I/O has been initiated.
1429b24ab676SJeff Bonwick  *		The caller should log this blkptr in the done callback.
1430b24ab676SJeff Bonwick  *		It is possible that the I/O will fail, in which case
1431b24ab676SJeff Bonwick  *		the error will be reported to the done callback and
1432b24ab676SJeff Bonwick  *		propagated to pio from zio_done().
1433fa9e4066Sahrens  */
1434fa9e4066Sahrens int
1435b24ab676SJeff Bonwick dmu_sync(zio_t *pio, uint64_t txg, dmu_sync_cb_t *done, zgd_t *zgd)
1436fa9e4066Sahrens {
1437b24ab676SJeff Bonwick 	blkptr_t *bp = zgd->zgd_bp;
1438b24ab676SJeff Bonwick 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)zgd->zgd_db;
1439503ad85cSMatthew Ahrens 	objset_t *os = db->db_objset;
1440b24ab676SJeff Bonwick 	dsl_dataset_t *ds = os->os_dsl_dataset;
1441c717a561Smaybee 	dbuf_dirty_record_t *dr;
1442b24ab676SJeff Bonwick 	dmu_sync_arg_t *dsa;
1443ea8dc4b6Seschrock 	zbookmark_t zb;
1444b24ab676SJeff Bonwick 	zio_prop_t zp;
1445744947dcSTom Erickson 	dnode_t *dn;
1446fa9e4066Sahrens 
1447b24ab676SJeff Bonwick 	ASSERT(pio != NULL);
1448fa9e4066Sahrens 	ASSERT(txg != 0);
1449fa9e4066Sahrens 
1450b24ab676SJeff Bonwick 	SET_BOOKMARK(&zb, ds->ds_object,
1451b24ab676SJeff Bonwick 	    db->db.db_object, db->db_level, db->db_blkid);
1452b24ab676SJeff Bonwick 
1453744947dcSTom Erickson 	DB_DNODE_ENTER(db);
1454744947dcSTom Erickson 	dn = DB_DNODE(db);
1455744947dcSTom Erickson 	dmu_write_policy(os, dn, db->db_level, WP_DMU_SYNC, &zp);
1456744947dcSTom Erickson 	DB_DNODE_EXIT(db);
1457fa9e4066Sahrens 
1458fa9e4066Sahrens 	/*
1459b24ab676SJeff Bonwick 	 * If we're frozen (running ziltest), we always need to generate a bp.
1460ea8dc4b6Seschrock 	 */
1461b24ab676SJeff Bonwick 	if (txg > spa_freeze_txg(os->os_spa))
1462b24ab676SJeff Bonwick 		return (dmu_sync_late_arrival(pio, os, done, zgd, &zp, &zb));
1463ea8dc4b6Seschrock 
1464ea8dc4b6Seschrock 	/*
1465b24ab676SJeff Bonwick 	 * Grabbing db_mtx now provides a barrier between dbuf_sync_leaf()
1466b24ab676SJeff Bonwick 	 * and us.  If we determine that this txg is not yet syncing,
1467b24ab676SJeff Bonwick 	 * but it begins to sync a moment later, that's OK because the
1468b24ab676SJeff Bonwick 	 * sync thread will block in dbuf_sync_leaf() until we drop db_mtx.
1469fa9e4066Sahrens 	 */
1470b24ab676SJeff Bonwick 	mutex_enter(&db->db_mtx);
1471b24ab676SJeff Bonwick 
1472b24ab676SJeff Bonwick 	if (txg <= spa_last_synced_txg(os->os_spa)) {
1473fa9e4066Sahrens 		/*
1474b24ab676SJeff Bonwick 		 * This txg has already synced.  There's nothing to do.
1475fa9e4066Sahrens 		 */
1476b24ab676SJeff Bonwick 		mutex_exit(&db->db_mtx);
1477be6fd75aSMatthew Ahrens 		return (SET_ERROR(EEXIST));
1478fa9e4066Sahrens 	}
1479fa9e4066Sahrens 
1480b24ab676SJeff Bonwick 	if (txg <= spa_syncing_txg(os->os_spa)) {
1481c5c6ffa0Smaybee 		/*
1482b24ab676SJeff Bonwick 		 * This txg is currently syncing, so we can't mess with
1483b24ab676SJeff Bonwick 		 * the dirty record anymore; just write a new log block.
1484c5c6ffa0Smaybee 		 */
148513506d1eSmaybee 		mutex_exit(&db->db_mtx);
1486b24ab676SJeff Bonwick 		return (dmu_sync_late_arrival(pio, os, done, zgd, &zp, &zb));
1487c5c6ffa0Smaybee 	}
1488c5c6ffa0Smaybee 
1489c717a561Smaybee 	dr = db->db_last_dirty;
1490b24ab676SJeff Bonwick 	while (dr && dr->dr_txg != txg)
1491c717a561Smaybee 		dr = dr->dr_next;
1492b24ab676SJeff Bonwick 
1493b24ab676SJeff Bonwick 	if (dr == NULL) {
1494c5c6ffa0Smaybee 		/*
1495b24ab676SJeff Bonwick 		 * There's no dr for this dbuf, so it must have been freed.
1496fa9e4066Sahrens 		 * There's no need to log writes to freed blocks, so we're done.
1497fa9e4066Sahrens 		 */
1498fa9e4066Sahrens 		mutex_exit(&db->db_mtx);
1499be6fd75aSMatthew Ahrens 		return (SET_ERROR(ENOENT));
1500fa9e4066Sahrens 	}
1501fa9e4066Sahrens 
150280901aeaSGeorge Wilson 	ASSERT(dr->dr_next == NULL || dr->dr_next->dr_txg < txg);
150380901aeaSGeorge Wilson 
150480901aeaSGeorge Wilson 	/*
150580901aeaSGeorge Wilson 	 * Assume the on-disk data is X, the current syncing data is Y,
150680901aeaSGeorge Wilson 	 * and the current in-memory data is Z (currently in dmu_sync).
150780901aeaSGeorge Wilson 	 * X and Z are identical but Y is has been modified. Normally,
150880901aeaSGeorge Wilson 	 * when X and Z are the same we will perform a nopwrite but if Y
150980901aeaSGeorge Wilson 	 * is different we must disable nopwrite since the resulting write
151080901aeaSGeorge Wilson 	 * of Y to disk can free the block containing X. If we allowed a
151180901aeaSGeorge Wilson 	 * nopwrite to occur the block pointing to Z would reference a freed
151280901aeaSGeorge Wilson 	 * block. Since this is a rare case we simplify this by disabling
151380901aeaSGeorge Wilson 	 * nopwrite if the current dmu_sync-ing dbuf has been modified in
151480901aeaSGeorge Wilson 	 * a previous transaction.
151580901aeaSGeorge Wilson 	 */
151680901aeaSGeorge Wilson 	if (dr->dr_next)
151780901aeaSGeorge Wilson 		zp.zp_nopwrite = B_FALSE;
151880901aeaSGeorge Wilson 
1519c717a561Smaybee 	ASSERT(dr->dr_txg == txg);
1520b24ab676SJeff Bonwick 	if (dr->dt.dl.dr_override_state == DR_IN_DMU_SYNC ||
1521b24ab676SJeff Bonwick 	    dr->dt.dl.dr_override_state == DR_OVERRIDDEN) {
1522c5c6ffa0Smaybee 		/*
1523b24ab676SJeff Bonwick 		 * We have already issued a sync write for this buffer,
1524b24ab676SJeff Bonwick 		 * or this buffer has already been synced.  It could not
1525c717a561Smaybee 		 * have been dirtied since, or we would have cleared the state.
1526c717a561Smaybee 		 */
1527c717a561Smaybee 		mutex_exit(&db->db_mtx);
1528be6fd75aSMatthew Ahrens 		return (SET_ERROR(EALREADY));
1529c717a561Smaybee 	}
1530c717a561Smaybee 
1531b24ab676SJeff Bonwick 	ASSERT(dr->dt.dl.dr_override_state == DR_NOT_OVERRIDDEN);
1532c717a561Smaybee 	dr->dt.dl.dr_override_state = DR_IN_DMU_SYNC;
1533fa9e4066Sahrens 	mutex_exit(&db->db_mtx);
1534fa9e4066Sahrens 
1535b24ab676SJeff Bonwick 	dsa = kmem_alloc(sizeof (dmu_sync_arg_t), KM_SLEEP);
1536b24ab676SJeff Bonwick 	dsa->dsa_dr = dr;
1537b24ab676SJeff Bonwick 	dsa->dsa_done = done;
1538b24ab676SJeff Bonwick 	dsa->dsa_zgd = zgd;
1539b24ab676SJeff Bonwick 	dsa->dsa_tx = NULL;
1540e14bb325SJeff Bonwick 
1541b24ab676SJeff Bonwick 	zio_nowait(arc_write(pio, os->os_spa, txg,
1542aad02571SSaso Kiselkov 	    bp, dr->dt.dl.dr_data, DBUF_IS_L2CACHEABLE(db),
154369962b56SMatthew Ahrens 	    DBUF_IS_L2COMPRESSIBLE(db), &zp, dmu_sync_ready,
154469962b56SMatthew Ahrens 	    NULL, dmu_sync_done, dsa, ZIO_PRIORITY_SYNC_WRITE,
154569962b56SMatthew Ahrens 	    ZIO_FLAG_CANFAIL, &zb));
1546e14bb325SJeff Bonwick 
1547b24ab676SJeff Bonwick 	return (0);
1548fa9e4066Sahrens }
1549fa9e4066Sahrens 
1550fa9e4066Sahrens int
1551fa9e4066Sahrens dmu_object_set_blocksize(objset_t *os, uint64_t object, uint64_t size, int ibs,
1552fa9e4066Sahrens 	dmu_tx_t *tx)
1553fa9e4066Sahrens {
1554ea8dc4b6Seschrock 	dnode_t *dn;
1555ea8dc4b6Seschrock 	int err;
1556ea8dc4b6Seschrock 
1557503ad85cSMatthew Ahrens 	err = dnode_hold(os, object, FTAG, &dn);
1558ea8dc4b6Seschrock 	if (err)
1559ea8dc4b6Seschrock 		return (err);
1560ea8dc4b6Seschrock 	err = dnode_set_blksz(dn, size, ibs, tx);
1561fa9e4066Sahrens 	dnode_rele(dn, FTAG);
1562fa9e4066Sahrens 	return (err);
1563fa9e4066Sahrens }
1564fa9e4066Sahrens 
1565fa9e4066Sahrens void
1566fa9e4066Sahrens dmu_object_set_checksum(objset_t *os, uint64_t object, uint8_t checksum,
1567fa9e4066Sahrens 	dmu_tx_t *tx)
1568fa9e4066Sahrens {
1569ea8dc4b6Seschrock 	dnode_t *dn;
1570ea8dc4b6Seschrock 
1571*5d7b4d43SMatthew Ahrens 	/*
1572*5d7b4d43SMatthew Ahrens 	 * Send streams include each object's checksum function.  This
1573*5d7b4d43SMatthew Ahrens 	 * check ensures that the receiving system can understand the
1574*5d7b4d43SMatthew Ahrens 	 * checksum function transmitted.
1575*5d7b4d43SMatthew Ahrens 	 */
1576*5d7b4d43SMatthew Ahrens 	ASSERT3U(checksum, <, ZIO_CHECKSUM_LEGACY_FUNCTIONS);
1577*5d7b4d43SMatthew Ahrens 
1578*5d7b4d43SMatthew Ahrens 	VERIFY0(dnode_hold(os, object, FTAG, &dn));
1579*5d7b4d43SMatthew Ahrens 	ASSERT3U(checksum, <, ZIO_CHECKSUM_FUNCTIONS);
1580fa9e4066Sahrens 	dn->dn_checksum = checksum;
1581fa9e4066Sahrens 	dnode_setdirty(dn, tx);
1582fa9e4066Sahrens 	dnode_rele(dn, FTAG);
1583fa9e4066Sahrens }
1584fa9e4066Sahrens 
1585fa9e4066Sahrens void
1586fa9e4066Sahrens dmu_object_set_compress(objset_t *os, uint64_t object, uint8_t compress,
1587fa9e4066Sahrens 	dmu_tx_t *tx)
1588fa9e4066Sahrens {
1589ea8dc4b6Seschrock 	dnode_t *dn;
1590ea8dc4b6Seschrock 
1591*5d7b4d43SMatthew Ahrens 	/*
1592*5d7b4d43SMatthew Ahrens 	 * Send streams include each object's compression function.  This
1593*5d7b4d43SMatthew Ahrens 	 * check ensures that the receiving system can understand the
1594*5d7b4d43SMatthew Ahrens 	 * compression function transmitted.
1595*5d7b4d43SMatthew Ahrens 	 */
1596*5d7b4d43SMatthew Ahrens 	ASSERT3U(compress, <, ZIO_COMPRESS_LEGACY_FUNCTIONS);
1597*5d7b4d43SMatthew Ahrens 
1598*5d7b4d43SMatthew Ahrens 	VERIFY0(dnode_hold(os, object, FTAG, &dn));
1599fa9e4066Sahrens 	dn->dn_compress = compress;
1600fa9e4066Sahrens 	dnode_setdirty(dn, tx);
1601fa9e4066Sahrens 	dnode_rele(dn, FTAG);
1602fa9e4066Sahrens }
1603fa9e4066Sahrens 
1604b24ab676SJeff Bonwick int zfs_mdcomp_disable = 0;
1605b24ab676SJeff Bonwick 
1606edf345e6SMatthew Ahrens /*
1607edf345e6SMatthew Ahrens  * When the "redundant_metadata" property is set to "most", only indirect
1608edf345e6SMatthew Ahrens  * blocks of this level and higher will have an additional ditto block.
1609edf345e6SMatthew Ahrens  */
1610edf345e6SMatthew Ahrens int zfs_redundant_metadata_most_ditto_level = 2;
1611edf345e6SMatthew Ahrens 
1612b24ab676SJeff Bonwick void
1613b24ab676SJeff Bonwick dmu_write_policy(objset_t *os, dnode_t *dn, int level, int wp, zio_prop_t *zp)
1614b24ab676SJeff Bonwick {
1615b24ab676SJeff Bonwick 	dmu_object_type_t type = dn ? dn->dn_type : DMU_OT_OBJSET;
1616ad135b5dSChristopher Siden 	boolean_t ismd = (level > 0 || DMU_OT_IS_METADATA(type) ||
16171d8ccc7bSMark Shellenbaum 	    (wp & WP_SPILL));
1618b24ab676SJeff Bonwick 	enum zio_checksum checksum = os->os_checksum;
1619b24ab676SJeff Bonwick 	enum zio_compress compress = os->os_compress;
1620b24ab676SJeff Bonwick 	enum zio_checksum dedup_checksum = os->os_dedup_checksum;
16217540df39SGeorge Wilson 	boolean_t dedup = B_FALSE;
16227540df39SGeorge Wilson 	boolean_t nopwrite = B_FALSE;
1623b24ab676SJeff Bonwick 	boolean_t dedup_verify = os->os_dedup_verify;
1624b24ab676SJeff Bonwick 	int copies = os->os_copies;
1625b24ab676SJeff Bonwick 
1626b24ab676SJeff Bonwick 	/*
162780901aeaSGeorge Wilson 	 * We maintain different write policies for each of the following
162880901aeaSGeorge Wilson 	 * types of data:
162980901aeaSGeorge Wilson 	 *	 1. metadata
163080901aeaSGeorge Wilson 	 *	 2. preallocated blocks (i.e. level-0 blocks of a dump device)
163180901aeaSGeorge Wilson 	 *	 3. all other level 0 blocks
1632b24ab676SJeff Bonwick 	 */
1633b24ab676SJeff Bonwick 	if (ismd) {
1634b24ab676SJeff Bonwick 		/*
163580901aeaSGeorge Wilson 		 * XXX -- we should design a compression algorithm
163680901aeaSGeorge Wilson 		 * that specializes in arrays of bps.
163780901aeaSGeorge Wilson 		 */
163880901aeaSGeorge Wilson 		compress = zfs_mdcomp_disable ? ZIO_COMPRESS_EMPTY :
163980901aeaSGeorge Wilson 		    ZIO_COMPRESS_LZJB;
164080901aeaSGeorge Wilson 
164180901aeaSGeorge Wilson 		/*
1642b24ab676SJeff Bonwick 		 * Metadata always gets checksummed.  If the data
1643b24ab676SJeff Bonwick 		 * checksum is multi-bit correctable, and it's not a
1644b24ab676SJeff Bonwick 		 * ZBT-style checksum, then it's suitable for metadata
1645b24ab676SJeff Bonwick 		 * as well.  Otherwise, the metadata checksum defaults
1646b24ab676SJeff Bonwick 		 * to fletcher4.
1647b24ab676SJeff Bonwick 		 */
1648b24ab676SJeff Bonwick 		if (zio_checksum_table[checksum].ci_correctable < 1 ||
16496e1f5caaSNeil Perrin 		    zio_checksum_table[checksum].ci_eck)
1650b24ab676SJeff Bonwick 			checksum = ZIO_CHECKSUM_FLETCHER_4;
1651edf345e6SMatthew Ahrens 
1652edf345e6SMatthew Ahrens 		if (os->os_redundant_metadata == ZFS_REDUNDANT_METADATA_ALL ||
1653edf345e6SMatthew Ahrens 		    (os->os_redundant_metadata ==
1654edf345e6SMatthew Ahrens 		    ZFS_REDUNDANT_METADATA_MOST &&
1655edf345e6SMatthew Ahrens 		    (level >= zfs_redundant_metadata_most_ditto_level ||
1656edf345e6SMatthew Ahrens 		    DMU_OT_IS_METADATA(type) || (wp & WP_SPILL))))
1657edf345e6SMatthew Ahrens 			copies++;
165880901aeaSGeorge Wilson 	} else if (wp & WP_NOFILL) {
165980901aeaSGeorge Wilson 		ASSERT(level == 0);
1660b24ab676SJeff Bonwick 
1661b24ab676SJeff Bonwick 		/*
166280901aeaSGeorge Wilson 		 * If we're writing preallocated blocks, we aren't actually
166380901aeaSGeorge Wilson 		 * writing them so don't set any policy properties.  These
166480901aeaSGeorge Wilson 		 * blocks are currently only used by an external subsystem
166580901aeaSGeorge Wilson 		 * outside of zfs (i.e. dump) and not written by the zio
166680901aeaSGeorge Wilson 		 * pipeline.
1667b24ab676SJeff Bonwick 		 */
166880901aeaSGeorge Wilson 		compress = ZIO_COMPRESS_OFF;
1669810e43b2SBill Pijewski 		checksum = ZIO_CHECKSUM_NOPARITY;
1670b24ab676SJeff Bonwick 	} else {
1671b24ab676SJeff Bonwick 		compress = zio_compress_select(dn->dn_compress, compress);
167280901aeaSGeorge Wilson 
167380901aeaSGeorge Wilson 		checksum = (dedup_checksum == ZIO_CHECKSUM_OFF) ?
167480901aeaSGeorge Wilson 		    zio_checksum_select(dn->dn_checksum, checksum) :
167580901aeaSGeorge Wilson 		    dedup_checksum;
167680901aeaSGeorge Wilson 
167780901aeaSGeorge Wilson 		/*
167880901aeaSGeorge Wilson 		 * Determine dedup setting.  If we are in dmu_sync(),
167980901aeaSGeorge Wilson 		 * we won't actually dedup now because that's all
168080901aeaSGeorge Wilson 		 * done in syncing context; but we do want to use the
168180901aeaSGeorge Wilson 		 * dedup checkum.  If the checksum is not strong
168280901aeaSGeorge Wilson 		 * enough to ensure unique signatures, force
168380901aeaSGeorge Wilson 		 * dedup_verify.
168480901aeaSGeorge Wilson 		 */
168580901aeaSGeorge Wilson 		if (dedup_checksum != ZIO_CHECKSUM_OFF) {
168680901aeaSGeorge Wilson 			dedup = (wp & WP_DMU_SYNC) ? B_FALSE : B_TRUE;
168780901aeaSGeorge Wilson 			if (!zio_checksum_table[checksum].ci_dedup)
168880901aeaSGeorge Wilson 				dedup_verify = B_TRUE;
1689b24ab676SJeff Bonwick 		}
1690b24ab676SJeff Bonwick 
1691b24ab676SJeff Bonwick 		/*
169280901aeaSGeorge Wilson 		 * Enable nopwrite if we have a cryptographically secure
169380901aeaSGeorge Wilson 		 * checksum that has no known collisions (i.e. SHA-256)
169480901aeaSGeorge Wilson 		 * and compression is enabled.  We don't enable nopwrite if
169580901aeaSGeorge Wilson 		 * dedup is enabled as the two features are mutually exclusive.
1696b24ab676SJeff Bonwick 		 */
169780901aeaSGeorge Wilson 		nopwrite = (!dedup && zio_checksum_table[checksum].ci_dedup &&
169880901aeaSGeorge Wilson 		    compress != ZIO_COMPRESS_OFF && zfs_nopwrite_enabled);
1699b24ab676SJeff Bonwick 	}
1700b24ab676SJeff Bonwick 
1701b24ab676SJeff Bonwick 	zp->zp_checksum = checksum;
1702b24ab676SJeff Bonwick 	zp->zp_compress = compress;
17030a586ceaSMark Shellenbaum 	zp->zp_type = (wp & WP_SPILL) ? dn->dn_bonustype : type;
1704b24ab676SJeff Bonwick 	zp->zp_level = level;
1705edf345e6SMatthew Ahrens 	zp->zp_copies = MIN(copies, spa_max_replication(os->os_spa));
1706b24ab676SJeff Bonwick 	zp->zp_dedup = dedup;
1707b24ab676SJeff Bonwick 	zp->zp_dedup_verify = dedup && dedup_verify;
170880901aeaSGeorge Wilson 	zp->zp_nopwrite = nopwrite;
1709b24ab676SJeff Bonwick }
1710b24ab676SJeff Bonwick 
171144cd46caSbillm int
1712fa9e4066Sahrens dmu_offset_next(objset_t *os, uint64_t object, boolean_t hole, uint64_t *off)
1713fa9e4066Sahrens {
1714fa9e4066Sahrens 	dnode_t *dn;
1715fa9e4066Sahrens 	int i, err;
1716fa9e4066Sahrens 
1717503ad85cSMatthew Ahrens 	err = dnode_hold(os, object, FTAG, &dn);
1718ea8dc4b6Seschrock 	if (err)
1719ea8dc4b6Seschrock 		return (err);
1720fa9e4066Sahrens 	/*
1721fa9e4066Sahrens 	 * Sync any current changes before
1722fa9e4066Sahrens 	 * we go trundling through the block pointers.
1723fa9e4066Sahrens 	 */
1724fa9e4066Sahrens 	for (i = 0; i < TXG_SIZE; i++) {
1725c543ec06Sahrens 		if (list_link_active(&dn->dn_dirty_link[i]))
1726fa9e4066Sahrens 			break;
1727fa9e4066Sahrens 	}
1728fa9e4066Sahrens 	if (i != TXG_SIZE) {
1729fa9e4066Sahrens 		dnode_rele(dn, FTAG);
1730fa9e4066Sahrens 		txg_wait_synced(dmu_objset_pool(os), 0);
1731503ad85cSMatthew Ahrens 		err = dnode_hold(os, object, FTAG, &dn);
1732ea8dc4b6Seschrock 		if (err)
1733ea8dc4b6Seschrock 			return (err);
1734fa9e4066Sahrens 	}
1735fa9e4066Sahrens 
1736cdb0ab79Smaybee 	err = dnode_next_offset(dn, (hole ? DNODE_FIND_HOLE : 0), off, 1, 1, 0);
1737fa9e4066Sahrens 	dnode_rele(dn, FTAG);
1738fa9e4066Sahrens 
1739fa9e4066Sahrens 	return (err);
1740fa9e4066Sahrens }
1741fa9e4066Sahrens 
1742fa9e4066Sahrens void
1743fa9e4066Sahrens dmu_object_info_from_dnode(dnode_t *dn, dmu_object_info_t *doi)
1744fa9e4066Sahrens {
1745b24ab676SJeff Bonwick 	dnode_phys_t *dnp;
1746b24ab676SJeff Bonwick 
1747fa9e4066Sahrens 	rw_enter(&dn->dn_struct_rwlock, RW_READER);
1748fa9e4066Sahrens 	mutex_enter(&dn->dn_mtx);
1749fa9e4066Sahrens 
1750b24ab676SJeff Bonwick 	dnp = dn->dn_phys;
1751b24ab676SJeff Bonwick 
1752fa9e4066Sahrens 	doi->doi_data_block_size = dn->dn_datablksz;
1753fa9e4066Sahrens 	doi->doi_metadata_block_size = dn->dn_indblkshift ?
1754fa9e4066Sahrens 	    1ULL << dn->dn_indblkshift : 0;
1755b24ab676SJeff Bonwick 	doi->doi_type = dn->dn_type;
1756b24ab676SJeff Bonwick 	doi->doi_bonus_type = dn->dn_bonustype;
1757b24ab676SJeff Bonwick 	doi->doi_bonus_size = dn->dn_bonuslen;
1758fa9e4066Sahrens 	doi->doi_indirection = dn->dn_nlevels;
1759fa9e4066Sahrens 	doi->doi_checksum = dn->dn_checksum;
1760fa9e4066Sahrens 	doi->doi_compress = dn->dn_compress;
1761b24ab676SJeff Bonwick 	doi->doi_physical_blocks_512 = (DN_USED_BYTES(dnp) + 256) >> 9;
1762d0475637SMatthew Ahrens 	doi->doi_max_offset = (dn->dn_maxblkid + 1) * dn->dn_datablksz;
1763b24ab676SJeff Bonwick 	doi->doi_fill_count = 0;
1764b24ab676SJeff Bonwick 	for (int i = 0; i < dnp->dn_nblkptr; i++)
1765*5d7b4d43SMatthew Ahrens 		doi->doi_fill_count += BP_GET_FILL(&dnp->dn_blkptr[i]);
1766fa9e4066Sahrens 
1767fa9e4066Sahrens 	mutex_exit(&dn->dn_mtx);
1768fa9e4066Sahrens 	rw_exit(&dn->dn_struct_rwlock);
1769fa9e4066Sahrens }
1770fa9e4066Sahrens 
1771fa9e4066Sahrens /*
1772fa9e4066Sahrens  * Get information on a DMU object.
1773fa9e4066Sahrens  * If doi is NULL, just indicates whether the object exists.
1774fa9e4066Sahrens  */
1775fa9e4066Sahrens int
1776fa9e4066Sahrens dmu_object_info(objset_t *os, uint64_t object, dmu_object_info_t *doi)
1777fa9e4066Sahrens {
1778ea8dc4b6Seschrock 	dnode_t *dn;
1779503ad85cSMatthew Ahrens 	int err = dnode_hold(os, object, FTAG, &dn);
1780fa9e4066Sahrens 
1781ea8dc4b6Seschrock 	if (err)
1782ea8dc4b6Seschrock 		return (err);
1783fa9e4066Sahrens 
1784fa9e4066Sahrens 	if (doi != NULL)
1785fa9e4066Sahrens 		dmu_object_info_from_dnode(dn, doi);
1786fa9e4066Sahrens 
1787fa9e4066Sahrens 	dnode_rele(dn, FTAG);
1788fa9e4066Sahrens 	return (0);
1789fa9e4066Sahrens }
1790fa9e4066Sahrens 
1791fa9e4066Sahrens /*
1792fa9e4066Sahrens  * As above, but faster; can be used when you have a held dbuf in hand.
1793fa9e4066Sahrens  */
1794fa9e4066Sahrens void
1795744947dcSTom Erickson dmu_object_info_from_db(dmu_buf_t *db_fake, dmu_object_info_t *doi)
1796fa9e4066Sahrens {
1797744947dcSTom Erickson 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
1798744947dcSTom Erickson 
1799744947dcSTom Erickson 	DB_DNODE_ENTER(db);
1800744947dcSTom Erickson 	dmu_object_info_from_dnode(DB_DNODE(db), doi);
1801744947dcSTom Erickson 	DB_DNODE_EXIT(db);
1802fa9e4066Sahrens }
1803fa9e4066Sahrens 
1804fa9e4066Sahrens /*
1805fa9e4066Sahrens  * Faster still when you only care about the size.
1806fa9e4066Sahrens  * This is specifically optimized for zfs_getattr().
1807fa9e4066Sahrens  */
1808fa9e4066Sahrens void
1809744947dcSTom Erickson dmu_object_size_from_db(dmu_buf_t *db_fake, uint32_t *blksize,
1810744947dcSTom Erickson     u_longlong_t *nblk512)
1811fa9e4066Sahrens {
1812744947dcSTom Erickson 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
1813744947dcSTom Erickson 	dnode_t *dn;
1814744947dcSTom Erickson 
1815744947dcSTom Erickson 	DB_DNODE_ENTER(db);
1816744947dcSTom Erickson 	dn = DB_DNODE(db);
1817fa9e4066Sahrens 
1818fa9e4066Sahrens 	*blksize = dn->dn_datablksz;
181999653d4eSeschrock 	/* add 1 for dnode space */
182099653d4eSeschrock 	*nblk512 = ((DN_USED_BYTES(dn->dn_phys) + SPA_MINBLOCKSIZE/2) >>
182199653d4eSeschrock 	    SPA_MINBLOCKSHIFT) + 1;
1822744947dcSTom Erickson 	DB_DNODE_EXIT(db);
1823fa9e4066Sahrens }
1824fa9e4066Sahrens 
1825fa9e4066Sahrens void
1826fa9e4066Sahrens byteswap_uint64_array(void *vbuf, size_t size)
1827fa9e4066Sahrens {
1828fa9e4066Sahrens 	uint64_t *buf = vbuf;
1829fa9e4066Sahrens 	size_t count = size >> 3;
1830fa9e4066Sahrens 	int i;
1831fa9e4066Sahrens 
1832fa9e4066Sahrens 	ASSERT((size & 7) == 0);
1833fa9e4066Sahrens 
1834fa9e4066Sahrens 	for (i = 0; i < count; i++)
1835fa9e4066Sahrens 		buf[i] = BSWAP_64(buf[i]);
1836fa9e4066Sahrens }
1837fa9e4066Sahrens 
1838fa9e4066Sahrens void
1839fa9e4066Sahrens byteswap_uint32_array(void *vbuf, size_t size)
1840fa9e4066Sahrens {
1841fa9e4066Sahrens 	uint32_t *buf = vbuf;
1842fa9e4066Sahrens 	size_t count = size >> 2;
1843fa9e4066Sahrens 	int i;
1844fa9e4066Sahrens 
1845fa9e4066Sahrens 	ASSERT((size & 3) == 0);
1846fa9e4066Sahrens 
1847fa9e4066Sahrens 	for (i = 0; i < count; i++)
1848fa9e4066Sahrens 		buf[i] = BSWAP_32(buf[i]);
1849fa9e4066Sahrens }
1850fa9e4066Sahrens 
1851fa9e4066Sahrens void
1852fa9e4066Sahrens byteswap_uint16_array(void *vbuf, size_t size)
1853fa9e4066Sahrens {
1854fa9e4066Sahrens 	uint16_t *buf = vbuf;
1855fa9e4066Sahrens 	size_t count = size >> 1;
1856fa9e4066Sahrens 	int i;
1857fa9e4066Sahrens 
1858fa9e4066Sahrens 	ASSERT((size & 1) == 0);
1859fa9e4066Sahrens 
1860fa9e4066Sahrens 	for (i = 0; i < count; i++)
1861fa9e4066Sahrens 		buf[i] = BSWAP_16(buf[i]);
1862fa9e4066Sahrens }
1863fa9e4066Sahrens 
1864fa9e4066Sahrens /* ARGSUSED */
1865fa9e4066Sahrens void
1866fa9e4066Sahrens byteswap_uint8_array(void *vbuf, size_t size)
1867fa9e4066Sahrens {
1868fa9e4066Sahrens }
1869fa9e4066Sahrens 
1870fa9e4066Sahrens void
1871fa9e4066Sahrens dmu_init(void)
1872fa9e4066Sahrens {
18733f9d6ad7SLin Ling 	zfs_dbgmsg_init();
1874744947dcSTom Erickson 	sa_cache_init();
1875744947dcSTom Erickson 	xuio_stat_init();
1876744947dcSTom Erickson 	dmu_objset_init();
1877fa9e4066Sahrens 	dnode_init();
1878744947dcSTom Erickson 	dbuf_init();
18797cbf8b43SRich Morris 	zfetch_init();
1880fa94a07fSbrendan 	l2arc_init();
1881ce636f8bSMatthew Ahrens 	arc_init();
1882fa9e4066Sahrens }
1883fa9e4066Sahrens 
1884fa9e4066Sahrens void
1885fa9e4066Sahrens dmu_fini(void)
1886fa9e4066Sahrens {
18873e30c24aSWill Andrews 	arc_fini(); /* arc depends on l2arc, so arc must go first */
1888ce636f8bSMatthew Ahrens 	l2arc_fini();
18897cbf8b43SRich Morris 	zfetch_fini();
1890fa9e4066Sahrens 	dbuf_fini();
1891744947dcSTom Erickson 	dnode_fini();
1892744947dcSTom Erickson 	dmu_objset_fini();
1893c242f9a0Schunli zhang - Sun Microsystems - Irvine United States 	xuio_stat_fini();
18940a586ceaSMark Shellenbaum 	sa_cache_fini();
18953f9d6ad7SLin Ling 	zfs_dbgmsg_fini();
1896fa9e4066Sahrens }
1897