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 2011 Nexenta Systems, Inc.  All rights reserved.
24  * Copyright (c) 2012, 2015 by Delphix. All rights reserved.
25  * Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
26  * Copyright (c) 2013, Joyent, Inc. All rights reserved.
27  */
28 
29 #include <sys/zfs_context.h>
30 #include <sys/dmu.h>
31 #include <sys/dmu_send.h>
32 #include <sys/dmu_impl.h>
33 #include <sys/dbuf.h>
34 #include <sys/dmu_objset.h>
35 #include <sys/dsl_dataset.h>
36 #include <sys/dsl_dir.h>
37 #include <sys/dmu_tx.h>
38 #include <sys/spa.h>
39 #include <sys/zio.h>
40 #include <sys/dmu_zfetch.h>
41 #include <sys/sa.h>
42 #include <sys/sa_impl.h>
43 #include <sys/range_tree.h>
44 
45 /*
46  * Number of times that zfs_free_range() took the slow path while doing
47  * a zfs receive.  A nonzero value indicates a potential performance problem.
48  */
49 uint64_t zfs_free_range_recv_miss;
50 
51 static void dbuf_destroy(dmu_buf_impl_t *db);
52 static boolean_t dbuf_undirty(dmu_buf_impl_t *db, dmu_tx_t *tx);
53 static void dbuf_write(dbuf_dirty_record_t *dr, arc_buf_t *data, dmu_tx_t *tx);
54 
55 /*
56  * Global data structures and functions for the dbuf cache.
57  */
58 static kmem_cache_t *dbuf_cache;
59 
60 /* ARGSUSED */
61 static int
dbuf_cons(void * vdb,void * unused,int kmflag)62 dbuf_cons(void *vdb, void *unused, int kmflag)
63 {
64 	dmu_buf_impl_t *db = vdb;
65 	bzero(db, sizeof (dmu_buf_impl_t));
66 
67 	mutex_init(&db->db_mtx, NULL, MUTEX_DEFAULT, NULL);
68 	cv_init(&db->db_changed, NULL, CV_DEFAULT, NULL);
69 	refcount_create(&db->db_holds);
70 	return (0);
71 }
72 
73 /* ARGSUSED */
74 static void
dbuf_dest(void * vdb,void * unused)75 dbuf_dest(void *vdb, void *unused)
76 {
77 	dmu_buf_impl_t *db = vdb;
78 	mutex_destroy(&db->db_mtx);
79 	cv_destroy(&db->db_changed);
80 	refcount_destroy(&db->db_holds);
81 }
82 
83 /*
84  * dbuf hash table routines
85  */
86 static dbuf_hash_table_t dbuf_hash_table;
87 
88 static uint64_t dbuf_hash_count;
89 
90 static uint64_t
dbuf_hash(void * os,uint64_t obj,uint8_t lvl,uint64_t blkid)91 dbuf_hash(void *os, uint64_t obj, uint8_t lvl, uint64_t blkid)
92 {
93 	uintptr_t osv = (uintptr_t)os;
94 	uint64_t crc = -1ULL;
95 
96 	ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY);
97 	crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (lvl)) & 0xFF];
98 	crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (osv >> 6)) & 0xFF];
99 	crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 0)) & 0xFF];
100 	crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 8)) & 0xFF];
101 	crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (blkid >> 0)) & 0xFF];
102 	crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (blkid >> 8)) & 0xFF];
103 
104 	crc ^= (osv>>14) ^ (obj>>16) ^ (blkid>>16);
105 
106 	return (crc);
107 }
108 
109 #define	DBUF_HASH(os, obj, level, blkid) dbuf_hash(os, obj, level, blkid);
110 
111 #define	DBUF_EQUAL(dbuf, os, obj, level, blkid)		\
112 	((dbuf)->db.db_object == (obj) &&		\
113 	(dbuf)->db_objset == (os) &&			\
114 	(dbuf)->db_level == (level) &&			\
115 	(dbuf)->db_blkid == (blkid))
116 
117 dmu_buf_impl_t *
dbuf_find(dnode_t * dn,uint8_t level,uint64_t blkid)118 dbuf_find(dnode_t *dn, uint8_t level, uint64_t blkid)
119 {
120 	dbuf_hash_table_t *h = &dbuf_hash_table;
121 	objset_t *os = dn->dn_objset;
122 	uint64_t obj = dn->dn_object;
123 	uint64_t hv = DBUF_HASH(os, obj, level, blkid);
124 	uint64_t idx = hv & h->hash_table_mask;
125 	dmu_buf_impl_t *db;
126 
127 	mutex_enter(DBUF_HASH_MUTEX(h, idx));
128 	for (db = h->hash_table[idx]; db != NULL; db = db->db_hash_next) {
129 		if (DBUF_EQUAL(db, os, obj, level, blkid)) {
130 			mutex_enter(&db->db_mtx);
131 			if (db->db_state != DB_EVICTING) {
132 				mutex_exit(DBUF_HASH_MUTEX(h, idx));
133 				return (db);
134 			}
135 			mutex_exit(&db->db_mtx);
136 		}
137 	}
138 	mutex_exit(DBUF_HASH_MUTEX(h, idx));
139 	return (NULL);
140 }
141 
142 /*
143  * Insert an entry into the hash table.  If there is already an element
144  * equal to elem in the hash table, then the already existing element
145  * will be returned and the new element will not be inserted.
146  * Otherwise returns NULL.
147  */
148 static dmu_buf_impl_t *
dbuf_hash_insert(dmu_buf_impl_t * db)149 dbuf_hash_insert(dmu_buf_impl_t *db)
150 {
151 	dbuf_hash_table_t *h = &dbuf_hash_table;
152 	objset_t *os = db->db_objset;
153 	uint64_t obj = db->db.db_object;
154 	int level = db->db_level;
155 	uint64_t blkid = db->db_blkid;
156 	uint64_t hv = DBUF_HASH(os, obj, level, blkid);
157 	uint64_t idx = hv & h->hash_table_mask;
158 	dmu_buf_impl_t *dbf;
159 
160 	mutex_enter(DBUF_HASH_MUTEX(h, idx));
161 	for (dbf = h->hash_table[idx]; dbf != NULL; dbf = dbf->db_hash_next) {
162 		if (DBUF_EQUAL(dbf, os, obj, level, blkid)) {
163 			mutex_enter(&dbf->db_mtx);
164 			if (dbf->db_state != DB_EVICTING) {
165 				mutex_exit(DBUF_HASH_MUTEX(h, idx));
166 				return (dbf);
167 			}
168 			mutex_exit(&dbf->db_mtx);
169 		}
170 	}
171 
172 	mutex_enter(&db->db_mtx);
173 	db->db_hash_next = h->hash_table[idx];
174 	h->hash_table[idx] = db;
175 	mutex_exit(DBUF_HASH_MUTEX(h, idx));
176 	atomic_add_64(&dbuf_hash_count, 1);
177 
178 	return (NULL);
179 }
180 
181 /*
182  * Remove an entry from the hash table.  This operation will
183  * fail if there are any existing holds on the db.
184  */
185 static void
dbuf_hash_remove(dmu_buf_impl_t * db)186 dbuf_hash_remove(dmu_buf_impl_t *db)
187 {
188 	dbuf_hash_table_t *h = &dbuf_hash_table;
189 	uint64_t hv = DBUF_HASH(db->db_objset, db->db.db_object,
190 	    db->db_level, db->db_blkid);
191 	uint64_t idx = hv & h->hash_table_mask;
192 	dmu_buf_impl_t *dbf, **dbp;
193 
194 	/*
195 	 * We musn't hold db_mtx to maintin lock ordering:
196 	 * DBUF_HASH_MUTEX > db_mtx.
197 	 */
198 	ASSERT(refcount_is_zero(&db->db_holds));
199 	ASSERT(db->db_state == DB_EVICTING);
200 	ASSERT(!MUTEX_HELD(&db->db_mtx));
201 
202 	mutex_enter(DBUF_HASH_MUTEX(h, idx));
203 	dbp = &h->hash_table[idx];
204 	while ((dbf = *dbp) != db) {
205 		dbp = &dbf->db_hash_next;
206 		ASSERT(dbf != NULL);
207 	}
208 	*dbp = db->db_hash_next;
209 	db->db_hash_next = NULL;
210 	mutex_exit(DBUF_HASH_MUTEX(h, idx));
211 	atomic_add_64(&dbuf_hash_count, -1);
212 }
213 
214 static arc_evict_func_t dbuf_do_evict;
215 
216 static void
dbuf_evict_user(dmu_buf_impl_t * db)217 dbuf_evict_user(dmu_buf_impl_t *db)
218 {
219 	ASSERT(MUTEX_HELD(&db->db_mtx));
220 
221 	if (db->db_level != 0 || db->db_evict_func == NULL)
222 		return;
223 
224 	if (db->db_user_data_ptr_ptr)
225 		*db->db_user_data_ptr_ptr = db->db.db_data;
226 	db->db_evict_func(&db->db, db->db_user_ptr);
227 	db->db_user_ptr = NULL;
228 	db->db_user_data_ptr_ptr = NULL;
229 	db->db_evict_func = NULL;
230 }
231 
232 boolean_t
dbuf_is_metadata(dmu_buf_impl_t * db)233 dbuf_is_metadata(dmu_buf_impl_t *db)
234 {
235 	if (db->db_level > 0) {
236 		return (B_TRUE);
237 	} else {
238 		boolean_t is_metadata;
239 
240 		DB_DNODE_ENTER(db);
241 		is_metadata = DMU_OT_IS_METADATA(DB_DNODE(db)->dn_type);
242 		DB_DNODE_EXIT(db);
243 
244 		return (is_metadata);
245 	}
246 }
247 
248 void
dbuf_evict(dmu_buf_impl_t * db)249 dbuf_evict(dmu_buf_impl_t *db)
250 {
251 	ASSERT(MUTEX_HELD(&db->db_mtx));
252 	ASSERT(db->db_buf == NULL);
253 	ASSERT(db->db_data_pending == NULL);
254 
255 	dbuf_clear(db);
256 	dbuf_destroy(db);
257 }
258 
259 void
dbuf_init(void)260 dbuf_init(void)
261 {
262 	uint64_t hsize = 1ULL << 16;
263 	dbuf_hash_table_t *h = &dbuf_hash_table;
264 	int i;
265 
266 	/*
267 	 * The hash table is big enough to fill all of physical memory
268 	 * with an average 4K block size.  The table will take up
269 	 * totalmem*sizeof(void*)/4K (i.e. 2MB/GB with 8-byte pointers).
270 	 */
271 	while (hsize * 4096 < (uint64_t)physmem * PAGESIZE)
272 		hsize <<= 1;
273 
274 retry:
275 	h->hash_table_mask = hsize - 1;
276 	h->hash_table = kmem_zalloc(hsize * sizeof (void *), KM_NOSLEEP);
277 	if (h->hash_table == NULL) {
278 		/* XXX - we should really return an error instead of assert */
279 		ASSERT(hsize > (1ULL << 10));
280 		hsize >>= 1;
281 		goto retry;
282 	}
283 
284 	dbuf_cache = kmem_cache_create("dmu_buf_impl_t",
285 	    sizeof (dmu_buf_impl_t),
286 	    0, dbuf_cons, dbuf_dest, NULL, NULL, NULL, 0);
287 
288 	for (i = 0; i < DBUF_MUTEXES; i++)
289 		mutex_init(&h->hash_mutexes[i], NULL, MUTEX_DEFAULT, NULL);
290 }
291 
292 void
dbuf_fini(void)293 dbuf_fini(void)
294 {
295 	dbuf_hash_table_t *h = &dbuf_hash_table;
296 	int i;
297 
298 	for (i = 0; i < DBUF_MUTEXES; i++)
299 		mutex_destroy(&h->hash_mutexes[i]);
300 	kmem_free(h->hash_table, (h->hash_table_mask + 1) * sizeof (void *));
301 	kmem_cache_destroy(dbuf_cache);
302 }
303 
304 /*
305  * Other stuff.
306  */
307 
308 #ifdef ZFS_DEBUG
309 static void
dbuf_verify(dmu_buf_impl_t * db)310 dbuf_verify(dmu_buf_impl_t *db)
311 {
312 	dnode_t *dn;
313 	dbuf_dirty_record_t *dr;
314 
315 	ASSERT(MUTEX_HELD(&db->db_mtx));
316 
317 	if (!(zfs_flags & ZFS_DEBUG_DBUF_VERIFY))
318 		return;
319 
320 	ASSERT(db->db_objset != NULL);
321 	DB_DNODE_ENTER(db);
322 	dn = DB_DNODE(db);
323 	if (dn == NULL) {
324 		ASSERT(db->db_parent == NULL);
325 		ASSERT(db->db_blkptr == NULL);
326 	} else {
327 		ASSERT3U(db->db.db_object, ==, dn->dn_object);
328 		ASSERT3P(db->db_objset, ==, dn->dn_objset);
329 		ASSERT3U(db->db_level, <, dn->dn_nlevels);
330 		ASSERT(db->db_blkid == DMU_BONUS_BLKID ||
331 		    db->db_blkid == DMU_SPILL_BLKID ||
332 		    !list_is_empty(&dn->dn_dbufs));
333 	}
334 	if (db->db_blkid == DMU_BONUS_BLKID) {
335 		ASSERT(dn != NULL);
336 		ASSERT3U(db->db.db_size, >=, dn->dn_bonuslen);
337 		ASSERT3U(db->db.db_offset, ==, DMU_BONUS_BLKID);
338 	} else if (db->db_blkid == DMU_SPILL_BLKID) {
339 		ASSERT(dn != NULL);
340 		ASSERT3U(db->db.db_size, >=, dn->dn_bonuslen);
341 		ASSERT0(db->db.db_offset);
342 	} else {
343 		ASSERT3U(db->db.db_offset, ==, db->db_blkid * db->db.db_size);
344 	}
345 
346 	for (dr = db->db_data_pending; dr != NULL; dr = dr->dr_next)
347 		ASSERT(dr->dr_dbuf == db);
348 
349 	for (dr = db->db_last_dirty; dr != NULL; dr = dr->dr_next)
350 		ASSERT(dr->dr_dbuf == db);
351 
352 	/*
353 	 * We can't assert that db_size matches dn_datablksz because it
354 	 * can be momentarily different when another thread is doing
355 	 * dnode_set_blksz().
356 	 */
357 	if (db->db_level == 0 && db->db.db_object == DMU_META_DNODE_OBJECT) {
358 		dr = db->db_data_pending;
359 		/*
360 		 * It should only be modified in syncing context, so
361 		 * make sure we only have one copy of the data.
362 		 */
363 		ASSERT(dr == NULL || dr->dt.dl.dr_data == db->db_buf);
364 	}
365 
366 	/* verify db->db_blkptr */
367 	if (db->db_blkptr) {
368 		if (db->db_parent == dn->dn_dbuf) {
369 			/* db is pointed to by the dnode */
370 			/* ASSERT3U(db->db_blkid, <, dn->dn_nblkptr); */
371 			if (DMU_OBJECT_IS_SPECIAL(db->db.db_object))
372 				ASSERT(db->db_parent == NULL);
373 			else
374 				ASSERT(db->db_parent != NULL);
375 			if (db->db_blkid != DMU_SPILL_BLKID)
376 				ASSERT3P(db->db_blkptr, ==,
377 				    &dn->dn_phys->dn_blkptr[db->db_blkid]);
378 		} else {
379 			/* db is pointed to by an indirect block */
380 			int epb = db->db_parent->db.db_size >> SPA_BLKPTRSHIFT;
381 			ASSERT3U(db->db_parent->db_level, ==, db->db_level+1);
382 			ASSERT3U(db->db_parent->db.db_object, ==,
383 			    db->db.db_object);
384 			/*
385 			 * dnode_grow_indblksz() can make this fail if we don't
386 			 * have the struct_rwlock.  XXX indblksz no longer
387 			 * grows.  safe to do this now?
388 			 */
389 			if (RW_WRITE_HELD(&dn->dn_struct_rwlock)) {
390 				ASSERT3P(db->db_blkptr, ==,
391 				    ((blkptr_t *)db->db_parent->db.db_data +
392 				    db->db_blkid % epb));
393 			}
394 		}
395 	}
396 	if ((db->db_blkptr == NULL || BP_IS_HOLE(db->db_blkptr)) &&
397 	    (db->db_buf == NULL || db->db_buf->b_data) &&
398 	    db->db.db_data && db->db_blkid != DMU_BONUS_BLKID &&
399 	    db->db_state != DB_FILL && !dn->dn_free_txg) {
400 		/*
401 		 * If the blkptr isn't set but they have nonzero data,
402 		 * it had better be dirty, otherwise we'll lose that
403 		 * data when we evict this buffer.
404 		 */
405 		if (db->db_dirtycnt == 0) {
406 			uint64_t *buf = db->db.db_data;
407 			int i;
408 
409 			for (i = 0; i < db->db.db_size >> 3; i++) {
410 				ASSERT(buf[i] == 0);
411 			}
412 		}
413 	}
414 	DB_DNODE_EXIT(db);
415 }
416 #endif
417 
418 static void
dbuf_update_data(dmu_buf_impl_t * db)419 dbuf_update_data(dmu_buf_impl_t *db)
420 {
421 	ASSERT(MUTEX_HELD(&db->db_mtx));
422 	if (db->db_level == 0 && db->db_user_data_ptr_ptr) {
423 		ASSERT(!refcount_is_zero(&db->db_holds));
424 		*db->db_user_data_ptr_ptr = db->db.db_data;
425 	}
426 }
427 
428 static void
dbuf_set_data(dmu_buf_impl_t * db,arc_buf_t * buf)429 dbuf_set_data(dmu_buf_impl_t *db, arc_buf_t *buf)
430 {
431 	ASSERT(MUTEX_HELD(&db->db_mtx));
432 	ASSERT(db->db_buf == NULL || !arc_has_callback(db->db_buf));
433 	db->db_buf = buf;
434 	if (buf != NULL) {
435 		ASSERT(buf->b_data != NULL);
436 		db->db.db_data = buf->b_data;
437 		if (!arc_released(buf))
438 			arc_set_callback(buf, dbuf_do_evict, db);
439 		dbuf_update_data(db);
440 	} else {
441 		dbuf_evict_user(db);
442 		db->db.db_data = NULL;
443 		if (db->db_state != DB_NOFILL)
444 			db->db_state = DB_UNCACHED;
445 	}
446 }
447 
448 /*
449  * Loan out an arc_buf for read.  Return the loaned arc_buf.
450  */
451 arc_buf_t *
dbuf_loan_arcbuf(dmu_buf_impl_t * db)452 dbuf_loan_arcbuf(dmu_buf_impl_t *db)
453 {
454 	arc_buf_t *abuf;
455 
456 	mutex_enter(&db->db_mtx);
457 	if (arc_released(db->db_buf) || refcount_count(&db->db_holds) > 1) {
458 		int blksz = db->db.db_size;
459 		spa_t *spa = db->db_objset->os_spa;
460 
461 		mutex_exit(&db->db_mtx);
462 		abuf = arc_loan_buf(spa, blksz);
463 		bcopy(db->db.db_data, abuf->b_data, blksz);
464 	} else {
465 		abuf = db->db_buf;
466 		arc_loan_inuse_buf(abuf, db);
467 		dbuf_set_data(db, NULL);
468 		mutex_exit(&db->db_mtx);
469 	}
470 	return (abuf);
471 }
472 
473 uint64_t
dbuf_whichblock(dnode_t * dn,uint64_t offset)474 dbuf_whichblock(dnode_t *dn, uint64_t offset)
475 {
476 	if (dn->dn_datablkshift) {
477 		return (offset >> dn->dn_datablkshift);
478 	} else {
479 		ASSERT3U(offset, <, dn->dn_datablksz);
480 		return (0);
481 	}
482 }
483 
484 static void
dbuf_read_done(zio_t * zio,arc_buf_t * buf,void * vdb)485 dbuf_read_done(zio_t *zio, arc_buf_t *buf, void *vdb)
486 {
487 	dmu_buf_impl_t *db = vdb;
488 
489 	mutex_enter(&db->db_mtx);
490 	ASSERT3U(db->db_state, ==, DB_READ);
491 	/*
492 	 * All reads are synchronous, so we must have a hold on the dbuf
493 	 */
494 	ASSERT(refcount_count(&db->db_holds) > 0);
495 	ASSERT(db->db_buf == NULL);
496 	ASSERT(db->db.db_data == NULL);
497 	if (db->db_level == 0 && db->db_freed_in_flight) {
498 		/* we were freed in flight; disregard any error */
499 		arc_release(buf, db);
500 		bzero(buf->b_data, db->db.db_size);
501 		arc_buf_freeze(buf);
502 		db->db_freed_in_flight = FALSE;
503 		dbuf_set_data(db, buf);
504 		db->db_state = DB_CACHED;
505 	} else if (zio == NULL || zio->io_error == 0) {
506 		dbuf_set_data(db, buf);
507 		db->db_state = DB_CACHED;
508 	} else {
509 		ASSERT(db->db_blkid != DMU_BONUS_BLKID);
510 		ASSERT3P(db->db_buf, ==, NULL);
511 		VERIFY(arc_buf_remove_ref(buf, db));
512 		db->db_state = DB_UNCACHED;
513 	}
514 	cv_broadcast(&db->db_changed);
515 	dbuf_rele_and_unlock(db, NULL);
516 }
517 
518 static void
dbuf_read_impl(dmu_buf_impl_t * db,zio_t * zio,uint32_t * flags)519 dbuf_read_impl(dmu_buf_impl_t *db, zio_t *zio, uint32_t *flags)
520 {
521 	dnode_t *dn;
522 	zbookmark_t zb;
523 	uint32_t aflags = ARC_NOWAIT;
524 
525 	DB_DNODE_ENTER(db);
526 	dn = DB_DNODE(db);
527 	ASSERT(!refcount_is_zero(&db->db_holds));
528 	/* We need the struct_rwlock to prevent db_blkptr from changing. */
529 	ASSERT(RW_LOCK_HELD(&dn->dn_struct_rwlock));
530 	ASSERT(MUTEX_HELD(&db->db_mtx));
531 	ASSERT(db->db_state == DB_UNCACHED);
532 	ASSERT(db->db_buf == NULL);
533 
534 	if (db->db_blkid == DMU_BONUS_BLKID) {
535 		int bonuslen = MIN(dn->dn_bonuslen, dn->dn_phys->dn_bonuslen);
536 
537 		ASSERT3U(bonuslen, <=, db->db.db_size);
538 		db->db.db_data = zio_buf_alloc(DN_MAX_BONUSLEN);
539 		arc_space_consume(DN_MAX_BONUSLEN, ARC_SPACE_OTHER);
540 		if (bonuslen < DN_MAX_BONUSLEN)
541 			bzero(db->db.db_data, DN_MAX_BONUSLEN);
542 		if (bonuslen)
543 			bcopy(DN_BONUS(dn->dn_phys), db->db.db_data, bonuslen);
544 		DB_DNODE_EXIT(db);
545 		dbuf_update_data(db);
546 		db->db_state = DB_CACHED;
547 		mutex_exit(&db->db_mtx);
548 		return;
549 	}
550 
551 	/*
552 	 * Recheck BP_IS_HOLE() after dnode_block_freed() in case dnode_sync()
553 	 * processes the delete record and clears the bp while we are waiting
554 	 * for the dn_mtx (resulting in a "no" from block_freed).
555 	 */
556 	if (db->db_blkptr == NULL || BP_IS_HOLE(db->db_blkptr) ||
557 	    (db->db_level == 0 && (dnode_block_freed(dn, db->db_blkid) ||
558 	    BP_IS_HOLE(db->db_blkptr)))) {
559 		arc_buf_contents_t type = DBUF_GET_BUFC_TYPE(db);
560 
561 		DB_DNODE_EXIT(db);
562 		dbuf_set_data(db, arc_buf_alloc(db->db_objset->os_spa,
563 		    db->db.db_size, db, type));
564 		bzero(db->db.db_data, db->db.db_size);
565 		db->db_state = DB_CACHED;
566 		*flags |= DB_RF_CACHED;
567 		mutex_exit(&db->db_mtx);
568 		return;
569 	}
570 
571 	DB_DNODE_EXIT(db);
572 
573 	db->db_state = DB_READ;
574 	mutex_exit(&db->db_mtx);
575 
576 	if (DBUF_IS_L2CACHEABLE(db))
577 		aflags |= ARC_L2CACHE;
578 	if (DBUF_IS_L2COMPRESSIBLE(db))
579 		aflags |= ARC_L2COMPRESS;
580 
581 	SET_BOOKMARK(&zb, db->db_objset->os_dsl_dataset ?
582 	    db->db_objset->os_dsl_dataset->ds_object : DMU_META_OBJSET,
583 	    db->db.db_object, db->db_level, db->db_blkid);
584 
585 	dbuf_add_ref(db, NULL);
586 
587 	(void) arc_read(zio, db->db_objset->os_spa, db->db_blkptr,
588 	    dbuf_read_done, db, ZIO_PRIORITY_SYNC_READ,
589 	    (*flags & DB_RF_CANFAIL) ? ZIO_FLAG_CANFAIL : ZIO_FLAG_MUSTSUCCEED,
590 	    &aflags, &zb);
591 	if (aflags & ARC_CACHED)
592 		*flags |= DB_RF_CACHED;
593 }
594 
595 int
dbuf_read(dmu_buf_impl_t * db,zio_t * zio,uint32_t flags)596 dbuf_read(dmu_buf_impl_t *db, zio_t *zio, uint32_t flags)
597 {
598 	int err = 0;
599 	boolean_t havepzio = (zio != NULL);
600 	boolean_t prefetch;
601 	dnode_t *dn;
602 
603 	/*
604 	 * We don't have to hold the mutex to check db_state because it
605 	 * can't be freed while we have a hold on the buffer.
606 	 */
607 	ASSERT(!refcount_is_zero(&db->db_holds));
608 
609 	if (db->db_state == DB_NOFILL)
610 		return (SET_ERROR(EIO));
611 
612 	DB_DNODE_ENTER(db);
613 	dn = DB_DNODE(db);
614 	if ((flags & DB_RF_HAVESTRUCT) == 0)
615 		rw_enter(&dn->dn_struct_rwlock, RW_READER);
616 
617 	prefetch = db->db_level == 0 && db->db_blkid != DMU_BONUS_BLKID &&
618 	    (flags & DB_RF_NOPREFETCH) == 0 && dn != NULL &&
619 	    DBUF_IS_CACHEABLE(db);
620 
621 	mutex_enter(&db->db_mtx);
622 	if (db->db_state == DB_CACHED) {
623 		mutex_exit(&db->db_mtx);
624 		if (prefetch)
625 			dmu_zfetch(&dn->dn_zfetch, db->db.db_offset,
626 			    db->db.db_size, TRUE);
627 		if ((flags & DB_RF_HAVESTRUCT) == 0)
628 			rw_exit(&dn->dn_struct_rwlock);
629 		DB_DNODE_EXIT(db);
630 	} else if (db->db_state == DB_UNCACHED) {
631 		spa_t *spa = dn->dn_objset->os_spa;
632 
633 		if (zio == NULL)
634 			zio = zio_root(spa, NULL, NULL, ZIO_FLAG_CANFAIL);
635 		dbuf_read_impl(db, zio, &flags);
636 
637 		/* dbuf_read_impl has dropped db_mtx for us */
638 
639 		if (prefetch)
640 			dmu_zfetch(&dn->dn_zfetch, db->db.db_offset,
641 			    db->db.db_size, flags & DB_RF_CACHED);
642 
643 		if ((flags & DB_RF_HAVESTRUCT) == 0)
644 			rw_exit(&dn->dn_struct_rwlock);
645 		DB_DNODE_EXIT(db);
646 
647 		if (!havepzio)
648 			err = zio_wait(zio);
649 	} else {
650 		/*
651 		 * Another reader came in while the dbuf was in flight
652 		 * between UNCACHED and CACHED.  Either a writer will finish
653 		 * writing the buffer (sending the dbuf to CACHED) or the
654 		 * first reader's request will reach the read_done callback
655 		 * and send the dbuf to CACHED.  Otherwise, a failure
656 		 * occurred and the dbuf went to UNCACHED.
657 		 */
658 		mutex_exit(&db->db_mtx);
659 		if (prefetch)
660 			dmu_zfetch(&dn->dn_zfetch, db->db.db_offset,
661 			    db->db.db_size, TRUE);
662 		if ((flags & DB_RF_HAVESTRUCT) == 0)
663 			rw_exit(&dn->dn_struct_rwlock);
664 		DB_DNODE_EXIT(db);
665 
666 		/* Skip the wait per the caller's request. */
667 		mutex_enter(&db->db_mtx);
668 		if ((flags & DB_RF_NEVERWAIT) == 0) {
669 			while (db->db_state == DB_READ ||
670 			    db->db_state == DB_FILL) {
671 				ASSERT(db->db_state == DB_READ ||
672 				    (flags & DB_RF_HAVESTRUCT) == 0);
673 				cv_wait(&db->db_changed, &db->db_mtx);
674 			}
675 			if (db->db_state == DB_UNCACHED)
676 				err = SET_ERROR(EIO);
677 		}
678 		mutex_exit(&db->db_mtx);
679 	}
680 
681 	ASSERT(err || havepzio || db->db_state == DB_CACHED);
682 	return (err);
683 }
684 
685 static void
dbuf_noread(dmu_buf_impl_t * db)686 dbuf_noread(dmu_buf_impl_t *db)
687 {
688 	ASSERT(!refcount_is_zero(&db->db_holds));
689 	ASSERT(db->db_blkid != DMU_BONUS_BLKID);
690 	mutex_enter(&db->db_mtx);
691 	while (db->db_state == DB_READ || db->db_state == DB_FILL)
692 		cv_wait(&db->db_changed, &db->db_mtx);
693 	if (db->db_state == DB_UNCACHED) {
694 		arc_buf_contents_t type = DBUF_GET_BUFC_TYPE(db);
695 		spa_t *spa = db->db_objset->os_spa;
696 
697 		ASSERT(db->db_buf == NULL);
698 		ASSERT(db->db.db_data == NULL);
699 		dbuf_set_data(db, arc_buf_alloc(spa, db->db.db_size, db, type));
700 		db->db_state = DB_FILL;
701 	} else if (db->db_state == DB_NOFILL) {
702 		dbuf_set_data(db, NULL);
703 	} else {
704 		ASSERT3U(db->db_state, ==, DB_CACHED);
705 	}
706 	mutex_exit(&db->db_mtx);
707 }
708 
709 /*
710  * This is our just-in-time copy function.  It makes a copy of
711  * buffers, that have been modified in a previous transaction
712  * group, before we modify them in the current active group.
713  *
714  * This function is used in two places: when we are dirtying a
715  * buffer for the first time in a txg, and when we are freeing
716  * a range in a dnode that includes this buffer.
717  *
718  * Note that when we are called from dbuf_free_range() we do
719  * not put a hold on the buffer, we just traverse the active
720  * dbuf list for the dnode.
721  */
722 static void
dbuf_fix_old_data(dmu_buf_impl_t * db,uint64_t txg)723 dbuf_fix_old_data(dmu_buf_impl_t *db, uint64_t txg)
724 {
725 	dbuf_dirty_record_t *dr = db->db_last_dirty;
726 
727 	ASSERT(MUTEX_HELD(&db->db_mtx));
728 	ASSERT(db->db.db_data != NULL);
729 	ASSERT(db->db_level == 0);
730 	ASSERT(db->db.db_object != DMU_META_DNODE_OBJECT);
731 
732 	if (dr == NULL ||
733 	    (dr->dt.dl.dr_data !=
734 	    ((db->db_blkid  == DMU_BONUS_BLKID) ? db->db.db_data : db->db_buf)))
735 		return;
736 
737 	/*
738 	 * If the last dirty record for this dbuf has not yet synced
739 	 * and its referencing the dbuf data, either:
740 	 *	reset the reference to point to a new copy,
741 	 * or (if there a no active holders)
742 	 *	just null out the current db_data pointer.
743 	 */
744 	ASSERT(dr->dr_txg >= txg - 2);
745 	if (db->db_blkid == DMU_BONUS_BLKID) {
746 		/* Note that the data bufs here are zio_bufs */
747 		dr->dt.dl.dr_data = zio_buf_alloc(DN_MAX_BONUSLEN);
748 		arc_space_consume(DN_MAX_BONUSLEN, ARC_SPACE_OTHER);
749 		bcopy(db->db.db_data, dr->dt.dl.dr_data, DN_MAX_BONUSLEN);
750 	} else if (refcount_count(&db->db_holds) > db->db_dirtycnt) {
751 		int size = db->db.db_size;
752 		arc_buf_contents_t type = DBUF_GET_BUFC_TYPE(db);
753 		spa_t *spa = db->db_objset->os_spa;
754 
755 		dr->dt.dl.dr_data = arc_buf_alloc(spa, size, db, type);
756 		bcopy(db->db.db_data, dr->dt.dl.dr_data->b_data, size);
757 	} else {
758 		dbuf_set_data(db, NULL);
759 	}
760 }
761 
762 void
dbuf_unoverride(dbuf_dirty_record_t * dr)763 dbuf_unoverride(dbuf_dirty_record_t *dr)
764 {
765 	dmu_buf_impl_t *db = dr->dr_dbuf;
766 	blkptr_t *bp = &dr->dt.dl.dr_overridden_by;
767 	uint64_t txg = dr->dr_txg;
768 
769 	ASSERT(MUTEX_HELD(&db->db_mtx));
770 	ASSERT(dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC);
771 	ASSERT(db->db_level == 0);
772 
773 	if (db->db_blkid == DMU_BONUS_BLKID ||
774 	    dr->dt.dl.dr_override_state == DR_NOT_OVERRIDDEN)
775 		return;
776 
777 	ASSERT(db->db_data_pending != dr);
778 
779 	/* free this block */
780 	if (!BP_IS_HOLE(bp) && !dr->dt.dl.dr_nopwrite)
781 		zio_free(db->db_objset->os_spa, txg, bp);
782 
783 	dr->dt.dl.dr_override_state = DR_NOT_OVERRIDDEN;
784 	dr->dt.dl.dr_nopwrite = B_FALSE;
785 
786 	/*
787 	 * Release the already-written buffer, so we leave it in
788 	 * a consistent dirty state.  Note that all callers are
789 	 * modifying the buffer, so they will immediately do
790 	 * another (redundant) arc_release().  Therefore, leave
791 	 * the buf thawed to save the effort of freezing &
792 	 * immediately re-thawing it.
793 	 */
794 	arc_release(dr->dt.dl.dr_data, db);
795 }
796 
797 /*
798  * Evict (if its unreferenced) or clear (if its referenced) any level-0
799  * data blocks in the free range, so that any future readers will find
800  * empty blocks.
801  *
802  * This is a no-op if the dataset is in the middle of an incremental
803  * receive; see comment below for details.
804  */
805 void
dbuf_free_range(dnode_t * dn,uint64_t start,uint64_t end,dmu_tx_t * tx)806 dbuf_free_range(dnode_t *dn, uint64_t start, uint64_t end, dmu_tx_t *tx)
807 {
808 	dmu_buf_impl_t *db, *db_next;
809 	uint64_t txg = tx->tx_txg;
810 
811 	if (end > dn->dn_maxblkid && (end != DMU_SPILL_BLKID))
812 		end = dn->dn_maxblkid;
813 	dprintf_dnode(dn, "start=%llu end=%llu\n", start, end);
814 
815 	mutex_enter(&dn->dn_dbufs_mtx);
816 	if (start >= dn->dn_unlisted_l0_blkid * dn->dn_datablksz) {
817 		/* There can't be any dbufs in this range; no need to search. */
818 		mutex_exit(&dn->dn_dbufs_mtx);
819 		return;
820 	} else if (dmu_objset_is_receiving(dn->dn_objset)) {
821 		/*
822 		 * If we are receiving, we expect there to be no dbufs in
823 		 * the range to be freed, because receive modifies each
824 		 * block at most once, and in offset order.  If this is
825 		 * not the case, it can lead to performance problems,
826 		 * so note that we unexpectedly took the slow path.
827 		 */
828 		atomic_inc_64(&zfs_free_range_recv_miss);
829 	}
830 
831 	for (db = list_head(&dn->dn_dbufs); db != NULL; db = db_next) {
832 		db_next = list_next(&dn->dn_dbufs, db);
833 		ASSERT(db->db_blkid != DMU_BONUS_BLKID);
834 
835 		if (db->db_level != 0)
836 			continue;
837 		if (db->db_blkid < start || db->db_blkid > end)
838 			continue;
839 
840 		/* found a level 0 buffer in the range */
841 		mutex_enter(&db->db_mtx);
842 		if (dbuf_undirty(db, tx)) {
843 			/* mutex has been dropped and dbuf destroyed */
844 			continue;
845 		}
846 
847 		if (db->db_state == DB_UNCACHED ||
848 		    db->db_state == DB_NOFILL ||
849 		    db->db_state == DB_EVICTING) {
850 			ASSERT(db->db.db_data == NULL);
851 			mutex_exit(&db->db_mtx);
852 			continue;
853 		}
854 		if (db->db_state == DB_READ || db->db_state == DB_FILL) {
855 			/* will be handled in dbuf_read_done or dbuf_rele */
856 			db->db_freed_in_flight = TRUE;
857 			mutex_exit(&db->db_mtx);
858 			continue;
859 		}
860 		if (refcount_count(&db->db_holds) == 0) {
861 			ASSERT(db->db_buf);
862 			dbuf_clear(db);
863 			continue;
864 		}
865 		/* The dbuf is referenced */
866 
867 		if (db->db_last_dirty != NULL) {
868 			dbuf_dirty_record_t *dr = db->db_last_dirty;
869 
870 			if (dr->dr_txg == txg) {
871 				/*
872 				 * This buffer is "in-use", re-adjust the file
873 				 * size to reflect that this buffer may
874 				 * contain new data when we sync.
875 				 */
876 				if (db->db_blkid != DMU_SPILL_BLKID &&
877 				    db->db_blkid > dn->dn_maxblkid)
878 					dn->dn_maxblkid = db->db_blkid;
879 				dbuf_unoverride(dr);
880 			} else {
881 				/*
882 				 * This dbuf is not dirty in the open context.
883 				 * Either uncache it (if its not referenced in
884 				 * the open context) or reset its contents to
885 				 * empty.
886 				 */
887 				dbuf_fix_old_data(db, txg);
888 			}
889 		}
890 		/* clear the contents if its cached */
891 		if (db->db_state == DB_CACHED) {
892 			ASSERT(db->db.db_data != NULL);
893 			arc_release(db->db_buf, db);
894 			bzero(db->db.db_data, db->db.db_size);
895 			arc_buf_freeze(db->db_buf);
896 		}
897 
898 		mutex_exit(&db->db_mtx);
899 	}
900 	mutex_exit(&dn->dn_dbufs_mtx);
901 }
902 
903 static int
dbuf_block_freeable(dmu_buf_impl_t * db)904 dbuf_block_freeable(dmu_buf_impl_t *db)
905 {
906 	dsl_dataset_t *ds = db->db_objset->os_dsl_dataset;
907 	uint64_t birth_txg = 0;
908 
909 	/*
910 	 * We don't need any locking to protect db_blkptr:
911 	 * If it's syncing, then db_last_dirty will be set
912 	 * so we'll ignore db_blkptr.
913 	 *
914 	 * This logic ensures that only block births for
915 	 * filled blocks are considered.
916 	 */
917 	ASSERT(MUTEX_HELD(&db->db_mtx));
918 	if (db->db_last_dirty && (db->db_blkptr == NULL ||
919 	    !BP_IS_HOLE(db->db_blkptr))) {
920 		birth_txg = db->db_last_dirty->dr_txg;
921 	} else if (db->db_blkptr != NULL && !BP_IS_HOLE(db->db_blkptr)) {
922 		birth_txg = db->db_blkptr->blk_birth;
923 	}
924 
925 	/*
926 	 * If this block don't exist or is in a snapshot, it can't be freed.
927 	 * Don't pass the bp to dsl_dataset_block_freeable() since we
928 	 * are holding the db_mtx lock and might deadlock if we are
929 	 * prefetching a dedup-ed block.
930 	 */
931 	if (birth_txg != 0)
932 		return (ds == NULL ||
933 		    dsl_dataset_block_freeable(ds, NULL, birth_txg));
934 	else
935 		return (B_FALSE);
936 }
937 
938 void
dbuf_new_size(dmu_buf_impl_t * db,int size,dmu_tx_t * tx)939 dbuf_new_size(dmu_buf_impl_t *db, int size, dmu_tx_t *tx)
940 {
941 	arc_buf_t *buf, *obuf;
942 	int osize = db->db.db_size;
943 	arc_buf_contents_t type = DBUF_GET_BUFC_TYPE(db);
944 	dnode_t *dn;
945 
946 	ASSERT(db->db_blkid != DMU_BONUS_BLKID);
947 
948 	DB_DNODE_ENTER(db);
949 	dn = DB_DNODE(db);
950 
951 	/* XXX does *this* func really need the lock? */
952 	ASSERT(RW_WRITE_HELD(&dn->dn_struct_rwlock));
953 
954 	/*
955 	 * This call to dmu_buf_will_dirty() with the dn_struct_rwlock held
956 	 * is OK, because there can be no other references to the db
957 	 * when we are changing its size, so no concurrent DB_FILL can
958 	 * be happening.
959 	 */
960 	/*
961 	 * XXX we should be doing a dbuf_read, checking the return
962 	 * value and returning that up to our callers
963 	 */
964 	dmu_buf_will_dirty(&db->db, tx);
965 
966 	/* create the data buffer for the new block */
967 	buf = arc_buf_alloc(dn->dn_objset->os_spa, size, db, type);
968 
969 	/* copy old block data to the new block */
970 	obuf = db->db_buf;
971 	bcopy(obuf->b_data, buf->b_data, MIN(osize, size));
972 	/* zero the remainder */
973 	if (size > osize)
974 		bzero((uint8_t *)buf->b_data + osize, size - osize);
975 
976 	mutex_enter(&db->db_mtx);
977 	dbuf_set_data(db, buf);
978 	VERIFY(arc_buf_remove_ref(obuf, db));
979 	db->db.db_size = size;
980 
981 	if (db->db_level == 0) {
982 		ASSERT3U(db->db_last_dirty->dr_txg, ==, tx->tx_txg);
983 		db->db_last_dirty->dt.dl.dr_data = buf;
984 	}
985 	mutex_exit(&db->db_mtx);
986 
987 	dnode_willuse_space(dn, size-osize, tx);
988 	DB_DNODE_EXIT(db);
989 }
990 
991 void
dbuf_release_bp(dmu_buf_impl_t * db)992 dbuf_release_bp(dmu_buf_impl_t *db)
993 {
994 	objset_t *os = db->db_objset;
995 
996 	ASSERT(dsl_pool_sync_context(dmu_objset_pool(os)));
997 	ASSERT(arc_released(os->os_phys_buf) ||
998 	    list_link_active(&os->os_dsl_dataset->ds_synced_link));
999 	ASSERT(db->db_parent == NULL || arc_released(db->db_parent->db_buf));
1000 
1001 	(void) arc_release(db->db_buf, db);
1002 }
1003 
1004 dbuf_dirty_record_t *
dbuf_dirty(dmu_buf_impl_t * db,dmu_tx_t * tx)1005 dbuf_dirty(dmu_buf_impl_t *db, dmu_tx_t *tx)
1006 {
1007 	dnode_t *dn;
1008 	objset_t *os;
1009 	dbuf_dirty_record_t **drp, *dr;
1010 	int drop_struct_lock = FALSE;
1011 	boolean_t do_free_accounting = B_FALSE;
1012 	int txgoff = tx->tx_txg & TXG_MASK;
1013 
1014 	ASSERT(tx->tx_txg != 0);
1015 	ASSERT(!refcount_is_zero(&db->db_holds));
1016 	DMU_TX_DIRTY_BUF(tx, db);
1017 
1018 	DB_DNODE_ENTER(db);
1019 	dn = DB_DNODE(db);
1020 	/*
1021 	 * Shouldn't dirty a regular buffer in syncing context.  Private
1022 	 * objects may be dirtied in syncing context, but only if they
1023 	 * were already pre-dirtied in open context.
1024 	 */
1025 	ASSERT(!dmu_tx_is_syncing(tx) ||
1026 	    BP_IS_HOLE(dn->dn_objset->os_rootbp) ||
1027 	    DMU_OBJECT_IS_SPECIAL(dn->dn_object) ||
1028 	    dn->dn_objset->os_dsl_dataset == NULL);
1029 	/*
1030 	 * We make this assert for private objects as well, but after we
1031 	 * check if we're already dirty.  They are allowed to re-dirty
1032 	 * in syncing context.
1033 	 */
1034 	ASSERT(dn->dn_object == DMU_META_DNODE_OBJECT ||
1035 	    dn->dn_dirtyctx == DN_UNDIRTIED || dn->dn_dirtyctx ==
1036 	    (dmu_tx_is_syncing(tx) ? DN_DIRTY_SYNC : DN_DIRTY_OPEN));
1037 
1038 	mutex_enter(&db->db_mtx);
1039 	/*
1040 	 * XXX make this true for indirects too?  The problem is that
1041 	 * transactions created with dmu_tx_create_assigned() from
1042 	 * syncing context don't bother holding ahead.
1043 	 */
1044 	ASSERT(db->db_level != 0 ||
1045 	    db->db_state == DB_CACHED || db->db_state == DB_FILL ||
1046 	    db->db_state == DB_NOFILL);
1047 
1048 	mutex_enter(&dn->dn_mtx);
1049 	/*
1050 	 * Don't set dirtyctx to SYNC if we're just modifying this as we
1051 	 * initialize the objset.
1052 	 */
1053 	if (dn->dn_dirtyctx == DN_UNDIRTIED &&
1054 	    !BP_IS_HOLE(dn->dn_objset->os_rootbp)) {
1055 		dn->dn_dirtyctx =
1056 		    (dmu_tx_is_syncing(tx) ? DN_DIRTY_SYNC : DN_DIRTY_OPEN);
1057 		ASSERT(dn->dn_dirtyctx_firstset == NULL);
1058 		dn->dn_dirtyctx_firstset = kmem_alloc(1, KM_SLEEP);
1059 	}
1060 	mutex_exit(&dn->dn_mtx);
1061 
1062 	if (db->db_blkid == DMU_SPILL_BLKID)
1063 		dn->dn_have_spill = B_TRUE;
1064 
1065 	/*
1066 	 * If this buffer is already dirty, we're done.
1067 	 */
1068 	drp = &db->db_last_dirty;
1069 	ASSERT(*drp == NULL || (*drp)->dr_txg <= tx->tx_txg ||
1070 	    db->db.db_object == DMU_META_DNODE_OBJECT);
1071 	while ((dr = *drp) != NULL && dr->dr_txg > tx->tx_txg)
1072 		drp = &dr->dr_next;
1073 	if (dr && dr->dr_txg == tx->tx_txg) {
1074 		DB_DNODE_EXIT(db);
1075 
1076 		if (db->db_level == 0 && db->db_blkid != DMU_BONUS_BLKID) {
1077 			/*
1078 			 * If this buffer has already been written out,
1079 			 * we now need to reset its state.
1080 			 */
1081 			dbuf_unoverride(dr);
1082 			if (db->db.db_object != DMU_META_DNODE_OBJECT &&
1083 			    db->db_state != DB_NOFILL)
1084 				arc_buf_thaw(db->db_buf);
1085 		}
1086 		mutex_exit(&db->db_mtx);
1087 		return (dr);
1088 	}
1089 
1090 	/*
1091 	 * Only valid if not already dirty.
1092 	 */
1093 	ASSERT(dn->dn_object == 0 ||
1094 	    dn->dn_dirtyctx == DN_UNDIRTIED || dn->dn_dirtyctx ==
1095 	    (dmu_tx_is_syncing(tx) ? DN_DIRTY_SYNC : DN_DIRTY_OPEN));
1096 
1097 	ASSERT3U(dn->dn_nlevels, >, db->db_level);
1098 	ASSERT((dn->dn_phys->dn_nlevels == 0 && db->db_level == 0) ||
1099 	    dn->dn_phys->dn_nlevels > db->db_level ||
1100 	    dn->dn_next_nlevels[txgoff] > db->db_level ||
1101 	    dn->dn_next_nlevels[(tx->tx_txg-1) & TXG_MASK] > db->db_level ||
1102 	    dn->dn_next_nlevels[(tx->tx_txg-2) & TXG_MASK] > db->db_level);
1103 
1104 	/*
1105 	 * We should only be dirtying in syncing context if it's the
1106 	 * mos or we're initializing the os or it's a special object.
1107 	 * However, we are allowed to dirty in syncing context provided
1108 	 * we already dirtied it in open context.  Hence we must make
1109 	 * this assertion only if we're not already dirty.
1110 	 */
1111 	os = dn->dn_objset;
1112 	ASSERT(!dmu_tx_is_syncing(tx) || DMU_OBJECT_IS_SPECIAL(dn->dn_object) ||
1113 	    os->os_dsl_dataset == NULL || BP_IS_HOLE(os->os_rootbp));
1114 	ASSERT(db->db.db_size != 0);
1115 
1116 	dprintf_dbuf(db, "size=%llx\n", (u_longlong_t)db->db.db_size);
1117 
1118 	if (db->db_blkid != DMU_BONUS_BLKID) {
1119 		/*
1120 		 * Update the accounting.
1121 		 * Note: we delay "free accounting" until after we drop
1122 		 * the db_mtx.  This keeps us from grabbing other locks
1123 		 * (and possibly deadlocking) in bp_get_dsize() while
1124 		 * also holding the db_mtx.
1125 		 */
1126 		dnode_willuse_space(dn, db->db.db_size, tx);
1127 		do_free_accounting = dbuf_block_freeable(db);
1128 	}
1129 
1130 	/*
1131 	 * If this buffer is dirty in an old transaction group we need
1132 	 * to make a copy of it so that the changes we make in this
1133 	 * transaction group won't leak out when we sync the older txg.
1134 	 */
1135 	dr = kmem_zalloc(sizeof (dbuf_dirty_record_t), KM_SLEEP);
1136 	if (db->db_level == 0) {
1137 		void *data_old = db->db_buf;
1138 
1139 		if (db->db_state != DB_NOFILL) {
1140 			if (db->db_blkid == DMU_BONUS_BLKID) {
1141 				dbuf_fix_old_data(db, tx->tx_txg);
1142 				data_old = db->db.db_data;
1143 			} else if (db->db.db_object != DMU_META_DNODE_OBJECT) {
1144 				/*
1145 				 * Release the data buffer from the cache so
1146 				 * that we can modify it without impacting
1147 				 * possible other users of this cached data
1148 				 * block.  Note that indirect blocks and
1149 				 * private objects are not released until the
1150 				 * syncing state (since they are only modified
1151 				 * then).
1152 				 */
1153 				arc_release(db->db_buf, db);
1154 				dbuf_fix_old_data(db, tx->tx_txg);
1155 				data_old = db->db_buf;
1156 			}
1157 			ASSERT(data_old != NULL);
1158 		}
1159 		dr->dt.dl.dr_data = data_old;
1160 	} else {
1161 		mutex_init(&dr->dt.di.dr_mtx, NULL, MUTEX_DEFAULT, NULL);
1162 		list_create(&dr->dt.di.dr_children,
1163 		    sizeof (dbuf_dirty_record_t),
1164 		    offsetof(dbuf_dirty_record_t, dr_dirty_node));
1165 	}
1166 	if (db->db_blkid != DMU_BONUS_BLKID && os->os_dsl_dataset != NULL)
1167 		dr->dr_accounted = db->db.db_size;
1168 	dr->dr_dbuf = db;
1169 	dr->dr_txg = tx->tx_txg;
1170 	dr->dr_next = *drp;
1171 	*drp = dr;
1172 
1173 	/*
1174 	 * We could have been freed_in_flight between the dbuf_noread
1175 	 * and dbuf_dirty.  We win, as though the dbuf_noread() had
1176 	 * happened after the free.
1177 	 */
1178 	if (db->db_level == 0 && db->db_blkid != DMU_BONUS_BLKID &&
1179 	    db->db_blkid != DMU_SPILL_BLKID) {
1180 		mutex_enter(&dn->dn_mtx);
1181 		if (dn->dn_free_ranges[txgoff] != NULL) {
1182 			range_tree_clear(dn->dn_free_ranges[txgoff],
1183 			    db->db_blkid, 1);
1184 		}
1185 		mutex_exit(&dn->dn_mtx);
1186 		db->db_freed_in_flight = FALSE;
1187 	}
1188 
1189 	/*
1190 	 * This buffer is now part of this txg
1191 	 */
1192 	dbuf_add_ref(db, (void *)(uintptr_t)tx->tx_txg);
1193 	db->db_dirtycnt += 1;
1194 	ASSERT3U(db->db_dirtycnt, <=, 3);
1195 
1196 	mutex_exit(&db->db_mtx);
1197 
1198 	if (db->db_blkid == DMU_BONUS_BLKID ||
1199 	    db->db_blkid == DMU_SPILL_BLKID) {
1200 		mutex_enter(&dn->dn_mtx);
1201 		ASSERT(!list_link_active(&dr->dr_dirty_node));
1202 		list_insert_tail(&dn->dn_dirty_records[txgoff], dr);
1203 		mutex_exit(&dn->dn_mtx);
1204 		dnode_setdirty(dn, tx);
1205 		DB_DNODE_EXIT(db);
1206 		return (dr);
1207 	} else if (do_free_accounting) {
1208 		blkptr_t *bp = db->db_blkptr;
1209 		int64_t willfree = (bp && !BP_IS_HOLE(bp)) ?
1210 		    bp_get_dsize(os->os_spa, bp) : db->db.db_size;
1211 		/*
1212 		 * This is only a guess -- if the dbuf is dirty
1213 		 * in a previous txg, we don't know how much
1214 		 * space it will use on disk yet.  We should
1215 		 * really have the struct_rwlock to access
1216 		 * db_blkptr, but since this is just a guess,
1217 		 * it's OK if we get an odd answer.
1218 		 */
1219 		ddt_prefetch(os->os_spa, bp);
1220 		dnode_willuse_space(dn, -willfree, tx);
1221 	}
1222 
1223 	if (!RW_WRITE_HELD(&dn->dn_struct_rwlock)) {
1224 		rw_enter(&dn->dn_struct_rwlock, RW_READER);
1225 		drop_struct_lock = TRUE;
1226 	}
1227 
1228 	if (db->db_level == 0) {
1229 		dnode_new_blkid(dn, db->db_blkid, tx, drop_struct_lock);
1230 		ASSERT(dn->dn_maxblkid >= db->db_blkid);
1231 	}
1232 
1233 	if (db->db_level+1 < dn->dn_nlevels) {
1234 		dmu_buf_impl_t *parent = db->db_parent;
1235 		dbuf_dirty_record_t *di;
1236 		int parent_held = FALSE;
1237 
1238 		if (db->db_parent == NULL || db->db_parent == dn->dn_dbuf) {
1239 			int epbs = dn->dn_indblkshift - SPA_BLKPTRSHIFT;
1240 
1241 			parent = dbuf_hold_level(dn, db->db_level+1,
1242 			    db->db_blkid >> epbs, FTAG);
1243 			ASSERT(parent != NULL);
1244 			parent_held = TRUE;
1245 		}
1246 		if (drop_struct_lock)
1247 			rw_exit(&dn->dn_struct_rwlock);
1248 		ASSERT3U(db->db_level+1, ==, parent->db_level);
1249 		di = dbuf_dirty(parent, tx);
1250 		if (parent_held)
1251 			dbuf_rele(parent, FTAG);
1252 
1253 		mutex_enter(&db->db_mtx);
1254 		/*
1255 		 * Since we've dropped the mutex, it's possible that
1256 		 * dbuf_undirty() might have changed this out from under us.
1257 		 */
1258 		if (db->db_last_dirty == dr ||
1259 		    dn->dn_object == DMU_META_DNODE_OBJECT) {
1260 			mutex_enter(&di->dt.di.dr_mtx);
1261 			ASSERT3U(di->dr_txg, ==, tx->tx_txg);
1262 			ASSERT(!list_link_active(&dr->dr_dirty_node));
1263 			list_insert_tail(&di->dt.di.dr_children, dr);
1264 			mutex_exit(&di->dt.di.dr_mtx);
1265 			dr->dr_parent = di;
1266 		}
1267 		mutex_exit(&db->db_mtx);
1268 	} else {
1269 		ASSERT(db->db_level+1 == dn->dn_nlevels);
1270 		ASSERT(db->db_blkid < dn->dn_nblkptr);
1271 		ASSERT(db->db_parent == NULL || db->db_parent == dn->dn_dbuf);
1272 		mutex_enter(&dn->dn_mtx);
1273 		ASSERT(!list_link_active(&dr->dr_dirty_node));
1274 		list_insert_tail(&dn->dn_dirty_records[txgoff], dr);
1275 		mutex_exit(&dn->dn_mtx);
1276 		if (drop_struct_lock)
1277 			rw_exit(&dn->dn_struct_rwlock);
1278 	}
1279 
1280 	dnode_setdirty(dn, tx);
1281 	DB_DNODE_EXIT(db);
1282 	return (dr);
1283 }
1284 
1285 /*
1286  * Undirty a buffer in the transaction group referenced by the given
1287  * transaction.  Return whether this evicted the dbuf.
1288  */
1289 static boolean_t
dbuf_undirty(dmu_buf_impl_t * db,dmu_tx_t * tx)1290 dbuf_undirty(dmu_buf_impl_t *db, dmu_tx_t *tx)
1291 {
1292 	dnode_t *dn;
1293 	uint64_t txg = tx->tx_txg;
1294 	dbuf_dirty_record_t *dr, **drp;
1295 
1296 	ASSERT(txg != 0);
1297 
1298 	/*
1299 	 * Due to our use of dn_nlevels below, this can only be called
1300 	 * in open context, unless we are operating on the MOS.
1301 	 * From syncing context, dn_nlevels may be different from the
1302 	 * dn_nlevels used when dbuf was dirtied.
1303 	 */
1304 	ASSERT(db->db_objset ==
1305 	    dmu_objset_pool(db->db_objset)->dp_meta_objset ||
1306 	    txg != spa_syncing_txg(dmu_objset_spa(db->db_objset)));
1307 	ASSERT(db->db_blkid != DMU_BONUS_BLKID);
1308 	ASSERT0(db->db_level);
1309 	ASSERT(MUTEX_HELD(&db->db_mtx));
1310 
1311 	/*
1312 	 * If this buffer is not dirty, we're done.
1313 	 */
1314 	for (drp = &db->db_last_dirty; (dr = *drp) != NULL; drp = &dr->dr_next)
1315 		if (dr->dr_txg <= txg)
1316 			break;
1317 	if (dr == NULL || dr->dr_txg < txg)
1318 		return (B_FALSE);
1319 	ASSERT(dr->dr_txg == txg);
1320 	ASSERT(dr->dr_dbuf == db);
1321 
1322 	DB_DNODE_ENTER(db);
1323 	dn = DB_DNODE(db);
1324 
1325 	dprintf_dbuf(db, "size=%llx\n", (u_longlong_t)db->db.db_size);
1326 
1327 	ASSERT(db->db.db_size != 0);
1328 
1329 	dsl_pool_undirty_space(dmu_objset_pool(dn->dn_objset),
1330 	    dr->dr_accounted, txg);
1331 
1332 	*drp = dr->dr_next;
1333 
1334 	/*
1335 	 * Note that there are three places in dbuf_dirty()
1336 	 * where this dirty record may be put on a list.
1337 	 * Make sure to do a list_remove corresponding to
1338 	 * every one of those list_insert calls.
1339 	 */
1340 	if (dr->dr_parent) {
1341 		mutex_enter(&dr->dr_parent->dt.di.dr_mtx);
1342 		list_remove(&dr->dr_parent->dt.di.dr_children, dr);
1343 		mutex_exit(&dr->dr_parent->dt.di.dr_mtx);
1344 	} else if (db->db_blkid == DMU_SPILL_BLKID ||
1345 	    db->db_level + 1 == dn->dn_nlevels) {
1346 		ASSERT(db->db_blkptr == NULL || db->db_parent == dn->dn_dbuf);
1347 		mutex_enter(&dn->dn_mtx);
1348 		list_remove(&dn->dn_dirty_records[txg & TXG_MASK], dr);
1349 		mutex_exit(&dn->dn_mtx);
1350 	}
1351 	DB_DNODE_EXIT(db);
1352 
1353 	if (db->db_state != DB_NOFILL) {
1354 		dbuf_unoverride(dr);
1355 
1356 		ASSERT(db->db_buf != NULL);
1357 		ASSERT(dr->dt.dl.dr_data != NULL);
1358 		if (dr->dt.dl.dr_data != db->db_buf)
1359 			VERIFY(arc_buf_remove_ref(dr->dt.dl.dr_data, db));
1360 	}
1361 
1362 	kmem_free(dr, sizeof (dbuf_dirty_record_t));
1363 
1364 	ASSERT(db->db_dirtycnt > 0);
1365 	db->db_dirtycnt -= 1;
1366 
1367 	if (refcount_remove(&db->db_holds, (void *)(uintptr_t)txg) == 0) {
1368 		arc_buf_t *buf = db->db_buf;
1369 
1370 		ASSERT(db->db_state == DB_NOFILL || arc_released(buf));
1371 		dbuf_set_data(db, NULL);
1372 		VERIFY(arc_buf_remove_ref(buf, db));
1373 		dbuf_evict(db);
1374 		return (B_TRUE);
1375 	}
1376 
1377 	return (B_FALSE);
1378 }
1379 
1380 void
dmu_buf_will_dirty(dmu_buf_t * db_fake,dmu_tx_t * tx)1381 dmu_buf_will_dirty(dmu_buf_t *db_fake, dmu_tx_t *tx)
1382 {
1383 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
1384 	int rf = DB_RF_MUST_SUCCEED | DB_RF_NOPREFETCH;
1385 
1386 	ASSERT(tx->tx_txg != 0);
1387 	ASSERT(!refcount_is_zero(&db->db_holds));
1388 
1389 	DB_DNODE_ENTER(db);
1390 	if (RW_WRITE_HELD(&DB_DNODE(db)->dn_struct_rwlock))
1391 		rf |= DB_RF_HAVESTRUCT;
1392 	DB_DNODE_EXIT(db);
1393 	(void) dbuf_read(db, NULL, rf);
1394 	(void) dbuf_dirty(db, tx);
1395 }
1396 
1397 void
dmu_buf_will_not_fill(dmu_buf_t * db_fake,dmu_tx_t * tx)1398 dmu_buf_will_not_fill(dmu_buf_t *db_fake, dmu_tx_t *tx)
1399 {
1400 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
1401 
1402 	db->db_state = DB_NOFILL;
1403 
1404 	dmu_buf_will_fill(db_fake, tx);
1405 }
1406 
1407 void
dmu_buf_will_fill(dmu_buf_t * db_fake,dmu_tx_t * tx)1408 dmu_buf_will_fill(dmu_buf_t *db_fake, dmu_tx_t *tx)
1409 {
1410 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
1411 
1412 	ASSERT(db->db_blkid != DMU_BONUS_BLKID);
1413 	ASSERT(tx->tx_txg != 0);
1414 	ASSERT(db->db_level == 0);
1415 	ASSERT(!refcount_is_zero(&db->db_holds));
1416 
1417 	ASSERT(db->db.db_object != DMU_META_DNODE_OBJECT ||
1418 	    dmu_tx_private_ok(tx));
1419 
1420 	dbuf_noread(db);
1421 	(void) dbuf_dirty(db, tx);
1422 }
1423 
1424 #pragma weak dmu_buf_fill_done = dbuf_fill_done
1425 /* ARGSUSED */
1426 void
dbuf_fill_done(dmu_buf_impl_t * db,dmu_tx_t * tx)1427 dbuf_fill_done(dmu_buf_impl_t *db, dmu_tx_t *tx)
1428 {
1429 	mutex_enter(&db->db_mtx);
1430 	DBUF_VERIFY(db);
1431 
1432 	if (db->db_state == DB_FILL) {
1433 		if (db->db_level == 0 && db->db_freed_in_flight) {
1434 			ASSERT(db->db_blkid != DMU_BONUS_BLKID);
1435 			/* we were freed while filling */
1436 			/* XXX dbuf_undirty? */
1437 			bzero(db->db.db_data, db->db.db_size);
1438 			db->db_freed_in_flight = FALSE;
1439 		}
1440 		db->db_state = DB_CACHED;
1441 		cv_broadcast(&db->db_changed);
1442 	}
1443 	mutex_exit(&db->db_mtx);
1444 }
1445 
1446 /*
1447  * Directly assign a provided arc buf to a given dbuf if it's not referenced
1448  * by anybody except our caller. Otherwise copy arcbuf's contents to dbuf.
1449  */
1450 void
dbuf_assign_arcbuf(dmu_buf_impl_t * db,arc_buf_t * buf,dmu_tx_t * tx)1451 dbuf_assign_arcbuf(dmu_buf_impl_t *db, arc_buf_t *buf, dmu_tx_t *tx)
1452 {
1453 	ASSERT(!refcount_is_zero(&db->db_holds));
1454 	ASSERT(db->db_blkid != DMU_BONUS_BLKID);
1455 	ASSERT(db->db_level == 0);
1456 	ASSERT(DBUF_GET_BUFC_TYPE(db) == ARC_BUFC_DATA);
1457 	ASSERT(buf != NULL);
1458 	ASSERT(arc_buf_size(buf) == db->db.db_size);
1459 	ASSERT(tx->tx_txg != 0);
1460 
1461 	arc_return_buf(buf, db);
1462 	ASSERT(arc_released(buf));
1463 
1464 	mutex_enter(&db->db_mtx);
1465 
1466 	while (db->db_state == DB_READ || db->db_state == DB_FILL)
1467 		cv_wait(&db->db_changed, &db->db_mtx);
1468 
1469 	ASSERT(db->db_state == DB_CACHED || db->db_state == DB_UNCACHED);
1470 
1471 	if (db->db_state == DB_CACHED &&
1472 	    refcount_count(&db->db_holds) - 1 > db->db_dirtycnt) {
1473 		mutex_exit(&db->db_mtx);
1474 		(void) dbuf_dirty(db, tx);
1475 		bcopy(buf->b_data, db->db.db_data, db->db.db_size);
1476 		VERIFY(arc_buf_remove_ref(buf, db));
1477 		xuio_stat_wbuf_copied();
1478 		return;
1479 	}
1480 
1481 	xuio_stat_wbuf_nocopy();
1482 	if (db->db_state == DB_CACHED) {
1483 		dbuf_dirty_record_t *dr = db->db_last_dirty;
1484 
1485 		ASSERT(db->db_buf != NULL);
1486 		if (dr != NULL && dr->dr_txg == tx->tx_txg) {
1487 			ASSERT(dr->dt.dl.dr_data == db->db_buf);
1488 			if (!arc_released(db->db_buf)) {
1489 				ASSERT(dr->dt.dl.dr_override_state ==
1490 				    DR_OVERRIDDEN);
1491 				arc_release(db->db_buf, db);
1492 			}
1493 			dr->dt.dl.dr_data = buf;
1494 			VERIFY(arc_buf_remove_ref(db->db_buf, db));
1495 		} else if (dr == NULL || dr->dt.dl.dr_data != db->db_buf) {
1496 			arc_release(db->db_buf, db);
1497 			VERIFY(arc_buf_remove_ref(db->db_buf, db));
1498 		}
1499 		db->db_buf = NULL;
1500 	}
1501 	ASSERT(db->db_buf == NULL);
1502 	dbuf_set_data(db, buf);
1503 	db->db_state = DB_FILL;
1504 	mutex_exit(&db->db_mtx);
1505 	(void) dbuf_dirty(db, tx);
1506 	dmu_buf_fill_done(&db->db, tx);
1507 }
1508 
1509 /*
1510  * "Clear" the contents of this dbuf.  This will mark the dbuf
1511  * EVICTING and clear *most* of its references.  Unfortunately,
1512  * when we are not holding the dn_dbufs_mtx, we can't clear the
1513  * entry in the dn_dbufs list.  We have to wait until dbuf_destroy()
1514  * in this case.  For callers from the DMU we will usually see:
1515  *	dbuf_clear()->arc_buf_evict()->dbuf_do_evict()->dbuf_destroy()
1516  * For the arc callback, we will usually see:
1517  *	dbuf_do_evict()->dbuf_clear();dbuf_destroy()
1518  * Sometimes, though, we will get a mix of these two:
1519  *	DMU: dbuf_clear()->arc_buf_evict()
1520  *	ARC: dbuf_do_evict()->dbuf_destroy()
1521  */
1522 void
dbuf_clear(dmu_buf_impl_t * db)1523 dbuf_clear(dmu_buf_impl_t *db)
1524 {
1525 	dnode_t *dn;
1526 	dmu_buf_impl_t *parent = db->db_parent;
1527 	dmu_buf_impl_t *dndb;
1528 	int dbuf_gone = FALSE;
1529 
1530 	ASSERT(MUTEX_HELD(&db->db_mtx));
1531 	ASSERT(refcount_is_zero(&db->db_holds));
1532 
1533 	dbuf_evict_user(db);
1534 
1535 	if (db->db_state == DB_CACHED) {
1536 		ASSERT(db->db.db_data != NULL);
1537 		if (db->db_blkid == DMU_BONUS_BLKID) {
1538 			zio_buf_free(db->db.db_data, DN_MAX_BONUSLEN);
1539 			arc_space_return(DN_MAX_BONUSLEN, ARC_SPACE_OTHER);
1540 		}
1541 		db->db.db_data = NULL;
1542 		db->db_state = DB_UNCACHED;
1543 	}
1544 
1545 	ASSERT(db->db_state == DB_UNCACHED || db->db_state == DB_NOFILL);
1546 	ASSERT(db->db_data_pending == NULL);
1547 
1548 	db->db_state = DB_EVICTING;
1549 	db->db_blkptr = NULL;
1550 
1551 	DB_DNODE_ENTER(db);
1552 	dn = DB_DNODE(db);
1553 	dndb = dn->dn_dbuf;
1554 	if (db->db_blkid != DMU_BONUS_BLKID && MUTEX_HELD(&dn->dn_dbufs_mtx)) {
1555 		list_remove(&dn->dn_dbufs, db);
1556 		(void) atomic_dec_32_nv(&dn->dn_dbufs_count);
1557 		membar_producer();
1558 		DB_DNODE_EXIT(db);
1559 		/*
1560 		 * Decrementing the dbuf count means that the hold corresponding
1561 		 * to the removed dbuf is no longer discounted in dnode_move(),
1562 		 * so the dnode cannot be moved until after we release the hold.
1563 		 * The membar_producer() ensures visibility of the decremented
1564 		 * value in dnode_move(), since DB_DNODE_EXIT doesn't actually
1565 		 * release any lock.
1566 		 */
1567 		dnode_rele(dn, db);
1568 		db->db_dnode_handle = NULL;
1569 	} else {
1570 		DB_DNODE_EXIT(db);
1571 	}
1572 
1573 	if (db->db_buf)
1574 		dbuf_gone = arc_buf_evict(db->db_buf);
1575 
1576 	if (!dbuf_gone)
1577 		mutex_exit(&db->db_mtx);
1578 
1579 	/*
1580 	 * If this dbuf is referenced from an indirect dbuf,
1581 	 * decrement the ref count on the indirect dbuf.
1582 	 */
1583 	if (parent && parent != dndb)
1584 		dbuf_rele(parent, db);
1585 }
1586 
1587 static int
dbuf_findbp(dnode_t * dn,int level,uint64_t blkid,int fail_sparse,dmu_buf_impl_t ** parentp,blkptr_t ** bpp)1588 dbuf_findbp(dnode_t *dn, int level, uint64_t blkid, int fail_sparse,
1589     dmu_buf_impl_t **parentp, blkptr_t **bpp)
1590 {
1591 	int nlevels, epbs;
1592 
1593 	*parentp = NULL;
1594 	*bpp = NULL;
1595 
1596 	ASSERT(blkid != DMU_BONUS_BLKID);
1597 
1598 	if (blkid == DMU_SPILL_BLKID) {
1599 		mutex_enter(&dn->dn_mtx);
1600 		if (dn->dn_have_spill &&
1601 		    (dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR))
1602 			*bpp = &dn->dn_phys->dn_spill;
1603 		else
1604 			*bpp = NULL;
1605 		dbuf_add_ref(dn->dn_dbuf, NULL);
1606 		*parentp = dn->dn_dbuf;
1607 		mutex_exit(&dn->dn_mtx);
1608 		return (0);
1609 	}
1610 
1611 	if (dn->dn_phys->dn_nlevels == 0)
1612 		nlevels = 1;
1613 	else
1614 		nlevels = dn->dn_phys->dn_nlevels;
1615 
1616 	epbs = dn->dn_indblkshift - SPA_BLKPTRSHIFT;
1617 
1618 	ASSERT3U(level * epbs, <, 64);
1619 	ASSERT(RW_LOCK_HELD(&dn->dn_struct_rwlock));
1620 	if (level >= nlevels ||
1621 	    (blkid > (dn->dn_phys->dn_maxblkid >> (level * epbs)))) {
1622 		/* the buffer has no parent yet */
1623 		return (SET_ERROR(ENOENT));
1624 	} else if (level < nlevels-1) {
1625 		/* this block is referenced from an indirect block */
1626 		int err = dbuf_hold_impl(dn, level+1,
1627 		    blkid >> epbs, fail_sparse, NULL, parentp);
1628 		if (err)
1629 			return (err);
1630 		err = dbuf_read(*parentp, NULL,
1631 		    (DB_RF_HAVESTRUCT | DB_RF_NOPREFETCH | DB_RF_CANFAIL));
1632 		if (err) {
1633 			dbuf_rele(*parentp, NULL);
1634 			*parentp = NULL;
1635 			return (err);
1636 		}
1637 		*bpp = ((blkptr_t *)(*parentp)->db.db_data) +
1638 		    (blkid & ((1ULL << epbs) - 1));
1639 		return (0);
1640 	} else {
1641 		/* the block is referenced from the dnode */
1642 		ASSERT3U(level, ==, nlevels-1);
1643 		ASSERT(dn->dn_phys->dn_nblkptr == 0 ||
1644 		    blkid < dn->dn_phys->dn_nblkptr);
1645 		if (dn->dn_dbuf) {
1646 			dbuf_add_ref(dn->dn_dbuf, NULL);
1647 			*parentp = dn->dn_dbuf;
1648 		}
1649 		*bpp = &dn->dn_phys->dn_blkptr[blkid];
1650 		return (0);
1651 	}
1652 }
1653 
1654 static dmu_buf_impl_t *
dbuf_create(dnode_t * dn,uint8_t level,uint64_t blkid,dmu_buf_impl_t * parent,blkptr_t * blkptr)1655 dbuf_create(dnode_t *dn, uint8_t level, uint64_t blkid,
1656     dmu_buf_impl_t *parent, blkptr_t *blkptr)
1657 {
1658 	objset_t *os = dn->dn_objset;
1659 	dmu_buf_impl_t *db, *odb;
1660 
1661 	ASSERT(RW_LOCK_HELD(&dn->dn_struct_rwlock));
1662 	ASSERT(dn->dn_type != DMU_OT_NONE);
1663 
1664 	db = kmem_cache_alloc(dbuf_cache, KM_SLEEP);
1665 
1666 	db->db_objset = os;
1667 	db->db.db_object = dn->dn_object;
1668 	db->db_level = level;
1669 	db->db_blkid = blkid;
1670 	db->db_last_dirty = NULL;
1671 	db->db_dirtycnt = 0;
1672 	db->db_dnode_handle = dn->dn_handle;
1673 	db->db_parent = parent;
1674 	db->db_blkptr = blkptr;
1675 
1676 	db->db_user_ptr = NULL;
1677 	db->db_user_data_ptr_ptr = NULL;
1678 	db->db_evict_func = NULL;
1679 	db->db_immediate_evict = 0;
1680 	db->db_freed_in_flight = 0;
1681 
1682 	if (blkid == DMU_BONUS_BLKID) {
1683 		ASSERT3P(parent, ==, dn->dn_dbuf);
1684 		db->db.db_size = DN_MAX_BONUSLEN -
1685 		    (dn->dn_nblkptr-1) * sizeof (blkptr_t);
1686 		ASSERT3U(db->db.db_size, >=, dn->dn_bonuslen);
1687 		db->db.db_offset = DMU_BONUS_BLKID;
1688 		db->db_state = DB_UNCACHED;
1689 		/* the bonus dbuf is not placed in the hash table */
1690 		arc_space_consume(sizeof (dmu_buf_impl_t), ARC_SPACE_OTHER);
1691 		return (db);
1692 	} else if (blkid == DMU_SPILL_BLKID) {
1693 		db->db.db_size = (blkptr != NULL) ?
1694 		    BP_GET_LSIZE(blkptr) : SPA_MINBLOCKSIZE;
1695 		db->db.db_offset = 0;
1696 	} else {
1697 		int blocksize =
1698 		    db->db_level ? 1 << dn->dn_indblkshift : dn->dn_datablksz;
1699 		db->db.db_size = blocksize;
1700 		db->db.db_offset = db->db_blkid * blocksize;
1701 	}
1702 
1703 	/*
1704 	 * Hold the dn_dbufs_mtx while we get the new dbuf
1705 	 * in the hash table *and* added to the dbufs list.
1706 	 * This prevents a possible deadlock with someone
1707 	 * trying to look up this dbuf before its added to the
1708 	 * dn_dbufs list.
1709 	 */
1710 	mutex_enter(&dn->dn_dbufs_mtx);
1711 	db->db_state = DB_EVICTING;
1712 	if ((odb = dbuf_hash_insert(db)) != NULL) {
1713 		/* someone else inserted it first */
1714 		kmem_cache_free(dbuf_cache, db);
1715 		mutex_exit(&dn->dn_dbufs_mtx);
1716 		return (odb);
1717 	}
1718 	list_insert_head(&dn->dn_dbufs, db);
1719 	if (db->db_level == 0 && db->db_blkid >=
1720 	    dn->dn_unlisted_l0_blkid)
1721 		dn->dn_unlisted_l0_blkid = db->db_blkid + 1;
1722 	db->db_state = DB_UNCACHED;
1723 	mutex_exit(&dn->dn_dbufs_mtx);
1724 	arc_space_consume(sizeof (dmu_buf_impl_t), ARC_SPACE_OTHER);
1725 
1726 	if (parent && parent != dn->dn_dbuf)
1727 		dbuf_add_ref(parent, db);
1728 
1729 	ASSERT(dn->dn_object == DMU_META_DNODE_OBJECT ||
1730 	    refcount_count(&dn->dn_holds) > 0);
1731 	(void) refcount_add(&dn->dn_holds, db);
1732 	(void) atomic_inc_32_nv(&dn->dn_dbufs_count);
1733 
1734 	dprintf_dbuf(db, "db=%p\n", db);
1735 
1736 	return (db);
1737 }
1738 
1739 static int
dbuf_do_evict(void * private)1740 dbuf_do_evict(void *private)
1741 {
1742 	arc_buf_t *buf = private;
1743 	dmu_buf_impl_t *db = buf->b_private;
1744 
1745 	if (!MUTEX_HELD(&db->db_mtx))
1746 		mutex_enter(&db->db_mtx);
1747 
1748 	ASSERT(refcount_is_zero(&db->db_holds));
1749 
1750 	if (db->db_state != DB_EVICTING) {
1751 		ASSERT(db->db_state == DB_CACHED);
1752 		DBUF_VERIFY(db);
1753 		db->db_buf = NULL;
1754 		dbuf_evict(db);
1755 	} else {
1756 		mutex_exit(&db->db_mtx);
1757 		dbuf_destroy(db);
1758 	}
1759 	return (0);
1760 }
1761 
1762 static void
dbuf_destroy(dmu_buf_impl_t * db)1763 dbuf_destroy(dmu_buf_impl_t *db)
1764 {
1765 	ASSERT(refcount_is_zero(&db->db_holds));
1766 
1767 	if (db->db_blkid != DMU_BONUS_BLKID) {
1768 		/*
1769 		 * If this dbuf is still on the dn_dbufs list,
1770 		 * remove it from that list.
1771 		 */
1772 		if (db->db_dnode_handle != NULL) {
1773 			dnode_t *dn;
1774 
1775 			DB_DNODE_ENTER(db);
1776 			dn = DB_DNODE(db);
1777 			mutex_enter(&dn->dn_dbufs_mtx);
1778 			list_remove(&dn->dn_dbufs, db);
1779 			(void) atomic_dec_32_nv(&dn->dn_dbufs_count);
1780 			mutex_exit(&dn->dn_dbufs_mtx);
1781 			DB_DNODE_EXIT(db);
1782 			/*
1783 			 * Decrementing the dbuf count means that the hold
1784 			 * corresponding to the removed dbuf is no longer
1785 			 * discounted in dnode_move(), so the dnode cannot be
1786 			 * moved until after we release the hold.
1787 			 */
1788 			dnode_rele(dn, db);
1789 			db->db_dnode_handle = NULL;
1790 		}
1791 		dbuf_hash_remove(db);
1792 	}
1793 	db->db_parent = NULL;
1794 	db->db_buf = NULL;
1795 
1796 	ASSERT(!list_link_active(&db->db_link));
1797 	ASSERT(db->db.db_data == NULL);
1798 	ASSERT(db->db_hash_next == NULL);
1799 	ASSERT(db->db_blkptr == NULL);
1800 	ASSERT(db->db_data_pending == NULL);
1801 
1802 	kmem_cache_free(dbuf_cache, db);
1803 	arc_space_return(sizeof (dmu_buf_impl_t), ARC_SPACE_OTHER);
1804 }
1805 
1806 void
dbuf_prefetch(dnode_t * dn,uint64_t blkid,zio_priority_t prio)1807 dbuf_prefetch(dnode_t *dn, uint64_t blkid, zio_priority_t prio)
1808 {
1809 	dmu_buf_impl_t *db = NULL;
1810 	blkptr_t *bp = NULL;
1811 
1812 	ASSERT(blkid != DMU_BONUS_BLKID);
1813 	ASSERT(RW_LOCK_HELD(&dn->dn_struct_rwlock));
1814 
1815 	if (dnode_block_freed(dn, blkid))
1816 		return;
1817 
1818 	/* dbuf_find() returns with db_mtx held */
1819 	if (db = dbuf_find(dn, 0, blkid)) {
1820 		/*
1821 		 * This dbuf is already in the cache.  We assume that
1822 		 * it is already CACHED, or else about to be either
1823 		 * read or filled.
1824 		 */
1825 		mutex_exit(&db->db_mtx);
1826 		return;
1827 	}
1828 
1829 	if (dbuf_findbp(dn, 0, blkid, TRUE, &db, &bp) == 0) {
1830 		if (bp && !BP_IS_HOLE(bp)) {
1831 			dsl_dataset_t *ds = dn->dn_objset->os_dsl_dataset;
1832 			uint32_t aflags = ARC_NOWAIT | ARC_PREFETCH;
1833 			zbookmark_t zb;
1834 
1835 			SET_BOOKMARK(&zb, ds ? ds->ds_object : DMU_META_OBJSET,
1836 			    dn->dn_object, 0, blkid);
1837 
1838 			(void) arc_read(NULL, dn->dn_objset->os_spa,
1839 			    bp, NULL, NULL, prio,
1840 			    ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE,
1841 			    &aflags, &zb);
1842 		}
1843 		if (db)
1844 			dbuf_rele(db, NULL);
1845 	}
1846 }
1847 
1848 /*
1849  * Returns with db_holds incremented, and db_mtx not held.
1850  * Note: dn_struct_rwlock must be held.
1851  */
1852 int
dbuf_hold_impl(dnode_t * dn,uint8_t level,uint64_t blkid,int fail_sparse,void * tag,dmu_buf_impl_t ** dbp)1853 dbuf_hold_impl(dnode_t *dn, uint8_t level, uint64_t blkid, int fail_sparse,
1854     void *tag, dmu_buf_impl_t **dbp)
1855 {
1856 	dmu_buf_impl_t *db, *parent = NULL;
1857 
1858 	ASSERT(blkid != DMU_BONUS_BLKID);
1859 	ASSERT(RW_LOCK_HELD(&dn->dn_struct_rwlock));
1860 	ASSERT3U(dn->dn_nlevels, >, level);
1861 
1862 	*dbp = NULL;
1863 top:
1864 	/* dbuf_find() returns with db_mtx held */
1865 	db = dbuf_find(dn, level, blkid);
1866 
1867 	if (db == NULL) {
1868 		blkptr_t *bp = NULL;
1869 		int err;
1870 
1871 		ASSERT3P(parent, ==, NULL);
1872 		err = dbuf_findbp(dn, level, blkid, fail_sparse, &parent, &bp);
1873 		if (fail_sparse) {
1874 			if (err == 0 && bp && BP_IS_HOLE(bp))
1875 				err = SET_ERROR(ENOENT);
1876 			if (err) {
1877 				if (parent)
1878 					dbuf_rele(parent, NULL);
1879 				return (err);
1880 			}
1881 		}
1882 		if (err && err != ENOENT)
1883 			return (err);
1884 		db = dbuf_create(dn, level, blkid, parent, bp);
1885 	}
1886 
1887 	if (db->db_buf && refcount_is_zero(&db->db_holds)) {
1888 		arc_buf_add_ref(db->db_buf, db);
1889 		if (db->db_buf->b_data == NULL) {
1890 			dbuf_clear(db);
1891 			if (parent) {
1892 				dbuf_rele(parent, NULL);
1893 				parent = NULL;
1894 			}
1895 			goto top;
1896 		}
1897 		ASSERT3P(db->db.db_data, ==, db->db_buf->b_data);
1898 	}
1899 
1900 	ASSERT(db->db_buf == NULL || arc_referenced(db->db_buf));
1901 
1902 	/*
1903 	 * If this buffer is currently syncing out, and we are are
1904 	 * still referencing it from db_data, we need to make a copy
1905 	 * of it in case we decide we want to dirty it again in this txg.
1906 	 */
1907 	if (db->db_level == 0 && db->db_blkid != DMU_BONUS_BLKID &&
1908 	    dn->dn_object != DMU_META_DNODE_OBJECT &&
1909 	    db->db_state == DB_CACHED && db->db_data_pending) {
1910 		dbuf_dirty_record_t *dr = db->db_data_pending;
1911 
1912 		if (dr->dt.dl.dr_data == db->db_buf) {
1913 			arc_buf_contents_t type = DBUF_GET_BUFC_TYPE(db);
1914 
1915 			dbuf_set_data(db,
1916 			    arc_buf_alloc(dn->dn_objset->os_spa,
1917 			    db->db.db_size, db, type));
1918 			bcopy(dr->dt.dl.dr_data->b_data, db->db.db_data,
1919 			    db->db.db_size);
1920 		}
1921 	}
1922 
1923 	(void) refcount_add(&db->db_holds, tag);
1924 	dbuf_update_data(db);
1925 	DBUF_VERIFY(db);
1926 	mutex_exit(&db->db_mtx);
1927 
1928 	/* NOTE: we can't rele the parent until after we drop the db_mtx */
1929 	if (parent)
1930 		dbuf_rele(parent, NULL);
1931 
1932 	ASSERT3P(DB_DNODE(db), ==, dn);
1933 	ASSERT3U(db->db_blkid, ==, blkid);
1934 	ASSERT3U(db->db_level, ==, level);
1935 	*dbp = db;
1936 
1937 	return (0);
1938 }
1939 
1940 dmu_buf_impl_t *
dbuf_hold(dnode_t * dn,uint64_t blkid,void * tag)1941 dbuf_hold(dnode_t *dn, uint64_t blkid, void *tag)
1942 {
1943 	dmu_buf_impl_t *db;
1944 	int err = dbuf_hold_impl(dn, 0, blkid, FALSE, tag, &db);
1945 	return (err ? NULL : db);
1946 }
1947 
1948 dmu_buf_impl_t *
dbuf_hold_level(dnode_t * dn,int level,uint64_t blkid,void * tag)1949 dbuf_hold_level(dnode_t *dn, int level, uint64_t blkid, void *tag)
1950 {
1951 	dmu_buf_impl_t *db;
1952 	int err = dbuf_hold_impl(dn, level, blkid, FALSE, tag, &db);
1953 	return (err ? NULL : db);
1954 }
1955 
1956 void
dbuf_create_bonus(dnode_t * dn)1957 dbuf_create_bonus(dnode_t *dn)
1958 {
1959 	ASSERT(RW_WRITE_HELD(&dn->dn_struct_rwlock));
1960 
1961 	ASSERT(dn->dn_bonus == NULL);
1962 	dn->dn_bonus = dbuf_create(dn, 0, DMU_BONUS_BLKID, dn->dn_dbuf, NULL);
1963 }
1964 
1965 int
dbuf_spill_set_blksz(dmu_buf_t * db_fake,uint64_t blksz,dmu_tx_t * tx)1966 dbuf_spill_set_blksz(dmu_buf_t *db_fake, uint64_t blksz, dmu_tx_t *tx)
1967 {
1968 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
1969 	dnode_t *dn;
1970 
1971 	if (db->db_blkid != DMU_SPILL_BLKID)
1972 		return (SET_ERROR(ENOTSUP));
1973 	if (blksz == 0)
1974 		blksz = SPA_MINBLOCKSIZE;
1975 	if (blksz > SPA_MAXBLOCKSIZE)
1976 		blksz = SPA_MAXBLOCKSIZE;
1977 	else
1978 		blksz = P2ROUNDUP(blksz, SPA_MINBLOCKSIZE);
1979 
1980 	DB_DNODE_ENTER(db);
1981 	dn = DB_DNODE(db);
1982 	rw_enter(&dn->dn_struct_rwlock, RW_WRITER);
1983 	dbuf_new_size(db, blksz, tx);
1984 	rw_exit(&dn->dn_struct_rwlock);
1985 	DB_DNODE_EXIT(db);
1986 
1987 	return (0);
1988 }
1989 
1990 void
dbuf_rm_spill(dnode_t * dn,dmu_tx_t * tx)1991 dbuf_rm_spill(dnode_t *dn, dmu_tx_t *tx)
1992 {
1993 	dbuf_free_range(dn, DMU_SPILL_BLKID, DMU_SPILL_BLKID, tx);
1994 }
1995 
1996 #pragma weak dmu_buf_add_ref = dbuf_add_ref
1997 void
dbuf_add_ref(dmu_buf_impl_t * db,void * tag)1998 dbuf_add_ref(dmu_buf_impl_t *db, void *tag)
1999 {
2000 	int64_t holds = refcount_add(&db->db_holds, tag);
2001 	ASSERT(holds > 1);
2002 }
2003 
2004 /*
2005  * If you call dbuf_rele() you had better not be referencing the dnode handle
2006  * unless you have some other direct or indirect hold on the dnode. (An indirect
2007  * hold is a hold on one of the dnode's dbufs, including the bonus buffer.)
2008  * Without that, the dbuf_rele() could lead to a dnode_rele() followed by the
2009  * dnode's parent dbuf evicting its dnode handles.
2010  */
2011 void
dbuf_rele(dmu_buf_impl_t * db,void * tag)2012 dbuf_rele(dmu_buf_impl_t *db, void *tag)
2013 {
2014 	mutex_enter(&db->db_mtx);
2015 	dbuf_rele_and_unlock(db, tag);
2016 }
2017 
2018 void
dmu_buf_rele(dmu_buf_t * db,void * tag)2019 dmu_buf_rele(dmu_buf_t *db, void *tag)
2020 {
2021 	dbuf_rele((dmu_buf_impl_t *)db, tag);
2022 }
2023 
2024 /*
2025  * dbuf_rele() for an already-locked dbuf.  This is necessary to allow
2026  * db_dirtycnt and db_holds to be updated atomically.
2027  */
2028 void
dbuf_rele_and_unlock(dmu_buf_impl_t * db,void * tag)2029 dbuf_rele_and_unlock(dmu_buf_impl_t *db, void *tag)
2030 {
2031 	int64_t holds;
2032 
2033 	ASSERT(MUTEX_HELD(&db->db_mtx));
2034 	DBUF_VERIFY(db);
2035 
2036 	/*
2037 	 * Remove the reference to the dbuf before removing its hold on the
2038 	 * dnode so we can guarantee in dnode_move() that a referenced bonus
2039 	 * buffer has a corresponding dnode hold.
2040 	 */
2041 	holds = refcount_remove(&db->db_holds, tag);
2042 	ASSERT(holds >= 0);
2043 
2044 	/*
2045 	 * We can't freeze indirects if there is a possibility that they
2046 	 * may be modified in the current syncing context.
2047 	 */
2048 	if (db->db_buf && holds == (db->db_level == 0 ? db->db_dirtycnt : 0))
2049 		arc_buf_freeze(db->db_buf);
2050 
2051 	if (holds == db->db_dirtycnt &&
2052 	    db->db_level == 0 && db->db_immediate_evict)
2053 		dbuf_evict_user(db);
2054 
2055 	if (holds == 0) {
2056 		if (db->db_blkid == DMU_BONUS_BLKID) {
2057 			mutex_exit(&db->db_mtx);
2058 
2059 			/*
2060 			 * If the dnode moves here, we cannot cross this barrier
2061 			 * until the move completes.
2062 			 */
2063 			DB_DNODE_ENTER(db);
2064 			(void) atomic_dec_32_nv(&DB_DNODE(db)->dn_dbufs_count);
2065 			DB_DNODE_EXIT(db);
2066 			/*
2067 			 * The bonus buffer's dnode hold is no longer discounted
2068 			 * in dnode_move(). The dnode cannot move until after
2069 			 * the dnode_rele().
2070 			 */
2071 			dnode_rele(DB_DNODE(db), db);
2072 		} else if (db->db_buf == NULL) {
2073 			/*
2074 			 * This is a special case: we never associated this
2075 			 * dbuf with any data allocated from the ARC.
2076 			 */
2077 			ASSERT(db->db_state == DB_UNCACHED ||
2078 			    db->db_state == DB_NOFILL);
2079 			dbuf_evict(db);
2080 		} else if (arc_released(db->db_buf)) {
2081 			arc_buf_t *buf = db->db_buf;
2082 			/*
2083 			 * This dbuf has anonymous data associated with it.
2084 			 */
2085 			dbuf_set_data(db, NULL);
2086 			VERIFY(arc_buf_remove_ref(buf, db));
2087 			dbuf_evict(db);
2088 		} else {
2089 			VERIFY(!arc_buf_remove_ref(db->db_buf, db));
2090 
2091 			/*
2092 			 * A dbuf will be eligible for eviction if either the
2093 			 * 'primarycache' property is set or a duplicate
2094 			 * copy of this buffer is already cached in the arc.
2095 			 *
2096 			 * In the case of the 'primarycache' a buffer
2097 			 * is considered for eviction if it matches the
2098 			 * criteria set in the property.
2099 			 *
2100 			 * To decide if our buffer is considered a
2101 			 * duplicate, we must call into the arc to determine
2102 			 * if multiple buffers are referencing the same
2103 			 * block on-disk. If so, then we simply evict
2104 			 * ourselves.
2105 			 */
2106 			if (!DBUF_IS_CACHEABLE(db) ||
2107 			    arc_buf_eviction_needed(db->db_buf))
2108 				dbuf_clear(db);
2109 			else
2110 				mutex_exit(&db->db_mtx);
2111 		}
2112 	} else {
2113 		mutex_exit(&db->db_mtx);
2114 	}
2115 }
2116 
2117 #pragma weak dmu_buf_refcount = dbuf_refcount
2118 uint64_t
dbuf_refcount(dmu_buf_impl_t * db)2119 dbuf_refcount(dmu_buf_impl_t *db)
2120 {
2121 	return (refcount_count(&db->db_holds));
2122 }
2123 
2124 void *
dmu_buf_set_user(dmu_buf_t * db_fake,void * user_ptr,void * user_data_ptr_ptr,dmu_buf_evict_func_t * evict_func)2125 dmu_buf_set_user(dmu_buf_t *db_fake, void *user_ptr, void *user_data_ptr_ptr,
2126     dmu_buf_evict_func_t *evict_func)
2127 {
2128 	return (dmu_buf_update_user(db_fake, NULL, user_ptr,
2129 	    user_data_ptr_ptr, evict_func));
2130 }
2131 
2132 void *
dmu_buf_set_user_ie(dmu_buf_t * db_fake,void * user_ptr,void * user_data_ptr_ptr,dmu_buf_evict_func_t * evict_func)2133 dmu_buf_set_user_ie(dmu_buf_t *db_fake, void *user_ptr, void *user_data_ptr_ptr,
2134     dmu_buf_evict_func_t *evict_func)
2135 {
2136 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
2137 
2138 	db->db_immediate_evict = TRUE;
2139 	return (dmu_buf_update_user(db_fake, NULL, user_ptr,
2140 	    user_data_ptr_ptr, evict_func));
2141 }
2142 
2143 void *
dmu_buf_update_user(dmu_buf_t * db_fake,void * old_user_ptr,void * user_ptr,void * user_data_ptr_ptr,dmu_buf_evict_func_t * evict_func)2144 dmu_buf_update_user(dmu_buf_t *db_fake, void *old_user_ptr, void *user_ptr,
2145     void *user_data_ptr_ptr, dmu_buf_evict_func_t *evict_func)
2146 {
2147 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
2148 	ASSERT(db->db_level == 0);
2149 
2150 	ASSERT((user_ptr == NULL) == (evict_func == NULL));
2151 
2152 	mutex_enter(&db->db_mtx);
2153 
2154 	if (db->db_user_ptr == old_user_ptr) {
2155 		db->db_user_ptr = user_ptr;
2156 		db->db_user_data_ptr_ptr = user_data_ptr_ptr;
2157 		db->db_evict_func = evict_func;
2158 
2159 		dbuf_update_data(db);
2160 	} else {
2161 		old_user_ptr = db->db_user_ptr;
2162 	}
2163 
2164 	mutex_exit(&db->db_mtx);
2165 	return (old_user_ptr);
2166 }
2167 
2168 void *
dmu_buf_get_user(dmu_buf_t * db_fake)2169 dmu_buf_get_user(dmu_buf_t *db_fake)
2170 {
2171 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)db_fake;
2172 	ASSERT(!refcount_is_zero(&db->db_holds));
2173 
2174 	return (db->db_user_ptr);
2175 }
2176 
2177 boolean_t
dmu_buf_freeable(dmu_buf_t * dbuf)2178 dmu_buf_freeable(dmu_buf_t *dbuf)
2179 {
2180 	boolean_t res = B_FALSE;
2181 	dmu_buf_impl_t *db = (dmu_buf_impl_t *)dbuf;
2182 
2183 	if (db->db_blkptr)
2184 		res = dsl_dataset_block_freeable(db->db_objset->os_dsl_dataset,
2185 		    db->db_blkptr, db->db_blkptr->blk_birth);
2186 
2187 	return (res);
2188 }
2189 
2190 blkptr_t *
dmu_buf_get_blkptr(dmu_buf_t * db)2191 dmu_buf_get_blkptr(dmu_buf_t *db)
2192 {
2193 	dmu_buf_impl_t *dbi = (dmu_buf_impl_t *)db;
2194 	return (dbi->db_blkptr);
2195 }
2196 
2197 static void
dbuf_check_blkptr(dnode_t * dn,dmu_buf_impl_t * db)2198 dbuf_check_blkptr(dnode_t *dn, dmu_buf_impl_t *db)
2199 {
2200 	/* ASSERT(dmu_tx_is_syncing(tx) */
2201 	ASSERT(MUTEX_HELD(&db->db_mtx));
2202 
2203 	if (db->db_blkptr != NULL)
2204 		return;
2205 
2206 	if (db->db_blkid == DMU_SPILL_BLKID) {
2207 		db->db_blkptr = &dn->dn_phys->dn_spill;
2208 		BP_ZERO(db->db_blkptr);
2209 		return;
2210 	}
2211 	if (db->db_level == dn->dn_phys->dn_nlevels-1) {
2212 		/*
2213 		 * This buffer was allocated at a time when there was
2214 		 * no available blkptrs from the dnode, or it was
2215 		 * inappropriate to hook it in (i.e., nlevels mis-match).
2216 		 */
2217 		ASSERT(db->db_blkid < dn->dn_phys->dn_nblkptr);
2218 		ASSERT(db->db_parent == NULL);
2219 		db->db_parent = dn->dn_dbuf;
2220 		db->db_blkptr = &dn->dn_phys->dn_blkptr[db->db_blkid];
2221 		DBUF_VERIFY(db);
2222 	} else {
2223 		dmu_buf_impl_t *parent = db->db_parent;
2224 		int epbs = dn->dn_phys->dn_indblkshift - SPA_BLKPTRSHIFT;
2225 
2226 		ASSERT(dn->dn_phys->dn_nlevels > 1);
2227 		if (parent == NULL) {
2228 			mutex_exit(&db->db_mtx);
2229 			rw_enter(&dn->dn_struct_rwlock, RW_READER);
2230 			(void) dbuf_hold_impl(dn, db->db_level+1,
2231 			    db->db_blkid >> epbs, FALSE, db, &parent);
2232 			rw_exit(&dn->dn_struct_rwlock);
2233 			mutex_enter(&db->db_mtx);
2234 			db->db_parent = parent;
2235 		}
2236 		db->db_blkptr = (blkptr_t *)parent->db.db_data +
2237 		    (db->db_blkid & ((1ULL << epbs) - 1));
2238 		DBUF_VERIFY(db);
2239 	}
2240 }
2241 
2242 static void
dbuf_sync_indirect(dbuf_dirty_record_t * dr,dmu_tx_t * tx)2243 dbuf_sync_indirect(dbuf_dirty_record_t *dr, dmu_tx_t *tx)
2244 {
2245 	dmu_buf_impl_t *db = dr->dr_dbuf;
2246 	dnode_t *dn;
2247 	zio_t *zio;
2248 
2249 	ASSERT(dmu_tx_is_syncing(tx));
2250 
2251 	dprintf_dbuf_bp(db, db->db_blkptr, "blkptr=%p", db->db_blkptr);
2252 
2253 	mutex_enter(&db->db_mtx);
2254 
2255 	ASSERT(db->db_level > 0);
2256 	DBUF_VERIFY(db);
2257 
2258 	/* Read the block if it hasn't been read yet. */
2259 	if (db->db_buf == NULL) {
2260 		mutex_exit(&db->db_mtx);
2261 		(void) dbuf_read(db, NULL, DB_RF_MUST_SUCCEED);
2262 		mutex_enter(&db->db_mtx);
2263 	}
2264 	ASSERT3U(db->db_state, ==, DB_CACHED);
2265 	ASSERT(db->db_buf != NULL);
2266 
2267 	DB_DNODE_ENTER(db);
2268 	dn = DB_DNODE(db);
2269 	/* Indirect block size must match what the dnode thinks it is. */
2270 	ASSERT3U(db->db.db_size, ==, 1<<dn->dn_phys->dn_indblkshift);
2271 	dbuf_check_blkptr(dn, db);
2272 	DB_DNODE_EXIT(db);
2273 
2274 	/* Provide the pending dirty record to child dbufs */
2275 	db->db_data_pending = dr;
2276 
2277 	mutex_exit(&db->db_mtx);
2278 	dbuf_write(dr, db->db_buf, tx);
2279 
2280 	zio = dr->dr_zio;
2281 	mutex_enter(&dr->dt.di.dr_mtx);
2282 	dbuf_sync_list(&dr->dt.di.dr_children, db->db_level - 1, tx);
2283 	ASSERT(list_head(&dr->dt.di.dr_children) == NULL);
2284 	mutex_exit(&dr->dt.di.dr_mtx);
2285 	zio_nowait(zio);
2286 }
2287 
2288 static void
dbuf_sync_leaf(dbuf_dirty_record_t * dr,dmu_tx_t * tx)2289 dbuf_sync_leaf(dbuf_dirty_record_t *dr, dmu_tx_t *tx)
2290 {
2291 	arc_buf_t **datap = &dr->dt.dl.dr_data;
2292 	dmu_buf_impl_t *db = dr->dr_dbuf;
2293 	dnode_t *dn;
2294 	objset_t *os;
2295 	uint64_t txg = tx->tx_txg;
2296 
2297 	ASSERT(dmu_tx_is_syncing(tx));
2298 
2299 	dprintf_dbuf_bp(db, db->db_blkptr, "blkptr=%p", db->db_blkptr);
2300 
2301 	mutex_enter(&db->db_mtx);
2302 	/*
2303 	 * To be synced, we must be dirtied.  But we
2304 	 * might have been freed after the dirty.
2305 	 */
2306 	if (db->db_state == DB_UNCACHED) {
2307 		/* This buffer has been freed since it was dirtied */
2308 		ASSERT(db->db.db_data == NULL);
2309 	} else if (db->db_state == DB_FILL) {
2310 		/* This buffer was freed and is now being re-filled */
2311 		ASSERT(db->db.db_data != dr->dt.dl.dr_data);
2312 	} else {
2313 		ASSERT(db->db_state == DB_CACHED || db->db_state == DB_NOFILL);
2314 	}
2315 	DBUF_VERIFY(db);
2316 
2317 	DB_DNODE_ENTER(db);
2318 	dn = DB_DNODE(db);
2319 
2320 	if (db->db_blkid == DMU_SPILL_BLKID) {
2321 		mutex_enter(&dn->dn_mtx);
2322 		dn->dn_phys->dn_flags |= DNODE_FLAG_SPILL_BLKPTR;
2323 		mutex_exit(&dn->dn_mtx);
2324 	}
2325 
2326 	/*
2327 	 * If this is a bonus buffer, simply copy the bonus data into the
2328 	 * dnode.  It will be written out when the dnode is synced (and it
2329 	 * will be synced, since it must have been dirty for dbuf_sync to
2330 	 * be called).
2331 	 */
2332 	if (db->db_blkid == DMU_BONUS_BLKID) {
2333 		dbuf_dirty_record_t **drp;
2334 
2335 		ASSERT(*datap != NULL);
2336 		ASSERT0(db->db_level);
2337 		ASSERT3U(dn->dn_phys->dn_bonuslen, <=, DN_MAX_BONUSLEN);
2338 		bcopy(*datap, DN_BONUS(dn->dn_phys), dn->dn_phys->dn_bonuslen);
2339 		DB_DNODE_EXIT(db);
2340 
2341 		if (*datap != db->db.db_data) {
2342 			zio_buf_free(*datap, DN_MAX_BONUSLEN);
2343 			arc_space_return(DN_MAX_BONUSLEN, ARC_SPACE_OTHER);
2344 		}
2345 		db->db_data_pending = NULL;
2346 		drp = &db->db_last_dirty;
2347 		while (*drp != dr)
2348 			drp = &(*drp)->dr_next;
2349 		ASSERT(dr->dr_next == NULL);
2350 		ASSERT(dr->dr_dbuf == db);
2351 		*drp = dr->dr_next;
2352 		if (dr->dr_dbuf->db_level != 0) {
2353 			list_destroy(&dr->dt.di.dr_children);
2354 			mutex_destroy(&dr->dt.di.dr_mtx);
2355 		}
2356 		kmem_free(dr, sizeof (dbuf_dirty_record_t));
2357 		ASSERT(db->db_dirtycnt > 0);
2358 		db->db_dirtycnt -= 1;
2359 		dbuf_rele_and_unlock(db, (void *)(uintptr_t)txg);
2360 		return;
2361 	}
2362 
2363 	os = dn->dn_objset;
2364 
2365 	/*
2366 	 * This function may have dropped the db_mtx lock allowing a dmu_sync
2367 	 * operation to sneak in. As a result, we need to ensure that we
2368 	 * don't check the dr_override_state until we have returned from
2369 	 * dbuf_check_blkptr.
2370 	 */
2371 	dbuf_check_blkptr(dn, db);
2372 
2373 	/*
2374 	 * If this buffer is in the middle of an immediate write,
2375 	 * wait for the synchronous IO to complete.
2376 	 */
2377 	while (dr->dt.dl.dr_override_state == DR_IN_DMU_SYNC) {
2378 		ASSERT(dn->dn_object != DMU_META_DNODE_OBJECT);
2379 		cv_wait(&db->db_changed, &db->db_mtx);
2380 		ASSERT(dr->dt.dl.dr_override_state != DR_NOT_OVERRIDDEN);
2381 	}
2382 
2383 	if (db->db_state != DB_NOFILL &&
2384 	    dn->dn_object != DMU_META_DNODE_OBJECT &&
2385 	    refcount_count(&db->db_holds) > 1 &&
2386 	    dr->dt.dl.dr_override_state != DR_OVERRIDDEN &&
2387 	    *datap == db->db_buf) {
2388 		/*
2389 		 * If this buffer is currently "in use" (i.e., there
2390 		 * are active holds and db_data still references it),
2391 		 * then make a copy before we start the write so that
2392 		 * any modifications from the open txg will not leak
2393 		 * into this write.
2394 		 *
2395 		 * NOTE: this copy does not need to be made for
2396 		 * objects only modified in the syncing context (e.g.
2397 		 * DNONE_DNODE blocks).
2398 		 */
2399 		int blksz = arc_buf_size(*datap);
2400 		arc_buf_contents_t type = DBUF_GET_BUFC_TYPE(db);
2401 		*datap = arc_buf_alloc(os->os_spa, blksz, db, type);
2402 		bcopy(db->db.db_data, (*datap)->b_data, blksz);
2403 	}
2404 	db->db_data_pending = dr;
2405 
2406 	mutex_exit(&db->db_mtx);
2407 
2408 	dbuf_write(dr, *datap, tx);
2409 
2410 	ASSERT(!list_link_active(&dr->dr_dirty_node));
2411 	if (dn->dn_object == DMU_META_DNODE_OBJECT) {
2412 		list_insert_tail(&dn->dn_dirty_records[txg&TXG_MASK], dr);
2413 		DB_DNODE_EXIT(db);
2414 	} else {
2415 		/*
2416 		 * Although zio_nowait() does not "wait for an IO", it does
2417 		 * initiate the IO. If this is an empty write it seems plausible
2418 		 * that the IO could actually be completed before the nowait
2419 		 * returns. We need to DB_DNODE_EXIT() first in case
2420 		 * zio_nowait() invalidates the dbuf.
2421 		 */
2422 		DB_DNODE_EXIT(db);
2423 		zio_nowait(dr->dr_zio);
2424 	}
2425 }
2426 
2427 void
dbuf_sync_list(list_t * list,int level,dmu_tx_t * tx)2428 dbuf_sync_list(list_t *list, int level, dmu_tx_t *tx)
2429 {
2430 	dbuf_dirty_record_t *dr;
2431 
2432 	while (dr = list_head(list)) {
2433 		if (dr->dr_zio != NULL) {
2434 			/*
2435 			 * If we find an already initialized zio then we
2436 			 * are processing the meta-dnode, and we have finished.
2437 			 * The dbufs for all dnodes are put back on the list
2438 			 * during processing, so that we can zio_wait()
2439 			 * these IOs after initiating all child IOs.
2440 			 */
2441 			ASSERT3U(dr->dr_dbuf->db.db_object, ==,
2442 			    DMU_META_DNODE_OBJECT);
2443 			break;
2444 		}
2445 		if (dr->dr_dbuf->db_blkid != DMU_BONUS_BLKID &&
2446 		    dr->dr_dbuf->db_blkid != DMU_SPILL_BLKID) {
2447 			VERIFY3U(dr->dr_dbuf->db_level, ==, level);
2448 		}
2449 		list_remove(list, dr);
2450 		if (dr->dr_dbuf->db_level > 0)
2451 			dbuf_sync_indirect(dr, tx);
2452 		else
2453 			dbuf_sync_leaf(dr, tx);
2454 	}
2455 }
2456 
2457 /* ARGSUSED */
2458 static void
dbuf_write_ready(zio_t * zio,arc_buf_t * buf,void * vdb)2459 dbuf_write_ready(zio_t *zio, arc_buf_t *buf, void *vdb)
2460 {
2461 	dmu_buf_impl_t *db = vdb;
2462 	dnode_t *dn;
2463 	blkptr_t *bp = zio->io_bp;
2464 	blkptr_t *bp_orig = &zio->io_bp_orig;
2465 	spa_t *spa = zio->io_spa;
2466 	int64_t delta;
2467 	uint64_t fill = 0;
2468 	int i;
2469 
2470 	ASSERT(db->db_blkptr == bp);
2471 
2472 	DB_DNODE_ENTER(db);
2473 	dn = DB_DNODE(db);
2474 	delta = bp_get_dsize_sync(spa, bp) - bp_get_dsize_sync(spa, bp_orig);
2475 	dnode_diduse_space(dn, delta - zio->io_prev_space_delta);
2476 	zio->io_prev_space_delta = delta;
2477 
2478 	if (bp->blk_birth != 0) {
2479 		ASSERT((db->db_blkid != DMU_SPILL_BLKID &&
2480 		    BP_GET_TYPE(bp) == dn->dn_type) ||
2481 		    (db->db_blkid == DMU_SPILL_BLKID &&
2482 		    BP_GET_TYPE(bp) == dn->dn_bonustype));
2483 		ASSERT(BP_GET_LEVEL(bp) == db->db_level);
2484 	}
2485 
2486 	mutex_enter(&db->db_mtx);
2487 
2488 #ifdef ZFS_DEBUG
2489 	if (db->db_blkid == DMU_SPILL_BLKID) {
2490 		ASSERT(dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR);
2491 		ASSERT(!(BP_IS_HOLE(db->db_blkptr)) &&
2492 		    db->db_blkptr == &dn->dn_phys->dn_spill);
2493 	}
2494 #endif
2495 
2496 	if (db->db_level == 0) {
2497 		mutex_enter(&dn->dn_mtx);
2498 		if (db->db_blkid > dn->dn_phys->dn_maxblkid &&
2499 		    db->db_blkid != DMU_SPILL_BLKID)
2500 			dn->dn_phys->dn_maxblkid = db->db_blkid;
2501 		mutex_exit(&dn->dn_mtx);
2502 
2503 		if (dn->dn_type == DMU_OT_DNODE) {
2504 			dnode_phys_t *dnp = db->db.db_data;
2505 			for (i = db->db.db_size >> DNODE_SHIFT; i > 0;
2506 			    i--, dnp++) {
2507 				if (dnp->dn_type != DMU_OT_NONE)
2508 					fill++;
2509 			}
2510 		} else {
2511 			if (BP_IS_HOLE(bp)) {
2512 				fill = 0;
2513 			} else {
2514 				fill = 1;
2515 			}
2516 		}
2517 	} else {
2518 		blkptr_t *ibp = db->db.db_data;
2519 		ASSERT3U(db->db.db_size, ==, 1<<dn->dn_phys->dn_indblkshift);
2520 		for (i = db->db.db_size >> SPA_BLKPTRSHIFT; i > 0; i--, ibp++) {
2521 			if (BP_IS_HOLE(ibp))
2522 				continue;
2523 			fill += ibp->blk_fill;
2524 		}
2525 	}
2526 	DB_DNODE_EXIT(db);
2527 
2528 	bp->blk_fill = fill;
2529 
2530 	mutex_exit(&db->db_mtx);
2531 }
2532 
2533 /*
2534  * The SPA will call this callback several times for each zio - once
2535  * for every physical child i/o (zio->io_phys_children times).  This
2536  * allows the DMU to monitor the progress of each logical i/o.  For example,
2537  * there may be 2 copies of an indirect block, or many fragments of a RAID-Z
2538  * block.  There may be a long delay before all copies/fragments are completed,
2539  * so this callback allows us to retire dirty space gradually, as the physical
2540  * i/os complete.
2541  */
2542 /* ARGSUSED */
2543 static void
dbuf_write_physdone(zio_t * zio,arc_buf_t * buf,void * arg)2544 dbuf_write_physdone(zio_t *zio, arc_buf_t *buf, void *arg)
2545 {
2546 	dmu_buf_impl_t *db = arg;
2547 	objset_t *os = db->db_objset;
2548 	dsl_pool_t *dp = dmu_objset_pool(os);
2549 	dbuf_dirty_record_t *dr;
2550 	int delta = 0;
2551 
2552 	dr = db->db_data_pending;
2553 	ASSERT3U(dr->dr_txg, ==, zio->io_txg);
2554 
2555 	/*
2556 	 * The callback will be called io_phys_children times.  Retire one
2557 	 * portion of our dirty space each time we are called.  Any rounding
2558 	 * error will be cleaned up by dsl_pool_sync()'s call to
2559 	 * dsl_pool_undirty_space().
2560 	 */
2561 	delta = dr->dr_accounted / zio->io_phys_children;
2562 	dsl_pool_undirty_space(dp, delta, zio->io_txg);
2563 }
2564 
2565 /* ARGSUSED */
2566 static void
dbuf_write_done(zio_t * zio,arc_buf_t * buf,void * vdb)2567 dbuf_write_done(zio_t *zio, arc_buf_t *buf, void *vdb)
2568 {
2569 	dmu_buf_impl_t *db = vdb;
2570 	blkptr_t *bp_orig = &zio->io_bp_orig;
2571 	blkptr_t *bp = db->db_blkptr;
2572 	objset_t *os = db->db_objset;
2573 	dmu_tx_t *tx = os->os_synctx;
2574 	dbuf_dirty_record_t **drp, *dr;
2575 
2576 	ASSERT0(zio->io_error);
2577 	ASSERT(db->db_blkptr == bp);
2578 
2579 	/*
2580 	 * For nopwrites and rewrites we ensure that the bp matches our
2581 	 * original and bypass all the accounting.
2582 	 */
2583 	if (zio->io_flags & (ZIO_FLAG_IO_REWRITE | ZIO_FLAG_NOPWRITE)) {
2584 		ASSERT(BP_EQUAL(bp, bp_orig));
2585 	} else {
2586 		dsl_dataset_t *ds = os->os_dsl_dataset;
2587 		(void) dsl_dataset_block_kill(ds, bp_orig, tx, B_TRUE);
2588 		dsl_dataset_block_born(ds, bp, tx);
2589 	}
2590 
2591 	mutex_enter(&db->db_mtx);
2592 
2593 	DBUF_VERIFY(db);
2594 
2595 	drp = &db->db_last_dirty;
2596 	while ((dr = *drp) != db->db_data_pending)
2597 		drp = &dr->dr_next;
2598 	ASSERT(!list_link_active(&dr->dr_dirty_node));
2599 	ASSERT(dr->dr_dbuf == db);
2600 	ASSERT(dr->dr_next == NULL);
2601 	*drp = dr->dr_next;
2602 
2603 #ifdef ZFS_DEBUG
2604 	if (db->db_blkid == DMU_SPILL_BLKID) {
2605 		dnode_t *dn;
2606 
2607 		DB_DNODE_ENTER(db);
2608 		dn = DB_DNODE(db);
2609 		ASSERT(dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR);
2610 		ASSERT(!(BP_IS_HOLE(db->db_blkptr)) &&
2611 		    db->db_blkptr == &dn->dn_phys->dn_spill);
2612 		DB_DNODE_EXIT(db);
2613 	}
2614 #endif
2615 
2616 	if (db->db_level == 0) {
2617 		ASSERT(db->db_blkid != DMU_BONUS_BLKID);
2618 		ASSERT(dr->dt.dl.dr_override_state == DR_NOT_OVERRIDDEN);
2619 		if (db->db_state != DB_NOFILL) {
2620 			if (dr->dt.dl.dr_data != db->db_buf)
2621 				VERIFY(arc_buf_remove_ref(dr->dt.dl.dr_data,
2622 				    db));
2623 			else if (!arc_released(db->db_buf))
2624 				arc_set_callback(db->db_buf, dbuf_do_evict, db);
2625 		}
2626 	} else {
2627 		dnode_t *dn;
2628 
2629 		DB_DNODE_ENTER(db);
2630 		dn = DB_DNODE(db);
2631 		ASSERT(list_head(&dr->dt.di.dr_children) == NULL);
2632 		ASSERT3U(db->db.db_size, ==, 1 << dn->dn_phys->dn_indblkshift);
2633 		if (!BP_IS_HOLE(db->db_blkptr)) {
2634 			int epbs =
2635 			    dn->dn_phys->dn_indblkshift - SPA_BLKPTRSHIFT;
2636 			ASSERT3U(db->db_blkid, <=,
2637 			    dn->dn_phys->dn_maxblkid >> (db->db_level * epbs));
2638 			ASSERT3U(BP_GET_LSIZE(db->db_blkptr), ==,
2639 			    db->db.db_size);
2640 			arc_set_callback(db->db_buf, dbuf_do_evict, db);
2641 		}
2642 		DB_DNODE_EXIT(db);
2643 		mutex_destroy(&dr->dt.di.dr_mtx);
2644 		list_destroy(&dr->dt.di.dr_children);
2645 	}
2646 	kmem_free(dr, sizeof (dbuf_dirty_record_t));
2647 
2648 	cv_broadcast(&db->db_changed);
2649 	ASSERT(db->db_dirtycnt > 0);
2650 	db->db_dirtycnt -= 1;
2651 	db->db_data_pending = NULL;
2652 	dbuf_rele_and_unlock(db, (void *)(uintptr_t)tx->tx_txg);
2653 }
2654 
2655 static void
dbuf_write_nofill_ready(zio_t * zio)2656 dbuf_write_nofill_ready(zio_t *zio)
2657 {
2658 	dbuf_write_ready(zio, NULL, zio->io_private);
2659 }
2660 
2661 static void
dbuf_write_nofill_done(zio_t * zio)2662 dbuf_write_nofill_done(zio_t *zio)
2663 {
2664 	dbuf_write_done(zio, NULL, zio->io_private);
2665 }
2666 
2667 static void
dbuf_write_override_ready(zio_t * zio)2668 dbuf_write_override_ready(zio_t *zio)
2669 {
2670 	dbuf_dirty_record_t *dr = zio->io_private;
2671 	dmu_buf_impl_t *db = dr->dr_dbuf;
2672 
2673 	dbuf_write_ready(zio, NULL, db);
2674 }
2675 
2676 static void
dbuf_write_override_done(zio_t * zio)2677 dbuf_write_override_done(zio_t *zio)
2678 {
2679 	dbuf_dirty_record_t *dr = zio->io_private;
2680 	dmu_buf_impl_t *db = dr->dr_dbuf;
2681 	blkptr_t *obp = &dr->dt.dl.dr_overridden_by;
2682 
2683 	mutex_enter(&db->db_mtx);
2684 	if (!BP_EQUAL(zio->io_bp, obp)) {
2685 		if (!BP_IS_HOLE(obp))
2686 			dsl_free(spa_get_dsl(zio->io_spa), zio->io_txg, obp);
2687 		arc_release(dr->dt.dl.dr_data, db);
2688 	}
2689 	mutex_exit(&db->db_mtx);
2690 
2691 	dbuf_write_done(zio, NULL, db);
2692 }
2693 
2694 /* Issue I/O to commit a dirty buffer to disk. */
2695 static void
dbuf_write(dbuf_dirty_record_t * dr,arc_buf_t * data,dmu_tx_t * tx)2696 dbuf_write(dbuf_dirty_record_t *dr, arc_buf_t *data, dmu_tx_t *tx)
2697 {
2698 	dmu_buf_impl_t *db = dr->dr_dbuf;
2699 	dnode_t *dn;
2700 	objset_t *os;
2701 	dmu_buf_impl_t *parent = db->db_parent;
2702 	uint64_t txg = tx->tx_txg;
2703 	zbookmark_t zb;
2704 	zio_prop_t zp;
2705 	zio_t *zio;
2706 	int wp_flag = 0;
2707 
2708 	DB_DNODE_ENTER(db);
2709 	dn = DB_DNODE(db);
2710 	os = dn->dn_objset;
2711 
2712 	if (db->db_state != DB_NOFILL) {
2713 		if (db->db_level > 0 || dn->dn_type == DMU_OT_DNODE) {
2714 			/*
2715 			 * Private object buffers are released here rather
2716 			 * than in dbuf_dirty() since they are only modified
2717 			 * in the syncing context and we don't want the
2718 			 * overhead of making multiple copies of the data.
2719 			 */
2720 			if (BP_IS_HOLE(db->db_blkptr)) {
2721 				arc_buf_thaw(data);
2722 			} else {
2723 				dbuf_release_bp(db);
2724 			}
2725 		}
2726 	}
2727 
2728 	if (parent != dn->dn_dbuf) {
2729 		/* Our parent is an indirect block. */
2730 		/* We have a dirty parent that has been scheduled for write. */
2731 		ASSERT(parent && parent->db_data_pending);
2732 		/* Our parent's buffer is one level closer to the dnode. */
2733 		ASSERT(db->db_level == parent->db_level-1);
2734 		/*
2735 		 * We're about to modify our parent's db_data by modifying
2736 		 * our block pointer, so the parent must be released.
2737 		 */
2738 		ASSERT(arc_released(parent->db_buf));
2739 		zio = parent->db_data_pending->dr_zio;
2740 	} else {
2741 		/* Our parent is the dnode itself. */
2742 		ASSERT((db->db_level == dn->dn_phys->dn_nlevels-1 &&
2743 		    db->db_blkid != DMU_SPILL_BLKID) ||
2744 		    (db->db_blkid == DMU_SPILL_BLKID && db->db_level == 0));
2745 		if (db->db_blkid != DMU_SPILL_BLKID)
2746 			ASSERT3P(db->db_blkptr, ==,
2747 			    &dn->dn_phys->dn_blkptr[db->db_blkid]);
2748 		zio = dn->dn_zio;
2749 	}
2750 
2751 	ASSERT(db->db_level == 0 || data == db->db_buf);
2752 	ASSERT3U(db->db_blkptr->blk_birth, <=, txg);
2753 	ASSERT(zio);
2754 
2755 	SET_BOOKMARK(&zb, os->os_dsl_dataset ?
2756 	    os->os_dsl_dataset->ds_object : DMU_META_OBJSET,
2757 	    db->db.db_object, db->db_level, db->db_blkid);
2758 
2759 	if (db->db_blkid == DMU_SPILL_BLKID)
2760 		wp_flag = WP_SPILL;
2761 	wp_flag |= (db->db_state == DB_NOFILL) ? WP_NOFILL : 0;
2762 
2763 	dmu_write_policy(os, dn, db->db_level, wp_flag, &zp);
2764 	DB_DNODE_EXIT(db);
2765 
2766 	if (db->db_level == 0 && dr->dt.dl.dr_override_state == DR_OVERRIDDEN) {
2767 		ASSERT(db->db_state != DB_NOFILL);
2768 		dr->dr_zio = zio_write(zio, os->os_spa, txg,
2769 		    db->db_blkptr, data->b_data, arc_buf_size(data), &zp,
2770 		    dbuf_write_override_ready, NULL, dbuf_write_override_done,
2771 		    dr, ZIO_PRIORITY_ASYNC_WRITE, ZIO_FLAG_MUSTSUCCEED, &zb);
2772 		mutex_enter(&db->db_mtx);
2773 		dr->dt.dl.dr_override_state = DR_NOT_OVERRIDDEN;
2774 		zio_write_override(dr->dr_zio, &dr->dt.dl.dr_overridden_by,
2775 		    dr->dt.dl.dr_copies, dr->dt.dl.dr_nopwrite);
2776 		mutex_exit(&db->db_mtx);
2777 	} else if (db->db_state == DB_NOFILL) {
2778 		ASSERT(zp.zp_checksum == ZIO_CHECKSUM_OFF ||
2779 		    zp.zp_checksum == ZIO_CHECKSUM_NOPARITY);
2780 		dr->dr_zio = zio_write(zio, os->os_spa, txg,
2781 		    db->db_blkptr, NULL, db->db.db_size, &zp,
2782 		    dbuf_write_nofill_ready, NULL, dbuf_write_nofill_done, db,
2783 		    ZIO_PRIORITY_ASYNC_WRITE,
2784 		    ZIO_FLAG_MUSTSUCCEED | ZIO_FLAG_NODATA, &zb);
2785 	} else {
2786 		ASSERT(arc_released(data));
2787 		dr->dr_zio = arc_write(zio, os->os_spa, txg,
2788 		    db->db_blkptr, data, DBUF_IS_L2CACHEABLE(db),
2789 		    DBUF_IS_L2COMPRESSIBLE(db), &zp, dbuf_write_ready,
2790 		    dbuf_write_physdone, dbuf_write_done, db,
2791 		    ZIO_PRIORITY_ASYNC_WRITE, ZIO_FLAG_MUSTSUCCEED, &zb);
2792 	}
2793 }
2794