xref: /illumos-gate/usr/src/uts/common/fs/zfs/zil.c (revision 7802d7bf98dec568dadf72286893b1fe5abd8602)
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.
23*7802d7bfSMatthew Ahrens  * Copyright (c) 2011, 2014 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;
1405d7b4d43SMatthew Ahrens 	const dva_t *dva;
141b24ab676SJeff Bonwick 	zil_bp_node_t *zn;
142fa9e4066Sahrens 	avl_index_t where;
143fa9e4066Sahrens 
1445d7b4d43SMatthew Ahrens 	if (BP_IS_EMBEDDED(bp))
1455d7b4d43SMatthew Ahrens 		return (0);
1465d7b4d43SMatthew Ahrens 
1475d7b4d43SMatthew Ahrens 	dva = BP_IDENTITY(bp);
1485d7b4d43SMatthew Ahrens 
149fa9e4066Sahrens 	if (avl_find(t, dva, &where) != NULL)
150be6fd75aSMatthew Ahrens 		return (SET_ERROR(EEXIST));
151fa9e4066Sahrens 
152b24ab676SJeff Bonwick 	zn = kmem_alloc(sizeof (zil_bp_node_t), KM_SLEEP);
153fa9e4066Sahrens 	zn->zn_dva = *dva;
154fa9e4066Sahrens 	avl_insert(t, zn, where);
155fa9e4066Sahrens 
156fa9e4066Sahrens 	return (0);
157fa9e4066Sahrens }
158fa9e4066Sahrens 
159d80c45e0Sbonwick static zil_header_t *
160d80c45e0Sbonwick zil_header_in_syncing_context(zilog_t *zilog)
161d80c45e0Sbonwick {
162d80c45e0Sbonwick 	return ((zil_header_t *)zilog->zl_header);
163d80c45e0Sbonwick }
164d80c45e0Sbonwick 
165d80c45e0Sbonwick static void
166d80c45e0Sbonwick zil_init_log_chain(zilog_t *zilog, blkptr_t *bp)
167d80c45e0Sbonwick {
168d80c45e0Sbonwick 	zio_cksum_t *zc = &bp->blk_cksum;
169d80c45e0Sbonwick 
170d80c45e0Sbonwick 	zc->zc_word[ZIL_ZC_GUID_0] = spa_get_random(-1ULL);
171d80c45e0Sbonwick 	zc->zc_word[ZIL_ZC_GUID_1] = spa_get_random(-1ULL);
172d80c45e0Sbonwick 	zc->zc_word[ZIL_ZC_OBJSET] = dmu_objset_id(zilog->zl_os);
173d80c45e0Sbonwick 	zc->zc_word[ZIL_ZC_SEQ] = 1ULL;
174d80c45e0Sbonwick }
175d80c45e0Sbonwick 
176fa9e4066Sahrens /*
177b24ab676SJeff Bonwick  * Read a log block and make sure it's valid.
178fa9e4066Sahrens  */
179fa9e4066Sahrens static int
1806e1f5caaSNeil Perrin zil_read_log_block(zilog_t *zilog, const blkptr_t *bp, blkptr_t *nbp, void *dst,
1816e1f5caaSNeil Perrin     char **end)
182fa9e4066Sahrens {
183b24ab676SJeff Bonwick 	enum zio_flag zio_flags = ZIO_FLAG_CANFAIL;
18413506d1eSmaybee 	uint32_t aflags = ARC_WAIT;
185b24ab676SJeff Bonwick 	arc_buf_t *abuf = NULL;
186*7802d7bfSMatthew Ahrens 	zbookmark_phys_t zb;
187fa9e4066Sahrens 	int error;
188fa9e4066Sahrens 
189b24ab676SJeff Bonwick 	if (zilog->zl_header->zh_claim_txg == 0)
190b24ab676SJeff Bonwick 		zio_flags |= ZIO_FLAG_SPECULATIVE | ZIO_FLAG_SCRUB;
191ea8dc4b6Seschrock 
192b24ab676SJeff Bonwick 	if (!(zilog->zl_header->zh_flags & ZIL_CLAIM_LR_SEQ_VALID))
193b24ab676SJeff Bonwick 		zio_flags |= ZIO_FLAG_SPECULATIVE;
194fa9e4066Sahrens 
195b24ab676SJeff Bonwick 	SET_BOOKMARK(&zb, bp->blk_cksum.zc_word[ZIL_ZC_OBJSET],
196b24ab676SJeff Bonwick 	    ZB_ZIL_OBJECT, ZB_ZIL_LEVEL, bp->blk_cksum.zc_word[ZIL_ZC_SEQ]);
197b24ab676SJeff Bonwick 
1981b912ec7SGeorge Wilson 	error = arc_read(NULL, zilog->zl_spa, bp, arc_getbuf_func, &abuf,
199b24ab676SJeff Bonwick 	    ZIO_PRIORITY_SYNC_READ, zio_flags, &aflags, &zb);
200fa9e4066Sahrens 
201d80c45e0Sbonwick 	if (error == 0) {
202d80c45e0Sbonwick 		zio_cksum_t cksum = bp->blk_cksum;
203fa9e4066Sahrens 
204d80c45e0Sbonwick 		/*
205f5e6e722SNeil Perrin 		 * Validate the checksummed log block.
206f5e6e722SNeil Perrin 		 *
207d80c45e0Sbonwick 		 * Sequence numbers should be... sequential.  The checksum
208d80c45e0Sbonwick 		 * verifier for the next block should be bp's checksum plus 1.
209f5e6e722SNeil Perrin 		 *
210f5e6e722SNeil Perrin 		 * Also check the log chain linkage and size used.
211d80c45e0Sbonwick 		 */
212d80c45e0Sbonwick 		cksum.zc_word[ZIL_ZC_SEQ]++;
213d80c45e0Sbonwick 
2146e1f5caaSNeil Perrin 		if (BP_GET_CHECKSUM(bp) == ZIO_CHECKSUM_ZILOG2) {
2156e1f5caaSNeil Perrin 			zil_chain_t *zilc = abuf->b_data;
2166e1f5caaSNeil Perrin 			char *lr = (char *)(zilc + 1);
2176e1f5caaSNeil Perrin 			uint64_t len = zilc->zc_nused - sizeof (zil_chain_t);
2186e1f5caaSNeil Perrin 
2196e1f5caaSNeil Perrin 			if (bcmp(&cksum, &zilc->zc_next_blk.blk_cksum,
2206e1f5caaSNeil Perrin 			    sizeof (cksum)) || BP_IS_HOLE(&zilc->zc_next_blk)) {
221be6fd75aSMatthew Ahrens 				error = SET_ERROR(ECKSUM);
2226e1f5caaSNeil Perrin 			} else {
2236e1f5caaSNeil Perrin 				bcopy(lr, dst, len);
2246e1f5caaSNeil Perrin 				*end = (char *)dst + len;
2256e1f5caaSNeil Perrin 				*nbp = zilc->zc_next_blk;
2266e1f5caaSNeil Perrin 			}
2276e1f5caaSNeil Perrin 		} else {
2286e1f5caaSNeil Perrin 			char *lr = abuf->b_data;
2296e1f5caaSNeil Perrin 			uint64_t size = BP_GET_LSIZE(bp);
2306e1f5caaSNeil Perrin 			zil_chain_t *zilc = (zil_chain_t *)(lr + size) - 1;
2316e1f5caaSNeil Perrin 
2326e1f5caaSNeil Perrin 			if (bcmp(&cksum, &zilc->zc_next_blk.blk_cksum,
2336e1f5caaSNeil Perrin 			    sizeof (cksum)) || BP_IS_HOLE(&zilc->zc_next_blk) ||
2346e1f5caaSNeil Perrin 			    (zilc->zc_nused > (size - sizeof (*zilc)))) {
235be6fd75aSMatthew Ahrens 				error = SET_ERROR(ECKSUM);
2366e1f5caaSNeil Perrin 			} else {
2376e1f5caaSNeil Perrin 				bcopy(lr, dst, zilc->zc_nused);
2386e1f5caaSNeil Perrin 				*end = (char *)dst + zilc->zc_nused;
2396e1f5caaSNeil Perrin 				*nbp = zilc->zc_next_blk;
2406e1f5caaSNeil Perrin 			}
2416e1f5caaSNeil Perrin 		}
242fa9e4066Sahrens 
2433b2aab18SMatthew Ahrens 		VERIFY(arc_buf_remove_ref(abuf, &abuf));
244fa9e4066Sahrens 	}
245fa9e4066Sahrens 
246b24ab676SJeff Bonwick 	return (error);
247b24ab676SJeff Bonwick }
248b24ab676SJeff Bonwick 
249b24ab676SJeff Bonwick /*
250b24ab676SJeff Bonwick  * Read a TX_WRITE log data block.
251b24ab676SJeff Bonwick  */
252b24ab676SJeff Bonwick static int
253b24ab676SJeff Bonwick zil_read_log_data(zilog_t *zilog, const lr_write_t *lr, void *wbuf)
254b24ab676SJeff Bonwick {
255b24ab676SJeff Bonwick 	enum zio_flag zio_flags = ZIO_FLAG_CANFAIL;
256b24ab676SJeff Bonwick 	const blkptr_t *bp = &lr->lr_blkptr;
257b24ab676SJeff Bonwick 	uint32_t aflags = ARC_WAIT;
258b24ab676SJeff Bonwick 	arc_buf_t *abuf = NULL;
259*7802d7bfSMatthew Ahrens 	zbookmark_phys_t zb;
260b24ab676SJeff Bonwick 	int error;
261b24ab676SJeff Bonwick 
262b24ab676SJeff Bonwick 	if (BP_IS_HOLE(bp)) {
263b24ab676SJeff Bonwick 		if (wbuf != NULL)
264b24ab676SJeff Bonwick 			bzero(wbuf, MAX(BP_GET_LSIZE(bp), lr->lr_length));
265b24ab676SJeff Bonwick 		return (0);
266b24ab676SJeff Bonwick 	}
267b24ab676SJeff Bonwick 
268b24ab676SJeff Bonwick 	if (zilog->zl_header->zh_claim_txg == 0)
269b24ab676SJeff Bonwick 		zio_flags |= ZIO_FLAG_SPECULATIVE | ZIO_FLAG_SCRUB;
270b24ab676SJeff Bonwick 
271b24ab676SJeff Bonwick 	SET_BOOKMARK(&zb, dmu_objset_id(zilog->zl_os), lr->lr_foid,
272b24ab676SJeff Bonwick 	    ZB_ZIL_LEVEL, lr->lr_offset / BP_GET_LSIZE(bp));
273b24ab676SJeff Bonwick 
2741b912ec7SGeorge Wilson 	error = arc_read(NULL, zilog->zl_spa, bp, arc_getbuf_func, &abuf,
275b24ab676SJeff Bonwick 	    ZIO_PRIORITY_SYNC_READ, zio_flags, &aflags, &zb);
276b24ab676SJeff Bonwick 
277b24ab676SJeff Bonwick 	if (error == 0) {
278b24ab676SJeff Bonwick 		if (wbuf != NULL)
279b24ab676SJeff Bonwick 			bcopy(abuf->b_data, wbuf, arc_buf_size(abuf));
280b24ab676SJeff Bonwick 		(void) arc_buf_remove_ref(abuf, &abuf);
281b24ab676SJeff Bonwick 	}
282fa9e4066Sahrens 
283d80c45e0Sbonwick 	return (error);
284fa9e4066Sahrens }
285fa9e4066Sahrens 
286fa9e4066Sahrens /*
287fa9e4066Sahrens  * Parse the intent log, and call parse_func for each valid record within.
288fa9e4066Sahrens  */
289b24ab676SJeff Bonwick int
290fa9e4066Sahrens zil_parse(zilog_t *zilog, zil_parse_blk_func_t *parse_blk_func,
291fa9e4066Sahrens     zil_parse_lr_func_t *parse_lr_func, void *arg, uint64_t txg)
292fa9e4066Sahrens {
293d80c45e0Sbonwick 	const zil_header_t *zh = zilog->zl_header;
294b24ab676SJeff Bonwick 	boolean_t claimed = !!zh->zh_claim_txg;
295b24ab676SJeff Bonwick 	uint64_t claim_blk_seq = claimed ? zh->zh_claim_blk_seq : UINT64_MAX;
296b24ab676SJeff Bonwick 	uint64_t claim_lr_seq = claimed ? zh->zh_claim_lr_seq : UINT64_MAX;
297b24ab676SJeff Bonwick 	uint64_t max_blk_seq = 0;
298b24ab676SJeff Bonwick 	uint64_t max_lr_seq = 0;
299b24ab676SJeff Bonwick 	uint64_t blk_count = 0;
300b24ab676SJeff Bonwick 	uint64_t lr_count = 0;
301b24ab676SJeff Bonwick 	blkptr_t blk, next_blk;
302fa9e4066Sahrens 	char *lrbuf, *lrp;
303b24ab676SJeff Bonwick 	int error = 0;
304fa9e4066Sahrens 
305b24ab676SJeff Bonwick 	/*
306b24ab676SJeff Bonwick 	 * Old logs didn't record the maximum zh_claim_lr_seq.
307b24ab676SJeff Bonwick 	 */
308b24ab676SJeff Bonwick 	if (!(zh->zh_flags & ZIL_CLAIM_LR_SEQ_VALID))
309b24ab676SJeff Bonwick 		claim_lr_seq = UINT64_MAX;
310fa9e4066Sahrens 
311fa9e4066Sahrens 	/*
312fa9e4066Sahrens 	 * Starting at the block pointed to by zh_log we read the log chain.
313fa9e4066Sahrens 	 * For each block in the chain we strongly check that block to
314fa9e4066Sahrens 	 * ensure its validity.  We stop when an invalid block is found.
315fa9e4066Sahrens 	 * For each block pointer in the chain we call parse_blk_func().
316fa9e4066Sahrens 	 * For each record in each valid block we call parse_lr_func().
317d80c45e0Sbonwick 	 * If the log has been claimed, stop if we encounter a sequence
318d80c45e0Sbonwick 	 * number greater than the highest claimed sequence number.
319fa9e4066Sahrens 	 */
320b24ab676SJeff Bonwick 	lrbuf = zio_buf_alloc(SPA_MAXBLOCKSIZE);
321b24ab676SJeff Bonwick 	zil_bp_tree_init(zilog);
322d80c45e0Sbonwick 
323b24ab676SJeff Bonwick 	for (blk = zh->zh_log; !BP_IS_HOLE(&blk); blk = next_blk) {
324b24ab676SJeff Bonwick 		uint64_t blk_seq = blk.blk_cksum.zc_word[ZIL_ZC_SEQ];
325b24ab676SJeff Bonwick 		int reclen;
3266e1f5caaSNeil Perrin 		char *end;
327d80c45e0Sbonwick 
328b24ab676SJeff Bonwick 		if (blk_seq > claim_blk_seq)
329b24ab676SJeff Bonwick 			break;
330b24ab676SJeff Bonwick 		if ((error = parse_blk_func(zilog, &blk, arg, txg)) != 0)
331b24ab676SJeff Bonwick 			break;
3326e1f5caaSNeil Perrin 		ASSERT3U(max_blk_seq, <, blk_seq);
333b24ab676SJeff Bonwick 		max_blk_seq = blk_seq;
334b24ab676SJeff Bonwick 		blk_count++;
335fa9e4066Sahrens 
336b24ab676SJeff Bonwick 		if (max_lr_seq == claim_lr_seq && max_blk_seq == claim_blk_seq)
337b24ab676SJeff Bonwick 			break;
338fa9e4066Sahrens 
3396e1f5caaSNeil Perrin 		error = zil_read_log_block(zilog, &blk, &next_blk, lrbuf, &end);
3403b2aab18SMatthew Ahrens 		if (error != 0)
341fa9e4066Sahrens 			break;
342fa9e4066Sahrens 
3436e1f5caaSNeil Perrin 		for (lrp = lrbuf; lrp < end; lrp += reclen) {
344fa9e4066Sahrens 			lr_t *lr = (lr_t *)lrp;
345fa9e4066Sahrens 			reclen = lr->lrc_reclen;
346fa9e4066Sahrens 			ASSERT3U(reclen, >=, sizeof (lr_t));
347b24ab676SJeff Bonwick 			if (lr->lrc_seq > claim_lr_seq)
348b24ab676SJeff Bonwick 				goto done;
349b24ab676SJeff Bonwick 			if ((error = parse_lr_func(zilog, lr, arg, txg)) != 0)
350b24ab676SJeff Bonwick 				goto done;
3516e1f5caaSNeil Perrin 			ASSERT3U(max_lr_seq, <, lr->lrc_seq);
352b24ab676SJeff Bonwick 			max_lr_seq = lr->lrc_seq;
353b24ab676SJeff Bonwick 			lr_count++;
354fa9e4066Sahrens 		}
355fa9e4066Sahrens 	}
356b24ab676SJeff Bonwick done:
357b24ab676SJeff Bonwick 	zilog->zl_parse_error = error;
358b24ab676SJeff Bonwick 	zilog->zl_parse_blk_seq = max_blk_seq;
359b24ab676SJeff Bonwick 	zilog->zl_parse_lr_seq = max_lr_seq;
360b24ab676SJeff Bonwick 	zilog->zl_parse_blk_count = blk_count;
361b24ab676SJeff Bonwick 	zilog->zl_parse_lr_count = lr_count;
362b24ab676SJeff Bonwick 
363b24ab676SJeff Bonwick 	ASSERT(!claimed || !(zh->zh_flags & ZIL_CLAIM_LR_SEQ_VALID) ||
364b24ab676SJeff Bonwick 	    (max_blk_seq == claim_blk_seq && max_lr_seq == claim_lr_seq));
365d80c45e0Sbonwick 
366b24ab676SJeff Bonwick 	zil_bp_tree_fini(zilog);
367b24ab676SJeff Bonwick 	zio_buf_free(lrbuf, SPA_MAXBLOCKSIZE);
368b24ab676SJeff Bonwick 
369b24ab676SJeff Bonwick 	return (error);
370fa9e4066Sahrens }
371fa9e4066Sahrens 
372b24ab676SJeff Bonwick static int
373fa9e4066Sahrens zil_claim_log_block(zilog_t *zilog, blkptr_t *bp, void *tx, uint64_t first_txg)
374fa9e4066Sahrens {
375fa9e4066Sahrens 	/*
376fa9e4066Sahrens 	 * Claim log block if not already committed and not already claimed.
377b24ab676SJeff Bonwick 	 * If tx == NULL, just verify that the block is claimable.
378fa9e4066Sahrens 	 */
37943466aaeSMax Grossman 	if (BP_IS_HOLE(bp) || bp->blk_birth < first_txg ||
38043466aaeSMax Grossman 	    zil_bp_tree_add(zilog, bp) != 0)
381b24ab676SJeff Bonwick 		return (0);
382b24ab676SJeff Bonwick 
383b24ab676SJeff Bonwick 	return (zio_wait(zio_claim(NULL, zilog->zl_spa,
384b24ab676SJeff Bonwick 	    tx == NULL ? 0 : first_txg, bp, spa_claim_notify, NULL,
385b24ab676SJeff Bonwick 	    ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE | ZIO_FLAG_SCRUB)));
386fa9e4066Sahrens }
387fa9e4066Sahrens 
388b24ab676SJeff Bonwick static int
389fa9e4066Sahrens zil_claim_log_record(zilog_t *zilog, lr_t *lrc, void *tx, uint64_t first_txg)
390fa9e4066Sahrens {
391b24ab676SJeff Bonwick 	lr_write_t *lr = (lr_write_t *)lrc;
392b24ab676SJeff Bonwick 	int error;
393b24ab676SJeff Bonwick 
394b24ab676SJeff Bonwick 	if (lrc->lrc_txtype != TX_WRITE)
395b24ab676SJeff Bonwick 		return (0);
396b24ab676SJeff Bonwick 
397b24ab676SJeff Bonwick 	/*
398b24ab676SJeff Bonwick 	 * If the block is not readable, don't claim it.  This can happen
399b24ab676SJeff Bonwick 	 * in normal operation when a log block is written to disk before
400b24ab676SJeff Bonwick 	 * some of the dmu_sync() blocks it points to.  In this case, the
401b24ab676SJeff Bonwick 	 * transaction cannot have been committed to anyone (we would have
402b24ab676SJeff Bonwick 	 * waited for all writes to be stable first), so it is semantically
403b24ab676SJeff Bonwick 	 * correct to declare this the end of the log.
404b24ab676SJeff Bonwick 	 */
405b24ab676SJeff Bonwick 	if (lr->lr_blkptr.blk_birth >= first_txg &&
406b24ab676SJeff Bonwick 	    (error = zil_read_log_data(zilog, lr, NULL)) != 0)
407b24ab676SJeff Bonwick 		return (error);
408b24ab676SJeff Bonwick 	return (zil_claim_log_block(zilog, &lr->lr_blkptr, tx, first_txg));
409fa9e4066Sahrens }
410fa9e4066Sahrens 
411fa9e4066Sahrens /* ARGSUSED */
412b24ab676SJeff Bonwick static int
413fa9e4066Sahrens zil_free_log_block(zilog_t *zilog, blkptr_t *bp, void *tx, uint64_t claim_txg)
414fa9e4066Sahrens {
415b24ab676SJeff Bonwick 	zio_free_zil(zilog->zl_spa, dmu_tx_get_txg(tx), bp);
416b24ab676SJeff Bonwick 
417b24ab676SJeff Bonwick 	return (0);
418fa9e4066Sahrens }
419fa9e4066Sahrens 
420b24ab676SJeff Bonwick static int
421fa9e4066Sahrens zil_free_log_record(zilog_t *zilog, lr_t *lrc, void *tx, uint64_t claim_txg)
422fa9e4066Sahrens {
423b24ab676SJeff Bonwick 	lr_write_t *lr = (lr_write_t *)lrc;
424b24ab676SJeff Bonwick 	blkptr_t *bp = &lr->lr_blkptr;
425b24ab676SJeff Bonwick 
426fa9e4066Sahrens 	/*
427fa9e4066Sahrens 	 * If we previously claimed it, we need to free it.
428fa9e4066Sahrens 	 */
429b24ab676SJeff Bonwick 	if (claim_txg != 0 && lrc->lrc_txtype == TX_WRITE &&
43043466aaeSMax Grossman 	    bp->blk_birth >= claim_txg && zil_bp_tree_add(zilog, bp) == 0 &&
43143466aaeSMax Grossman 	    !BP_IS_HOLE(bp))
432b24ab676SJeff Bonwick 		zio_free(zilog->zl_spa, dmu_tx_get_txg(tx), bp);
433b24ab676SJeff Bonwick 
434b24ab676SJeff Bonwick 	return (0);
435fa9e4066Sahrens }
436fa9e4066Sahrens 
4376e1f5caaSNeil Perrin static lwb_t *
4386e1f5caaSNeil Perrin zil_alloc_lwb(zilog_t *zilog, blkptr_t *bp, uint64_t txg)
4396e1f5caaSNeil Perrin {
4406e1f5caaSNeil Perrin 	lwb_t *lwb;
4416e1f5caaSNeil Perrin 
4426e1f5caaSNeil Perrin 	lwb = kmem_cache_alloc(zil_lwb_cache, KM_SLEEP);
4436e1f5caaSNeil Perrin 	lwb->lwb_zilog = zilog;
4446e1f5caaSNeil Perrin 	lwb->lwb_blk = *bp;
4456e1f5caaSNeil Perrin 	lwb->lwb_buf = zio_buf_alloc(BP_GET_LSIZE(bp));
4466e1f5caaSNeil Perrin 	lwb->lwb_max_txg = txg;
4476e1f5caaSNeil Perrin 	lwb->lwb_zio = NULL;
4486e1f5caaSNeil Perrin 	lwb->lwb_tx = NULL;
4496e1f5caaSNeil Perrin 	if (BP_GET_CHECKSUM(bp) == ZIO_CHECKSUM_ZILOG2) {
4506e1f5caaSNeil Perrin 		lwb->lwb_nused = sizeof (zil_chain_t);
4516e1f5caaSNeil Perrin 		lwb->lwb_sz = BP_GET_LSIZE(bp);
4526e1f5caaSNeil Perrin 	} else {
4536e1f5caaSNeil Perrin 		lwb->lwb_nused = 0;
4546e1f5caaSNeil Perrin 		lwb->lwb_sz = BP_GET_LSIZE(bp) - sizeof (zil_chain_t);
4556e1f5caaSNeil Perrin 	}
4566e1f5caaSNeil Perrin 
4576e1f5caaSNeil Perrin 	mutex_enter(&zilog->zl_lock);
4586e1f5caaSNeil Perrin 	list_insert_tail(&zilog->zl_lwb_list, lwb);
4596e1f5caaSNeil Perrin 	mutex_exit(&zilog->zl_lock);
4606e1f5caaSNeil Perrin 
4616e1f5caaSNeil Perrin 	return (lwb);
4626e1f5caaSNeil Perrin }
4636e1f5caaSNeil Perrin 
464ce636f8bSMatthew Ahrens /*
465ce636f8bSMatthew Ahrens  * Called when we create in-memory log transactions so that we know
466ce636f8bSMatthew Ahrens  * to cleanup the itxs at the end of spa_sync().
467ce636f8bSMatthew Ahrens  */
468ce636f8bSMatthew Ahrens void
469ce636f8bSMatthew Ahrens zilog_dirty(zilog_t *zilog, uint64_t txg)
470ce636f8bSMatthew Ahrens {
471ce636f8bSMatthew Ahrens 	dsl_pool_t *dp = zilog->zl_dmu_pool;
472ce636f8bSMatthew Ahrens 	dsl_dataset_t *ds = dmu_objset_ds(zilog->zl_os);
473ce636f8bSMatthew Ahrens 
474ce636f8bSMatthew Ahrens 	if (dsl_dataset_is_snapshot(ds))
475ce636f8bSMatthew Ahrens 		panic("dirtying snapshot!");
476ce636f8bSMatthew Ahrens 
4773b2aab18SMatthew Ahrens 	if (txg_list_add(&dp->dp_dirty_zilogs, zilog, txg)) {
478ce636f8bSMatthew Ahrens 		/* up the hold count until we can be written out */
479ce636f8bSMatthew Ahrens 		dmu_buf_add_ref(ds->ds_dbuf, zilog);
480ce636f8bSMatthew Ahrens 	}
481ce636f8bSMatthew Ahrens }
482ce636f8bSMatthew Ahrens 
483ce636f8bSMatthew Ahrens boolean_t
484ce636f8bSMatthew Ahrens zilog_is_dirty(zilog_t *zilog)
485ce636f8bSMatthew Ahrens {
486ce636f8bSMatthew Ahrens 	dsl_pool_t *dp = zilog->zl_dmu_pool;
487ce636f8bSMatthew Ahrens 
488ce636f8bSMatthew Ahrens 	for (int t = 0; t < TXG_SIZE; t++) {
489ce636f8bSMatthew Ahrens 		if (txg_list_member(&dp->dp_dirty_zilogs, zilog, t))
490ce636f8bSMatthew Ahrens 			return (B_TRUE);
491ce636f8bSMatthew Ahrens 	}
492ce636f8bSMatthew Ahrens 	return (B_FALSE);
493ce636f8bSMatthew Ahrens }
494ce636f8bSMatthew Ahrens 
495fa9e4066Sahrens /*
496fa9e4066Sahrens  * Create an on-disk intent log.
497fa9e4066Sahrens  */
4986e1f5caaSNeil Perrin static lwb_t *
499fa9e4066Sahrens zil_create(zilog_t *zilog)
500fa9e4066Sahrens {
501d80c45e0Sbonwick 	const zil_header_t *zh = zilog->zl_header;
5026e1f5caaSNeil Perrin 	lwb_t *lwb = NULL;
503d80c45e0Sbonwick 	uint64_t txg = 0;
504d80c45e0Sbonwick 	dmu_tx_t *tx = NULL;
505fa9e4066Sahrens 	blkptr_t blk;
506d80c45e0Sbonwick 	int error = 0;
507fa9e4066Sahrens 
508fa9e4066Sahrens 	/*
509d80c45e0Sbonwick 	 * Wait for any previous destroy to complete.
510fa9e4066Sahrens 	 */
511d80c45e0Sbonwick 	txg_wait_synced(zilog->zl_dmu_pool, zilog->zl_destroy_txg);
512d80c45e0Sbonwick 
513d80c45e0Sbonwick 	ASSERT(zh->zh_claim_txg == 0);
514d80c45e0Sbonwick 	ASSERT(zh->zh_replay_seq == 0);
515d80c45e0Sbonwick 
516d80c45e0Sbonwick 	blk = zh->zh_log;
517fa9e4066Sahrens 
518fa9e4066Sahrens 	/*
5196e1f5caaSNeil Perrin 	 * Allocate an initial log block if:
5206e1f5caaSNeil Perrin 	 *    - there isn't one already
5216e1f5caaSNeil Perrin 	 *    - the existing block is the wrong endianess
522fa9e4066Sahrens 	 */
523899217ddSNeil Perrin 	if (BP_IS_HOLE(&blk) || BP_SHOULD_BYTESWAP(&blk)) {
524d80c45e0Sbonwick 		tx = dmu_tx_create(zilog->zl_os);
525b24ab676SJeff Bonwick 		VERIFY(dmu_tx_assign(tx, TXG_WAIT) == 0);
526d80c45e0Sbonwick 		dsl_dataset_dirty(dmu_objset_ds(zilog->zl_os), tx);
527d80c45e0Sbonwick 		txg = dmu_tx_get_txg(tx);
528d80c45e0Sbonwick 
529899217ddSNeil Perrin 		if (!BP_IS_HOLE(&blk)) {
530b24ab676SJeff Bonwick 			zio_free_zil(zilog->zl_spa, txg, &blk);
531899217ddSNeil Perrin 			BP_ZERO(&blk);
532899217ddSNeil Perrin 		}
533899217ddSNeil Perrin 
534b24ab676SJeff Bonwick 		error = zio_alloc_zil(zilog->zl_spa, txg, &blk, NULL,
535b24ab676SJeff Bonwick 		    ZIL_MIN_BLKSZ, zilog->zl_logbias == ZFS_LOGBIAS_LATENCY);
536d80c45e0Sbonwick 
537d80c45e0Sbonwick 		if (error == 0)
538d80c45e0Sbonwick 			zil_init_log_chain(zilog, &blk);
53913f5297eSperrin 	}
540fa9e4066Sahrens 
541d80c45e0Sbonwick 	/*
542d80c45e0Sbonwick 	 * Allocate a log write buffer (lwb) for the first log block.
543d80c45e0Sbonwick 	 */
5446e1f5caaSNeil Perrin 	if (error == 0)
5456e1f5caaSNeil Perrin 		lwb = zil_alloc_lwb(zilog, &blk, txg);
546fa9e4066Sahrens 
547d80c45e0Sbonwick 	/*
548d80c45e0Sbonwick 	 * If we just allocated the first log block, commit our transaction
549d80c45e0Sbonwick 	 * and wait for zil_sync() to stuff the block poiner into zh_log.
550d80c45e0Sbonwick 	 * (zh is part of the MOS, so we cannot modify it in open context.)
551d80c45e0Sbonwick 	 */
552d80c45e0Sbonwick 	if (tx != NULL) {
553d80c45e0Sbonwick 		dmu_tx_commit(tx);
55413f5297eSperrin 		txg_wait_synced(zilog->zl_dmu_pool, txg);
555d80c45e0Sbonwick 	}
556d80c45e0Sbonwick 
557d80c45e0Sbonwick 	ASSERT(bcmp(&blk, &zh->zh_log, sizeof (blk)) == 0);
5586e1f5caaSNeil Perrin 
5596e1f5caaSNeil Perrin 	return (lwb);
560fa9e4066Sahrens }
561fa9e4066Sahrens 
562fa9e4066Sahrens /*
563fa9e4066Sahrens  * In one tx, free all log blocks and clear the log header.
564d80c45e0Sbonwick  * If keep_first is set, then we're replaying a log with no content.
565d80c45e0Sbonwick  * We want to keep the first block, however, so that the first
566d80c45e0Sbonwick  * synchronous transaction doesn't require a txg_wait_synced()
567d80c45e0Sbonwick  * in zil_create().  We don't need to txg_wait_synced() here either
568d80c45e0Sbonwick  * when keep_first is set, because both zil_create() and zil_destroy()
569d80c45e0Sbonwick  * will wait for any in-progress destroys to complete.
570fa9e4066Sahrens  */
571fa9e4066Sahrens void
572d80c45e0Sbonwick zil_destroy(zilog_t *zilog, boolean_t keep_first)
573fa9e4066Sahrens {
574d80c45e0Sbonwick 	const zil_header_t *zh = zilog->zl_header;
575d80c45e0Sbonwick 	lwb_t *lwb;
576fa9e4066Sahrens 	dmu_tx_t *tx;
577fa9e4066Sahrens 	uint64_t txg;
578fa9e4066Sahrens 
579d80c45e0Sbonwick 	/*
580d80c45e0Sbonwick 	 * Wait for any previous destroy to complete.
581d80c45e0Sbonwick 	 */
582d80c45e0Sbonwick 	txg_wait_synced(zilog->zl_dmu_pool, zilog->zl_destroy_txg);
583fa9e4066Sahrens 
584b24ab676SJeff Bonwick 	zilog->zl_old_header = *zh;		/* debugging aid */
585b24ab676SJeff Bonwick 
586d80c45e0Sbonwick 	if (BP_IS_HOLE(&zh->zh_log))
587fa9e4066Sahrens 		return;
588fa9e4066Sahrens 
589fa9e4066Sahrens 	tx = dmu_tx_create(zilog->zl_os);
590b24ab676SJeff Bonwick 	VERIFY(dmu_tx_assign(tx, TXG_WAIT) == 0);
591fa9e4066Sahrens 	dsl_dataset_dirty(dmu_objset_ds(zilog->zl_os), tx);
592fa9e4066Sahrens 	txg = dmu_tx_get_txg(tx);
593fa9e4066Sahrens 
594d80c45e0Sbonwick 	mutex_enter(&zilog->zl_lock);
595d80c45e0Sbonwick 
596d80c45e0Sbonwick 	ASSERT3U(zilog->zl_destroy_txg, <, txg);
597fa9e4066Sahrens 	zilog->zl_destroy_txg = txg;
598b24ab676SJeff Bonwick 	zilog->zl_keep_first = keep_first;
599d80c45e0Sbonwick 
600d80c45e0Sbonwick 	if (!list_is_empty(&zilog->zl_lwb_list)) {
601d80c45e0Sbonwick 		ASSERT(zh->zh_claim_txg == 0);
602c9ba2a43SEric Schrock 		VERIFY(!keep_first);
603d80c45e0Sbonwick 		while ((lwb = list_head(&zilog->zl_lwb_list)) != NULL) {
604d80c45e0Sbonwick 			list_remove(&zilog->zl_lwb_list, lwb);
605d80c45e0Sbonwick 			if (lwb->lwb_buf != NULL)
606d80c45e0Sbonwick 				zio_buf_free(lwb->lwb_buf, lwb->lwb_sz);
607b24ab676SJeff Bonwick 			zio_free_zil(zilog->zl_spa, txg, &lwb->lwb_blk);
608d80c45e0Sbonwick 			kmem_cache_free(zil_lwb_cache, lwb);
609d80c45e0Sbonwick 		}
610b24ab676SJeff Bonwick 	} else if (!keep_first) {
611ce636f8bSMatthew Ahrens 		zil_destroy_sync(zilog, tx);
612d80c45e0Sbonwick 	}
613b19a79ecSperrin 	mutex_exit(&zilog->zl_lock);
614fa9e4066Sahrens 
615fa9e4066Sahrens 	dmu_tx_commit(tx);
616fa9e4066Sahrens }
617fa9e4066Sahrens 
618ce636f8bSMatthew Ahrens void
619ce636f8bSMatthew Ahrens zil_destroy_sync(zilog_t *zilog, dmu_tx_t *tx)
620ce636f8bSMatthew Ahrens {
621ce636f8bSMatthew Ahrens 	ASSERT(list_is_empty(&zilog->zl_lwb_list));
622ce636f8bSMatthew Ahrens 	(void) zil_parse(zilog, zil_free_log_block,
623ce636f8bSMatthew Ahrens 	    zil_free_log_record, tx, zilog->zl_header->zh_claim_txg);
624ce636f8bSMatthew Ahrens }
625ce636f8bSMatthew Ahrens 
6261d452cf5Sahrens int
627fd136879SMatthew Ahrens zil_claim(const char *osname, void *txarg)
628fa9e4066Sahrens {
629fa9e4066Sahrens 	dmu_tx_t *tx = txarg;
630fa9e4066Sahrens 	uint64_t first_txg = dmu_tx_get_txg(tx);
631fa9e4066Sahrens 	zilog_t *zilog;
632fa9e4066Sahrens 	zil_header_t *zh;
633fa9e4066Sahrens 	objset_t *os;
634fa9e4066Sahrens 	int error;
635fa9e4066Sahrens 
6363b2aab18SMatthew Ahrens 	error = dmu_objset_own(osname, DMU_OST_ANY, B_FALSE, FTAG, &os);
6373b2aab18SMatthew Ahrens 	if (error != 0) {
638b87f3af3Sperrin 		cmn_err(CE_WARN, "can't open objset for %s", osname);
6391d452cf5Sahrens 		return (0);
640fa9e4066Sahrens 	}
641fa9e4066Sahrens 
642fa9e4066Sahrens 	zilog = dmu_objset_zil(os);
643d80c45e0Sbonwick 	zh = zil_header_in_syncing_context(zilog);
644fa9e4066Sahrens 
645b24ab676SJeff Bonwick 	if (spa_get_log_state(zilog->zl_spa) == SPA_LOG_CLEAR) {
646e6ca193dSGeorge Wilson 		if (!BP_IS_HOLE(&zh->zh_log))
647b24ab676SJeff Bonwick 			zio_free_zil(zilog->zl_spa, first_txg, &zh->zh_log);
648e6ca193dSGeorge Wilson 		BP_ZERO(&zh->zh_log);
649e6ca193dSGeorge Wilson 		dsl_dataset_dirty(dmu_objset_ds(os), tx);
6503b2aab18SMatthew Ahrens 		dmu_objset_disown(os, FTAG);
651468c413aSTim Haley 		return (0);
652e6ca193dSGeorge Wilson 	}
653e6ca193dSGeorge Wilson 
654fa9e4066Sahrens 	/*
655d80c45e0Sbonwick 	 * Claim all log blocks if we haven't already done so, and remember
656d80c45e0Sbonwick 	 * the highest claimed sequence number.  This ensures that if we can
657d80c45e0Sbonwick 	 * read only part of the log now (e.g. due to a missing device),
658d80c45e0Sbonwick 	 * but we can read the entire log later, we will not try to replay
659d80c45e0Sbonwick 	 * or destroy beyond the last block we successfully claimed.
660fa9e4066Sahrens 	 */
661fa9e4066Sahrens 	ASSERT3U(zh->zh_claim_txg, <=, first_txg);
662fa9e4066Sahrens 	if (zh->zh_claim_txg == 0 && !BP_IS_HOLE(&zh->zh_log)) {
663b24ab676SJeff Bonwick 		(void) zil_parse(zilog, zil_claim_log_block,
664d80c45e0Sbonwick 		    zil_claim_log_record, tx, first_txg);
665b24ab676SJeff Bonwick 		zh->zh_claim_txg = first_txg;
666b24ab676SJeff Bonwick 		zh->zh_claim_blk_seq = zilog->zl_parse_blk_seq;
667b24ab676SJeff Bonwick 		zh->zh_claim_lr_seq = zilog->zl_parse_lr_seq;
668b24ab676SJeff Bonwick 		if (zilog->zl_parse_lr_count || zilog->zl_parse_blk_count > 1)
669b24ab676SJeff Bonwick 			zh->zh_flags |= ZIL_REPLAY_NEEDED;
670b24ab676SJeff Bonwick 		zh->zh_flags |= ZIL_CLAIM_LR_SEQ_VALID;
671fa9e4066Sahrens 		dsl_dataset_dirty(dmu_objset_ds(os), tx);
672fa9e4066Sahrens 	}
673d80c45e0Sbonwick 
674fa9e4066Sahrens 	ASSERT3U(first_txg, ==, (spa_last_synced_txg(zilog->zl_spa) + 1));
6753b2aab18SMatthew Ahrens 	dmu_objset_disown(os, FTAG);
6761d452cf5Sahrens 	return (0);
677b87f3af3Sperrin }
678b87f3af3Sperrin 
679b87f3af3Sperrin /*
680b87f3af3Sperrin  * Check the log by walking the log chain.
681b87f3af3Sperrin  * Checksum errors are ok as they indicate the end of the chain.
682b87f3af3Sperrin  * Any other error (no device or read failure) returns an error.
683b87f3af3Sperrin  */
684b87f3af3Sperrin int
685fd136879SMatthew Ahrens zil_check_log_chain(const char *osname, void *tx)
686b87f3af3Sperrin {
687b87f3af3Sperrin 	zilog_t *zilog;
688b87f3af3Sperrin 	objset_t *os;
6894b964adaSGeorge Wilson 	blkptr_t *bp;
690b87f3af3Sperrin 	int error;
691b87f3af3Sperrin 
692b24ab676SJeff Bonwick 	ASSERT(tx == NULL);
693b24ab676SJeff Bonwick 
694503ad85cSMatthew Ahrens 	error = dmu_objset_hold(osname, FTAG, &os);
6953b2aab18SMatthew Ahrens 	if (error != 0) {
696b87f3af3Sperrin 		cmn_err(CE_WARN, "can't open objset for %s", osname);
697b87f3af3Sperrin 		return (0);
698b87f3af3Sperrin 	}
699b87f3af3Sperrin 
700b87f3af3Sperrin 	zilog = dmu_objset_zil(os);
7014b964adaSGeorge Wilson 	bp = (blkptr_t *)&zilog->zl_header->zh_log;
7024b964adaSGeorge Wilson 
7034b964adaSGeorge Wilson 	/*
7044b964adaSGeorge Wilson 	 * Check the first block and determine if it's on a log device
7054b964adaSGeorge Wilson 	 * which may have been removed or faulted prior to loading this
7064b964adaSGeorge Wilson 	 * pool.  If so, there's no point in checking the rest of the log
7074b964adaSGeorge Wilson 	 * as its content should have already been synced to the pool.
7084b964adaSGeorge Wilson 	 */
7094b964adaSGeorge Wilson 	if (!BP_IS_HOLE(bp)) {
7104b964adaSGeorge Wilson 		vdev_t *vd;
7114b964adaSGeorge Wilson 		boolean_t valid = B_TRUE;
7124b964adaSGeorge Wilson 
7134b964adaSGeorge Wilson 		spa_config_enter(os->os_spa, SCL_STATE, FTAG, RW_READER);
7144b964adaSGeorge Wilson 		vd = vdev_lookup_top(os->os_spa, DVA_GET_VDEV(&bp->blk_dva[0]));
7154b964adaSGeorge Wilson 		if (vd->vdev_islog && vdev_is_dead(vd))
7164b964adaSGeorge Wilson 			valid = vdev_log_state_valid(vd);
7174b964adaSGeorge Wilson 		spa_config_exit(os->os_spa, SCL_STATE, FTAG);
7184b964adaSGeorge Wilson 
7194b964adaSGeorge Wilson 		if (!valid) {
7204b964adaSGeorge Wilson 			dmu_objset_rele(os, FTAG);
7214b964adaSGeorge Wilson 			return (0);
7224b964adaSGeorge Wilson 		}
7234b964adaSGeorge Wilson 	}
724b87f3af3Sperrin 
725b24ab676SJeff Bonwick 	/*
726b24ab676SJeff Bonwick 	 * Because tx == NULL, zil_claim_log_block() will not actually claim
727b24ab676SJeff Bonwick 	 * any blocks, but just determine whether it is possible to do so.
728b24ab676SJeff Bonwick 	 * In addition to checking the log chain, zil_claim_log_block()
729b24ab676SJeff Bonwick 	 * will invoke zio_claim() with a done func of spa_claim_notify(),
730b24ab676SJeff Bonwick 	 * which will update spa_max_claim_txg.  See spa_load() for details.
731b24ab676SJeff Bonwick 	 */
732b24ab676SJeff Bonwick 	error = zil_parse(zilog, zil_claim_log_block, zil_claim_log_record, tx,
733b24ab676SJeff Bonwick 	    zilog->zl_header->zh_claim_txg ? -1ULL : spa_first_txg(os->os_spa));
734b24ab676SJeff Bonwick 
735503ad85cSMatthew Ahrens 	dmu_objset_rele(os, FTAG);
736b24ab676SJeff Bonwick 
737b24ab676SJeff Bonwick 	return ((error == ECKSUM || error == ENOENT) ? 0 : error);
738b87f3af3Sperrin }
739b87f3af3Sperrin 
74017f17c2dSbonwick static int
74117f17c2dSbonwick zil_vdev_compare(const void *x1, const void *x2)
74217f17c2dSbonwick {
7435002558fSNeil Perrin 	const uint64_t v1 = ((zil_vdev_node_t *)x1)->zv_vdev;
7445002558fSNeil Perrin 	const uint64_t v2 = ((zil_vdev_node_t *)x2)->zv_vdev;
74517f17c2dSbonwick 
74617f17c2dSbonwick 	if (v1 < v2)
74717f17c2dSbonwick 		return (-1);
74817f17c2dSbonwick 	if (v1 > v2)
74917f17c2dSbonwick 		return (1);
75017f17c2dSbonwick 
75117f17c2dSbonwick 	return (0);
75217f17c2dSbonwick }
75317f17c2dSbonwick 
754fa9e4066Sahrens void
755b24ab676SJeff Bonwick zil_add_block(zilog_t *zilog, const blkptr_t *bp)
756fa9e4066Sahrens {
75717f17c2dSbonwick 	avl_tree_t *t = &zilog->zl_vdev_tree;
75817f17c2dSbonwick 	avl_index_t where;
75917f17c2dSbonwick 	zil_vdev_node_t *zv, zvsearch;
76017f17c2dSbonwick 	int ndvas = BP_GET_NDVAS(bp);
76117f17c2dSbonwick 	int i;
762fa9e4066Sahrens 
763416e0cd8Sek 	if (zfs_nocacheflush)
764fa9e4066Sahrens 		return;
765fa9e4066Sahrens 
76617f17c2dSbonwick 	ASSERT(zilog->zl_writer);
76717f17c2dSbonwick 
76817f17c2dSbonwick 	/*
76917f17c2dSbonwick 	 * Even though we're zl_writer, we still need a lock because the
77017f17c2dSbonwick 	 * zl_get_data() callbacks may have dmu_sync() done callbacks
77117f17c2dSbonwick 	 * that will run concurrently.
77217f17c2dSbonwick 	 */
77317f17c2dSbonwick 	mutex_enter(&zilog->zl_vdev_lock);
77417f17c2dSbonwick 	for (i = 0; i < ndvas; i++) {
77517f17c2dSbonwick 		zvsearch.zv_vdev = DVA_GET_VDEV(&bp->blk_dva[i]);
77617f17c2dSbonwick 		if (avl_find(t, &zvsearch, &where) == NULL) {
77717f17c2dSbonwick 			zv = kmem_alloc(sizeof (*zv), KM_SLEEP);
77817f17c2dSbonwick 			zv->zv_vdev = zvsearch.zv_vdev;
77917f17c2dSbonwick 			avl_insert(t, zv, where);
78067bd71c6Sperrin 		}
78167bd71c6Sperrin 	}
78217f17c2dSbonwick 	mutex_exit(&zilog->zl_vdev_lock);
783fa9e4066Sahrens }
784fa9e4066Sahrens 
78591de656bSNeil Perrin static void
78667bd71c6Sperrin zil_flush_vdevs(zilog_t *zilog)
78767bd71c6Sperrin {
78867bd71c6Sperrin 	spa_t *spa = zilog->zl_spa;
78917f17c2dSbonwick 	avl_tree_t *t = &zilog->zl_vdev_tree;
79017f17c2dSbonwick 	void *cookie = NULL;
79117f17c2dSbonwick 	zil_vdev_node_t *zv;
79217f17c2dSbonwick 	zio_t *zio;
793fa9e4066Sahrens 
79467bd71c6Sperrin 	ASSERT(zilog->zl_writer);
79567bd71c6Sperrin 
79617f17c2dSbonwick 	/*
79717f17c2dSbonwick 	 * We don't need zl_vdev_lock here because we're the zl_writer,
79817f17c2dSbonwick 	 * and all zl_get_data() callbacks are done.
79917f17c2dSbonwick 	 */
80017f17c2dSbonwick 	if (avl_numnodes(t) == 0)
80117f17c2dSbonwick 		return;
80217f17c2dSbonwick 
803e14bb325SJeff Bonwick 	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
80417f17c2dSbonwick 
805e14bb325SJeff Bonwick 	zio = zio_root(spa, NULL, NULL, ZIO_FLAG_CANFAIL);
806fa9e4066Sahrens 
80717f17c2dSbonwick 	while ((zv = avl_destroy_nodes(t, &cookie)) != NULL) {
80817f17c2dSbonwick 		vdev_t *vd = vdev_lookup_top(spa, zv->zv_vdev);
80917f17c2dSbonwick 		if (vd != NULL)
81017f17c2dSbonwick 			zio_flush(zio, vd);
81117f17c2dSbonwick 		kmem_free(zv, sizeof (*zv));
81267bd71c6Sperrin 	}
81317f17c2dSbonwick 
814fa9e4066Sahrens 	/*
815fa9e4066Sahrens 	 * Wait for all the flushes to complete.  Not all devices actually
816fa9e4066Sahrens 	 * support the DKIOCFLUSHWRITECACHE ioctl, so it's OK if it fails.
817fa9e4066Sahrens 	 */
81817f17c2dSbonwick 	(void) zio_wait(zio);
81917f17c2dSbonwick 
820e14bb325SJeff Bonwick 	spa_config_exit(spa, SCL_STATE, FTAG);
821fa9e4066Sahrens }
822fa9e4066Sahrens 
823fa9e4066Sahrens /*
824fa9e4066Sahrens  * Function called when a log block write completes
825fa9e4066Sahrens  */
826fa9e4066Sahrens static void
827fa9e4066Sahrens zil_lwb_write_done(zio_t *zio)
828fa9e4066Sahrens {
829fa9e4066Sahrens 	lwb_t *lwb = zio->io_private;
830fa9e4066Sahrens 	zilog_t *zilog = lwb->lwb_zilog;
831b24ab676SJeff Bonwick 	dmu_tx_t *tx = lwb->lwb_tx;
832fa9e4066Sahrens 
833e14bb325SJeff Bonwick 	ASSERT(BP_GET_COMPRESS(zio->io_bp) == ZIO_COMPRESS_OFF);
834e14bb325SJeff Bonwick 	ASSERT(BP_GET_TYPE(zio->io_bp) == DMU_OT_INTENT_LOG);
835e14bb325SJeff Bonwick 	ASSERT(BP_GET_LEVEL(zio->io_bp) == 0);
836e14bb325SJeff Bonwick 	ASSERT(BP_GET_BYTEORDER(zio->io_bp) == ZFS_HOST_BYTEORDER);
837e14bb325SJeff Bonwick 	ASSERT(!BP_IS_GANG(zio->io_bp));
838e14bb325SJeff Bonwick 	ASSERT(!BP_IS_HOLE(zio->io_bp));
8395d7b4d43SMatthew Ahrens 	ASSERT(BP_GET_FILL(zio->io_bp) == 0);
840e14bb325SJeff Bonwick 
841fa9e4066Sahrens 	/*
842ef0d8e11SNeil Perrin 	 * Ensure the lwb buffer pointer is cleared before releasing
843ef0d8e11SNeil Perrin 	 * the txg. If we have had an allocation failure and
844ef0d8e11SNeil Perrin 	 * the txg is waiting to sync then we want want zil_sync()
845ef0d8e11SNeil Perrin 	 * to remove the lwb so that it's not picked up as the next new
846ef0d8e11SNeil Perrin 	 * one in zil_commit_writer(). zil_sync() will only remove
847ef0d8e11SNeil Perrin 	 * the lwb if lwb_buf is null.
848fa9e4066Sahrens 	 */
849fa9e4066Sahrens 	zio_buf_free(lwb->lwb_buf, lwb->lwb_sz);
850fa9e4066Sahrens 	mutex_enter(&zilog->zl_lock);
851fa9e4066Sahrens 	lwb->lwb_buf = NULL;
852b24ab676SJeff Bonwick 	lwb->lwb_tx = NULL;
853b24ab676SJeff Bonwick 	mutex_exit(&zilog->zl_lock);
854ef0d8e11SNeil Perrin 
855ef0d8e11SNeil Perrin 	/*
856ef0d8e11SNeil Perrin 	 * Now that we've written this log block, we have a stable pointer
857ef0d8e11SNeil Perrin 	 * to the next block in the chain, so it's OK to let the txg in
858b24ab676SJeff Bonwick 	 * which we allocated the next block sync.
859ef0d8e11SNeil Perrin 	 */
860b24ab676SJeff Bonwick 	dmu_tx_commit(tx);
861fa9e4066Sahrens }
862fa9e4066Sahrens 
863c5c6ffa0Smaybee /*
864c5c6ffa0Smaybee  * Initialize the io for a log block.
865c5c6ffa0Smaybee  */
866c5c6ffa0Smaybee static void
867c5c6ffa0Smaybee zil_lwb_write_init(zilog_t *zilog, lwb_t *lwb)
868c5c6ffa0Smaybee {
869*7802d7bfSMatthew Ahrens 	zbookmark_phys_t zb;
870c5c6ffa0Smaybee 
871b24ab676SJeff Bonwick 	SET_BOOKMARK(&zb, lwb->lwb_blk.blk_cksum.zc_word[ZIL_ZC_OBJSET],
872b24ab676SJeff Bonwick 	    ZB_ZIL_OBJECT, ZB_ZIL_LEVEL,
873b24ab676SJeff Bonwick 	    lwb->lwb_blk.blk_cksum.zc_word[ZIL_ZC_SEQ]);
874c5c6ffa0Smaybee 
875b19a79ecSperrin 	if (zilog->zl_root_zio == NULL) {
876b19a79ecSperrin 		zilog->zl_root_zio = zio_root(zilog->zl_spa, NULL, NULL,
877b19a79ecSperrin 		    ZIO_FLAG_CANFAIL);
878b19a79ecSperrin 	}
87967bd71c6Sperrin 	if (lwb->lwb_zio == NULL) {
88067bd71c6Sperrin 		lwb->lwb_zio = zio_rewrite(zilog->zl_root_zio, zilog->zl_spa,
8816e1f5caaSNeil Perrin 		    0, &lwb->lwb_blk, lwb->lwb_buf, BP_GET_LSIZE(&lwb->lwb_blk),
88269962b56SMatthew Ahrens 		    zil_lwb_write_done, lwb, ZIO_PRIORITY_SYNC_WRITE,
8838f18d1faSGeorge Wilson 		    ZIO_FLAG_CANFAIL | ZIO_FLAG_DONT_PROPAGATE, &zb);
88467bd71c6Sperrin 	}
885c5c6ffa0Smaybee }
886c5c6ffa0Smaybee 
8876e1f5caaSNeil Perrin /*
8886e1f5caaSNeil Perrin  * Define a limited set of intent log block sizes.
889f7170741SWill Andrews  *
8906e1f5caaSNeil Perrin  * These must be a multiple of 4KB. Note only the amount used (again
8916e1f5caaSNeil Perrin  * aligned to 4KB) actually gets written. However, we can't always just
8926e1f5caaSNeil Perrin  * allocate SPA_MAXBLOCKSIZE as the slog space could be exhausted.
8936e1f5caaSNeil Perrin  */
8946e1f5caaSNeil Perrin uint64_t zil_block_buckets[] = {
8956e1f5caaSNeil Perrin     4096,		/* non TX_WRITE */
8966e1f5caaSNeil Perrin     8192+4096,		/* data base */
8976e1f5caaSNeil Perrin     32*1024 + 4096, 	/* NFS writes */
8986e1f5caaSNeil Perrin     UINT64_MAX
8996e1f5caaSNeil Perrin };
9006e1f5caaSNeil Perrin 
901d48e086fSNeil Perrin /*
902d48e086fSNeil Perrin  * Use the slog as long as the logbias is 'latency' and the current commit size
903d48e086fSNeil Perrin  * is less than the limit or the total list size is less than 2X the limit.
904d48e086fSNeil Perrin  * Limit checking is disabled by setting zil_slog_limit to UINT64_MAX.
905d48e086fSNeil Perrin  */
906d48e086fSNeil Perrin uint64_t zil_slog_limit = 1024 * 1024;
907d48e086fSNeil Perrin #define	USE_SLOG(zilog) (((zilog)->zl_logbias == ZFS_LOGBIAS_LATENCY) && \
908d48e086fSNeil Perrin 	(((zilog)->zl_cur_used < zil_slog_limit) || \
909d48e086fSNeil Perrin 	((zilog)->zl_itx_list_sz < (zil_slog_limit << 1))))
910d48e086fSNeil Perrin 
911fa9e4066Sahrens /*
912fa9e4066Sahrens  * Start a log block write and advance to the next log block.
913fa9e4066Sahrens  * Calls are serialized.
914fa9e4066Sahrens  */
915fa9e4066Sahrens static lwb_t *
916fa9e4066Sahrens zil_lwb_write_start(zilog_t *zilog, lwb_t *lwb)
917fa9e4066Sahrens {
9186e1f5caaSNeil Perrin 	lwb_t *nlwb = NULL;
9196e1f5caaSNeil Perrin 	zil_chain_t *zilc;
920d80c45e0Sbonwick 	spa_t *spa = zilog->zl_spa;
9216e1f5caaSNeil Perrin 	blkptr_t *bp;
922b24ab676SJeff Bonwick 	dmu_tx_t *tx;
923fa9e4066Sahrens 	uint64_t txg;
924ada693c4SNeil Perrin 	uint64_t zil_blksz, wsz;
9256e1f5caaSNeil Perrin 	int i, error;
9266e1f5caaSNeil Perrin 
9276e1f5caaSNeil Perrin 	if (BP_GET_CHECKSUM(&lwb->lwb_blk) == ZIO_CHECKSUM_ZILOG2) {
9286e1f5caaSNeil Perrin 		zilc = (zil_chain_t *)lwb->lwb_buf;
9296e1f5caaSNeil Perrin 		bp = &zilc->zc_next_blk;
9306e1f5caaSNeil Perrin 	} else {
9316e1f5caaSNeil Perrin 		zilc = (zil_chain_t *)(lwb->lwb_buf + lwb->lwb_sz);
9326e1f5caaSNeil Perrin 		bp = &zilc->zc_next_blk;
9336e1f5caaSNeil Perrin 	}
934fa9e4066Sahrens 
9356e1f5caaSNeil Perrin 	ASSERT(lwb->lwb_nused <= lwb->lwb_sz);
936fa9e4066Sahrens 
937fa9e4066Sahrens 	/*
938fa9e4066Sahrens 	 * Allocate the next block and save its address in this block
939fa9e4066Sahrens 	 * before writing it in order to establish the log chain.
940fa9e4066Sahrens 	 * Note that if the allocation of nlwb synced before we wrote
941fa9e4066Sahrens 	 * the block that points at it (lwb), we'd leak it if we crashed.
942b24ab676SJeff Bonwick 	 * Therefore, we don't do dmu_tx_commit() until zil_lwb_write_done().
943b24ab676SJeff Bonwick 	 * We dirty the dataset to ensure that zil_sync() will be called
944b24ab676SJeff Bonwick 	 * to clean up in the event of allocation failure or I/O failure.
945fa9e4066Sahrens 	 */
946b24ab676SJeff Bonwick 	tx = dmu_tx_create(zilog->zl_os);
947b24ab676SJeff Bonwick 	VERIFY(dmu_tx_assign(tx, TXG_WAIT) == 0);
948b24ab676SJeff Bonwick 	dsl_dataset_dirty(dmu_objset_ds(zilog->zl_os), tx);
949b24ab676SJeff Bonwick 	txg = dmu_tx_get_txg(tx);
950b24ab676SJeff Bonwick 
951b24ab676SJeff Bonwick 	lwb->lwb_tx = tx;
952fa9e4066Sahrens 
953fa9e4066Sahrens 	/*
9546e1f5caaSNeil Perrin 	 * Log blocks are pre-allocated. Here we select the size of the next
9556e1f5caaSNeil Perrin 	 * block, based on size used in the last block.
9566e1f5caaSNeil Perrin 	 * - first find the smallest bucket that will fit the block from a
9576e1f5caaSNeil Perrin 	 *   limited set of block sizes. This is because it's faster to write
9586e1f5caaSNeil Perrin 	 *   blocks allocated from the same metaslab as they are adjacent or
9596e1f5caaSNeil Perrin 	 *   close.
9606e1f5caaSNeil Perrin 	 * - next find the maximum from the new suggested size and an array of
9616e1f5caaSNeil Perrin 	 *   previous sizes. This lessens a picket fence effect of wrongly
9626e1f5caaSNeil Perrin 	 *   guesssing the size if we have a stream of say 2k, 64k, 2k, 64k
9636e1f5caaSNeil Perrin 	 *   requests.
9646e1f5caaSNeil Perrin 	 *
9656e1f5caaSNeil Perrin 	 * Note we only write what is used, but we can't just allocate
9666e1f5caaSNeil Perrin 	 * the maximum block size because we can exhaust the available
9676e1f5caaSNeil Perrin 	 * pool log space.
968fa9e4066Sahrens 	 */
9696e1f5caaSNeil Perrin 	zil_blksz = zilog->zl_cur_used + sizeof (zil_chain_t);
9706e1f5caaSNeil Perrin 	for (i = 0; zil_blksz > zil_block_buckets[i]; i++)
9716e1f5caaSNeil Perrin 		continue;
9726e1f5caaSNeil Perrin 	zil_blksz = zil_block_buckets[i];
9736e1f5caaSNeil Perrin 	if (zil_blksz == UINT64_MAX)
9746e1f5caaSNeil Perrin 		zil_blksz = SPA_MAXBLOCKSIZE;
9756e1f5caaSNeil Perrin 	zilog->zl_prev_blks[zilog->zl_prev_rotor] = zil_blksz;
9766e1f5caaSNeil Perrin 	for (i = 0; i < ZIL_PREV_BLKS; i++)
9776e1f5caaSNeil Perrin 		zil_blksz = MAX(zil_blksz, zilog->zl_prev_blks[i]);
9786e1f5caaSNeil Perrin 	zilog->zl_prev_rotor = (zilog->zl_prev_rotor + 1) & (ZIL_PREV_BLKS - 1);
979fa9e4066Sahrens 
98067bd71c6Sperrin 	BP_ZERO(bp);
98167bd71c6Sperrin 	/* pass the old blkptr in order to spread log blocks across devs */
982b24ab676SJeff Bonwick 	error = zio_alloc_zil(spa, txg, bp, &lwb->lwb_blk, zil_blksz,
983d48e086fSNeil Perrin 	    USE_SLOG(zilog));
9843b2aab18SMatthew Ahrens 	if (error == 0) {
9856e1f5caaSNeil Perrin 		ASSERT3U(bp->blk_birth, ==, txg);
9866e1f5caaSNeil Perrin 		bp->blk_cksum = lwb->lwb_blk.blk_cksum;
9876e1f5caaSNeil Perrin 		bp->blk_cksum.zc_word[ZIL_ZC_SEQ]++;
988d63d470bSgw 
989ea8dc4b6Seschrock 		/*
9906e1f5caaSNeil Perrin 		 * Allocate a new log write buffer (lwb).
991ea8dc4b6Seschrock 		 */
9926e1f5caaSNeil Perrin 		nlwb = zil_alloc_lwb(zilog, bp, txg);
9936e1f5caaSNeil Perrin 
9946e1f5caaSNeil Perrin 		/* Record the block for later vdev flushing */
9956e1f5caaSNeil Perrin 		zil_add_block(zilog, &lwb->lwb_blk);
996fa9e4066Sahrens 	}
997fa9e4066Sahrens 
9986e1f5caaSNeil Perrin 	if (BP_GET_CHECKSUM(&lwb->lwb_blk) == ZIO_CHECKSUM_ZILOG2) {
9996e1f5caaSNeil Perrin 		/* For Slim ZIL only write what is used. */
1000ada693c4SNeil Perrin 		wsz = P2ROUNDUP_TYPED(lwb->lwb_nused, ZIL_MIN_BLKSZ, uint64_t);
1001ada693c4SNeil Perrin 		ASSERT3U(wsz, <=, lwb->lwb_sz);
1002ada693c4SNeil Perrin 		zio_shrink(lwb->lwb_zio, wsz);
1003fa9e4066Sahrens 
1004ada693c4SNeil Perrin 	} else {
1005ada693c4SNeil Perrin 		wsz = lwb->lwb_sz;
10066e1f5caaSNeil Perrin 	}
1007ada693c4SNeil Perrin 
10086e1f5caaSNeil Perrin 	zilc->zc_pad = 0;
10096e1f5caaSNeil Perrin 	zilc->zc_nused = lwb->lwb_nused;
10106e1f5caaSNeil Perrin 	zilc->zc_eck.zec_cksum = lwb->lwb_blk.blk_cksum;
1011fa9e4066Sahrens 
1012ada693c4SNeil Perrin 	/*
1013ada693c4SNeil Perrin 	 * clear unused data for security
1014ada693c4SNeil Perrin 	 */
1015ada693c4SNeil Perrin 	bzero(lwb->lwb_buf + lwb->lwb_nused, wsz - lwb->lwb_nused);
1016ada693c4SNeil Perrin 
10176e1f5caaSNeil Perrin 	zio_nowait(lwb->lwb_zio); /* Kick off the write for the old log block */
101867bd71c6Sperrin 
1019fa9e4066Sahrens 	/*
10206e1f5caaSNeil Perrin 	 * If there was an allocation failure then nlwb will be null which
10216e1f5caaSNeil Perrin 	 * forces a txg_wait_synced().
1022fa9e4066Sahrens 	 */
1023fa9e4066Sahrens 	return (nlwb);
1024fa9e4066Sahrens }
1025fa9e4066Sahrens 
1026fa9e4066Sahrens static lwb_t *
1027fa9e4066Sahrens zil_lwb_commit(zilog_t *zilog, itx_t *itx, lwb_t *lwb)
1028fa9e4066Sahrens {
1029fa9e4066Sahrens 	lr_t *lrc = &itx->itx_lr; /* common log record */
1030b24ab676SJeff Bonwick 	lr_write_t *lrw = (lr_write_t *)lrc;
1031b24ab676SJeff Bonwick 	char *lr_buf;
1032fa9e4066Sahrens 	uint64_t txg = lrc->lrc_txg;
1033fa9e4066Sahrens 	uint64_t reclen = lrc->lrc_reclen;
1034b24ab676SJeff Bonwick 	uint64_t dlen = 0;
1035fa9e4066Sahrens 
1036fa9e4066Sahrens 	if (lwb == NULL)
1037fa9e4066Sahrens 		return (NULL);
1038b24ab676SJeff Bonwick 
1039fa9e4066Sahrens 	ASSERT(lwb->lwb_buf != NULL);
1040ce636f8bSMatthew Ahrens 	ASSERT(zilog_is_dirty(zilog) ||
1041ce636f8bSMatthew Ahrens 	    spa_freeze_txg(zilog->zl_spa) != UINT64_MAX);
1042fa9e4066Sahrens 
1043c5c6ffa0Smaybee 	if (lrc->lrc_txtype == TX_WRITE && itx->itx_wr_state == WR_NEED_COPY)
1044c5c6ffa0Smaybee 		dlen = P2ROUNDUP_TYPED(
1045b24ab676SJeff Bonwick 		    lrw->lr_length, sizeof (uint64_t), uint64_t);
1046fa9e4066Sahrens 
1047104e2ed7Sperrin 	zilog->zl_cur_used += (reclen + dlen);
104822ac5be4Sperrin 
104967bd71c6Sperrin 	zil_lwb_write_init(zilog, lwb);
105067bd71c6Sperrin 
1051fa9e4066Sahrens 	/*
1052fa9e4066Sahrens 	 * If this record won't fit in the current log block, start a new one.
1053fa9e4066Sahrens 	 */
10546e1f5caaSNeil Perrin 	if (lwb->lwb_nused + reclen + dlen > lwb->lwb_sz) {
1055fa9e4066Sahrens 		lwb = zil_lwb_write_start(zilog, lwb);
1056c5c6ffa0Smaybee 		if (lwb == NULL)
1057fa9e4066Sahrens 			return (NULL);
105867bd71c6Sperrin 		zil_lwb_write_init(zilog, lwb);
10596e1f5caaSNeil Perrin 		ASSERT(LWB_EMPTY(lwb));
10606e1f5caaSNeil Perrin 		if (lwb->lwb_nused + reclen + dlen > lwb->lwb_sz) {
1061fa9e4066Sahrens 			txg_wait_synced(zilog->zl_dmu_pool, txg);
1062fa9e4066Sahrens 			return (lwb);
1063fa9e4066Sahrens 		}
1064fa9e4066Sahrens 	}
1065fa9e4066Sahrens 
1066b24ab676SJeff Bonwick 	lr_buf = lwb->lwb_buf + lwb->lwb_nused;
1067b24ab676SJeff Bonwick 	bcopy(lrc, lr_buf, reclen);
1068b24ab676SJeff Bonwick 	lrc = (lr_t *)lr_buf;
1069b24ab676SJeff Bonwick 	lrw = (lr_write_t *)lrc;
1070c5c6ffa0Smaybee 
1071c5c6ffa0Smaybee 	/*
1072c5c6ffa0Smaybee 	 * If it's a write, fetch the data or get its blkptr as appropriate.
1073c5c6ffa0Smaybee 	 */
1074c5c6ffa0Smaybee 	if (lrc->lrc_txtype == TX_WRITE) {
1075c5c6ffa0Smaybee 		if (txg > spa_freeze_txg(zilog->zl_spa))
1076c5c6ffa0Smaybee 			txg_wait_synced(zilog->zl_dmu_pool, txg);
1077c5c6ffa0Smaybee 		if (itx->itx_wr_state != WR_COPIED) {
1078c5c6ffa0Smaybee 			char *dbuf;
1079c5c6ffa0Smaybee 			int error;
1080c5c6ffa0Smaybee 
1081c5c6ffa0Smaybee 			if (dlen) {
1082c5c6ffa0Smaybee 				ASSERT(itx->itx_wr_state == WR_NEED_COPY);
1083b24ab676SJeff Bonwick 				dbuf = lr_buf + reclen;
1084b24ab676SJeff Bonwick 				lrw->lr_common.lrc_reclen += dlen;
1085c5c6ffa0Smaybee 			} else {
1086c5c6ffa0Smaybee 				ASSERT(itx->itx_wr_state == WR_INDIRECT);
1087c5c6ffa0Smaybee 				dbuf = NULL;
1088c5c6ffa0Smaybee 			}
1089c5c6ffa0Smaybee 			error = zilog->zl_get_data(
1090b24ab676SJeff Bonwick 			    itx->itx_private, lrw, dbuf, lwb->lwb_zio);
1091c87b8fc5SMark J Musante 			if (error == EIO) {
1092c87b8fc5SMark J Musante 				txg_wait_synced(zilog->zl_dmu_pool, txg);
1093c87b8fc5SMark J Musante 				return (lwb);
1094c87b8fc5SMark J Musante 			}
10953b2aab18SMatthew Ahrens 			if (error != 0) {
1096c5c6ffa0Smaybee 				ASSERT(error == ENOENT || error == EEXIST ||
1097c5c6ffa0Smaybee 				    error == EALREADY);
1098c5c6ffa0Smaybee 				return (lwb);
1099c5c6ffa0Smaybee 			}
1100c5c6ffa0Smaybee 		}
1101104e2ed7Sperrin 	}
1102c5c6ffa0Smaybee 
1103b24ab676SJeff Bonwick 	/*
1104b24ab676SJeff Bonwick 	 * We're actually making an entry, so update lrc_seq to be the
1105b24ab676SJeff Bonwick 	 * log record sequence number.  Note that this is generally not
1106b24ab676SJeff Bonwick 	 * equal to the itx sequence number because not all transactions
1107b24ab676SJeff Bonwick 	 * are synchronous, and sometimes spa_sync() gets there first.
1108b24ab676SJeff Bonwick 	 */
1109b24ab676SJeff Bonwick 	lrc->lrc_seq = ++zilog->zl_lr_seq; /* we are single threaded */
1110c5c6ffa0Smaybee 	lwb->lwb_nused += reclen + dlen;
1111fa9e4066Sahrens 	lwb->lwb_max_txg = MAX(lwb->lwb_max_txg, txg);
11126e1f5caaSNeil Perrin 	ASSERT3U(lwb->lwb_nused, <=, lwb->lwb_sz);
1113fb09f5aaSMadhav Suresh 	ASSERT0(P2PHASE(lwb->lwb_nused, sizeof (uint64_t)));
1114fa9e4066Sahrens 
1115fa9e4066Sahrens 	return (lwb);
1116fa9e4066Sahrens }
1117fa9e4066Sahrens 
1118fa9e4066Sahrens itx_t *
1119da6c28aaSamw zil_itx_create(uint64_t txtype, size_t lrsize)
1120fa9e4066Sahrens {
1121fa9e4066Sahrens 	itx_t *itx;
1122fa9e4066Sahrens 
1123b4d654b0Sperrin 	lrsize = P2ROUNDUP_TYPED(lrsize, sizeof (uint64_t), size_t);
1124fa9e4066Sahrens 
1125fa9e4066Sahrens 	itx = kmem_alloc(offsetof(itx_t, itx_lr) + lrsize, KM_SLEEP);
1126fa9e4066Sahrens 	itx->itx_lr.lrc_txtype = txtype;
1127fa9e4066Sahrens 	itx->itx_lr.lrc_reclen = lrsize;
1128abf76b6eSperrin 	itx->itx_sod = lrsize; /* if write & WR_NEED_COPY will be increased */
1129fa9e4066Sahrens 	itx->itx_lr.lrc_seq = 0;	/* defensive */
11305002558fSNeil Perrin 	itx->itx_sync = B_TRUE;		/* default is synchronous */
1131fa9e4066Sahrens 
1132fa9e4066Sahrens 	return (itx);
1133fa9e4066Sahrens }
1134fa9e4066Sahrens 
1135b24ab676SJeff Bonwick void
1136b24ab676SJeff Bonwick zil_itx_destroy(itx_t *itx)
1137b24ab676SJeff Bonwick {
1138b24ab676SJeff Bonwick 	kmem_free(itx, offsetof(itx_t, itx_lr) + itx->itx_lr.lrc_reclen);
1139b24ab676SJeff Bonwick }
1140b24ab676SJeff Bonwick 
11415002558fSNeil Perrin /*
11425002558fSNeil Perrin  * Free up the sync and async itxs. The itxs_t has already been detached
11435002558fSNeil Perrin  * so no locks are needed.
11445002558fSNeil Perrin  */
11455002558fSNeil Perrin static void
11465002558fSNeil Perrin zil_itxg_clean(itxs_t *itxs)
1147fa9e4066Sahrens {
11485002558fSNeil Perrin 	itx_t *itx;
11495002558fSNeil Perrin 	list_t *list;
11505002558fSNeil Perrin 	avl_tree_t *t;
11515002558fSNeil Perrin 	void *cookie;
11525002558fSNeil Perrin 	itx_async_node_t *ian;
11535002558fSNeil Perrin 
11545002558fSNeil Perrin 	list = &itxs->i_sync_list;
11555002558fSNeil Perrin 	while ((itx = list_head(list)) != NULL) {
11565002558fSNeil Perrin 		list_remove(list, itx);
11575002558fSNeil Perrin 		kmem_free(itx, offsetof(itx_t, itx_lr) +
11585002558fSNeil Perrin 		    itx->itx_lr.lrc_reclen);
11595002558fSNeil Perrin 	}
1160fa9e4066Sahrens 
11615002558fSNeil Perrin 	cookie = NULL;
11625002558fSNeil Perrin 	t = &itxs->i_async_tree;
11635002558fSNeil Perrin 	while ((ian = avl_destroy_nodes(t, &cookie)) != NULL) {
11645002558fSNeil Perrin 		list = &ian->ia_list;
11655002558fSNeil Perrin 		while ((itx = list_head(list)) != NULL) {
11665002558fSNeil Perrin 			list_remove(list, itx);
11675002558fSNeil Perrin 			kmem_free(itx, offsetof(itx_t, itx_lr) +
11685002558fSNeil Perrin 			    itx->itx_lr.lrc_reclen);
11695002558fSNeil Perrin 		}
11705002558fSNeil Perrin 		list_destroy(list);
11715002558fSNeil Perrin 		kmem_free(ian, sizeof (itx_async_node_t));
11725002558fSNeil Perrin 	}
11735002558fSNeil Perrin 	avl_destroy(t);
1174fa9e4066Sahrens 
11755002558fSNeil Perrin 	kmem_free(itxs, sizeof (itxs_t));
11765002558fSNeil Perrin }
11775002558fSNeil Perrin 
11785002558fSNeil Perrin static int
11795002558fSNeil Perrin zil_aitx_compare(const void *x1, const void *x2)
11805002558fSNeil Perrin {
11815002558fSNeil Perrin 	const uint64_t o1 = ((itx_async_node_t *)x1)->ia_foid;
11825002558fSNeil Perrin 	const uint64_t o2 = ((itx_async_node_t *)x2)->ia_foid;
1183fa9e4066Sahrens 
11845002558fSNeil Perrin 	if (o1 < o2)
11855002558fSNeil Perrin 		return (-1);
11865002558fSNeil Perrin 	if (o1 > o2)
11875002558fSNeil Perrin 		return (1);
11885002558fSNeil Perrin 
11895002558fSNeil Perrin 	return (0);
1190fa9e4066Sahrens }
1191fa9e4066Sahrens 
1192fa9e4066Sahrens /*
11935002558fSNeil Perrin  * Remove all async itx with the given oid.
1194fa9e4066Sahrens  */
119591de656bSNeil Perrin static void
11965002558fSNeil Perrin zil_remove_async(zilog_t *zilog, uint64_t oid)
1197fa9e4066Sahrens {
11985002558fSNeil Perrin 	uint64_t otxg, txg;
11995002558fSNeil Perrin 	itx_async_node_t *ian;
12005002558fSNeil Perrin 	avl_tree_t *t;
12015002558fSNeil Perrin 	avl_index_t where;
1202a584ef65Sjohansen 	list_t clean_list;
1203fa9e4066Sahrens 	itx_t *itx;
1204fa9e4066Sahrens 
12055002558fSNeil Perrin 	ASSERT(oid != 0);
1206a584ef65Sjohansen 	list_create(&clean_list, sizeof (itx_t), offsetof(itx_t, itx_node));
1207a584ef65Sjohansen 
12085002558fSNeil Perrin 	if (spa_freeze_txg(zilog->zl_spa) != UINT64_MAX) /* ziltest support */
12095002558fSNeil Perrin 		otxg = ZILTEST_TXG;
12105002558fSNeil Perrin 	else
12115002558fSNeil Perrin 		otxg = spa_last_synced_txg(zilog->zl_spa) + 1;
1212a584ef65Sjohansen 
12135002558fSNeil Perrin 	for (txg = otxg; txg < (otxg + TXG_CONCURRENT_STATES); txg++) {
12145002558fSNeil Perrin 		itxg_t *itxg = &zilog->zl_itxg[txg & TXG_MASK];
12155002558fSNeil Perrin 
12165002558fSNeil Perrin 		mutex_enter(&itxg->itxg_lock);
12175002558fSNeil Perrin 		if (itxg->itxg_txg != txg) {
12185002558fSNeil Perrin 			mutex_exit(&itxg->itxg_lock);
12195002558fSNeil Perrin 			continue;
12205002558fSNeil Perrin 		}
1221a584ef65Sjohansen 
12225002558fSNeil Perrin 		/*
12235002558fSNeil Perrin 		 * Locate the object node and append its list.
12245002558fSNeil Perrin 		 */
12255002558fSNeil Perrin 		t = &itxg->itxg_itxs->i_async_tree;
12265002558fSNeil Perrin 		ian = avl_find(t, &oid, &where);
12275002558fSNeil Perrin 		if (ian != NULL)
12285002558fSNeil Perrin 			list_move_tail(&clean_list, &ian->ia_list);
12295002558fSNeil Perrin 		mutex_exit(&itxg->itxg_lock);
12305002558fSNeil Perrin 	}
1231a584ef65Sjohansen 	while ((itx = list_head(&clean_list)) != NULL) {
1232a584ef65Sjohansen 		list_remove(&clean_list, itx);
12335002558fSNeil Perrin 		kmem_free(itx, offsetof(itx_t, itx_lr) +
12345002558fSNeil Perrin 		    itx->itx_lr.lrc_reclen);
1235a584ef65Sjohansen 	}
1236a584ef65Sjohansen 	list_destroy(&clean_list);
1237fa9e4066Sahrens }
1238fa9e4066Sahrens 
12395002558fSNeil Perrin void
12405002558fSNeil Perrin zil_itx_assign(zilog_t *zilog, itx_t *itx, dmu_tx_t *tx)
12415002558fSNeil Perrin {
12425002558fSNeil Perrin 	uint64_t txg;
12435002558fSNeil Perrin 	itxg_t *itxg;
12445002558fSNeil Perrin 	itxs_t *itxs, *clean = NULL;
12455002558fSNeil Perrin 
12465002558fSNeil Perrin 	/*
124791de656bSNeil Perrin 	 * Object ids can be re-instantiated in the next txg so
12485002558fSNeil Perrin 	 * remove any async transactions to avoid future leaks.
12495002558fSNeil Perrin 	 * This can happen if a fsync occurs on the re-instantiated
12505002558fSNeil Perrin 	 * object for a WR_INDIRECT or WR_NEED_COPY write, which gets
12515002558fSNeil Perrin 	 * the new file data and flushes a write record for the old object.
12525002558fSNeil Perrin 	 */
12535002558fSNeil Perrin 	if ((itx->itx_lr.lrc_txtype & ~TX_CI) == TX_REMOVE)
125451bd2f97SNeil Perrin 		zil_remove_async(zilog, itx->itx_oid);
12555002558fSNeil Perrin 
125691de656bSNeil Perrin 	/*
125791de656bSNeil Perrin 	 * Ensure the data of a renamed file is committed before the rename.
125891de656bSNeil Perrin 	 */
125991de656bSNeil Perrin 	if ((itx->itx_lr.lrc_txtype & ~TX_CI) == TX_RENAME)
126091de656bSNeil Perrin 		zil_async_to_sync(zilog, itx->itx_oid);
126191de656bSNeil Perrin 
1262ce636f8bSMatthew Ahrens 	if (spa_freeze_txg(zilog->zl_spa) != UINT64_MAX)
12635002558fSNeil Perrin 		txg = ZILTEST_TXG;
12645002558fSNeil Perrin 	else
12655002558fSNeil Perrin 		txg = dmu_tx_get_txg(tx);
12665002558fSNeil Perrin 
12675002558fSNeil Perrin 	itxg = &zilog->zl_itxg[txg & TXG_MASK];
12685002558fSNeil Perrin 	mutex_enter(&itxg->itxg_lock);
12695002558fSNeil Perrin 	itxs = itxg->itxg_itxs;
12705002558fSNeil Perrin 	if (itxg->itxg_txg != txg) {
12715002558fSNeil Perrin 		if (itxs != NULL) {
12725002558fSNeil Perrin 			/*
12735002558fSNeil Perrin 			 * The zil_clean callback hasn't got around to cleaning
12745002558fSNeil Perrin 			 * this itxg. Save the itxs for release below.
12755002558fSNeil Perrin 			 * This should be rare.
12765002558fSNeil Perrin 			 */
12775002558fSNeil Perrin 			atomic_add_64(&zilog->zl_itx_list_sz, -itxg->itxg_sod);
12785002558fSNeil Perrin 			itxg->itxg_sod = 0;
12795002558fSNeil Perrin 			clean = itxg->itxg_itxs;
12805002558fSNeil Perrin 		}
12815002558fSNeil Perrin 		ASSERT(itxg->itxg_sod == 0);
12825002558fSNeil Perrin 		itxg->itxg_txg = txg;
12835002558fSNeil Perrin 		itxs = itxg->itxg_itxs = kmem_zalloc(sizeof (itxs_t), KM_SLEEP);
12845002558fSNeil Perrin 
12855002558fSNeil Perrin 		list_create(&itxs->i_sync_list, sizeof (itx_t),
12865002558fSNeil Perrin 		    offsetof(itx_t, itx_node));
12875002558fSNeil Perrin 		avl_create(&itxs->i_async_tree, zil_aitx_compare,
12885002558fSNeil Perrin 		    sizeof (itx_async_node_t),
12895002558fSNeil Perrin 		    offsetof(itx_async_node_t, ia_node));
12905002558fSNeil Perrin 	}
12915002558fSNeil Perrin 	if (itx->itx_sync) {
12925002558fSNeil Perrin 		list_insert_tail(&itxs->i_sync_list, itx);
12935002558fSNeil Perrin 		atomic_add_64(&zilog->zl_itx_list_sz, itx->itx_sod);
12945002558fSNeil Perrin 		itxg->itxg_sod += itx->itx_sod;
12955002558fSNeil Perrin 	} else {
12965002558fSNeil Perrin 		avl_tree_t *t = &itxs->i_async_tree;
12975002558fSNeil Perrin 		uint64_t foid = ((lr_ooo_t *)&itx->itx_lr)->lr_foid;
12985002558fSNeil Perrin 		itx_async_node_t *ian;
12995002558fSNeil Perrin 		avl_index_t where;
13005002558fSNeil Perrin 
13015002558fSNeil Perrin 		ian = avl_find(t, &foid, &where);
13025002558fSNeil Perrin 		if (ian == NULL) {
13035002558fSNeil Perrin 			ian = kmem_alloc(sizeof (itx_async_node_t), KM_SLEEP);
13045002558fSNeil Perrin 			list_create(&ian->ia_list, sizeof (itx_t),
13055002558fSNeil Perrin 			    offsetof(itx_t, itx_node));
13065002558fSNeil Perrin 			ian->ia_foid = foid;
13075002558fSNeil Perrin 			avl_insert(t, ian, where);
13085002558fSNeil Perrin 		}
13095002558fSNeil Perrin 		list_insert_tail(&ian->ia_list, itx);
13105002558fSNeil Perrin 	}
13115002558fSNeil Perrin 
13125002558fSNeil Perrin 	itx->itx_lr.lrc_txg = dmu_tx_get_txg(tx);
1313ce636f8bSMatthew Ahrens 	zilog_dirty(zilog, txg);
13145002558fSNeil Perrin 	mutex_exit(&itxg->itxg_lock);
13155002558fSNeil Perrin 
13165002558fSNeil Perrin 	/* Release the old itxs now we've dropped the lock */
13175002558fSNeil Perrin 	if (clean != NULL)
13185002558fSNeil Perrin 		zil_itxg_clean(clean);
13195002558fSNeil Perrin }
13205002558fSNeil Perrin 
1321b19a79ecSperrin /*
132267bd71c6Sperrin  * If there are any in-memory intent log transactions which have now been
1323ce636f8bSMatthew Ahrens  * synced then start up a taskq to free them. We should only do this after we
1324ce636f8bSMatthew Ahrens  * have written out the uberblocks (i.e. txg has been comitted) so that
1325ce636f8bSMatthew Ahrens  * don't inadvertently clean out in-memory log records that would be required
1326ce636f8bSMatthew Ahrens  * by zil_commit().
1327b19a79ecSperrin  */
1328fa9e4066Sahrens void
13295002558fSNeil Perrin zil_clean(zilog_t *zilog, uint64_t synced_txg)
1330fa9e4066Sahrens {
13315002558fSNeil Perrin 	itxg_t *itxg = &zilog->zl_itxg[synced_txg & TXG_MASK];
13325002558fSNeil Perrin 	itxs_t *clean_me;
133367bd71c6Sperrin 
13345002558fSNeil Perrin 	mutex_enter(&itxg->itxg_lock);
13355002558fSNeil Perrin 	if (itxg->itxg_itxs == NULL || itxg->itxg_txg == ZILTEST_TXG) {
13365002558fSNeil Perrin 		mutex_exit(&itxg->itxg_lock);
13375002558fSNeil Perrin 		return;
13385002558fSNeil Perrin 	}
13395002558fSNeil Perrin 	ASSERT3U(itxg->itxg_txg, <=, synced_txg);
13405002558fSNeil Perrin 	ASSERT(itxg->itxg_txg != 0);
13415002558fSNeil Perrin 	ASSERT(zilog->zl_clean_taskq != NULL);
13425002558fSNeil Perrin 	atomic_add_64(&zilog->zl_itx_list_sz, -itxg->itxg_sod);
13435002558fSNeil Perrin 	itxg->itxg_sod = 0;
13445002558fSNeil Perrin 	clean_me = itxg->itxg_itxs;
13455002558fSNeil Perrin 	itxg->itxg_itxs = NULL;
13465002558fSNeil Perrin 	itxg->itxg_txg = 0;
13475002558fSNeil Perrin 	mutex_exit(&itxg->itxg_lock);
13485002558fSNeil Perrin 	/*
13495002558fSNeil Perrin 	 * Preferably start a task queue to free up the old itxs but
13505002558fSNeil Perrin 	 * if taskq_dispatch can't allocate resources to do that then
13515002558fSNeil Perrin 	 * free it in-line. This should be rare. Note, using TQ_SLEEP
13525002558fSNeil Perrin 	 * created a bad performance problem.
13535002558fSNeil Perrin 	 */
13545002558fSNeil Perrin 	if (taskq_dispatch(zilog->zl_clean_taskq,
13555002558fSNeil Perrin 	    (void (*)(void *))zil_itxg_clean, clean_me, TQ_NOSLEEP) == NULL)
13565002558fSNeil Perrin 		zil_itxg_clean(clean_me);
13575002558fSNeil Perrin }
13585002558fSNeil Perrin 
13595002558fSNeil Perrin /*
13605002558fSNeil Perrin  * Get the list of itxs to commit into zl_itx_commit_list.
13615002558fSNeil Perrin  */
136291de656bSNeil Perrin static void
13635002558fSNeil Perrin zil_get_commit_list(zilog_t *zilog)
13645002558fSNeil Perrin {
13655002558fSNeil Perrin 	uint64_t otxg, txg;
13665002558fSNeil Perrin 	list_t *commit_list = &zilog->zl_itx_commit_list;
13675002558fSNeil Perrin 	uint64_t push_sod = 0;
13685002558fSNeil Perrin 
13695002558fSNeil Perrin 	if (spa_freeze_txg(zilog->zl_spa) != UINT64_MAX) /* ziltest support */
13705002558fSNeil Perrin 		otxg = ZILTEST_TXG;
13715002558fSNeil Perrin 	else
13725002558fSNeil Perrin 		otxg = spa_last_synced_txg(zilog->zl_spa) + 1;
13735002558fSNeil Perrin 
13745002558fSNeil Perrin 	for (txg = otxg; txg < (otxg + TXG_CONCURRENT_STATES); txg++) {
13755002558fSNeil Perrin 		itxg_t *itxg = &zilog->zl_itxg[txg & TXG_MASK];
13765002558fSNeil Perrin 
13775002558fSNeil Perrin 		mutex_enter(&itxg->itxg_lock);
13785002558fSNeil Perrin 		if (itxg->itxg_txg != txg) {
13795002558fSNeil Perrin 			mutex_exit(&itxg->itxg_lock);
13805002558fSNeil Perrin 			continue;
13815002558fSNeil Perrin 		}
13825002558fSNeil Perrin 
13835002558fSNeil Perrin 		list_move_tail(commit_list, &itxg->itxg_itxs->i_sync_list);
13845002558fSNeil Perrin 		push_sod += itxg->itxg_sod;
13855002558fSNeil Perrin 		itxg->itxg_sod = 0;
13865002558fSNeil Perrin 
13875002558fSNeil Perrin 		mutex_exit(&itxg->itxg_lock);
13885002558fSNeil Perrin 	}
13895002558fSNeil Perrin 	atomic_add_64(&zilog->zl_itx_list_sz, -push_sod);
13905002558fSNeil Perrin }
13915002558fSNeil Perrin 
13925002558fSNeil Perrin /*
13935002558fSNeil Perrin  * Move the async itxs for a specified object to commit into sync lists.
13945002558fSNeil Perrin  */
139591de656bSNeil Perrin static void
13965002558fSNeil Perrin zil_async_to_sync(zilog_t *zilog, uint64_t foid)
13975002558fSNeil Perrin {
13985002558fSNeil Perrin 	uint64_t otxg, txg;
13995002558fSNeil Perrin 	itx_async_node_t *ian;
14005002558fSNeil Perrin 	avl_tree_t *t;
14015002558fSNeil Perrin 	avl_index_t where;
14025002558fSNeil Perrin 
14035002558fSNeil Perrin 	if (spa_freeze_txg(zilog->zl_spa) != UINT64_MAX) /* ziltest support */
14045002558fSNeil Perrin 		otxg = ZILTEST_TXG;
14055002558fSNeil Perrin 	else
14065002558fSNeil Perrin 		otxg = spa_last_synced_txg(zilog->zl_spa) + 1;
14075002558fSNeil Perrin 
14085002558fSNeil Perrin 	for (txg = otxg; txg < (otxg + TXG_CONCURRENT_STATES); txg++) {
14095002558fSNeil Perrin 		itxg_t *itxg = &zilog->zl_itxg[txg & TXG_MASK];
14105002558fSNeil Perrin 
14115002558fSNeil Perrin 		mutex_enter(&itxg->itxg_lock);
14125002558fSNeil Perrin 		if (itxg->itxg_txg != txg) {
14135002558fSNeil Perrin 			mutex_exit(&itxg->itxg_lock);
14145002558fSNeil Perrin 			continue;
14155002558fSNeil Perrin 		}
14165002558fSNeil Perrin 
14175002558fSNeil Perrin 		/*
14185002558fSNeil Perrin 		 * If a foid is specified then find that node and append its
14195002558fSNeil Perrin 		 * list. Otherwise walk the tree appending all the lists
14205002558fSNeil Perrin 		 * to the sync list. We add to the end rather than the
14215002558fSNeil Perrin 		 * beginning to ensure the create has happened.
14225002558fSNeil Perrin 		 */
14235002558fSNeil Perrin 		t = &itxg->itxg_itxs->i_async_tree;
14245002558fSNeil Perrin 		if (foid != 0) {
14255002558fSNeil Perrin 			ian = avl_find(t, &foid, &where);
14265002558fSNeil Perrin 			if (ian != NULL) {
14275002558fSNeil Perrin 				list_move_tail(&itxg->itxg_itxs->i_sync_list,
14285002558fSNeil Perrin 				    &ian->ia_list);
14295002558fSNeil Perrin 			}
14305002558fSNeil Perrin 		} else {
14315002558fSNeil Perrin 			void *cookie = NULL;
14325002558fSNeil Perrin 
14335002558fSNeil Perrin 			while ((ian = avl_destroy_nodes(t, &cookie)) != NULL) {
14345002558fSNeil Perrin 				list_move_tail(&itxg->itxg_itxs->i_sync_list,
14355002558fSNeil Perrin 				    &ian->ia_list);
14365002558fSNeil Perrin 				list_destroy(&ian->ia_list);
14375002558fSNeil Perrin 				kmem_free(ian, sizeof (itx_async_node_t));
14385002558fSNeil Perrin 			}
14395002558fSNeil Perrin 		}
14405002558fSNeil Perrin 		mutex_exit(&itxg->itxg_lock);
144167bd71c6Sperrin 	}
1442fa9e4066Sahrens }
1443fa9e4066Sahrens 
1444e14bb325SJeff Bonwick static void
14455002558fSNeil Perrin zil_commit_writer(zilog_t *zilog)
1446fa9e4066Sahrens {
1447fa9e4066Sahrens 	uint64_t txg;
14485002558fSNeil Perrin 	itx_t *itx;
1449fa9e4066Sahrens 	lwb_t *lwb;
14505002558fSNeil Perrin 	spa_t *spa = zilog->zl_spa;
1451b24ab676SJeff Bonwick 	int error = 0;
1452fa9e4066Sahrens 
1453e14bb325SJeff Bonwick 	ASSERT(zilog->zl_root_zio == NULL);
14545002558fSNeil Perrin 
14555002558fSNeil Perrin 	mutex_exit(&zilog->zl_lock);
14565002558fSNeil Perrin 
14575002558fSNeil Perrin 	zil_get_commit_list(zilog);
14585002558fSNeil Perrin 
14595002558fSNeil Perrin 	/*
14605002558fSNeil Perrin 	 * Return if there's nothing to commit before we dirty the fs by
14615002558fSNeil Perrin 	 * calling zil_create().
14625002558fSNeil Perrin 	 */
14635002558fSNeil Perrin 	if (list_head(&zilog->zl_itx_commit_list) == NULL) {
14645002558fSNeil Perrin 		mutex_enter(&zilog->zl_lock);
14655002558fSNeil Perrin 		return;
14665002558fSNeil Perrin 	}
1467fa9e4066Sahrens 
1468fa9e4066Sahrens 	if (zilog->zl_suspend) {
1469fa9e4066Sahrens 		lwb = NULL;
1470fa9e4066Sahrens 	} else {
1471fa9e4066Sahrens 		lwb = list_tail(&zilog->zl_lwb_list);
14725002558fSNeil Perrin 		if (lwb == NULL)
14736e1f5caaSNeil Perrin 			lwb = zil_create(zilog);
1474fa9e4066Sahrens 	}
1475fa9e4066Sahrens 
1476b19a79ecSperrin 	DTRACE_PROBE1(zil__cw1, zilog_t *, zilog);
14775002558fSNeil Perrin 	while (itx = list_head(&zilog->zl_itx_commit_list)) {
1478fa9e4066Sahrens 		txg = itx->itx_lr.lrc_txg;
1479fa9e4066Sahrens 		ASSERT(txg);
1480fa9e4066Sahrens 
14815002558fSNeil Perrin 		if (txg > spa_last_synced_txg(spa) || txg > spa_freeze_txg(spa))
1482fa9e4066Sahrens 			lwb = zil_lwb_commit(zilog, itx, lwb);
14835002558fSNeil Perrin 		list_remove(&zilog->zl_itx_commit_list, itx);
14845002558fSNeil Perrin 		kmem_free(itx, offsetof(itx_t, itx_lr)
14855002558fSNeil Perrin 		    + itx->itx_lr.lrc_reclen);
1486fa9e4066Sahrens 	}
1487b19a79ecSperrin 	DTRACE_PROBE1(zil__cw2, zilog_t *, zilog);
1488fa9e4066Sahrens 
1489fa9e4066Sahrens 	/* write the last block out */
149067bd71c6Sperrin 	if (lwb != NULL && lwb->lwb_zio != NULL)
1491fa9e4066Sahrens 		lwb = zil_lwb_write_start(zilog, lwb);
1492fa9e4066Sahrens 
149322ac5be4Sperrin 	zilog->zl_cur_used = 0;
1494fa9e4066Sahrens 
1495fa9e4066Sahrens 	/*
1496b19a79ecSperrin 	 * Wait if necessary for the log blocks to be on stable storage.
1497fa9e4066Sahrens 	 */
1498b19a79ecSperrin 	if (zilog->zl_root_zio) {
1499b24ab676SJeff Bonwick 		error = zio_wait(zilog->zl_root_zio);
1500e14bb325SJeff Bonwick 		zilog->zl_root_zio = NULL;
150117f17c2dSbonwick 		zil_flush_vdevs(zilog);
1502fa9e4066Sahrens 	}
150322ac5be4Sperrin 
1504b24ab676SJeff Bonwick 	if (error || lwb == NULL)
1505fa9e4066Sahrens 		txg_wait_synced(zilog->zl_dmu_pool, 0);
150667bd71c6Sperrin 
150767bd71c6Sperrin 	mutex_enter(&zilog->zl_lock);
1508b24ab676SJeff Bonwick 
1509b24ab676SJeff Bonwick 	/*
1510b24ab676SJeff Bonwick 	 * Remember the highest committed log sequence number for ztest.
1511b24ab676SJeff Bonwick 	 * We only update this value when all the log writes succeeded,
1512b24ab676SJeff Bonwick 	 * because ztest wants to ASSERT that it got the whole log chain.
1513b24ab676SJeff Bonwick 	 */
1514b24ab676SJeff Bonwick 	if (error == 0 && lwb != NULL)
1515b24ab676SJeff Bonwick 		zilog->zl_commit_lr_seq = zilog->zl_lr_seq;
1516b19a79ecSperrin }
1517b19a79ecSperrin 
1518b19a79ecSperrin /*
15195002558fSNeil Perrin  * Commit zfs transactions to stable storage.
1520b19a79ecSperrin  * If foid is 0 push out all transactions, otherwise push only those
15215002558fSNeil Perrin  * for that object or might reference that object.
15225002558fSNeil Perrin  *
15235002558fSNeil Perrin  * itxs are committed in batches. In a heavily stressed zil there will be
15245002558fSNeil Perrin  * a commit writer thread who is writing out a bunch of itxs to the log
15255002558fSNeil Perrin  * for a set of committing threads (cthreads) in the same batch as the writer.
15265002558fSNeil Perrin  * Those cthreads are all waiting on the same cv for that batch.
15275002558fSNeil Perrin  *
15285002558fSNeil Perrin  * There will also be a different and growing batch of threads that are
15295002558fSNeil Perrin  * waiting to commit (qthreads). When the committing batch completes
15305002558fSNeil Perrin  * a transition occurs such that the cthreads exit and the qthreads become
15315002558fSNeil Perrin  * cthreads. One of the new cthreads becomes the writer thread for the
15325002558fSNeil Perrin  * batch. Any new threads arriving become new qthreads.
15335002558fSNeil Perrin  *
15345002558fSNeil Perrin  * Only 2 condition variables are needed and there's no transition
15355002558fSNeil Perrin  * between the two cvs needed. They just flip-flop between qthreads
15365002558fSNeil Perrin  * and cthreads.
15375002558fSNeil Perrin  *
15385002558fSNeil Perrin  * Using this scheme we can efficiently wakeup up only those threads
15395002558fSNeil Perrin  * that have been committed.
1540b19a79ecSperrin  */
1541b19a79ecSperrin void
15425002558fSNeil Perrin zil_commit(zilog_t *zilog, uint64_t foid)
1543b19a79ecSperrin {
15445002558fSNeil Perrin 	uint64_t mybatch;
1545b19a79ecSperrin 
15465002558fSNeil Perrin 	if (zilog->zl_sync == ZFS_SYNC_DISABLED)
15475002558fSNeil Perrin 		return;
1548b19a79ecSperrin 
15495002558fSNeil Perrin 	/* move the async itxs for the foid to the sync queues */
15505002558fSNeil Perrin 	zil_async_to_sync(zilog, foid);
1551b19a79ecSperrin 
15525002558fSNeil Perrin 	mutex_enter(&zilog->zl_lock);
15535002558fSNeil Perrin 	mybatch = zilog->zl_next_batch;
155467bd71c6Sperrin 	while (zilog->zl_writer) {
15555002558fSNeil Perrin 		cv_wait(&zilog->zl_cv_batch[mybatch & 1], &zilog->zl_lock);
15565002558fSNeil Perrin 		if (mybatch <= zilog->zl_com_batch) {
155767bd71c6Sperrin 			mutex_exit(&zilog->zl_lock);
155867bd71c6Sperrin 			return;
155967bd71c6Sperrin 		}
156067bd71c6Sperrin 	}
1561b24ab676SJeff Bonwick 
15625002558fSNeil Perrin 	zilog->zl_next_batch++;
15635002558fSNeil Perrin 	zilog->zl_writer = B_TRUE;
15645002558fSNeil Perrin 	zil_commit_writer(zilog);
15655002558fSNeil Perrin 	zilog->zl_com_batch = mybatch;
15665002558fSNeil Perrin 	zilog->zl_writer = B_FALSE;
15675002558fSNeil Perrin 	mutex_exit(&zilog->zl_lock);
1568b24ab676SJeff Bonwick 
15695002558fSNeil Perrin 	/* wake up one thread to become the next writer */
15705002558fSNeil Perrin 	cv_signal(&zilog->zl_cv_batch[(mybatch+1) & 1]);
1571b24ab676SJeff Bonwick 
15725002558fSNeil Perrin 	/* wake up all threads waiting for this batch to be committed */
15735002558fSNeil Perrin 	cv_broadcast(&zilog->zl_cv_batch[mybatch & 1]);
1574b24ab676SJeff Bonwick }
1575b24ab676SJeff Bonwick 
1576fa9e4066Sahrens /*
1577fa9e4066Sahrens  * Called in syncing context to free committed log blocks and update log header.
1578fa9e4066Sahrens  */
1579fa9e4066Sahrens void
1580fa9e4066Sahrens zil_sync(zilog_t *zilog, dmu_tx_t *tx)
1581fa9e4066Sahrens {
1582d80c45e0Sbonwick 	zil_header_t *zh = zil_header_in_syncing_context(zilog);
1583fa9e4066Sahrens 	uint64_t txg = dmu_tx_get_txg(tx);
1584fa9e4066Sahrens 	spa_t *spa = zilog->zl_spa;
1585b24ab676SJeff Bonwick 	uint64_t *replayed_seq = &zilog->zl_replayed_seq[txg & TXG_MASK];
1586fa9e4066Sahrens 	lwb_t *lwb;
1587fa9e4066Sahrens 
158814843421SMatthew Ahrens 	/*
158914843421SMatthew Ahrens 	 * We don't zero out zl_destroy_txg, so make sure we don't try
159014843421SMatthew Ahrens 	 * to destroy it twice.
159114843421SMatthew Ahrens 	 */
159214843421SMatthew Ahrens 	if (spa_sync_pass(spa) != 1)
159314843421SMatthew Ahrens 		return;
159414843421SMatthew Ahrens 
1595d80c45e0Sbonwick 	mutex_enter(&zilog->zl_lock);
1596d80c45e0Sbonwick 
1597fa9e4066Sahrens 	ASSERT(zilog->zl_stop_sync == 0);
1598fa9e4066Sahrens 
1599b24ab676SJeff Bonwick 	if (*replayed_seq != 0) {
1600b24ab676SJeff Bonwick 		ASSERT(zh->zh_replay_seq < *replayed_seq);
1601b24ab676SJeff Bonwick 		zh->zh_replay_seq = *replayed_seq;
1602b24ab676SJeff Bonwick 		*replayed_seq = 0;
1603b24ab676SJeff Bonwick 	}
1604fa9e4066Sahrens 
1605fa9e4066Sahrens 	if (zilog->zl_destroy_txg == txg) {
1606d80c45e0Sbonwick 		blkptr_t blk = zh->zh_log;
1607d80c45e0Sbonwick 
1608d80c45e0Sbonwick 		ASSERT(list_head(&zilog->zl_lwb_list) == NULL);
1609d80c45e0Sbonwick 
1610d80c45e0Sbonwick 		bzero(zh, sizeof (zil_header_t));
16111209a471SNeil Perrin 		bzero(zilog->zl_replayed_seq, sizeof (zilog->zl_replayed_seq));
1612d80c45e0Sbonwick 
1613d80c45e0Sbonwick 		if (zilog->zl_keep_first) {
1614d80c45e0Sbonwick 			/*
1615d80c45e0Sbonwick 			 * If this block was part of log chain that couldn't
1616d80c45e0Sbonwick 			 * be claimed because a device was missing during
1617d80c45e0Sbonwick 			 * zil_claim(), but that device later returns,
1618d80c45e0Sbonwick 			 * then this block could erroneously appear valid.
1619d80c45e0Sbonwick 			 * To guard against this, assign a new GUID to the new
1620d80c45e0Sbonwick 			 * log chain so it doesn't matter what blk points to.
1621d80c45e0Sbonwick 			 */
1622d80c45e0Sbonwick 			zil_init_log_chain(zilog, &blk);
1623d80c45e0Sbonwick 			zh->zh_log = blk;
1624d80c45e0Sbonwick 		}
1625fa9e4066Sahrens 	}
1626fa9e4066Sahrens 
1627e6ca193dSGeorge Wilson 	while ((lwb = list_head(&zilog->zl_lwb_list)) != NULL) {
1628b19a79ecSperrin 		zh->zh_log = lwb->lwb_blk;
1629fa9e4066Sahrens 		if (lwb->lwb_buf != NULL || lwb->lwb_max_txg > txg)
1630fa9e4066Sahrens 			break;
1631fa9e4066Sahrens 		list_remove(&zilog->zl_lwb_list, lwb);
1632b24ab676SJeff Bonwick 		zio_free_zil(spa, txg, &lwb->lwb_blk);
1633fa9e4066Sahrens 		kmem_cache_free(zil_lwb_cache, lwb);
1634d63d470bSgw 
1635d63d470bSgw 		/*
1636d63d470bSgw 		 * If we don't have anything left in the lwb list then
1637d63d470bSgw 		 * we've had an allocation failure and we need to zero
1638d63d470bSgw 		 * out the zil_header blkptr so that we don't end
1639d63d470bSgw 		 * up freeing the same block twice.
1640d63d470bSgw 		 */
1641d63d470bSgw 		if (list_head(&zilog->zl_lwb_list) == NULL)
1642d63d470bSgw 			BP_ZERO(&zh->zh_log);
1643fa9e4066Sahrens 	}
1644fa9e4066Sahrens 	mutex_exit(&zilog->zl_lock);
1645fa9e4066Sahrens }
1646fa9e4066Sahrens 
1647fa9e4066Sahrens void
1648fa9e4066Sahrens zil_init(void)
1649fa9e4066Sahrens {
1650fa9e4066Sahrens 	zil_lwb_cache = kmem_cache_create("zil_lwb_cache",
16515ad82045Snd 	    sizeof (struct lwb), 0, NULL, NULL, NULL, NULL, NULL, 0);
1652fa9e4066Sahrens }
1653fa9e4066Sahrens 
1654fa9e4066Sahrens void
1655fa9e4066Sahrens zil_fini(void)
1656fa9e4066Sahrens {
1657fa9e4066Sahrens 	kmem_cache_destroy(zil_lwb_cache);
1658fa9e4066Sahrens }
1659fa9e4066Sahrens 
166055da60b9SMark J Musante void
166155da60b9SMark J Musante zil_set_sync(zilog_t *zilog, uint64_t sync)
166255da60b9SMark J Musante {
166355da60b9SMark J Musante 	zilog->zl_sync = sync;
166455da60b9SMark J Musante }
166555da60b9SMark J Musante 
1666e09fa4daSNeil Perrin void
1667e09fa4daSNeil Perrin zil_set_logbias(zilog_t *zilog, uint64_t logbias)
1668e09fa4daSNeil Perrin {
1669e09fa4daSNeil Perrin 	zilog->zl_logbias = logbias;
1670e09fa4daSNeil Perrin }
1671e09fa4daSNeil Perrin 
1672fa9e4066Sahrens zilog_t *
1673fa9e4066Sahrens zil_alloc(objset_t *os, zil_header_t *zh_phys)
1674fa9e4066Sahrens {
1675fa9e4066Sahrens 	zilog_t *zilog;
1676fa9e4066Sahrens 
1677fa9e4066Sahrens 	zilog = kmem_zalloc(sizeof (zilog_t), KM_SLEEP);
1678fa9e4066Sahrens 
1679fa9e4066Sahrens 	zilog->zl_header = zh_phys;
1680fa9e4066Sahrens 	zilog->zl_os = os;
1681fa9e4066Sahrens 	zilog->zl_spa = dmu_objset_spa(os);
1682fa9e4066Sahrens 	zilog->zl_dmu_pool = dmu_objset_pool(os);
1683d80c45e0Sbonwick 	zilog->zl_destroy_txg = TXG_INITIAL - 1;
1684e09fa4daSNeil Perrin 	zilog->zl_logbias = dmu_objset_logbias(os);
168555da60b9SMark J Musante 	zilog->zl_sync = dmu_objset_syncprop(os);
16865002558fSNeil Perrin 	zilog->zl_next_batch = 1;
1687fa9e4066Sahrens 
16885ad82045Snd 	mutex_init(&zilog->zl_lock, NULL, MUTEX_DEFAULT, NULL);
16895ad82045Snd 
16905002558fSNeil Perrin 	for (int i = 0; i < TXG_SIZE; i++) {
16915002558fSNeil Perrin 		mutex_init(&zilog->zl_itxg[i].itxg_lock, NULL,
16925002558fSNeil Perrin 		    MUTEX_DEFAULT, NULL);
16935002558fSNeil Perrin 	}
1694fa9e4066Sahrens 
1695fa9e4066Sahrens 	list_create(&zilog->zl_lwb_list, sizeof (lwb_t),
1696fa9e4066Sahrens 	    offsetof(lwb_t, lwb_node));
1697fa9e4066Sahrens 
16985002558fSNeil Perrin 	list_create(&zilog->zl_itx_commit_list, sizeof (itx_t),
16995002558fSNeil Perrin 	    offsetof(itx_t, itx_node));
17005002558fSNeil Perrin 
170117f17c2dSbonwick 	mutex_init(&zilog->zl_vdev_lock, NULL, MUTEX_DEFAULT, NULL);
170217f17c2dSbonwick 
170317f17c2dSbonwick 	avl_create(&zilog->zl_vdev_tree, zil_vdev_compare,
170417f17c2dSbonwick 	    sizeof (zil_vdev_node_t), offsetof(zil_vdev_node_t, zv_node));
1705fa9e4066Sahrens 
1706b7b97454Sperrin 	cv_init(&zilog->zl_cv_writer, NULL, CV_DEFAULT, NULL);
1707b7b97454Sperrin 	cv_init(&zilog->zl_cv_suspend, NULL, CV_DEFAULT, NULL);
17085002558fSNeil Perrin 	cv_init(&zilog->zl_cv_batch[0], NULL, CV_DEFAULT, NULL);
17095002558fSNeil Perrin 	cv_init(&zilog->zl_cv_batch[1], NULL, CV_DEFAULT, NULL);
1710b7b97454Sperrin 
1711fa9e4066Sahrens 	return (zilog);
1712fa9e4066Sahrens }
1713fa9e4066Sahrens 
1714fa9e4066Sahrens void
1715fa9e4066Sahrens zil_free(zilog_t *zilog)
1716fa9e4066Sahrens {
1717fa9e4066Sahrens 	zilog->zl_stop_sync = 1;
1718fa9e4066Sahrens 
17193b2aab18SMatthew Ahrens 	ASSERT0(zilog->zl_suspend);
17203b2aab18SMatthew Ahrens 	ASSERT0(zilog->zl_suspending);
17213b2aab18SMatthew Ahrens 
1722c9ba2a43SEric Schrock 	ASSERT(list_is_empty(&zilog->zl_lwb_list));
1723fa9e4066Sahrens 	list_destroy(&zilog->zl_lwb_list);
1724fa9e4066Sahrens 
172517f17c2dSbonwick 	avl_destroy(&zilog->zl_vdev_tree);
172617f17c2dSbonwick 	mutex_destroy(&zilog->zl_vdev_lock);
1727fa9e4066Sahrens 
17285002558fSNeil Perrin 	ASSERT(list_is_empty(&zilog->zl_itx_commit_list));
17295002558fSNeil Perrin 	list_destroy(&zilog->zl_itx_commit_list);
17305002558fSNeil Perrin 
17315002558fSNeil Perrin 	for (int i = 0; i < TXG_SIZE; i++) {
17325002558fSNeil Perrin 		/*
17335002558fSNeil Perrin 		 * It's possible for an itx to be generated that doesn't dirty
17345002558fSNeil Perrin 		 * a txg (e.g. ztest TX_TRUNCATE). So there's no zil_clean()
17355002558fSNeil Perrin 		 * callback to remove the entry. We remove those here.
17365002558fSNeil Perrin 		 *
17375002558fSNeil Perrin 		 * Also free up the ziltest itxs.
17385002558fSNeil Perrin 		 */
17395002558fSNeil Perrin 		if (zilog->zl_itxg[i].itxg_itxs)
17405002558fSNeil Perrin 			zil_itxg_clean(zilog->zl_itxg[i].itxg_itxs);
17415002558fSNeil Perrin 		mutex_destroy(&zilog->zl_itxg[i].itxg_lock);
17425002558fSNeil Perrin 	}
17435002558fSNeil Perrin 
17445ad82045Snd 	mutex_destroy(&zilog->zl_lock);
1745fa9e4066Sahrens 
1746b7b97454Sperrin 	cv_destroy(&zilog->zl_cv_writer);
1747b7b97454Sperrin 	cv_destroy(&zilog->zl_cv_suspend);
17485002558fSNeil Perrin 	cv_destroy(&zilog->zl_cv_batch[0]);
17495002558fSNeil Perrin 	cv_destroy(&zilog->zl_cv_batch[1]);
1750b7b97454Sperrin 
1751fa9e4066Sahrens 	kmem_free(zilog, sizeof (zilog_t));
1752fa9e4066Sahrens }
1753fa9e4066Sahrens 
1754fa9e4066Sahrens /*
1755fa9e4066Sahrens  * Open an intent log.
1756fa9e4066Sahrens  */
1757fa9e4066Sahrens zilog_t *
1758fa9e4066Sahrens zil_open(objset_t *os, zil_get_data_t *get_data)
1759fa9e4066Sahrens {
1760fa9e4066Sahrens 	zilog_t *zilog = dmu_objset_zil(os);
1761fa9e4066Sahrens 
1762c9ba2a43SEric Schrock 	ASSERT(zilog->zl_clean_taskq == NULL);
1763c9ba2a43SEric Schrock 	ASSERT(zilog->zl_get_data == NULL);
1764c9ba2a43SEric Schrock 	ASSERT(list_is_empty(&zilog->zl_lwb_list));
1765c9ba2a43SEric Schrock 
1766fa9e4066Sahrens 	zilog->zl_get_data = get_data;
1767fa9e4066Sahrens 	zilog->zl_clean_taskq = taskq_create("zil_clean", 1, minclsyspri,
1768fa9e4066Sahrens 	    2, 2, TASKQ_PREPOPULATE);
1769fa9e4066Sahrens 
1770fa9e4066Sahrens 	return (zilog);
1771fa9e4066Sahrens }
1772fa9e4066Sahrens 
1773fa9e4066Sahrens /*
1774fa9e4066Sahrens  * Close an intent log.
1775fa9e4066Sahrens  */
1776fa9e4066Sahrens void
1777fa9e4066Sahrens zil_close(zilog_t *zilog)
1778fa9e4066Sahrens {
1779c9ba2a43SEric Schrock 	lwb_t *lwb;
17805002558fSNeil Perrin 	uint64_t txg = 0;
17815002558fSNeil Perrin 
17825002558fSNeil Perrin 	zil_commit(zilog, 0); /* commit all itx */
17835002558fSNeil Perrin 
1784d80c45e0Sbonwick 	/*
17855002558fSNeil Perrin 	 * The lwb_max_txg for the stubby lwb will reflect the last activity
17865002558fSNeil Perrin 	 * for the zil.  After a txg_wait_synced() on the txg we know all the
17875002558fSNeil Perrin 	 * callbacks have occurred that may clean the zil.  Only then can we
17885002558fSNeil Perrin 	 * destroy the zl_clean_taskq.
1789d80c45e0Sbonwick 	 */
17905002558fSNeil Perrin 	mutex_enter(&zilog->zl_lock);
1791c9ba2a43SEric Schrock 	lwb = list_tail(&zilog->zl_lwb_list);
1792c9ba2a43SEric Schrock 	if (lwb != NULL)
1793c9ba2a43SEric Schrock 		txg = lwb->lwb_max_txg;
17945002558fSNeil Perrin 	mutex_exit(&zilog->zl_lock);
17955002558fSNeil Perrin 	if (txg)
1796d80c45e0Sbonwick 		txg_wait_synced(zilog->zl_dmu_pool, txg);
1797ce636f8bSMatthew Ahrens 	ASSERT(!zilog_is_dirty(zilog));
1798d80c45e0Sbonwick 
1799fa9e4066Sahrens 	taskq_destroy(zilog->zl_clean_taskq);
1800fa9e4066Sahrens 	zilog->zl_clean_taskq = NULL;
1801fa9e4066Sahrens 	zilog->zl_get_data = NULL;
1802c9ba2a43SEric Schrock 
1803c9ba2a43SEric Schrock 	/*
1804c9ba2a43SEric Schrock 	 * We should have only one LWB left on the list; remove it now.
1805c9ba2a43SEric Schrock 	 */
1806c9ba2a43SEric Schrock 	mutex_enter(&zilog->zl_lock);
1807c9ba2a43SEric Schrock 	lwb = list_head(&zilog->zl_lwb_list);
1808c9ba2a43SEric Schrock 	if (lwb != NULL) {
1809c9ba2a43SEric Schrock 		ASSERT(lwb == list_tail(&zilog->zl_lwb_list));
1810c9ba2a43SEric Schrock 		list_remove(&zilog->zl_lwb_list, lwb);
1811c9ba2a43SEric Schrock 		zio_buf_free(lwb->lwb_buf, lwb->lwb_sz);
1812c9ba2a43SEric Schrock 		kmem_cache_free(zil_lwb_cache, lwb);
1813c9ba2a43SEric Schrock 	}
1814c9ba2a43SEric Schrock 	mutex_exit(&zilog->zl_lock);
1815fa9e4066Sahrens }
1816fa9e4066Sahrens 
18173b2aab18SMatthew Ahrens static char *suspend_tag = "zil suspending";
18183b2aab18SMatthew Ahrens 
1819fa9e4066Sahrens /*
1820fa9e4066Sahrens  * Suspend an intent log.  While in suspended mode, we still honor
1821fa9e4066Sahrens  * synchronous semantics, but we rely on txg_wait_synced() to do it.
18223b2aab18SMatthew Ahrens  * On old version pools, we suspend the log briefly when taking a
18233b2aab18SMatthew Ahrens  * snapshot so that it will have an empty intent log.
18243b2aab18SMatthew Ahrens  *
18253b2aab18SMatthew Ahrens  * Long holds are not really intended to be used the way we do here --
18263b2aab18SMatthew Ahrens  * held for such a short time.  A concurrent caller of dsl_dataset_long_held()
18273b2aab18SMatthew Ahrens  * could fail.  Therefore we take pains to only put a long hold if it is
18283b2aab18SMatthew Ahrens  * actually necessary.  Fortunately, it will only be necessary if the
18293b2aab18SMatthew Ahrens  * objset is currently mounted (or the ZVOL equivalent).  In that case it
18303b2aab18SMatthew Ahrens  * will already have a long hold, so we are not really making things any worse.
18313b2aab18SMatthew Ahrens  *
18323b2aab18SMatthew Ahrens  * Ideally, we would locate the existing long-holder (i.e. the zfsvfs_t or
18333b2aab18SMatthew Ahrens  * zvol_state_t), and use their mechanism to prevent their hold from being
18343b2aab18SMatthew Ahrens  * dropped (e.g. VFS_HOLD()).  However, that would be even more pain for
18353b2aab18SMatthew Ahrens  * very little gain.
18363b2aab18SMatthew Ahrens  *
18373b2aab18SMatthew Ahrens  * if cookiep == NULL, this does both the suspend & resume.
18383b2aab18SMatthew Ahrens  * Otherwise, it returns with the dataset "long held", and the cookie
18393b2aab18SMatthew Ahrens  * should be passed into zil_resume().
1840fa9e4066Sahrens  */
1841fa9e4066Sahrens int
18423b2aab18SMatthew Ahrens zil_suspend(const char *osname, void **cookiep)
1843fa9e4066Sahrens {
18443b2aab18SMatthew Ahrens 	objset_t *os;
18453b2aab18SMatthew Ahrens 	zilog_t *zilog;
18463b2aab18SMatthew Ahrens 	const zil_header_t *zh;
18473b2aab18SMatthew Ahrens 	int error;
18483b2aab18SMatthew Ahrens 
18493b2aab18SMatthew Ahrens 	error = dmu_objset_hold(osname, suspend_tag, &os);
18503b2aab18SMatthew Ahrens 	if (error != 0)
18513b2aab18SMatthew Ahrens 		return (error);
18523b2aab18SMatthew Ahrens 	zilog = dmu_objset_zil(os);
1853fa9e4066Sahrens 
1854fa9e4066Sahrens 	mutex_enter(&zilog->zl_lock);
18553b2aab18SMatthew Ahrens 	zh = zilog->zl_header;
18563b2aab18SMatthew Ahrens 
18573589c4f0SNeil Perrin 	if (zh->zh_flags & ZIL_REPLAY_NEEDED) {		/* unplayed log */
1858fa9e4066Sahrens 		mutex_exit(&zilog->zl_lock);
18593b2aab18SMatthew Ahrens 		dmu_objset_rele(os, suspend_tag);
1860be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
1861fa9e4066Sahrens 	}
18623b2aab18SMatthew Ahrens 
18633b2aab18SMatthew Ahrens 	/*
18643b2aab18SMatthew Ahrens 	 * Don't put a long hold in the cases where we can avoid it.  This
18653b2aab18SMatthew Ahrens 	 * is when there is no cookie so we are doing a suspend & resume
18663b2aab18SMatthew Ahrens 	 * (i.e. called from zil_vdev_offline()), and there's nothing to do
18673b2aab18SMatthew Ahrens 	 * for the suspend because it's already suspended, or there's no ZIL.
18683b2aab18SMatthew Ahrens 	 */
18693b2aab18SMatthew Ahrens 	if (cookiep == NULL && !zilog->zl_suspending &&
18703b2aab18SMatthew Ahrens 	    (zilog->zl_suspend > 0 || BP_IS_HOLE(&zh->zh_log))) {
18713b2aab18SMatthew Ahrens 		mutex_exit(&zilog->zl_lock);
18723b2aab18SMatthew Ahrens 		dmu_objset_rele(os, suspend_tag);
18733b2aab18SMatthew Ahrens 		return (0);
18743b2aab18SMatthew Ahrens 	}
18753b2aab18SMatthew Ahrens 
18763b2aab18SMatthew Ahrens 	dsl_dataset_long_hold(dmu_objset_ds(os), suspend_tag);
18773b2aab18SMatthew Ahrens 	dsl_pool_rele(dmu_objset_pool(os), suspend_tag);
18783b2aab18SMatthew Ahrens 
18793b2aab18SMatthew Ahrens 	zilog->zl_suspend++;
18803b2aab18SMatthew Ahrens 
18813b2aab18SMatthew Ahrens 	if (zilog->zl_suspend > 1) {
1882d80c45e0Sbonwick 		/*
18833b2aab18SMatthew Ahrens 		 * Someone else is already suspending it.
1884d80c45e0Sbonwick 		 * Just wait for them to finish.
1885d80c45e0Sbonwick 		 */
18863b2aab18SMatthew Ahrens 
1887d80c45e0Sbonwick 		while (zilog->zl_suspending)
1888d80c45e0Sbonwick 			cv_wait(&zilog->zl_cv_suspend, &zilog->zl_lock);
1889d80c45e0Sbonwick 		mutex_exit(&zilog->zl_lock);
18903b2aab18SMatthew Ahrens 
18913b2aab18SMatthew Ahrens 		if (cookiep == NULL)
18923b2aab18SMatthew Ahrens 			zil_resume(os);
18933b2aab18SMatthew Ahrens 		else
18943b2aab18SMatthew Ahrens 			*cookiep = os;
18953b2aab18SMatthew Ahrens 		return (0);
18963b2aab18SMatthew Ahrens 	}
18973b2aab18SMatthew Ahrens 
18983b2aab18SMatthew Ahrens 	/*
18993b2aab18SMatthew Ahrens 	 * If there is no pointer to an on-disk block, this ZIL must not
19003b2aab18SMatthew Ahrens 	 * be active (e.g. filesystem not mounted), so there's nothing
19013b2aab18SMatthew Ahrens 	 * to clean up.
19023b2aab18SMatthew Ahrens 	 */
19033b2aab18SMatthew Ahrens 	if (BP_IS_HOLE(&zh->zh_log)) {
19043b2aab18SMatthew Ahrens 		ASSERT(cookiep != NULL); /* fast path already handled */
19053b2aab18SMatthew Ahrens 
19063b2aab18SMatthew Ahrens 		*cookiep = os;
19073b2aab18SMatthew Ahrens 		mutex_exit(&zilog->zl_lock);
1908d80c45e0Sbonwick 		return (0);
1909d80c45e0Sbonwick 	}
19103b2aab18SMatthew Ahrens 
1911d80c45e0Sbonwick 	zilog->zl_suspending = B_TRUE;
1912fa9e4066Sahrens 	mutex_exit(&zilog->zl_lock);
1913fa9e4066Sahrens 
19145002558fSNeil Perrin 	zil_commit(zilog, 0);
1915fa9e4066Sahrens 
1916d80c45e0Sbonwick 	zil_destroy(zilog, B_FALSE);
1917d80c45e0Sbonwick 
1918d80c45e0Sbonwick 	mutex_enter(&zilog->zl_lock);
1919d80c45e0Sbonwick 	zilog->zl_suspending = B_FALSE;
1920d80c45e0Sbonwick 	cv_broadcast(&zilog->zl_cv_suspend);
1921d80c45e0Sbonwick 	mutex_exit(&zilog->zl_lock);
1922fa9e4066Sahrens 
19233b2aab18SMatthew Ahrens 	if (cookiep == NULL)
19243b2aab18SMatthew Ahrens 		zil_resume(os);
19253b2aab18SMatthew Ahrens 	else
19263b2aab18SMatthew Ahrens 		*cookiep = os;
1927fa9e4066Sahrens 	return (0);
1928fa9e4066Sahrens }
1929fa9e4066Sahrens 
1930fa9e4066Sahrens void
19313b2aab18SMatthew Ahrens zil_resume(void *cookie)
1932fa9e4066Sahrens {
19333b2aab18SMatthew Ahrens 	objset_t *os = cookie;
19343b2aab18SMatthew Ahrens 	zilog_t *zilog = dmu_objset_zil(os);
19353b2aab18SMatthew Ahrens 
1936fa9e4066Sahrens 	mutex_enter(&zilog->zl_lock);
1937fa9e4066Sahrens 	ASSERT(zilog->zl_suspend != 0);
1938fa9e4066Sahrens 	zilog->zl_suspend--;
1939fa9e4066Sahrens 	mutex_exit(&zilog->zl_lock);
19403b2aab18SMatthew Ahrens 	dsl_dataset_long_rele(dmu_objset_ds(os), suspend_tag);
19413b2aab18SMatthew Ahrens 	dsl_dataset_rele(dmu_objset_ds(os), suspend_tag);
1942fa9e4066Sahrens }
1943fa9e4066Sahrens 
1944fa9e4066Sahrens typedef struct zil_replay_arg {
1945fa9e4066Sahrens 	zil_replay_func_t **zr_replay;
1946fa9e4066Sahrens 	void		*zr_arg;
1947fa9e4066Sahrens 	boolean_t	zr_byteswap;
1948b24ab676SJeff Bonwick 	char		*zr_lr;
1949fa9e4066Sahrens } zil_replay_arg_t;
1950fa9e4066Sahrens 
1951b24ab676SJeff Bonwick static int
1952b24ab676SJeff Bonwick zil_replay_error(zilog_t *zilog, lr_t *lr, int error)
1953b24ab676SJeff Bonwick {
1954b24ab676SJeff Bonwick 	char name[MAXNAMELEN];
1955b24ab676SJeff Bonwick 
1956b24ab676SJeff Bonwick 	zilog->zl_replaying_seq--;	/* didn't actually replay this one */
1957b24ab676SJeff Bonwick 
1958b24ab676SJeff Bonwick 	dmu_objset_name(zilog->zl_os, name);
1959b24ab676SJeff Bonwick 
1960b24ab676SJeff Bonwick 	cmn_err(CE_WARN, "ZFS replay transaction error %d, "
1961b24ab676SJeff Bonwick 	    "dataset %s, seq 0x%llx, txtype %llu %s\n", error, name,
1962b24ab676SJeff Bonwick 	    (u_longlong_t)lr->lrc_seq,
1963b24ab676SJeff Bonwick 	    (u_longlong_t)(lr->lrc_txtype & ~TX_CI),
1964b24ab676SJeff Bonwick 	    (lr->lrc_txtype & TX_CI) ? "CI" : "");
1965b24ab676SJeff Bonwick 
1966b24ab676SJeff Bonwick 	return (error);
1967b24ab676SJeff Bonwick }
1968b24ab676SJeff Bonwick 
1969b24ab676SJeff Bonwick static int
1970fa9e4066Sahrens zil_replay_log_record(zilog_t *zilog, lr_t *lr, void *zra, uint64_t claim_txg)
1971fa9e4066Sahrens {
1972fa9e4066Sahrens 	zil_replay_arg_t *zr = zra;
1973d80c45e0Sbonwick 	const zil_header_t *zh = zilog->zl_header;
1974fa9e4066Sahrens 	uint64_t reclen = lr->lrc_reclen;
1975fa9e4066Sahrens 	uint64_t txtype = lr->lrc_txtype;
1976b24ab676SJeff Bonwick 	int error = 0;
1977fa9e4066Sahrens 
1978b24ab676SJeff Bonwick 	zilog->zl_replaying_seq = lr->lrc_seq;
1979fa9e4066Sahrens 
1980fa9e4066Sahrens 	if (lr->lrc_seq <= zh->zh_replay_seq)	/* already replayed */
1981b24ab676SJeff Bonwick 		return (0);
1982b24ab676SJeff Bonwick 
1983b24ab676SJeff Bonwick 	if (lr->lrc_txg < claim_txg)		/* already committed */
1984b24ab676SJeff Bonwick 		return (0);
1985fa9e4066Sahrens 
1986da6c28aaSamw 	/* Strip case-insensitive bit, still present in log record */
1987da6c28aaSamw 	txtype &= ~TX_CI;
1988da6c28aaSamw 
1989b24ab676SJeff Bonwick 	if (txtype == 0 || txtype >= TX_MAX_TYPE)
1990b24ab676SJeff Bonwick 		return (zil_replay_error(zilog, lr, EINVAL));
1991b24ab676SJeff Bonwick 
1992b24ab676SJeff Bonwick 	/*
1993b24ab676SJeff Bonwick 	 * If this record type can be logged out of order, the object
1994b24ab676SJeff Bonwick 	 * (lr_foid) may no longer exist.  That's legitimate, not an error.
1995b24ab676SJeff Bonwick 	 */
1996b24ab676SJeff Bonwick 	if (TX_OOO(txtype)) {
1997b24ab676SJeff Bonwick 		error = dmu_object_info(zilog->zl_os,
1998b24ab676SJeff Bonwick 		    ((lr_ooo_t *)lr)->lr_foid, NULL);
1999b24ab676SJeff Bonwick 		if (error == ENOENT || error == EEXIST)
2000b24ab676SJeff Bonwick 			return (0);
20011209a471SNeil Perrin 	}
20021209a471SNeil Perrin 
2003fa9e4066Sahrens 	/*
2004fa9e4066Sahrens 	 * Make a copy of the data so we can revise and extend it.
2005fa9e4066Sahrens 	 */
2006b24ab676SJeff Bonwick 	bcopy(lr, zr->zr_lr, reclen);
2007b24ab676SJeff Bonwick 
2008b24ab676SJeff Bonwick 	/*
2009b24ab676SJeff Bonwick 	 * If this is a TX_WRITE with a blkptr, suck in the data.
2010b24ab676SJeff Bonwick 	 */
2011b24ab676SJeff Bonwick 	if (txtype == TX_WRITE && reclen == sizeof (lr_write_t)) {
2012b24ab676SJeff Bonwick 		error = zil_read_log_data(zilog, (lr_write_t *)lr,
2013b24ab676SJeff Bonwick 		    zr->zr_lr + reclen);
20143b2aab18SMatthew Ahrens 		if (error != 0)
2015b24ab676SJeff Bonwick 			return (zil_replay_error(zilog, lr, error));
2016b24ab676SJeff Bonwick 	}
2017fa9e4066Sahrens 
2018fa9e4066Sahrens 	/*
2019fa9e4066Sahrens 	 * The log block containing this lr may have been byteswapped
2020fa9e4066Sahrens 	 * so that we can easily examine common fields like lrc_txtype.
2021b24ab676SJeff Bonwick 	 * However, the log is a mix of different record types, and only the
2022fa9e4066Sahrens 	 * replay vectors know how to byteswap their records.  Therefore, if
2023fa9e4066Sahrens 	 * the lr was byteswapped, undo it before invoking the replay vector.
2024fa9e4066Sahrens 	 */
2025fa9e4066Sahrens 	if (zr->zr_byteswap)
2026b24ab676SJeff Bonwick 		byteswap_uint64_array(zr->zr_lr, reclen);
2027fa9e4066Sahrens 
2028fa9e4066Sahrens 	/*
2029fa9e4066Sahrens 	 * We must now do two things atomically: replay this log record,
20301209a471SNeil Perrin 	 * and update the log header sequence number to reflect the fact that
20311209a471SNeil Perrin 	 * we did so. At the end of each replay function the sequence number
20321209a471SNeil Perrin 	 * is updated if we are in replay mode.
2033fa9e4066Sahrens 	 */
2034b24ab676SJeff Bonwick 	error = zr->zr_replay[txtype](zr->zr_arg, zr->zr_lr, zr->zr_byteswap);
20353b2aab18SMatthew Ahrens 	if (error != 0) {
203667bd71c6Sperrin 		/*
203767bd71c6Sperrin 		 * The DMU's dnode layer doesn't see removes until the txg
203867bd71c6Sperrin 		 * commits, so a subsequent claim can spuriously fail with
20391209a471SNeil Perrin 		 * EEXIST. So if we receive any error we try syncing out
2040b24ab676SJeff Bonwick 		 * any removes then retry the transaction.  Note that we
2041b24ab676SJeff Bonwick 		 * specify B_FALSE for byteswap now, so we don't do it twice.
204267bd71c6Sperrin 		 */
2043b24ab676SJeff Bonwick 		txg_wait_synced(spa_get_dsl(zilog->zl_spa), 0);
2044b24ab676SJeff Bonwick 		error = zr->zr_replay[txtype](zr->zr_arg, zr->zr_lr, B_FALSE);
20453b2aab18SMatthew Ahrens 		if (error != 0)
2046b24ab676SJeff Bonwick 			return (zil_replay_error(zilog, lr, error));
2047fa9e4066Sahrens 	}
2048b24ab676SJeff Bonwick 	return (0);
204967bd71c6Sperrin }
2050fa9e4066Sahrens 
205167bd71c6Sperrin /* ARGSUSED */
2052b24ab676SJeff Bonwick static int
205367bd71c6Sperrin zil_incr_blks(zilog_t *zilog, blkptr_t *bp, void *arg, uint64_t claim_txg)
205467bd71c6Sperrin {
205567bd71c6Sperrin 	zilog->zl_replay_blks++;
2056b24ab676SJeff Bonwick 
2057b24ab676SJeff Bonwick 	return (0);
2058fa9e4066Sahrens }
2059fa9e4066Sahrens 
2060fa9e4066Sahrens /*
206113f5297eSperrin  * If this dataset has a non-empty intent log, replay it and destroy it.
2062fa9e4066Sahrens  */
2063fa9e4066Sahrens void
20641209a471SNeil Perrin zil_replay(objset_t *os, void *arg, zil_replay_func_t *replay_func[TX_MAX_TYPE])
2065fa9e4066Sahrens {
2066fa9e4066Sahrens 	zilog_t *zilog = dmu_objset_zil(os);
2067d80c45e0Sbonwick 	const zil_header_t *zh = zilog->zl_header;
2068d80c45e0Sbonwick 	zil_replay_arg_t zr;
206913f5297eSperrin 
20703589c4f0SNeil Perrin 	if ((zh->zh_flags & ZIL_REPLAY_NEEDED) == 0) {
2071d80c45e0Sbonwick 		zil_destroy(zilog, B_TRUE);
207213f5297eSperrin 		return;
207313f5297eSperrin 	}
2074fa9e4066Sahrens 
2075fa9e4066Sahrens 	zr.zr_replay = replay_func;
2076fa9e4066Sahrens 	zr.zr_arg = arg;
2077d80c45e0Sbonwick 	zr.zr_byteswap = BP_SHOULD_BYTESWAP(&zh->zh_log);
2078b24ab676SJeff Bonwick 	zr.zr_lr = kmem_alloc(2 * SPA_MAXBLOCKSIZE, KM_SLEEP);
2079fa9e4066Sahrens 
2080fa9e4066Sahrens 	/*
2081fa9e4066Sahrens 	 * Wait for in-progress removes to sync before starting replay.
2082fa9e4066Sahrens 	 */
2083fa9e4066Sahrens 	txg_wait_synced(zilog->zl_dmu_pool, 0);
2084fa9e4066Sahrens 
20851209a471SNeil Perrin 	zilog->zl_replay = B_TRUE;
2086d3d50737SRafael Vanoni 	zilog->zl_replay_time = ddi_get_lbolt();
208767bd71c6Sperrin 	ASSERT(zilog->zl_replay_blks == 0);
208867bd71c6Sperrin 	(void) zil_parse(zilog, zil_incr_blks, zil_replay_log_record, &zr,
2089d80c45e0Sbonwick 	    zh->zh_claim_txg);
2090b24ab676SJeff Bonwick 	kmem_free(zr.zr_lr, 2 * SPA_MAXBLOCKSIZE);
2091fa9e4066Sahrens 
2092d80c45e0Sbonwick 	zil_destroy(zilog, B_FALSE);
2093a4611edeSahrens 	txg_wait_synced(zilog->zl_dmu_pool, zilog->zl_destroy_txg);
20941209a471SNeil Perrin 	zilog->zl_replay = B_FALSE;
2095fa9e4066Sahrens }
2096436b2950Sperrin 
2097b24ab676SJeff Bonwick boolean_t
2098b24ab676SJeff Bonwick zil_replaying(zilog_t *zilog, dmu_tx_t *tx)
2099436b2950Sperrin {
210055da60b9SMark J Musante 	if (zilog->zl_sync == ZFS_SYNC_DISABLED)
2101b24ab676SJeff Bonwick 		return (B_TRUE);
2102436b2950Sperrin 
2103b24ab676SJeff Bonwick 	if (zilog->zl_replay) {
2104b24ab676SJeff Bonwick 		dsl_dataset_dirty(dmu_objset_ds(zilog->zl_os), tx);
2105b24ab676SJeff Bonwick 		zilog->zl_replayed_seq[dmu_tx_get_txg(tx) & TXG_MASK] =
2106b24ab676SJeff Bonwick 		    zilog->zl_replaying_seq;
2107b24ab676SJeff Bonwick 		return (B_TRUE);
2108b19a79ecSperrin 	}
2109b19a79ecSperrin 
2110b24ab676SJeff Bonwick 	return (B_FALSE);
2111436b2950Sperrin }
2112e6ca193dSGeorge Wilson 
2113e6ca193dSGeorge Wilson /* ARGSUSED */
2114e6ca193dSGeorge Wilson int
2115fd136879SMatthew Ahrens zil_vdev_offline(const char *osname, void *arg)
2116e6ca193dSGeorge Wilson {
2117e6ca193dSGeorge Wilson 	int error;
2118e6ca193dSGeorge Wilson 
21193b2aab18SMatthew Ahrens 	error = zil_suspend(osname, NULL);
21203b2aab18SMatthew Ahrens 	if (error != 0)
2121be6fd75aSMatthew Ahrens 		return (SET_ERROR(EEXIST));
21223b2aab18SMatthew Ahrens 	return (0);
2123e6ca193dSGeorge Wilson }
2124