xref: /freebsd/sys/contrib/openzfs/include/sys/uberblock_impl.h (revision 61145dc2b94f12f6a47344fb9aac702321880e43)
1 // SPDX-License-Identifier: CDDL-1.0
2 /*
3  * CDDL HEADER START
4  *
5  * The contents of this file are subject to the terms of the
6  * Common Development and Distribution License (the "License").
7  * You may not use this file except in compliance with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or https://opensource.org/licenses/CDDL-1.0.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Copyright (c) 2016, 2017 by Delphix. All rights reserved.
25  */
26 
27 #ifndef _SYS_UBERBLOCK_IMPL_H
28 #define	_SYS_UBERBLOCK_IMPL_H
29 
30 #include <sys/uberblock.h>
31 
32 #ifdef	__cplusplus
33 extern "C" {
34 #endif
35 
36 /*
37  * The uberblock version is incremented whenever an incompatible on-disk
38  * format change is made to the SPA, DMU, or ZAP.
39  *
40  * Note: the first two fields should never be moved.  When a storage pool
41  * is opened, the uberblock must be read off the disk before the version
42  * can be checked.  If the ub_version field is moved, we may not detect
43  * version mismatch.  If the ub_magic field is moved, applications that
44  * expect the magic number in the first word won't work.
45  */
46 #define	UBERBLOCK_MAGIC		0x00bab10c		/* oo-ba-bloc!	*/
47 #define	UBERBLOCK_SHIFT		10			/* up to 1K	*/
48 #define	MMP_MAGIC		0xa11cea11		/* all-see-all	*/
49 
50 #define	MMP_INTERVAL_VALID_BIT	0x01
51 #define	MMP_SEQ_VALID_BIT	0x02
52 #define	MMP_FAIL_INT_VALID_BIT	0x04
53 
54 #define	MMP_VALID(ubp)		((ubp)->ub_magic == UBERBLOCK_MAGIC && \
55 				    (ubp)->ub_mmp_magic == MMP_MAGIC)
56 #define	MMP_INTERVAL_VALID(ubp)	(MMP_VALID(ubp) && ((ubp)->ub_mmp_config & \
57 				    MMP_INTERVAL_VALID_BIT))
58 #define	MMP_SEQ_VALID(ubp)	(MMP_VALID(ubp) && ((ubp)->ub_mmp_config & \
59 				    MMP_SEQ_VALID_BIT))
60 #define	MMP_FAIL_INT_VALID(ubp)	(MMP_VALID(ubp) && ((ubp)->ub_mmp_config & \
61 				    MMP_FAIL_INT_VALID_BIT))
62 
63 #define	MMP_INTERVAL(ubp)	(((ubp)->ub_mmp_config & 0x00000000FFFFFF00) \
64 				    >> 8)
65 #define	MMP_SEQ(ubp)		(((ubp)->ub_mmp_config & 0x0000FFFF00000000) \
66 				    >> 32)
67 #define	MMP_FAIL_INT(ubp)	(((ubp)->ub_mmp_config & 0xFFFF000000000000) \
68 				    >> 48)
69 
70 #define	MMP_INTERVAL_SET(write) \
71 	    (((uint64_t)(write & 0xFFFFFF) << 8) | MMP_INTERVAL_VALID_BIT)
72 
73 #define	MMP_SEQ_SET(seq) \
74 	    (((uint64_t)(seq & 0xFFFF) << 32) | MMP_SEQ_VALID_BIT)
75 
76 #define	MMP_FAIL_INT_SET(fail) \
77 	    (((uint64_t)(fail & 0xFFFF) << 48) | MMP_FAIL_INT_VALID_BIT)
78 
79 /*
80  * RAIDZ expansion reflow information.
81  *
82  *	64      56      48      40      32      24      16      8       0
83  *	+-------+-------+-------+-------+-------+-------+-------+-------+
84  *	|Scratch |                    Reflow                            |
85  *	| State  |                    Offset                            |
86  *	+-------+-------+-------+-------+-------+-------+-------+-------+
87  */
88 typedef enum raidz_reflow_scratch_state {
89 	RRSS_SCRATCH_NOT_IN_USE = 0,
90 	RRSS_SCRATCH_VALID,
91 	RRSS_SCRATCH_INVALID_SYNCED,
92 	RRSS_SCRATCH_INVALID_SYNCED_ON_IMPORT,
93 	RRSS_SCRATCH_INVALID_SYNCED_REFLOW
94 } raidz_reflow_scratch_state_t;
95 
96 #define	RRSS_GET_OFFSET(ub) \
97 	BF64_GET_SB((ub)->ub_raidz_reflow_info, 0, 55, SPA_MINBLOCKSHIFT, 0)
98 #define	RRSS_SET_OFFSET(ub, x) \
99 	BF64_SET_SB((ub)->ub_raidz_reflow_info, 0, 55, SPA_MINBLOCKSHIFT, 0, x)
100 
101 #define	RRSS_GET_STATE(ub) \
102 	BF64_GET((ub)->ub_raidz_reflow_info, 55, 9)
103 #define	RRSS_SET_STATE(ub, x) \
104 	BF64_SET((ub)->ub_raidz_reflow_info, 55, 9, x)
105 
106 #define	RAIDZ_REFLOW_SET(ub, state, offset) do { \
107 	(ub)->ub_raidz_reflow_info = 0; \
108 	RRSS_SET_OFFSET(ub, offset); \
109 	RRSS_SET_STATE(ub, state); \
110 } while (0)
111 
112 struct uberblock {
113 	uint64_t	ub_magic;	/* UBERBLOCK_MAGIC		*/
114 	uint64_t	ub_version;	/* SPA_VERSION			*/
115 	uint64_t	ub_txg;		/* txg of last sync		*/
116 	uint64_t	ub_guid_sum;	/* sum of all vdev guids	*/
117 	uint64_t	ub_timestamp;	/* UTC time of last sync	*/
118 	blkptr_t	ub_rootbp;	/* MOS objset_phys_t		*/
119 
120 	/* highest SPA_VERSION supported by software that wrote this txg */
121 	uint64_t	ub_software_version;
122 
123 	/* Maybe missing in uberblocks we read, but always written */
124 	uint64_t	ub_mmp_magic;	/* MMP_MAGIC			*/
125 	/*
126 	 * If ub_mmp_delay == 0 and ub_mmp_magic is valid, MMP is off.
127 	 * Otherwise, nanosec since last MMP write.
128 	 */
129 	uint64_t	ub_mmp_delay;
130 
131 	/*
132 	 * The ub_mmp_config contains the multihost write interval, multihost
133 	 * fail intervals, sequence number for sub-second granularity, and
134 	 * valid bit mask.  This layout is as follows:
135 	 *
136 	 *   64      56      48      40      32      24      16      8       0
137 	 *   +-------+-------+-------+-------+-------+-------+-------+-------+
138 	 * 0 | Fail Intervals|      Seq      |   Write Interval (ms) | VALID |
139 	 *   +-------+-------+-------+-------+-------+-------+-------+-------+
140 	 *
141 	 * This allows a write_interval of (2^24/1000)s, over 4.5 hours
142 	 *
143 	 * VALID Bits:
144 	 * - 0x01 - Write Interval (ms)
145 	 * - 0x02 - Sequence number exists
146 	 * - 0x04 - Fail Intervals
147 	 * - 0xf8 - Reserved
148 	 */
149 	uint64_t	ub_mmp_config;
150 
151 	/*
152 	 * ub_checkpoint_txg indicates two things about the current uberblock:
153 	 *
154 	 * 1] If it is not zero then this uberblock is a checkpoint. If it is
155 	 *    zero, then this uberblock is not a checkpoint.
156 	 *
157 	 * 2] On checkpointed uberblocks, the value of ub_checkpoint_txg is
158 	 *    the ub_txg that the uberblock had at the time we moved it to
159 	 *    the MOS config.
160 	 *
161 	 * The field is set when we checkpoint the uberblock and continues to
162 	 * hold that value even after we've rewound (unlike the ub_txg that
163 	 * is reset to a higher value).
164 	 *
165 	 * Besides checks used to determine whether we are reopening the
166 	 * pool from a checkpointed uberblock [see spa_ld_select_uberblock()],
167 	 * the value of the field is used to determine which ZIL blocks have
168 	 * been allocated according to the ms_sm when we are rewinding to a
169 	 * checkpoint. Specifically, if logical birth > ub_checkpoint_txg,then
170 	 * the ZIL block is not allocated [see uses of spa_min_claim_txg()].
171 	 */
172 	uint64_t	ub_checkpoint_txg;
173 
174 	uint64_t	ub_raidz_reflow_info;
175 };
176 
177 #ifdef	__cplusplus
178 }
179 #endif
180 
181 #endif	/* _SYS_UBERBLOCK_IMPL_H */
182