xref: /illumos-gate/usr/src/uts/common/fs/zfs/zil.c (revision 2264ca7f5db194583c672cb5779a67f52bcd92a9)
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 2009 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #include <sys/zfs_context.h>
27 #include <sys/spa.h>
28 #include <sys/dmu.h>
29 #include <sys/zap.h>
30 #include <sys/arc.h>
31 #include <sys/stat.h>
32 #include <sys/resource.h>
33 #include <sys/zil.h>
34 #include <sys/zil_impl.h>
35 #include <sys/dsl_dataset.h>
36 #include <sys/vdev.h>
37 #include <sys/dmu_tx.h>
38 
39 /*
40  * The zfs intent log (ZIL) saves transaction records of system calls
41  * that change the file system in memory with enough information
42  * to be able to replay them. These are stored in memory until
43  * either the DMU transaction group (txg) commits them to the stable pool
44  * and they can be discarded, or they are flushed to the stable log
45  * (also in the pool) due to a fsync, O_DSYNC or other synchronous
46  * requirement. In the event of a panic or power fail then those log
47  * records (transactions) are replayed.
48  *
49  * There is one ZIL per file system. Its on-disk (pool) format consists
50  * of 3 parts:
51  *
52  * 	- ZIL header
53  * 	- ZIL blocks
54  * 	- ZIL records
55  *
56  * A log record holds a system call transaction. Log blocks can
57  * hold many log records and the blocks are chained together.
58  * Each ZIL block contains a block pointer (blkptr_t) to the next
59  * ZIL block in the chain. The ZIL header points to the first
60  * block in the chain. Note there is not a fixed place in the pool
61  * to hold blocks. They are dynamically allocated and freed as
62  * needed from the blocks available. Figure X shows the ZIL structure:
63  */
64 
65 /*
66  * This global ZIL switch affects all pools
67  */
68 int zil_disable = 0;	/* disable intent logging */
69 
70 /*
71  * Tunable parameter for debugging or performance analysis.  Setting
72  * zfs_nocacheflush will cause corruption on power loss if a volatile
73  * out-of-order write cache is enabled.
74  */
75 boolean_t zfs_nocacheflush = B_FALSE;
76 
77 static kmem_cache_t *zil_lwb_cache;
78 
79 static int
80 zil_dva_compare(const void *x1, const void *x2)
81 {
82 	const dva_t *dva1 = x1;
83 	const dva_t *dva2 = x2;
84 
85 	if (DVA_GET_VDEV(dva1) < DVA_GET_VDEV(dva2))
86 		return (-1);
87 	if (DVA_GET_VDEV(dva1) > DVA_GET_VDEV(dva2))
88 		return (1);
89 
90 	if (DVA_GET_OFFSET(dva1) < DVA_GET_OFFSET(dva2))
91 		return (-1);
92 	if (DVA_GET_OFFSET(dva1) > DVA_GET_OFFSET(dva2))
93 		return (1);
94 
95 	return (0);
96 }
97 
98 static void
99 zil_dva_tree_init(avl_tree_t *t)
100 {
101 	avl_create(t, zil_dva_compare, sizeof (zil_dva_node_t),
102 	    offsetof(zil_dva_node_t, zn_node));
103 }
104 
105 static void
106 zil_dva_tree_fini(avl_tree_t *t)
107 {
108 	zil_dva_node_t *zn;
109 	void *cookie = NULL;
110 
111 	while ((zn = avl_destroy_nodes(t, &cookie)) != NULL)
112 		kmem_free(zn, sizeof (zil_dva_node_t));
113 
114 	avl_destroy(t);
115 }
116 
117 static int
118 zil_dva_tree_add(avl_tree_t *t, dva_t *dva)
119 {
120 	zil_dva_node_t *zn;
121 	avl_index_t where;
122 
123 	if (avl_find(t, dva, &where) != NULL)
124 		return (EEXIST);
125 
126 	zn = kmem_alloc(sizeof (zil_dva_node_t), KM_SLEEP);
127 	zn->zn_dva = *dva;
128 	avl_insert(t, zn, where);
129 
130 	return (0);
131 }
132 
133 static zil_header_t *
134 zil_header_in_syncing_context(zilog_t *zilog)
135 {
136 	return ((zil_header_t *)zilog->zl_header);
137 }
138 
139 static void
140 zil_init_log_chain(zilog_t *zilog, blkptr_t *bp)
141 {
142 	zio_cksum_t *zc = &bp->blk_cksum;
143 
144 	zc->zc_word[ZIL_ZC_GUID_0] = spa_get_random(-1ULL);
145 	zc->zc_word[ZIL_ZC_GUID_1] = spa_get_random(-1ULL);
146 	zc->zc_word[ZIL_ZC_OBJSET] = dmu_objset_id(zilog->zl_os);
147 	zc->zc_word[ZIL_ZC_SEQ] = 1ULL;
148 }
149 
150 /*
151  * Read a log block, make sure it's valid, and byteswap it if necessary.
152  */
153 static int
154 zil_read_log_block(zilog_t *zilog, const blkptr_t *bp, arc_buf_t **abufpp)
155 {
156 	blkptr_t blk = *bp;
157 	zbookmark_t zb;
158 	uint32_t aflags = ARC_WAIT;
159 	int error;
160 
161 	zb.zb_objset = bp->blk_cksum.zc_word[ZIL_ZC_OBJSET];
162 	zb.zb_object = 0;
163 	zb.zb_level = -1;
164 	zb.zb_blkid = bp->blk_cksum.zc_word[ZIL_ZC_SEQ];
165 
166 	*abufpp = NULL;
167 
168 	/*
169 	 * We shouldn't be doing any scrubbing while we're doing log
170 	 * replay, it's OK to not lock.
171 	 */
172 	error = arc_read_nolock(NULL, zilog->zl_spa, &blk,
173 	    arc_getbuf_func, abufpp, ZIO_PRIORITY_SYNC_READ, ZIO_FLAG_CANFAIL |
174 	    ZIO_FLAG_SPECULATIVE | ZIO_FLAG_SCRUB, &aflags, &zb);
175 
176 	if (error == 0) {
177 		char *data = (*abufpp)->b_data;
178 		uint64_t blksz = BP_GET_LSIZE(bp);
179 		zil_trailer_t *ztp = (zil_trailer_t *)(data + blksz) - 1;
180 		zio_cksum_t cksum = bp->blk_cksum;
181 
182 		/*
183 		 * Validate the checksummed log block.
184 		 *
185 		 * Sequence numbers should be... sequential.  The checksum
186 		 * verifier for the next block should be bp's checksum plus 1.
187 		 *
188 		 * Also check the log chain linkage and size used.
189 		 */
190 		cksum.zc_word[ZIL_ZC_SEQ]++;
191 
192 		if (bcmp(&cksum, &ztp->zit_next_blk.blk_cksum,
193 		    sizeof (cksum)) || BP_IS_HOLE(&ztp->zit_next_blk) ||
194 		    (ztp->zit_nused > (blksz - sizeof (zil_trailer_t)))) {
195 			error = ECKSUM;
196 		}
197 
198 		if (error) {
199 			VERIFY(arc_buf_remove_ref(*abufpp, abufpp) == 1);
200 			*abufpp = NULL;
201 		}
202 	}
203 
204 	dprintf("error %d on %llu:%llu\n", error, zb.zb_objset, zb.zb_blkid);
205 
206 	return (error);
207 }
208 
209 /*
210  * Parse the intent log, and call parse_func for each valid record within.
211  * Return the highest sequence number.
212  */
213 uint64_t
214 zil_parse(zilog_t *zilog, zil_parse_blk_func_t *parse_blk_func,
215     zil_parse_lr_func_t *parse_lr_func, void *arg, uint64_t txg)
216 {
217 	const zil_header_t *zh = zilog->zl_header;
218 	uint64_t claim_seq = zh->zh_claim_seq;
219 	uint64_t seq = 0;
220 	uint64_t max_seq = 0;
221 	blkptr_t blk = zh->zh_log;
222 	arc_buf_t *abuf;
223 	char *lrbuf, *lrp;
224 	zil_trailer_t *ztp;
225 	int reclen, error;
226 
227 	if (BP_IS_HOLE(&blk))
228 		return (max_seq);
229 
230 	/*
231 	 * Starting at the block pointed to by zh_log we read the log chain.
232 	 * For each block in the chain we strongly check that block to
233 	 * ensure its validity.  We stop when an invalid block is found.
234 	 * For each block pointer in the chain we call parse_blk_func().
235 	 * For each record in each valid block we call parse_lr_func().
236 	 * If the log has been claimed, stop if we encounter a sequence
237 	 * number greater than the highest claimed sequence number.
238 	 */
239 	zil_dva_tree_init(&zilog->zl_dva_tree);
240 	for (;;) {
241 		seq = blk.blk_cksum.zc_word[ZIL_ZC_SEQ];
242 
243 		if (claim_seq != 0 && seq > claim_seq)
244 			break;
245 
246 		ASSERT(max_seq < seq);
247 		max_seq = seq;
248 
249 		error = zil_read_log_block(zilog, &blk, &abuf);
250 
251 		if (parse_blk_func != NULL)
252 			parse_blk_func(zilog, &blk, arg, txg);
253 
254 		if (error)
255 			break;
256 
257 		lrbuf = abuf->b_data;
258 		ztp = (zil_trailer_t *)(lrbuf + BP_GET_LSIZE(&blk)) - 1;
259 		blk = ztp->zit_next_blk;
260 
261 		if (parse_lr_func == NULL) {
262 			VERIFY(arc_buf_remove_ref(abuf, &abuf) == 1);
263 			continue;
264 		}
265 
266 		for (lrp = lrbuf; lrp < lrbuf + ztp->zit_nused; lrp += reclen) {
267 			lr_t *lr = (lr_t *)lrp;
268 			reclen = lr->lrc_reclen;
269 			ASSERT3U(reclen, >=, sizeof (lr_t));
270 			parse_lr_func(zilog, lr, arg, txg);
271 		}
272 		VERIFY(arc_buf_remove_ref(abuf, &abuf) == 1);
273 	}
274 	zil_dva_tree_fini(&zilog->zl_dva_tree);
275 
276 	return (max_seq);
277 }
278 
279 /* ARGSUSED */
280 static void
281 zil_claim_log_block(zilog_t *zilog, blkptr_t *bp, void *tx, uint64_t first_txg)
282 {
283 	spa_t *spa = zilog->zl_spa;
284 	int err;
285 
286 	/*
287 	 * Claim log block if not already committed and not already claimed.
288 	 */
289 	if (bp->blk_birth >= first_txg &&
290 	    zil_dva_tree_add(&zilog->zl_dva_tree, BP_IDENTITY(bp)) == 0) {
291 		err = zio_wait(zio_claim(NULL, spa, first_txg, bp, NULL, NULL,
292 		    ZIO_FLAG_MUSTSUCCEED));
293 		ASSERT(err == 0);
294 	}
295 }
296 
297 static void
298 zil_claim_log_record(zilog_t *zilog, lr_t *lrc, void *tx, uint64_t first_txg)
299 {
300 	if (lrc->lrc_txtype == TX_WRITE) {
301 		lr_write_t *lr = (lr_write_t *)lrc;
302 		zil_claim_log_block(zilog, &lr->lr_blkptr, tx, first_txg);
303 	}
304 }
305 
306 /* ARGSUSED */
307 static void
308 zil_free_log_block(zilog_t *zilog, blkptr_t *bp, void *tx, uint64_t claim_txg)
309 {
310 	zio_free_blk(zilog->zl_spa, bp, dmu_tx_get_txg(tx));
311 }
312 
313 static void
314 zil_free_log_record(zilog_t *zilog, lr_t *lrc, void *tx, uint64_t claim_txg)
315 {
316 	/*
317 	 * If we previously claimed it, we need to free it.
318 	 */
319 	if (claim_txg != 0 && lrc->lrc_txtype == TX_WRITE) {
320 		lr_write_t *lr = (lr_write_t *)lrc;
321 		blkptr_t *bp = &lr->lr_blkptr;
322 		if (bp->blk_birth >= claim_txg &&
323 		    !zil_dva_tree_add(&zilog->zl_dva_tree, BP_IDENTITY(bp))) {
324 			(void) arc_free(NULL, zilog->zl_spa,
325 			    dmu_tx_get_txg(tx), bp, NULL, NULL, ARC_WAIT);
326 		}
327 	}
328 }
329 
330 /*
331  * Create an on-disk intent log.
332  */
333 static void
334 zil_create(zilog_t *zilog)
335 {
336 	const zil_header_t *zh = zilog->zl_header;
337 	lwb_t *lwb;
338 	uint64_t txg = 0;
339 	dmu_tx_t *tx = NULL;
340 	blkptr_t blk;
341 	int error = 0;
342 
343 	/*
344 	 * Wait for any previous destroy to complete.
345 	 */
346 	txg_wait_synced(zilog->zl_dmu_pool, zilog->zl_destroy_txg);
347 
348 	ASSERT(zh->zh_claim_txg == 0);
349 	ASSERT(zh->zh_replay_seq == 0);
350 
351 	blk = zh->zh_log;
352 
353 	/*
354 	 * If we don't already have an initial log block or we have one
355 	 * but it's the wrong endianness then allocate one.
356 	 */
357 	if (BP_IS_HOLE(&blk) || BP_SHOULD_BYTESWAP(&blk)) {
358 		tx = dmu_tx_create(zilog->zl_os);
359 		(void) dmu_tx_assign(tx, TXG_WAIT);
360 		dsl_dataset_dirty(dmu_objset_ds(zilog->zl_os), tx);
361 		txg = dmu_tx_get_txg(tx);
362 
363 		if (!BP_IS_HOLE(&blk)) {
364 			zio_free_blk(zilog->zl_spa, &blk, txg);
365 			BP_ZERO(&blk);
366 		}
367 
368 		error = zio_alloc_blk(zilog->zl_spa, ZIL_MIN_BLKSZ, &blk,
369 		    NULL, txg);
370 
371 		if (error == 0)
372 			zil_init_log_chain(zilog, &blk);
373 	}
374 
375 	/*
376 	 * Allocate a log write buffer (lwb) for the first log block.
377 	 */
378 	if (error == 0) {
379 		lwb = kmem_cache_alloc(zil_lwb_cache, KM_SLEEP);
380 		lwb->lwb_zilog = zilog;
381 		lwb->lwb_blk = blk;
382 		lwb->lwb_nused = 0;
383 		lwb->lwb_sz = BP_GET_LSIZE(&lwb->lwb_blk);
384 		lwb->lwb_buf = zio_buf_alloc(lwb->lwb_sz);
385 		lwb->lwb_max_txg = txg;
386 		lwb->lwb_zio = NULL;
387 
388 		mutex_enter(&zilog->zl_lock);
389 		list_insert_tail(&zilog->zl_lwb_list, lwb);
390 		mutex_exit(&zilog->zl_lock);
391 	}
392 
393 	/*
394 	 * If we just allocated the first log block, commit our transaction
395 	 * and wait for zil_sync() to stuff the block poiner into zh_log.
396 	 * (zh is part of the MOS, so we cannot modify it in open context.)
397 	 */
398 	if (tx != NULL) {
399 		dmu_tx_commit(tx);
400 		txg_wait_synced(zilog->zl_dmu_pool, txg);
401 	}
402 
403 	ASSERT(bcmp(&blk, &zh->zh_log, sizeof (blk)) == 0);
404 }
405 
406 /*
407  * In one tx, free all log blocks and clear the log header.
408  * If keep_first is set, then we're replaying a log with no content.
409  * We want to keep the first block, however, so that the first
410  * synchronous transaction doesn't require a txg_wait_synced()
411  * in zil_create().  We don't need to txg_wait_synced() here either
412  * when keep_first is set, because both zil_create() and zil_destroy()
413  * will wait for any in-progress destroys to complete.
414  */
415 void
416 zil_destroy(zilog_t *zilog, boolean_t keep_first)
417 {
418 	const zil_header_t *zh = zilog->zl_header;
419 	lwb_t *lwb;
420 	dmu_tx_t *tx;
421 	uint64_t txg;
422 
423 	/*
424 	 * Wait for any previous destroy to complete.
425 	 */
426 	txg_wait_synced(zilog->zl_dmu_pool, zilog->zl_destroy_txg);
427 
428 	if (BP_IS_HOLE(&zh->zh_log))
429 		return;
430 
431 	tx = dmu_tx_create(zilog->zl_os);
432 	(void) dmu_tx_assign(tx, TXG_WAIT);
433 	dsl_dataset_dirty(dmu_objset_ds(zilog->zl_os), tx);
434 	txg = dmu_tx_get_txg(tx);
435 
436 	mutex_enter(&zilog->zl_lock);
437 
438 	/*
439 	 * It is possible for the ZIL to get the previously mounted zilog
440 	 * structure of the same dataset if quickly remounted and the dbuf
441 	 * eviction has not completed. In this case we can see a non
442 	 * empty lwb list and keep_first will be set. We fix this by
443 	 * clearing the keep_first. This will be slower but it's very rare.
444 	 */
445 	if (!list_is_empty(&zilog->zl_lwb_list) && keep_first)
446 		keep_first = B_FALSE;
447 
448 	ASSERT3U(zilog->zl_destroy_txg, <, txg);
449 	zilog->zl_destroy_txg = txg;
450 	zilog->zl_keep_first = keep_first;
451 
452 	if (!list_is_empty(&zilog->zl_lwb_list)) {
453 		ASSERT(zh->zh_claim_txg == 0);
454 		ASSERT(!keep_first);
455 		while ((lwb = list_head(&zilog->zl_lwb_list)) != NULL) {
456 			list_remove(&zilog->zl_lwb_list, lwb);
457 			if (lwb->lwb_buf != NULL)
458 				zio_buf_free(lwb->lwb_buf, lwb->lwb_sz);
459 			zio_free_blk(zilog->zl_spa, &lwb->lwb_blk, txg);
460 			kmem_cache_free(zil_lwb_cache, lwb);
461 		}
462 	} else {
463 		if (!keep_first) {
464 			(void) zil_parse(zilog, zil_free_log_block,
465 			    zil_free_log_record, tx, zh->zh_claim_txg);
466 		}
467 	}
468 	mutex_exit(&zilog->zl_lock);
469 
470 	dmu_tx_commit(tx);
471 }
472 
473 int
474 zil_claim(char *osname, void *txarg)
475 {
476 	dmu_tx_t *tx = txarg;
477 	uint64_t first_txg = dmu_tx_get_txg(tx);
478 	zilog_t *zilog;
479 	zil_header_t *zh;
480 	objset_t *os;
481 	int error;
482 
483 	error = dmu_objset_open(osname, DMU_OST_ANY, DS_MODE_USER, &os);
484 	if (error) {
485 		cmn_err(CE_WARN, "can't open objset for %s", osname);
486 		return (0);
487 	}
488 
489 	zilog = dmu_objset_zil(os);
490 	zh = zil_header_in_syncing_context(zilog);
491 
492 	/*
493 	 * Claim all log blocks if we haven't already done so, and remember
494 	 * the highest claimed sequence number.  This ensures that if we can
495 	 * read only part of the log now (e.g. due to a missing device),
496 	 * but we can read the entire log later, we will not try to replay
497 	 * or destroy beyond the last block we successfully claimed.
498 	 */
499 	ASSERT3U(zh->zh_claim_txg, <=, first_txg);
500 	if (zh->zh_claim_txg == 0 && !BP_IS_HOLE(&zh->zh_log)) {
501 		zh->zh_claim_txg = first_txg;
502 		zh->zh_claim_seq = zil_parse(zilog, zil_claim_log_block,
503 		    zil_claim_log_record, tx, first_txg);
504 		dsl_dataset_dirty(dmu_objset_ds(os), tx);
505 	}
506 
507 	ASSERT3U(first_txg, ==, (spa_last_synced_txg(zilog->zl_spa) + 1));
508 	dmu_objset_close(os);
509 	return (0);
510 }
511 
512 /*
513  * Check the log by walking the log chain.
514  * Checksum errors are ok as they indicate the end of the chain.
515  * Any other error (no device or read failure) returns an error.
516  */
517 /* ARGSUSED */
518 int
519 zil_check_log_chain(char *osname, void *txarg)
520 {
521 	zilog_t *zilog;
522 	zil_header_t *zh;
523 	blkptr_t blk;
524 	arc_buf_t *abuf;
525 	objset_t *os;
526 	char *lrbuf;
527 	zil_trailer_t *ztp;
528 	int error;
529 
530 	error = dmu_objset_open(osname, DMU_OST_ANY, DS_MODE_USER, &os);
531 	if (error) {
532 		cmn_err(CE_WARN, "can't open objset for %s", osname);
533 		return (0);
534 	}
535 
536 	zilog = dmu_objset_zil(os);
537 	zh = zil_header_in_syncing_context(zilog);
538 	blk = zh->zh_log;
539 	if (BP_IS_HOLE(&blk)) {
540 		dmu_objset_close(os);
541 		return (0); /* no chain */
542 	}
543 
544 	for (;;) {
545 		error = zil_read_log_block(zilog, &blk, &abuf);
546 		if (error)
547 			break;
548 		lrbuf = abuf->b_data;
549 		ztp = (zil_trailer_t *)(lrbuf + BP_GET_LSIZE(&blk)) - 1;
550 		blk = ztp->zit_next_blk;
551 		VERIFY(arc_buf_remove_ref(abuf, &abuf) == 1);
552 	}
553 	dmu_objset_close(os);
554 	if (error == ECKSUM)
555 		return (0); /* normal end of chain */
556 	return (error);
557 }
558 
559 /*
560  * Clear a log chain
561  */
562 /* ARGSUSED */
563 int
564 zil_clear_log_chain(char *osname, void *txarg)
565 {
566 	zilog_t *zilog;
567 	zil_header_t *zh;
568 	objset_t *os;
569 	dmu_tx_t *tx;
570 	int error;
571 
572 	error = dmu_objset_open(osname, DMU_OST_ANY, DS_MODE_USER, &os);
573 	if (error) {
574 		cmn_err(CE_WARN, "can't open objset for %s", osname);
575 		return (0);
576 	}
577 
578 	zilog = dmu_objset_zil(os);
579 	tx = dmu_tx_create(zilog->zl_os);
580 	(void) dmu_tx_assign(tx, TXG_WAIT);
581 	zh = zil_header_in_syncing_context(zilog);
582 	BP_ZERO(&zh->zh_log);
583 	dsl_dataset_dirty(dmu_objset_ds(os), tx);
584 	dmu_tx_commit(tx);
585 	dmu_objset_close(os);
586 	return (0);
587 }
588 
589 static int
590 zil_vdev_compare(const void *x1, const void *x2)
591 {
592 	uint64_t v1 = ((zil_vdev_node_t *)x1)->zv_vdev;
593 	uint64_t v2 = ((zil_vdev_node_t *)x2)->zv_vdev;
594 
595 	if (v1 < v2)
596 		return (-1);
597 	if (v1 > v2)
598 		return (1);
599 
600 	return (0);
601 }
602 
603 void
604 zil_add_block(zilog_t *zilog, blkptr_t *bp)
605 {
606 	avl_tree_t *t = &zilog->zl_vdev_tree;
607 	avl_index_t where;
608 	zil_vdev_node_t *zv, zvsearch;
609 	int ndvas = BP_GET_NDVAS(bp);
610 	int i;
611 
612 	if (zfs_nocacheflush)
613 		return;
614 
615 	ASSERT(zilog->zl_writer);
616 
617 	/*
618 	 * Even though we're zl_writer, we still need a lock because the
619 	 * zl_get_data() callbacks may have dmu_sync() done callbacks
620 	 * that will run concurrently.
621 	 */
622 	mutex_enter(&zilog->zl_vdev_lock);
623 	for (i = 0; i < ndvas; i++) {
624 		zvsearch.zv_vdev = DVA_GET_VDEV(&bp->blk_dva[i]);
625 		if (avl_find(t, &zvsearch, &where) == NULL) {
626 			zv = kmem_alloc(sizeof (*zv), KM_SLEEP);
627 			zv->zv_vdev = zvsearch.zv_vdev;
628 			avl_insert(t, zv, where);
629 		}
630 	}
631 	mutex_exit(&zilog->zl_vdev_lock);
632 }
633 
634 void
635 zil_flush_vdevs(zilog_t *zilog)
636 {
637 	spa_t *spa = zilog->zl_spa;
638 	avl_tree_t *t = &zilog->zl_vdev_tree;
639 	void *cookie = NULL;
640 	zil_vdev_node_t *zv;
641 	zio_t *zio;
642 
643 	ASSERT(zilog->zl_writer);
644 
645 	/*
646 	 * We don't need zl_vdev_lock here because we're the zl_writer,
647 	 * and all zl_get_data() callbacks are done.
648 	 */
649 	if (avl_numnodes(t) == 0)
650 		return;
651 
652 	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
653 
654 	zio = zio_root(spa, NULL, NULL, ZIO_FLAG_CANFAIL);
655 
656 	while ((zv = avl_destroy_nodes(t, &cookie)) != NULL) {
657 		vdev_t *vd = vdev_lookup_top(spa, zv->zv_vdev);
658 		if (vd != NULL)
659 			zio_flush(zio, vd);
660 		kmem_free(zv, sizeof (*zv));
661 	}
662 
663 	/*
664 	 * Wait for all the flushes to complete.  Not all devices actually
665 	 * support the DKIOCFLUSHWRITECACHE ioctl, so it's OK if it fails.
666 	 */
667 	(void) zio_wait(zio);
668 
669 	spa_config_exit(spa, SCL_STATE, FTAG);
670 }
671 
672 /*
673  * Function called when a log block write completes
674  */
675 static void
676 zil_lwb_write_done(zio_t *zio)
677 {
678 	lwb_t *lwb = zio->io_private;
679 	zilog_t *zilog = lwb->lwb_zilog;
680 
681 	ASSERT(BP_GET_COMPRESS(zio->io_bp) == ZIO_COMPRESS_OFF);
682 	ASSERT(BP_GET_CHECKSUM(zio->io_bp) == ZIO_CHECKSUM_ZILOG);
683 	ASSERT(BP_GET_TYPE(zio->io_bp) == DMU_OT_INTENT_LOG);
684 	ASSERT(BP_GET_LEVEL(zio->io_bp) == 0);
685 	ASSERT(BP_GET_BYTEORDER(zio->io_bp) == ZFS_HOST_BYTEORDER);
686 	ASSERT(!BP_IS_GANG(zio->io_bp));
687 	ASSERT(!BP_IS_HOLE(zio->io_bp));
688 	ASSERT(zio->io_bp->blk_fill == 0);
689 
690 	/*
691 	 * Now that we've written this log block, we have a stable pointer
692 	 * to the next block in the chain, so it's OK to let the txg in
693 	 * which we allocated the next block sync.
694 	 */
695 	txg_rele_to_sync(&lwb->lwb_txgh);
696 
697 	zio_buf_free(lwb->lwb_buf, lwb->lwb_sz);
698 	mutex_enter(&zilog->zl_lock);
699 	lwb->lwb_buf = NULL;
700 	if (zio->io_error)
701 		zilog->zl_log_error = B_TRUE;
702 	mutex_exit(&zilog->zl_lock);
703 }
704 
705 /*
706  * Initialize the io for a log block.
707  */
708 static void
709 zil_lwb_write_init(zilog_t *zilog, lwb_t *lwb)
710 {
711 	zbookmark_t zb;
712 
713 	zb.zb_objset = lwb->lwb_blk.blk_cksum.zc_word[ZIL_ZC_OBJSET];
714 	zb.zb_object = 0;
715 	zb.zb_level = -1;
716 	zb.zb_blkid = lwb->lwb_blk.blk_cksum.zc_word[ZIL_ZC_SEQ];
717 
718 	if (zilog->zl_root_zio == NULL) {
719 		zilog->zl_root_zio = zio_root(zilog->zl_spa, NULL, NULL,
720 		    ZIO_FLAG_CANFAIL);
721 	}
722 	if (lwb->lwb_zio == NULL) {
723 		lwb->lwb_zio = zio_rewrite(zilog->zl_root_zio, zilog->zl_spa,
724 		    0, &lwb->lwb_blk, lwb->lwb_buf,
725 		    lwb->lwb_sz, zil_lwb_write_done, lwb,
726 		    ZIO_PRIORITY_LOG_WRITE, ZIO_FLAG_CANFAIL, &zb);
727 	}
728 }
729 
730 /*
731  * Start a log block write and advance to the next log block.
732  * Calls are serialized.
733  */
734 static lwb_t *
735 zil_lwb_write_start(zilog_t *zilog, lwb_t *lwb)
736 {
737 	lwb_t *nlwb;
738 	zil_trailer_t *ztp = (zil_trailer_t *)(lwb->lwb_buf + lwb->lwb_sz) - 1;
739 	spa_t *spa = zilog->zl_spa;
740 	blkptr_t *bp = &ztp->zit_next_blk;
741 	uint64_t txg;
742 	uint64_t zil_blksz;
743 	int error;
744 
745 	ASSERT(lwb->lwb_nused <= ZIL_BLK_DATA_SZ(lwb));
746 
747 	/*
748 	 * Allocate the next block and save its address in this block
749 	 * before writing it in order to establish the log chain.
750 	 * Note that if the allocation of nlwb synced before we wrote
751 	 * the block that points at it (lwb), we'd leak it if we crashed.
752 	 * Therefore, we don't do txg_rele_to_sync() until zil_lwb_write_done().
753 	 */
754 	txg = txg_hold_open(zilog->zl_dmu_pool, &lwb->lwb_txgh);
755 	txg_rele_to_quiesce(&lwb->lwb_txgh);
756 
757 	/*
758 	 * Pick a ZIL blocksize. We request a size that is the
759 	 * maximum of the previous used size, the current used size and
760 	 * the amount waiting in the queue.
761 	 */
762 	zil_blksz = MAX(zilog->zl_prev_used,
763 	    zilog->zl_cur_used + sizeof (*ztp));
764 	zil_blksz = MAX(zil_blksz, zilog->zl_itx_list_sz + sizeof (*ztp));
765 	zil_blksz = P2ROUNDUP_TYPED(zil_blksz, ZIL_MIN_BLKSZ, uint64_t);
766 	if (zil_blksz > ZIL_MAX_BLKSZ)
767 		zil_blksz = ZIL_MAX_BLKSZ;
768 
769 	BP_ZERO(bp);
770 	/* pass the old blkptr in order to spread log blocks across devs */
771 	error = zio_alloc_blk(spa, zil_blksz, bp, &lwb->lwb_blk, txg);
772 	if (error) {
773 		dmu_tx_t *tx = dmu_tx_create_assigned(zilog->zl_dmu_pool, txg);
774 
775 		/*
776 		 * We dirty the dataset to ensure that zil_sync() will
777 		 * be called to remove this lwb from our zl_lwb_list.
778 		 * Failing to do so, may leave an lwb with a NULL lwb_buf
779 		 * hanging around on the zl_lwb_list.
780 		 */
781 		dsl_dataset_dirty(dmu_objset_ds(zilog->zl_os), tx);
782 		dmu_tx_commit(tx);
783 
784 		/*
785 		 * Since we've just experienced an allocation failure so we
786 		 * terminate the current lwb and send it on its way.
787 		 */
788 		ztp->zit_pad = 0;
789 		ztp->zit_nused = lwb->lwb_nused;
790 		ztp->zit_bt.zbt_cksum = lwb->lwb_blk.blk_cksum;
791 		zio_nowait(lwb->lwb_zio);
792 
793 		/*
794 		 * By returning NULL the caller will call tx_wait_synced()
795 		 */
796 		return (NULL);
797 	}
798 
799 	ASSERT3U(bp->blk_birth, ==, txg);
800 	ztp->zit_pad = 0;
801 	ztp->zit_nused = lwb->lwb_nused;
802 	ztp->zit_bt.zbt_cksum = lwb->lwb_blk.blk_cksum;
803 	bp->blk_cksum = lwb->lwb_blk.blk_cksum;
804 	bp->blk_cksum.zc_word[ZIL_ZC_SEQ]++;
805 
806 	/*
807 	 * Allocate a new log write buffer (lwb).
808 	 */
809 	nlwb = kmem_cache_alloc(zil_lwb_cache, KM_SLEEP);
810 
811 	nlwb->lwb_zilog = zilog;
812 	nlwb->lwb_blk = *bp;
813 	nlwb->lwb_nused = 0;
814 	nlwb->lwb_sz = BP_GET_LSIZE(&nlwb->lwb_blk);
815 	nlwb->lwb_buf = zio_buf_alloc(nlwb->lwb_sz);
816 	nlwb->lwb_max_txg = txg;
817 	nlwb->lwb_zio = NULL;
818 
819 	/*
820 	 * Put new lwb at the end of the log chain
821 	 */
822 	mutex_enter(&zilog->zl_lock);
823 	list_insert_tail(&zilog->zl_lwb_list, nlwb);
824 	mutex_exit(&zilog->zl_lock);
825 
826 	/* Record the block for later vdev flushing */
827 	zil_add_block(zilog, &lwb->lwb_blk);
828 
829 	/*
830 	 * kick off the write for the old log block
831 	 */
832 	dprintf_bp(&lwb->lwb_blk, "lwb %p txg %llu: ", lwb, txg);
833 	ASSERT(lwb->lwb_zio);
834 	zio_nowait(lwb->lwb_zio);
835 
836 	return (nlwb);
837 }
838 
839 static lwb_t *
840 zil_lwb_commit(zilog_t *zilog, itx_t *itx, lwb_t *lwb)
841 {
842 	lr_t *lrc = &itx->itx_lr; /* common log record */
843 	lr_write_t *lr = (lr_write_t *)lrc;
844 	uint64_t txg = lrc->lrc_txg;
845 	uint64_t reclen = lrc->lrc_reclen;
846 	uint64_t dlen;
847 
848 	if (lwb == NULL)
849 		return (NULL);
850 	ASSERT(lwb->lwb_buf != NULL);
851 
852 	if (lrc->lrc_txtype == TX_WRITE && itx->itx_wr_state == WR_NEED_COPY)
853 		dlen = P2ROUNDUP_TYPED(
854 		    lr->lr_length, sizeof (uint64_t), uint64_t);
855 	else
856 		dlen = 0;
857 
858 	zilog->zl_cur_used += (reclen + dlen);
859 
860 	zil_lwb_write_init(zilog, lwb);
861 
862 	/*
863 	 * If this record won't fit in the current log block, start a new one.
864 	 */
865 	if (lwb->lwb_nused + reclen + dlen > ZIL_BLK_DATA_SZ(lwb)) {
866 		lwb = zil_lwb_write_start(zilog, lwb);
867 		if (lwb == NULL)
868 			return (NULL);
869 		zil_lwb_write_init(zilog, lwb);
870 		ASSERT(lwb->lwb_nused == 0);
871 		if (reclen + dlen > ZIL_BLK_DATA_SZ(lwb)) {
872 			txg_wait_synced(zilog->zl_dmu_pool, txg);
873 			return (lwb);
874 		}
875 	}
876 
877 	/*
878 	 * Update the lrc_seq, to be log record sequence number. See zil.h
879 	 * Then copy the record to the log buffer.
880 	 */
881 	lrc->lrc_seq = ++zilog->zl_lr_seq; /* we are single threaded */
882 	bcopy(lrc, lwb->lwb_buf + lwb->lwb_nused, reclen);
883 
884 	/*
885 	 * If it's a write, fetch the data or get its blkptr as appropriate.
886 	 */
887 	if (lrc->lrc_txtype == TX_WRITE) {
888 		if (txg > spa_freeze_txg(zilog->zl_spa))
889 			txg_wait_synced(zilog->zl_dmu_pool, txg);
890 		if (itx->itx_wr_state != WR_COPIED) {
891 			char *dbuf;
892 			int error;
893 
894 			/* alignment is guaranteed */
895 			lr = (lr_write_t *)(lwb->lwb_buf + lwb->lwb_nused);
896 			if (dlen) {
897 				ASSERT(itx->itx_wr_state == WR_NEED_COPY);
898 				dbuf = lwb->lwb_buf + lwb->lwb_nused + reclen;
899 				lr->lr_common.lrc_reclen += dlen;
900 			} else {
901 				ASSERT(itx->itx_wr_state == WR_INDIRECT);
902 				dbuf = NULL;
903 			}
904 			error = zilog->zl_get_data(
905 			    itx->itx_private, lr, dbuf, lwb->lwb_zio);
906 			if (error) {
907 				ASSERT(error == ENOENT || error == EEXIST ||
908 				    error == EALREADY);
909 				return (lwb);
910 			}
911 		}
912 	}
913 
914 	lwb->lwb_nused += reclen + dlen;
915 	lwb->lwb_max_txg = MAX(lwb->lwb_max_txg, txg);
916 	ASSERT3U(lwb->lwb_nused, <=, ZIL_BLK_DATA_SZ(lwb));
917 	ASSERT3U(P2PHASE(lwb->lwb_nused, sizeof (uint64_t)), ==, 0);
918 
919 	return (lwb);
920 }
921 
922 itx_t *
923 zil_itx_create(uint64_t txtype, size_t lrsize)
924 {
925 	itx_t *itx;
926 
927 	lrsize = P2ROUNDUP_TYPED(lrsize, sizeof (uint64_t), size_t);
928 
929 	itx = kmem_alloc(offsetof(itx_t, itx_lr) + lrsize, KM_SLEEP);
930 	itx->itx_lr.lrc_txtype = txtype;
931 	itx->itx_lr.lrc_reclen = lrsize;
932 	itx->itx_sod = lrsize; /* if write & WR_NEED_COPY will be increased */
933 	itx->itx_lr.lrc_seq = 0;	/* defensive */
934 
935 	return (itx);
936 }
937 
938 uint64_t
939 zil_itx_assign(zilog_t *zilog, itx_t *itx, dmu_tx_t *tx)
940 {
941 	uint64_t seq;
942 
943 	ASSERT(itx->itx_lr.lrc_seq == 0);
944 
945 	mutex_enter(&zilog->zl_lock);
946 	list_insert_tail(&zilog->zl_itx_list, itx);
947 	zilog->zl_itx_list_sz += itx->itx_sod;
948 	itx->itx_lr.lrc_txg = dmu_tx_get_txg(tx);
949 	itx->itx_lr.lrc_seq = seq = ++zilog->zl_itx_seq;
950 	mutex_exit(&zilog->zl_lock);
951 
952 	return (seq);
953 }
954 
955 /*
956  * Free up all in-memory intent log transactions that have now been synced.
957  */
958 static void
959 zil_itx_clean(zilog_t *zilog)
960 {
961 	uint64_t synced_txg = spa_last_synced_txg(zilog->zl_spa);
962 	uint64_t freeze_txg = spa_freeze_txg(zilog->zl_spa);
963 	list_t clean_list;
964 	itx_t *itx;
965 
966 	list_create(&clean_list, sizeof (itx_t), offsetof(itx_t, itx_node));
967 
968 	mutex_enter(&zilog->zl_lock);
969 	/* wait for a log writer to finish walking list */
970 	while (zilog->zl_writer) {
971 		cv_wait(&zilog->zl_cv_writer, &zilog->zl_lock);
972 	}
973 
974 	/*
975 	 * Move the sync'd log transactions to a separate list so we can call
976 	 * kmem_free without holding the zl_lock.
977 	 *
978 	 * There is no need to set zl_writer as we don't drop zl_lock here
979 	 */
980 	while ((itx = list_head(&zilog->zl_itx_list)) != NULL &&
981 	    itx->itx_lr.lrc_txg <= MIN(synced_txg, freeze_txg)) {
982 		list_remove(&zilog->zl_itx_list, itx);
983 		zilog->zl_itx_list_sz -= itx->itx_sod;
984 		list_insert_tail(&clean_list, itx);
985 	}
986 	cv_broadcast(&zilog->zl_cv_writer);
987 	mutex_exit(&zilog->zl_lock);
988 
989 	/* destroy sync'd log transactions */
990 	while ((itx = list_head(&clean_list)) != NULL) {
991 		list_remove(&clean_list, itx);
992 		kmem_free(itx, offsetof(itx_t, itx_lr)
993 		    + itx->itx_lr.lrc_reclen);
994 	}
995 	list_destroy(&clean_list);
996 }
997 
998 /*
999  * If there are any in-memory intent log transactions which have now been
1000  * synced then start up a taskq to free them.
1001  */
1002 void
1003 zil_clean(zilog_t *zilog)
1004 {
1005 	itx_t *itx;
1006 
1007 	mutex_enter(&zilog->zl_lock);
1008 	itx = list_head(&zilog->zl_itx_list);
1009 	if ((itx != NULL) &&
1010 	    (itx->itx_lr.lrc_txg <= spa_last_synced_txg(zilog->zl_spa))) {
1011 		(void) taskq_dispatch(zilog->zl_clean_taskq,
1012 		    (void (*)(void *))zil_itx_clean, zilog, TQ_NOSLEEP);
1013 	}
1014 	mutex_exit(&zilog->zl_lock);
1015 }
1016 
1017 static void
1018 zil_commit_writer(zilog_t *zilog, uint64_t seq, uint64_t foid)
1019 {
1020 	uint64_t txg;
1021 	uint64_t commit_seq = 0;
1022 	itx_t *itx, *itx_next = (itx_t *)-1;
1023 	lwb_t *lwb;
1024 	spa_t *spa;
1025 
1026 	zilog->zl_writer = B_TRUE;
1027 	ASSERT(zilog->zl_root_zio == NULL);
1028 	spa = zilog->zl_spa;
1029 
1030 	if (zilog->zl_suspend) {
1031 		lwb = NULL;
1032 	} else {
1033 		lwb = list_tail(&zilog->zl_lwb_list);
1034 		if (lwb == NULL) {
1035 			/*
1036 			 * Return if there's nothing to flush before we
1037 			 * dirty the fs by calling zil_create()
1038 			 */
1039 			if (list_is_empty(&zilog->zl_itx_list)) {
1040 				zilog->zl_writer = B_FALSE;
1041 				return;
1042 			}
1043 			mutex_exit(&zilog->zl_lock);
1044 			zil_create(zilog);
1045 			mutex_enter(&zilog->zl_lock);
1046 			lwb = list_tail(&zilog->zl_lwb_list);
1047 		}
1048 	}
1049 
1050 	/* Loop through in-memory log transactions filling log blocks. */
1051 	DTRACE_PROBE1(zil__cw1, zilog_t *, zilog);
1052 	for (;;) {
1053 		/*
1054 		 * Find the next itx to push:
1055 		 * Push all transactions related to specified foid and all
1056 		 * other transactions except TX_WRITE, TX_TRUNCATE,
1057 		 * TX_SETATTR and TX_ACL for all other files.
1058 		 */
1059 		if (itx_next != (itx_t *)-1)
1060 			itx = itx_next;
1061 		else
1062 			itx = list_head(&zilog->zl_itx_list);
1063 		for (; itx != NULL; itx = list_next(&zilog->zl_itx_list, itx)) {
1064 			if (foid == 0) /* push all foids? */
1065 				break;
1066 			if (itx->itx_sync) /* push all O_[D]SYNC */
1067 				break;
1068 			switch (itx->itx_lr.lrc_txtype) {
1069 			case TX_SETATTR:
1070 			case TX_WRITE:
1071 			case TX_TRUNCATE:
1072 			case TX_ACL:
1073 				/* lr_foid is same offset for these records */
1074 				if (((lr_write_t *)&itx->itx_lr)->lr_foid
1075 				    != foid) {
1076 					continue; /* skip this record */
1077 				}
1078 			}
1079 			break;
1080 		}
1081 		if (itx == NULL)
1082 			break;
1083 
1084 		if ((itx->itx_lr.lrc_seq > seq) &&
1085 		    ((lwb == NULL) || (lwb->lwb_nused == 0) ||
1086 		    (lwb->lwb_nused + itx->itx_sod > ZIL_BLK_DATA_SZ(lwb)))) {
1087 			break;
1088 		}
1089 
1090 		/*
1091 		 * Save the next pointer.  Even though we soon drop
1092 		 * zl_lock all threads that may change the list
1093 		 * (another writer or zil_itx_clean) can't do so until
1094 		 * they have zl_writer.
1095 		 */
1096 		itx_next = list_next(&zilog->zl_itx_list, itx);
1097 		list_remove(&zilog->zl_itx_list, itx);
1098 		zilog->zl_itx_list_sz -= itx->itx_sod;
1099 		mutex_exit(&zilog->zl_lock);
1100 		txg = itx->itx_lr.lrc_txg;
1101 		ASSERT(txg);
1102 
1103 		if (txg > spa_last_synced_txg(spa) ||
1104 		    txg > spa_freeze_txg(spa))
1105 			lwb = zil_lwb_commit(zilog, itx, lwb);
1106 		kmem_free(itx, offsetof(itx_t, itx_lr)
1107 		    + itx->itx_lr.lrc_reclen);
1108 		mutex_enter(&zilog->zl_lock);
1109 	}
1110 	DTRACE_PROBE1(zil__cw2, zilog_t *, zilog);
1111 	/* determine commit sequence number */
1112 	itx = list_head(&zilog->zl_itx_list);
1113 	if (itx)
1114 		commit_seq = itx->itx_lr.lrc_seq;
1115 	else
1116 		commit_seq = zilog->zl_itx_seq;
1117 	mutex_exit(&zilog->zl_lock);
1118 
1119 	/* write the last block out */
1120 	if (lwb != NULL && lwb->lwb_zio != NULL)
1121 		lwb = zil_lwb_write_start(zilog, lwb);
1122 
1123 	zilog->zl_prev_used = zilog->zl_cur_used;
1124 	zilog->zl_cur_used = 0;
1125 
1126 	/*
1127 	 * Wait if necessary for the log blocks to be on stable storage.
1128 	 */
1129 	if (zilog->zl_root_zio) {
1130 		DTRACE_PROBE1(zil__cw3, zilog_t *, zilog);
1131 		(void) zio_wait(zilog->zl_root_zio);
1132 		zilog->zl_root_zio = NULL;
1133 		DTRACE_PROBE1(zil__cw4, zilog_t *, zilog);
1134 		zil_flush_vdevs(zilog);
1135 	}
1136 
1137 	if (zilog->zl_log_error || lwb == NULL) {
1138 		zilog->zl_log_error = 0;
1139 		txg_wait_synced(zilog->zl_dmu_pool, 0);
1140 	}
1141 
1142 	mutex_enter(&zilog->zl_lock);
1143 	zilog->zl_writer = B_FALSE;
1144 
1145 	ASSERT3U(commit_seq, >=, zilog->zl_commit_seq);
1146 	zilog->zl_commit_seq = commit_seq;
1147 }
1148 
1149 /*
1150  * Push zfs transactions to stable storage up to the supplied sequence number.
1151  * If foid is 0 push out all transactions, otherwise push only those
1152  * for that file or might have been used to create that file.
1153  */
1154 void
1155 zil_commit(zilog_t *zilog, uint64_t seq, uint64_t foid)
1156 {
1157 	if (zilog == NULL || seq == 0)
1158 		return;
1159 
1160 	mutex_enter(&zilog->zl_lock);
1161 
1162 	seq = MIN(seq, zilog->zl_itx_seq);	/* cap seq at largest itx seq */
1163 
1164 	while (zilog->zl_writer) {
1165 		cv_wait(&zilog->zl_cv_writer, &zilog->zl_lock);
1166 		if (seq < zilog->zl_commit_seq) {
1167 			mutex_exit(&zilog->zl_lock);
1168 			return;
1169 		}
1170 	}
1171 	zil_commit_writer(zilog, seq, foid); /* drops zl_lock */
1172 	/* wake up others waiting on the commit */
1173 	cv_broadcast(&zilog->zl_cv_writer);
1174 	mutex_exit(&zilog->zl_lock);
1175 }
1176 
1177 /*
1178  * Called in syncing context to free committed log blocks and update log header.
1179  */
1180 void
1181 zil_sync(zilog_t *zilog, dmu_tx_t *tx)
1182 {
1183 	zil_header_t *zh = zil_header_in_syncing_context(zilog);
1184 	uint64_t txg = dmu_tx_get_txg(tx);
1185 	spa_t *spa = zilog->zl_spa;
1186 	lwb_t *lwb;
1187 
1188 	mutex_enter(&zilog->zl_lock);
1189 
1190 	ASSERT(zilog->zl_stop_sync == 0);
1191 
1192 	zh->zh_replay_seq = zilog->zl_replayed_seq[txg & TXG_MASK];
1193 
1194 	if (zilog->zl_destroy_txg == txg) {
1195 		blkptr_t blk = zh->zh_log;
1196 
1197 		ASSERT(list_head(&zilog->zl_lwb_list) == NULL);
1198 		ASSERT(spa_sync_pass(spa) == 1);
1199 
1200 		bzero(zh, sizeof (zil_header_t));
1201 		bzero(zilog->zl_replayed_seq, sizeof (zilog->zl_replayed_seq));
1202 
1203 		if (zilog->zl_keep_first) {
1204 			/*
1205 			 * If this block was part of log chain that couldn't
1206 			 * be claimed because a device was missing during
1207 			 * zil_claim(), but that device later returns,
1208 			 * then this block could erroneously appear valid.
1209 			 * To guard against this, assign a new GUID to the new
1210 			 * log chain so it doesn't matter what blk points to.
1211 			 */
1212 			zil_init_log_chain(zilog, &blk);
1213 			zh->zh_log = blk;
1214 		}
1215 	}
1216 
1217 	for (;;) {
1218 		lwb = list_head(&zilog->zl_lwb_list);
1219 		if (lwb == NULL) {
1220 			mutex_exit(&zilog->zl_lock);
1221 			return;
1222 		}
1223 		zh->zh_log = lwb->lwb_blk;
1224 		if (lwb->lwb_buf != NULL || lwb->lwb_max_txg > txg)
1225 			break;
1226 		list_remove(&zilog->zl_lwb_list, lwb);
1227 		zio_free_blk(spa, &lwb->lwb_blk, txg);
1228 		kmem_cache_free(zil_lwb_cache, lwb);
1229 
1230 		/*
1231 		 * If we don't have anything left in the lwb list then
1232 		 * we've had an allocation failure and we need to zero
1233 		 * out the zil_header blkptr so that we don't end
1234 		 * up freeing the same block twice.
1235 		 */
1236 		if (list_head(&zilog->zl_lwb_list) == NULL)
1237 			BP_ZERO(&zh->zh_log);
1238 	}
1239 	mutex_exit(&zilog->zl_lock);
1240 }
1241 
1242 void
1243 zil_init(void)
1244 {
1245 	zil_lwb_cache = kmem_cache_create("zil_lwb_cache",
1246 	    sizeof (struct lwb), 0, NULL, NULL, NULL, NULL, NULL, 0);
1247 }
1248 
1249 void
1250 zil_fini(void)
1251 {
1252 	kmem_cache_destroy(zil_lwb_cache);
1253 }
1254 
1255 zilog_t *
1256 zil_alloc(objset_t *os, zil_header_t *zh_phys)
1257 {
1258 	zilog_t *zilog;
1259 
1260 	zilog = kmem_zalloc(sizeof (zilog_t), KM_SLEEP);
1261 
1262 	zilog->zl_header = zh_phys;
1263 	zilog->zl_os = os;
1264 	zilog->zl_spa = dmu_objset_spa(os);
1265 	zilog->zl_dmu_pool = dmu_objset_pool(os);
1266 	zilog->zl_destroy_txg = TXG_INITIAL - 1;
1267 
1268 	mutex_init(&zilog->zl_lock, NULL, MUTEX_DEFAULT, NULL);
1269 
1270 	list_create(&zilog->zl_itx_list, sizeof (itx_t),
1271 	    offsetof(itx_t, itx_node));
1272 
1273 	list_create(&zilog->zl_lwb_list, sizeof (lwb_t),
1274 	    offsetof(lwb_t, lwb_node));
1275 
1276 	mutex_init(&zilog->zl_vdev_lock, NULL, MUTEX_DEFAULT, NULL);
1277 
1278 	avl_create(&zilog->zl_vdev_tree, zil_vdev_compare,
1279 	    sizeof (zil_vdev_node_t), offsetof(zil_vdev_node_t, zv_node));
1280 
1281 	cv_init(&zilog->zl_cv_writer, NULL, CV_DEFAULT, NULL);
1282 	cv_init(&zilog->zl_cv_suspend, NULL, CV_DEFAULT, NULL);
1283 
1284 	return (zilog);
1285 }
1286 
1287 void
1288 zil_free(zilog_t *zilog)
1289 {
1290 	lwb_t *lwb;
1291 
1292 	zilog->zl_stop_sync = 1;
1293 
1294 	while ((lwb = list_head(&zilog->zl_lwb_list)) != NULL) {
1295 		list_remove(&zilog->zl_lwb_list, lwb);
1296 		if (lwb->lwb_buf != NULL)
1297 			zio_buf_free(lwb->lwb_buf, lwb->lwb_sz);
1298 		kmem_cache_free(zil_lwb_cache, lwb);
1299 	}
1300 	list_destroy(&zilog->zl_lwb_list);
1301 
1302 	avl_destroy(&zilog->zl_vdev_tree);
1303 	mutex_destroy(&zilog->zl_vdev_lock);
1304 
1305 	ASSERT(list_head(&zilog->zl_itx_list) == NULL);
1306 	list_destroy(&zilog->zl_itx_list);
1307 	mutex_destroy(&zilog->zl_lock);
1308 
1309 	cv_destroy(&zilog->zl_cv_writer);
1310 	cv_destroy(&zilog->zl_cv_suspend);
1311 
1312 	kmem_free(zilog, sizeof (zilog_t));
1313 }
1314 
1315 /*
1316  * return true if the initial log block is not valid
1317  */
1318 static boolean_t
1319 zil_empty(zilog_t *zilog)
1320 {
1321 	const zil_header_t *zh = zilog->zl_header;
1322 	arc_buf_t *abuf = NULL;
1323 
1324 	if (BP_IS_HOLE(&zh->zh_log))
1325 		return (B_TRUE);
1326 
1327 	if (zil_read_log_block(zilog, &zh->zh_log, &abuf) != 0)
1328 		return (B_TRUE);
1329 
1330 	VERIFY(arc_buf_remove_ref(abuf, &abuf) == 1);
1331 	return (B_FALSE);
1332 }
1333 
1334 /*
1335  * Open an intent log.
1336  */
1337 zilog_t *
1338 zil_open(objset_t *os, zil_get_data_t *get_data)
1339 {
1340 	zilog_t *zilog = dmu_objset_zil(os);
1341 
1342 	zilog->zl_get_data = get_data;
1343 	zilog->zl_clean_taskq = taskq_create("zil_clean", 1, minclsyspri,
1344 	    2, 2, TASKQ_PREPOPULATE);
1345 
1346 	return (zilog);
1347 }
1348 
1349 /*
1350  * Close an intent log.
1351  */
1352 void
1353 zil_close(zilog_t *zilog)
1354 {
1355 	/*
1356 	 * If the log isn't already committed, mark the objset dirty
1357 	 * (so zil_sync() will be called) and wait for that txg to sync.
1358 	 */
1359 	if (!zil_is_committed(zilog)) {
1360 		uint64_t txg;
1361 		dmu_tx_t *tx = dmu_tx_create(zilog->zl_os);
1362 		(void) dmu_tx_assign(tx, TXG_WAIT);
1363 		dsl_dataset_dirty(dmu_objset_ds(zilog->zl_os), tx);
1364 		txg = dmu_tx_get_txg(tx);
1365 		dmu_tx_commit(tx);
1366 		txg_wait_synced(zilog->zl_dmu_pool, txg);
1367 	}
1368 
1369 	taskq_destroy(zilog->zl_clean_taskq);
1370 	zilog->zl_clean_taskq = NULL;
1371 	zilog->zl_get_data = NULL;
1372 
1373 	zil_itx_clean(zilog);
1374 	ASSERT(list_head(&zilog->zl_itx_list) == NULL);
1375 }
1376 
1377 /*
1378  * Suspend an intent log.  While in suspended mode, we still honor
1379  * synchronous semantics, but we rely on txg_wait_synced() to do it.
1380  * We suspend the log briefly when taking a snapshot so that the snapshot
1381  * contains all the data it's supposed to, and has an empty intent log.
1382  */
1383 int
1384 zil_suspend(zilog_t *zilog)
1385 {
1386 	const zil_header_t *zh = zilog->zl_header;
1387 
1388 	mutex_enter(&zilog->zl_lock);
1389 	if (zh->zh_claim_txg != 0) {		/* unplayed log */
1390 		mutex_exit(&zilog->zl_lock);
1391 		return (EBUSY);
1392 	}
1393 	if (zilog->zl_suspend++ != 0) {
1394 		/*
1395 		 * Someone else already began a suspend.
1396 		 * Just wait for them to finish.
1397 		 */
1398 		while (zilog->zl_suspending)
1399 			cv_wait(&zilog->zl_cv_suspend, &zilog->zl_lock);
1400 		mutex_exit(&zilog->zl_lock);
1401 		return (0);
1402 	}
1403 	zilog->zl_suspending = B_TRUE;
1404 	mutex_exit(&zilog->zl_lock);
1405 
1406 	zil_commit(zilog, UINT64_MAX, 0);
1407 
1408 	/*
1409 	 * Wait for any in-flight log writes to complete.
1410 	 */
1411 	mutex_enter(&zilog->zl_lock);
1412 	while (zilog->zl_writer)
1413 		cv_wait(&zilog->zl_cv_writer, &zilog->zl_lock);
1414 	mutex_exit(&zilog->zl_lock);
1415 
1416 	zil_destroy(zilog, B_FALSE);
1417 
1418 	mutex_enter(&zilog->zl_lock);
1419 	zilog->zl_suspending = B_FALSE;
1420 	cv_broadcast(&zilog->zl_cv_suspend);
1421 	mutex_exit(&zilog->zl_lock);
1422 
1423 	return (0);
1424 }
1425 
1426 void
1427 zil_resume(zilog_t *zilog)
1428 {
1429 	mutex_enter(&zilog->zl_lock);
1430 	ASSERT(zilog->zl_suspend != 0);
1431 	zilog->zl_suspend--;
1432 	mutex_exit(&zilog->zl_lock);
1433 }
1434 
1435 typedef struct zil_replay_arg {
1436 	objset_t	*zr_os;
1437 	zil_replay_func_t **zr_replay;
1438 	void		*zr_arg;
1439 	boolean_t	zr_byteswap;
1440 	char		*zr_lrbuf;
1441 } zil_replay_arg_t;
1442 
1443 static void
1444 zil_replay_log_record(zilog_t *zilog, lr_t *lr, void *zra, uint64_t claim_txg)
1445 {
1446 	zil_replay_arg_t *zr = zra;
1447 	const zil_header_t *zh = zilog->zl_header;
1448 	uint64_t reclen = lr->lrc_reclen;
1449 	uint64_t txtype = lr->lrc_txtype;
1450 	char *name;
1451 	int pass, error;
1452 
1453 	if (!zilog->zl_replay)			/* giving up */
1454 		return;
1455 
1456 	if (lr->lrc_txg < claim_txg)		/* already committed */
1457 		return;
1458 
1459 	if (lr->lrc_seq <= zh->zh_replay_seq)	/* already replayed */
1460 		return;
1461 
1462 	/* Strip case-insensitive bit, still present in log record */
1463 	txtype &= ~TX_CI;
1464 
1465 	if (txtype == 0 || txtype >= TX_MAX_TYPE) {
1466 		error = EINVAL;
1467 		goto bad;
1468 	}
1469 
1470 	/*
1471 	 * Make a copy of the data so we can revise and extend it.
1472 	 */
1473 	bcopy(lr, zr->zr_lrbuf, reclen);
1474 
1475 	/*
1476 	 * The log block containing this lr may have been byteswapped
1477 	 * so that we can easily examine common fields like lrc_txtype.
1478 	 * However, the log is a mix of different data types, and only the
1479 	 * replay vectors know how to byteswap their records.  Therefore, if
1480 	 * the lr was byteswapped, undo it before invoking the replay vector.
1481 	 */
1482 	if (zr->zr_byteswap)
1483 		byteswap_uint64_array(zr->zr_lrbuf, reclen);
1484 
1485 	/*
1486 	 * If this is a TX_WRITE with a blkptr, suck in the data.
1487 	 */
1488 	if (txtype == TX_WRITE && reclen == sizeof (lr_write_t)) {
1489 		lr_write_t *lrw = (lr_write_t *)lr;
1490 		blkptr_t *wbp = &lrw->lr_blkptr;
1491 		uint64_t wlen = lrw->lr_length;
1492 		char *wbuf = zr->zr_lrbuf + reclen;
1493 
1494 		if (BP_IS_HOLE(wbp)) {	/* compressed to a hole */
1495 			bzero(wbuf, wlen);
1496 		} else {
1497 			/*
1498 			 * A subsequent write may have overwritten this block,
1499 			 * in which case wbp may have been been freed and
1500 			 * reallocated, and our read of wbp may fail with a
1501 			 * checksum error.  We can safely ignore this because
1502 			 * the later write will provide the correct data.
1503 			 */
1504 			zbookmark_t zb;
1505 
1506 			zb.zb_objset = dmu_objset_id(zilog->zl_os);
1507 			zb.zb_object = lrw->lr_foid;
1508 			zb.zb_level = -1;
1509 			zb.zb_blkid = lrw->lr_offset / BP_GET_LSIZE(wbp);
1510 
1511 			(void) zio_wait(zio_read(NULL, zilog->zl_spa,
1512 			    wbp, wbuf, BP_GET_LSIZE(wbp), NULL, NULL,
1513 			    ZIO_PRIORITY_SYNC_READ,
1514 			    ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE, &zb));
1515 			(void) memmove(wbuf, wbuf + lrw->lr_blkoff, wlen);
1516 		}
1517 	}
1518 
1519 	/*
1520 	 * We must now do two things atomically: replay this log record,
1521 	 * and update the log header sequence number to reflect the fact that
1522 	 * we did so. At the end of each replay function the sequence number
1523 	 * is updated if we are in replay mode.
1524 	 */
1525 	for (pass = 1; pass <= 2; pass++) {
1526 		zilog->zl_replaying_seq = lr->lrc_seq;
1527 		/* Only byteswap (if needed) on the 1st pass.  */
1528 		error = zr->zr_replay[txtype](zr->zr_arg, zr->zr_lrbuf,
1529 		    zr->zr_byteswap && pass == 1);
1530 
1531 		if (!error)
1532 			return;
1533 
1534 		/*
1535 		 * The DMU's dnode layer doesn't see removes until the txg
1536 		 * commits, so a subsequent claim can spuriously fail with
1537 		 * EEXIST. So if we receive any error we try syncing out
1538 		 * any removes then retry the transaction.
1539 		 */
1540 		if (pass == 1)
1541 			txg_wait_synced(spa_get_dsl(zilog->zl_spa), 0);
1542 	}
1543 
1544 bad:
1545 	ASSERT(error);
1546 	name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
1547 	dmu_objset_name(zr->zr_os, name);
1548 	cmn_err(CE_WARN, "ZFS replay transaction error %d, "
1549 	    "dataset %s, seq 0x%llx, txtype %llu %s\n",
1550 	    error, name, (u_longlong_t)lr->lrc_seq, (u_longlong_t)txtype,
1551 	    (lr->lrc_txtype & TX_CI) ? "CI" : "");
1552 	zilog->zl_replay = B_FALSE;
1553 	kmem_free(name, MAXNAMELEN);
1554 }
1555 
1556 /* ARGSUSED */
1557 static void
1558 zil_incr_blks(zilog_t *zilog, blkptr_t *bp, void *arg, uint64_t claim_txg)
1559 {
1560 	zilog->zl_replay_blks++;
1561 }
1562 
1563 /*
1564  * If this dataset has a non-empty intent log, replay it and destroy it.
1565  */
1566 void
1567 zil_replay(objset_t *os, void *arg, zil_replay_func_t *replay_func[TX_MAX_TYPE])
1568 {
1569 	zilog_t *zilog = dmu_objset_zil(os);
1570 	const zil_header_t *zh = zilog->zl_header;
1571 	zil_replay_arg_t zr;
1572 
1573 	if (zil_empty(zilog)) {
1574 		zil_destroy(zilog, B_TRUE);
1575 		return;
1576 	}
1577 
1578 	zr.zr_os = os;
1579 	zr.zr_replay = replay_func;
1580 	zr.zr_arg = arg;
1581 	zr.zr_byteswap = BP_SHOULD_BYTESWAP(&zh->zh_log);
1582 	zr.zr_lrbuf = kmem_alloc(2 * SPA_MAXBLOCKSIZE, KM_SLEEP);
1583 
1584 	/*
1585 	 * Wait for in-progress removes to sync before starting replay.
1586 	 */
1587 	txg_wait_synced(zilog->zl_dmu_pool, 0);
1588 
1589 	zilog->zl_replay = B_TRUE;
1590 	zilog->zl_replay_time = lbolt;
1591 	ASSERT(zilog->zl_replay_blks == 0);
1592 	(void) zil_parse(zilog, zil_incr_blks, zil_replay_log_record, &zr,
1593 	    zh->zh_claim_txg);
1594 	kmem_free(zr.zr_lrbuf, 2 * SPA_MAXBLOCKSIZE);
1595 
1596 	zil_destroy(zilog, B_FALSE);
1597 	txg_wait_synced(zilog->zl_dmu_pool, zilog->zl_destroy_txg);
1598 	zilog->zl_replay = B_FALSE;
1599 }
1600 
1601 /*
1602  * Report whether all transactions are committed
1603  */
1604 int
1605 zil_is_committed(zilog_t *zilog)
1606 {
1607 	lwb_t *lwb;
1608 	int ret;
1609 
1610 	mutex_enter(&zilog->zl_lock);
1611 	while (zilog->zl_writer)
1612 		cv_wait(&zilog->zl_cv_writer, &zilog->zl_lock);
1613 
1614 	/* recent unpushed intent log transactions? */
1615 	if (!list_is_empty(&zilog->zl_itx_list)) {
1616 		ret = B_FALSE;
1617 		goto out;
1618 	}
1619 
1620 	/* intent log never used? */
1621 	lwb = list_head(&zilog->zl_lwb_list);
1622 	if (lwb == NULL) {
1623 		ret = B_TRUE;
1624 		goto out;
1625 	}
1626 
1627 	/*
1628 	 * more than 1 log buffer means zil_sync() hasn't yet freed
1629 	 * entries after a txg has committed
1630 	 */
1631 	if (list_next(&zilog->zl_lwb_list, lwb)) {
1632 		ret = B_FALSE;
1633 		goto out;
1634 	}
1635 
1636 	ASSERT(zil_empty(zilog));
1637 	ret = B_TRUE;
1638 out:
1639 	cv_broadcast(&zilog->zl_cv_writer);
1640 	mutex_exit(&zilog->zl_lock);
1641 	return (ret);
1642 }
1643