]> git.proxmox.com Git - mirror_zfs.git/blob - module/zfs/dmu.c
Linux 3.14 compat: rq_for_each_segment in dmu_req_copy
[mirror_zfs.git] / module / zfs / dmu.c
1 /*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21 /*
22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright (c) 2013 by Delphix. All rights reserved.
24 * Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
25 */
26
27 #include <sys/dmu.h>
28 #include <sys/dmu_impl.h>
29 #include <sys/dmu_tx.h>
30 #include <sys/dbuf.h>
31 #include <sys/dnode.h>
32 #include <sys/zfs_context.h>
33 #include <sys/dmu_objset.h>
34 #include <sys/dmu_traverse.h>
35 #include <sys/dsl_dataset.h>
36 #include <sys/dsl_dir.h>
37 #include <sys/dsl_pool.h>
38 #include <sys/dsl_synctask.h>
39 #include <sys/dsl_prop.h>
40 #include <sys/dmu_zfetch.h>
41 #include <sys/zfs_ioctl.h>
42 #include <sys/zap.h>
43 #include <sys/zio_checksum.h>
44 #include <sys/zio_compress.h>
45 #include <sys/sa.h>
46 #ifdef _KERNEL
47 #include <sys/vmsystm.h>
48 #include <sys/zfs_znode.h>
49 #endif
50
51 /*
52 * Enable/disable nopwrite feature.
53 */
54 int zfs_nopwrite_enabled = 1;
55
56 const dmu_object_type_info_t dmu_ot[DMU_OT_NUMTYPES] = {
57 { DMU_BSWAP_UINT8, TRUE, "unallocated" },
58 { DMU_BSWAP_ZAP, TRUE, "object directory" },
59 { DMU_BSWAP_UINT64, TRUE, "object array" },
60 { DMU_BSWAP_UINT8, TRUE, "packed nvlist" },
61 { DMU_BSWAP_UINT64, TRUE, "packed nvlist size" },
62 { DMU_BSWAP_UINT64, TRUE, "bpobj" },
63 { DMU_BSWAP_UINT64, TRUE, "bpobj header" },
64 { DMU_BSWAP_UINT64, TRUE, "SPA space map header" },
65 { DMU_BSWAP_UINT64, TRUE, "SPA space map" },
66 { DMU_BSWAP_UINT64, TRUE, "ZIL intent log" },
67 { DMU_BSWAP_DNODE, TRUE, "DMU dnode" },
68 { DMU_BSWAP_OBJSET, TRUE, "DMU objset" },
69 { DMU_BSWAP_UINT64, TRUE, "DSL directory" },
70 { DMU_BSWAP_ZAP, TRUE, "DSL directory child map"},
71 { DMU_BSWAP_ZAP, TRUE, "DSL dataset snap map" },
72 { DMU_BSWAP_ZAP, TRUE, "DSL props" },
73 { DMU_BSWAP_UINT64, TRUE, "DSL dataset" },
74 { DMU_BSWAP_ZNODE, TRUE, "ZFS znode" },
75 { DMU_BSWAP_OLDACL, TRUE, "ZFS V0 ACL" },
76 { DMU_BSWAP_UINT8, FALSE, "ZFS plain file" },
77 { DMU_BSWAP_ZAP, TRUE, "ZFS directory" },
78 { DMU_BSWAP_ZAP, TRUE, "ZFS master node" },
79 { DMU_BSWAP_ZAP, TRUE, "ZFS delete queue" },
80 { DMU_BSWAP_UINT8, FALSE, "zvol object" },
81 { DMU_BSWAP_ZAP, TRUE, "zvol prop" },
82 { DMU_BSWAP_UINT8, FALSE, "other uint8[]" },
83 { DMU_BSWAP_UINT64, FALSE, "other uint64[]" },
84 { DMU_BSWAP_ZAP, TRUE, "other ZAP" },
85 { DMU_BSWAP_ZAP, TRUE, "persistent error log" },
86 { DMU_BSWAP_UINT8, TRUE, "SPA history" },
87 { DMU_BSWAP_UINT64, TRUE, "SPA history offsets" },
88 { DMU_BSWAP_ZAP, TRUE, "Pool properties" },
89 { DMU_BSWAP_ZAP, TRUE, "DSL permissions" },
90 { DMU_BSWAP_ACL, TRUE, "ZFS ACL" },
91 { DMU_BSWAP_UINT8, TRUE, "ZFS SYSACL" },
92 { DMU_BSWAP_UINT8, TRUE, "FUID table" },
93 { DMU_BSWAP_UINT64, TRUE, "FUID table size" },
94 { DMU_BSWAP_ZAP, TRUE, "DSL dataset next clones"},
95 { DMU_BSWAP_ZAP, TRUE, "scan work queue" },
96 { DMU_BSWAP_ZAP, TRUE, "ZFS user/group used" },
97 { DMU_BSWAP_ZAP, TRUE, "ZFS user/group quota" },
98 { DMU_BSWAP_ZAP, TRUE, "snapshot refcount tags"},
99 { DMU_BSWAP_ZAP, TRUE, "DDT ZAP algorithm" },
100 { DMU_BSWAP_ZAP, TRUE, "DDT statistics" },
101 { DMU_BSWAP_UINT8, TRUE, "System attributes" },
102 { DMU_BSWAP_ZAP, TRUE, "SA master node" },
103 { DMU_BSWAP_ZAP, TRUE, "SA attr registration" },
104 { DMU_BSWAP_ZAP, TRUE, "SA attr layouts" },
105 { DMU_BSWAP_ZAP, TRUE, "scan translations" },
106 { DMU_BSWAP_UINT8, FALSE, "deduplicated block" },
107 { DMU_BSWAP_ZAP, TRUE, "DSL deadlist map" },
108 { DMU_BSWAP_UINT64, TRUE, "DSL deadlist map hdr" },
109 { DMU_BSWAP_ZAP, TRUE, "DSL dir clones" },
110 { DMU_BSWAP_UINT64, TRUE, "bpobj subobj" }
111 };
112
113 const dmu_object_byteswap_info_t dmu_ot_byteswap[DMU_BSWAP_NUMFUNCS] = {
114 { byteswap_uint8_array, "uint8" },
115 { byteswap_uint16_array, "uint16" },
116 { byteswap_uint32_array, "uint32" },
117 { byteswap_uint64_array, "uint64" },
118 { zap_byteswap, "zap" },
119 { dnode_buf_byteswap, "dnode" },
120 { dmu_objset_byteswap, "objset" },
121 { zfs_znode_byteswap, "znode" },
122 { zfs_oldacl_byteswap, "oldacl" },
123 { zfs_acl_byteswap, "acl" }
124 };
125
126 int
127 dmu_buf_hold(objset_t *os, uint64_t object, uint64_t offset,
128 void *tag, dmu_buf_t **dbp, int flags)
129 {
130 dnode_t *dn;
131 uint64_t blkid;
132 dmu_buf_impl_t *db;
133 int err;
134 int db_flags = DB_RF_CANFAIL;
135
136 if (flags & DMU_READ_NO_PREFETCH)
137 db_flags |= DB_RF_NOPREFETCH;
138
139 err = dnode_hold(os, object, FTAG, &dn);
140 if (err)
141 return (err);
142 blkid = dbuf_whichblock(dn, offset);
143 rw_enter(&dn->dn_struct_rwlock, RW_READER);
144 db = dbuf_hold(dn, blkid, tag);
145 rw_exit(&dn->dn_struct_rwlock);
146 if (db == NULL) {
147 err = SET_ERROR(EIO);
148 } else {
149 err = dbuf_read(db, NULL, db_flags);
150 if (err) {
151 dbuf_rele(db, tag);
152 db = NULL;
153 }
154 }
155
156 dnode_rele(dn, FTAG);
157 *dbp = &db->db; /* NULL db plus first field offset is NULL */
158 return (err);
159 }
160
161 int
162 dmu_bonus_max(void)
163 {
164 return (DN_MAX_BONUSLEN);
165 }
166
167 int
168 dmu_set_bonus(dmu_buf_t *db_fake, int newsize, dmu_tx_t *tx)
169 {
170 dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
171 dnode_t *dn;
172 int error;
173
174 DB_DNODE_ENTER(db);
175 dn = DB_DNODE(db);
176
177 if (dn->dn_bonus != db) {
178 error = SET_ERROR(EINVAL);
179 } else if (newsize < 0 || newsize > db_fake->db_size) {
180 error = SET_ERROR(EINVAL);
181 } else {
182 dnode_setbonuslen(dn, newsize, tx);
183 error = 0;
184 }
185
186 DB_DNODE_EXIT(db);
187 return (error);
188 }
189
190 int
191 dmu_set_bonustype(dmu_buf_t *db_fake, dmu_object_type_t type, dmu_tx_t *tx)
192 {
193 dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
194 dnode_t *dn;
195 int error;
196
197 DB_DNODE_ENTER(db);
198 dn = DB_DNODE(db);
199
200 if (!DMU_OT_IS_VALID(type)) {
201 error = SET_ERROR(EINVAL);
202 } else if (dn->dn_bonus != db) {
203 error = SET_ERROR(EINVAL);
204 } else {
205 dnode_setbonus_type(dn, type, tx);
206 error = 0;
207 }
208
209 DB_DNODE_EXIT(db);
210 return (error);
211 }
212
213 dmu_object_type_t
214 dmu_get_bonustype(dmu_buf_t *db_fake)
215 {
216 dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
217 dnode_t *dn;
218 dmu_object_type_t type;
219
220 DB_DNODE_ENTER(db);
221 dn = DB_DNODE(db);
222 type = dn->dn_bonustype;
223 DB_DNODE_EXIT(db);
224
225 return (type);
226 }
227
228 int
229 dmu_rm_spill(objset_t *os, uint64_t object, dmu_tx_t *tx)
230 {
231 dnode_t *dn;
232 int error;
233
234 error = dnode_hold(os, object, FTAG, &dn);
235 dbuf_rm_spill(dn, tx);
236 rw_enter(&dn->dn_struct_rwlock, RW_WRITER);
237 dnode_rm_spill(dn, tx);
238 rw_exit(&dn->dn_struct_rwlock);
239 dnode_rele(dn, FTAG);
240 return (error);
241 }
242
243 /*
244 * returns ENOENT, EIO, or 0.
245 */
246 int
247 dmu_bonus_hold(objset_t *os, uint64_t object, void *tag, dmu_buf_t **dbp)
248 {
249 dnode_t *dn;
250 dmu_buf_impl_t *db;
251 int error;
252
253 error = dnode_hold(os, object, FTAG, &dn);
254 if (error)
255 return (error);
256
257 rw_enter(&dn->dn_struct_rwlock, RW_READER);
258 if (dn->dn_bonus == NULL) {
259 rw_exit(&dn->dn_struct_rwlock);
260 rw_enter(&dn->dn_struct_rwlock, RW_WRITER);
261 if (dn->dn_bonus == NULL)
262 dbuf_create_bonus(dn);
263 }
264 db = dn->dn_bonus;
265
266 /* as long as the bonus buf is held, the dnode will be held */
267 if (refcount_add(&db->db_holds, tag) == 1) {
268 VERIFY(dnode_add_ref(dn, db));
269 (void) atomic_inc_32_nv(&dn->dn_dbufs_count);
270 }
271
272 /*
273 * Wait to drop dn_struct_rwlock until after adding the bonus dbuf's
274 * hold and incrementing the dbuf count to ensure that dnode_move() sees
275 * a dnode hold for every dbuf.
276 */
277 rw_exit(&dn->dn_struct_rwlock);
278
279 dnode_rele(dn, FTAG);
280
281 VERIFY(0 == dbuf_read(db, NULL, DB_RF_MUST_SUCCEED | DB_RF_NOPREFETCH));
282
283 *dbp = &db->db;
284 return (0);
285 }
286
287 /*
288 * returns ENOENT, EIO, or 0.
289 *
290 * This interface will allocate a blank spill dbuf when a spill blk
291 * doesn't already exist on the dnode.
292 *
293 * if you only want to find an already existing spill db, then
294 * dmu_spill_hold_existing() should be used.
295 */
296 int
297 dmu_spill_hold_by_dnode(dnode_t *dn, uint32_t flags, void *tag, dmu_buf_t **dbp)
298 {
299 dmu_buf_impl_t *db = NULL;
300 int err;
301
302 if ((flags & DB_RF_HAVESTRUCT) == 0)
303 rw_enter(&dn->dn_struct_rwlock, RW_READER);
304
305 db = dbuf_hold(dn, DMU_SPILL_BLKID, tag);
306
307 if ((flags & DB_RF_HAVESTRUCT) == 0)
308 rw_exit(&dn->dn_struct_rwlock);
309
310 ASSERT(db != NULL);
311 err = dbuf_read(db, NULL, flags);
312 if (err == 0)
313 *dbp = &db->db;
314 else
315 dbuf_rele(db, tag);
316 return (err);
317 }
318
319 int
320 dmu_spill_hold_existing(dmu_buf_t *bonus, void *tag, dmu_buf_t **dbp)
321 {
322 dmu_buf_impl_t *db = (dmu_buf_impl_t *)bonus;
323 dnode_t *dn;
324 int err;
325
326 DB_DNODE_ENTER(db);
327 dn = DB_DNODE(db);
328
329 if (spa_version(dn->dn_objset->os_spa) < SPA_VERSION_SA) {
330 err = SET_ERROR(EINVAL);
331 } else {
332 rw_enter(&dn->dn_struct_rwlock, RW_READER);
333
334 if (!dn->dn_have_spill) {
335 err = SET_ERROR(ENOENT);
336 } else {
337 err = dmu_spill_hold_by_dnode(dn,
338 DB_RF_HAVESTRUCT | DB_RF_CANFAIL, tag, dbp);
339 }
340
341 rw_exit(&dn->dn_struct_rwlock);
342 }
343
344 DB_DNODE_EXIT(db);
345 return (err);
346 }
347
348 int
349 dmu_spill_hold_by_bonus(dmu_buf_t *bonus, void *tag, dmu_buf_t **dbp)
350 {
351 dmu_buf_impl_t *db = (dmu_buf_impl_t *)bonus;
352 dnode_t *dn;
353 int err;
354
355 DB_DNODE_ENTER(db);
356 dn = DB_DNODE(db);
357 err = dmu_spill_hold_by_dnode(dn, DB_RF_CANFAIL, tag, dbp);
358 DB_DNODE_EXIT(db);
359
360 return (err);
361 }
362
363 /*
364 * Note: longer-term, we should modify all of the dmu_buf_*() interfaces
365 * to take a held dnode rather than <os, object> -- the lookup is wasteful,
366 * and can induce severe lock contention when writing to several files
367 * whose dnodes are in the same block.
368 */
369 static int
370 dmu_buf_hold_array_by_dnode(dnode_t *dn, uint64_t offset, uint64_t length,
371 int read, void *tag, int *numbufsp, dmu_buf_t ***dbpp, uint32_t flags)
372 {
373 dmu_buf_t **dbp;
374 uint64_t blkid, nblks, i;
375 uint32_t dbuf_flags;
376 int err;
377 zio_t *zio;
378
379 ASSERT(length <= DMU_MAX_ACCESS);
380
381 dbuf_flags = DB_RF_CANFAIL | DB_RF_NEVERWAIT | DB_RF_HAVESTRUCT;
382 if (flags & DMU_READ_NO_PREFETCH || length > zfetch_array_rd_sz)
383 dbuf_flags |= DB_RF_NOPREFETCH;
384
385 rw_enter(&dn->dn_struct_rwlock, RW_READER);
386 if (dn->dn_datablkshift) {
387 int blkshift = dn->dn_datablkshift;
388 nblks = (P2ROUNDUP(offset+length, 1ULL<<blkshift) -
389 P2ALIGN(offset, 1ULL<<blkshift)) >> blkshift;
390 } else {
391 if (offset + length > dn->dn_datablksz) {
392 zfs_panic_recover("zfs: accessing past end of object "
393 "%llx/%llx (size=%u access=%llu+%llu)",
394 (longlong_t)dn->dn_objset->
395 os_dsl_dataset->ds_object,
396 (longlong_t)dn->dn_object, dn->dn_datablksz,
397 (longlong_t)offset, (longlong_t)length);
398 rw_exit(&dn->dn_struct_rwlock);
399 return (SET_ERROR(EIO));
400 }
401 nblks = 1;
402 }
403 dbp = kmem_zalloc(sizeof (dmu_buf_t *) * nblks,
404 KM_PUSHPAGE | KM_NODEBUG);
405
406 zio = zio_root(dn->dn_objset->os_spa, NULL, NULL, ZIO_FLAG_CANFAIL);
407 blkid = dbuf_whichblock(dn, offset);
408 for (i = 0; i < nblks; i++) {
409 dmu_buf_impl_t *db = dbuf_hold(dn, blkid+i, tag);
410 if (db == NULL) {
411 rw_exit(&dn->dn_struct_rwlock);
412 dmu_buf_rele_array(dbp, nblks, tag);
413 zio_nowait(zio);
414 return (SET_ERROR(EIO));
415 }
416 /* initiate async i/o */
417 if (read) {
418 (void) dbuf_read(db, zio, dbuf_flags);
419 }
420 dbp[i] = &db->db;
421 }
422 rw_exit(&dn->dn_struct_rwlock);
423
424 /* wait for async i/o */
425 err = zio_wait(zio);
426 if (err) {
427 dmu_buf_rele_array(dbp, nblks, tag);
428 return (err);
429 }
430
431 /* wait for other io to complete */
432 if (read) {
433 for (i = 0; i < nblks; i++) {
434 dmu_buf_impl_t *db = (dmu_buf_impl_t *)dbp[i];
435 mutex_enter(&db->db_mtx);
436 while (db->db_state == DB_READ ||
437 db->db_state == DB_FILL)
438 cv_wait(&db->db_changed, &db->db_mtx);
439 if (db->db_state == DB_UNCACHED)
440 err = SET_ERROR(EIO);
441 mutex_exit(&db->db_mtx);
442 if (err) {
443 dmu_buf_rele_array(dbp, nblks, tag);
444 return (err);
445 }
446 }
447 }
448
449 *numbufsp = nblks;
450 *dbpp = dbp;
451 return (0);
452 }
453
454 static int
455 dmu_buf_hold_array(objset_t *os, uint64_t object, uint64_t offset,
456 uint64_t length, int read, void *tag, int *numbufsp, dmu_buf_t ***dbpp)
457 {
458 dnode_t *dn;
459 int err;
460
461 err = dnode_hold(os, object, FTAG, &dn);
462 if (err)
463 return (err);
464
465 err = dmu_buf_hold_array_by_dnode(dn, offset, length, read, tag,
466 numbufsp, dbpp, DMU_READ_PREFETCH);
467
468 dnode_rele(dn, FTAG);
469
470 return (err);
471 }
472
473 int
474 dmu_buf_hold_array_by_bonus(dmu_buf_t *db_fake, uint64_t offset,
475 uint64_t length, int read, void *tag, int *numbufsp, dmu_buf_t ***dbpp)
476 {
477 dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
478 dnode_t *dn;
479 int err;
480
481 DB_DNODE_ENTER(db);
482 dn = DB_DNODE(db);
483 err = dmu_buf_hold_array_by_dnode(dn, offset, length, read, tag,
484 numbufsp, dbpp, DMU_READ_PREFETCH);
485 DB_DNODE_EXIT(db);
486
487 return (err);
488 }
489
490 void
491 dmu_buf_rele_array(dmu_buf_t **dbp_fake, int numbufs, void *tag)
492 {
493 int i;
494 dmu_buf_impl_t **dbp = (dmu_buf_impl_t **)dbp_fake;
495
496 if (numbufs == 0)
497 return;
498
499 for (i = 0; i < numbufs; i++) {
500 if (dbp[i])
501 dbuf_rele(dbp[i], tag);
502 }
503
504 kmem_free(dbp, sizeof (dmu_buf_t *) * numbufs);
505 }
506
507 /*
508 * Issue prefetch i/os for the given blocks.
509 *
510 * Note: The assumption is that we *know* these blocks will be needed
511 * almost immediately. Therefore, the prefetch i/os will be issued at
512 * ZIO_PRIORITY_SYNC_READ
513 *
514 * Note: indirect blocks and other metadata will be read synchronously,
515 * causing this function to block if they are not already cached.
516 */
517 void
518 dmu_prefetch(objset_t *os, uint64_t object, uint64_t offset, uint64_t len)
519 {
520 dnode_t *dn;
521 uint64_t blkid;
522 int nblks, err;
523
524 if (zfs_prefetch_disable)
525 return;
526
527 if (len == 0) { /* they're interested in the bonus buffer */
528 dn = DMU_META_DNODE(os);
529
530 if (object == 0 || object >= DN_MAX_OBJECT)
531 return;
532
533 rw_enter(&dn->dn_struct_rwlock, RW_READER);
534 blkid = dbuf_whichblock(dn, object * sizeof (dnode_phys_t));
535 dbuf_prefetch(dn, blkid, ZIO_PRIORITY_SYNC_READ);
536 rw_exit(&dn->dn_struct_rwlock);
537 return;
538 }
539
540 /*
541 * XXX - Note, if the dnode for the requested object is not
542 * already cached, we will do a *synchronous* read in the
543 * dnode_hold() call. The same is true for any indirects.
544 */
545 err = dnode_hold(os, object, FTAG, &dn);
546 if (err != 0)
547 return;
548
549 rw_enter(&dn->dn_struct_rwlock, RW_READER);
550 if (dn->dn_datablkshift) {
551 int blkshift = dn->dn_datablkshift;
552 nblks = (P2ROUNDUP(offset + len, 1 << blkshift) -
553 P2ALIGN(offset, 1 << blkshift)) >> blkshift;
554 } else {
555 nblks = (offset < dn->dn_datablksz);
556 }
557
558 if (nblks != 0) {
559 int i;
560
561 blkid = dbuf_whichblock(dn, offset);
562 for (i = 0; i < nblks; i++)
563 dbuf_prefetch(dn, blkid + i, ZIO_PRIORITY_SYNC_READ);
564 }
565
566 rw_exit(&dn->dn_struct_rwlock);
567
568 dnode_rele(dn, FTAG);
569 }
570
571 /*
572 * Get the next "chunk" of file data to free. We traverse the file from
573 * the end so that the file gets shorter over time (if we crashes in the
574 * middle, this will leave us in a better state). We find allocated file
575 * data by simply searching the allocated level 1 indirects.
576 *
577 * On input, *start should be the first offset that does not need to be
578 * freed (e.g. "offset + length"). On return, *start will be the first
579 * offset that should be freed.
580 */
581 static int
582 get_next_chunk(dnode_t *dn, uint64_t *start, uint64_t minimum)
583 {
584 uint64_t maxblks = DMU_MAX_ACCESS >> (dn->dn_indblkshift + 1);
585 /* bytes of data covered by a level-1 indirect block */
586 uint64_t iblkrange =
587 dn->dn_datablksz * EPB(dn->dn_indblkshift, SPA_BLKPTRSHIFT);
588 uint64_t blks;
589
590 ASSERT3U(minimum, <=, *start);
591
592 if (*start - minimum <= iblkrange * maxblks) {
593 *start = minimum;
594 return (0);
595 }
596 ASSERT(ISP2(iblkrange));
597
598 for (blks = 0; *start > minimum && blks < maxblks; blks++) {
599 int err;
600
601 /*
602 * dnode_next_offset(BACKWARDS) will find an allocated L1
603 * indirect block at or before the input offset. We must
604 * decrement *start so that it is at the end of the region
605 * to search.
606 */
607 (*start)--;
608 err = dnode_next_offset(dn,
609 DNODE_FIND_BACKWARDS, start, 2, 1, 0);
610
611 /* if there are no indirect blocks before start, we are done */
612 if (err == ESRCH) {
613 *start = minimum;
614 break;
615 } else if (err != 0) {
616 return (err);
617 }
618
619 /* set start to the beginning of this L1 indirect */
620 *start = P2ALIGN(*start, iblkrange);
621 }
622 if (*start < minimum)
623 *start = minimum;
624 return (0);
625 }
626
627 static int
628 dmu_free_long_range_impl(objset_t *os, dnode_t *dn, uint64_t offset,
629 uint64_t length)
630 {
631 uint64_t object_size = (dn->dn_maxblkid + 1) * dn->dn_datablksz;
632 int err;
633
634 if (offset >= object_size)
635 return (0);
636
637 if (length == DMU_OBJECT_END || offset + length > object_size)
638 length = object_size - offset;
639
640 while (length != 0) {
641 uint64_t chunk_end, chunk_begin;
642 dmu_tx_t *tx;
643
644 chunk_end = chunk_begin = offset + length;
645
646 /* move chunk_begin backwards to the beginning of this chunk */
647 err = get_next_chunk(dn, &chunk_begin, offset);
648 if (err)
649 return (err);
650 ASSERT3U(chunk_begin, >=, offset);
651 ASSERT3U(chunk_begin, <=, chunk_end);
652
653 tx = dmu_tx_create(os);
654 dmu_tx_hold_free(tx, dn->dn_object,
655 chunk_begin, chunk_end - chunk_begin);
656 err = dmu_tx_assign(tx, TXG_WAIT);
657 if (err) {
658 dmu_tx_abort(tx);
659 return (err);
660 }
661 dnode_free_range(dn, chunk_begin, chunk_end - chunk_begin, tx);
662 dmu_tx_commit(tx);
663
664 length -= chunk_end - chunk_begin;
665 }
666 return (0);
667 }
668
669 int
670 dmu_free_long_range(objset_t *os, uint64_t object,
671 uint64_t offset, uint64_t length)
672 {
673 dnode_t *dn;
674 int err;
675
676 err = dnode_hold(os, object, FTAG, &dn);
677 if (err != 0)
678 return (err);
679 err = dmu_free_long_range_impl(os, dn, offset, length);
680
681 /*
682 * It is important to zero out the maxblkid when freeing the entire
683 * file, so that (a) subsequent calls to dmu_free_long_range_impl()
684 * will take the fast path, and (b) dnode_reallocate() can verify
685 * that the entire file has been freed.
686 */
687 if (offset == 0 && length == DMU_OBJECT_END)
688 dn->dn_maxblkid = 0;
689
690 dnode_rele(dn, FTAG);
691 return (err);
692 }
693
694 int
695 dmu_free_long_object(objset_t *os, uint64_t object)
696 {
697 dmu_tx_t *tx;
698 int err;
699
700 err = dmu_free_long_range(os, object, 0, DMU_OBJECT_END);
701 if (err != 0)
702 return (err);
703
704 tx = dmu_tx_create(os);
705 dmu_tx_hold_bonus(tx, object);
706 dmu_tx_hold_free(tx, object, 0, DMU_OBJECT_END);
707 err = dmu_tx_assign(tx, TXG_WAIT);
708 if (err == 0) {
709 err = dmu_object_free(os, object, tx);
710 dmu_tx_commit(tx);
711 } else {
712 dmu_tx_abort(tx);
713 }
714
715 return (err);
716 }
717
718 int
719 dmu_free_range(objset_t *os, uint64_t object, uint64_t offset,
720 uint64_t size, dmu_tx_t *tx)
721 {
722 dnode_t *dn;
723 int err = dnode_hold(os, object, FTAG, &dn);
724 if (err)
725 return (err);
726 ASSERT(offset < UINT64_MAX);
727 ASSERT(size == -1ULL || size <= UINT64_MAX - offset);
728 dnode_free_range(dn, offset, size, tx);
729 dnode_rele(dn, FTAG);
730 return (0);
731 }
732
733 int
734 dmu_read(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
735 void *buf, uint32_t flags)
736 {
737 dnode_t *dn;
738 dmu_buf_t **dbp;
739 int numbufs, err;
740
741 err = dnode_hold(os, object, FTAG, &dn);
742 if (err)
743 return (err);
744
745 /*
746 * Deal with odd block sizes, where there can't be data past the first
747 * block. If we ever do the tail block optimization, we will need to
748 * handle that here as well.
749 */
750 if (dn->dn_maxblkid == 0) {
751 int newsz = offset > dn->dn_datablksz ? 0 :
752 MIN(size, dn->dn_datablksz - offset);
753 bzero((char *)buf + newsz, size - newsz);
754 size = newsz;
755 }
756
757 while (size > 0) {
758 uint64_t mylen = MIN(size, DMU_MAX_ACCESS / 2);
759 int i;
760
761 /*
762 * NB: we could do this block-at-a-time, but it's nice
763 * to be reading in parallel.
764 */
765 err = dmu_buf_hold_array_by_dnode(dn, offset, mylen,
766 TRUE, FTAG, &numbufs, &dbp, flags);
767 if (err)
768 break;
769
770 for (i = 0; i < numbufs; i++) {
771 int tocpy;
772 int bufoff;
773 dmu_buf_t *db = dbp[i];
774
775 ASSERT(size > 0);
776
777 bufoff = offset - db->db_offset;
778 tocpy = (int)MIN(db->db_size - bufoff, size);
779
780 bcopy((char *)db->db_data + bufoff, buf, tocpy);
781
782 offset += tocpy;
783 size -= tocpy;
784 buf = (char *)buf + tocpy;
785 }
786 dmu_buf_rele_array(dbp, numbufs, FTAG);
787 }
788 dnode_rele(dn, FTAG);
789 return (err);
790 }
791
792 void
793 dmu_write(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
794 const void *buf, dmu_tx_t *tx)
795 {
796 dmu_buf_t **dbp;
797 int numbufs, i;
798
799 if (size == 0)
800 return;
801
802 VERIFY(0 == dmu_buf_hold_array(os, object, offset, size,
803 FALSE, FTAG, &numbufs, &dbp));
804
805 for (i = 0; i < numbufs; i++) {
806 int tocpy;
807 int bufoff;
808 dmu_buf_t *db = dbp[i];
809
810 ASSERT(size > 0);
811
812 bufoff = offset - db->db_offset;
813 tocpy = (int)MIN(db->db_size - bufoff, size);
814
815 ASSERT(i == 0 || i == numbufs-1 || tocpy == db->db_size);
816
817 if (tocpy == db->db_size)
818 dmu_buf_will_fill(db, tx);
819 else
820 dmu_buf_will_dirty(db, tx);
821
822 (void) memcpy((char *)db->db_data + bufoff, buf, tocpy);
823
824 if (tocpy == db->db_size)
825 dmu_buf_fill_done(db, tx);
826
827 offset += tocpy;
828 size -= tocpy;
829 buf = (char *)buf + tocpy;
830 }
831 dmu_buf_rele_array(dbp, numbufs, FTAG);
832 }
833
834 void
835 dmu_prealloc(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
836 dmu_tx_t *tx)
837 {
838 dmu_buf_t **dbp;
839 int numbufs, i;
840
841 if (size == 0)
842 return;
843
844 VERIFY(0 == dmu_buf_hold_array(os, object, offset, size,
845 FALSE, FTAG, &numbufs, &dbp));
846
847 for (i = 0; i < numbufs; i++) {
848 dmu_buf_t *db = dbp[i];
849
850 dmu_buf_will_not_fill(db, tx);
851 }
852 dmu_buf_rele_array(dbp, numbufs, FTAG);
853 }
854
855 /*
856 * DMU support for xuio
857 */
858 kstat_t *xuio_ksp = NULL;
859
860 typedef struct xuio_stats {
861 /* loaned yet not returned arc_buf */
862 kstat_named_t xuiostat_onloan_rbuf;
863 kstat_named_t xuiostat_onloan_wbuf;
864 /* whether a copy is made when loaning out a read buffer */
865 kstat_named_t xuiostat_rbuf_copied;
866 kstat_named_t xuiostat_rbuf_nocopy;
867 /* whether a copy is made when assigning a write buffer */
868 kstat_named_t xuiostat_wbuf_copied;
869 kstat_named_t xuiostat_wbuf_nocopy;
870 } xuio_stats_t;
871
872 static xuio_stats_t xuio_stats = {
873 { "onloan_read_buf", KSTAT_DATA_UINT64 },
874 { "onloan_write_buf", KSTAT_DATA_UINT64 },
875 { "read_buf_copied", KSTAT_DATA_UINT64 },
876 { "read_buf_nocopy", KSTAT_DATA_UINT64 },
877 { "write_buf_copied", KSTAT_DATA_UINT64 },
878 { "write_buf_nocopy", KSTAT_DATA_UINT64 }
879 };
880
881 #define XUIOSTAT_INCR(stat, val) \
882 atomic_add_64(&xuio_stats.stat.value.ui64, (val))
883 #define XUIOSTAT_BUMP(stat) XUIOSTAT_INCR(stat, 1)
884
885 int
886 dmu_xuio_init(xuio_t *xuio, int nblk)
887 {
888 dmu_xuio_t *priv;
889 uio_t *uio = &xuio->xu_uio;
890
891 uio->uio_iovcnt = nblk;
892 uio->uio_iov = kmem_zalloc(nblk * sizeof (iovec_t), KM_PUSHPAGE);
893
894 priv = kmem_zalloc(sizeof (dmu_xuio_t), KM_PUSHPAGE);
895 priv->cnt = nblk;
896 priv->bufs = kmem_zalloc(nblk * sizeof (arc_buf_t *), KM_PUSHPAGE);
897 priv->iovp = uio->uio_iov;
898 XUIO_XUZC_PRIV(xuio) = priv;
899
900 if (XUIO_XUZC_RW(xuio) == UIO_READ)
901 XUIOSTAT_INCR(xuiostat_onloan_rbuf, nblk);
902 else
903 XUIOSTAT_INCR(xuiostat_onloan_wbuf, nblk);
904
905 return (0);
906 }
907
908 void
909 dmu_xuio_fini(xuio_t *xuio)
910 {
911 dmu_xuio_t *priv = XUIO_XUZC_PRIV(xuio);
912 int nblk = priv->cnt;
913
914 kmem_free(priv->iovp, nblk * sizeof (iovec_t));
915 kmem_free(priv->bufs, nblk * sizeof (arc_buf_t *));
916 kmem_free(priv, sizeof (dmu_xuio_t));
917
918 if (XUIO_XUZC_RW(xuio) == UIO_READ)
919 XUIOSTAT_INCR(xuiostat_onloan_rbuf, -nblk);
920 else
921 XUIOSTAT_INCR(xuiostat_onloan_wbuf, -nblk);
922 }
923
924 /*
925 * Initialize iov[priv->next] and priv->bufs[priv->next] with { off, n, abuf }
926 * and increase priv->next by 1.
927 */
928 int
929 dmu_xuio_add(xuio_t *xuio, arc_buf_t *abuf, offset_t off, size_t n)
930 {
931 struct iovec *iov;
932 uio_t *uio = &xuio->xu_uio;
933 dmu_xuio_t *priv = XUIO_XUZC_PRIV(xuio);
934 int i = priv->next++;
935
936 ASSERT(i < priv->cnt);
937 ASSERT(off + n <= arc_buf_size(abuf));
938 iov = uio->uio_iov + i;
939 iov->iov_base = (char *)abuf->b_data + off;
940 iov->iov_len = n;
941 priv->bufs[i] = abuf;
942 return (0);
943 }
944
945 int
946 dmu_xuio_cnt(xuio_t *xuio)
947 {
948 dmu_xuio_t *priv = XUIO_XUZC_PRIV(xuio);
949 return (priv->cnt);
950 }
951
952 arc_buf_t *
953 dmu_xuio_arcbuf(xuio_t *xuio, int i)
954 {
955 dmu_xuio_t *priv = XUIO_XUZC_PRIV(xuio);
956
957 ASSERT(i < priv->cnt);
958 return (priv->bufs[i]);
959 }
960
961 void
962 dmu_xuio_clear(xuio_t *xuio, int i)
963 {
964 dmu_xuio_t *priv = XUIO_XUZC_PRIV(xuio);
965
966 ASSERT(i < priv->cnt);
967 priv->bufs[i] = NULL;
968 }
969
970 static void
971 xuio_stat_init(void)
972 {
973 xuio_ksp = kstat_create("zfs", 0, "xuio_stats", "misc",
974 KSTAT_TYPE_NAMED, sizeof (xuio_stats) / sizeof (kstat_named_t),
975 KSTAT_FLAG_VIRTUAL);
976 if (xuio_ksp != NULL) {
977 xuio_ksp->ks_data = &xuio_stats;
978 kstat_install(xuio_ksp);
979 }
980 }
981
982 static void
983 xuio_stat_fini(void)
984 {
985 if (xuio_ksp != NULL) {
986 kstat_delete(xuio_ksp);
987 xuio_ksp = NULL;
988 }
989 }
990
991 void
992 xuio_stat_wbuf_copied()
993 {
994 XUIOSTAT_BUMP(xuiostat_wbuf_copied);
995 }
996
997 void
998 xuio_stat_wbuf_nocopy()
999 {
1000 XUIOSTAT_BUMP(xuiostat_wbuf_nocopy);
1001 }
1002
1003 #ifdef _KERNEL
1004
1005 /*
1006 * Copy up to size bytes between arg_buf and req based on the data direction
1007 * described by the req. If an entire req's data cannot be transfered in one
1008 * pass, you should pass in @req_offset to indicate where to continue. The
1009 * return value is the number of bytes successfully copied to arg_buf.
1010 */
1011 static int
1012 dmu_req_copy(void *arg_buf, int size, struct request *req, size_t req_offset)
1013 {
1014 struct bio_vec bv, *bvp;
1015 struct req_iterator iter;
1016 char *bv_buf;
1017 int tocpy, bv_len, bv_offset;
1018 int offset = 0;
1019
1020 rq_for_each_segment4(bv, bvp, req, iter) {
1021 /*
1022 * Fully consumed the passed arg_buf. We use goto here because
1023 * rq_for_each_segment is a double loop
1024 */
1025 ASSERT3S(offset, <=, size);
1026 if (size == offset)
1027 goto out;
1028
1029 /* Skip already copied bv */
1030 if (req_offset >= bv.bv_len) {
1031 req_offset -= bv.bv_len;
1032 continue;
1033 }
1034
1035 bv_len = bv.bv_len - req_offset;
1036 bv_offset = bv.bv_offset + req_offset;
1037 req_offset = 0;
1038
1039 tocpy = MIN(bv_len, size - offset);
1040 ASSERT3S(tocpy, >=, 0);
1041
1042 bv_buf = page_address(bv.bv_page) + bv_offset;
1043 ASSERT3P(bv_buf, !=, NULL);
1044
1045 if (rq_data_dir(req) == WRITE)
1046 memcpy(arg_buf + offset, bv_buf, tocpy);
1047 else
1048 memcpy(bv_buf, arg_buf + offset, tocpy);
1049
1050 offset += tocpy;
1051 }
1052 out:
1053 return (offset);
1054 }
1055
1056 int
1057 dmu_read_req(objset_t *os, uint64_t object, struct request *req)
1058 {
1059 uint64_t size = blk_rq_bytes(req);
1060 uint64_t offset = blk_rq_pos(req) << 9;
1061 dmu_buf_t **dbp;
1062 int numbufs, i, err;
1063 size_t req_offset;
1064
1065 /*
1066 * NB: we could do this block-at-a-time, but it's nice
1067 * to be reading in parallel.
1068 */
1069 err = dmu_buf_hold_array(os, object, offset, size, TRUE, FTAG,
1070 &numbufs, &dbp);
1071 if (err)
1072 return (err);
1073
1074 req_offset = 0;
1075 for (i = 0; i < numbufs; i++) {
1076 int tocpy, didcpy, bufoff;
1077 dmu_buf_t *db = dbp[i];
1078
1079 bufoff = offset - db->db_offset;
1080 ASSERT3S(bufoff, >=, 0);
1081
1082 tocpy = (int)MIN(db->db_size - bufoff, size);
1083 if (tocpy == 0)
1084 break;
1085
1086 didcpy = dmu_req_copy(db->db_data + bufoff, tocpy, req,
1087 req_offset);
1088
1089 if (didcpy < tocpy)
1090 err = EIO;
1091
1092 if (err)
1093 break;
1094
1095 size -= tocpy;
1096 offset += didcpy;
1097 req_offset += didcpy;
1098 err = 0;
1099 }
1100 dmu_buf_rele_array(dbp, numbufs, FTAG);
1101
1102 return (err);
1103 }
1104
1105 int
1106 dmu_write_req(objset_t *os, uint64_t object, struct request *req, dmu_tx_t *tx)
1107 {
1108 uint64_t size = blk_rq_bytes(req);
1109 uint64_t offset = blk_rq_pos(req) << 9;
1110 dmu_buf_t **dbp;
1111 int numbufs, i, err;
1112 size_t req_offset;
1113
1114 if (size == 0)
1115 return (0);
1116
1117 err = dmu_buf_hold_array(os, object, offset, size, FALSE, FTAG,
1118 &numbufs, &dbp);
1119 if (err)
1120 return (err);
1121
1122 req_offset = 0;
1123 for (i = 0; i < numbufs; i++) {
1124 int tocpy, didcpy, bufoff;
1125 dmu_buf_t *db = dbp[i];
1126
1127 bufoff = offset - db->db_offset;
1128 ASSERT3S(bufoff, >=, 0);
1129
1130 tocpy = (int)MIN(db->db_size - bufoff, size);
1131 if (tocpy == 0)
1132 break;
1133
1134 ASSERT(i == 0 || i == numbufs-1 || tocpy == db->db_size);
1135
1136 if (tocpy == db->db_size)
1137 dmu_buf_will_fill(db, tx);
1138 else
1139 dmu_buf_will_dirty(db, tx);
1140
1141 didcpy = dmu_req_copy(db->db_data + bufoff, tocpy, req,
1142 req_offset);
1143
1144 if (tocpy == db->db_size)
1145 dmu_buf_fill_done(db, tx);
1146
1147 if (didcpy < tocpy)
1148 err = EIO;
1149
1150 if (err)
1151 break;
1152
1153 size -= tocpy;
1154 offset += didcpy;
1155 req_offset += didcpy;
1156 err = 0;
1157 }
1158
1159 dmu_buf_rele_array(dbp, numbufs, FTAG);
1160 return (err);
1161 }
1162
1163 int
1164 dmu_read_uio(objset_t *os, uint64_t object, uio_t *uio, uint64_t size)
1165 {
1166 dmu_buf_t **dbp;
1167 int numbufs, i, err;
1168 xuio_t *xuio = NULL;
1169
1170 /*
1171 * NB: we could do this block-at-a-time, but it's nice
1172 * to be reading in parallel.
1173 */
1174 err = dmu_buf_hold_array(os, object, uio->uio_loffset, size, TRUE, FTAG,
1175 &numbufs, &dbp);
1176 if (err)
1177 return (err);
1178
1179 for (i = 0; i < numbufs; i++) {
1180 int tocpy;
1181 int bufoff;
1182 dmu_buf_t *db = dbp[i];
1183
1184 ASSERT(size > 0);
1185
1186 bufoff = uio->uio_loffset - db->db_offset;
1187 tocpy = (int)MIN(db->db_size - bufoff, size);
1188
1189 if (xuio) {
1190 dmu_buf_impl_t *dbi = (dmu_buf_impl_t *)db;
1191 arc_buf_t *dbuf_abuf = dbi->db_buf;
1192 arc_buf_t *abuf = dbuf_loan_arcbuf(dbi);
1193 err = dmu_xuio_add(xuio, abuf, bufoff, tocpy);
1194 if (!err) {
1195 uio->uio_resid -= tocpy;
1196 uio->uio_loffset += tocpy;
1197 }
1198
1199 if (abuf == dbuf_abuf)
1200 XUIOSTAT_BUMP(xuiostat_rbuf_nocopy);
1201 else
1202 XUIOSTAT_BUMP(xuiostat_rbuf_copied);
1203 } else {
1204 err = uiomove((char *)db->db_data + bufoff, tocpy,
1205 UIO_READ, uio);
1206 }
1207 if (err)
1208 break;
1209
1210 size -= tocpy;
1211 }
1212 dmu_buf_rele_array(dbp, numbufs, FTAG);
1213
1214 return (err);
1215 }
1216
1217 static int
1218 dmu_write_uio_dnode(dnode_t *dn, uio_t *uio, uint64_t size, dmu_tx_t *tx)
1219 {
1220 dmu_buf_t **dbp;
1221 int numbufs;
1222 int err = 0;
1223 int i;
1224
1225 err = dmu_buf_hold_array_by_dnode(dn, uio->uio_loffset, size,
1226 FALSE, FTAG, &numbufs, &dbp, DMU_READ_PREFETCH);
1227 if (err)
1228 return (err);
1229
1230 for (i = 0; i < numbufs; i++) {
1231 int tocpy;
1232 int bufoff;
1233 dmu_buf_t *db = dbp[i];
1234
1235 ASSERT(size > 0);
1236
1237 bufoff = uio->uio_loffset - db->db_offset;
1238 tocpy = (int)MIN(db->db_size - bufoff, size);
1239
1240 ASSERT(i == 0 || i == numbufs-1 || tocpy == db->db_size);
1241
1242 if (tocpy == db->db_size)
1243 dmu_buf_will_fill(db, tx);
1244 else
1245 dmu_buf_will_dirty(db, tx);
1246
1247 /*
1248 * XXX uiomove could block forever (eg.nfs-backed
1249 * pages). There needs to be a uiolockdown() function
1250 * to lock the pages in memory, so that uiomove won't
1251 * block.
1252 */
1253 err = uiomove((char *)db->db_data + bufoff, tocpy,
1254 UIO_WRITE, uio);
1255
1256 if (tocpy == db->db_size)
1257 dmu_buf_fill_done(db, tx);
1258
1259 if (err)
1260 break;
1261
1262 size -= tocpy;
1263 }
1264
1265 dmu_buf_rele_array(dbp, numbufs, FTAG);
1266 return (err);
1267 }
1268
1269 int
1270 dmu_write_uio_dbuf(dmu_buf_t *zdb, uio_t *uio, uint64_t size,
1271 dmu_tx_t *tx)
1272 {
1273 dmu_buf_impl_t *db = (dmu_buf_impl_t *)zdb;
1274 dnode_t *dn;
1275 int err;
1276
1277 if (size == 0)
1278 return (0);
1279
1280 DB_DNODE_ENTER(db);
1281 dn = DB_DNODE(db);
1282 err = dmu_write_uio_dnode(dn, uio, size, tx);
1283 DB_DNODE_EXIT(db);
1284
1285 return (err);
1286 }
1287
1288 int
1289 dmu_write_uio(objset_t *os, uint64_t object, uio_t *uio, uint64_t size,
1290 dmu_tx_t *tx)
1291 {
1292 dnode_t *dn;
1293 int err;
1294
1295 if (size == 0)
1296 return (0);
1297
1298 err = dnode_hold(os, object, FTAG, &dn);
1299 if (err)
1300 return (err);
1301
1302 err = dmu_write_uio_dnode(dn, uio, size, tx);
1303
1304 dnode_rele(dn, FTAG);
1305
1306 return (err);
1307 }
1308 #endif /* _KERNEL */
1309
1310 /*
1311 * Allocate a loaned anonymous arc buffer.
1312 */
1313 arc_buf_t *
1314 dmu_request_arcbuf(dmu_buf_t *handle, int size)
1315 {
1316 dmu_buf_impl_t *db = (dmu_buf_impl_t *)handle;
1317 spa_t *spa;
1318
1319 DB_GET_SPA(&spa, db);
1320 return (arc_loan_buf(spa, size));
1321 }
1322
1323 /*
1324 * Free a loaned arc buffer.
1325 */
1326 void
1327 dmu_return_arcbuf(arc_buf_t *buf)
1328 {
1329 arc_return_buf(buf, FTAG);
1330 VERIFY(arc_buf_remove_ref(buf, FTAG));
1331 }
1332
1333 /*
1334 * When possible directly assign passed loaned arc buffer to a dbuf.
1335 * If this is not possible copy the contents of passed arc buf via
1336 * dmu_write().
1337 */
1338 void
1339 dmu_assign_arcbuf(dmu_buf_t *handle, uint64_t offset, arc_buf_t *buf,
1340 dmu_tx_t *tx)
1341 {
1342 dmu_buf_impl_t *dbuf = (dmu_buf_impl_t *)handle;
1343 dnode_t *dn;
1344 dmu_buf_impl_t *db;
1345 uint32_t blksz = (uint32_t)arc_buf_size(buf);
1346 uint64_t blkid;
1347
1348 DB_DNODE_ENTER(dbuf);
1349 dn = DB_DNODE(dbuf);
1350 rw_enter(&dn->dn_struct_rwlock, RW_READER);
1351 blkid = dbuf_whichblock(dn, offset);
1352 VERIFY((db = dbuf_hold(dn, blkid, FTAG)) != NULL);
1353 rw_exit(&dn->dn_struct_rwlock);
1354 DB_DNODE_EXIT(dbuf);
1355
1356 if (offset == db->db.db_offset && blksz == db->db.db_size) {
1357 dbuf_assign_arcbuf(db, buf, tx);
1358 dbuf_rele(db, FTAG);
1359 } else {
1360 objset_t *os;
1361 uint64_t object;
1362
1363 DB_DNODE_ENTER(dbuf);
1364 dn = DB_DNODE(dbuf);
1365 os = dn->dn_objset;
1366 object = dn->dn_object;
1367 DB_DNODE_EXIT(dbuf);
1368
1369 dbuf_rele(db, FTAG);
1370 dmu_write(os, object, offset, blksz, buf->b_data, tx);
1371 dmu_return_arcbuf(buf);
1372 XUIOSTAT_BUMP(xuiostat_wbuf_copied);
1373 }
1374 }
1375
1376 typedef struct {
1377 dbuf_dirty_record_t *dsa_dr;
1378 dmu_sync_cb_t *dsa_done;
1379 zgd_t *dsa_zgd;
1380 dmu_tx_t *dsa_tx;
1381 } dmu_sync_arg_t;
1382
1383 /* ARGSUSED */
1384 static void
1385 dmu_sync_ready(zio_t *zio, arc_buf_t *buf, void *varg)
1386 {
1387 dmu_sync_arg_t *dsa = varg;
1388 dmu_buf_t *db = dsa->dsa_zgd->zgd_db;
1389 blkptr_t *bp = zio->io_bp;
1390
1391 if (zio->io_error == 0) {
1392 if (BP_IS_HOLE(bp)) {
1393 /*
1394 * A block of zeros may compress to a hole, but the
1395 * block size still needs to be known for replay.
1396 */
1397 BP_SET_LSIZE(bp, db->db_size);
1398 } else {
1399 ASSERT(BP_GET_LEVEL(bp) == 0);
1400 bp->blk_fill = 1;
1401 }
1402 }
1403 }
1404
1405 static void
1406 dmu_sync_late_arrival_ready(zio_t *zio)
1407 {
1408 dmu_sync_ready(zio, NULL, zio->io_private);
1409 }
1410
1411 /* ARGSUSED */
1412 static void
1413 dmu_sync_done(zio_t *zio, arc_buf_t *buf, void *varg)
1414 {
1415 dmu_sync_arg_t *dsa = varg;
1416 dbuf_dirty_record_t *dr = dsa->dsa_dr;
1417 dmu_buf_impl_t *db = dr->dr_dbuf;
1418
1419 mutex_enter(&db->db_mtx);
1420 ASSERT(dr->dt.dl.dr_override_state == DR_IN_DMU_SYNC);
1421 if (zio->io_error == 0) {
1422 dr->dt.dl.dr_nopwrite = !!(zio->io_flags & ZIO_FLAG_NOPWRITE);
1423 if (dr->dt.dl.dr_nopwrite) {
1424 ASSERTV(blkptr_t *bp = zio->io_bp);
1425 ASSERTV(blkptr_t *bp_orig = &zio->io_bp_orig);
1426 ASSERTV(uint8_t chksum = BP_GET_CHECKSUM(bp_orig));
1427
1428 ASSERT(BP_EQUAL(bp, bp_orig));
1429 ASSERT(zio->io_prop.zp_compress != ZIO_COMPRESS_OFF);
1430 ASSERT(zio_checksum_table[chksum].ci_dedup);
1431 }
1432 dr->dt.dl.dr_overridden_by = *zio->io_bp;
1433 dr->dt.dl.dr_override_state = DR_OVERRIDDEN;
1434 dr->dt.dl.dr_copies = zio->io_prop.zp_copies;
1435 if (BP_IS_HOLE(&dr->dt.dl.dr_overridden_by))
1436 BP_ZERO(&dr->dt.dl.dr_overridden_by);
1437 } else {
1438 dr->dt.dl.dr_override_state = DR_NOT_OVERRIDDEN;
1439 }
1440 cv_broadcast(&db->db_changed);
1441 mutex_exit(&db->db_mtx);
1442
1443 dsa->dsa_done(dsa->dsa_zgd, zio->io_error);
1444
1445 kmem_free(dsa, sizeof (*dsa));
1446 }
1447
1448 static void
1449 dmu_sync_late_arrival_done(zio_t *zio)
1450 {
1451 blkptr_t *bp = zio->io_bp;
1452 dmu_sync_arg_t *dsa = zio->io_private;
1453 ASSERTV(blkptr_t *bp_orig = &zio->io_bp_orig);
1454
1455 if (zio->io_error == 0 && !BP_IS_HOLE(bp)) {
1456 /*
1457 * If we didn't allocate a new block (i.e. ZIO_FLAG_NOPWRITE)
1458 * then there is nothing to do here. Otherwise, free the
1459 * newly allocated block in this txg.
1460 */
1461 if (zio->io_flags & ZIO_FLAG_NOPWRITE) {
1462 ASSERT(BP_EQUAL(bp, bp_orig));
1463 } else {
1464 ASSERT(BP_IS_HOLE(bp_orig) || !BP_EQUAL(bp, bp_orig));
1465 ASSERT(zio->io_bp->blk_birth == zio->io_txg);
1466 ASSERT(zio->io_txg > spa_syncing_txg(zio->io_spa));
1467 zio_free(zio->io_spa, zio->io_txg, zio->io_bp);
1468 }
1469 }
1470
1471 dmu_tx_commit(dsa->dsa_tx);
1472
1473 dsa->dsa_done(dsa->dsa_zgd, zio->io_error);
1474
1475 kmem_free(dsa, sizeof (*dsa));
1476 }
1477
1478 static int
1479 dmu_sync_late_arrival(zio_t *pio, objset_t *os, dmu_sync_cb_t *done, zgd_t *zgd,
1480 zio_prop_t *zp, zbookmark_t *zb)
1481 {
1482 dmu_sync_arg_t *dsa;
1483 dmu_tx_t *tx;
1484
1485 tx = dmu_tx_create(os);
1486 dmu_tx_hold_space(tx, zgd->zgd_db->db_size);
1487 if (dmu_tx_assign(tx, TXG_WAIT) != 0) {
1488 dmu_tx_abort(tx);
1489 /* Make zl_get_data do txg_waited_synced() */
1490 return (SET_ERROR(EIO));
1491 }
1492
1493 dsa = kmem_alloc(sizeof (dmu_sync_arg_t), KM_PUSHPAGE);
1494 dsa->dsa_dr = NULL;
1495 dsa->dsa_done = done;
1496 dsa->dsa_zgd = zgd;
1497 dsa->dsa_tx = tx;
1498
1499 zio_nowait(zio_write(pio, os->os_spa, dmu_tx_get_txg(tx), zgd->zgd_bp,
1500 zgd->zgd_db->db_data, zgd->zgd_db->db_size, zp,
1501 dmu_sync_late_arrival_ready, NULL, dmu_sync_late_arrival_done, dsa,
1502 ZIO_PRIORITY_SYNC_WRITE, ZIO_FLAG_CANFAIL|ZIO_FLAG_FASTWRITE, zb));
1503
1504 return (0);
1505 }
1506
1507 /*
1508 * Intent log support: sync the block associated with db to disk.
1509 * N.B. and XXX: the caller is responsible for making sure that the
1510 * data isn't changing while dmu_sync() is writing it.
1511 *
1512 * Return values:
1513 *
1514 * EEXIST: this txg has already been synced, so there's nothing to do.
1515 * The caller should not log the write.
1516 *
1517 * ENOENT: the block was dbuf_free_range()'d, so there's nothing to do.
1518 * The caller should not log the write.
1519 *
1520 * EALREADY: this block is already in the process of being synced.
1521 * The caller should track its progress (somehow).
1522 *
1523 * EIO: could not do the I/O.
1524 * The caller should do a txg_wait_synced().
1525 *
1526 * 0: the I/O has been initiated.
1527 * The caller should log this blkptr in the done callback.
1528 * It is possible that the I/O will fail, in which case
1529 * the error will be reported to the done callback and
1530 * propagated to pio from zio_done().
1531 */
1532 int
1533 dmu_sync(zio_t *pio, uint64_t txg, dmu_sync_cb_t *done, zgd_t *zgd)
1534 {
1535 blkptr_t *bp = zgd->zgd_bp;
1536 dmu_buf_impl_t *db = (dmu_buf_impl_t *)zgd->zgd_db;
1537 objset_t *os = db->db_objset;
1538 dsl_dataset_t *ds = os->os_dsl_dataset;
1539 dbuf_dirty_record_t *dr;
1540 dmu_sync_arg_t *dsa;
1541 zbookmark_t zb;
1542 zio_prop_t zp;
1543 dnode_t *dn;
1544
1545 ASSERT(pio != NULL);
1546 ASSERT(txg != 0);
1547
1548 SET_BOOKMARK(&zb, ds->ds_object,
1549 db->db.db_object, db->db_level, db->db_blkid);
1550
1551 DB_DNODE_ENTER(db);
1552 dn = DB_DNODE(db);
1553 dmu_write_policy(os, dn, db->db_level, WP_DMU_SYNC, &zp);
1554 DB_DNODE_EXIT(db);
1555
1556 /*
1557 * If we're frozen (running ziltest), we always need to generate a bp.
1558 */
1559 if (txg > spa_freeze_txg(os->os_spa))
1560 return (dmu_sync_late_arrival(pio, os, done, zgd, &zp, &zb));
1561
1562 /*
1563 * Grabbing db_mtx now provides a barrier between dbuf_sync_leaf()
1564 * and us. If we determine that this txg is not yet syncing,
1565 * but it begins to sync a moment later, that's OK because the
1566 * sync thread will block in dbuf_sync_leaf() until we drop db_mtx.
1567 */
1568 mutex_enter(&db->db_mtx);
1569
1570 if (txg <= spa_last_synced_txg(os->os_spa)) {
1571 /*
1572 * This txg has already synced. There's nothing to do.
1573 */
1574 mutex_exit(&db->db_mtx);
1575 return (SET_ERROR(EEXIST));
1576 }
1577
1578 if (txg <= spa_syncing_txg(os->os_spa)) {
1579 /*
1580 * This txg is currently syncing, so we can't mess with
1581 * the dirty record anymore; just write a new log block.
1582 */
1583 mutex_exit(&db->db_mtx);
1584 return (dmu_sync_late_arrival(pio, os, done, zgd, &zp, &zb));
1585 }
1586
1587 dr = db->db_last_dirty;
1588 while (dr && dr->dr_txg != txg)
1589 dr = dr->dr_next;
1590
1591 if (dr == NULL) {
1592 /*
1593 * There's no dr for this dbuf, so it must have been freed.
1594 * There's no need to log writes to freed blocks, so we're done.
1595 */
1596 mutex_exit(&db->db_mtx);
1597 return (SET_ERROR(ENOENT));
1598 }
1599
1600 ASSERT(dr->dr_next == NULL || dr->dr_next->dr_txg < txg);
1601
1602 /*
1603 * Assume the on-disk data is X, the current syncing data is Y,
1604 * and the current in-memory data is Z (currently in dmu_sync).
1605 * X and Z are identical but Y is has been modified. Normally,
1606 * when X and Z are the same we will perform a nopwrite but if Y
1607 * is different we must disable nopwrite since the resulting write
1608 * of Y to disk can free the block containing X. If we allowed a
1609 * nopwrite to occur the block pointing to Z would reference a freed
1610 * block. Since this is a rare case we simplify this by disabling
1611 * nopwrite if the current dmu_sync-ing dbuf has been modified in
1612 * a previous transaction.
1613 */
1614 if (dr->dr_next)
1615 zp.zp_nopwrite = B_FALSE;
1616
1617 ASSERT(dr->dr_txg == txg);
1618 if (dr->dt.dl.dr_override_state == DR_IN_DMU_SYNC ||
1619 dr->dt.dl.dr_override_state == DR_OVERRIDDEN) {
1620 /*
1621 * We have already issued a sync write for this buffer,
1622 * or this buffer has already been synced. It could not
1623 * have been dirtied since, or we would have cleared the state.
1624 */
1625 mutex_exit(&db->db_mtx);
1626 return (SET_ERROR(EALREADY));
1627 }
1628
1629 ASSERT(dr->dt.dl.dr_override_state == DR_NOT_OVERRIDDEN);
1630 dr->dt.dl.dr_override_state = DR_IN_DMU_SYNC;
1631 mutex_exit(&db->db_mtx);
1632
1633 dsa = kmem_alloc(sizeof (dmu_sync_arg_t), KM_PUSHPAGE);
1634 dsa->dsa_dr = dr;
1635 dsa->dsa_done = done;
1636 dsa->dsa_zgd = zgd;
1637 dsa->dsa_tx = NULL;
1638
1639 zio_nowait(arc_write(pio, os->os_spa, txg,
1640 bp, dr->dt.dl.dr_data, DBUF_IS_L2CACHEABLE(db),
1641 DBUF_IS_L2COMPRESSIBLE(db), &zp, dmu_sync_ready,
1642 NULL, dmu_sync_done, dsa, ZIO_PRIORITY_SYNC_WRITE,
1643 ZIO_FLAG_CANFAIL, &zb));
1644
1645 return (0);
1646 }
1647
1648 int
1649 dmu_object_set_blocksize(objset_t *os, uint64_t object, uint64_t size, int ibs,
1650 dmu_tx_t *tx)
1651 {
1652 dnode_t *dn;
1653 int err;
1654
1655 err = dnode_hold(os, object, FTAG, &dn);
1656 if (err)
1657 return (err);
1658 err = dnode_set_blksz(dn, size, ibs, tx);
1659 dnode_rele(dn, FTAG);
1660 return (err);
1661 }
1662
1663 void
1664 dmu_object_set_checksum(objset_t *os, uint64_t object, uint8_t checksum,
1665 dmu_tx_t *tx)
1666 {
1667 dnode_t *dn;
1668
1669 /* XXX assumes dnode_hold will not get an i/o error */
1670 (void) dnode_hold(os, object, FTAG, &dn);
1671 ASSERT(checksum < ZIO_CHECKSUM_FUNCTIONS);
1672 dn->dn_checksum = checksum;
1673 dnode_setdirty(dn, tx);
1674 dnode_rele(dn, FTAG);
1675 }
1676
1677 void
1678 dmu_object_set_compress(objset_t *os, uint64_t object, uint8_t compress,
1679 dmu_tx_t *tx)
1680 {
1681 dnode_t *dn;
1682
1683 /* XXX assumes dnode_hold will not get an i/o error */
1684 (void) dnode_hold(os, object, FTAG, &dn);
1685 ASSERT(compress < ZIO_COMPRESS_FUNCTIONS);
1686 dn->dn_compress = compress;
1687 dnode_setdirty(dn, tx);
1688 dnode_rele(dn, FTAG);
1689 }
1690
1691 int zfs_mdcomp_disable = 0;
1692
1693 void
1694 dmu_write_policy(objset_t *os, dnode_t *dn, int level, int wp, zio_prop_t *zp)
1695 {
1696 dmu_object_type_t type = dn ? dn->dn_type : DMU_OT_OBJSET;
1697 boolean_t ismd = (level > 0 || DMU_OT_IS_METADATA(type) ||
1698 (wp & WP_SPILL));
1699 enum zio_checksum checksum = os->os_checksum;
1700 enum zio_compress compress = os->os_compress;
1701 enum zio_checksum dedup_checksum = os->os_dedup_checksum;
1702 boolean_t dedup = B_FALSE;
1703 boolean_t nopwrite = B_FALSE;
1704 boolean_t dedup_verify = os->os_dedup_verify;
1705 int copies = os->os_copies;
1706
1707 /*
1708 * We maintain different write policies for each of the following
1709 * types of data:
1710 * 1. metadata
1711 * 2. preallocated blocks (i.e. level-0 blocks of a dump device)
1712 * 3. all other level 0 blocks
1713 */
1714 if (ismd) {
1715 /*
1716 * XXX -- we should design a compression algorithm
1717 * that specializes in arrays of bps.
1718 */
1719 compress = zfs_mdcomp_disable ? ZIO_COMPRESS_EMPTY :
1720 ZIO_COMPRESS_LZJB;
1721
1722 /*
1723 * Metadata always gets checksummed. If the data
1724 * checksum is multi-bit correctable, and it's not a
1725 * ZBT-style checksum, then it's suitable for metadata
1726 * as well. Otherwise, the metadata checksum defaults
1727 * to fletcher4.
1728 */
1729 if (zio_checksum_table[checksum].ci_correctable < 1 ||
1730 zio_checksum_table[checksum].ci_eck)
1731 checksum = ZIO_CHECKSUM_FLETCHER_4;
1732 } else if (wp & WP_NOFILL) {
1733 ASSERT(level == 0);
1734
1735 /*
1736 * If we're writing preallocated blocks, we aren't actually
1737 * writing them so don't set any policy properties. These
1738 * blocks are currently only used by an external subsystem
1739 * outside of zfs (i.e. dump) and not written by the zio
1740 * pipeline.
1741 */
1742 compress = ZIO_COMPRESS_OFF;
1743 checksum = ZIO_CHECKSUM_OFF;
1744 } else {
1745 compress = zio_compress_select(dn->dn_compress, compress);
1746
1747 checksum = (dedup_checksum == ZIO_CHECKSUM_OFF) ?
1748 zio_checksum_select(dn->dn_checksum, checksum) :
1749 dedup_checksum;
1750
1751 /*
1752 * Determine dedup setting. If we are in dmu_sync(),
1753 * we won't actually dedup now because that's all
1754 * done in syncing context; but we do want to use the
1755 * dedup checkum. If the checksum is not strong
1756 * enough to ensure unique signatures, force
1757 * dedup_verify.
1758 */
1759 if (dedup_checksum != ZIO_CHECKSUM_OFF) {
1760 dedup = (wp & WP_DMU_SYNC) ? B_FALSE : B_TRUE;
1761 if (!zio_checksum_table[checksum].ci_dedup)
1762 dedup_verify = B_TRUE;
1763 }
1764
1765 /*
1766 * Enable nopwrite if we have a cryptographically secure
1767 * checksum that has no known collisions (i.e. SHA-256)
1768 * and compression is enabled. We don't enable nopwrite if
1769 * dedup is enabled as the two features are mutually exclusive.
1770 */
1771 nopwrite = (!dedup && zio_checksum_table[checksum].ci_dedup &&
1772 compress != ZIO_COMPRESS_OFF && zfs_nopwrite_enabled);
1773 }
1774
1775 zp->zp_checksum = checksum;
1776 zp->zp_compress = compress;
1777 zp->zp_type = (wp & WP_SPILL) ? dn->dn_bonustype : type;
1778 zp->zp_level = level;
1779 zp->zp_copies = MIN(copies + ismd, spa_max_replication(os->os_spa));
1780 zp->zp_dedup = dedup;
1781 zp->zp_dedup_verify = dedup && dedup_verify;
1782 zp->zp_nopwrite = nopwrite;
1783 }
1784
1785 int
1786 dmu_offset_next(objset_t *os, uint64_t object, boolean_t hole, uint64_t *off)
1787 {
1788 dnode_t *dn;
1789 int i, err;
1790
1791 err = dnode_hold(os, object, FTAG, &dn);
1792 if (err)
1793 return (err);
1794 /*
1795 * Sync any current changes before
1796 * we go trundling through the block pointers.
1797 */
1798 for (i = 0; i < TXG_SIZE; i++) {
1799 if (list_link_active(&dn->dn_dirty_link[i]))
1800 break;
1801 }
1802 if (i != TXG_SIZE) {
1803 dnode_rele(dn, FTAG);
1804 txg_wait_synced(dmu_objset_pool(os), 0);
1805 err = dnode_hold(os, object, FTAG, &dn);
1806 if (err)
1807 return (err);
1808 }
1809
1810 err = dnode_next_offset(dn, (hole ? DNODE_FIND_HOLE : 0), off, 1, 1, 0);
1811 dnode_rele(dn, FTAG);
1812
1813 return (err);
1814 }
1815
1816 void
1817 __dmu_object_info_from_dnode(dnode_t *dn, dmu_object_info_t *doi)
1818 {
1819 dnode_phys_t *dnp = dn->dn_phys;
1820 int i;
1821
1822 doi->doi_data_block_size = dn->dn_datablksz;
1823 doi->doi_metadata_block_size = dn->dn_indblkshift ?
1824 1ULL << dn->dn_indblkshift : 0;
1825 doi->doi_type = dn->dn_type;
1826 doi->doi_bonus_type = dn->dn_bonustype;
1827 doi->doi_bonus_size = dn->dn_bonuslen;
1828 doi->doi_indirection = dn->dn_nlevels;
1829 doi->doi_checksum = dn->dn_checksum;
1830 doi->doi_compress = dn->dn_compress;
1831 doi->doi_physical_blocks_512 = (DN_USED_BYTES(dnp) + 256) >> 9;
1832 doi->doi_max_offset = (dn->dn_maxblkid + 1) * dn->dn_datablksz;
1833 doi->doi_fill_count = 0;
1834 for (i = 0; i < dnp->dn_nblkptr; i++)
1835 doi->doi_fill_count += dnp->dn_blkptr[i].blk_fill;
1836 }
1837
1838 void
1839 dmu_object_info_from_dnode(dnode_t *dn, dmu_object_info_t *doi)
1840 {
1841 rw_enter(&dn->dn_struct_rwlock, RW_READER);
1842 mutex_enter(&dn->dn_mtx);
1843
1844 __dmu_object_info_from_dnode(dn, doi);
1845
1846 mutex_exit(&dn->dn_mtx);
1847 rw_exit(&dn->dn_struct_rwlock);
1848 }
1849
1850 /*
1851 * Get information on a DMU object.
1852 * If doi is NULL, just indicates whether the object exists.
1853 */
1854 int
1855 dmu_object_info(objset_t *os, uint64_t object, dmu_object_info_t *doi)
1856 {
1857 dnode_t *dn;
1858 int err = dnode_hold(os, object, FTAG, &dn);
1859
1860 if (err)
1861 return (err);
1862
1863 if (doi != NULL)
1864 dmu_object_info_from_dnode(dn, doi);
1865
1866 dnode_rele(dn, FTAG);
1867 return (0);
1868 }
1869
1870 /*
1871 * As above, but faster; can be used when you have a held dbuf in hand.
1872 */
1873 void
1874 dmu_object_info_from_db(dmu_buf_t *db_fake, dmu_object_info_t *doi)
1875 {
1876 dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
1877
1878 DB_DNODE_ENTER(db);
1879 dmu_object_info_from_dnode(DB_DNODE(db), doi);
1880 DB_DNODE_EXIT(db);
1881 }
1882
1883 /*
1884 * Faster still when you only care about the size.
1885 * This is specifically optimized for zfs_getattr().
1886 */
1887 void
1888 dmu_object_size_from_db(dmu_buf_t *db_fake, uint32_t *blksize,
1889 u_longlong_t *nblk512)
1890 {
1891 dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
1892 dnode_t *dn;
1893
1894 DB_DNODE_ENTER(db);
1895 dn = DB_DNODE(db);
1896
1897 *blksize = dn->dn_datablksz;
1898 /* add 1 for dnode space */
1899 *nblk512 = ((DN_USED_BYTES(dn->dn_phys) + SPA_MINBLOCKSIZE/2) >>
1900 SPA_MINBLOCKSHIFT) + 1;
1901 DB_DNODE_EXIT(db);
1902 }
1903
1904 void
1905 byteswap_uint64_array(void *vbuf, size_t size)
1906 {
1907 uint64_t *buf = vbuf;
1908 size_t count = size >> 3;
1909 int i;
1910
1911 ASSERT((size & 7) == 0);
1912
1913 for (i = 0; i < count; i++)
1914 buf[i] = BSWAP_64(buf[i]);
1915 }
1916
1917 void
1918 byteswap_uint32_array(void *vbuf, size_t size)
1919 {
1920 uint32_t *buf = vbuf;
1921 size_t count = size >> 2;
1922 int i;
1923
1924 ASSERT((size & 3) == 0);
1925
1926 for (i = 0; i < count; i++)
1927 buf[i] = BSWAP_32(buf[i]);
1928 }
1929
1930 void
1931 byteswap_uint16_array(void *vbuf, size_t size)
1932 {
1933 uint16_t *buf = vbuf;
1934 size_t count = size >> 1;
1935 int i;
1936
1937 ASSERT((size & 1) == 0);
1938
1939 for (i = 0; i < count; i++)
1940 buf[i] = BSWAP_16(buf[i]);
1941 }
1942
1943 /* ARGSUSED */
1944 void
1945 byteswap_uint8_array(void *vbuf, size_t size)
1946 {
1947 }
1948
1949 void
1950 dmu_init(void)
1951 {
1952 zfs_dbgmsg_init();
1953 sa_cache_init();
1954 xuio_stat_init();
1955 dmu_objset_init();
1956 dnode_init();
1957 dbuf_init();
1958 zfetch_init();
1959 dmu_tx_init();
1960 l2arc_init();
1961 arc_init();
1962 }
1963
1964 void
1965 dmu_fini(void)
1966 {
1967 arc_fini(); /* arc depends on l2arc, so arc must go first */
1968 l2arc_fini();
1969 dmu_tx_fini();
1970 zfetch_fini();
1971 dbuf_fini();
1972 dnode_fini();
1973 dmu_objset_fini();
1974 xuio_stat_fini();
1975 sa_cache_fini();
1976 zfs_dbgmsg_fini();
1977 }
1978
1979 #if defined(_KERNEL) && defined(HAVE_SPL)
1980 EXPORT_SYMBOL(dmu_bonus_hold);
1981 EXPORT_SYMBOL(dmu_buf_hold_array_by_bonus);
1982 EXPORT_SYMBOL(dmu_buf_rele_array);
1983 EXPORT_SYMBOL(dmu_prefetch);
1984 EXPORT_SYMBOL(dmu_free_range);
1985 EXPORT_SYMBOL(dmu_free_long_range);
1986 EXPORT_SYMBOL(dmu_free_long_object);
1987 EXPORT_SYMBOL(dmu_read);
1988 EXPORT_SYMBOL(dmu_write);
1989 EXPORT_SYMBOL(dmu_prealloc);
1990 EXPORT_SYMBOL(dmu_object_info);
1991 EXPORT_SYMBOL(dmu_object_info_from_dnode);
1992 EXPORT_SYMBOL(dmu_object_info_from_db);
1993 EXPORT_SYMBOL(dmu_object_size_from_db);
1994 EXPORT_SYMBOL(dmu_object_set_blocksize);
1995 EXPORT_SYMBOL(dmu_object_set_checksum);
1996 EXPORT_SYMBOL(dmu_object_set_compress);
1997 EXPORT_SYMBOL(dmu_write_policy);
1998 EXPORT_SYMBOL(dmu_sync);
1999 EXPORT_SYMBOL(dmu_request_arcbuf);
2000 EXPORT_SYMBOL(dmu_return_arcbuf);
2001 EXPORT_SYMBOL(dmu_assign_arcbuf);
2002 EXPORT_SYMBOL(dmu_buf_hold);
2003 EXPORT_SYMBOL(dmu_ot);
2004
2005 module_param(zfs_mdcomp_disable, int, 0644);
2006 MODULE_PARM_DESC(zfs_mdcomp_disable, "Disable meta data compression");
2007
2008 module_param(zfs_nopwrite_enabled, int, 0644);
2009 MODULE_PARM_DESC(zfs_nopwrite_enabled, "Enable NOP writes");
2010
2011 #endif