xref: /onnv-gate/usr/src/uts/common/fs/zfs/sys/zio.h (revision 6423)
1789Sahrens /*
2789Sahrens  * CDDL HEADER START
3789Sahrens  *
4789Sahrens  * The contents of this file are subject to the terms of the
51544Seschrock  * Common Development and Distribution License (the "License").
61544Seschrock  * You may not use this file except in compliance with the License.
7789Sahrens  *
8789Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9789Sahrens  * or http://www.opensolaris.org/os/licensing.
10789Sahrens  * See the License for the specific language governing permissions
11789Sahrens  * and limitations under the License.
12789Sahrens  *
13789Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
14789Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15789Sahrens  * If applicable, add the following below this CDDL HEADER, with the
16789Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
17789Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
18789Sahrens  *
19789Sahrens  * CDDL HEADER END
20789Sahrens  */
213886Sahl 
22789Sahrens /*
23*6423Sgw25295  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24789Sahrens  * Use is subject to license terms.
25789Sahrens  */
26789Sahrens 
27789Sahrens #ifndef _ZIO_H
28789Sahrens #define	_ZIO_H
29789Sahrens 
30789Sahrens #pragma ident	"%Z%%M%	%I%	%E% SMI"
31789Sahrens 
32789Sahrens #include <sys/zfs_context.h>
33789Sahrens #include <sys/spa.h>
34789Sahrens #include <sys/txg.h>
35789Sahrens #include <sys/avl.h>
36789Sahrens #include <sys/dkio.h>
37789Sahrens #include <sys/fs/zfs.h>
381775Sbillm #include <sys/zio_impl.h>
39789Sahrens 
40789Sahrens #ifdef	__cplusplus
41789Sahrens extern "C" {
42789Sahrens #endif
43789Sahrens 
44789Sahrens #define	ZBT_MAGIC	0x210da7ab10c7a11ULL	/* zio data bloc tail */
45789Sahrens 
46789Sahrens typedef struct zio_block_tail {
47789Sahrens 	uint64_t	zbt_magic;	/* for validation, endianness	*/
48789Sahrens 	zio_cksum_t	zbt_cksum;	/* 256-bit checksum		*/
49789Sahrens } zio_block_tail_t;
50789Sahrens 
51789Sahrens /*
52789Sahrens  * Gang block headers are self-checksumming and contain an array
53789Sahrens  * of block pointers.
54789Sahrens  */
55789Sahrens #define	SPA_GANGBLOCKSIZE	SPA_MINBLOCKSIZE
56789Sahrens #define	SPA_GBH_NBLKPTRS	((SPA_GANGBLOCKSIZE - \
57789Sahrens 	sizeof (zio_block_tail_t)) / sizeof (blkptr_t))
58789Sahrens #define	SPA_GBH_FILLER		((SPA_GANGBLOCKSIZE - \
59789Sahrens 	sizeof (zio_block_tail_t) - \
60789Sahrens 	(SPA_GBH_NBLKPTRS * sizeof (blkptr_t))) /\
61789Sahrens 	sizeof (uint64_t))
62789Sahrens 
63789Sahrens #define	ZIO_GET_IOSIZE(zio)	\
641775Sbillm 	(BP_IS_GANG((zio)->io_bp) ? \
65789Sahrens 	SPA_GANGBLOCKSIZE : BP_GET_PSIZE((zio)->io_bp))
66789Sahrens 
67789Sahrens typedef struct zio_gbh {
68789Sahrens 	blkptr_t		zg_blkptr[SPA_GBH_NBLKPTRS];
69789Sahrens 	uint64_t		zg_filler[SPA_GBH_FILLER];
70789Sahrens 	zio_block_tail_t	zg_tail;
71789Sahrens } zio_gbh_phys_t;
72789Sahrens 
73789Sahrens enum zio_checksum {
74789Sahrens 	ZIO_CHECKSUM_INHERIT = 0,
75789Sahrens 	ZIO_CHECKSUM_ON,
76789Sahrens 	ZIO_CHECKSUM_OFF,
77789Sahrens 	ZIO_CHECKSUM_LABEL,
78789Sahrens 	ZIO_CHECKSUM_GANG_HEADER,
79789Sahrens 	ZIO_CHECKSUM_ZILOG,
80789Sahrens 	ZIO_CHECKSUM_FLETCHER_2,
81789Sahrens 	ZIO_CHECKSUM_FLETCHER_4,
82789Sahrens 	ZIO_CHECKSUM_SHA256,
83789Sahrens 	ZIO_CHECKSUM_FUNCTIONS
84789Sahrens };
85789Sahrens 
86789Sahrens #define	ZIO_CHECKSUM_ON_VALUE	ZIO_CHECKSUM_FLETCHER_2
87789Sahrens #define	ZIO_CHECKSUM_DEFAULT	ZIO_CHECKSUM_ON
88789Sahrens 
89789Sahrens enum zio_compress {
90789Sahrens 	ZIO_COMPRESS_INHERIT = 0,
91789Sahrens 	ZIO_COMPRESS_ON,
92789Sahrens 	ZIO_COMPRESS_OFF,
93789Sahrens 	ZIO_COMPRESS_LZJB,
942986Sek110237 	ZIO_COMPRESS_EMPTY,
953886Sahl 	ZIO_COMPRESS_GZIP_1,
963886Sahl 	ZIO_COMPRESS_GZIP_2,
973886Sahl 	ZIO_COMPRESS_GZIP_3,
983886Sahl 	ZIO_COMPRESS_GZIP_4,
993886Sahl 	ZIO_COMPRESS_GZIP_5,
1003886Sahl 	ZIO_COMPRESS_GZIP_6,
1013886Sahl 	ZIO_COMPRESS_GZIP_7,
1023886Sahl 	ZIO_COMPRESS_GZIP_8,
1033886Sahl 	ZIO_COMPRESS_GZIP_9,
104789Sahrens 	ZIO_COMPRESS_FUNCTIONS
105789Sahrens };
106789Sahrens 
107789Sahrens #define	ZIO_COMPRESS_ON_VALUE	ZIO_COMPRESS_LZJB
108789Sahrens #define	ZIO_COMPRESS_DEFAULT	ZIO_COMPRESS_OFF
109789Sahrens 
1105329Sgw25295 #define	ZIO_FAILURE_MODE_WAIT		0
1115329Sgw25295 #define	ZIO_FAILURE_MODE_CONTINUE	1
1125329Sgw25295 #define	ZIO_FAILURE_MODE_PANIC		2
1135329Sgw25295 
114789Sahrens #define	ZIO_PRIORITY_NOW		(zio_priority_table[0])
115789Sahrens #define	ZIO_PRIORITY_SYNC_READ		(zio_priority_table[1])
116789Sahrens #define	ZIO_PRIORITY_SYNC_WRITE		(zio_priority_table[2])
117789Sahrens #define	ZIO_PRIORITY_ASYNC_READ		(zio_priority_table[3])
118789Sahrens #define	ZIO_PRIORITY_ASYNC_WRITE	(zio_priority_table[4])
119789Sahrens #define	ZIO_PRIORITY_FREE		(zio_priority_table[5])
120789Sahrens #define	ZIO_PRIORITY_CACHE_FILL		(zio_priority_table[6])
121789Sahrens #define	ZIO_PRIORITY_LOG_WRITE		(zio_priority_table[7])
122789Sahrens #define	ZIO_PRIORITY_RESILVER		(zio_priority_table[8])
123789Sahrens #define	ZIO_PRIORITY_SCRUB		(zio_priority_table[9])
124789Sahrens #define	ZIO_PRIORITY_TABLE_SIZE		10
125789Sahrens 
1261544Seschrock #define	ZIO_FLAG_MUSTSUCCEED		0x00000
1271544Seschrock #define	ZIO_FLAG_CANFAIL		0x00001
1281544Seschrock #define	ZIO_FLAG_FAILFAST		0x00002
1291544Seschrock #define	ZIO_FLAG_CONFIG_HELD		0x00004
1303463Sahrens #define	ZIO_FLAG_CONFIG_GRABBED		0x00008
1311544Seschrock 
1321544Seschrock #define	ZIO_FLAG_DONT_CACHE		0x00010
1331544Seschrock #define	ZIO_FLAG_DONT_QUEUE		0x00020
1341544Seschrock #define	ZIO_FLAG_DONT_PROPAGATE		0x00040
1351544Seschrock #define	ZIO_FLAG_DONT_RETRY		0x00080
136789Sahrens 
1371544Seschrock #define	ZIO_FLAG_PHYSICAL		0x00100
1381544Seschrock #define	ZIO_FLAG_IO_BYPASS		0x00200
1391544Seschrock #define	ZIO_FLAG_IO_REPAIR		0x00400
1401544Seschrock #define	ZIO_FLAG_SPECULATIVE		0x00800
141789Sahrens 
1421544Seschrock #define	ZIO_FLAG_RESILVER		0x01000
1431544Seschrock #define	ZIO_FLAG_SCRUB			0x02000
1441807Sbonwick #define	ZIO_FLAG_SCRUB_THREAD		0x04000
1451807Sbonwick #define	ZIO_FLAG_SUBBLOCK		0x08000
146789Sahrens 
1471544Seschrock #define	ZIO_FLAG_NOBOOKMARK		0x10000
1482981Sahrens #define	ZIO_FLAG_USER			0x20000
1493689Sek110237 #define	ZIO_FLAG_METADATA		0x40000
1505329Sgw25295 #define	ZIO_FLAG_WRITE_RETRY		0x80000
1513689Sek110237 
152789Sahrens #define	ZIO_FLAG_GANG_INHERIT		\
153789Sahrens 	(ZIO_FLAG_CANFAIL |		\
154789Sahrens 	ZIO_FLAG_FAILFAST |		\
155789Sahrens 	ZIO_FLAG_CONFIG_HELD |		\
1565530Sbonwick 	ZIO_FLAG_DONT_CACHE |		\
157789Sahrens 	ZIO_FLAG_DONT_RETRY |		\
158789Sahrens 	ZIO_FLAG_IO_REPAIR |		\
159789Sahrens 	ZIO_FLAG_SPECULATIVE |		\
160789Sahrens 	ZIO_FLAG_RESILVER |		\
1611807Sbonwick 	ZIO_FLAG_SCRUB |		\
1625403Sgw25295 	ZIO_FLAG_SCRUB_THREAD |		\
1635403Sgw25295 	ZIO_FLAG_USER | 		\
1645403Sgw25295 	ZIO_FLAG_METADATA)
165789Sahrens 
166789Sahrens #define	ZIO_FLAG_VDEV_INHERIT		\
167789Sahrens 	(ZIO_FLAG_GANG_INHERIT |	\
168789Sahrens 	ZIO_FLAG_PHYSICAL)
169789Sahrens 
1705688Sbonwick #define	ZIO_FLAG_RETRY_INHERIT		\
1715688Sbonwick 	(ZIO_FLAG_VDEV_INHERIT |	\
1725688Sbonwick 	ZIO_FLAG_CONFIG_GRABBED |	\
1735688Sbonwick 	ZIO_FLAG_DONT_PROPAGATE |	\
1745688Sbonwick 	ZIO_FLAG_NOBOOKMARK)
1755688Sbonwick 
1765688Sbonwick 
1775530Sbonwick #define	ZIO_PIPELINE_CONTINUE		0x100
1785530Sbonwick #define	ZIO_PIPELINE_STOP		0x101
1795530Sbonwick 
180789Sahrens /*
181*6423Sgw25295  * We'll take the unused errnos, 'EBADE' and 'EBADR' (from the Convergent
182*6423Sgw25295  * graveyard) to indicate checksum errors and fragmentation.
183789Sahrens  */
184789Sahrens #define	ECKSUM	EBADE
185*6423Sgw25295 #define	EFRAGS	EBADR
186789Sahrens 
187789Sahrens typedef struct zio zio_t;
188789Sahrens typedef void zio_done_func_t(zio_t *zio);
189789Sahrens 
190789Sahrens extern uint8_t zio_priority_table[ZIO_PRIORITY_TABLE_SIZE];
191789Sahrens extern char *zio_type_name[ZIO_TYPES];
192789Sahrens 
1931544Seschrock /*
1941544Seschrock  * A bookmark is a four-tuple <objset, object, level, blkid> that uniquely
1951544Seschrock  * identifies any block in the pool.  By convention, the meta-objset (MOS)
1961544Seschrock  * is objset 0, the meta-dnode is object 0, the root block (osphys_t) is
1971544Seschrock  * level -1 of the meta-dnode, and intent log blocks (which are chained
1981544Seschrock  * off the root block) have blkid == sequence number.  In summary:
1991544Seschrock  *
2001544Seschrock  *	mos is objset 0
2011544Seschrock  *	meta-dnode is object 0
2021544Seschrock  *	root block is <objset, 0, -1, 0>
2031544Seschrock  *	intent log is <objset, 0, -1, ZIL sequence number>
2041544Seschrock  *
2051544Seschrock  * Note: this structure is called a bookmark because its first purpose was
2061544Seschrock  * to remember where to resume a pool-wide traverse.  The absolute ordering
2071544Seschrock  * for block visitation during traversal is defined in compare_bookmark().
2081544Seschrock  *
2091544Seschrock  * Note: this structure is passed between userland and the kernel.
2101544Seschrock  * Therefore it must not change size or alignment between 32/64 bit
2111544Seschrock  * compilation options.
2121544Seschrock  */
2131544Seschrock typedef struct zbookmark {
2141544Seschrock 	uint64_t	zb_objset;
2151544Seschrock 	uint64_t	zb_object;
2161544Seschrock 	int64_t		zb_level;
2171544Seschrock 	uint64_t	zb_blkid;
2181544Seschrock } zbookmark_t;
2191544Seschrock 
220789Sahrens struct zio {
221789Sahrens 	/* Core information about this I/O */
222789Sahrens 	zio_t		*io_parent;
223789Sahrens 	zio_t		*io_root;
224789Sahrens 	spa_t		*io_spa;
2251544Seschrock 	zbookmark_t	io_bookmark;
2261775Sbillm 	enum zio_checksum io_checksum;
2271775Sbillm 	enum zio_compress io_compress;
2281775Sbillm 	int		io_ndvas;
229789Sahrens 	uint64_t	io_txg;
230789Sahrens 	blkptr_t	*io_bp;
231789Sahrens 	blkptr_t	io_bp_copy;
232789Sahrens 	zio_t		*io_child;
233789Sahrens 	zio_t		*io_sibling_prev;
234789Sahrens 	zio_t		*io_sibling_next;
235789Sahrens 	zio_transform_t *io_transform_stack;
2361544Seschrock 	zio_t		*io_logical;
2375329Sgw25295 	list_node_t	zio_link_node;
238789Sahrens 
239789Sahrens 	/* Callback info */
2403547Smaybee 	zio_done_func_t	*io_ready;
241789Sahrens 	zio_done_func_t	*io_done;
242789Sahrens 	void		*io_private;
243789Sahrens 	blkptr_t	io_bp_orig;
244789Sahrens 
245789Sahrens 	/* Data represented by this I/O */
246789Sahrens 	void		*io_data;
247789Sahrens 	uint64_t	io_size;
248789Sahrens 
249789Sahrens 	/* Stuff for the vdev stack */
250789Sahrens 	vdev_t		*io_vd;
251789Sahrens 	void		*io_vsd;
252789Sahrens 	uint64_t	io_offset;
253789Sahrens 	uint64_t	io_deadline;
254789Sahrens 	uint64_t	io_timestamp;
255789Sahrens 	avl_node_t	io_offset_node;
256789Sahrens 	avl_node_t	io_deadline_node;
257789Sahrens 	avl_tree_t	*io_vdev_tree;
258789Sahrens 	zio_t		*io_delegate_list;
259789Sahrens 	zio_t		*io_delegate_next;
260789Sahrens 
261789Sahrens 	/* Internal pipeline state */
262789Sahrens 	int		io_flags;
2635329Sgw25295 	int		io_orig_flags;
2641775Sbillm 	enum zio_type	io_type;
2651775Sbillm 	enum zio_stage	io_stage;
2665329Sgw25295 	enum zio_stage	io_orig_stage;
267789Sahrens 	uint8_t		io_stalled;
268789Sahrens 	uint8_t		io_priority;
269789Sahrens 	struct dk_callback io_dk_callback;
270789Sahrens 	int		io_cmd;
271789Sahrens 	int		io_retries;
272789Sahrens 	int		io_error;
273789Sahrens 	uint32_t	io_numerrors;
274789Sahrens 	uint32_t	io_pipeline;
2755329Sgw25295 	uint32_t	io_orig_pipeline;
276789Sahrens 	uint64_t	io_children_notready;
277789Sahrens 	uint64_t	io_children_notdone;
278789Sahrens 	void		*io_waiter;
279789Sahrens 	kmutex_t	io_lock;
280789Sahrens 	kcondvar_t	io_cv;
2811544Seschrock 
2821544Seschrock 	/* FMA state */
2831544Seschrock 	uint64_t	io_ena;
284789Sahrens };
285789Sahrens 
286789Sahrens extern zio_t *zio_null(zio_t *pio, spa_t *spa,
287789Sahrens     zio_done_func_t *done, void *private, int flags);
288789Sahrens 
289789Sahrens extern zio_t *zio_root(spa_t *spa,
290789Sahrens     zio_done_func_t *done, void *private, int flags);
291789Sahrens 
292789Sahrens extern zio_t *zio_read(zio_t *pio, spa_t *spa, blkptr_t *bp, void *data,
293789Sahrens     uint64_t size, zio_done_func_t *done, void *private,
2941544Seschrock     int priority, int flags, zbookmark_t *zb);
295789Sahrens 
296789Sahrens extern zio_t *zio_write(zio_t *pio, spa_t *spa, int checksum, int compress,
2971775Sbillm     int ncopies, uint64_t txg, blkptr_t *bp, void *data, uint64_t size,
2983547Smaybee     zio_done_func_t *ready, zio_done_func_t *done, void *private, int priority,
2993547Smaybee     int flags, zbookmark_t *zb);
300789Sahrens 
301789Sahrens extern zio_t *zio_rewrite(zio_t *pio, spa_t *spa, int checksum,
302789Sahrens     uint64_t txg, blkptr_t *bp, void *data, uint64_t size,
3031544Seschrock     zio_done_func_t *done, void *private, int priority, int flags,
3041544Seschrock     zbookmark_t *zb);
305789Sahrens 
306789Sahrens extern zio_t *zio_free(zio_t *pio, spa_t *spa, uint64_t txg, blkptr_t *bp,
307789Sahrens     zio_done_func_t *done, void *private);
308789Sahrens 
309789Sahrens extern zio_t *zio_claim(zio_t *pio, spa_t *spa, uint64_t txg, blkptr_t *bp,
310789Sahrens     zio_done_func_t *done, void *private);
311789Sahrens 
312789Sahrens extern zio_t *zio_ioctl(zio_t *pio, spa_t *spa, vdev_t *vd, int cmd,
313789Sahrens     zio_done_func_t *done, void *private, int priority, int flags);
314789Sahrens 
315789Sahrens extern zio_t *zio_read_phys(zio_t *pio, vdev_t *vd, uint64_t offset,
316789Sahrens     uint64_t size, void *data, int checksum,
3175450Sbrendan     zio_done_func_t *done, void *private, int priority, int flags,
3185450Sbrendan     boolean_t labels);
319789Sahrens 
320789Sahrens extern zio_t *zio_write_phys(zio_t *pio, vdev_t *vd, uint64_t offset,
321789Sahrens     uint64_t size, void *data, int checksum,
3225450Sbrendan     zio_done_func_t *done, void *private, int priority, int flags,
3235450Sbrendan     boolean_t labels);
324789Sahrens 
3253063Sperrin extern int zio_alloc_blk(spa_t *spa, uint64_t size, blkptr_t *new_bp,
3263063Sperrin     blkptr_t *old_bp, uint64_t txg);
327789Sahrens extern void zio_free_blk(spa_t *spa, blkptr_t *bp, uint64_t txg);
3285688Sbonwick extern void zio_flush(zio_t *zio, vdev_t *vd);
329789Sahrens 
330789Sahrens extern int zio_wait(zio_t *zio);
331789Sahrens extern void zio_nowait(zio_t *zio);
3325530Sbonwick extern void zio_execute(zio_t *zio);
3335530Sbonwick extern void zio_interrupt(zio_t *zio);
3345530Sbonwick 
3355530Sbonwick extern int zio_wait_for_children_ready(zio_t *zio);
3365530Sbonwick extern int zio_wait_for_children_done(zio_t *zio);
337789Sahrens 
338789Sahrens extern void *zio_buf_alloc(size_t size);
339789Sahrens extern void zio_buf_free(void *buf, size_t size);
3403290Sjohansen extern void *zio_data_buf_alloc(size_t size);
3413290Sjohansen extern void zio_data_buf_free(void *buf, size_t size);
342789Sahrens 
3435329Sgw25295 extern void zio_resubmit_stage_async(void *);
344789Sahrens 
345789Sahrens /*
346789Sahrens  * Delegate I/O to a child vdev.
347789Sahrens  */
348789Sahrens extern zio_t *zio_vdev_child_io(zio_t *zio, blkptr_t *bp, vdev_t *vd,
349789Sahrens     uint64_t offset, void *data, uint64_t size, int type, int priority,
350789Sahrens     int flags, zio_done_func_t *done, void *private);
351789Sahrens 
352789Sahrens extern void zio_vdev_io_bypass(zio_t *zio);
353789Sahrens extern void zio_vdev_io_reissue(zio_t *zio);
354789Sahrens extern void zio_vdev_io_redone(zio_t *zio);
355789Sahrens 
356789Sahrens extern void zio_checksum_verified(zio_t *zio);
357789Sahrens extern void zio_set_gang_verifier(zio_t *zio, zio_cksum_t *zcp);
358789Sahrens 
359789Sahrens extern uint8_t zio_checksum_select(uint8_t child, uint8_t parent);
360789Sahrens extern uint8_t zio_compress_select(uint8_t child, uint8_t parent);
361789Sahrens 
3625329Sgw25295 extern boolean_t zio_should_retry(zio_t *zio);
3635329Sgw25295 extern int zio_vdev_resume_io(spa_t *);
3641544Seschrock 
365789Sahrens /*
366789Sahrens  * Initial setup and teardown.
367789Sahrens  */
368789Sahrens extern void zio_init(void);
369789Sahrens extern void zio_fini(void);
370789Sahrens 
3711544Seschrock /*
3721544Seschrock  * Fault injection
3731544Seschrock  */
3741544Seschrock struct zinject_record;
3751544Seschrock extern uint32_t zio_injection_enabled;
3761544Seschrock extern int zio_inject_fault(char *name, int flags, int *id,
3771544Seschrock     struct zinject_record *record);
3781544Seschrock extern int zio_inject_list_next(int *id, char *name, size_t buflen,
3791544Seschrock     struct zinject_record *record);
3801544Seschrock extern int zio_clear_fault(int id);
3811544Seschrock extern int zio_handle_fault_injection(zio_t *zio, int error);
3821544Seschrock extern int zio_handle_device_injection(vdev_t *vd, int error);
3831544Seschrock 
384789Sahrens #ifdef	__cplusplus
385789Sahrens }
386789Sahrens #endif
387789Sahrens 
388789Sahrens #endif	/* _ZIO_H */
389