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