xref: /illumos-gate/usr/src/uts/common/fs/zfs/sys/spa.h (revision c3d26abc9ee97b4f60233556aadeb57e0bd30bb9)
1fa9e4066Sahrens /*
2fa9e4066Sahrens  * CDDL HEADER START
3fa9e4066Sahrens  *
4fa9e4066Sahrens  * The contents of this file are subject to the terms of the
5ea8dc4b6Seschrock  * Common Development and Distribution License (the "License").
6ea8dc4b6Seschrock  * 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 /*
223f9d6ad7SLin Ling  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
237802d7bfSMatthew Ahrens  * Copyright (c) 2011, 2014 by Delphix. All rights reserved.
24e9103aaeSGarrett D'Amore  * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
25bc9014e6SJustin Gibbs  * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
2645818ee1SMatthew Ahrens  * Copyright 2013 Saso Kiselkov. All rights reserved.
27*c3d26abcSMatthew Ahrens  * Copyright (c) 2014 Integros [integros.com]
28fa9e4066Sahrens  */
29fa9e4066Sahrens 
30fa9e4066Sahrens #ifndef _SYS_SPA_H
31fa9e4066Sahrens #define	_SYS_SPA_H
32fa9e4066Sahrens 
33fa9e4066Sahrens #include <sys/avl.h>
34fa9e4066Sahrens #include <sys/zfs_context.h>
35fa9e4066Sahrens #include <sys/nvpair.h>
36fa9e4066Sahrens #include <sys/sysmacros.h>
37fa9e4066Sahrens #include <sys/types.h>
38fa9e4066Sahrens #include <sys/fs/zfs.h>
39fa9e4066Sahrens 
40fa9e4066Sahrens #ifdef	__cplusplus
41fa9e4066Sahrens extern "C" {
42fa9e4066Sahrens #endif
43fa9e4066Sahrens 
44fa9e4066Sahrens /*
45fa9e4066Sahrens  * Forward references that lots of things need.
46fa9e4066Sahrens  */
47fa9e4066Sahrens typedef struct spa spa_t;
48fa9e4066Sahrens typedef struct vdev vdev_t;
49fa9e4066Sahrens typedef struct metaslab metaslab_t;
50b24ab676SJeff Bonwick typedef struct metaslab_group metaslab_group_t;
51b24ab676SJeff Bonwick typedef struct metaslab_class metaslab_class_t;
52b24ab676SJeff Bonwick typedef struct zio zio_t;
53fa9e4066Sahrens typedef struct zilog zilog_t;
54fa94a07fSbrendan typedef struct spa_aux_vdev spa_aux_vdev_t;
55b24ab676SJeff Bonwick typedef struct ddt ddt_t;
56b24ab676SJeff Bonwick typedef struct ddt_entry ddt_entry_t;
57fa9e4066Sahrens struct dsl_pool;
584445fffbSMatthew Ahrens struct dsl_dataset;
59fa9e4066Sahrens 
60fa9e4066Sahrens /*
61fa9e4066Sahrens  * General-purpose 32-bit and 64-bit bitfield encodings.
62fa9e4066Sahrens  */
63fa9e4066Sahrens #define	BF32_DECODE(x, low, len)	P2PHASE((x) >> (low), 1U << (len))
64fa9e4066Sahrens #define	BF64_DECODE(x, low, len)	P2PHASE((x) >> (low), 1ULL << (len))
65fa9e4066Sahrens #define	BF32_ENCODE(x, low, len)	(P2PHASE((x), 1U << (len)) << (low))
66fa9e4066Sahrens #define	BF64_ENCODE(x, low, len)	(P2PHASE((x), 1ULL << (len)) << (low))
67fa9e4066Sahrens 
68fa9e4066Sahrens #define	BF32_GET(x, low, len)		BF32_DECODE(x, low, len)
69fa9e4066Sahrens #define	BF64_GET(x, low, len)		BF64_DECODE(x, low, len)
70fa9e4066Sahrens 
7143466aaeSMax Grossman #define	BF32_SET(x, low, len, val) do { \
7243466aaeSMax Grossman 	ASSERT3U(val, <, 1U << (len)); \
7343466aaeSMax Grossman 	ASSERT3U(low + len, <=, 32); \
7443466aaeSMax Grossman 	(x) ^= BF32_ENCODE((x >> low) ^ (val), low, len); \
7543466aaeSMax Grossman _NOTE(CONSTCOND) } while (0)
7643466aaeSMax Grossman 
7743466aaeSMax Grossman #define	BF64_SET(x, low, len, val) do { \
7843466aaeSMax Grossman 	ASSERT3U(val, <, 1ULL << (len)); \
7943466aaeSMax Grossman 	ASSERT3U(low + len, <=, 64); \
8043466aaeSMax Grossman 	((x) ^= BF64_ENCODE((x >> low) ^ (val), low, len)); \
8143466aaeSMax Grossman _NOTE(CONSTCOND) } while (0)
82fa9e4066Sahrens 
83fa9e4066Sahrens #define	BF32_GET_SB(x, low, len, shift, bias)	\
84fa9e4066Sahrens 	((BF32_GET(x, low, len) + (bias)) << (shift))
85fa9e4066Sahrens #define	BF64_GET_SB(x, low, len, shift, bias)	\
86fa9e4066Sahrens 	((BF64_GET(x, low, len) + (bias)) << (shift))
87fa9e4066Sahrens 
8843466aaeSMax Grossman #define	BF32_SET_SB(x, low, len, shift, bias, val) do { \
8943466aaeSMax Grossman 	ASSERT(IS_P2ALIGNED(val, 1U << shift)); \
9043466aaeSMax Grossman 	ASSERT3S((val) >> (shift), >=, bias); \
9143466aaeSMax Grossman 	BF32_SET(x, low, len, ((val) >> (shift)) - (bias)); \
9243466aaeSMax Grossman _NOTE(CONSTCOND) } while (0)
9343466aaeSMax Grossman #define	BF64_SET_SB(x, low, len, shift, bias, val) do { \
9443466aaeSMax Grossman 	ASSERT(IS_P2ALIGNED(val, 1ULL << shift)); \
9543466aaeSMax Grossman 	ASSERT3S((val) >> (shift), >=, bias); \
9643466aaeSMax Grossman 	BF64_SET(x, low, len, ((val) >> (shift)) - (bias)); \
9743466aaeSMax Grossman _NOTE(CONSTCOND) } while (0)
98fa9e4066Sahrens 
99fa9e4066Sahrens /*
100b5152584SMatthew Ahrens  * We currently support block sizes from 512 bytes to 16MB.
101b5152584SMatthew Ahrens  * The benefits of larger blocks, and thus larger IO, need to be weighed
102b5152584SMatthew Ahrens  * against the cost of COWing a giant block to modify one byte, and the
103b5152584SMatthew Ahrens  * large latency of reading or writing a large block.
104b5152584SMatthew Ahrens  *
105b5152584SMatthew Ahrens  * Note that although blocks up to 16MB are supported, the recordsize
106b5152584SMatthew Ahrens  * property can not be set larger than zfs_max_recordsize (default 1MB).
107b5152584SMatthew Ahrens  * See the comment near zfs_max_recordsize in dsl_dataset.c for details.
108b5152584SMatthew Ahrens  *
109b5152584SMatthew Ahrens  * Note that although the LSIZE field of the blkptr_t can store sizes up
110b5152584SMatthew Ahrens  * to 32MB, the dnode's dn_datablkszsec can only store sizes up to
111b5152584SMatthew Ahrens  * 32MB - 512 bytes.  Therefore, we limit SPA_MAXBLOCKSIZE to 16MB.
112fa9e4066Sahrens  */
113fa9e4066Sahrens #define	SPA_MINBLOCKSHIFT	9
114b5152584SMatthew Ahrens #define	SPA_OLD_MAXBLOCKSHIFT	17
115b5152584SMatthew Ahrens #define	SPA_MAXBLOCKSHIFT	24
116fa9e4066Sahrens #define	SPA_MINBLOCKSIZE	(1ULL << SPA_MINBLOCKSHIFT)
117b5152584SMatthew Ahrens #define	SPA_OLD_MAXBLOCKSIZE	(1ULL << SPA_OLD_MAXBLOCKSHIFT)
118fa9e4066Sahrens #define	SPA_MAXBLOCKSIZE	(1ULL << SPA_MAXBLOCKSHIFT)
119fa9e4066Sahrens 
120f7991ba4STim Haley /*
121f7991ba4STim Haley  * Size of block to hold the configuration data (a packed nvlist)
122f7991ba4STim Haley  */
123ad135b5dSChristopher Siden #define	SPA_CONFIG_BLOCKSIZE	(1ULL << 14)
124f7991ba4STim Haley 
125fa9e4066Sahrens /*
126fa9e4066Sahrens  * The DVA size encodings for LSIZE and PSIZE support blocks up to 32MB.
127fa9e4066Sahrens  * The ASIZE encoding should be at least 64 times larger (6 more bits)
128fa9e4066Sahrens  * to support up to 4-way RAID-Z mirror mode with worst-case gang block
129fa9e4066Sahrens  * overhead, three DVAs per bp, plus one more bit in case we do anything
130fa9e4066Sahrens  * else that expands the ASIZE.
131fa9e4066Sahrens  */
132fa9e4066Sahrens #define	SPA_LSIZEBITS		16	/* LSIZE up to 32M (2^16 * 512)	*/
133fa9e4066Sahrens #define	SPA_PSIZEBITS		16	/* PSIZE up to 32M (2^16 * 512)	*/
134fa9e4066Sahrens #define	SPA_ASIZEBITS		24	/* ASIZE up to 64 times larger	*/
135fa9e4066Sahrens 
136fa9e4066Sahrens /*
137fa9e4066Sahrens  * All SPA data is represented by 128-bit data virtual addresses (DVAs).
138fa9e4066Sahrens  * The members of the dva_t should be considered opaque outside the SPA.
139fa9e4066Sahrens  */
140fa9e4066Sahrens typedef struct dva {
141fa9e4066Sahrens 	uint64_t	dva_word[2];
142fa9e4066Sahrens } dva_t;
143fa9e4066Sahrens 
144fa9e4066Sahrens /*
145fa9e4066Sahrens  * Each block has a 256-bit checksum -- strong enough for cryptographic hashes.
146fa9e4066Sahrens  */
147fa9e4066Sahrens typedef struct zio_cksum {
148fa9e4066Sahrens 	uint64_t	zc_word[4];
149fa9e4066Sahrens } zio_cksum_t;
150fa9e4066Sahrens 
15145818ee1SMatthew Ahrens /*
15245818ee1SMatthew Ahrens  * Some checksums/hashes need a 256-bit initialization salt. This salt is kept
15345818ee1SMatthew Ahrens  * secret and is suitable for use in MAC algorithms as the key.
15445818ee1SMatthew Ahrens  */
15545818ee1SMatthew Ahrens typedef struct zio_cksum_salt {
15645818ee1SMatthew Ahrens 	uint8_t		zcs_bytes[32];
15745818ee1SMatthew Ahrens } zio_cksum_salt_t;
15845818ee1SMatthew Ahrens 
159fa9e4066Sahrens /*
160fa9e4066Sahrens  * Each block is described by its DVAs, time of birth, checksum, etc.
161fa9e4066Sahrens  * The word-by-word, bit-by-bit layout of the blkptr is as follows:
162fa9e4066Sahrens  *
163fa9e4066Sahrens  *	64	56	48	40	32	24	16	8	0
164fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
165fa9e4066Sahrens  * 0	|		vdev1		| GRID  |	  ASIZE		|
166fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
167fa9e4066Sahrens  * 1	|G|			 offset1				|
168fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
169fa9e4066Sahrens  * 2	|		vdev2		| GRID  |	  ASIZE		|
170fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
171fa9e4066Sahrens  * 3	|G|			 offset2				|
172fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
173fa9e4066Sahrens  * 4	|		vdev3		| GRID  |	  ASIZE		|
174fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
175fa9e4066Sahrens  * 5	|G|			 offset3				|
176fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
1775d7b4d43SMatthew Ahrens  * 6	|BDX|lvl| type	| cksum |E| comp|    PSIZE	|     LSIZE	|
178fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
179fa9e4066Sahrens  * 7	|			padding					|
180fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
181fa9e4066Sahrens  * 8	|			padding					|
182fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
183b24ab676SJeff Bonwick  * 9	|			physical birth txg			|
184fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
185b24ab676SJeff Bonwick  * a	|			logical birth txg			|
186fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
187fa9e4066Sahrens  * b	|			fill count				|
188fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
189fa9e4066Sahrens  * c	|			checksum[0]				|
190fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
191fa9e4066Sahrens  * d	|			checksum[1]				|
192fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
193fa9e4066Sahrens  * e	|			checksum[2]				|
194fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
195fa9e4066Sahrens  * f	|			checksum[3]				|
196fa9e4066Sahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
197fa9e4066Sahrens  *
198fa9e4066Sahrens  * Legend:
199fa9e4066Sahrens  *
200fa9e4066Sahrens  * vdev		virtual device ID
201fa9e4066Sahrens  * offset	offset into virtual device
202fa9e4066Sahrens  * LSIZE	logical size
203fa9e4066Sahrens  * PSIZE	physical size (after compression)
204fa9e4066Sahrens  * ASIZE	allocated size (including RAID-Z parity and gang block headers)
205fa9e4066Sahrens  * GRID		RAID-Z layout information (reserved for future use)
206fa9e4066Sahrens  * cksum	checksum function
207fa9e4066Sahrens  * comp		compression function
208fa9e4066Sahrens  * G		gang block indicator
209b24ab676SJeff Bonwick  * B		byteorder (endianness)
210b24ab676SJeff Bonwick  * D		dedup
2115d7b4d43SMatthew Ahrens  * X		encryption (on version 30, which is not supported)
2125d7b4d43SMatthew Ahrens  * E		blkptr_t contains embedded data (see below)
213fa9e4066Sahrens  * lvl		level of indirection
214b24ab676SJeff Bonwick  * type		DMU object type
215b24ab676SJeff Bonwick  * phys birth	txg of block allocation; zero if same as logical birth txg
216b24ab676SJeff Bonwick  * log. birth	transaction group in which the block was logically born
217fa9e4066Sahrens  * fill count	number of non-zero blocks under this bp
218fa9e4066Sahrens  * checksum[4]	256-bit checksum of the data this bp describes
219fa9e4066Sahrens  */
2205d7b4d43SMatthew Ahrens 
2215d7b4d43SMatthew Ahrens /*
2225d7b4d43SMatthew Ahrens  * "Embedded" blkptr_t's don't actually point to a block, instead they
2235d7b4d43SMatthew Ahrens  * have a data payload embedded in the blkptr_t itself.  See the comment
2245d7b4d43SMatthew Ahrens  * in blkptr.c for more details.
2255d7b4d43SMatthew Ahrens  *
2265d7b4d43SMatthew Ahrens  * The blkptr_t is laid out as follows:
2275d7b4d43SMatthew Ahrens  *
2285d7b4d43SMatthew Ahrens  *	64	56	48	40	32	24	16	8	0
2295d7b4d43SMatthew Ahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
2305d7b4d43SMatthew Ahrens  * 0	|      payload                                                  |
2315d7b4d43SMatthew Ahrens  * 1	|      payload                                                  |
2325d7b4d43SMatthew Ahrens  * 2	|      payload                                                  |
2335d7b4d43SMatthew Ahrens  * 3	|      payload                                                  |
2345d7b4d43SMatthew Ahrens  * 4	|      payload                                                  |
2355d7b4d43SMatthew Ahrens  * 5	|      payload                                                  |
2365d7b4d43SMatthew Ahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
2375d7b4d43SMatthew Ahrens  * 6	|BDX|lvl| type	| etype |E| comp| PSIZE|              LSIZE	|
2385d7b4d43SMatthew Ahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
2395d7b4d43SMatthew Ahrens  * 7	|      payload                                                  |
2405d7b4d43SMatthew Ahrens  * 8	|      payload                                                  |
2415d7b4d43SMatthew Ahrens  * 9	|      payload                                                  |
2425d7b4d43SMatthew Ahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
2435d7b4d43SMatthew Ahrens  * a	|			logical birth txg			|
2445d7b4d43SMatthew Ahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
2455d7b4d43SMatthew Ahrens  * b	|      payload                                                  |
2465d7b4d43SMatthew Ahrens  * c	|      payload                                                  |
2475d7b4d43SMatthew Ahrens  * d	|      payload                                                  |
2485d7b4d43SMatthew Ahrens  * e	|      payload                                                  |
2495d7b4d43SMatthew Ahrens  * f	|      payload                                                  |
2505d7b4d43SMatthew Ahrens  *	+-------+-------+-------+-------+-------+-------+-------+-------+
2515d7b4d43SMatthew Ahrens  *
2525d7b4d43SMatthew Ahrens  * Legend:
2535d7b4d43SMatthew Ahrens  *
2545d7b4d43SMatthew Ahrens  * payload		contains the embedded data
2555d7b4d43SMatthew Ahrens  * B (byteorder)	byteorder (endianness)
2565d7b4d43SMatthew Ahrens  * D (dedup)		padding (set to zero)
2575d7b4d43SMatthew Ahrens  * X			encryption (set to zero; see above)
2585d7b4d43SMatthew Ahrens  * E (embedded)		set to one
2595d7b4d43SMatthew Ahrens  * lvl			indirection level
2605d7b4d43SMatthew Ahrens  * type			DMU object type
2615d7b4d43SMatthew Ahrens  * etype		how to interpret embedded data (BP_EMBEDDED_TYPE_*)
2625d7b4d43SMatthew Ahrens  * comp			compression function of payload
2635d7b4d43SMatthew Ahrens  * PSIZE		size of payload after compression, in bytes
2645d7b4d43SMatthew Ahrens  * LSIZE		logical size of payload, in bytes
2655d7b4d43SMatthew Ahrens  *			note that 25 bits is enough to store the largest
2665d7b4d43SMatthew Ahrens  *			"normal" BP's LSIZE (2^16 * 2^9) in bytes
2675d7b4d43SMatthew Ahrens  * log. birth		transaction group in which the block was logically born
2685d7b4d43SMatthew Ahrens  *
2695d7b4d43SMatthew Ahrens  * Note that LSIZE and PSIZE are stored in bytes, whereas for non-embedded
2705d7b4d43SMatthew Ahrens  * bp's they are stored in units of SPA_MINBLOCKSHIFT.
2715d7b4d43SMatthew Ahrens  * Generally, the generic BP_GET_*() macros can be used on embedded BP's.
2725d7b4d43SMatthew Ahrens  * The B, D, X, lvl, type, and comp fields are stored the same as with normal
2735d7b4d43SMatthew Ahrens  * BP's so the BP_SET_* macros can be used with them.  etype, PSIZE, LSIZE must
2745d7b4d43SMatthew Ahrens  * be set with the BPE_SET_* macros.  BP_SET_EMBEDDED() should be called before
2755d7b4d43SMatthew Ahrens  * other macros, as they assert that they are only used on BP's of the correct
2765d7b4d43SMatthew Ahrens  * "embedded-ness".
2775d7b4d43SMatthew Ahrens  */
2785d7b4d43SMatthew Ahrens 
2795d7b4d43SMatthew Ahrens #define	BPE_GET_ETYPE(bp)	\
2805d7b4d43SMatthew Ahrens 	(ASSERT(BP_IS_EMBEDDED(bp)), \
2815d7b4d43SMatthew Ahrens 	BF64_GET((bp)->blk_prop, 40, 8))
2825d7b4d43SMatthew Ahrens #define	BPE_SET_ETYPE(bp, t)	do { \
2835d7b4d43SMatthew Ahrens 	ASSERT(BP_IS_EMBEDDED(bp)); \
2845d7b4d43SMatthew Ahrens 	BF64_SET((bp)->blk_prop, 40, 8, t); \
2855d7b4d43SMatthew Ahrens _NOTE(CONSTCOND) } while (0)
2865d7b4d43SMatthew Ahrens 
2875d7b4d43SMatthew Ahrens #define	BPE_GET_LSIZE(bp)	\
2885d7b4d43SMatthew Ahrens 	(ASSERT(BP_IS_EMBEDDED(bp)), \
2895d7b4d43SMatthew Ahrens 	BF64_GET_SB((bp)->blk_prop, 0, 25, 0, 1))
2905d7b4d43SMatthew Ahrens #define	BPE_SET_LSIZE(bp, x)	do { \
2915d7b4d43SMatthew Ahrens 	ASSERT(BP_IS_EMBEDDED(bp)); \
2925d7b4d43SMatthew Ahrens 	BF64_SET_SB((bp)->blk_prop, 0, 25, 0, 1, x); \
2935d7b4d43SMatthew Ahrens _NOTE(CONSTCOND) } while (0)
2945d7b4d43SMatthew Ahrens 
2955d7b4d43SMatthew Ahrens #define	BPE_GET_PSIZE(bp)	\
2965d7b4d43SMatthew Ahrens 	(ASSERT(BP_IS_EMBEDDED(bp)), \
2975d7b4d43SMatthew Ahrens 	BF64_GET_SB((bp)->blk_prop, 25, 7, 0, 1))
2985d7b4d43SMatthew Ahrens #define	BPE_SET_PSIZE(bp, x)	do { \
2995d7b4d43SMatthew Ahrens 	ASSERT(BP_IS_EMBEDDED(bp)); \
3005d7b4d43SMatthew Ahrens 	BF64_SET_SB((bp)->blk_prop, 25, 7, 0, 1, x); \
3015d7b4d43SMatthew Ahrens _NOTE(CONSTCOND) } while (0)
3025d7b4d43SMatthew Ahrens 
3035d7b4d43SMatthew Ahrens typedef enum bp_embedded_type {
3045d7b4d43SMatthew Ahrens 	BP_EMBEDDED_TYPE_DATA,
3055d7b4d43SMatthew Ahrens 	BP_EMBEDDED_TYPE_RESERVED, /* Reserved for an unintegrated feature. */
3065d7b4d43SMatthew Ahrens 	NUM_BP_EMBEDDED_TYPES = BP_EMBEDDED_TYPE_RESERVED
3075d7b4d43SMatthew Ahrens } bp_embedded_type_t;
3085d7b4d43SMatthew Ahrens 
3095d7b4d43SMatthew Ahrens #define	BPE_NUM_WORDS 14
3105d7b4d43SMatthew Ahrens #define	BPE_PAYLOAD_SIZE (BPE_NUM_WORDS * sizeof (uint64_t))
3115d7b4d43SMatthew Ahrens #define	BPE_IS_PAYLOADWORD(bp, wp) \
3125d7b4d43SMatthew Ahrens 	((wp) != &(bp)->blk_prop && (wp) != &(bp)->blk_birth)
3135d7b4d43SMatthew Ahrens 
314fa9e4066Sahrens #define	SPA_BLKPTRSHIFT	7		/* blkptr_t is 128 bytes	*/
315fa9e4066Sahrens #define	SPA_DVAS_PER_BP	3		/* Number of DVAs in a bp	*/
316fa9e4066Sahrens 
31743466aaeSMax Grossman /*
31843466aaeSMax Grossman  * A block is a hole when it has either 1) never been written to, or
31943466aaeSMax Grossman  * 2) is zero-filled. In both cases, ZFS can return all zeroes for all reads
32043466aaeSMax Grossman  * without physically allocating disk space. Holes are represented in the
32143466aaeSMax Grossman  * blkptr_t structure by zeroed blk_dva. Correct checking for holes is
32243466aaeSMax Grossman  * done through the BP_IS_HOLE macro. For holes, the logical size, level,
32343466aaeSMax Grossman  * DMU object type, and birth times are all also stored for holes that
32443466aaeSMax Grossman  * were written to at some point (i.e. were punched after having been filled).
32543466aaeSMax Grossman  */
326b24ab676SJeff Bonwick typedef struct blkptr {
327b24ab676SJeff Bonwick 	dva_t		blk_dva[SPA_DVAS_PER_BP]; /* Data Virtual Addresses */
328b24ab676SJeff Bonwick 	uint64_t	blk_prop;	/* size, compression, type, etc	    */
329b24ab676SJeff Bonwick 	uint64_t	blk_pad[2];	/* Extra space for the future	    */
330b24ab676SJeff Bonwick 	uint64_t	blk_phys_birth;	/* txg when block was allocated	    */
331b24ab676SJeff Bonwick 	uint64_t	blk_birth;	/* transaction group at birth	    */
332b24ab676SJeff Bonwick 	uint64_t	blk_fill;	/* fill count			    */
333b24ab676SJeff Bonwick 	zio_cksum_t	blk_cksum;	/* 256-bit checksum		    */
334b24ab676SJeff Bonwick } blkptr_t;
335b24ab676SJeff Bonwick 
336fa9e4066Sahrens /*
337fa9e4066Sahrens  * Macros to get and set fields in a bp or DVA.
338fa9e4066Sahrens  */
339fa9e4066Sahrens #define	DVA_GET_ASIZE(dva)	\
34043466aaeSMax Grossman 	BF64_GET_SB((dva)->dva_word[0], 0, SPA_ASIZEBITS, SPA_MINBLOCKSHIFT, 0)
341fa9e4066Sahrens #define	DVA_SET_ASIZE(dva, x)	\
34243466aaeSMax Grossman 	BF64_SET_SB((dva)->dva_word[0], 0, SPA_ASIZEBITS, \
34343466aaeSMax Grossman 	SPA_MINBLOCKSHIFT, 0, x)
344fa9e4066Sahrens 
345fa9e4066Sahrens #define	DVA_GET_GRID(dva)	BF64_GET((dva)->dva_word[0], 24, 8)
346fa9e4066Sahrens #define	DVA_SET_GRID(dva, x)	BF64_SET((dva)->dva_word[0], 24, 8, x)
347fa9e4066Sahrens 
348fa9e4066Sahrens #define	DVA_GET_VDEV(dva)	BF64_GET((dva)->dva_word[0], 32, 32)
349fa9e4066Sahrens #define	DVA_SET_VDEV(dva, x)	BF64_SET((dva)->dva_word[0], 32, 32, x)
350fa9e4066Sahrens 
351fa9e4066Sahrens #define	DVA_GET_OFFSET(dva)	\
352fa9e4066Sahrens 	BF64_GET_SB((dva)->dva_word[1], 0, 63, SPA_MINBLOCKSHIFT, 0)
353fa9e4066Sahrens #define	DVA_SET_OFFSET(dva, x)	\
354fa9e4066Sahrens 	BF64_SET_SB((dva)->dva_word[1], 0, 63, SPA_MINBLOCKSHIFT, 0, x)
355fa9e4066Sahrens 
356fa9e4066Sahrens #define	DVA_GET_GANG(dva)	BF64_GET((dva)->dva_word[1], 63, 1)
357fa9e4066Sahrens #define	DVA_SET_GANG(dva, x)	BF64_SET((dva)->dva_word[1], 63, 1, x)
358fa9e4066Sahrens 
359fa9e4066Sahrens #define	BP_GET_LSIZE(bp)	\
3605d7b4d43SMatthew Ahrens 	(BP_IS_EMBEDDED(bp) ?	\
3615d7b4d43SMatthew Ahrens 	(BPE_GET_ETYPE(bp) == BP_EMBEDDED_TYPE_DATA ? BPE_GET_LSIZE(bp) : 0): \
3625d7b4d43SMatthew Ahrens 	BF64_GET_SB((bp)->blk_prop, 0, SPA_LSIZEBITS, SPA_MINBLOCKSHIFT, 1))
3635d7b4d43SMatthew Ahrens #define	BP_SET_LSIZE(bp, x)	do { \
3645d7b4d43SMatthew Ahrens 	ASSERT(!BP_IS_EMBEDDED(bp)); \
3655d7b4d43SMatthew Ahrens 	BF64_SET_SB((bp)->blk_prop, \
3665d7b4d43SMatthew Ahrens 	    0, SPA_LSIZEBITS, SPA_MINBLOCKSHIFT, 1, x); \
3675d7b4d43SMatthew Ahrens _NOTE(CONSTCOND) } while (0)
368fa9e4066Sahrens 
369fa9e4066Sahrens #define	BP_GET_PSIZE(bp)	\
3705d7b4d43SMatthew Ahrens 	(BP_IS_EMBEDDED(bp) ? 0 : \
3715d7b4d43SMatthew Ahrens 	BF64_GET_SB((bp)->blk_prop, 16, SPA_PSIZEBITS, SPA_MINBLOCKSHIFT, 1))
3725d7b4d43SMatthew Ahrens #define	BP_SET_PSIZE(bp, x)	do { \
3735d7b4d43SMatthew Ahrens 	ASSERT(!BP_IS_EMBEDDED(bp)); \
3745d7b4d43SMatthew Ahrens 	BF64_SET_SB((bp)->blk_prop, \
3755d7b4d43SMatthew Ahrens 	    16, SPA_PSIZEBITS, SPA_MINBLOCKSHIFT, 1, x); \
3765d7b4d43SMatthew Ahrens _NOTE(CONSTCOND) } while (0)
3775d7b4d43SMatthew Ahrens 
3785d7b4d43SMatthew Ahrens #define	BP_GET_COMPRESS(bp)		BF64_GET((bp)->blk_prop, 32, 7)
3795d7b4d43SMatthew Ahrens #define	BP_SET_COMPRESS(bp, x)		BF64_SET((bp)->blk_prop, 32, 7, x)
380fa9e4066Sahrens 
3815d7b4d43SMatthew Ahrens #define	BP_IS_EMBEDDED(bp)		BF64_GET((bp)->blk_prop, 39, 1)
3825d7b4d43SMatthew Ahrens #define	BP_SET_EMBEDDED(bp, x)		BF64_SET((bp)->blk_prop, 39, 1, x)
383b24ab676SJeff Bonwick 
3845d7b4d43SMatthew Ahrens #define	BP_GET_CHECKSUM(bp)		\
3855d7b4d43SMatthew Ahrens 	(BP_IS_EMBEDDED(bp) ? ZIO_CHECKSUM_OFF : \
3865d7b4d43SMatthew Ahrens 	BF64_GET((bp)->blk_prop, 40, 8))
3875d7b4d43SMatthew Ahrens #define	BP_SET_CHECKSUM(bp, x)		do { \
3885d7b4d43SMatthew Ahrens 	ASSERT(!BP_IS_EMBEDDED(bp)); \
3895d7b4d43SMatthew Ahrens 	BF64_SET((bp)->blk_prop, 40, 8, x); \
3905d7b4d43SMatthew Ahrens _NOTE(CONSTCOND) } while (0)
391b24ab676SJeff Bonwick 
392b24ab676SJeff Bonwick #define	BP_GET_TYPE(bp)			BF64_GET((bp)->blk_prop, 48, 8)
393b24ab676SJeff Bonwick #define	BP_SET_TYPE(bp, x)		BF64_SET((bp)->blk_prop, 48, 8, x)
394fa9e4066Sahrens 
395b24ab676SJeff Bonwick #define	BP_GET_LEVEL(bp)		BF64_GET((bp)->blk_prop, 56, 5)
396b24ab676SJeff Bonwick #define	BP_SET_LEVEL(bp, x)		BF64_SET((bp)->blk_prop, 56, 5, x)
397fa9e4066Sahrens 
398b24ab676SJeff Bonwick #define	BP_GET_DEDUP(bp)		BF64_GET((bp)->blk_prop, 62, 1)
399b24ab676SJeff Bonwick #define	BP_SET_DEDUP(bp, x)		BF64_SET((bp)->blk_prop, 62, 1, x)
400fa9e4066Sahrens 
40143466aaeSMax Grossman #define	BP_GET_BYTEORDER(bp)		BF64_GET((bp)->blk_prop, 63, 1)
402b24ab676SJeff Bonwick #define	BP_SET_BYTEORDER(bp, x)		BF64_SET((bp)->blk_prop, 63, 1, x)
403b24ab676SJeff Bonwick 
404b24ab676SJeff Bonwick #define	BP_PHYSICAL_BIRTH(bp)		\
4055d7b4d43SMatthew Ahrens 	(BP_IS_EMBEDDED(bp) ? 0 : \
4065d7b4d43SMatthew Ahrens 	(bp)->blk_phys_birth ? (bp)->blk_phys_birth : (bp)->blk_birth)
407b24ab676SJeff Bonwick 
408b24ab676SJeff Bonwick #define	BP_SET_BIRTH(bp, logical, physical)	\
409b24ab676SJeff Bonwick {						\
4105d7b4d43SMatthew Ahrens 	ASSERT(!BP_IS_EMBEDDED(bp));		\
411b24ab676SJeff Bonwick 	(bp)->blk_birth = (logical);		\
412b24ab676SJeff Bonwick 	(bp)->blk_phys_birth = ((logical) == (physical) ? 0 : (physical)); \
413b24ab676SJeff Bonwick }
414fa9e4066Sahrens 
4155d7b4d43SMatthew Ahrens #define	BP_GET_FILL(bp) (BP_IS_EMBEDDED(bp) ? 1 : (bp)->blk_fill)
4165d7b4d43SMatthew Ahrens 
417fa9e4066Sahrens #define	BP_GET_ASIZE(bp)	\
4185d7b4d43SMatthew Ahrens 	(BP_IS_EMBEDDED(bp) ? 0 : \
4195d7b4d43SMatthew Ahrens 	DVA_GET_ASIZE(&(bp)->blk_dva[0]) + \
4205d7b4d43SMatthew Ahrens 	DVA_GET_ASIZE(&(bp)->blk_dva[1]) + \
4215d7b4d43SMatthew Ahrens 	DVA_GET_ASIZE(&(bp)->blk_dva[2]))
42299653d4eSeschrock 
42399653d4eSeschrock #define	BP_GET_UCSIZE(bp) \
424ad135b5dSChristopher Siden 	((BP_GET_LEVEL(bp) > 0 || DMU_OT_IS_METADATA(BP_GET_TYPE(bp))) ? \
4253f9d6ad7SLin Ling 	BP_GET_PSIZE(bp) : BP_GET_LSIZE(bp))
426fa9e4066Sahrens 
42744cd46caSbillm #define	BP_GET_NDVAS(bp)	\
4285d7b4d43SMatthew Ahrens 	(BP_IS_EMBEDDED(bp) ? 0 : \
4295d7b4d43SMatthew Ahrens 	!!DVA_GET_ASIZE(&(bp)->blk_dva[0]) + \
43044cd46caSbillm 	!!DVA_GET_ASIZE(&(bp)->blk_dva[1]) + \
43144cd46caSbillm 	!!DVA_GET_ASIZE(&(bp)->blk_dva[2]))
43244cd46caSbillm 
43344cd46caSbillm #define	BP_COUNT_GANG(bp)	\
4345d7b4d43SMatthew Ahrens 	(BP_IS_EMBEDDED(bp) ? 0 : \
43544cd46caSbillm 	(DVA_GET_GANG(&(bp)->blk_dva[0]) + \
43644cd46caSbillm 	DVA_GET_GANG(&(bp)->blk_dva[1]) + \
4375d7b4d43SMatthew Ahrens 	DVA_GET_GANG(&(bp)->blk_dva[2])))
43844cd46caSbillm 
439fa9e4066Sahrens #define	DVA_EQUAL(dva1, dva2)	\
440fa9e4066Sahrens 	((dva1)->dva_word[1] == (dva2)->dva_word[1] && \
441fa9e4066Sahrens 	(dva1)->dva_word[0] == (dva2)->dva_word[0])
442fa9e4066Sahrens 
443b24ab676SJeff Bonwick #define	BP_EQUAL(bp1, bp2)	\
444b24ab676SJeff Bonwick 	(BP_PHYSICAL_BIRTH(bp1) == BP_PHYSICAL_BIRTH(bp2) &&	\
4455d7b4d43SMatthew Ahrens 	(bp1)->blk_birth == (bp2)->blk_birth &&			\
446b24ab676SJeff Bonwick 	DVA_EQUAL(&(bp1)->blk_dva[0], &(bp2)->blk_dva[0]) &&	\
447b24ab676SJeff Bonwick 	DVA_EQUAL(&(bp1)->blk_dva[1], &(bp2)->blk_dva[1]) &&	\
448b24ab676SJeff Bonwick 	DVA_EQUAL(&(bp1)->blk_dva[2], &(bp2)->blk_dva[2]))
449b24ab676SJeff Bonwick 
4506b4acc8bSahrens #define	ZIO_CHECKSUM_EQUAL(zc1, zc2) \
4516b4acc8bSahrens 	(0 == (((zc1).zc_word[0] - (zc2).zc_word[0]) | \
4526b4acc8bSahrens 	((zc1).zc_word[1] - (zc2).zc_word[1]) | \
4536b4acc8bSahrens 	((zc1).zc_word[2] - (zc2).zc_word[2]) | \
4546b4acc8bSahrens 	((zc1).zc_word[3] - (zc2).zc_word[3])))
4556b4acc8bSahrens 
45698110f08SMatthew Ahrens #define	ZIO_CHECKSUM_IS_ZERO(zc) \
45798110f08SMatthew Ahrens 	(0 == ((zc)->zc_word[0] | (zc)->zc_word[1] | \
45898110f08SMatthew Ahrens 	(zc)->zc_word[2] | (zc)->zc_word[3]))
45998110f08SMatthew Ahrens 
46098110f08SMatthew Ahrens #define	ZIO_CHECKSUM_BSWAP(zcp)					\
46198110f08SMatthew Ahrens {								\
46298110f08SMatthew Ahrens 	(zcp)->zc_word[0] = BSWAP_64((zcp)->zc_word[0]);	\
46398110f08SMatthew Ahrens 	(zcp)->zc_word[1] = BSWAP_64((zcp)->zc_word[1]);	\
46498110f08SMatthew Ahrens 	(zcp)->zc_word[2] = BSWAP_64((zcp)->zc_word[2]);	\
46598110f08SMatthew Ahrens 	(zcp)->zc_word[3] = BSWAP_64((zcp)->zc_word[3]);	\
46698110f08SMatthew Ahrens }
46798110f08SMatthew Ahrens 
46898110f08SMatthew Ahrens 
469fa9e4066Sahrens #define	DVA_IS_VALID(dva)	(DVA_GET_ASIZE(dva) != 0)
470fa9e4066Sahrens 
471fa9e4066Sahrens #define	ZIO_SET_CHECKSUM(zcp, w0, w1, w2, w3)	\
472fa9e4066Sahrens {						\
473fa9e4066Sahrens 	(zcp)->zc_word[0] = w0;			\
474fa9e4066Sahrens 	(zcp)->zc_word[1] = w1;			\
475fa9e4066Sahrens 	(zcp)->zc_word[2] = w2;			\
476fa9e4066Sahrens 	(zcp)->zc_word[3] = w3;			\
477fa9e4066Sahrens }
478fa9e4066Sahrens 
4795d7b4d43SMatthew Ahrens #define	BP_IDENTITY(bp)		(ASSERT(!BP_IS_EMBEDDED(bp)), &(bp)->blk_dva[0])
4805d7b4d43SMatthew Ahrens #define	BP_IS_GANG(bp)		\
4815d7b4d43SMatthew Ahrens 	(BP_IS_EMBEDDED(bp) ? B_FALSE : DVA_GET_GANG(BP_IDENTITY(bp)))
48243466aaeSMax Grossman #define	DVA_IS_EMPTY(dva)	((dva)->dva_word[0] == 0ULL &&	\
48343466aaeSMax Grossman 				(dva)->dva_word[1] == 0ULL)
4845d7b4d43SMatthew Ahrens #define	BP_IS_HOLE(bp) \
4855d7b4d43SMatthew Ahrens 	(!BP_IS_EMBEDDED(bp) && DVA_IS_EMPTY(BP_IDENTITY(bp)))
486fa9e4066Sahrens 
4876e1f5caaSNeil Perrin /* BP_IS_RAIDZ(bp) assumes no block compression */
4886e1f5caaSNeil Perrin #define	BP_IS_RAIDZ(bp)		(DVA_GET_ASIZE(&(bp)->blk_dva[0]) > \
4896e1f5caaSNeil Perrin 				BP_GET_PSIZE(bp))
4906e1f5caaSNeil Perrin 
491e14bb325SJeff Bonwick #define	BP_ZERO(bp)				\
492fa9e4066Sahrens {						\
493fa9e4066Sahrens 	(bp)->blk_dva[0].dva_word[0] = 0;	\
494fa9e4066Sahrens 	(bp)->blk_dva[0].dva_word[1] = 0;	\
495fa9e4066Sahrens 	(bp)->blk_dva[1].dva_word[0] = 0;	\
496fa9e4066Sahrens 	(bp)->blk_dva[1].dva_word[1] = 0;	\
497fa9e4066Sahrens 	(bp)->blk_dva[2].dva_word[0] = 0;	\
498fa9e4066Sahrens 	(bp)->blk_dva[2].dva_word[1] = 0;	\
499fa9e4066Sahrens 	(bp)->blk_prop = 0;			\
500fa9e4066Sahrens 	(bp)->blk_pad[0] = 0;			\
501fa9e4066Sahrens 	(bp)->blk_pad[1] = 0;			\
502b24ab676SJeff Bonwick 	(bp)->blk_phys_birth = 0;		\
503e14bb325SJeff Bonwick 	(bp)->blk_birth = 0;			\
504fa9e4066Sahrens 	(bp)->blk_fill = 0;			\
505fa9e4066Sahrens 	ZIO_SET_CHECKSUM(&(bp)->blk_cksum, 0, 0, 0, 0);	\
506fa9e4066Sahrens }
507fa9e4066Sahrens 
508fa9e4066Sahrens #ifdef _BIG_ENDIAN
509fa9e4066Sahrens #define	ZFS_HOST_BYTEORDER	(0ULL)
510fa9e4066Sahrens #else
51143466aaeSMax Grossman #define	ZFS_HOST_BYTEORDER	(1ULL)
512fa9e4066Sahrens #endif
513fa9e4066Sahrens 
514fa9e4066Sahrens #define	BP_SHOULD_BYTESWAP(bp)	(BP_GET_BYTEORDER(bp) != ZFS_HOST_BYTEORDER)
515fa9e4066Sahrens 
51644cd46caSbillm #define	BP_SPRINTF_LEN	320
517fbabab8fSmaybee 
518b24ab676SJeff Bonwick /*
519b24ab676SJeff Bonwick  * This macro allows code sharing between zfs, libzpool, and mdb.
520b24ab676SJeff Bonwick  * 'func' is either snprintf() or mdb_snprintf().
521b24ab676SJeff Bonwick  * 'ws' (whitespace) can be ' ' for single-line format, '\n' for multi-line.
522b24ab676SJeff Bonwick  */
52343466aaeSMax Grossman #define	SNPRINTF_BLKPTR(func, ws, buf, size, bp, type, checksum, compress) \
524b24ab676SJeff Bonwick {									\
525b24ab676SJeff Bonwick 	static const char *copyname[] =					\
526b24ab676SJeff Bonwick 	    { "zero", "single", "double", "triple" };			\
527b24ab676SJeff Bonwick 	int len = 0;							\
528b24ab676SJeff Bonwick 	int copies = 0;							\
529b24ab676SJeff Bonwick 									\
530b24ab676SJeff Bonwick 	if (bp == NULL) {						\
53143466aaeSMax Grossman 		len += func(buf + len, size - len, "<NULL>");		\
532b24ab676SJeff Bonwick 	} else if (BP_IS_HOLE(bp)) {					\
53370163ac5SPrakash Surya 		len += func(buf + len, size - len,			\
53470163ac5SPrakash Surya 		    "HOLE [L%llu %s] "					\
53570163ac5SPrakash Surya 		    "size=%llxL birth=%lluL",				\
53670163ac5SPrakash Surya 		    (u_longlong_t)BP_GET_LEVEL(bp),			\
53770163ac5SPrakash Surya 		    type,						\
53870163ac5SPrakash Surya 		    (u_longlong_t)BP_GET_LSIZE(bp),			\
53970163ac5SPrakash Surya 		    (u_longlong_t)bp->blk_birth);			\
5405d7b4d43SMatthew Ahrens 	} else if (BP_IS_EMBEDDED(bp)) {				\
5415d7b4d43SMatthew Ahrens 		len = func(buf + len, size - len,			\
5425d7b4d43SMatthew Ahrens 		    "EMBEDDED [L%llu %s] et=%u %s "			\
5435d7b4d43SMatthew Ahrens 		    "size=%llxL/%llxP birth=%lluL",			\
5445d7b4d43SMatthew Ahrens 		    (u_longlong_t)BP_GET_LEVEL(bp),			\
5455d7b4d43SMatthew Ahrens 		    type,						\
5465d7b4d43SMatthew Ahrens 		    (int)BPE_GET_ETYPE(bp),				\
5475d7b4d43SMatthew Ahrens 		    compress,						\
5485d7b4d43SMatthew Ahrens 		    (u_longlong_t)BPE_GET_LSIZE(bp),			\
5495d7b4d43SMatthew Ahrens 		    (u_longlong_t)BPE_GET_PSIZE(bp),			\
5505d7b4d43SMatthew Ahrens 		    (u_longlong_t)bp->blk_birth);			\
551b24ab676SJeff Bonwick 	} else {							\
552b24ab676SJeff Bonwick 		for (int d = 0; d < BP_GET_NDVAS(bp); d++) {		\
553b24ab676SJeff Bonwick 			const dva_t *dva = &bp->blk_dva[d];		\
554b24ab676SJeff Bonwick 			if (DVA_IS_VALID(dva))				\
555b24ab676SJeff Bonwick 				copies++;				\
556b24ab676SJeff Bonwick 			len += func(buf + len, size - len,		\
557b24ab676SJeff Bonwick 			    "DVA[%d]=<%llu:%llx:%llx>%c", d,		\
558b24ab676SJeff Bonwick 			    (u_longlong_t)DVA_GET_VDEV(dva),		\
559b24ab676SJeff Bonwick 			    (u_longlong_t)DVA_GET_OFFSET(dva),		\
560b24ab676SJeff Bonwick 			    (u_longlong_t)DVA_GET_ASIZE(dva),		\
561b24ab676SJeff Bonwick 			    ws);					\
562b24ab676SJeff Bonwick 		}							\
563b24ab676SJeff Bonwick 		if (BP_IS_GANG(bp) &&					\
564b24ab676SJeff Bonwick 		    DVA_GET_ASIZE(&bp->blk_dva[2]) <=			\
565b24ab676SJeff Bonwick 		    DVA_GET_ASIZE(&bp->blk_dva[1]) / 2)			\
566b24ab676SJeff Bonwick 			copies--;					\
567b24ab676SJeff Bonwick 		len += func(buf + len, size - len,			\
568b24ab676SJeff Bonwick 		    "[L%llu %s] %s %s %s %s %s %s%c"			\
569b24ab676SJeff Bonwick 		    "size=%llxL/%llxP birth=%lluL/%lluP fill=%llu%c"	\
570b24ab676SJeff Bonwick 		    "cksum=%llx:%llx:%llx:%llx",			\
571b24ab676SJeff Bonwick 		    (u_longlong_t)BP_GET_LEVEL(bp),			\
572b24ab676SJeff Bonwick 		    type,						\
573b24ab676SJeff Bonwick 		    checksum,						\
574b24ab676SJeff Bonwick 		    compress,						\
575b24ab676SJeff Bonwick 		    BP_GET_BYTEORDER(bp) == 0 ? "BE" : "LE",		\
576b24ab676SJeff Bonwick 		    BP_IS_GANG(bp) ? "gang" : "contiguous",		\
577b24ab676SJeff Bonwick 		    BP_GET_DEDUP(bp) ? "dedup" : "unique",		\
578b24ab676SJeff Bonwick 		    copyname[copies],					\
579b24ab676SJeff Bonwick 		    ws,							\
580b24ab676SJeff Bonwick 		    (u_longlong_t)BP_GET_LSIZE(bp),			\
581b24ab676SJeff Bonwick 		    (u_longlong_t)BP_GET_PSIZE(bp),			\
582b24ab676SJeff Bonwick 		    (u_longlong_t)bp->blk_birth,			\
583b24ab676SJeff Bonwick 		    (u_longlong_t)BP_PHYSICAL_BIRTH(bp),		\
5845d7b4d43SMatthew Ahrens 		    (u_longlong_t)BP_GET_FILL(bp),			\
585b24ab676SJeff Bonwick 		    ws,							\
586b24ab676SJeff Bonwick 		    (u_longlong_t)bp->blk_cksum.zc_word[0],		\
587b24ab676SJeff Bonwick 		    (u_longlong_t)bp->blk_cksum.zc_word[1],		\
588b24ab676SJeff Bonwick 		    (u_longlong_t)bp->blk_cksum.zc_word[2],		\
589b24ab676SJeff Bonwick 		    (u_longlong_t)bp->blk_cksum.zc_word[3]);		\
590b24ab676SJeff Bonwick 	}								\
591b24ab676SJeff Bonwick 	ASSERT(len < size);						\
592b24ab676SJeff Bonwick }
593b24ab676SJeff Bonwick 
594fa9e4066Sahrens #include <sys/dmu.h>
595fa9e4066Sahrens 
596ad23a2dbSjohansen #define	BP_GET_BUFC_TYPE(bp)						\
597ad135b5dSChristopher Siden 	(((BP_GET_LEVEL(bp) > 0) || (DMU_OT_IS_METADATA(BP_GET_TYPE(bp)))) ? \
598ad135b5dSChristopher Siden 	ARC_BUFC_METADATA : ARC_BUFC_DATA)
599fa9e4066Sahrens 
6001195e687SMark J Musante typedef enum spa_import_type {
6011195e687SMark J Musante 	SPA_IMPORT_EXISTING,
6021195e687SMark J Musante 	SPA_IMPORT_ASSEMBLE
6031195e687SMark J Musante } spa_import_type_t;
6041195e687SMark J Musante 
605fa9e4066Sahrens /* state manipulation functions */
606fa9e4066Sahrens extern int spa_open(const char *pool, spa_t **, void *tag);
607468c413aSTim Haley extern int spa_open_rewind(const char *pool, spa_t **, void *tag,
608468c413aSTim Haley     nvlist_t *policy, nvlist_t **config);
609ad135b5dSChristopher Siden extern int spa_get_stats(const char *pool, nvlist_t **config, char *altroot,
610ad135b5dSChristopher Siden     size_t buflen);
611990b4856Slling extern int spa_create(const char *pool, nvlist_t *config, nvlist_t *props,
6124445fffbSMatthew Ahrens     nvlist_t *zplprops);
613051aabe6Staylor extern int spa_import_rootpool(char *devpath, char *devid);
6144b964adaSGeorge Wilson extern int spa_import(const char *pool, nvlist_t *config, nvlist_t *props,
6154b964adaSGeorge Wilson     uint64_t flags);
616fa9e4066Sahrens extern nvlist_t *spa_tryimport(nvlist_t *tryconfig);
617fa9e4066Sahrens extern int spa_destroy(char *pool);
618394ab0cbSGeorge Wilson extern int spa_export(char *pool, nvlist_t **oldconfig, boolean_t force,
619394ab0cbSGeorge Wilson     boolean_t hardforce);
620ea8dc4b6Seschrock extern int spa_reset(char *pool);
621ea8dc4b6Seschrock extern void spa_async_request(spa_t *spa, int flag);
622088f3894Sahrens extern void spa_async_unrequest(spa_t *spa, int flag);
623ea8dc4b6Seschrock extern void spa_async_suspend(spa_t *spa);
624ea8dc4b6Seschrock extern void spa_async_resume(spa_t *spa);
625ea8dc4b6Seschrock extern spa_t *spa_inject_addref(char *pool);
626ea8dc4b6Seschrock extern void spa_inject_delref(spa_t *spa);
6273f9d6ad7SLin Ling extern void spa_scan_stat_init(spa_t *spa);
6283f9d6ad7SLin Ling extern int spa_scan_get_stats(spa_t *spa, pool_scan_stat_t *ps);
629ea8dc4b6Seschrock 
630e14bb325SJeff Bonwick #define	SPA_ASYNC_CONFIG_UPDATE	0x01
631e14bb325SJeff Bonwick #define	SPA_ASYNC_REMOVE	0x02
632e14bb325SJeff Bonwick #define	SPA_ASYNC_PROBE		0x04
633e14bb325SJeff Bonwick #define	SPA_ASYNC_RESILVER_DONE	0x08
634e14bb325SJeff Bonwick #define	SPA_ASYNC_RESILVER	0x10
635573ca77eSGeorge Wilson #define	SPA_ASYNC_AUTOEXPAND	0x20
6363f9d6ad7SLin Ling #define	SPA_ASYNC_REMOVE_DONE	0x40
6373f9d6ad7SLin Ling #define	SPA_ASYNC_REMOVE_STOP	0x80
6383f9d6ad7SLin Ling 
6393f9d6ad7SLin Ling /*
6403f9d6ad7SLin Ling  * Controls the behavior of spa_vdev_remove().
6413f9d6ad7SLin Ling  */
6423f9d6ad7SLin Ling #define	SPA_REMOVE_UNSPARE	0x01
6433f9d6ad7SLin Ling #define	SPA_REMOVE_DONE		0x02
644fa9e4066Sahrens 
645fa9e4066Sahrens /* device manipulation */
646fa9e4066Sahrens extern int spa_vdev_add(spa_t *spa, nvlist_t *nvroot);
647ea8dc4b6Seschrock extern int spa_vdev_attach(spa_t *spa, uint64_t guid, nvlist_t *nvroot,
648fa9e4066Sahrens     int replacing);
6498ad4d6ddSJeff Bonwick extern int spa_vdev_detach(spa_t *spa, uint64_t guid, uint64_t pguid,
6508ad4d6ddSJeff Bonwick     int replace_done);
65199653d4eSeschrock extern int spa_vdev_remove(spa_t *spa, uint64_t guid, boolean_t unspare);
6523f9d6ad7SLin Ling extern boolean_t spa_vdev_remove_active(spa_t *spa);
653c67d9675Seschrock extern int spa_vdev_setpath(spa_t *spa, uint64_t guid, const char *newpath);
6546809eb4eSEric Schrock extern int spa_vdev_setfru(spa_t *spa, uint64_t guid, const char *newfru);
6551195e687SMark J Musante extern int spa_vdev_split_mirror(spa_t *spa, char *newname, nvlist_t *config,
6561195e687SMark J Musante     nvlist_t *props, boolean_t exp);
657fa9e4066Sahrens 
65899653d4eSeschrock /* spare state (which is global across all pools) */
65939c23413Seschrock extern void spa_spare_add(vdev_t *vd);
66039c23413Seschrock extern void spa_spare_remove(vdev_t *vd);
66189a89ebfSlling extern boolean_t spa_spare_exists(uint64_t guid, uint64_t *pool, int *refcnt);
66239c23413Seschrock extern void spa_spare_activate(vdev_t *vd);
66399653d4eSeschrock 
664fa94a07fSbrendan /* L2ARC state (which is global across all pools) */
665fa94a07fSbrendan extern void spa_l2cache_add(vdev_t *vd);
666fa94a07fSbrendan extern void spa_l2cache_remove(vdev_t *vd);
667fa94a07fSbrendan extern boolean_t spa_l2cache_exists(uint64_t guid, uint64_t *pool);
668fa94a07fSbrendan extern void spa_l2cache_activate(vdev_t *vd);
669fa94a07fSbrendan extern void spa_l2cache_drop(spa_t *spa);
670fa94a07fSbrendan 
6713f9d6ad7SLin Ling /* scanning */
6723f9d6ad7SLin Ling extern int spa_scan(spa_t *spa, pool_scan_func_t func);
6733f9d6ad7SLin Ling extern int spa_scan_stop(spa_t *spa);
674fa9e4066Sahrens 
675fa9e4066Sahrens /* spa syncing */
676fa9e4066Sahrens extern void spa_sync(spa_t *spa, uint64_t txg); /* only for DMU use */
677fa9e4066Sahrens extern void spa_sync_allpools(void);
678fa9e4066Sahrens 
6793a737e0dSbrendan /* spa namespace global mutex */
6803a737e0dSbrendan extern kmutex_t spa_namespace_lock;
6813a737e0dSbrendan 
682fa9e4066Sahrens /*
683fa9e4066Sahrens  * SPA configuration functions in spa_config.c
684fa9e4066Sahrens  */
6850373e76bSbonwick 
6860373e76bSbonwick #define	SPA_CONFIG_UPDATE_POOL	0
6870373e76bSbonwick #define	SPA_CONFIG_UPDATE_VDEVS	1
6880373e76bSbonwick 
689c5904d13Seschrock extern void spa_config_sync(spa_t *, boolean_t, boolean_t);
690fa9e4066Sahrens extern void spa_config_load(void);
691fa9e4066Sahrens extern nvlist_t *spa_all_configs(uint64_t *);
692fa9e4066Sahrens extern void spa_config_set(spa_t *spa, nvlist_t *config);
693fa9e4066Sahrens extern nvlist_t *spa_config_generate(spa_t *spa, vdev_t *vd, uint64_t txg,
694fa9e4066Sahrens     int getstats);
6950373e76bSbonwick extern void spa_config_update(spa_t *spa, int what);
696fa9e4066Sahrens 
697fa9e4066Sahrens /*
698fa9e4066Sahrens  * Miscellaneous SPA routines in spa_misc.c
699fa9e4066Sahrens  */
700fa9e4066Sahrens 
701fa9e4066Sahrens /* Namespace manipulation */
702fa9e4066Sahrens extern spa_t *spa_lookup(const char *name);
703468c413aSTim Haley extern spa_t *spa_add(const char *name, nvlist_t *config, const char *altroot);
704fa9e4066Sahrens extern void spa_remove(spa_t *spa);
705fa9e4066Sahrens extern spa_t *spa_next(spa_t *prev);
706fa9e4066Sahrens 
707fa9e4066Sahrens /* Refcount functions */
708fa9e4066Sahrens extern void spa_open_ref(spa_t *spa, void *tag);
709fa9e4066Sahrens extern void spa_close(spa_t *spa, void *tag);
710bc9014e6SJustin Gibbs extern void spa_async_close(spa_t *spa, void *tag);
711fa9e4066Sahrens extern boolean_t spa_refcount_zero(spa_t *spa);
712fa9e4066Sahrens 
7138f18d1faSGeorge Wilson #define	SCL_NONE	0x00
714e14bb325SJeff Bonwick #define	SCL_CONFIG	0x01
715e14bb325SJeff Bonwick #define	SCL_STATE	0x02
716e14bb325SJeff Bonwick #define	SCL_L2ARC	0x04		/* hack until L2ARC 2.0 */
717e14bb325SJeff Bonwick #define	SCL_ALLOC	0x08
718e14bb325SJeff Bonwick #define	SCL_ZIO		0x10
719e14bb325SJeff Bonwick #define	SCL_FREE	0x20
720e14bb325SJeff Bonwick #define	SCL_VDEV	0x40
721e14bb325SJeff Bonwick #define	SCL_LOCKS	7
722e14bb325SJeff Bonwick #define	SCL_ALL		((1 << SCL_LOCKS) - 1)
723e14bb325SJeff Bonwick #define	SCL_STATE_ALL	(SCL_STATE | SCL_L2ARC | SCL_ZIO)
724e14bb325SJeff Bonwick 
725e14bb325SJeff Bonwick /* Pool configuration locks */
726e14bb325SJeff Bonwick extern int spa_config_tryenter(spa_t *spa, int locks, void *tag, krw_t rw);
727e14bb325SJeff Bonwick extern void spa_config_enter(spa_t *spa, int locks, void *tag, krw_t rw);
728e14bb325SJeff Bonwick extern void spa_config_exit(spa_t *spa, int locks, void *tag);
729e14bb325SJeff Bonwick extern int spa_config_held(spa_t *spa, int locks, krw_t rw);
730fa9e4066Sahrens 
731fa9e4066Sahrens /* Pool vdev add/remove lock */
732fa9e4066Sahrens extern uint64_t spa_vdev_enter(spa_t *spa);
73388ecc943SGeorge Wilson extern uint64_t spa_vdev_config_enter(spa_t *spa);
73488ecc943SGeorge Wilson extern void spa_vdev_config_exit(spa_t *spa, vdev_t *vd, uint64_t txg,
73588ecc943SGeorge Wilson     int error, char *tag);
736fa9e4066Sahrens extern int spa_vdev_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error);
737fa9e4066Sahrens 
738e14bb325SJeff Bonwick /* Pool vdev state change lock */
7398f18d1faSGeorge Wilson extern void spa_vdev_state_enter(spa_t *spa, int oplock);
740e14bb325SJeff Bonwick extern int spa_vdev_state_exit(spa_t *spa, vdev_t *vd, int error);
741e14bb325SJeff Bonwick 
742b24ab676SJeff Bonwick /* Log state */
743b24ab676SJeff Bonwick typedef enum spa_log_state {
744b24ab676SJeff Bonwick 	SPA_LOG_UNKNOWN = 0,	/* unknown log state */
745b24ab676SJeff Bonwick 	SPA_LOG_MISSING,	/* missing log(s) */
746b24ab676SJeff Bonwick 	SPA_LOG_CLEAR,		/* clear the log(s) */
747b24ab676SJeff Bonwick 	SPA_LOG_GOOD,		/* log(s) are good */
748b24ab676SJeff Bonwick } spa_log_state_t;
749b24ab676SJeff Bonwick 
750b24ab676SJeff Bonwick extern spa_log_state_t spa_get_log_state(spa_t *spa);
751b24ab676SJeff Bonwick extern void spa_set_log_state(spa_t *spa, spa_log_state_t state);
7521195e687SMark J Musante extern int spa_offline_log(spa_t *spa);
753b24ab676SJeff Bonwick 
754b24ab676SJeff Bonwick /* Log claim callback */
755b24ab676SJeff Bonwick extern void spa_claim_notify(zio_t *zio);
756b24ab676SJeff Bonwick 
757fa9e4066Sahrens /* Accessor functions */
75888b7b0f2SMatthew Ahrens extern boolean_t spa_shutting_down(spa_t *spa);
759fa9e4066Sahrens extern struct dsl_pool *spa_get_dsl(spa_t *spa);
760ad135b5dSChristopher Siden extern boolean_t spa_is_initializing(spa_t *spa);
761fa9e4066Sahrens extern blkptr_t *spa_get_rootblkptr(spa_t *spa);
762fa9e4066Sahrens extern void spa_set_rootblkptr(spa_t *spa, const blkptr_t *bp);
763fa9e4066Sahrens extern void spa_altroot(spa_t *, char *, size_t);
764fa9e4066Sahrens extern int spa_sync_pass(spa_t *spa);
765fa9e4066Sahrens extern char *spa_name(spa_t *spa);
766fa9e4066Sahrens extern uint64_t spa_guid(spa_t *spa);
767e9103aaeSGarrett D'Amore extern uint64_t spa_load_guid(spa_t *spa);
768fa9e4066Sahrens extern uint64_t spa_last_synced_txg(spa_t *spa);
769fa9e4066Sahrens extern uint64_t spa_first_txg(spa_t *spa);
770b24ab676SJeff Bonwick extern uint64_t spa_syncing_txg(spa_t *spa);
77199653d4eSeschrock extern uint64_t spa_version(spa_t *spa);
77288b7b0f2SMatthew Ahrens extern pool_state_t spa_state(spa_t *spa);
773b16da2e2SGeorge Wilson extern spa_load_state_t spa_load_state(spa_t *spa);
774fa9e4066Sahrens extern uint64_t spa_freeze_txg(spa_t *spa);
775fa9e4066Sahrens extern uint64_t spa_get_asize(spa_t *spa, uint64_t lsize);
776485bbbf5SGeorge Wilson extern uint64_t spa_get_dspace(spa_t *spa);
777c39f2c8cSChristopher Siden extern uint64_t spa_get_slop_space(spa_t *spa);
778485bbbf5SGeorge Wilson extern void spa_update_dspace(spa_t *spa);
77944cd46caSbillm extern uint64_t spa_version(spa_t *spa);
780b24ab676SJeff Bonwick extern boolean_t spa_deflate(spa_t *spa);
781b24ab676SJeff Bonwick extern metaslab_class_t *spa_normal_class(spa_t *spa);
782b24ab676SJeff Bonwick extern metaslab_class_t *spa_log_class(spa_t *spa);
783bc9014e6SJustin Gibbs extern void spa_evicting_os_register(spa_t *, objset_t *os);
784bc9014e6SJustin Gibbs extern void spa_evicting_os_deregister(spa_t *, objset_t *os);
785bc9014e6SJustin Gibbs extern void spa_evicting_os_wait(spa_t *spa);
78644cd46caSbillm extern int spa_max_replication(spa_t *spa);
7873f9d6ad7SLin Ling extern int spa_prev_software_version(spa_t *spa);
788fa9e4066Sahrens extern int spa_busy(void);
7890a4e9518Sgw extern uint8_t spa_get_failmode(spa_t *spa);
790e14bb325SJeff Bonwick extern boolean_t spa_suspended(spa_t *spa);
791b24ab676SJeff Bonwick extern uint64_t spa_bootfs(spa_t *spa);
792b24ab676SJeff Bonwick extern uint64_t spa_delegation(spa_t *spa);
793b24ab676SJeff Bonwick extern objset_t *spa_meta_objset(spa_t *spa);
794283b8460SGeorge.Wilson extern uint64_t spa_deadman_synctime(spa_t *spa);
795fa9e4066Sahrens 
796fa9e4066Sahrens /* Miscellaneous support routines */
79743466aaeSMax Grossman extern void spa_activate_mos_feature(spa_t *spa, const char *feature,
79843466aaeSMax Grossman     dmu_tx_t *tx);
799ad135b5dSChristopher Siden extern void spa_deactivate_mos_feature(spa_t *spa, const char *feature);
800fa9e4066Sahrens extern int spa_rename(const char *oldname, const char *newname);
801f9af39baSGeorge Wilson extern spa_t *spa_by_guid(uint64_t pool_guid, uint64_t device_guid);
802fa9e4066Sahrens extern boolean_t spa_guid_exists(uint64_t pool_guid, uint64_t device_guid);
803fa9e4066Sahrens extern char *spa_strdup(const char *);
804fa9e4066Sahrens extern void spa_strfree(char *);
805fa9e4066Sahrens extern uint64_t spa_get_random(uint64_t range);
8061195e687SMark J Musante extern uint64_t spa_generate_guid(spa_t *spa);
80743466aaeSMax Grossman extern void snprintf_blkptr(char *buf, size_t buflen, const blkptr_t *bp);
808fa9e4066Sahrens extern void spa_freeze(spa_t *spa);
809e9103aaeSGarrett D'Amore extern int spa_change_guid(spa_t *spa);
810990b4856Slling extern void spa_upgrade(spa_t *spa, uint64_t version);
811fa9e4066Sahrens extern void spa_evict_all(void);
812c5904d13Seschrock extern vdev_t *spa_lookup_by_guid(spa_t *spa, uint64_t guid,
813c5904d13Seschrock     boolean_t l2cache);
81499653d4eSeschrock extern boolean_t spa_has_spare(spa_t *, uint64_t guid);
815b24ab676SJeff Bonwick extern uint64_t dva_get_dsize_sync(spa_t *spa, const dva_t *dva);
816b24ab676SJeff Bonwick extern uint64_t bp_get_dsize_sync(spa_t *spa, const blkptr_t *bp);
817b24ab676SJeff Bonwick extern uint64_t bp_get_dsize(spa_t *spa, const blkptr_t *bp);
8186ce0521aSperrin extern boolean_t spa_has_slogs(spa_t *spa);
819bf82a41bSeschrock extern boolean_t spa_is_root(spa_t *spa);
8208ad4d6ddSJeff Bonwick extern boolean_t spa_writeable(spa_t *spa);
82173527f44SAlex Reece extern boolean_t spa_has_pending_synctask(spa_t *spa);
822b5152584SMatthew Ahrens extern int spa_maxblocksize(spa_t *spa);
823f63ab3d5SMatthew Ahrens extern void zfs_blkptr_verify(spa_t *spa, const blkptr_t *bp);
824468c413aSTim Haley 
8258ad4d6ddSJeff Bonwick extern int spa_mode(spa_t *spa);
826ca45db41SChris Kirby extern uint64_t strtonum(const char *str, char **nptr);
827ea8dc4b6Seschrock 
828ecd6cf80Smarks extern char *spa_his_ievent_table[];
829ecd6cf80Smarks 
83006eeb2adSek extern void spa_history_create_obj(spa_t *spa, dmu_tx_t *tx);
83106eeb2adSek extern int spa_history_get(spa_t *spa, uint64_t *offset, uint64_t *len_read,
83206eeb2adSek     char *his_buf);
8334445fffbSMatthew Ahrens extern int spa_history_log(spa_t *spa, const char *his_buf);
8344445fffbSMatthew Ahrens extern int spa_history_log_nvl(spa_t *spa, nvlist_t *nvl);
8354445fffbSMatthew Ahrens extern void spa_history_log_version(spa_t *spa, const char *operation);
8364445fffbSMatthew Ahrens extern void spa_history_log_internal(spa_t *spa, const char *operation,
8374445fffbSMatthew Ahrens     dmu_tx_t *tx, const char *fmt, ...);
8384445fffbSMatthew Ahrens extern void spa_history_log_internal_ds(struct dsl_dataset *ds, const char *op,
8394445fffbSMatthew Ahrens     dmu_tx_t *tx, const char *fmt, ...);
8404445fffbSMatthew Ahrens extern void spa_history_log_internal_dd(dsl_dir_t *dd, const char *operation,
8414445fffbSMatthew Ahrens     dmu_tx_t *tx, const char *fmt, ...);
84206eeb2adSek 
843ea8dc4b6Seschrock /* error handling */
8447802d7bfSMatthew Ahrens struct zbookmark_phys;
845b24ab676SJeff Bonwick extern void spa_log_error(spa_t *spa, zio_t *zio);
846ea8dc4b6Seschrock extern void zfs_ereport_post(const char *class, spa_t *spa, vdev_t *vd,
847b24ab676SJeff Bonwick     zio_t *zio, uint64_t stateoroffset, uint64_t length);
8483d7072f8Seschrock extern void zfs_post_remove(spa_t *spa, vdev_t *vd);
849069f55e2SEric Schrock extern void zfs_post_state_change(spa_t *spa, vdev_t *vd);
8503d7072f8Seschrock extern void zfs_post_autoreplace(spa_t *spa, vdev_t *vd);
851ea8dc4b6Seschrock extern uint64_t spa_get_errlog_size(spa_t *spa);
852ea8dc4b6Seschrock extern int spa_get_errlog(spa_t *spa, void *uaddr, size_t *count);
853ea8dc4b6Seschrock extern void spa_errlog_rotate(spa_t *spa);
854ea8dc4b6Seschrock extern void spa_errlog_drain(spa_t *spa);
855ea8dc4b6Seschrock extern void spa_errlog_sync(spa_t *spa, uint64_t txg);
856ea8dc4b6Seschrock extern void spa_get_errlists(spa_t *spa, avl_tree_t *last, avl_tree_t *scrub);
857fa9e4066Sahrens 
85887db74c1Sek /* vdev cache */
85987db74c1Sek extern void vdev_cache_stat_init(void);
86087db74c1Sek extern void vdev_cache_stat_fini(void);
86187db74c1Sek 
862fa9e4066Sahrens /* Initialization and termination */
863fa9e4066Sahrens extern void spa_init(int flags);
864fa9e4066Sahrens extern void spa_fini(void);
865e7cbe64fSgw extern void spa_boot_init();
866fa9e4066Sahrens 
867b1b8ab34Slling /* properties */
868990b4856Slling extern int spa_prop_set(spa_t *spa, nvlist_t *nvp);
869990b4856Slling extern int spa_prop_get(spa_t *spa, nvlist_t **nvp);
870990b4856Slling extern void spa_prop_clear_bootfs(spa_t *spa, uint64_t obj, dmu_tx_t *tx);
871379c004dSEric Schrock extern void spa_configfile_set(spa_t *, nvlist_t *, boolean_t);
872b1b8ab34Slling 
8733d7072f8Seschrock /* asynchronous event notification */
8743d7072f8Seschrock extern void spa_event_notify(spa_t *spa, vdev_t *vdev, const char *name);
8753d7072f8Seschrock 
876fa9e4066Sahrens #ifdef ZFS_DEBUG
877c0a81264Sek #define	dprintf_bp(bp, fmt, ...) do {				\
87843466aaeSMax Grossman 	if (zfs_flags & ZFS_DEBUG_DPRINTF) {			\
879c0a81264Sek 	char *__blkbuf = kmem_alloc(BP_SPRINTF_LEN, KM_SLEEP);	\
88043466aaeSMax Grossman 	snprintf_blkptr(__blkbuf, BP_SPRINTF_LEN, (bp));	\
881c0a81264Sek 	dprintf(fmt " %s\n", __VA_ARGS__, __blkbuf);		\
882c0a81264Sek 	kmem_free(__blkbuf, BP_SPRINTF_LEN);			\
883fa9e4066Sahrens 	} \
884fa9e4066Sahrens _NOTE(CONSTCOND) } while (0)
885fa9e4066Sahrens #else
886fa9e4066Sahrens #define	dprintf_bp(bp, fmt, ...)
887fa9e4066Sahrens #endif
888fa9e4066Sahrens 
88909c9d376SGeorge Wilson extern boolean_t spa_debug_enabled(spa_t *spa);
89009c9d376SGeorge Wilson #define	spa_dbgmsg(spa, ...)			\
89109c9d376SGeorge Wilson {						\
89209c9d376SGeorge Wilson 	if (spa_debug_enabled(spa))		\
89309c9d376SGeorge Wilson 		zfs_dbgmsg(__VA_ARGS__);	\
89409c9d376SGeorge Wilson }
89509c9d376SGeorge Wilson 
8968ad4d6ddSJeff Bonwick extern int spa_mode_global;			/* mode, e.g. FREAD | FWRITE */
897fa9e4066Sahrens 
898fa9e4066Sahrens #ifdef	__cplusplus
899fa9e4066Sahrens }
900fa9e4066Sahrens #endif
901fa9e4066Sahrens 
902fa9e4066Sahrens #endif	/* _SYS_SPA_H */
903