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