]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Include/Guid/VariableFormat.h
MdeModulePkg: Move authenticated variable definition from SecurityPkg
[mirror_edk2.git] / MdeModulePkg / Include / Guid / VariableFormat.h
1 /** @file
2 The variable data structures are related to EDK II-specific implementation of UEFI variables.
3 VariableFormat.h defines variable data headers and variable storage region headers.
4
5 Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
6 This program and the accompanying materials are licensed and made available under
7 the terms and conditions of the BSD License that accompanies this distribution.
8 The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php.
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #ifndef __VARIABLE_FORMAT_H__
17 #define __VARIABLE_FORMAT_H__
18
19 #define EFI_VARIABLE_GUID \
20 { 0xddcf3616, 0x3275, 0x4164, { 0x98, 0xb6, 0xfe, 0x85, 0x70, 0x7f, 0xfe, 0x7d } }
21
22 #define EFI_AUTHENTICATED_VARIABLE_GUID \
23 { 0xaaf32c78, 0x947b, 0x439a, { 0xa1, 0x80, 0x2e, 0x14, 0x4e, 0xc3, 0x77, 0x92 } }
24
25 extern EFI_GUID gEfiVariableGuid;
26 extern EFI_GUID gEfiAuthenticatedVariableGuid;
27
28 ///
29 /// Alignment of variable name and data, according to the architecture:
30 /// * For IA-32 and Intel(R) 64 architectures: 1.
31 /// * For IA-64 architecture: 8.
32 ///
33 #if defined (MDE_CPU_IPF)
34 #define ALIGNMENT 8
35 #else
36 #define ALIGNMENT 1
37 #endif
38
39 //
40 // GET_PAD_SIZE calculates the miminal pad bytes needed to make the current pad size satisfy the alignment requirement.
41 //
42 #if (ALIGNMENT == 1)
43 #define GET_PAD_SIZE(a) (0)
44 #else
45 #define GET_PAD_SIZE(a) (((~a) + 1) & (ALIGNMENT - 1))
46 #endif
47
48 ///
49 /// Alignment of Variable Data Header in Variable Store region.
50 ///
51 #define HEADER_ALIGNMENT 4
52 #define HEADER_ALIGN(Header) (((UINTN) (Header) + HEADER_ALIGNMENT - 1) & (~(HEADER_ALIGNMENT - 1)))
53
54 ///
55 /// Status of Variable Store Region.
56 ///
57 typedef enum {
58 EfiRaw,
59 EfiValid,
60 EfiInvalid,
61 EfiUnknown
62 } VARIABLE_STORE_STATUS;
63
64 #pragma pack(1)
65
66 #define VARIABLE_STORE_SIGNATURE EFI_VARIABLE_GUID
67 #define AUTHENTICATED_VARIABLE_STORE_SIGNATURE EFI_AUTHENTICATED_VARIABLE_GUID
68
69 ///
70 /// Variable Store Header Format and State.
71 ///
72 #define VARIABLE_STORE_FORMATTED 0x5a
73 #define VARIABLE_STORE_HEALTHY 0xfe
74
75 ///
76 /// Variable Store region header.
77 ///
78 typedef struct {
79 ///
80 /// Variable store region signature.
81 ///
82 EFI_GUID Signature;
83 ///
84 /// Size of entire variable store,
85 /// including size of variable store header but not including the size of FvHeader.
86 ///
87 UINT32 Size;
88 ///
89 /// Variable region format state.
90 ///
91 UINT8 Format;
92 ///
93 /// Variable region healthy state.
94 ///
95 UINT8 State;
96 UINT16 Reserved;
97 UINT32 Reserved1;
98 } VARIABLE_STORE_HEADER;
99
100 ///
101 /// Variable data start flag.
102 ///
103 #define VARIABLE_DATA 0x55AA
104
105 ///
106 /// Variable State flags.
107 ///
108 #define VAR_IN_DELETED_TRANSITION 0xfe ///< Variable is in obsolete transition.
109 #define VAR_DELETED 0xfd ///< Variable is obsolete.
110 #define VAR_HEADER_VALID_ONLY 0x7f ///< Variable header has been valid.
111 #define VAR_ADDED 0x3f ///< Variable has been completely added.
112
113 ///
114 /// Single Variable Data Header Structure.
115 ///
116 typedef struct {
117 ///
118 /// Variable Data Start Flag.
119 ///
120 UINT16 StartId;
121 ///
122 /// Variable State defined above.
123 ///
124 UINT8 State;
125 UINT8 Reserved;
126 ///
127 /// Attributes of variable defined in UEFI specification.
128 ///
129 UINT32 Attributes;
130 ///
131 /// Size of variable null-terminated Unicode string name.
132 ///
133 UINT32 NameSize;
134 ///
135 /// Size of the variable data without this header.
136 ///
137 UINT32 DataSize;
138 ///
139 /// A unique identifier for the vendor that produces and consumes this varaible.
140 ///
141 EFI_GUID VendorGuid;
142 } VARIABLE_HEADER;
143
144 ///
145 /// Single Authenticated Variable Data Header Structure.
146 ///
147 typedef struct {
148 ///
149 /// Variable Data Start Flag.
150 ///
151 UINT16 StartId;
152 ///
153 /// Variable State defined above.
154 ///
155 UINT8 State;
156 UINT8 Reserved;
157 ///
158 /// Attributes of variable defined in UEFI specification.
159 ///
160 UINT32 Attributes;
161 ///
162 /// Associated monotonic count value against replay attack.
163 ///
164 UINT64 MonotonicCount;
165 ///
166 /// Associated TimeStamp value against replay attack.
167 ///
168 EFI_TIME TimeStamp;
169 ///
170 /// Index of associated public key in database.
171 ///
172 UINT32 PubKeyIndex;
173 ///
174 /// Size of variable null-terminated Unicode string name.
175 ///
176 UINT32 NameSize;
177 ///
178 /// Size of the variable data without this header.
179 ///
180 UINT32 DataSize;
181 ///
182 /// A unique identifier for the vendor that produces and consumes this varaible.
183 ///
184 EFI_GUID VendorGuid;
185 } AUTHENTICATED_VARIABLE_HEADER;
186
187 #pragma pack()
188
189 typedef struct _VARIABLE_INFO_ENTRY VARIABLE_INFO_ENTRY;
190
191 ///
192 /// This structure contains the variable list that is put in EFI system table.
193 /// The variable driver collects all variables that were used at boot service time and produces this list.
194 /// This is an optional feature to dump all used variables in shell environment.
195 ///
196 struct _VARIABLE_INFO_ENTRY {
197 VARIABLE_INFO_ENTRY *Next; ///< Pointer to next entry.
198 EFI_GUID VendorGuid; ///< Guid of Variable.
199 CHAR16 *Name; ///< Name of Variable.
200 UINT32 Attributes; ///< Attributes of variable defined in UEFI specification.
201 UINT32 ReadCount; ///< Number of times to read this variable.
202 UINT32 WriteCount; ///< Number of times to write this variable.
203 UINT32 DeleteCount; ///< Number of times to delete this variable.
204 UINT32 CacheCount; ///< Number of times that cache hits this variable.
205 BOOLEAN Volatile; ///< TRUE if volatile, FALSE if non-volatile.
206 };
207
208 #endif // _EFI_VARIABLE_H_