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