xref: /illumos-gate/usr/src/uts/common/fs/zfs/zil.c (revision 43466aae47bfcd2ad9bf501faec8e75c08095e4f)
1fa9e4066Sahrens /*
2fa9e4066Sahrens  * CDDL HEADER START
3fa9e4066Sahrens  *
4fa9e4066Sahrens  * The contents of this file are subject to the terms of the
5fe9cf88cSperrin  * Common Development and Distribution License (the "License").
6fe9cf88cSperrin  * You may not use this file except in compliance with the License.
7fa9e4066Sahrens  *
8fa9e4066Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9fa9e4066Sahrens  * or http://www.opensolaris.org/os/licensing.
10fa9e4066Sahrens  * See the License for the specific language governing permissions
11fa9e4066Sahrens  * and limitations under the License.
12fa9e4066Sahrens  *
13fa9e4066Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
14fa9e4066Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15fa9e4066Sahrens  * If applicable, add the following below this CDDL HEADER, with the
16fa9e4066Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
17fa9e4066Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
18fa9e4066Sahrens  *
19fa9e4066Sahrens  * CDDL HEADER END
20fa9e4066Sahrens  */
21fa9e4066Sahrens /*
2255da60b9SMark J Musante  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23be6fd75aSMatthew Ahrens  * Copyright (c) 2013 by Delphix. All rights reserved.
24fa9e4066Sahrens  */
25fa9e4066Sahrens 
2655da60b9SMark J Musante /* Portions Copyright 2010 Robert Milkowski */
2755da60b9SMark J Musante 
28fa9e4066Sahrens #include <sys/zfs_context.h>
29fa9e4066Sahrens #include <sys/spa.h>
30fa9e4066Sahrens #include <sys/dmu.h>
31fa9e4066Sahrens #include <sys/zap.h>
32fa9e4066Sahrens #include <sys/arc.h>
33fa9e4066Sahrens #include <sys/stat.h>
34fa9e4066Sahrens #include <sys/resource.h>
35fa9e4066Sahrens #include <sys/zil.h>
36fa9e4066Sahrens #include <sys/zil_impl.h>
37fa9e4066Sahrens #include <sys/dsl_dataset.h>
384b964adaSGeorge Wilson #include <sys/vdev_impl.h>
39d63d470bSgw #include <sys/dmu_tx.h>
403f9d6ad7SLin Ling #include <sys/dsl_pool.h>
41fa9e4066Sahrens 
42fa9e4066Sahrens /*
43fa9e4066Sahrens  * The zfs intent log (ZIL) saves transaction records of system calls
44fa9e4066Sahrens  * that change the file system in memory with enough information
45fa9e4066Sahrens  * to be able to replay them. These are stored in memory until
46fa9e4066Sahrens  * either the DMU transaction group (txg) commits them to the stable pool
47fa9e4066Sahrens  * and they can be discarded, or they are flushed to the stable log
48fa9e4066Sahrens  * (also in the pool) due to a fsync, O_DSYNC or other synchronous
49fa9e4066Sahrens  * requirement. In the event of a panic or power fail then those log
50fa9e4066Sahrens  * records (transactions) are replayed.
51fa9e4066Sahrens  *
52fa9e4066Sahrens  * There is one ZIL per file system. Its on-disk (pool) format consists
53fa9e4066Sahrens  * of 3 parts:
54fa9e4066Sahrens  *
55fa9e4066Sahrens  * 	- ZIL header
56fa9e4066Sahrens  * 	- ZIL blocks
57fa9e4066Sahrens  * 	- ZIL records
58fa9e4066Sahrens  *
59fa9e4066Sahrens  * A log record holds a system call transaction. Log blocks can
60fa9e4066Sahrens  * hold many log records and the blocks are chained together.
61fa9e4066Sahrens  * Each ZIL block contains a block pointer (blkptr_t) to the next
62fa9e4066Sahrens  * ZIL block in the chain. The ZIL header points to the first
63fa9e4066Sahrens  * block in the chain. Note there is not a fixed place in the pool
64fa9e4066Sahrens  * to hold blocks. They are dynamically allocated and freed as
65fa9e4066Sahrens  * needed from the blocks available. Figure X shows the ZIL structure:
66fa9e4066Sahrens  */
67fa9e4066Sahrens 
68fa9e4066Sahrens /*
69f7170741SWill Andrews  * Disable intent logging replay.  This global ZIL switch affects all pools.
70fa9e4066Sahrens  */
71f7170741SWill Andrews int zil_replay_disable = 0;
72416e0cd8Sek 
73416e0cd8Sek /*
74416e0cd8Sek  * Tunable parameter for debugging or performance analysis.  Setting
75416e0cd8Sek  * zfs_nocacheflush will cause corruption on power loss if a volatile
76416e0cd8Sek  * out-of-order write cache is enabled.
77416e0cd8Sek  */
78416e0cd8Sek boolean_t zfs_nocacheflush = B_FALSE;
79fa9e4066Sahrens 
80fa9e4066Sahrens static kmem_cache_t *zil_lwb_cache;
81fa9e4066Sahrens 
8291de656bSNeil Perrin static void zil_async_to_sync(zilog_t *zilog, uint64_t foid);
838f18d1faSGeorge Wilson 
846e1f5caaSNeil Perrin #define	LWB_EMPTY(lwb) ((BP_GET_LSIZE(&lwb->lwb_blk) - \
856e1f5caaSNeil Perrin     sizeof (zil_chain_t)) == (lwb->lwb_sz - lwb->lwb_nused))
866e1f5caaSNeil Perrin 
876e1f5caaSNeil Perrin 
885002558fSNeil Perrin /*
895002558fSNeil Perrin  * ziltest is by and large an ugly hack, but very useful in
905002558fSNeil Perrin  * checking replay without tedious work.
915002558fSNeil Perrin  * When running ziltest we want to keep all itx's and so maintain
925002558fSNeil Perrin  * a single list in the zl_itxg[] that uses a high txg: ZILTEST_TXG
935002558fSNeil Perrin  * We subtract TXG_CONCURRENT_STATES to allow for common code.
945002558fSNeil Perrin  */
955002558fSNeil Perrin #define	ZILTEST_TXG (UINT64_MAX - TXG_CONCURRENT_STATES)
965002558fSNeil Perrin 
97fa9e4066Sahrens static int
98b24ab676SJeff Bonwick zil_bp_compare(const void *x1, const void *x2)
99fa9e4066Sahrens {
100b24ab676SJeff Bonwick 	const dva_t *dva1 = &((zil_bp_node_t *)x1)->zn_dva;
101b24ab676SJeff Bonwick 	const dva_t *dva2 = &((zil_bp_node_t *)x2)->zn_dva;
102fa9e4066Sahrens 
103fa9e4066Sahrens 	if (DVA_GET_VDEV(dva1) < DVA_GET_VDEV(dva2))
104fa9e4066Sahrens 		return (-1);
105fa9e4066Sahrens 	if (DVA_GET_VDEV(dva1) > DVA_GET_VDEV(dva2))
106fa9e4066Sahrens 		return (1);
107fa9e4066Sahrens 
108fa9e4066Sahrens 	if (DVA_GET_OFFSET(dva1) < DVA_GET_OFFSET(dva2))
109fa9e4066Sahrens 		return (-1);
110fa9e4066Sahrens 	if (DVA_GET_OFFSET(dva1) > DVA_GET_OFFSET(dva2))
111fa9e4066Sahrens 		return (1);
112fa9e4066Sahrens 
113fa9e4066Sahrens 	return (0);
114fa9e4066Sahrens }
115fa9e4066Sahrens 
116fa9e4066Sahrens static void
117b24ab676SJeff Bonwick zil_bp_tree_init(zilog_t *zilog)
118fa9e4066Sahrens {
119b24ab676SJeff Bonwick 	avl_create(&zilog->zl_bp_tree, zil_bp_compare,
120b24ab676SJeff Bonwick 	    sizeof (zil_bp_node_t), offsetof(zil_bp_node_t, zn_node));
121fa9e4066Sahrens }
122fa9e4066Sahrens 
123fa9e4066Sahrens static void
124b24ab676SJeff Bonwick zil_bp_tree_fini(zilog_t *zilog)
125fa9e4066Sahrens {
126b24ab676SJeff Bonwick 	avl_tree_t *t = &zilog->zl_bp_tree;
127b24ab676SJeff Bonwick 	zil_bp_node_t *zn;
128fa9e4066Sahrens 	void *cookie = NULL;
129fa9e4066Sahrens 
130fa9e4066Sahrens 	while ((zn = avl_destroy_nodes(t, &cookie)) != NULL)
131b24ab676SJeff Bonwick 		kmem_free(zn, sizeof (zil_bp_node_t));
132fa9e4066Sahrens 
133fa9e4066Sahrens 	avl_destroy(t);
134fa9e4066Sahrens }
135fa9e4066Sahrens 
136b24ab676SJeff Bonwick int
137b24ab676SJeff Bonwick zil_bp_tree_add(zilog_t *zilog, const blkptr_t *bp)
138fa9e4066Sahrens {
139b24ab676SJeff Bonwick 	avl_tree_t *t = &zilog->zl_bp_tree;
140b24ab676SJeff Bonwick 	const dva_t *dva = BP_IDENTITY(bp);
141b24ab676SJeff Bonwick 	zil_bp_node_t *zn;
142fa9e4066Sahrens 	avl_index_t where;
143fa9e4066Sahrens 
144fa9e4066Sahrens 	if (avl_find(t, dva, &where) != NULL)
145be6fd75aSMatthew Ahrens 		return (SET_ERROR(EEXIST));
146fa9e4066Sahrens 
147b24ab676SJeff Bonwick 	zn = kmem_alloc(sizeof (zil_bp_node_t), KM_SLEEP);
148fa9e4066Sahrens 	zn->zn_dva = *dva;
149fa9e4066Sahrens 	avl_insert(t, zn, where);
150fa9e4066Sahrens 
151fa9e4066Sahrens 	return (0);
152fa9e4066Sahrens }
153fa9e4066Sahrens 
154d80c45e0Sbonwick static zil_header_t *
155d80c45e0Sbonwick zil_header_in_syncing_context(zilog_t *zilog)
156d80c45e0Sbonwick {
157d80c45e0Sbonwick 	return ((zil_header_t *)zilog->zl_header);
158d80c45e0Sbonwick }
159d80c45e0Sbonwick 
160d80c45e0Sbonwick static void
161d80c45e0Sbonwick zil_init_log_chain(zilog_t *zilog, blkptr_t *bp)
162d80c45e0Sbonwick {
163d80c45e0Sbonwick 	zio_cksum_t *zc = &bp->blk_cksum;
164d80c45e0Sbonwick 
165d80c45e0Sbonwick 	zc->zc_word[ZIL_ZC_GUID_0] = spa_get_random(-1ULL);
166d80c45e0Sbonwick 	zc->zc_word[ZIL_ZC_GUID_1] = spa_get_random(-1ULL);
167d80c45e0Sbonwick 	zc->zc_word[ZIL_ZC_OBJSET] = dmu_objset_id(zilog->zl_os);
168d80c45e0Sbonwick 	zc->zc_word[ZIL_ZC_SEQ] = 1ULL;
169d80c45e0Sbonwick }
170d80c45e0Sbonwick 
171fa9e4066Sahrens /*
172b24ab676SJeff Bonwick  * Read a log block and make sure it's valid.
173fa9e4066Sahrens  */
174fa9e4066Sahrens static int
1756e1f5caaSNeil Perrin zil_read_log_block(zilog_t *zilog, const blkptr_t *bp, blkptr_t *nbp, void *dst,
1766e1f5caaSNeil Perrin     char **end)
177fa9e4066Sahrens {
178b24ab676SJeff Bonwick 	enum zio_flag zio_flags = ZIO_FLAG_CANFAIL;
17913506d1eSmaybee 	uint32_t aflags = ARC_WAIT;
180b24ab676SJeff Bonwick 	arc_buf_t *abuf = NULL;
181b24ab676SJeff Bonwick 	zbookmark_t zb;
182fa9e4066Sahrens 	int error;
183fa9e4066Sahrens 
184b24ab676SJeff Bonwick 	if (zilog->zl_header->zh_claim_txg == 0)
185b24ab676SJeff Bonwick 		zio_flags |= ZIO_FLAG_SPECULATIVE | ZIO_FLAG_SCRUB;
186ea8dc4b6Seschrock 
187b24ab676SJeff Bonwick 	if (!(zilog->zl_header->zh_flags & ZIL_CLAIM_LR_SEQ_VALID))
188b24ab676SJeff Bonwick 		zio_flags |= ZIO_FLAG_SPECULATIVE;
189fa9e4066Sahrens 
190b24ab676SJeff Bonwick 	SET_BOOKMARK(&zb, bp->blk_cksum.zc_word[ZIL_ZC_OBJSET],
191b24ab676SJeff Bonwick 	    ZB_ZIL_OBJECT, ZB_ZIL_LEVEL, bp->blk_cksum.zc_word[ZIL_ZC_SEQ]);
192b24ab676SJeff Bonwick 
1931b912ec7SGeorge Wilson 	error = arc_read(NULL, zilog->zl_spa, bp, arc_getbuf_func, &abuf,
194b24ab676SJeff Bonwick 	    ZIO_PRIORITY_SYNC_READ, zio_flags, &aflags, &zb);
195fa9e4066Sahrens 
196d80c45e0Sbonwick 	if (error == 0) {
197d80c45e0Sbonwick 		zio_cksum_t cksum = bp->blk_cksum;
198fa9e4066Sahrens 
199d80c45e0Sbonwick 		/*
200f5e6e722SNeil Perrin 		 * Validate the checksummed log block.
201f5e6e722SNeil Perrin 		 *
202d80c45e0Sbonwick 		 * Sequence numbers should be... sequential.  The checksum
203d80c45e0Sbonwick 		 * verifier for the next block should be bp's checksum plus 1.
204f5e6e722SNeil Perrin 		 *
205f5e6e722SNeil Perrin 		 * Also check the log chain linkage and size used.
206d80c45e0Sbonwick 		 */
207d80c45e0Sbonwick 		cksum.zc_word[ZIL_ZC_SEQ]++;
208d80c45e0Sbonwick 
2096e1f5caaSNeil Perrin 		if (BP_GET_CHECKSUM(bp) == ZIO_CHECKSUM_ZILOG2) {
2106e1f5caaSNeil Perrin 			zil_chain_t *zilc = abuf->b_data;
2116e1f5caaSNeil Perrin 			char *lr = (char *)(zilc + 1);
2126e1f5caaSNeil Perrin 			uint64_t len = zilc->zc_nused - sizeof (zil_chain_t);
2136e1f5caaSNeil Perrin 
2146e1f5caaSNeil Perrin 			if (bcmp(&cksum, &zilc->zc_next_blk.blk_cksum,
2156e1f5caaSNeil Perrin 			    sizeof (cksum)) || BP_IS_HOLE(&zilc->zc_next_blk)) {
216be6fd75aSMatthew Ahrens 				error = SET_ERROR(ECKSUM);
2176e1f5caaSNeil Perrin 			} else {
2186e1f5caaSNeil Perrin 				bcopy(lr, dst, len);
2196e1f5caaSNeil Perrin 				*end = (char *)dst + len;
2206e1f5caaSNeil Perrin 				*nbp = zilc->zc_next_blk;
2216e1f5caaSNeil Perrin 			}
2226e1f5caaSNeil Perrin 		} else {
2236e1f5caaSNeil Perrin 			char *lr = abuf->b_data;
2246e1f5caaSNeil Perrin 			uint64_t size = BP_GET_LSIZE(bp);
2256e1f5caaSNeil Perrin 			zil_chain_t *zilc = (zil_chain_t *)(lr + size) - 1;
2266e1f5caaSNeil Perrin 
2276e1f5caaSNeil Perrin 			if (bcmp(&cksum, &zilc->zc_next_blk.blk_cksum,
2286e1f5caaSNeil Perrin 			    sizeof (cksum)) || BP_IS_HOLE(&zilc->zc_next_blk) ||
2296e1f5caaSNeil Perrin 			    (zilc->zc_nused > (size - sizeof (*zilc)))) {
230be6fd75aSMatthew Ahrens 				error = SET_ERROR(ECKSUM);
2316e1f5caaSNeil Perrin 			} else {
2326e1f5caaSNeil Perrin 				bcopy(lr, dst, zilc->zc_nused);
2336e1f5caaSNeil Perrin 				*end = (char *)dst + zilc->zc_nused;
2346e1f5caaSNeil Perrin 				*nbp = zilc->zc_next_blk;
2356e1f5caaSNeil Perrin 			}
2366e1f5caaSNeil Perrin 		}
237fa9e4066Sahrens 
2383b2aab18SMatthew Ahrens 		VERIFY(arc_buf_remove_ref(abuf, &abuf));
239fa9e4066Sahrens 	}
240fa9e4066Sahrens 
241b24ab676SJeff Bonwick 	return (error);
242b24ab676SJeff Bonwick }
243b24ab676SJeff Bonwick 
244b24ab676SJeff Bonwick /*
245b24ab676SJeff Bonwick  * Read a TX_WRITE log data block.
246b24ab676SJeff Bonwick  */
247b24ab676SJeff Bonwick static int
248b24ab676SJeff Bonwick zil_read_log_data(zilog_t *zilog, const lr_write_t *lr, void *wbuf)
249b24ab676SJeff Bonwick {
250b24ab676SJeff Bonwick 	enum zio_flag zio_flags = ZIO_FLAG_CANFAIL;
251b24ab676SJeff Bonwick 	const blkptr_t *bp = &lr->lr_blkptr;
252b24ab676SJeff Bonwick 	uint32_t aflags = ARC_WAIT;
253b24ab676SJeff Bonwick 	arc_buf_t *abuf = NULL;
254b24ab676SJeff Bonwick 	zbookmark_t zb;
255b24ab676SJeff Bonwick 	int error;
256b24ab676SJeff Bonwick 
257b24ab676SJeff Bonwick 	if (BP_IS_HOLE(bp)) {
258b24ab676SJeff Bonwick 		if (wbuf != NULL)
259b24ab676SJeff Bonwick 			bzero(wbuf, MAX(BP_GET_LSIZE(bp), lr->lr_length));
260b24ab676SJeff Bonwick 		return (0);
261b24ab676SJeff Bonwick 	}
262b24ab676SJeff Bonwick 
263b24ab676SJeff Bonwick 	if (zilog->zl_header->zh_claim_txg == 0)
264b24ab676SJeff Bonwick 		zio_flags |= ZIO_FLAG_SPECULATIVE | ZIO_FLAG_SCRUB;
265b24ab676SJeff Bonwick 
266b24ab676SJeff Bonwick 	SET_BOOKMARK(&zb, dmu_objset_id(zilog->zl_os), lr->lr_foid,
267b24ab676SJeff Bonwick 	    ZB_ZIL_LEVEL, lr->lr_offset / BP_GET_LSIZE(bp));
268b24ab676SJeff Bonwick 
2691b912ec7SGeorge Wilson 	error = arc_read(NULL, zilog->zl_spa, bp, arc_getbuf_func, &abuf,
270b24ab676SJeff Bonwick 	    ZIO_PRIORITY_SYNC_READ, zio_flags, &aflags, &zb);
271b24ab676SJeff Bonwick 
272b24ab676SJeff Bonwick 	if (error == 0) {
273b24ab676SJeff Bonwick 		if (wbuf != NULL)
274b24ab676SJeff Bonwick 			bcopy(abuf->b_data, wbuf, arc_buf_size(abuf));
275b24ab676SJeff Bonwick 		(void) arc_buf_remove_ref(abuf, &abuf);
276b24ab676SJeff Bonwick 	}
277fa9e4066Sahrens 
278d80c45e0Sbonwick 	return (error);
279fa9e4066Sahrens }
280fa9e4066Sahrens 
281fa9e4066Sahrens /*
282fa9e4066Sahrens  * Parse the intent log, and call parse_func for each valid record within.
283fa9e4066Sahrens  */
284b24ab676SJeff Bonwick int
285fa9e4066Sahrens zil_parse(zilog_t *zilog, zil_parse_blk_func_t *parse_blk_func,
286fa9e4066Sahrens     zil_parse_lr_func_t *parse_lr_func, void *arg, uint64_t txg)
287fa9e4066Sahrens {
288d80c45e0Sbonwick 	const zil_header_t *zh = zilog->zl_header;
289b24ab676SJeff Bonwick 	boolean_t claimed = !!zh->zh_claim_txg;
290b24ab676SJeff Bonwick 	uint64_t claim_blk_seq = claimed ? zh->zh_claim_blk_seq : UINT64_MAX;
291b24ab676SJeff Bonwick 	uint64_t claim_lr_seq = claimed ? zh->zh_claim_lr_seq : UINT64_MAX;
292b24ab676SJeff Bonwick 	uint64_t max_blk_seq = 0;
293b24ab676SJeff Bonwick 	uint64_t max_lr_seq = 0;
294b24ab676SJeff Bonwick 	uint64_t blk_count = 0;
295b24ab676SJeff Bonwick 	uint64_t lr_count = 0;
296b24ab676SJeff Bonwick 	blkptr_t blk, next_blk;
297fa9e4066Sahrens 	char *lrbuf, *lrp;
298b24ab676SJeff Bonwick 	int error = 0;
299fa9e4066Sahrens 
300b24ab676SJeff Bonwick 	/*
301b24ab676SJeff Bonwick 	 * Old logs didn't record the maximum zh_claim_lr_seq.
302b24ab676SJeff Bonwick 	 */
303b24ab676SJeff Bonwick 	if (!(zh->zh_flags & ZIL_CLAIM_LR_SEQ_VALID))
304b24ab676SJeff Bonwick 		claim_lr_seq = UINT64_MAX;
305fa9e4066Sahrens 
306fa9e4066Sahrens 	/*
307fa9e4066Sahrens 	 * Starting at the block pointed to by zh_log we read the log chain.
308fa9e4066Sahrens 	 * For each block in the chain we strongly check that block to
309fa9e4066Sahrens 	 * ensure its validity.  We stop when an invalid block is found.
310fa9e4066Sahrens 	 * For each block pointer in the chain we call parse_blk_func().
311fa9e4066Sahrens 	 * For each record in each valid block we call parse_lr_func().
312d80c45e0Sbonwick 	 * If the log has been claimed, stop if we encounter a sequence
313d80c45e0Sbonwick 	 * number greater than the highest claimed sequence number.
314fa9e4066Sahrens 	 */
315b24ab676SJeff Bonwick 	lrbuf = zio_buf_alloc(SPA_MAXBLOCKSIZE);
316b24ab676SJeff Bonwick 	zil_bp_tree_init(zilog);
317d80c45e0Sbonwick 
318b24ab676SJeff Bonwick 	for (blk = zh->zh_log; !BP_IS_HOLE(&blk); blk = next_blk) {
319b24ab676SJeff Bonwick 		uint64_t blk_seq = blk.blk_cksum.zc_word[ZIL_ZC_SEQ];
320b24ab676SJeff Bonwick 		int reclen;
3216e1f5caaSNeil Perrin 		char *end;
322d80c45e0Sbonwick 
323b24ab676SJeff Bonwick 		if (blk_seq > claim_blk_seq)
324b24ab676SJeff Bonwick 			break;
325b24ab676SJeff Bonwick 		if ((error = parse_blk_func(zilog, &blk, arg, txg)) != 0)
326b24ab676SJeff Bonwick 			break;
3276e1f5caaSNeil Perrin 		ASSERT3U(max_blk_seq, <, blk_seq);
328b24ab676SJeff Bonwick 		max_blk_seq = blk_seq;
329b24ab676SJeff Bonwick 		blk_count++;
330fa9e4066Sahrens 
331b24ab676SJeff Bonwick 		if (max_lr_seq == claim_lr_seq && max_blk_seq == claim_blk_seq)
332b24ab676SJeff Bonwick 			break;
333fa9e4066Sahrens 
3346e1f5caaSNeil Perrin 		error = zil_read_log_block(zilog, &blk, &next_blk, lrbuf, &end);
3353b2aab18SMatthew Ahrens 		if (error != 0)
336fa9e4066Sahrens 			break;
337fa9e4066Sahrens 
3386e1f5caaSNeil Perrin 		for (lrp = lrbuf; lrp < end; lrp += reclen) {
339fa9e4066Sahrens 			lr_t *lr = (lr_t *)lrp;
340fa9e4066Sahrens 			reclen = lr->lrc_reclen;
341fa9e4066Sahrens 			ASSERT3U(reclen, >=, sizeof (lr_t));
342b24ab676SJeff Bonwick 			if (lr->lrc_seq > claim_lr_seq)
343b24ab676SJeff Bonwick 				goto done;
344b24ab676SJeff Bonwick 			if ((error = parse_lr_func(zilog, lr, arg, txg)) != 0)
345b24ab676SJeff Bonwick 				goto done;
3466e1f5caaSNeil Perrin 			ASSERT3U(max_lr_seq, <, lr->lrc_seq);
347b24ab676SJeff Bonwick 			max_lr_seq = lr->lrc_seq;
348b24ab676SJeff Bonwick 			lr_count++;
349fa9e4066Sahrens 		}
350fa9e4066Sahrens 	}
351b24ab676SJeff Bonwick done:
352b24ab676SJeff Bonwick 	zilog->zl_parse_error = error;
353b24ab676SJeff Bonwick 	zilog->zl_parse_blk_seq = max_blk_seq;
354b24ab676SJeff Bonwick 	zilog->zl_parse_lr_seq = max_lr_seq;
355b24ab676SJeff Bonwick 	zilog->zl_parse_blk_count = blk_count;
356b24ab676SJeff Bonwick 	zilog->zl_parse_lr_count = lr_count;
357b24ab676SJeff Bonwick 
358b24ab676SJeff Bonwick 	ASSERT(!claimed || !(zh->zh_flags & ZIL_CLAIM_LR_SEQ_VALID) ||
359b24ab676SJeff Bonwick 	    (max_blk_seq == claim_blk_seq && max_lr_seq == claim_lr_seq));
360d80c45e0Sbonwick 
361b24ab676SJeff Bonwick 	zil_bp_tree_fini(zilog);
362b24ab676SJeff Bonwick 	zio_buf_free(lrbuf, SPA_MAXBLOCKSIZE);
363b24ab676SJeff Bonwick 
364b24ab676SJeff Bonwick 	return (error);
365fa9e4066Sahrens }
366fa9e4066Sahrens 
367b24ab676SJeff Bonwick static int
368fa9e4066Sahrens zil_claim_log_block(zilog_t *zilog, blkptr_t *bp, void *tx, uint64_t first_txg)
369fa9e4066Sahrens {
370fa9e4066Sahrens 	/*
371fa9e4066Sahrens 	 * Claim log block if not already committed and not already claimed.
372b24ab676SJeff Bonwick 	 * If tx == NULL, just verify that the block is claimable.
373fa9e4066Sahrens 	 */
374*43466aaeSMax Grossman 	if (BP_IS_HOLE(bp) || bp->blk_birth < first_txg ||
375*43466aaeSMax Grossman 	    zil_bp_tree_add(zilog, bp) != 0)
376b24ab676SJeff Bonwick 		return (0);
377b24ab676SJeff Bonwick 
378b24ab676SJeff Bonwick 	return (zio_wait(zio_claim(NULL, zilog->zl_spa,
379b24ab676SJeff Bonwick 	    tx == NULL ? 0 : first_txg, bp, spa_claim_notify, NULL,
380b24ab676SJeff Bonwick 	    ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE | ZIO_FLAG_SCRUB)));
381fa9e4066Sahrens }
382fa9e4066Sahrens 
383b24ab676SJeff Bonwick static int
384fa9e4066Sahrens zil_claim_log_record(zilog_t *zilog, lr_t *lrc, void *tx, uint64_t first_txg)
385fa9e4066Sahrens {
386b24ab676SJeff Bonwick 	lr_write_t *lr = (lr_write_t *)lrc;
387b24ab676SJeff Bonwick 	int error;
388b24ab676SJeff Bonwick 
389b24ab676SJeff Bonwick 	if (lrc->lrc_txtype != TX_WRITE)
390b24ab676SJeff Bonwick 		return (0);
391b24ab676SJeff Bonwick 
392b24ab676SJeff Bonwick 	/*
393b24ab676SJeff Bonwick 	 * If the block is not readable, don't claim it.  This can happen
394b24ab676SJeff Bonwick 	 * in normal operation when a log block is written to disk before
395b24ab676SJeff Bonwick 	 * some of the dmu_sync() blocks it points to.  In this case, the
396b24ab676SJeff Bonwick 	 * transaction cannot have been committed to anyone (we would have
397b24ab676SJeff Bonwick 	 * waited for all writes to be stable first), so it is semantically
398b24ab676SJeff Bonwick 	 * correct to declare this the end of the log.
399b24ab676SJeff Bonwick 	 */
400b24ab676SJeff Bonwick 	if (lr->lr_blkptr.blk_birth >= first_txg &&
401b24ab676SJeff Bonwick 	    (error = zil_read_log_data(zilog, lr, NULL)) != 0)
402b24ab676SJeff Bonwick 		return (error);
403b24ab676SJeff Bonwick 	return (zil_claim_log_block(zilog, &lr->lr_blkptr, tx, first_txg));
404fa9e4066Sahrens }
405fa9e4066Sahrens 
406fa9e4066Sahrens /* ARGSUSED */
407b24ab676SJeff Bonwick static int
408fa9e4066Sahrens zil_free_log_block(zilog_t *zilog, blkptr_t *bp, void *tx, uint64_t claim_txg)
409fa9e4066Sahrens {
410b24ab676SJeff Bonwick 	zio_free_zil(zilog->zl_spa, dmu_tx_get_txg(tx), bp);
411b24ab676SJeff Bonwick 
412b24ab676SJeff Bonwick 	return (0);
413fa9e4066Sahrens }
414fa9e4066Sahrens 
415b24ab676SJeff Bonwick static int
416fa9e4066Sahrens zil_free_log_record(zilog_t *zilog, lr_t *lrc, void *tx, uint64_t claim_txg)
417fa9e4066Sahrens {
418b24ab676SJeff Bonwick 	lr_write_t *lr = (lr_write_t *)lrc;
419b24ab676SJeff Bonwick 	blkptr_t *bp = &lr->lr_blkptr;
420b24ab676SJeff Bonwick 
421fa9e4066Sahrens 	/*
422fa9e4066Sahrens 	 * If we previously claimed it, we need to free it.
423fa9e4066Sahrens 	 */
424b24ab676SJeff Bonwick 	if (claim_txg != 0 && lrc->lrc_txtype == TX_WRITE &&
425*43466aaeSMax Grossman 	    bp->blk_birth >= claim_txg && zil_bp_tree_add(zilog, bp) == 0 &&
426*43466aaeSMax Grossman 	    !BP_IS_HOLE(bp))
427b24ab676SJeff Bonwick 		zio_free(zilog->zl_spa, dmu_tx_get_txg(tx), bp);
428b24ab676SJeff Bonwick 
429b24ab676SJeff Bonwick 	return (0);
430fa9e4066Sahrens }
431fa9e4066Sahrens 
4326e1f5caaSNeil Perrin static lwb_t *
4336e1f5caaSNeil Perrin zil_alloc_lwb(zilog_t *zilog, blkptr_t *bp, uint64_t txg)
4346e1f5caaSNeil Perrin {
4356e1f5caaSNeil Perrin 	lwb_t *lwb;
4366e1f5caaSNeil Perrin 
4376e1f5caaSNeil Perrin 	lwb = kmem_cache_alloc(zil_lwb_cache, KM_SLEEP);
4386e1f5caaSNeil Perrin 	lwb->lwb_zilog = zilog;
4396e1f5caaSNeil Perrin 	lwb->lwb_blk = *bp;
4406e1f5caaSNeil Perrin 	lwb->lwb_buf = zio_buf_alloc(BP_GET_LSIZE(bp));
4416e1f5caaSNeil Perrin 	lwb->lwb_max_txg = txg;
4426e1f5caaSNeil Perrin 	lwb->lwb_zio = NULL;
4436e1f5caaSNeil Perrin 	lwb->lwb_tx = NULL;
4446e1f5caaSNeil Perrin 	if (BP_GET_CHECKSUM(bp) == ZIO_CHECKSUM_ZILOG2) {
4456e1f5caaSNeil Perrin 		lwb->lwb_nused = sizeof (zil_chain_t);
4466e1f5caaSNeil Perrin 		lwb->lwb_sz = BP_GET_LSIZE(bp);
4476e1f5caaSNeil Perrin 	} else {
4486e1f5caaSNeil Perrin 		lwb->lwb_nused = 0;
4496e1f5caaSNeil Perrin 		lwb->lwb_sz = BP_GET_LSIZE(bp) - sizeof (zil_chain_t);
4506e1f5caaSNeil Perrin 	}
4516e1f5caaSNeil Perrin 
4526e1f5caaSNeil Perrin 	mutex_enter(&zilog->zl_lock);
4536e1f5caaSNeil Perrin 	list_insert_tail(&zilog->zl_lwb_list, lwb);
4546e1f5caaSNeil Perrin 	mutex_exit(&zilog->zl_lock);
4556e1f5caaSNeil Perrin 
4566e1f5caaSNeil Perrin 	return (lwb);
4576e1f5caaSNeil Perrin }
4586e1f5caaSNeil Perrin 
459ce636f8bSMatthew Ahrens /*
460ce636f8bSMatthew Ahrens  * Called when we create in-memory log transactions so that we know
461ce636f8bSMatthew Ahrens  * to cleanup the itxs at the end of spa_sync().
462ce636f8bSMatthew Ahrens  */
463ce636f8bSMatthew Ahrens void
464ce636f8bSMatthew Ahrens zilog_dirty(zilog_t *zilog, uint64_t txg)
465ce636f8bSMatthew Ahrens {
466ce636f8bSMatthew Ahrens 	dsl_pool_t *dp = zilog->zl_dmu_pool;
467ce636f8bSMatthew Ahrens 	dsl_dataset_t *ds = dmu_objset_ds(zilog->zl_os);
468ce636f8bSMatthew Ahrens 
469ce636f8bSMatthew Ahrens 	if (dsl_dataset_is_snapshot(ds))
470ce636f8bSMatthew Ahrens 		panic("dirtying snapshot!");
471ce636f8bSMatthew Ahrens 
4723b2aab18SMatthew Ahrens 	if (txg_list_add(&dp->dp_dirty_zilogs, zilog, txg)) {
473ce636f8bSMatthew Ahrens 		/* up the hold count until we can be written out */
474ce636f8bSMatthew Ahrens 		dmu_buf_add_ref(ds->ds_dbuf, zilog);
475ce636f8bSMatthew Ahrens 	}
476ce636f8bSMatthew Ahrens }
477ce636f8bSMatthew Ahrens 
478ce636f8bSMatthew Ahrens boolean_t
479ce636f8bSMatthew Ahrens zilog_is_dirty(zilog_t *zilog)
480ce636f8bSMatthew Ahrens {
481ce636f8bSMatthew Ahrens 	dsl_pool_t *dp = zilog->zl_dmu_pool;
482ce636f8bSMatthew Ahrens 
483ce636f8bSMatthew Ahrens 	for (int t = 0; t < TXG_SIZE; t++) {
484ce636f8bSMatthew Ahrens 		if (txg_list_member(&dp->dp_dirty_zilogs, zilog, t))
485ce636f8bSMatthew Ahrens 			return (B_TRUE);
486ce636f8bSMatthew Ahrens 	}
487ce636f8bSMatthew Ahrens 	return (B_FALSE);
488ce636f8bSMatthew Ahrens }
489ce636f8bSMatthew Ahrens 
490fa9e4066Sahrens /*
491fa9e4066Sahrens  * Create an on-disk intent log.
492fa9e4066Sahrens  */
4936e1f5caaSNeil Perrin static lwb_t *
494fa9e4066Sahrens zil_create(zilog_t *zilog)
495fa9e4066Sahrens {
496d80c45e0Sbonwick 	const zil_header_t *zh = zilog->zl_header;
4976e1f5caaSNeil Perrin 	lwb_t *lwb = NULL;
498d80c45e0Sbonwick 	uint64_t txg = 0;
499d80c45e0Sbonwick 	dmu_tx_t *tx = NULL;
500fa9e4066Sahrens 	blkptr_t blk;
501d80c45e0Sbonwick 	int error = 0;
502fa9e4066Sahrens 
503fa9e4066Sahrens 	/*
504d80c45e0Sbonwick 	 * Wait for any previous destroy to complete.
505fa9e4066Sahrens 	 */
506d80c45e0Sbonwick 	txg_wait_synced(zilog->zl_dmu_pool, zilog->zl_destroy_txg);
507d80c45e0Sbonwick 
508d80c45e0Sbonwick 	ASSERT(zh->zh_claim_txg == 0);
509d80c45e0Sbonwick 	ASSERT(zh->zh_replay_seq == 0);
510d80c45e0Sbonwick 
511d80c45e0Sbonwick 	blk = zh->zh_log;
512fa9e4066Sahrens 
513fa9e4066Sahrens 	/*
5146e1f5caaSNeil Perrin 	 * Allocate an initial log block if:
5156e1f5caaSNeil Perrin 	 *    - there isn't one already
5166e1f5caaSNeil Perrin 	 *    - the existing block is the wrong endianess
517fa9e4066Sahrens 	 */
518899217ddSNeil Perrin 	if (BP_IS_HOLE(&blk) || BP_SHOULD_BYTESWAP(&blk)) {
519d80c45e0Sbonwick 		tx = dmu_tx_create(zilog->zl_os);
520b24ab676SJeff Bonwick 		VERIFY(dmu_tx_assign(tx, TXG_WAIT) == 0);
521d80c45e0Sbonwick 		dsl_dataset_dirty(dmu_objset_ds(zilog->zl_os), tx);
522d80c45e0Sbonwick 		txg = dmu_tx_get_txg(tx);
523d80c45e0Sbonwick 
524899217ddSNeil Perrin 		if (!BP_IS_HOLE(&blk)) {
525b24ab676SJeff Bonwick 			zio_free_zil(zilog->zl_spa, txg, &blk);
526899217ddSNeil Perrin 			BP_ZERO(&blk);
527899217ddSNeil Perrin 		}
528899217ddSNeil Perrin 
529b24ab676SJeff Bonwick 		error = zio_alloc_zil(zilog->zl_spa, txg, &blk, NULL,
530b24ab676SJeff Bonwick 		    ZIL_MIN_BLKSZ, zilog->zl_logbias == ZFS_LOGBIAS_LATENCY);
531d80c45e0Sbonwick 
532d80c45e0Sbonwick 		if (error == 0)
533d80c45e0Sbonwick 			zil_init_log_chain(zilog, &blk);
53413f5297eSperrin 	}
535fa9e4066Sahrens 
536d80c45e0Sbonwick 	/*
537d80c45e0Sbonwick 	 * Allocate a log write buffer (lwb) for the first log block.
538d80c45e0Sbonwick 	 */
5396e1f5caaSNeil Perrin 	if (error == 0)
5406e1f5caaSNeil Perrin 		lwb = zil_alloc_lwb(zilog, &blk, txg);
541fa9e4066Sahrens 
542d80c45e0Sbonwick 	/*
543d80c45e0Sbonwick 	 * If we just allocated the first log block, commit our transaction
544d80c45e0Sbonwick 	 * and wait for zil_sync() to stuff the block poiner into zh_log.
545d80c45e0Sbonwick 	 * (zh is part of the MOS, so we cannot modify it in open context.)
546d80c45e0Sbonwick 	 */
547d80c45e0Sbonwick 	if (tx != NULL) {
548d80c45e0Sbonwick 		dmu_tx_commit(tx);
54913f5297eSperrin 		txg_wait_synced(zilog->zl_dmu_pool, txg);
550d80c45e0Sbonwick 	}
551d80c45e0Sbonwick 
552d80c45e0Sbonwick 	ASSERT(bcmp(&blk, &zh->zh_log, sizeof (blk)) == 0);
5536e1f5caaSNeil Perrin 
5546e1f5caaSNeil Perrin 	return (lwb);
555fa9e4066Sahrens }
556fa9e4066Sahrens 
557fa9e4066Sahrens /*
558fa9e4066Sahrens  * In one tx, free all log blocks and clear the log header.
559d80c45e0Sbonwick  * If keep_first is set, then we're replaying a log with no content.
560d80c45e0Sbonwick  * We want to keep the first block, however, so that the first
561d80c45e0Sbonwick  * synchronous transaction doesn't require a txg_wait_synced()
562d80c45e0Sbonwick  * in zil_create().  We don't need to txg_wait_synced() here either
563d80c45e0Sbonwick  * when keep_first is set, because both zil_create() and zil_destroy()
564d80c45e0Sbonwick  * will wait for any in-progress destroys to complete.
565fa9e4066Sahrens  */
566fa9e4066Sahrens void
567d80c45e0Sbonwick zil_destroy(zilog_t *zilog, boolean_t keep_first)
568fa9e4066Sahrens {
569d80c45e0Sbonwick 	const zil_header_t *zh = zilog->zl_header;
570d80c45e0Sbonwick 	lwb_t *lwb;
571fa9e4066Sahrens 	dmu_tx_t *tx;
572fa9e4066Sahrens 	uint64_t txg;
573fa9e4066Sahrens 
574d80c45e0Sbonwick 	/*
575d80c45e0Sbonwick 	 * Wait for any previous destroy to complete.
576d80c45e0Sbonwick 	 */
577d80c45e0Sbonwick 	txg_wait_synced(zilog->zl_dmu_pool, zilog->zl_destroy_txg);
578fa9e4066Sahrens 
579b24ab676SJeff Bonwick 	zilog->zl_old_header = *zh;		/* debugging aid */
580b24ab676SJeff Bonwick 
581d80c45e0Sbonwick 	if (BP_IS_HOLE(&zh->zh_log))
582fa9e4066Sahrens 		return;
583fa9e4066Sahrens 
584fa9e4066Sahrens 	tx = dmu_tx_create(zilog->zl_os);
585b24ab676SJeff Bonwick 	VERIFY(dmu_tx_assign(tx, TXG_WAIT) == 0);
586fa9e4066Sahrens 	dsl_dataset_dirty(dmu_objset_ds(zilog->zl_os), tx);
587fa9e4066Sahrens 	txg = dmu_tx_get_txg(tx);
588fa9e4066Sahrens 
589d80c45e0Sbonwick 	mutex_enter(&zilog->zl_lock);
590d80c45e0Sbonwick 
591d80c45e0Sbonwick 	ASSERT3U(zilog->zl_destroy_txg, <, txg);
592fa9e4066Sahrens 	zilog->zl_destroy_txg = txg;
593b24ab676SJeff Bonwick 	zilog->zl_keep_first = keep_first;
594d80c45e0Sbonwick 
595d80c45e0Sbonwick 	if (!list_is_empty(&zilog->zl_lwb_list)) {
596d80c45e0Sbonwick 		ASSERT(zh->zh_claim_txg == 0);
597c9ba2a43SEric Schrock 		VERIFY(!keep_first);
598d80c45e0Sbonwick 		while ((lwb = list_head(&zilog->zl_lwb_list)) != NULL) {
599d80c45e0Sbonwick 			list_remove(&zilog->zl_lwb_list, lwb);
600d80c45e0Sbonwick 			if (lwb->lwb_buf != NULL)
601d80c45e0Sbonwick 				zio_buf_free(lwb->lwb_buf, lwb->lwb_sz);
602b24ab676SJeff Bonwick 			zio_free_zil(zilog->zl_spa, txg, &lwb->lwb_blk);
603d80c45e0Sbonwick 			kmem_cache_free(zil_lwb_cache, lwb);
604d80c45e0Sbonwick 		}
605b24ab676SJeff Bonwick 	} else if (!keep_first) {
606ce636f8bSMatthew Ahrens 		zil_destroy_sync(zilog, tx);
607d80c45e0Sbonwick 	}
608b19a79ecSperrin 	mutex_exit(&zilog->zl_lock);
609fa9e4066Sahrens 
610fa9e4066Sahrens 	dmu_tx_commit(tx);
611fa9e4066Sahrens }
612fa9e4066Sahrens 
613ce636f8bSMatthew Ahrens void
614ce636f8bSMatthew Ahrens zil_destroy_sync(zilog_t *zilog, dmu_tx_t *tx)
615ce636f8bSMatthew Ahrens {
616ce636f8bSMatthew Ahrens 	ASSERT(list_is_empty(&zilog->zl_lwb_list));
617ce636f8bSMatthew Ahrens 	(void) zil_parse(zilog, zil_free_log_block,
618ce636f8bSMatthew Ahrens 	    zil_free_log_record, tx, zilog->zl_header->zh_claim_txg);
619ce636f8bSMatthew Ahrens }
620ce636f8bSMatthew Ahrens 
6211d452cf5Sahrens int
622fd136879SMatthew Ahrens zil_claim(const char *osname, void *txarg)
623fa9e4066Sahrens {
624fa9e4066Sahrens 	dmu_tx_t *tx = txarg;
625fa9e4066Sahrens 	uint64_t first_txg = dmu_tx_get_txg(tx);
626fa9e4066Sahrens 	zilog_t *zilog;
627fa9e4066Sahrens 	zil_header_t *zh;
628fa9e4066Sahrens 	objset_t *os;
629fa9e4066Sahrens 	int error;
630fa9e4066Sahrens 
6313b2aab18SMatthew Ahrens 	error = dmu_objset_own(osname, DMU_OST_ANY, B_FALSE, FTAG, &os);
6323b2aab18SMatthew Ahrens 	if (error != 0) {
633b87f3af3Sperrin 		cmn_err(CE_WARN, "can't open objset for %s", osname);
6341d452cf5Sahrens 		return (0);
635fa9e4066Sahrens 	}
636fa9e4066Sahrens 
637fa9e4066Sahrens 	zilog = dmu_objset_zil(os);
638d80c45e0Sbonwick 	zh = zil_header_in_syncing_context(zilog);
639fa9e4066Sahrens 
640b24ab676SJeff Bonwick 	if (spa_get_log_state(zilog->zl_spa) == SPA_LOG_CLEAR) {
641e6ca193dSGeorge Wilson 		if (!BP_IS_HOLE(&zh->zh_log))
642b24ab676SJeff Bonwick 			zio_free_zil(zilog->zl_spa, first_txg, &zh->zh_log);
643e6ca193dSGeorge Wilson 		BP_ZERO(&zh->zh_log);
644e6ca193dSGeorge Wilson 		dsl_dataset_dirty(dmu_objset_ds(os), tx);
6453b2aab18SMatthew Ahrens 		dmu_objset_disown(os, FTAG);
646468c413aSTim Haley 		return (0);
647e6ca193dSGeorge Wilson 	}
648e6ca193dSGeorge Wilson 
649fa9e4066Sahrens 	/*
650d80c45e0Sbonwick 	 * Claim all log blocks if we haven't already done so, and remember
651d80c45e0Sbonwick 	 * the highest claimed sequence number.  This ensures that if we can
652d80c45e0Sbonwick 	 * read only part of the log now (e.g. due to a missing device),
653d80c45e0Sbonwick 	 * but we can read the entire log later, we will not try to replay
654d80c45e0Sbonwick 	 * or destroy beyond the last block we successfully claimed.
655fa9e4066Sahrens 	 */
656fa9e4066Sahrens 	ASSERT3U(zh->zh_claim_txg, <=, first_txg);
657fa9e4066Sahrens 	if (zh->zh_claim_txg == 0 && !BP_IS_HOLE(&zh->zh_log)) {
658b24ab676SJeff Bonwick 		(void) zil_parse(zilog, zil_claim_log_block,
659d80c45e0Sbonwick 		    zil_claim_log_record, tx, first_txg);
660b24ab676SJeff Bonwick 		zh->zh_claim_txg = first_txg;
661b24ab676SJeff Bonwick 		zh->zh_claim_blk_seq = zilog->zl_parse_blk_seq;
662b24ab676SJeff Bonwick 		zh->zh_claim_lr_seq = zilog->zl_parse_lr_seq;
663b24ab676SJeff Bonwick 		if (zilog->zl_parse_lr_count || zilog->zl_parse_blk_count > 1)
664b24ab676SJeff Bonwick 			zh->zh_flags |= ZIL_REPLAY_NEEDED;
665b24ab676SJeff Bonwick 		zh->zh_flags |= ZIL_CLAIM_LR_SEQ_VALID;
666fa9e4066Sahrens 		dsl_dataset_dirty(dmu_objset_ds(os), tx);
667fa9e4066Sahrens 	}
668d80c45e0Sbonwick 
669fa9e4066Sahrens 	ASSERT3U(first_txg, ==, (spa_last_synced_txg(zilog->zl_spa) + 1));
6703b2aab18SMatthew Ahrens 	dmu_objset_disown(os, FTAG);
6711d452cf5Sahrens 	return (0);
672b87f3af3Sperrin }
673b87f3af3Sperrin 
674b87f3af3Sperrin /*
675b87f3af3Sperrin  * Check the log by walking the log chain.
676b87f3af3Sperrin  * Checksum errors are ok as they indicate the end of the chain.
677b87f3af3Sperrin  * Any other error (no device or read failure) returns an error.
678b87f3af3Sperrin  */
679b87f3af3Sperrin int
680fd136879SMatthew Ahrens zil_check_log_chain(const char *osname, void *tx)
681b87f3af3Sperrin {
682b87f3af3Sperrin 	zilog_t *zilog;
683b87f3af3Sperrin 	objset_t *os;
6844b964adaSGeorge Wilson 	blkptr_t *bp;
685b87f3af3Sperrin 	int error;
686b87f3af3Sperrin 
687b24ab676SJeff Bonwick 	ASSERT(tx == NULL);
688b24ab676SJeff Bonwick 
689503ad85cSMatthew Ahrens 	error = dmu_objset_hold(osname, FTAG, &os);
6903b2aab18SMatthew Ahrens 	if (error != 0) {
691b87f3af3Sperrin 		cmn_err(CE_WARN, "can't open objset for %s", osname);
692b87f3af3Sperrin 		return (0);
693b87f3af3Sperrin 	}
694b87f3af3Sperrin 
695b87f3af3Sperrin 	zilog = dmu_objset_zil(os);
6964b964adaSGeorge Wilson 	bp = (blkptr_t *)&zilog->zl_header->zh_log;
6974b964adaSGeorge Wilson 
6984b964adaSGeorge Wilson 	/*
6994b964adaSGeorge Wilson 	 * Check the first block and determine if it's on a log device
7004b964adaSGeorge Wilson 	 * which may have been removed or faulted prior to loading this
7014b964adaSGeorge Wilson 	 * pool.  If so, there's no point in checking the rest of the log
7024b964adaSGeorge Wilson 	 * as its content should have already been synced to the pool.
7034b964adaSGeorge Wilson 	 */
7044b964adaSGeorge Wilson 	if (!BP_IS_HOLE(bp)) {
7054b964adaSGeorge Wilson 		vdev_t *vd;
7064b964adaSGeorge Wilson 		boolean_t valid = B_TRUE;
7074b964adaSGeorge Wilson 
7084b964adaSGeorge Wilson 		spa_config_enter(os->os_spa, SCL_STATE, FTAG, RW_READER);
7094b964adaSGeorge Wilson 		vd = vdev_lookup_top(os->os_spa, DVA_GET_VDEV(&bp->blk_dva[0]));
7104b964adaSGeorge Wilson 		if (vd->vdev_islog && vdev_is_dead(vd))
7114b964adaSGeorge Wilson 			valid = vdev_log_state_valid(vd);
7124b964adaSGeorge Wilson 		spa_config_exit(os->os_spa, SCL_STATE, FTAG);
7134b964adaSGeorge Wilson 
7144b964adaSGeorge Wilson 		if (!valid) {
7154b964adaSGeorge Wilson 			dmu_objset_rele(os, FTAG);
7164b964adaSGeorge Wilson 			return (0);
7174b964adaSGeorge Wilson 		}
7184b964adaSGeorge Wilson 	}
719b87f3af3Sperrin 
720b24ab676SJeff Bonwick 	/*
721b24ab676SJeff Bonwick 	 * Because tx == NULL, zil_claim_log_block() will not actually claim
722b24ab676SJeff Bonwick 	 * any blocks, but just determine whether it is possible to do so.
723b24ab676SJeff Bonwick 	 * In addition to checking the log chain, zil_claim_log_block()
724b24ab676SJeff Bonwick 	 * will invoke zio_claim() with a done func of spa_claim_notify(),
725b24ab676SJeff Bonwick 	 * which will update spa_max_claim_txg.  See spa_load() for details.
726b24ab676SJeff Bonwick 	 */
727b24ab676SJeff Bonwick 	error = zil_parse(zilog, zil_claim_log_block, zil_claim_log_record, tx,
728b24ab676SJeff Bonwick 	    zilog->zl_header->zh_claim_txg ? -1ULL : spa_first_txg(os->os_spa));
729b24ab676SJeff Bonwick 
730503ad85cSMatthew Ahrens 	dmu_objset_rele(os, FTAG);
731b24ab676SJeff Bonwick 
732b24ab676SJeff Bonwick 	return ((error == ECKSUM || error == ENOENT) ? 0 : error);
733b87f3af3Sperrin }
734b87f3af3Sperrin 
73517f17c2dSbonwick static int
73617f17c2dSbonwick zil_vdev_compare(const void *x1, const void *x2)
73717f17c2dSbonwick {
7385002558fSNeil Perrin 	const uint64_t v1 = ((zil_vdev_node_t *)x1)->zv_vdev;
7395002558fSNeil Perrin 	const uint64_t v2 = ((zil_vdev_node_t *)x2)->zv_vdev;
74017f17c2dSbonwick 
74117f17c2dSbonwick 	if (v1 < v2)
74217f17c2dSbonwick 		return (-1);
74317f17c2dSbonwick 	if (v1 > v2)
74417f17c2dSbonwick 		return (1);
74517f17c2dSbonwick 
74617f17c2dSbonwick 	return (0);
74717f17c2dSbonwick }
74817f17c2dSbonwick 
749fa9e4066Sahrens void
750b24ab676SJeff Bonwick zil_add_block(zilog_t *zilog, const blkptr_t *bp)
751fa9e4066Sahrens {
75217f17c2dSbonwick 	avl_tree_t *t = &zilog->zl_vdev_tree;
75317f17c2dSbonwick 	avl_index_t where;
75417f17c2dSbonwick 	zil_vdev_node_t *zv, zvsearch;
75517f17c2dSbonwick 	int ndvas = BP_GET_NDVAS(bp);
75617f17c2dSbonwick 	int i;
757fa9e4066Sahrens 
758416e0cd8Sek 	if (zfs_nocacheflush)
759fa9e4066Sahrens 		return;
760fa9e4066Sahrens 
76117f17c2dSbonwick 	ASSERT(zilog->zl_writer);
76217f17c2dSbonwick 
76317f17c2dSbonwick 	/*
76417f17c2dSbonwick 	 * Even though we're zl_writer, we still need a lock because the
76517f17c2dSbonwick 	 * zl_get_data() callbacks may have dmu_sync() done callbacks
76617f17c2dSbonwick 	 * that will run concurrently.
76717f17c2dSbonwick 	 */
76817f17c2dSbonwick 	mutex_enter(&zilog->zl_vdev_lock);
76917f17c2dSbonwick 	for (i = 0; i < ndvas; i++) {
77017f17c2dSbonwick 		zvsearch.zv_vdev = DVA_GET_VDEV(&bp->blk_dva[i]);
77117f17c2dSbonwick 		if (avl_find(t, &zvsearch, &where) == NULL) {
77217f17c2dSbonwick 			zv = kmem_alloc(sizeof (*zv), KM_SLEEP);
77317f17c2dSbonwick 			zv->zv_vdev = zvsearch.zv_vdev;
77417f17c2dSbonwick 			avl_insert(t, zv, where);
77567bd71c6Sperrin 		}
77667bd71c6Sperrin 	}
77717f17c2dSbonwick 	mutex_exit(&zilog->zl_vdev_lock);
778fa9e4066Sahrens }
779fa9e4066Sahrens 
78091de656bSNeil Perrin static void
78167bd71c6Sperrin zil_flush_vdevs(zilog_t *zilog)
78267bd71c6Sperrin {
78367bd71c6Sperrin 	spa_t *spa = zilog->zl_spa;
78417f17c2dSbonwick 	avl_tree_t *t = &zilog->zl_vdev_tree;
78517f17c2dSbonwick 	void *cookie = NULL;
78617f17c2dSbonwick 	zil_vdev_node_t *zv;
78717f17c2dSbonwick 	zio_t *zio;
788fa9e4066Sahrens 
78967bd71c6Sperrin 	ASSERT(zilog->zl_writer);
79067bd71c6Sperrin 
79117f17c2dSbonwick 	/*
79217f17c2dSbonwick 	 * We don't need zl_vdev_lock here because we're the zl_writer,
79317f17c2dSbonwick 	 * and all zl_get_data() callbacks are done.
79417f17c2dSbonwick 	 */
79517f17c2dSbonwick 	if (avl_numnodes(t) == 0)
79617f17c2dSbonwick 		return;
79717f17c2dSbonwick 
798e14bb325SJeff Bonwick 	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
79917f17c2dSbonwick 
800e14bb325SJeff Bonwick 	zio = zio_root(spa, NULL, NULL, ZIO_FLAG_CANFAIL);
801fa9e4066Sahrens 
80217f17c2dSbonwick 	while ((zv = avl_destroy_nodes(t, &cookie)) != NULL) {
80317f17c2dSbonwick 		vdev_t *vd = vdev_lookup_top(spa, zv->zv_vdev);
80417f17c2dSbonwick 		if (vd != NULL)
80517f17c2dSbonwick 			zio_flush(zio, vd);
80617f17c2dSbonwick 		kmem_free(zv, sizeof (*zv));
80767bd71c6Sperrin 	}
80817f17c2dSbonwick 
809fa9e4066Sahrens 	/*
810fa9e4066Sahrens 	 * Wait for all the flushes to complete.  Not all devices actually
811fa9e4066Sahrens 	 * support the DKIOCFLUSHWRITECACHE ioctl, so it's OK if it fails.
812fa9e4066Sahrens 	 */
81317f17c2dSbonwick 	(void) zio_wait(zio);
81417f17c2dSbonwick 
815e14bb325SJeff Bonwick 	spa_config_exit(spa, SCL_STATE, FTAG);
816fa9e4066Sahrens }
817fa9e4066Sahrens 
818fa9e4066Sahrens /*
819fa9e4066Sahrens  * Function called when a log block write completes
820fa9e4066Sahrens  */
821fa9e4066Sahrens static void
822fa9e4066Sahrens zil_lwb_write_done(zio_t *zio)
823fa9e4066Sahrens {
824fa9e4066Sahrens 	lwb_t *lwb = zio->io_private;
825fa9e4066Sahrens 	zilog_t *zilog = lwb->lwb_zilog;
826b24ab676SJeff Bonwick 	dmu_tx_t *tx = lwb->lwb_tx;
827fa9e4066Sahrens 
828e14bb325SJeff Bonwick 	ASSERT(BP_GET_COMPRESS(zio->io_bp) == ZIO_COMPRESS_OFF);
829e14bb325SJeff Bonwick 	ASSERT(BP_GET_TYPE(zio->io_bp) == DMU_OT_INTENT_LOG);
830e14bb325SJeff Bonwick 	ASSERT(BP_GET_LEVEL(zio->io_bp) == 0);
831e14bb325SJeff Bonwick 	ASSERT(BP_GET_BYTEORDER(zio->io_bp) == ZFS_HOST_BYTEORDER);
832e14bb325SJeff Bonwick 	ASSERT(!BP_IS_GANG(zio->io_bp));
833e14bb325SJeff Bonwick 	ASSERT(!BP_IS_HOLE(zio->io_bp));
834e14bb325SJeff Bonwick 	ASSERT(zio->io_bp->blk_fill == 0);
835e14bb325SJeff Bonwick 
836fa9e4066Sahrens 	/*
837ef0d8e11SNeil Perrin 	 * Ensure the lwb buffer pointer is cleared before releasing
838ef0d8e11SNeil Perrin 	 * the txg. If we have had an allocation failure and
839ef0d8e11SNeil Perrin 	 * the txg is waiting to sync then we want want zil_sync()
840ef0d8e11SNeil Perrin 	 * to remove the lwb so that it's not picked up as the next new
841ef0d8e11SNeil Perrin 	 * one in zil_commit_writer(). zil_sync() will only remove
842ef0d8e11SNeil Perrin 	 * the lwb if lwb_buf is null.
843fa9e4066Sahrens 	 */
844fa9e4066Sahrens 	zio_buf_free(lwb->lwb_buf, lwb->lwb_sz);
845fa9e4066Sahrens 	mutex_enter(&zilog->zl_lock);
846fa9e4066Sahrens 	lwb->lwb_buf = NULL;
847b24ab676SJeff Bonwick 	lwb->lwb_tx = NULL;
848b24ab676SJeff Bonwick 	mutex_exit(&zilog->zl_lock);
849ef0d8e11SNeil Perrin 
850ef0d8e11SNeil Perrin 	/*
851ef0d8e11SNeil Perrin 	 * Now that we've written this log block, we have a stable pointer
852ef0d8e11SNeil Perrin 	 * to the next block in the chain, so it's OK to let the txg in
853b24ab676SJeff Bonwick 	 * which we allocated the next block sync.
854ef0d8e11SNeil Perrin 	 */
855b24ab676SJeff Bonwick 	dmu_tx_commit(tx);
856fa9e4066Sahrens }
857fa9e4066Sahrens 
858c5c6ffa0Smaybee /*
859c5c6ffa0Smaybee  * Initialize the io for a log block.
860c5c6ffa0Smaybee  */
861c5c6ffa0Smaybee static void
862c5c6ffa0Smaybee zil_lwb_write_init(zilog_t *zilog, lwb_t *lwb)
863c5c6ffa0Smaybee {
864c5c6ffa0Smaybee 	zbookmark_t zb;
865c5c6ffa0Smaybee 
866b24ab676SJeff Bonwick 	SET_BOOKMARK(&zb, lwb->lwb_blk.blk_cksum.zc_word[ZIL_ZC_OBJSET],
867b24ab676SJeff Bonwick 	    ZB_ZIL_OBJECT, ZB_ZIL_LEVEL,
868b24ab676SJeff Bonwick 	    lwb->lwb_blk.blk_cksum.zc_word[ZIL_ZC_SEQ]);
869c5c6ffa0Smaybee 
870b19a79ecSperrin 	if (zilog->zl_root_zio == NULL) {
871b19a79ecSperrin 		zilog->zl_root_zio = zio_root(zilog->zl_spa, NULL, NULL,
872b19a79ecSperrin 		    ZIO_FLAG_CANFAIL);
873b19a79ecSperrin 	}
87467bd71c6Sperrin 	if (lwb->lwb_zio == NULL) {
87567bd71c6Sperrin 		lwb->lwb_zio = zio_rewrite(zilog->zl_root_zio, zilog->zl_spa,
8766e1f5caaSNeil Perrin 		    0, &lwb->lwb_blk, lwb->lwb_buf, BP_GET_LSIZE(&lwb->lwb_blk),
87769962b56SMatthew Ahrens 		    zil_lwb_write_done, lwb, ZIO_PRIORITY_SYNC_WRITE,
8788f18d1faSGeorge Wilson 		    ZIO_FLAG_CANFAIL | ZIO_FLAG_DONT_PROPAGATE, &zb);
87967bd71c6Sperrin 	}
880c5c6ffa0Smaybee }
881c5c6ffa0Smaybee 
8826e1f5caaSNeil Perrin /*
8836e1f5caaSNeil Perrin  * Define a limited set of intent log block sizes.
884f7170741SWill Andrews  *
8856e1f5caaSNeil Perrin  * These must be a multiple of 4KB. Note only the amount used (again
8866e1f5caaSNeil Perrin  * aligned to 4KB) actually gets written. However, we can't always just
8876e1f5caaSNeil Perrin  * allocate SPA_MAXBLOCKSIZE as the slog space could be exhausted.
8886e1f5caaSNeil Perrin  */
8896e1f5caaSNeil Perrin uint64_t zil_block_buckets[] = {
8906e1f5caaSNeil Perrin     4096,		/* non TX_WRITE */
8916e1f5caaSNeil Perrin     8192+4096,		/* data base */
8926e1f5caaSNeil Perrin     32*1024 + 4096, 	/* NFS writes */
8936e1f5caaSNeil Perrin     UINT64_MAX
8946e1f5caaSNeil Perrin };
8956e1f5caaSNeil Perrin 
896d48e086fSNeil Perrin /*
897d48e086fSNeil Perrin  * Use the slog as long as the logbias is 'latency' and the current commit size
898d48e086fSNeil Perrin  * is less than the limit or the total list size is less than 2X the limit.
899d48e086fSNeil Perrin  * Limit checking is disabled by setting zil_slog_limit to UINT64_MAX.
900d48e086fSNeil Perrin  */
901d48e086fSNeil Perrin uint64_t zil_slog_limit = 1024 * 1024;
902d48e086fSNeil Perrin #define	USE_SLOG(zilog) (((zilog)->zl_logbias == ZFS_LOGBIAS_LATENCY) && \
903d48e086fSNeil Perrin 	(((zilog)->zl_cur_used < zil_slog_limit) || \
904d48e086fSNeil Perrin 	((zilog)->zl_itx_list_sz < (zil_slog_limit << 1))))
905d48e086fSNeil Perrin 
906fa9e4066Sahrens /*
907fa9e4066Sahrens  * Start a log block write and advance to the next log block.
908fa9e4066Sahrens  * Calls are serialized.
909fa9e4066Sahrens  */
910fa9e4066Sahrens static lwb_t *
911fa9e4066Sahrens zil_lwb_write_start(zilog_t *zilog, lwb_t *lwb)
912fa9e4066Sahrens {
9136e1f5caaSNeil Perrin 	lwb_t *nlwb = NULL;
9146e1f5caaSNeil Perrin 	zil_chain_t *zilc;
915d80c45e0Sbonwick 	spa_t *spa = zilog->zl_spa;
9166e1f5caaSNeil Perrin 	blkptr_t *bp;
917b24ab676SJeff Bonwick 	dmu_tx_t *tx;
918fa9e4066Sahrens 	uint64_t txg;
919ada693c4SNeil Perrin 	uint64_t zil_blksz, wsz;
9206e1f5caaSNeil Perrin 	int i, error;
9216e1f5caaSNeil Perrin 
9226e1f5caaSNeil Perrin 	if (BP_GET_CHECKSUM(&lwb->lwb_blk) == ZIO_CHECKSUM_ZILOG2) {
9236e1f5caaSNeil Perrin 		zilc = (zil_chain_t *)lwb->lwb_buf;
9246e1f5caaSNeil Perrin 		bp = &zilc->zc_next_blk;
9256e1f5caaSNeil Perrin 	} else {
9266e1f5caaSNeil Perrin 		zilc = (zil_chain_t *)(lwb->lwb_buf + lwb->lwb_sz);
9276e1f5caaSNeil Perrin 		bp = &zilc->zc_next_blk;
9286e1f5caaSNeil Perrin 	}
929fa9e4066Sahrens 
9306e1f5caaSNeil Perrin 	ASSERT(lwb->lwb_nused <= lwb->lwb_sz);
931fa9e4066Sahrens 
932fa9e4066Sahrens 	/*
933fa9e4066Sahrens 	 * Allocate the next block and save its address in this block
934fa9e4066Sahrens 	 * before writing it in order to establish the log chain.
935fa9e4066Sahrens 	 * Note that if the allocation of nlwb synced before we wrote
936fa9e4066Sahrens 	 * the block that points at it (lwb), we'd leak it if we crashed.
937b24ab676SJeff Bonwick 	 * Therefore, we don't do dmu_tx_commit() until zil_lwb_write_done().
938b24ab676SJeff Bonwick 	 * We dirty the dataset to ensure that zil_sync() will be called
939b24ab676SJeff Bonwick 	 * to clean up in the event of allocation failure or I/O failure.
940fa9e4066Sahrens 	 */
941b24ab676SJeff Bonwick 	tx = dmu_tx_create(zilog->zl_os);
942b24ab676SJeff Bonwick 	VERIFY(dmu_tx_assign(tx, TXG_WAIT) == 0);
943b24ab676SJeff Bonwick 	dsl_dataset_dirty(dmu_objset_ds(zilog->zl_os), tx);
944b24ab676SJeff Bonwick 	txg = dmu_tx_get_txg(tx);
945b24ab676SJeff Bonwick 
946b24ab676SJeff Bonwick 	lwb->lwb_tx = tx;
947fa9e4066Sahrens 
948fa9e4066Sahrens 	/*
9496e1f5caaSNeil Perrin 	 * Log blocks are pre-allocated. Here we select the size of the next
9506e1f5caaSNeil Perrin 	 * block, based on size used in the last block.
9516e1f5caaSNeil Perrin 	 * - first find the smallest bucket that will fit the block from a
9526e1f5caaSNeil Perrin 	 *   limited set of block sizes. This is because it's faster to write
9536e1f5caaSNeil Perrin 	 *   blocks allocated from the same metaslab as they are adjacent or
9546e1f5caaSNeil Perrin 	 *   close.
9556e1f5caaSNeil Perrin 	 * - next find the maximum from the new suggested size and an array of
9566e1f5caaSNeil Perrin 	 *   previous sizes. This lessens a picket fence effect of wrongly
9576e1f5caaSNeil Perrin 	 *   guesssing the size if we have a stream of say 2k, 64k, 2k, 64k
9586e1f5caaSNeil Perrin 	 *   requests.
9596e1f5caaSNeil Perrin 	 *
9606e1f5caaSNeil Perrin 	 * Note we only write what is used, but we can't just allocate
9616e1f5caaSNeil Perrin 	 * the maximum block size because we can exhaust the available
9626e1f5caaSNeil Perrin 	 * pool log space.
963fa9e4066Sahrens 	 */
9646e1f5caaSNeil Perrin 	zil_blksz = zilog->zl_cur_used + sizeof (zil_chain_t);
9656e1f5caaSNeil Perrin 	for (i = 0; zil_blksz > zil_block_buckets[i]; i++)
9666e1f5caaSNeil Perrin 		continue;
9676e1f5caaSNeil Perrin 	zil_blksz = zil_block_buckets[i];
9686e1f5caaSNeil Perrin 	if (zil_blksz == UINT64_MAX)
9696e1f5caaSNeil Perrin 		zil_blksz = SPA_MAXBLOCKSIZE;
9706e1f5caaSNeil Perrin 	zilog->zl_prev_blks[zilog->zl_prev_rotor] = zil_blksz;
9716e1f5caaSNeil Perrin 	for (i = 0; i < ZIL_PREV_BLKS; i++)
9726e1f5caaSNeil Perrin 		zil_blksz = MAX(zil_blksz, zilog->zl_prev_blks[i]);
9736e1f5caaSNeil Perrin 	zilog->zl_prev_rotor = (zilog->zl_prev_rotor + 1) & (ZIL_PREV_BLKS - 1);
974fa9e4066Sahrens 
97567bd71c6Sperrin 	BP_ZERO(bp);
97667bd71c6Sperrin 	/* pass the old blkptr in order to spread log blocks across devs */
977b24ab676SJeff Bonwick 	error = zio_alloc_zil(spa, txg, bp, &lwb->lwb_blk, zil_blksz,
978d48e086fSNeil Perrin 	    USE_SLOG(zilog));
9793b2aab18SMatthew Ahrens 	if (error == 0) {
9806e1f5caaSNeil Perrin 		ASSERT3U(bp->blk_birth, ==, txg);
9816e1f5caaSNeil Perrin 		bp->blk_cksum = lwb->lwb_blk.blk_cksum;
9826e1f5caaSNeil Perrin 		bp->blk_cksum.zc_word[ZIL_ZC_SEQ]++;
983d63d470bSgw 
984ea8dc4b6Seschrock 		/*
9856e1f5caaSNeil Perrin 		 * Allocate a new log write buffer (lwb).
986ea8dc4b6Seschrock 		 */
9876e1f5caaSNeil Perrin 		nlwb = zil_alloc_lwb(zilog, bp, txg);
9886e1f5caaSNeil Perrin 
9896e1f5caaSNeil Perrin 		/* Record the block for later vdev flushing */
9906e1f5caaSNeil Perrin 		zil_add_block(zilog, &lwb->lwb_blk);
991fa9e4066Sahrens 	}
992fa9e4066Sahrens 
9936e1f5caaSNeil Perrin 	if (BP_GET_CHECKSUM(&lwb->lwb_blk) == ZIO_CHECKSUM_ZILOG2) {
9946e1f5caaSNeil Perrin 		/* For Slim ZIL only write what is used. */
995ada693c4SNeil Perrin 		wsz = P2ROUNDUP_TYPED(lwb->lwb_nused, ZIL_MIN_BLKSZ, uint64_t);
996ada693c4SNeil Perrin 		ASSERT3U(wsz, <=, lwb->lwb_sz);
997ada693c4SNeil Perrin 		zio_shrink(lwb->lwb_zio, wsz);
998fa9e4066Sahrens 
999ada693c4SNeil Perrin 	} else {
1000ada693c4SNeil Perrin 		wsz = lwb->lwb_sz;
10016e1f5caaSNeil Perrin 	}
1002ada693c4SNeil Perrin 
10036e1f5caaSNeil Perrin 	zilc->zc_pad = 0;
10046e1f5caaSNeil Perrin 	zilc->zc_nused = lwb->lwb_nused;
10056e1f5caaSNeil Perrin 	zilc->zc_eck.zec_cksum = lwb->lwb_blk.blk_cksum;
1006fa9e4066Sahrens 
1007ada693c4SNeil Perrin 	/*
1008ada693c4SNeil Perrin 	 * clear unused data for security
1009ada693c4SNeil Perrin 	 */
1010ada693c4SNeil Perrin 	bzero(lwb->lwb_buf + lwb->lwb_nused, wsz - lwb->lwb_nused);
1011ada693c4SNeil Perrin 
10126e1f5caaSNeil Perrin 	zio_nowait(lwb->lwb_zio); /* Kick off the write for the old log block */
101367bd71c6Sperrin 
1014fa9e4066Sahrens 	/*
10156e1f5caaSNeil Perrin 	 * If there was an allocation failure then nlwb will be null which
10166e1f5caaSNeil Perrin 	 * forces a txg_wait_synced().
1017fa9e4066Sahrens 	 */
1018fa9e4066Sahrens 	return (nlwb);
1019fa9e4066Sahrens }
1020fa9e4066Sahrens 
1021fa9e4066Sahrens static lwb_t *
1022fa9e4066Sahrens zil_lwb_commit(zilog_t *zilog, itx_t *itx, lwb_t *lwb)
1023fa9e4066Sahrens {
1024fa9e4066Sahrens 	lr_t *lrc = &itx->itx_lr; /* common log record */
1025b24ab676SJeff Bonwick 	lr_write_t *lrw = (lr_write_t *)lrc;
1026b24ab676SJeff Bonwick 	char *lr_buf;
1027fa9e4066Sahrens 	uint64_t txg = lrc->lrc_txg;
1028fa9e4066Sahrens 	uint64_t reclen = lrc->lrc_reclen;
1029b24ab676SJeff Bonwick 	uint64_t dlen = 0;
1030fa9e4066Sahrens 
1031fa9e4066Sahrens 	if (lwb == NULL)
1032fa9e4066Sahrens 		return (NULL);
1033b24ab676SJeff Bonwick 
1034fa9e4066Sahrens 	ASSERT(lwb->lwb_buf != NULL);
1035ce636f8bSMatthew Ahrens 	ASSERT(zilog_is_dirty(zilog) ||
1036ce636f8bSMatthew Ahrens 	    spa_freeze_txg(zilog->zl_spa) != UINT64_MAX);
1037fa9e4066Sahrens 
1038c5c6ffa0Smaybee 	if (lrc->lrc_txtype == TX_WRITE && itx->itx_wr_state == WR_NEED_COPY)
1039c5c6ffa0Smaybee 		dlen = P2ROUNDUP_TYPED(
1040b24ab676SJeff Bonwick 		    lrw->lr_length, sizeof (uint64_t), uint64_t);
1041fa9e4066Sahrens 
1042104e2ed7Sperrin 	zilog->zl_cur_used += (reclen + dlen);
104322ac5be4Sperrin 
104467bd71c6Sperrin 	zil_lwb_write_init(zilog, lwb);
104567bd71c6Sperrin 
1046fa9e4066Sahrens 	/*
1047fa9e4066Sahrens 	 * If this record won't fit in the current log block, start a new one.
1048fa9e4066Sahrens 	 */
10496e1f5caaSNeil Perrin 	if (lwb->lwb_nused + reclen + dlen > lwb->lwb_sz) {
1050fa9e4066Sahrens 		lwb = zil_lwb_write_start(zilog, lwb);
1051c5c6ffa0Smaybee 		if (lwb == NULL)
1052fa9e4066Sahrens 			return (NULL);
105367bd71c6Sperrin 		zil_lwb_write_init(zilog, lwb);
10546e1f5caaSNeil Perrin 		ASSERT(LWB_EMPTY(lwb));
10556e1f5caaSNeil Perrin 		if (lwb->lwb_nused + reclen + dlen > lwb->lwb_sz) {
1056fa9e4066Sahrens 			txg_wait_synced(zilog->zl_dmu_pool, txg);
1057fa9e4066Sahrens 			return (lwb);
1058fa9e4066Sahrens 		}
1059fa9e4066Sahrens 	}
1060fa9e4066Sahrens 
1061b24ab676SJeff Bonwick 	lr_buf = lwb->lwb_buf + lwb->lwb_nused;
1062b24ab676SJeff Bonwick 	bcopy(lrc, lr_buf, reclen);
1063b24ab676SJeff Bonwick 	lrc = (lr_t *)lr_buf;
1064b24ab676SJeff Bonwick 	lrw = (lr_write_t *)lrc;
1065c5c6ffa0Smaybee 
1066c5c6ffa0Smaybee 	/*
1067c5c6ffa0Smaybee 	 * If it's a write, fetch the data or get its blkptr as appropriate.
1068c5c6ffa0Smaybee 	 */
1069c5c6ffa0Smaybee 	if (lrc->lrc_txtype == TX_WRITE) {
1070c5c6ffa0Smaybee 		if (txg > spa_freeze_txg(zilog->zl_spa))
1071c5c6ffa0Smaybee 			txg_wait_synced(zilog->zl_dmu_pool, txg);
1072c5c6ffa0Smaybee 		if (itx->itx_wr_state != WR_COPIED) {
1073c5c6ffa0Smaybee 			char *dbuf;
1074c5c6ffa0Smaybee 			int error;
1075c5c6ffa0Smaybee 
1076c5c6ffa0Smaybee 			if (dlen) {
1077c5c6ffa0Smaybee 				ASSERT(itx->itx_wr_state == WR_NEED_COPY);
1078b24ab676SJeff Bonwick 				dbuf = lr_buf + reclen;
1079b24ab676SJeff Bonwick 				lrw->lr_common.lrc_reclen += dlen;
1080c5c6ffa0Smaybee 			} else {
1081c5c6ffa0Smaybee 				ASSERT(itx->itx_wr_state == WR_INDIRECT);
1082c5c6ffa0Smaybee 				dbuf = NULL;
1083c5c6ffa0Smaybee 			}
1084c5c6ffa0Smaybee 			error = zilog->zl_get_data(
1085b24ab676SJeff Bonwick 			    itx->itx_private, lrw, dbuf, lwb->lwb_zio);
1086c87b8fc5SMark J Musante 			if (error == EIO) {
1087c87b8fc5SMark J Musante 				txg_wait_synced(zilog->zl_dmu_pool, txg);
1088c87b8fc5SMark J Musante 				return (lwb);
1089c87b8fc5SMark J Musante 			}
10903b2aab18SMatthew Ahrens 			if (error != 0) {
1091c5c6ffa0Smaybee 				ASSERT(error == ENOENT || error == EEXIST ||
1092c5c6ffa0Smaybee 				    error == EALREADY);
1093c5c6ffa0Smaybee 				return (lwb);
1094c5c6ffa0Smaybee 			}
1095c5c6ffa0Smaybee 		}
1096104e2ed7Sperrin 	}
1097c5c6ffa0Smaybee 
1098b24ab676SJeff Bonwick 	/*
1099b24ab676SJeff Bonwick 	 * We're actually making an entry, so update lrc_seq to be the
1100b24ab676SJeff Bonwick 	 * log record sequence number.  Note that this is generally not
1101b24ab676SJeff Bonwick 	 * equal to the itx sequence number because not all transactions
1102b24ab676SJeff Bonwick 	 * are synchronous, and sometimes spa_sync() gets there first.
1103b24ab676SJeff Bonwick 	 */
1104b24ab676SJeff Bonwick 	lrc->lrc_seq = ++zilog->zl_lr_seq; /* we are single threaded */
1105c5c6ffa0Smaybee 	lwb->lwb_nused += reclen + dlen;
1106fa9e4066Sahrens 	lwb->lwb_max_txg = MAX(lwb->lwb_max_txg, txg);
11076e1f5caaSNeil Perrin 	ASSERT3U(lwb->lwb_nused, <=, lwb->lwb_sz);
1108fb09f5aaSMadhav Suresh 	ASSERT0(P2PHASE(lwb->lwb_nused, sizeof (uint64_t)));
1109fa9e4066Sahrens 
1110fa9e4066Sahrens 	return (lwb);
1111fa9e4066Sahrens }
1112fa9e4066Sahrens 
1113fa9e4066Sahrens itx_t *
1114da6c28aaSamw zil_itx_create(uint64_t txtype, size_t lrsize)
1115fa9e4066Sahrens {
1116fa9e4066Sahrens 	itx_t *itx;
1117fa9e4066Sahrens 
1118b4d654b0Sperrin 	lrsize = P2ROUNDUP_TYPED(lrsize, sizeof (uint64_t), size_t);
1119fa9e4066Sahrens 
1120fa9e4066Sahrens 	itx = kmem_alloc(offsetof(itx_t, itx_lr) + lrsize, KM_SLEEP);
1121fa9e4066Sahrens 	itx->itx_lr.lrc_txtype = txtype;
1122fa9e4066Sahrens 	itx->itx_lr.lrc_reclen = lrsize;
1123abf76b6eSperrin 	itx->itx_sod = lrsize; /* if write & WR_NEED_COPY will be increased */
1124fa9e4066Sahrens 	itx->itx_lr.lrc_seq = 0;	/* defensive */
11255002558fSNeil Perrin 	itx->itx_sync = B_TRUE;		/* default is synchronous */
1126fa9e4066Sahrens 
1127fa9e4066Sahrens 	return (itx);
1128fa9e4066Sahrens }
1129fa9e4066Sahrens 
1130b24ab676SJeff Bonwick void
1131b24ab676SJeff Bonwick zil_itx_destroy(itx_t *itx)
1132b24ab676SJeff Bonwick {
1133b24ab676SJeff Bonwick 	kmem_free(itx, offsetof(itx_t, itx_lr) + itx->itx_lr.lrc_reclen);
1134b24ab676SJeff Bonwick }
1135b24ab676SJeff Bonwick 
11365002558fSNeil Perrin /*
11375002558fSNeil Perrin  * Free up the sync and async itxs. The itxs_t has already been detached
11385002558fSNeil Perrin  * so no locks are needed.
11395002558fSNeil Perrin  */
11405002558fSNeil Perrin static void
11415002558fSNeil Perrin zil_itxg_clean(itxs_t *itxs)
1142fa9e4066Sahrens {
11435002558fSNeil Perrin 	itx_t *itx;
11445002558fSNeil Perrin 	list_t *list;
11455002558fSNeil Perrin 	avl_tree_t *t;
11465002558fSNeil Perrin 	void *cookie;
11475002558fSNeil Perrin 	itx_async_node_t *ian;
11485002558fSNeil Perrin 
11495002558fSNeil Perrin 	list = &itxs->i_sync_list;
11505002558fSNeil Perrin 	while ((itx = list_head(list)) != NULL) {
11515002558fSNeil Perrin 		list_remove(list, itx);
11525002558fSNeil Perrin 		kmem_free(itx, offsetof(itx_t, itx_lr) +
11535002558fSNeil Perrin 		    itx->itx_lr.lrc_reclen);
11545002558fSNeil Perrin 	}
1155fa9e4066Sahrens 
11565002558fSNeil Perrin 	cookie = NULL;
11575002558fSNeil Perrin 	t = &itxs->i_async_tree;
11585002558fSNeil Perrin 	while ((ian = avl_destroy_nodes(t, &cookie)) != NULL) {
11595002558fSNeil Perrin 		list = &ian->ia_list;
11605002558fSNeil Perrin 		while ((itx = list_head(list)) != NULL) {
11615002558fSNeil Perrin 			list_remove(list, itx);
11625002558fSNeil Perrin 			kmem_free(itx, offsetof(itx_t, itx_lr) +
11635002558fSNeil Perrin 			    itx->itx_lr.lrc_reclen);
11645002558fSNeil Perrin 		}
11655002558fSNeil Perrin 		list_destroy(list);
11665002558fSNeil Perrin 		kmem_free(ian, sizeof (itx_async_node_t));
11675002558fSNeil Perrin 	}
11685002558fSNeil Perrin 	avl_destroy(t);
1169fa9e4066Sahrens 
11705002558fSNeil Perrin 	kmem_free(itxs, sizeof (itxs_t));
11715002558fSNeil Perrin }
11725002558fSNeil Perrin 
11735002558fSNeil Perrin static int
11745002558fSNeil Perrin zil_aitx_compare(const void *x1, const void *x2)
11755002558fSNeil Perrin {
11765002558fSNeil Perrin 	const uint64_t o1 = ((itx_async_node_t *)x1)->ia_foid;
11775002558fSNeil Perrin 	const uint64_t o2 = ((itx_async_node_t *)x2)->ia_foid;
1178fa9e4066Sahrens 
11795002558fSNeil Perrin 	if (o1 < o2)
11805002558fSNeil Perrin 		return (-1);
11815002558fSNeil Perrin 	if (o1 > o2)
11825002558fSNeil Perrin 		return (1);
11835002558fSNeil Perrin 
11845002558fSNeil Perrin 	return (0);
1185fa9e4066Sahrens }
1186fa9e4066Sahrens 
1187fa9e4066Sahrens /*
11885002558fSNeil Perrin  * Remove all async itx with the given oid.
1189fa9e4066Sahrens  */
119091de656bSNeil Perrin static void
11915002558fSNeil Perrin zil_remove_async(zilog_t *zilog, uint64_t oid)
1192fa9e4066Sahrens {
11935002558fSNeil Perrin 	uint64_t otxg, txg;
11945002558fSNeil Perrin 	itx_async_node_t *ian;
11955002558fSNeil Perrin 	avl_tree_t *t;
11965002558fSNeil Perrin 	avl_index_t where;
1197a584ef65Sjohansen 	list_t clean_list;
1198fa9e4066Sahrens 	itx_t *itx;
1199fa9e4066Sahrens 
12005002558fSNeil Perrin 	ASSERT(oid != 0);
1201a584ef65Sjohansen 	list_create(&clean_list, sizeof (itx_t), offsetof(itx_t, itx_node));
1202a584ef65Sjohansen 
12035002558fSNeil Perrin 	if (spa_freeze_txg(zilog->zl_spa) != UINT64_MAX) /* ziltest support */
12045002558fSNeil Perrin 		otxg = ZILTEST_TXG;
12055002558fSNeil Perrin 	else
12065002558fSNeil Perrin 		otxg = spa_last_synced_txg(zilog->zl_spa) + 1;
1207a584ef65Sjohansen 
12085002558fSNeil Perrin 	for (txg = otxg; txg < (otxg + TXG_CONCURRENT_STATES); txg++) {
12095002558fSNeil Perrin 		itxg_t *itxg = &zilog->zl_itxg[txg & TXG_MASK];
12105002558fSNeil Perrin 
12115002558fSNeil Perrin 		mutex_enter(&itxg->itxg_lock);
12125002558fSNeil Perrin 		if (itxg->itxg_txg != txg) {
12135002558fSNeil Perrin 			mutex_exit(&itxg->itxg_lock);
12145002558fSNeil Perrin 			continue;
12155002558fSNeil Perrin 		}
1216a584ef65Sjohansen 
12175002558fSNeil Perrin 		/*
12185002558fSNeil Perrin 		 * Locate the object node and append its list.
12195002558fSNeil Perrin 		 */
12205002558fSNeil Perrin 		t = &itxg->itxg_itxs->i_async_tree;
12215002558fSNeil Perrin 		ian = avl_find(t, &oid, &where);
12225002558fSNeil Perrin 		if (ian != NULL)
12235002558fSNeil Perrin 			list_move_tail(&clean_list, &ian->ia_list);
12245002558fSNeil Perrin 		mutex_exit(&itxg->itxg_lock);
12255002558fSNeil Perrin 	}
1226a584ef65Sjohansen 	while ((itx = list_head(&clean_list)) != NULL) {
1227a584ef65Sjohansen 		list_remove(&clean_list, itx);
12285002558fSNeil Perrin 		kmem_free(itx, offsetof(itx_t, itx_lr) +
12295002558fSNeil Perrin 		    itx->itx_lr.lrc_reclen);
1230a584ef65Sjohansen 	}
1231a584ef65Sjohansen 	list_destroy(&clean_list);
1232fa9e4066Sahrens }
1233fa9e4066Sahrens 
12345002558fSNeil Perrin void
12355002558fSNeil Perrin zil_itx_assign(zilog_t *zilog, itx_t *itx, dmu_tx_t *tx)
12365002558fSNeil Perrin {
12375002558fSNeil Perrin 	uint64_t txg;
12385002558fSNeil Perrin 	itxg_t *itxg;
12395002558fSNeil Perrin 	itxs_t *itxs, *clean = NULL;
12405002558fSNeil Perrin 
12415002558fSNeil Perrin 	/*
124291de656bSNeil Perrin 	 * Object ids can be re-instantiated in the next txg so
12435002558fSNeil Perrin 	 * remove any async transactions to avoid future leaks.
12445002558fSNeil Perrin 	 * This can happen if a fsync occurs on the re-instantiated
12455002558fSNeil Perrin 	 * object for a WR_INDIRECT or WR_NEED_COPY write, which gets
12465002558fSNeil Perrin 	 * the new file data and flushes a write record for the old object.
12475002558fSNeil Perrin 	 */
12485002558fSNeil Perrin 	if ((itx->itx_lr.lrc_txtype & ~TX_CI) == TX_REMOVE)
124951bd2f97SNeil Perrin 		zil_remove_async(zilog, itx->itx_oid);
12505002558fSNeil Perrin 
125191de656bSNeil Perrin 	/*
125291de656bSNeil Perrin 	 * Ensure the data of a renamed file is committed before the rename.
125391de656bSNeil Perrin 	 */
125491de656bSNeil Perrin 	if ((itx->itx_lr.lrc_txtype & ~TX_CI) == TX_RENAME)
125591de656bSNeil Perrin 		zil_async_to_sync(zilog, itx->itx_oid);
125691de656bSNeil Perrin 
1257ce636f8bSMatthew Ahrens 	if (spa_freeze_txg(zilog->zl_spa) != UINT64_MAX)
12585002558fSNeil Perrin 		txg = ZILTEST_TXG;
12595002558fSNeil Perrin 	else
12605002558fSNeil Perrin 		txg = dmu_tx_get_txg(tx);
12615002558fSNeil Perrin 
12625002558fSNeil Perrin 	itxg = &zilog->zl_itxg[txg & TXG_MASK];
12635002558fSNeil Perrin 	mutex_enter(&itxg->itxg_lock);
12645002558fSNeil Perrin 	itxs = itxg->itxg_itxs;
12655002558fSNeil Perrin 	if (itxg->itxg_txg != txg) {
12665002558fSNeil Perrin 		if (itxs != NULL) {
12675002558fSNeil Perrin 			/*
12685002558fSNeil Perrin 			 * The zil_clean callback hasn't got around to cleaning
12695002558fSNeil Perrin 			 * this itxg. Save the itxs for release below.
12705002558fSNeil Perrin 			 * This should be rare.
12715002558fSNeil Perrin 			 */
12725002558fSNeil Perrin 			atomic_add_64(&zilog->zl_itx_list_sz, -itxg->itxg_sod);
12735002558fSNeil Perrin 			itxg->itxg_sod = 0;
12745002558fSNeil Perrin 			clean = itxg->itxg_itxs;
12755002558fSNeil Perrin 		}
12765002558fSNeil Perrin 		ASSERT(itxg->itxg_sod == 0);
12775002558fSNeil Perrin 		itxg->itxg_txg = txg;
12785002558fSNeil Perrin 		itxs = itxg->itxg_itxs = kmem_zalloc(sizeof (itxs_t), KM_SLEEP);
12795002558fSNeil Perrin 
12805002558fSNeil Perrin 		list_create(&itxs->i_sync_list, sizeof (itx_t),
12815002558fSNeil Perrin 		    offsetof(itx_t, itx_node));
12825002558fSNeil Perrin 		avl_create(&itxs->i_async_tree, zil_aitx_compare,
12835002558fSNeil Perrin 		    sizeof (itx_async_node_t),
12845002558fSNeil Perrin 		    offsetof(itx_async_node_t, ia_node));
12855002558fSNeil Perrin 	}
12865002558fSNeil Perrin 	if (itx->itx_sync) {
12875002558fSNeil Perrin 		list_insert_tail(&itxs->i_sync_list, itx);
12885002558fSNeil Perrin 		atomic_add_64(&zilog->zl_itx_list_sz, itx->itx_sod);
12895002558fSNeil Perrin 		itxg->itxg_sod += itx->itx_sod;
12905002558fSNeil Perrin 	} else {
12915002558fSNeil Perrin 		avl_tree_t *t = &itxs->i_async_tree;
12925002558fSNeil Perrin 		uint64_t foid = ((lr_ooo_t *)&itx->itx_lr)->lr_foid;
12935002558fSNeil Perrin 		itx_async_node_t *ian;
12945002558fSNeil Perrin 		avl_index_t where;
12955002558fSNeil Perrin 
12965002558fSNeil Perrin 		ian = avl_find(t, &foid, &where);
12975002558fSNeil Perrin 		if (ian == NULL) {
12985002558fSNeil Perrin 			ian = kmem_alloc(sizeof (itx_async_node_t), KM_SLEEP);
12995002558fSNeil Perrin 			list_create(&ian->ia_list, sizeof (itx_t),
13005002558fSNeil Perrin 			    offsetof(itx_t, itx_node));
13015002558fSNeil Perrin 			ian->ia_foid = foid;
13025002558fSNeil Perrin 			avl_insert(t, ian, where);
13035002558fSNeil Perrin 		}
13045002558fSNeil Perrin 		list_insert_tail(&ian->ia_list, itx);
13055002558fSNeil Perrin 	}
13065002558fSNeil Perrin 
13075002558fSNeil Perrin 	itx->itx_lr.lrc_txg = dmu_tx_get_txg(tx);
1308ce636f8bSMatthew Ahrens 	zilog_dirty(zilog, txg);
13095002558fSNeil Perrin 	mutex_exit(&itxg->itxg_lock);
13105002558fSNeil Perrin 
13115002558fSNeil Perrin 	/* Release the old itxs now we've dropped the lock */
13125002558fSNeil Perrin 	if (clean != NULL)
13135002558fSNeil Perrin 		zil_itxg_clean(clean);
13145002558fSNeil Perrin }
13155002558fSNeil Perrin 
1316b19a79ecSperrin /*
131767bd71c6Sperrin  * If there are any in-memory intent log transactions which have now been
1318ce636f8bSMatthew Ahrens  * synced then start up a taskq to free them. We should only do this after we
1319ce636f8bSMatthew Ahrens  * have written out the uberblocks (i.e. txg has been comitted) so that
1320ce636f8bSMatthew Ahrens  * don't inadvertently clean out in-memory log records that would be required
1321ce636f8bSMatthew Ahrens  * by zil_commit().
1322b19a79ecSperrin  */
1323fa9e4066Sahrens void
13245002558fSNeil Perrin zil_clean(zilog_t *zilog, uint64_t synced_txg)
1325fa9e4066Sahrens {
13265002558fSNeil Perrin 	itxg_t *itxg = &zilog->zl_itxg[synced_txg & TXG_MASK];
13275002558fSNeil Perrin 	itxs_t *clean_me;
132867bd71c6Sperrin 
13295002558fSNeil Perrin 	mutex_enter(&itxg->itxg_lock);
13305002558fSNeil Perrin 	if (itxg->itxg_itxs == NULL || itxg->itxg_txg == ZILTEST_TXG) {
13315002558fSNeil Perrin 		mutex_exit(&itxg->itxg_lock);
13325002558fSNeil Perrin 		return;
13335002558fSNeil Perrin 	}
13345002558fSNeil Perrin 	ASSERT3U(itxg->itxg_txg, <=, synced_txg);
13355002558fSNeil Perrin 	ASSERT(itxg->itxg_txg != 0);
13365002558fSNeil Perrin 	ASSERT(zilog->zl_clean_taskq != NULL);
13375002558fSNeil Perrin 	atomic_add_64(&zilog->zl_itx_list_sz, -itxg->itxg_sod);
13385002558fSNeil Perrin 	itxg->itxg_sod = 0;
13395002558fSNeil Perrin 	clean_me = itxg->itxg_itxs;
13405002558fSNeil Perrin 	itxg->itxg_itxs = NULL;
13415002558fSNeil Perrin 	itxg->itxg_txg = 0;
13425002558fSNeil Perrin 	mutex_exit(&itxg->itxg_lock);
13435002558fSNeil Perrin 	/*
13445002558fSNeil Perrin 	 * Preferably start a task queue to free up the old itxs but
13455002558fSNeil Perrin 	 * if taskq_dispatch can't allocate resources to do that then
13465002558fSNeil Perrin 	 * free it in-line. This should be rare. Note, using TQ_SLEEP
13475002558fSNeil Perrin 	 * created a bad performance problem.
13485002558fSNeil Perrin 	 */
13495002558fSNeil Perrin 	if (taskq_dispatch(zilog->zl_clean_taskq,
13505002558fSNeil Perrin 	    (void (*)(void *))zil_itxg_clean, clean_me, TQ_NOSLEEP) == NULL)
13515002558fSNeil Perrin 		zil_itxg_clean(clean_me);
13525002558fSNeil Perrin }
13535002558fSNeil Perrin 
13545002558fSNeil Perrin /*
13555002558fSNeil Perrin  * Get the list of itxs to commit into zl_itx_commit_list.
13565002558fSNeil Perrin  */
135791de656bSNeil Perrin static void
13585002558fSNeil Perrin zil_get_commit_list(zilog_t *zilog)
13595002558fSNeil Perrin {
13605002558fSNeil Perrin 	uint64_t otxg, txg;
13615002558fSNeil Perrin 	list_t *commit_list = &zilog->zl_itx_commit_list;
13625002558fSNeil Perrin 	uint64_t push_sod = 0;
13635002558fSNeil Perrin 
13645002558fSNeil Perrin 	if (spa_freeze_txg(zilog->zl_spa) != UINT64_MAX) /* ziltest support */
13655002558fSNeil Perrin 		otxg = ZILTEST_TXG;
13665002558fSNeil Perrin 	else
13675002558fSNeil Perrin 		otxg = spa_last_synced_txg(zilog->zl_spa) + 1;
13685002558fSNeil Perrin 
13695002558fSNeil Perrin 	for (txg = otxg; txg < (otxg + TXG_CONCURRENT_STATES); txg++) {
13705002558fSNeil Perrin 		itxg_t *itxg = &zilog->zl_itxg[txg & TXG_MASK];
13715002558fSNeil Perrin 
13725002558fSNeil Perrin 		mutex_enter(&itxg->itxg_lock);
13735002558fSNeil Perrin 		if (itxg->itxg_txg != txg) {
13745002558fSNeil Perrin 			mutex_exit(&itxg->itxg_lock);
13755002558fSNeil Perrin 			continue;
13765002558fSNeil Perrin 		}
13775002558fSNeil Perrin 
13785002558fSNeil Perrin 		list_move_tail(commit_list, &itxg->itxg_itxs->i_sync_list);
13795002558fSNeil Perrin 		push_sod += itxg->itxg_sod;
13805002558fSNeil Perrin 		itxg->itxg_sod = 0;
13815002558fSNeil Perrin 
13825002558fSNeil Perrin 		mutex_exit(&itxg->itxg_lock);
13835002558fSNeil Perrin 	}
13845002558fSNeil Perrin 	atomic_add_64(&zilog->zl_itx_list_sz, -push_sod);
13855002558fSNeil Perrin }
13865002558fSNeil Perrin 
13875002558fSNeil Perrin /*
13885002558fSNeil Perrin  * Move the async itxs for a specified object to commit into sync lists.
13895002558fSNeil Perrin  */
139091de656bSNeil Perrin static void
13915002558fSNeil Perrin zil_async_to_sync(zilog_t *zilog, uint64_t foid)
13925002558fSNeil Perrin {
13935002558fSNeil Perrin 	uint64_t otxg, txg;
13945002558fSNeil Perrin 	itx_async_node_t *ian;
13955002558fSNeil Perrin 	avl_tree_t *t;
13965002558fSNeil Perrin 	avl_index_t where;
13975002558fSNeil Perrin 
13985002558fSNeil Perrin 	if (spa_freeze_txg(zilog->zl_spa) != UINT64_MAX) /* ziltest support */
13995002558fSNeil Perrin 		otxg = ZILTEST_TXG;
14005002558fSNeil Perrin 	else
14015002558fSNeil Perrin 		otxg = spa_last_synced_txg(zilog->zl_spa) + 1;
14025002558fSNeil Perrin 
14035002558fSNeil Perrin 	for (txg = otxg; txg < (otxg + TXG_CONCURRENT_STATES); txg++) {
14045002558fSNeil Perrin 		itxg_t *itxg = &zilog->zl_itxg[txg & TXG_MASK];
14055002558fSNeil Perrin 
14065002558fSNeil Perrin 		mutex_enter(&itxg->itxg_lock);
14075002558fSNeil Perrin 		if (itxg->itxg_txg != txg) {
14085002558fSNeil Perrin 			mutex_exit(&itxg->itxg_lock);
14095002558fSNeil Perrin 			continue;
14105002558fSNeil Perrin 		}
14115002558fSNeil Perrin 
14125002558fSNeil Perrin 		/*
14135002558fSNeil Perrin 		 * If a foid is specified then find that node and append its
14145002558fSNeil Perrin 		 * list. Otherwise walk the tree appending all the lists
14155002558fSNeil Perrin 		 * to the sync list. We add to the end rather than the
14165002558fSNeil Perrin 		 * beginning to ensure the create has happened.
14175002558fSNeil Perrin 		 */
14185002558fSNeil Perrin 		t = &itxg->itxg_itxs->i_async_tree;
14195002558fSNeil Perrin 		if (foid != 0) {
14205002558fSNeil Perrin 			ian = avl_find(t, &foid, &where);
14215002558fSNeil Perrin 			if (ian != NULL) {
14225002558fSNeil Perrin 				list_move_tail(&itxg->itxg_itxs->i_sync_list,
14235002558fSNeil Perrin 				    &ian->ia_list);
14245002558fSNeil Perrin 			}
14255002558fSNeil Perrin 		} else {
14265002558fSNeil Perrin 			void *cookie = NULL;
14275002558fSNeil Perrin 
14285002558fSNeil Perrin 			while ((ian = avl_destroy_nodes(t, &cookie)) != NULL) {
14295002558fSNeil Perrin 				list_move_tail(&itxg->itxg_itxs->i_sync_list,
14305002558fSNeil Perrin 				    &ian->ia_list);
14315002558fSNeil Perrin 				list_destroy(&ian->ia_list);
14325002558fSNeil Perrin 				kmem_free(ian, sizeof (itx_async_node_t));
14335002558fSNeil Perrin 			}
14345002558fSNeil Perrin 		}
14355002558fSNeil Perrin 		mutex_exit(&itxg->itxg_lock);
143667bd71c6Sperrin 	}
1437fa9e4066Sahrens }
1438fa9e4066Sahrens 
1439e14bb325SJeff Bonwick static void
14405002558fSNeil Perrin zil_commit_writer(zilog_t *zilog)
1441fa9e4066Sahrens {
1442fa9e4066Sahrens 	uint64_t txg;
14435002558fSNeil Perrin 	itx_t *itx;
1444fa9e4066Sahrens 	lwb_t *lwb;
14455002558fSNeil Perrin 	spa_t *spa = zilog->zl_spa;
1446b24ab676SJeff Bonwick 	int error = 0;
1447fa9e4066Sahrens 
1448e14bb325SJeff Bonwick 	ASSERT(zilog->zl_root_zio == NULL);
14495002558fSNeil Perrin 
14505002558fSNeil Perrin 	mutex_exit(&zilog->zl_lock);
14515002558fSNeil Perrin 
14525002558fSNeil Perrin 	zil_get_commit_list(zilog);
14535002558fSNeil Perrin 
14545002558fSNeil Perrin 	/*
14555002558fSNeil Perrin 	 * Return if there's nothing to commit before we dirty the fs by
14565002558fSNeil Perrin 	 * calling zil_create().
14575002558fSNeil Perrin 	 */
14585002558fSNeil Perrin 	if (list_head(&zilog->zl_itx_commit_list) == NULL) {
14595002558fSNeil Perrin 		mutex_enter(&zilog->zl_lock);
14605002558fSNeil Perrin 		return;
14615002558fSNeil Perrin 	}
1462fa9e4066Sahrens 
1463fa9e4066Sahrens 	if (zilog->zl_suspend) {
1464fa9e4066Sahrens 		lwb = NULL;
1465fa9e4066Sahrens 	} else {
1466fa9e4066Sahrens 		lwb = list_tail(&zilog->zl_lwb_list);
14675002558fSNeil Perrin 		if (lwb == NULL)
14686e1f5caaSNeil Perrin 			lwb = zil_create(zilog);
1469fa9e4066Sahrens 	}
1470fa9e4066Sahrens 
1471b19a79ecSperrin 	DTRACE_PROBE1(zil__cw1, zilog_t *, zilog);
14725002558fSNeil Perrin 	while (itx = list_head(&zilog->zl_itx_commit_list)) {
1473fa9e4066Sahrens 		txg = itx->itx_lr.lrc_txg;
1474fa9e4066Sahrens 		ASSERT(txg);
1475fa9e4066Sahrens 
14765002558fSNeil Perrin 		if (txg > spa_last_synced_txg(spa) || txg > spa_freeze_txg(spa))
1477fa9e4066Sahrens 			lwb = zil_lwb_commit(zilog, itx, lwb);
14785002558fSNeil Perrin 		list_remove(&zilog->zl_itx_commit_list, itx);
14795002558fSNeil Perrin 		kmem_free(itx, offsetof(itx_t, itx_lr)
14805002558fSNeil Perrin 		    + itx->itx_lr.lrc_reclen);
1481fa9e4066Sahrens 	}
1482b19a79ecSperrin 	DTRACE_PROBE1(zil__cw2, zilog_t *, zilog);
1483fa9e4066Sahrens 
1484fa9e4066Sahrens 	/* write the last block out */
148567bd71c6Sperrin 	if (lwb != NULL && lwb->lwb_zio != NULL)
1486fa9e4066Sahrens 		lwb = zil_lwb_write_start(zilog, lwb);
1487fa9e4066Sahrens 
148822ac5be4Sperrin 	zilog->zl_cur_used = 0;
1489fa9e4066Sahrens 
1490fa9e4066Sahrens 	/*
1491b19a79ecSperrin 	 * Wait if necessary for the log blocks to be on stable storage.
1492fa9e4066Sahrens 	 */
1493b19a79ecSperrin 	if (zilog->zl_root_zio) {
1494b24ab676SJeff Bonwick 		error = zio_wait(zilog->zl_root_zio);
1495e14bb325SJeff Bonwick 		zilog->zl_root_zio = NULL;
149617f17c2dSbonwick 		zil_flush_vdevs(zilog);
1497fa9e4066Sahrens 	}
149822ac5be4Sperrin 
1499b24ab676SJeff Bonwick 	if (error || lwb == NULL)
1500fa9e4066Sahrens 		txg_wait_synced(zilog->zl_dmu_pool, 0);
150167bd71c6Sperrin 
150267bd71c6Sperrin 	mutex_enter(&zilog->zl_lock);
1503b24ab676SJeff Bonwick 
1504b24ab676SJeff Bonwick 	/*
1505b24ab676SJeff Bonwick 	 * Remember the highest committed log sequence number for ztest.
1506b24ab676SJeff Bonwick 	 * We only update this value when all the log writes succeeded,
1507b24ab676SJeff Bonwick 	 * because ztest wants to ASSERT that it got the whole log chain.
1508b24ab676SJeff Bonwick 	 */
1509b24ab676SJeff Bonwick 	if (error == 0 && lwb != NULL)
1510b24ab676SJeff Bonwick 		zilog->zl_commit_lr_seq = zilog->zl_lr_seq;
1511b19a79ecSperrin }
1512b19a79ecSperrin 
1513b19a79ecSperrin /*
15145002558fSNeil Perrin  * Commit zfs transactions to stable storage.
1515b19a79ecSperrin  * If foid is 0 push out all transactions, otherwise push only those
15165002558fSNeil Perrin  * for that object or might reference that object.
15175002558fSNeil Perrin  *
15185002558fSNeil Perrin  * itxs are committed in batches. In a heavily stressed zil there will be
15195002558fSNeil Perrin  * a commit writer thread who is writing out a bunch of itxs to the log
15205002558fSNeil Perrin  * for a set of committing threads (cthreads) in the same batch as the writer.
15215002558fSNeil Perrin  * Those cthreads are all waiting on the same cv for that batch.
15225002558fSNeil Perrin  *
15235002558fSNeil Perrin  * There will also be a different and growing batch of threads that are
15245002558fSNeil Perrin  * waiting to commit (qthreads). When the committing batch completes
15255002558fSNeil Perrin  * a transition occurs such that the cthreads exit and the qthreads become
15265002558fSNeil Perrin  * cthreads. One of the new cthreads becomes the writer thread for the
15275002558fSNeil Perrin  * batch. Any new threads arriving become new qthreads.
15285002558fSNeil Perrin  *
15295002558fSNeil Perrin  * Only 2 condition variables are needed and there's no transition
15305002558fSNeil Perrin  * between the two cvs needed. They just flip-flop between qthreads
15315002558fSNeil Perrin  * and cthreads.
15325002558fSNeil Perrin  *
15335002558fSNeil Perrin  * Using this scheme we can efficiently wakeup up only those threads
15345002558fSNeil Perrin  * that have been committed.
1535b19a79ecSperrin  */
1536b19a79ecSperrin void
15375002558fSNeil Perrin zil_commit(zilog_t *zilog, uint64_t foid)
1538b19a79ecSperrin {
15395002558fSNeil Perrin 	uint64_t mybatch;
1540b19a79ecSperrin 
15415002558fSNeil Perrin 	if (zilog->zl_sync == ZFS_SYNC_DISABLED)
15425002558fSNeil Perrin 		return;
1543b19a79ecSperrin 
15445002558fSNeil Perrin 	/* move the async itxs for the foid to the sync queues */
15455002558fSNeil Perrin 	zil_async_to_sync(zilog, foid);
1546b19a79ecSperrin 
15475002558fSNeil Perrin 	mutex_enter(&zilog->zl_lock);
15485002558fSNeil Perrin 	mybatch = zilog->zl_next_batch;
154967bd71c6Sperrin 	while (zilog->zl_writer) {
15505002558fSNeil Perrin 		cv_wait(&zilog->zl_cv_batch[mybatch & 1], &zilog->zl_lock);
15515002558fSNeil Perrin 		if (mybatch <= zilog->zl_com_batch) {
155267bd71c6Sperrin 			mutex_exit(&zilog->zl_lock);
155367bd71c6Sperrin 			return;
155467bd71c6Sperrin 		}
155567bd71c6Sperrin 	}
1556b24ab676SJeff Bonwick 
15575002558fSNeil Perrin 	zilog->zl_next_batch++;
15585002558fSNeil Perrin 	zilog->zl_writer = B_TRUE;
15595002558fSNeil Perrin 	zil_commit_writer(zilog);
15605002558fSNeil Perrin 	zilog->zl_com_batch = mybatch;
15615002558fSNeil Perrin 	zilog->zl_writer = B_FALSE;
15625002558fSNeil Perrin 	mutex_exit(&zilog->zl_lock);
1563b24ab676SJeff Bonwick 
15645002558fSNeil Perrin 	/* wake up one thread to become the next writer */
15655002558fSNeil Perrin 	cv_signal(&zilog->zl_cv_batch[(mybatch+1) & 1]);
1566b24ab676SJeff Bonwick 
15675002558fSNeil Perrin 	/* wake up all threads waiting for this batch to be committed */
15685002558fSNeil Perrin 	cv_broadcast(&zilog->zl_cv_batch[mybatch & 1]);
1569b24ab676SJeff Bonwick }
1570b24ab676SJeff Bonwick 
1571fa9e4066Sahrens /*
1572fa9e4066Sahrens  * Called in syncing context to free committed log blocks and update log header.
1573fa9e4066Sahrens  */
1574fa9e4066Sahrens void
1575fa9e4066Sahrens zil_sync(zilog_t *zilog, dmu_tx_t *tx)
1576fa9e4066Sahrens {
1577d80c45e0Sbonwick 	zil_header_t *zh = zil_header_in_syncing_context(zilog);
1578fa9e4066Sahrens 	uint64_t txg = dmu_tx_get_txg(tx);
1579fa9e4066Sahrens 	spa_t *spa = zilog->zl_spa;
1580b24ab676SJeff Bonwick 	uint64_t *replayed_seq = &zilog->zl_replayed_seq[txg & TXG_MASK];
1581fa9e4066Sahrens 	lwb_t *lwb;
1582fa9e4066Sahrens 
158314843421SMatthew Ahrens 	/*
158414843421SMatthew Ahrens 	 * We don't zero out zl_destroy_txg, so make sure we don't try
158514843421SMatthew Ahrens 	 * to destroy it twice.
158614843421SMatthew Ahrens 	 */
158714843421SMatthew Ahrens 	if (spa_sync_pass(spa) != 1)
158814843421SMatthew Ahrens 		return;
158914843421SMatthew Ahrens 
1590d80c45e0Sbonwick 	mutex_enter(&zilog->zl_lock);
1591d80c45e0Sbonwick 
1592fa9e4066Sahrens 	ASSERT(zilog->zl_stop_sync == 0);
1593fa9e4066Sahrens 
1594b24ab676SJeff Bonwick 	if (*replayed_seq != 0) {
1595b24ab676SJeff Bonwick 		ASSERT(zh->zh_replay_seq < *replayed_seq);
1596b24ab676SJeff Bonwick 		zh->zh_replay_seq = *replayed_seq;
1597b24ab676SJeff Bonwick 		*replayed_seq = 0;
1598b24ab676SJeff Bonwick 	}
1599fa9e4066Sahrens 
1600fa9e4066Sahrens 	if (zilog->zl_destroy_txg == txg) {
1601d80c45e0Sbonwick 		blkptr_t blk = zh->zh_log;
1602d80c45e0Sbonwick 
1603d80c45e0Sbonwick 		ASSERT(list_head(&zilog->zl_lwb_list) == NULL);
1604d80c45e0Sbonwick 
1605d80c45e0Sbonwick 		bzero(zh, sizeof (zil_header_t));
16061209a471SNeil Perrin 		bzero(zilog->zl_replayed_seq, sizeof (zilog->zl_replayed_seq));
1607d80c45e0Sbonwick 
1608d80c45e0Sbonwick 		if (zilog->zl_keep_first) {
1609d80c45e0Sbonwick 			/*
1610d80c45e0Sbonwick 			 * If this block was part of log chain that couldn't
1611d80c45e0Sbonwick 			 * be claimed because a device was missing during
1612d80c45e0Sbonwick 			 * zil_claim(), but that device later returns,
1613d80c45e0Sbonwick 			 * then this block could erroneously appear valid.
1614d80c45e0Sbonwick 			 * To guard against this, assign a new GUID to the new
1615d80c45e0Sbonwick 			 * log chain so it doesn't matter what blk points to.
1616d80c45e0Sbonwick 			 */
1617d80c45e0Sbonwick 			zil_init_log_chain(zilog, &blk);
1618d80c45e0Sbonwick 			zh->zh_log = blk;
1619d80c45e0Sbonwick 		}
1620fa9e4066Sahrens 	}
1621fa9e4066Sahrens 
1622e6ca193dSGeorge Wilson 	while ((lwb = list_head(&zilog->zl_lwb_list)) != NULL) {
1623b19a79ecSperrin 		zh->zh_log = lwb->lwb_blk;
1624fa9e4066Sahrens 		if (lwb->lwb_buf != NULL || lwb->lwb_max_txg > txg)
1625fa9e4066Sahrens 			break;
1626fa9e4066Sahrens 		list_remove(&zilog->zl_lwb_list, lwb);
1627b24ab676SJeff Bonwick 		zio_free_zil(spa, txg, &lwb->lwb_blk);
1628fa9e4066Sahrens 		kmem_cache_free(zil_lwb_cache, lwb);
1629d63d470bSgw 
1630d63d470bSgw 		/*
1631d63d470bSgw 		 * If we don't have anything left in the lwb list then
1632d63d470bSgw 		 * we've had an allocation failure and we need to zero
1633d63d470bSgw 		 * out the zil_header blkptr so that we don't end
1634d63d470bSgw 		 * up freeing the same block twice.
1635d63d470bSgw 		 */
1636d63d470bSgw 		if (list_head(&zilog->zl_lwb_list) == NULL)
1637d63d470bSgw 			BP_ZERO(&zh->zh_log);
1638fa9e4066Sahrens 	}
1639fa9e4066Sahrens 	mutex_exit(&zilog->zl_lock);
1640fa9e4066Sahrens }
1641fa9e4066Sahrens 
1642fa9e4066Sahrens void
1643fa9e4066Sahrens zil_init(void)
1644fa9e4066Sahrens {
1645fa9e4066Sahrens 	zil_lwb_cache = kmem_cache_create("zil_lwb_cache",
16465ad82045Snd 	    sizeof (struct lwb), 0, NULL, NULL, NULL, NULL, NULL, 0);
1647fa9e4066Sahrens }
1648fa9e4066Sahrens 
1649fa9e4066Sahrens void
1650fa9e4066Sahrens zil_fini(void)
1651fa9e4066Sahrens {
1652fa9e4066Sahrens 	kmem_cache_destroy(zil_lwb_cache);
1653fa9e4066Sahrens }
1654fa9e4066Sahrens 
165555da60b9SMark J Musante void
165655da60b9SMark J Musante zil_set_sync(zilog_t *zilog, uint64_t sync)
165755da60b9SMark J Musante {
165855da60b9SMark J Musante 	zilog->zl_sync = sync;
165955da60b9SMark J Musante }
166055da60b9SMark J Musante 
1661e09fa4daSNeil Perrin void
1662e09fa4daSNeil Perrin zil_set_logbias(zilog_t *zilog, uint64_t logbias)
1663e09fa4daSNeil Perrin {
1664e09fa4daSNeil Perrin 	zilog->zl_logbias = logbias;
1665e09fa4daSNeil Perrin }
1666e09fa4daSNeil Perrin 
1667fa9e4066Sahrens zilog_t *
1668fa9e4066Sahrens zil_alloc(objset_t *os, zil_header_t *zh_phys)
1669fa9e4066Sahrens {
1670fa9e4066Sahrens 	zilog_t *zilog;
1671fa9e4066Sahrens 
1672fa9e4066Sahrens 	zilog = kmem_zalloc(sizeof (zilog_t), KM_SLEEP);
1673fa9e4066Sahrens 
1674fa9e4066Sahrens 	zilog->zl_header = zh_phys;
1675fa9e4066Sahrens 	zilog->zl_os = os;
1676fa9e4066Sahrens 	zilog->zl_spa = dmu_objset_spa(os);
1677fa9e4066Sahrens 	zilog->zl_dmu_pool = dmu_objset_pool(os);
1678d80c45e0Sbonwick 	zilog->zl_destroy_txg = TXG_INITIAL - 1;
1679e09fa4daSNeil Perrin 	zilog->zl_logbias = dmu_objset_logbias(os);
168055da60b9SMark J Musante 	zilog->zl_sync = dmu_objset_syncprop(os);
16815002558fSNeil Perrin 	zilog->zl_next_batch = 1;
1682fa9e4066Sahrens 
16835ad82045Snd 	mutex_init(&zilog->zl_lock, NULL, MUTEX_DEFAULT, NULL);
16845ad82045Snd 
16855002558fSNeil Perrin 	for (int i = 0; i < TXG_SIZE; i++) {
16865002558fSNeil Perrin 		mutex_init(&zilog->zl_itxg[i].itxg_lock, NULL,
16875002558fSNeil Perrin 		    MUTEX_DEFAULT, NULL);
16885002558fSNeil Perrin 	}
1689fa9e4066Sahrens 
1690fa9e4066Sahrens 	list_create(&zilog->zl_lwb_list, sizeof (lwb_t),
1691fa9e4066Sahrens 	    offsetof(lwb_t, lwb_node));
1692fa9e4066Sahrens 
16935002558fSNeil Perrin 	list_create(&zilog->zl_itx_commit_list, sizeof (itx_t),
16945002558fSNeil Perrin 	    offsetof(itx_t, itx_node));
16955002558fSNeil Perrin 
169617f17c2dSbonwick 	mutex_init(&zilog->zl_vdev_lock, NULL, MUTEX_DEFAULT, NULL);
169717f17c2dSbonwick 
169817f17c2dSbonwick 	avl_create(&zilog->zl_vdev_tree, zil_vdev_compare,
169917f17c2dSbonwick 	    sizeof (zil_vdev_node_t), offsetof(zil_vdev_node_t, zv_node));
1700fa9e4066Sahrens 
1701b7b97454Sperrin 	cv_init(&zilog->zl_cv_writer, NULL, CV_DEFAULT, NULL);
1702b7b97454Sperrin 	cv_init(&zilog->zl_cv_suspend, NULL, CV_DEFAULT, NULL);
17035002558fSNeil Perrin 	cv_init(&zilog->zl_cv_batch[0], NULL, CV_DEFAULT, NULL);
17045002558fSNeil Perrin 	cv_init(&zilog->zl_cv_batch[1], NULL, CV_DEFAULT, NULL);
1705b7b97454Sperrin 
1706fa9e4066Sahrens 	return (zilog);
1707fa9e4066Sahrens }
1708fa9e4066Sahrens 
1709fa9e4066Sahrens void
1710fa9e4066Sahrens zil_free(zilog_t *zilog)
1711fa9e4066Sahrens {
1712fa9e4066Sahrens 	zilog->zl_stop_sync = 1;
1713fa9e4066Sahrens 
17143b2aab18SMatthew Ahrens 	ASSERT0(zilog->zl_suspend);
17153b2aab18SMatthew Ahrens 	ASSERT0(zilog->zl_suspending);
17163b2aab18SMatthew Ahrens 
1717c9ba2a43SEric Schrock 	ASSERT(list_is_empty(&zilog->zl_lwb_list));
1718fa9e4066Sahrens 	list_destroy(&zilog->zl_lwb_list);
1719fa9e4066Sahrens 
172017f17c2dSbonwick 	avl_destroy(&zilog->zl_vdev_tree);
172117f17c2dSbonwick 	mutex_destroy(&zilog->zl_vdev_lock);
1722fa9e4066Sahrens 
17235002558fSNeil Perrin 	ASSERT(list_is_empty(&zilog->zl_itx_commit_list));
17245002558fSNeil Perrin 	list_destroy(&zilog->zl_itx_commit_list);
17255002558fSNeil Perrin 
17265002558fSNeil Perrin 	for (int i = 0; i < TXG_SIZE; i++) {
17275002558fSNeil Perrin 		/*
17285002558fSNeil Perrin 		 * It's possible for an itx to be generated that doesn't dirty
17295002558fSNeil Perrin 		 * a txg (e.g. ztest TX_TRUNCATE). So there's no zil_clean()
17305002558fSNeil Perrin 		 * callback to remove the entry. We remove those here.
17315002558fSNeil Perrin 		 *
17325002558fSNeil Perrin 		 * Also free up the ziltest itxs.
17335002558fSNeil Perrin 		 */
17345002558fSNeil Perrin 		if (zilog->zl_itxg[i].itxg_itxs)
17355002558fSNeil Perrin 			zil_itxg_clean(zilog->zl_itxg[i].itxg_itxs);
17365002558fSNeil Perrin 		mutex_destroy(&zilog->zl_itxg[i].itxg_lock);
17375002558fSNeil Perrin 	}
17385002558fSNeil Perrin 
17395ad82045Snd 	mutex_destroy(&zilog->zl_lock);
1740fa9e4066Sahrens 
1741b7b97454Sperrin 	cv_destroy(&zilog->zl_cv_writer);
1742b7b97454Sperrin 	cv_destroy(&zilog->zl_cv_suspend);
17435002558fSNeil Perrin 	cv_destroy(&zilog->zl_cv_batch[0]);
17445002558fSNeil Perrin 	cv_destroy(&zilog->zl_cv_batch[1]);
1745b7b97454Sperrin 
1746fa9e4066Sahrens 	kmem_free(zilog, sizeof (zilog_t));
1747fa9e4066Sahrens }
1748fa9e4066Sahrens 
1749fa9e4066Sahrens /*
1750fa9e4066Sahrens  * Open an intent log.
1751fa9e4066Sahrens  */
1752fa9e4066Sahrens zilog_t *
1753fa9e4066Sahrens zil_open(objset_t *os, zil_get_data_t *get_data)
1754fa9e4066Sahrens {
1755fa9e4066Sahrens 	zilog_t *zilog = dmu_objset_zil(os);
1756fa9e4066Sahrens 
1757c9ba2a43SEric Schrock 	ASSERT(zilog->zl_clean_taskq == NULL);
1758c9ba2a43SEric Schrock 	ASSERT(zilog->zl_get_data == NULL);
1759c9ba2a43SEric Schrock 	ASSERT(list_is_empty(&zilog->zl_lwb_list));
1760c9ba2a43SEric Schrock 
1761fa9e4066Sahrens 	zilog->zl_get_data = get_data;
1762fa9e4066Sahrens 	zilog->zl_clean_taskq = taskq_create("zil_clean", 1, minclsyspri,
1763fa9e4066Sahrens 	    2, 2, TASKQ_PREPOPULATE);
1764fa9e4066Sahrens 
1765fa9e4066Sahrens 	return (zilog);
1766fa9e4066Sahrens }
1767fa9e4066Sahrens 
1768fa9e4066Sahrens /*
1769fa9e4066Sahrens  * Close an intent log.
1770fa9e4066Sahrens  */
1771fa9e4066Sahrens void
1772fa9e4066Sahrens zil_close(zilog_t *zilog)
1773fa9e4066Sahrens {
1774c9ba2a43SEric Schrock 	lwb_t *lwb;
17755002558fSNeil Perrin 	uint64_t txg = 0;
17765002558fSNeil Perrin 
17775002558fSNeil Perrin 	zil_commit(zilog, 0); /* commit all itx */
17785002558fSNeil Perrin 
1779d80c45e0Sbonwick 	/*
17805002558fSNeil Perrin 	 * The lwb_max_txg for the stubby lwb will reflect the last activity
17815002558fSNeil Perrin 	 * for the zil.  After a txg_wait_synced() on the txg we know all the
17825002558fSNeil Perrin 	 * callbacks have occurred that may clean the zil.  Only then can we
17835002558fSNeil Perrin 	 * destroy the zl_clean_taskq.
1784d80c45e0Sbonwick 	 */
17855002558fSNeil Perrin 	mutex_enter(&zilog->zl_lock);
1786c9ba2a43SEric Schrock 	lwb = list_tail(&zilog->zl_lwb_list);
1787c9ba2a43SEric Schrock 	if (lwb != NULL)
1788c9ba2a43SEric Schrock 		txg = lwb->lwb_max_txg;
17895002558fSNeil Perrin 	mutex_exit(&zilog->zl_lock);
17905002558fSNeil Perrin 	if (txg)
1791d80c45e0Sbonwick 		txg_wait_synced(zilog->zl_dmu_pool, txg);
1792ce636f8bSMatthew Ahrens 	ASSERT(!zilog_is_dirty(zilog));
1793d80c45e0Sbonwick 
1794fa9e4066Sahrens 	taskq_destroy(zilog->zl_clean_taskq);
1795fa9e4066Sahrens 	zilog->zl_clean_taskq = NULL;
1796fa9e4066Sahrens 	zilog->zl_get_data = NULL;
1797c9ba2a43SEric Schrock 
1798c9ba2a43SEric Schrock 	/*
1799c9ba2a43SEric Schrock 	 * We should have only one LWB left on the list; remove it now.
1800c9ba2a43SEric Schrock 	 */
1801c9ba2a43SEric Schrock 	mutex_enter(&zilog->zl_lock);
1802c9ba2a43SEric Schrock 	lwb = list_head(&zilog->zl_lwb_list);
1803c9ba2a43SEric Schrock 	if (lwb != NULL) {
1804c9ba2a43SEric Schrock 		ASSERT(lwb == list_tail(&zilog->zl_lwb_list));
1805c9ba2a43SEric Schrock 		list_remove(&zilog->zl_lwb_list, lwb);
1806c9ba2a43SEric Schrock 		zio_buf_free(lwb->lwb_buf, lwb->lwb_sz);
1807c9ba2a43SEric Schrock 		kmem_cache_free(zil_lwb_cache, lwb);
1808c9ba2a43SEric Schrock 	}
1809c9ba2a43SEric Schrock 	mutex_exit(&zilog->zl_lock);
1810fa9e4066Sahrens }
1811fa9e4066Sahrens 
18123b2aab18SMatthew Ahrens static char *suspend_tag = "zil suspending";
18133b2aab18SMatthew Ahrens 
1814fa9e4066Sahrens /*
1815fa9e4066Sahrens  * Suspend an intent log.  While in suspended mode, we still honor
1816fa9e4066Sahrens  * synchronous semantics, but we rely on txg_wait_synced() to do it.
18173b2aab18SMatthew Ahrens  * On old version pools, we suspend the log briefly when taking a
18183b2aab18SMatthew Ahrens  * snapshot so that it will have an empty intent log.
18193b2aab18SMatthew Ahrens  *
18203b2aab18SMatthew Ahrens  * Long holds are not really intended to be used the way we do here --
18213b2aab18SMatthew Ahrens  * held for such a short time.  A concurrent caller of dsl_dataset_long_held()
18223b2aab18SMatthew Ahrens  * could fail.  Therefore we take pains to only put a long hold if it is
18233b2aab18SMatthew Ahrens  * actually necessary.  Fortunately, it will only be necessary if the
18243b2aab18SMatthew Ahrens  * objset is currently mounted (or the ZVOL equivalent).  In that case it
18253b2aab18SMatthew Ahrens  * will already have a long hold, so we are not really making things any worse.
18263b2aab18SMatthew Ahrens  *
18273b2aab18SMatthew Ahrens  * Ideally, we would locate the existing long-holder (i.e. the zfsvfs_t or
18283b2aab18SMatthew Ahrens  * zvol_state_t), and use their mechanism to prevent their hold from being
18293b2aab18SMatthew Ahrens  * dropped (e.g. VFS_HOLD()).  However, that would be even more pain for
18303b2aab18SMatthew Ahrens  * very little gain.
18313b2aab18SMatthew Ahrens  *
18323b2aab18SMatthew Ahrens  * if cookiep == NULL, this does both the suspend & resume.
18333b2aab18SMatthew Ahrens  * Otherwise, it returns with the dataset "long held", and the cookie
18343b2aab18SMatthew Ahrens  * should be passed into zil_resume().
1835fa9e4066Sahrens  */
1836fa9e4066Sahrens int
18373b2aab18SMatthew Ahrens zil_suspend(const char *osname, void **cookiep)
1838fa9e4066Sahrens {
18393b2aab18SMatthew Ahrens 	objset_t *os;
18403b2aab18SMatthew Ahrens 	zilog_t *zilog;
18413b2aab18SMatthew Ahrens 	const zil_header_t *zh;
18423b2aab18SMatthew Ahrens 	int error;
18433b2aab18SMatthew Ahrens 
18443b2aab18SMatthew Ahrens 	error = dmu_objset_hold(osname, suspend_tag, &os);
18453b2aab18SMatthew Ahrens 	if (error != 0)
18463b2aab18SMatthew Ahrens 		return (error);
18473b2aab18SMatthew Ahrens 	zilog = dmu_objset_zil(os);
1848fa9e4066Sahrens 
1849fa9e4066Sahrens 	mutex_enter(&zilog->zl_lock);
18503b2aab18SMatthew Ahrens 	zh = zilog->zl_header;
18513b2aab18SMatthew Ahrens 
18523589c4f0SNeil Perrin 	if (zh->zh_flags & ZIL_REPLAY_NEEDED) {		/* unplayed log */
1853fa9e4066Sahrens 		mutex_exit(&zilog->zl_lock);
18543b2aab18SMatthew Ahrens 		dmu_objset_rele(os, suspend_tag);
1855be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
1856fa9e4066Sahrens 	}
18573b2aab18SMatthew Ahrens 
18583b2aab18SMatthew Ahrens 	/*
18593b2aab18SMatthew Ahrens 	 * Don't put a long hold in the cases where we can avoid it.  This
18603b2aab18SMatthew Ahrens 	 * is when there is no cookie so we are doing a suspend & resume
18613b2aab18SMatthew Ahrens 	 * (i.e. called from zil_vdev_offline()), and there's nothing to do
18623b2aab18SMatthew Ahrens 	 * for the suspend because it's already suspended, or there's no ZIL.
18633b2aab18SMatthew Ahrens 	 */
18643b2aab18SMatthew Ahrens 	if (cookiep == NULL && !zilog->zl_suspending &&
18653b2aab18SMatthew Ahrens 	    (zilog->zl_suspend > 0 || BP_IS_HOLE(&zh->zh_log))) {
18663b2aab18SMatthew Ahrens 		mutex_exit(&zilog->zl_lock);
18673b2aab18SMatthew Ahrens 		dmu_objset_rele(os, suspend_tag);
18683b2aab18SMatthew Ahrens 		return (0);
18693b2aab18SMatthew Ahrens 	}
18703b2aab18SMatthew Ahrens 
18713b2aab18SMatthew Ahrens 	dsl_dataset_long_hold(dmu_objset_ds(os), suspend_tag);
18723b2aab18SMatthew Ahrens 	dsl_pool_rele(dmu_objset_pool(os), suspend_tag);
18733b2aab18SMatthew Ahrens 
18743b2aab18SMatthew Ahrens 	zilog->zl_suspend++;
18753b2aab18SMatthew Ahrens 
18763b2aab18SMatthew Ahrens 	if (zilog->zl_suspend > 1) {
1877d80c45e0Sbonwick 		/*
18783b2aab18SMatthew Ahrens 		 * Someone else is already suspending it.
1879d80c45e0Sbonwick 		 * Just wait for them to finish.
1880d80c45e0Sbonwick 		 */
18813b2aab18SMatthew Ahrens 
1882d80c45e0Sbonwick 		while (zilog->zl_suspending)
1883d80c45e0Sbonwick 			cv_wait(&zilog->zl_cv_suspend, &zilog->zl_lock);
1884d80c45e0Sbonwick 		mutex_exit(&zilog->zl_lock);
18853b2aab18SMatthew Ahrens 
18863b2aab18SMatthew Ahrens 		if (cookiep == NULL)
18873b2aab18SMatthew Ahrens 			zil_resume(os);
18883b2aab18SMatthew Ahrens 		else
18893b2aab18SMatthew Ahrens 			*cookiep = os;
18903b2aab18SMatthew Ahrens 		return (0);
18913b2aab18SMatthew Ahrens 	}
18923b2aab18SMatthew Ahrens 
18933b2aab18SMatthew Ahrens 	/*
18943b2aab18SMatthew Ahrens 	 * If there is no pointer to an on-disk block, this ZIL must not
18953b2aab18SMatthew Ahrens 	 * be active (e.g. filesystem not mounted), so there's nothing
18963b2aab18SMatthew Ahrens 	 * to clean up.
18973b2aab18SMatthew Ahrens 	 */
18983b2aab18SMatthew Ahrens 	if (BP_IS_HOLE(&zh->zh_log)) {
18993b2aab18SMatthew Ahrens 		ASSERT(cookiep != NULL); /* fast path already handled */
19003b2aab18SMatthew Ahrens 
19013b2aab18SMatthew Ahrens 		*cookiep = os;
19023b2aab18SMatthew Ahrens 		mutex_exit(&zilog->zl_lock);
1903d80c45e0Sbonwick 		return (0);
1904d80c45e0Sbonwick 	}
19053b2aab18SMatthew Ahrens 
1906d80c45e0Sbonwick 	zilog->zl_suspending = B_TRUE;
1907fa9e4066Sahrens 	mutex_exit(&zilog->zl_lock);
1908fa9e4066Sahrens 
19095002558fSNeil Perrin 	zil_commit(zilog, 0);
1910fa9e4066Sahrens 
1911d80c45e0Sbonwick 	zil_destroy(zilog, B_FALSE);
1912d80c45e0Sbonwick 
1913d80c45e0Sbonwick 	mutex_enter(&zilog->zl_lock);
1914d80c45e0Sbonwick 	zilog->zl_suspending = B_FALSE;
1915d80c45e0Sbonwick 	cv_broadcast(&zilog->zl_cv_suspend);
1916d80c45e0Sbonwick 	mutex_exit(&zilog->zl_lock);
1917fa9e4066Sahrens 
19183b2aab18SMatthew Ahrens 	if (cookiep == NULL)
19193b2aab18SMatthew Ahrens 		zil_resume(os);
19203b2aab18SMatthew Ahrens 	else
19213b2aab18SMatthew Ahrens 		*cookiep = os;
1922fa9e4066Sahrens 	return (0);
1923fa9e4066Sahrens }
1924fa9e4066Sahrens 
1925fa9e4066Sahrens void
19263b2aab18SMatthew Ahrens zil_resume(void *cookie)
1927fa9e4066Sahrens {
19283b2aab18SMatthew Ahrens 	objset_t *os = cookie;
19293b2aab18SMatthew Ahrens 	zilog_t *zilog = dmu_objset_zil(os);
19303b2aab18SMatthew Ahrens 
1931fa9e4066Sahrens 	mutex_enter(&zilog->zl_lock);
1932fa9e4066Sahrens 	ASSERT(zilog->zl_suspend != 0);
1933fa9e4066Sahrens 	zilog->zl_suspend--;
1934fa9e4066Sahrens 	mutex_exit(&zilog->zl_lock);
19353b2aab18SMatthew Ahrens 	dsl_dataset_long_rele(dmu_objset_ds(os), suspend_tag);
19363b2aab18SMatthew Ahrens 	dsl_dataset_rele(dmu_objset_ds(os), suspend_tag);
1937fa9e4066Sahrens }
1938fa9e4066Sahrens 
1939fa9e4066Sahrens typedef struct zil_replay_arg {
1940fa9e4066Sahrens 	zil_replay_func_t **zr_replay;
1941fa9e4066Sahrens 	void		*zr_arg;
1942fa9e4066Sahrens 	boolean_t	zr_byteswap;
1943b24ab676SJeff Bonwick 	char		*zr_lr;
1944fa9e4066Sahrens } zil_replay_arg_t;
1945fa9e4066Sahrens 
1946b24ab676SJeff Bonwick static int
1947b24ab676SJeff Bonwick zil_replay_error(zilog_t *zilog, lr_t *lr, int error)
1948b24ab676SJeff Bonwick {
1949b24ab676SJeff Bonwick 	char name[MAXNAMELEN];
1950b24ab676SJeff Bonwick 
1951b24ab676SJeff Bonwick 	zilog->zl_replaying_seq--;	/* didn't actually replay this one */
1952b24ab676SJeff Bonwick 
1953b24ab676SJeff Bonwick 	dmu_objset_name(zilog->zl_os, name);
1954b24ab676SJeff Bonwick 
1955b24ab676SJeff Bonwick 	cmn_err(CE_WARN, "ZFS replay transaction error %d, "
1956b24ab676SJeff Bonwick 	    "dataset %s, seq 0x%llx, txtype %llu %s\n", error, name,
1957b24ab676SJeff Bonwick 	    (u_longlong_t)lr->lrc_seq,
1958b24ab676SJeff Bonwick 	    (u_longlong_t)(lr->lrc_txtype & ~TX_CI),
1959b24ab676SJeff Bonwick 	    (lr->lrc_txtype & TX_CI) ? "CI" : "");
1960b24ab676SJeff Bonwick 
1961b24ab676SJeff Bonwick 	return (error);
1962b24ab676SJeff Bonwick }
1963b24ab676SJeff Bonwick 
1964b24ab676SJeff Bonwick static int
1965fa9e4066Sahrens zil_replay_log_record(zilog_t *zilog, lr_t *lr, void *zra, uint64_t claim_txg)
1966fa9e4066Sahrens {
1967fa9e4066Sahrens 	zil_replay_arg_t *zr = zra;
1968d80c45e0Sbonwick 	const zil_header_t *zh = zilog->zl_header;
1969fa9e4066Sahrens 	uint64_t reclen = lr->lrc_reclen;
1970fa9e4066Sahrens 	uint64_t txtype = lr->lrc_txtype;
1971b24ab676SJeff Bonwick 	int error = 0;
1972fa9e4066Sahrens 
1973b24ab676SJeff Bonwick 	zilog->zl_replaying_seq = lr->lrc_seq;
1974fa9e4066Sahrens 
1975fa9e4066Sahrens 	if (lr->lrc_seq <= zh->zh_replay_seq)	/* already replayed */
1976b24ab676SJeff Bonwick 		return (0);
1977b24ab676SJeff Bonwick 
1978b24ab676SJeff Bonwick 	if (lr->lrc_txg < claim_txg)		/* already committed */
1979b24ab676SJeff Bonwick 		return (0);
1980fa9e4066Sahrens 
1981da6c28aaSamw 	/* Strip case-insensitive bit, still present in log record */
1982da6c28aaSamw 	txtype &= ~TX_CI;
1983da6c28aaSamw 
1984b24ab676SJeff Bonwick 	if (txtype == 0 || txtype >= TX_MAX_TYPE)
1985b24ab676SJeff Bonwick 		return (zil_replay_error(zilog, lr, EINVAL));
1986b24ab676SJeff Bonwick 
1987b24ab676SJeff Bonwick 	/*
1988b24ab676SJeff Bonwick 	 * If this record type can be logged out of order, the object
1989b24ab676SJeff Bonwick 	 * (lr_foid) may no longer exist.  That's legitimate, not an error.
1990b24ab676SJeff Bonwick 	 */
1991b24ab676SJeff Bonwick 	if (TX_OOO(txtype)) {
1992b24ab676SJeff Bonwick 		error = dmu_object_info(zilog->zl_os,
1993b24ab676SJeff Bonwick 		    ((lr_ooo_t *)lr)->lr_foid, NULL);
1994b24ab676SJeff Bonwick 		if (error == ENOENT || error == EEXIST)
1995b24ab676SJeff Bonwick 			return (0);
19961209a471SNeil Perrin 	}
19971209a471SNeil Perrin 
1998fa9e4066Sahrens 	/*
1999fa9e4066Sahrens 	 * Make a copy of the data so we can revise and extend it.
2000fa9e4066Sahrens 	 */
2001b24ab676SJeff Bonwick 	bcopy(lr, zr->zr_lr, reclen);
2002b24ab676SJeff Bonwick 
2003b24ab676SJeff Bonwick 	/*
2004b24ab676SJeff Bonwick 	 * If this is a TX_WRITE with a blkptr, suck in the data.
2005b24ab676SJeff Bonwick 	 */
2006b24ab676SJeff Bonwick 	if (txtype == TX_WRITE && reclen == sizeof (lr_write_t)) {
2007b24ab676SJeff Bonwick 		error = zil_read_log_data(zilog, (lr_write_t *)lr,
2008b24ab676SJeff Bonwick 		    zr->zr_lr + reclen);
20093b2aab18SMatthew Ahrens 		if (error != 0)
2010b24ab676SJeff Bonwick 			return (zil_replay_error(zilog, lr, error));
2011b24ab676SJeff Bonwick 	}
2012fa9e4066Sahrens 
2013fa9e4066Sahrens 	/*
2014fa9e4066Sahrens 	 * The log block containing this lr may have been byteswapped
2015fa9e4066Sahrens 	 * so that we can easily examine common fields like lrc_txtype.
2016b24ab676SJeff Bonwick 	 * However, the log is a mix of different record types, and only the
2017fa9e4066Sahrens 	 * replay vectors know how to byteswap their records.  Therefore, if
2018fa9e4066Sahrens 	 * the lr was byteswapped, undo it before invoking the replay vector.
2019fa9e4066Sahrens 	 */
2020fa9e4066Sahrens 	if (zr->zr_byteswap)
2021b24ab676SJeff Bonwick 		byteswap_uint64_array(zr->zr_lr, reclen);
2022fa9e4066Sahrens 
2023fa9e4066Sahrens 	/*
2024fa9e4066Sahrens 	 * We must now do two things atomically: replay this log record,
20251209a471SNeil Perrin 	 * and update the log header sequence number to reflect the fact that
20261209a471SNeil Perrin 	 * we did so. At the end of each replay function the sequence number
20271209a471SNeil Perrin 	 * is updated if we are in replay mode.
2028fa9e4066Sahrens 	 */
2029b24ab676SJeff Bonwick 	error = zr->zr_replay[txtype](zr->zr_arg, zr->zr_lr, zr->zr_byteswap);
20303b2aab18SMatthew Ahrens 	if (error != 0) {
203167bd71c6Sperrin 		/*
203267bd71c6Sperrin 		 * The DMU's dnode layer doesn't see removes until the txg
203367bd71c6Sperrin 		 * commits, so a subsequent claim can spuriously fail with
20341209a471SNeil Perrin 		 * EEXIST. So if we receive any error we try syncing out
2035b24ab676SJeff Bonwick 		 * any removes then retry the transaction.  Note that we
2036b24ab676SJeff Bonwick 		 * specify B_FALSE for byteswap now, so we don't do it twice.
203767bd71c6Sperrin 		 */
2038b24ab676SJeff Bonwick 		txg_wait_synced(spa_get_dsl(zilog->zl_spa), 0);
2039b24ab676SJeff Bonwick 		error = zr->zr_replay[txtype](zr->zr_arg, zr->zr_lr, B_FALSE);
20403b2aab18SMatthew Ahrens 		if (error != 0)
2041b24ab676SJeff Bonwick 			return (zil_replay_error(zilog, lr, error));
2042fa9e4066Sahrens 	}
2043b24ab676SJeff Bonwick 	return (0);
204467bd71c6Sperrin }
2045fa9e4066Sahrens 
204667bd71c6Sperrin /* ARGSUSED */
2047b24ab676SJeff Bonwick static int
204867bd71c6Sperrin zil_incr_blks(zilog_t *zilog, blkptr_t *bp, void *arg, uint64_t claim_txg)
204967bd71c6Sperrin {
205067bd71c6Sperrin 	zilog->zl_replay_blks++;
2051b24ab676SJeff Bonwick 
2052b24ab676SJeff Bonwick 	return (0);
2053fa9e4066Sahrens }
2054fa9e4066Sahrens 
2055fa9e4066Sahrens /*
205613f5297eSperrin  * If this dataset has a non-empty intent log, replay it and destroy it.
2057fa9e4066Sahrens  */
2058fa9e4066Sahrens void
20591209a471SNeil Perrin zil_replay(objset_t *os, void *arg, zil_replay_func_t *replay_func[TX_MAX_TYPE])
2060fa9e4066Sahrens {
2061fa9e4066Sahrens 	zilog_t *zilog = dmu_objset_zil(os);
2062d80c45e0Sbonwick 	const zil_header_t *zh = zilog->zl_header;
2063d80c45e0Sbonwick 	zil_replay_arg_t zr;
206413f5297eSperrin 
20653589c4f0SNeil Perrin 	if ((zh->zh_flags & ZIL_REPLAY_NEEDED) == 0) {
2066d80c45e0Sbonwick 		zil_destroy(zilog, B_TRUE);
206713f5297eSperrin 		return;
206813f5297eSperrin 	}
2069fa9e4066Sahrens 
2070fa9e4066Sahrens 	zr.zr_replay = replay_func;
2071fa9e4066Sahrens 	zr.zr_arg = arg;
2072d80c45e0Sbonwick 	zr.zr_byteswap = BP_SHOULD_BYTESWAP(&zh->zh_log);
2073b24ab676SJeff Bonwick 	zr.zr_lr = kmem_alloc(2 * SPA_MAXBLOCKSIZE, KM_SLEEP);
2074fa9e4066Sahrens 
2075fa9e4066Sahrens 	/*
2076fa9e4066Sahrens 	 * Wait for in-progress removes to sync before starting replay.
2077fa9e4066Sahrens 	 */
2078fa9e4066Sahrens 	txg_wait_synced(zilog->zl_dmu_pool, 0);
2079fa9e4066Sahrens 
20801209a471SNeil Perrin 	zilog->zl_replay = B_TRUE;
2081d3d50737SRafael Vanoni 	zilog->zl_replay_time = ddi_get_lbolt();
208267bd71c6Sperrin 	ASSERT(zilog->zl_replay_blks == 0);
208367bd71c6Sperrin 	(void) zil_parse(zilog, zil_incr_blks, zil_replay_log_record, &zr,
2084d80c45e0Sbonwick 	    zh->zh_claim_txg);
2085b24ab676SJeff Bonwick 	kmem_free(zr.zr_lr, 2 * SPA_MAXBLOCKSIZE);
2086fa9e4066Sahrens 
2087d80c45e0Sbonwick 	zil_destroy(zilog, B_FALSE);
2088a4611edeSahrens 	txg_wait_synced(zilog->zl_dmu_pool, zilog->zl_destroy_txg);
20891209a471SNeil Perrin 	zilog->zl_replay = B_FALSE;
2090fa9e4066Sahrens }
2091436b2950Sperrin 
2092b24ab676SJeff Bonwick boolean_t
2093b24ab676SJeff Bonwick zil_replaying(zilog_t *zilog, dmu_tx_t *tx)
2094436b2950Sperrin {
209555da60b9SMark J Musante 	if (zilog->zl_sync == ZFS_SYNC_DISABLED)
2096b24ab676SJeff Bonwick 		return (B_TRUE);
2097436b2950Sperrin 
2098b24ab676SJeff Bonwick 	if (zilog->zl_replay) {
2099b24ab676SJeff Bonwick 		dsl_dataset_dirty(dmu_objset_ds(zilog->zl_os), tx);
2100b24ab676SJeff Bonwick 		zilog->zl_replayed_seq[dmu_tx_get_txg(tx) & TXG_MASK] =
2101b24ab676SJeff Bonwick 		    zilog->zl_replaying_seq;
2102b24ab676SJeff Bonwick 		return (B_TRUE);
2103b19a79ecSperrin 	}
2104b19a79ecSperrin 
2105b24ab676SJeff Bonwick 	return (B_FALSE);
2106436b2950Sperrin }
2107e6ca193dSGeorge Wilson 
2108e6ca193dSGeorge Wilson /* ARGSUSED */
2109e6ca193dSGeorge Wilson int
2110fd136879SMatthew Ahrens zil_vdev_offline(const char *osname, void *arg)
2111e6ca193dSGeorge Wilson {
2112e6ca193dSGeorge Wilson 	int error;
2113e6ca193dSGeorge Wilson 
21143b2aab18SMatthew Ahrens 	error = zil_suspend(osname, NULL);
21153b2aab18SMatthew Ahrens 	if (error != 0)
2116be6fd75aSMatthew Ahrens 		return (SET_ERROR(EEXIST));
21173b2aab18SMatthew Ahrens 	return (0);
2118e6ca193dSGeorge Wilson }
2119