blob: 0cbed53d1dbf4e89410a5882e7114107dbf5df73 [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Rob Clarkad644e72017-09-13 18:05:37 -04002/*
Heinrich Schuchardtf0b0f7f2020-03-19 17:15:18 +00003 * UEFI runtime variable services
Rob Clarkad644e72017-09-13 18:05:37 -04004 *
Heinrich Schuchardtf0b0f7f2020-03-19 17:15:18 +00005 * Copyright (c) 2017 Rob Clark
Rob Clarkad644e72017-09-13 18:05:37 -04006 */
7
Heinrich Schuchardt7dda1632020-07-14 21:25:28 +02008#define LOG_CATEGORY LOGC_EFI
9
Rob Clarkad644e72017-09-13 18:05:37 -040010#include <efi_loader.h>
Heinrich Schuchardtf2d2b3a2020-06-22 18:10:27 +020011#include <efi_variable.h>
Simon Glass09140112020-05-10 11:40:03 -060012#include <env.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060013#include <env_internal.h>
Heinrich Schuchardte731af42019-10-26 23:53:48 +020014#include <hexdump.h>
Heinrich Schuchardt7dda1632020-07-14 21:25:28 +020015#include <log.h>
Heinrich Schuchardte731af42019-10-26 23:53:48 +020016#include <malloc.h>
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +090017#include <rtc.h>
AKASHI Takahirod99a87f2019-01-21 12:43:13 +010018#include <search.h>
Simon Glassba06b3c2020-05-10 11:39:52 -060019#include <uuid.h>
AKASHI Takahiroe3f5c9c2020-04-21 09:38:17 +090020#include <crypto/pkcs7_parser.h>
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +090021#include <linux/compat.h>
Simon Glass3db71102019-11-14 12:57:16 -070022#include <u-boot/crc.h>
Heinrich Schuchardt7dda1632020-07-14 21:25:28 +020023#include <asm/sections.h>
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +090024
25#ifdef CONFIG_EFI_SECURE_BOOT
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +090026
27/**
28 * efi_variable_authenticate - authenticate a variable
29 * @variable: Variable name in u16
30 * @vendor: Guid of variable
31 * @data_size: Size of @data
32 * @data: Pointer to variable's value
33 * @given_attr: Attributes to be given at SetVariable()
34 * @env_attr: Attributes that an existing variable holds
35 * @time: signed time that an existing variable holds
36 *
37 * Called by efi_set_variable() to verify that the input is correct.
38 * Will replace the given data pointer with another that points to
39 * the actual data to store in the internal memory.
40 * On success, @data and @data_size will be replaced with variable's
41 * actual data, excluding authentication data, and its size, and variable's
42 * attributes and signed time will also be returned in @env_attr and @time,
43 * respectively.
44 *
Heinrich Schuchardt30f92ce2020-05-03 16:29:00 +020045 * Return: status code
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +090046 */
Heinrich Schuchardtd47671c2021-09-09 07:12:14 +020047static efi_status_t efi_variable_authenticate(const u16 *variable,
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +090048 const efi_guid_t *vendor,
49 efi_uintn_t *data_size,
50 const void **data, u32 given_attr,
51 u32 *env_attr, u64 *time)
52{
53 const struct efi_variable_authentication_2 *auth;
54 struct efi_signature_store *truststore, *truststore2;
55 struct pkcs7_message *var_sig;
56 struct efi_image_regions *regs;
57 struct efi_time timestamp;
58 struct rtc_time tm;
59 u64 new_time;
AKASHI Takahiro0658bb22020-08-12 09:37:50 +090060 u8 *ebuf;
Heinrich Schuchardt99bfab82020-07-15 12:40:35 +020061 enum efi_auth_var_type var_type;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +090062 efi_status_t ret;
63
64 var_sig = NULL;
65 truststore = NULL;
66 truststore2 = NULL;
67 regs = NULL;
AKASHI Takahiro0658bb22020-08-12 09:37:50 +090068 ebuf = NULL;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +090069 ret = EFI_SECURITY_VIOLATION;
70
71 if (*data_size < sizeof(struct efi_variable_authentication_2))
72 goto err;
73
74 /* authentication data */
75 auth = *data;
76 if (*data_size < (sizeof(auth->time_stamp)
77 + auth->auth_info.hdr.dwLength))
78 goto err;
79
80 if (guidcmp(&auth->auth_info.cert_type, &efi_guid_cert_type_pkcs7))
81 goto err;
82
Heinrich Schuchardt33f183f2020-07-01 12:44:00 +020083 memcpy(&timestamp, &auth->time_stamp, sizeof(timestamp));
84 if (timestamp.pad1 || timestamp.nanosecond || timestamp.timezone ||
85 timestamp.daylight || timestamp.pad2)
86 goto err;
87
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +090088 *data += sizeof(auth->time_stamp) + auth->auth_info.hdr.dwLength;
89 *data_size -= (sizeof(auth->time_stamp)
90 + auth->auth_info.hdr.dwLength);
91
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +090092 memset(&tm, 0, sizeof(tm));
93 tm.tm_year = timestamp.year;
94 tm.tm_mon = timestamp.month;
95 tm.tm_mday = timestamp.day;
96 tm.tm_hour = timestamp.hour;
97 tm.tm_min = timestamp.minute;
98 tm.tm_sec = timestamp.second;
99 new_time = rtc_mktime(&tm);
100
101 if (!efi_secure_boot_enabled()) {
102 /* finished checking */
103 *time = new_time;
104 return EFI_SUCCESS;
105 }
106
107 if (new_time <= *time)
108 goto err;
109
110 /* data to be digested */
111 regs = calloc(sizeof(*regs) + sizeof(struct image_region) * 5, 1);
112 if (!regs)
113 goto err;
114 regs->max = 5;
115 efi_image_region_add(regs, (uint8_t *)variable,
116 (uint8_t *)variable
117 + u16_strlen(variable) * sizeof(u16), 1);
118 efi_image_region_add(regs, (uint8_t *)vendor,
119 (uint8_t *)vendor + sizeof(*vendor), 1);
120 efi_image_region_add(regs, (uint8_t *)&given_attr,
121 (uint8_t *)&given_attr + sizeof(given_attr), 1);
122 efi_image_region_add(regs, (uint8_t *)&timestamp,
123 (uint8_t *)&timestamp + sizeof(timestamp), 1);
124 efi_image_region_add(regs, (uint8_t *)*data,
125 (uint8_t *)*data + *data_size, 1);
126
127 /* variable's signature list */
128 if (auth->auth_info.hdr.dwLength < sizeof(auth->auth_info))
129 goto err;
AKASHI Takahiro0658bb22020-08-12 09:37:50 +0900130
131 /* ebuf should be kept valid during the authentication */
Sughosh Ganu201b8062020-12-30 19:27:07 +0530132 var_sig = efi_parse_pkcs7_header(auth->auth_info.cert_data,
133 auth->auth_info.hdr.dwLength
134 - sizeof(auth->auth_info),
135 &ebuf);
Patrick Wildt9ad15222020-05-07 02:13:18 +0200136 if (!var_sig) {
AKASHI Takahiroce3c3862020-06-09 14:09:34 +0900137 EFI_PRINT("Parsing variable's signature failed\n");
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900138 goto err;
139 }
140
141 /* signature database used for authentication */
Heinrich Schuchardt99bfab82020-07-15 12:40:35 +0200142 var_type = efi_auth_var_get_type(variable, vendor);
143 switch (var_type) {
144 case EFI_AUTH_VAR_PK:
145 case EFI_AUTH_VAR_KEK:
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900146 /* with PK */
Simon Glass156ccbc2022-01-23 12:55:12 -0700147 truststore = efi_sigstore_parse_sigdb(u"PK");
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900148 if (!truststore)
149 goto err;
Heinrich Schuchardt99bfab82020-07-15 12:40:35 +0200150 break;
151 case EFI_AUTH_VAR_DB:
152 case EFI_AUTH_VAR_DBX:
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900153 /* with PK and KEK */
Simon Glass156ccbc2022-01-23 12:55:12 -0700154 truststore = efi_sigstore_parse_sigdb(u"KEK");
155 truststore2 = efi_sigstore_parse_sigdb(u"PK");
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900156 if (!truststore) {
157 if (!truststore2)
158 goto err;
159
160 truststore = truststore2;
161 truststore2 = NULL;
162 }
Heinrich Schuchardt99bfab82020-07-15 12:40:35 +0200163 break;
164 default:
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900165 /* TODO: support private authenticated variables */
Weizhao Ouyang0ec42792024-04-10 12:19:33 +0000166 ret = EFI_UNSUPPORTED;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900167 goto err;
168 }
169
170 /* verify signature */
AKASHI Takahiro1115edd2020-07-21 19:35:22 +0900171 if (efi_signature_verify(regs, var_sig, truststore, NULL)) {
AKASHI Takahiroce3c3862020-06-09 14:09:34 +0900172 EFI_PRINT("Verified\n");
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900173 } else {
174 if (truststore2 &&
AKASHI Takahiro1115edd2020-07-21 19:35:22 +0900175 efi_signature_verify(regs, var_sig, truststore2, NULL)) {
AKASHI Takahiroce3c3862020-06-09 14:09:34 +0900176 EFI_PRINT("Verified\n");
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900177 } else {
AKASHI Takahiroce3c3862020-06-09 14:09:34 +0900178 EFI_PRINT("Verifying variable's signature failed\n");
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900179 goto err;
180 }
181 }
182
183 /* finished checking */
Heinrich Schuchardt3a92f852020-06-30 12:02:14 +0200184 *time = new_time;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900185 ret = EFI_SUCCESS;
186
187err:
188 efi_sigstore_free(truststore);
189 efi_sigstore_free(truststore2);
190 pkcs7_free_message(var_sig);
AKASHI Takahiro0658bb22020-08-12 09:37:50 +0900191 free(ebuf);
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900192 free(regs);
193
194 return ret;
195}
196#else
Heinrich Schuchardtd47671c2021-09-09 07:12:14 +0200197static efi_status_t efi_variable_authenticate(const u16 *variable,
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900198 const efi_guid_t *vendor,
199 efi_uintn_t *data_size,
200 const void **data, u32 given_attr,
201 u32 *env_attr, u64 *time)
202{
203 return EFI_SUCCESS;
204}
205#endif /* CONFIG_EFI_SECURE_BOOT */
206
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200207efi_status_t __efi_runtime
Heinrich Schuchardtd47671c2021-09-09 07:12:14 +0200208efi_get_variable_int(const u16 *variable_name, const efi_guid_t *vendor,
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200209 u32 *attributes, efi_uintn_t *data_size, void *data,
210 u64 *timep)
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900211{
Ilias Apalodimas00da8d62024-04-18 15:54:52 +0300212 return efi_get_variable_mem(variable_name, vendor, attributes, data_size,
213 data, timep, 0);
AKASHI Takahirod99a87f2019-01-21 12:43:13 +0100214}
215
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200216efi_status_t __efi_runtime
217efi_get_next_variable_name_int(efi_uintn_t *variable_name_size,
218 u16 *variable_name, efi_guid_t *vendor)
Rob Clarkad644e72017-09-13 18:05:37 -0400219{
Ilias Apalodimas00da8d62024-04-18 15:54:52 +0300220 return efi_get_next_variable_name_mem(variable_name_size, variable_name,
221 vendor, 0);
Rob Clarkad644e72017-09-13 18:05:37 -0400222}
223
Ilias Apalodimasc28d32f2024-04-18 15:54:50 +0300224/**
225 * setvariable_allowed() - checks defined by the UEFI spec for setvariable
226 *
227 * @variable_name: name of the variable
228 * @vendor: vendor GUID
229 * @attributes: attributes of the variable
230 * @data_size: size of the buffer with the variable value
231 * @data: buffer with the variable value
232 * Return: status code
233 */
234static efi_status_t __efi_runtime
235setvariable_allowed(const u16 *variable_name, const efi_guid_t *vendor,
236 u32 attributes, efi_uintn_t data_size, const void *data)
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900237{
Masahisa Kojima26a35022023-02-21 11:33:17 +0900238 if (!variable_name || !*variable_name || !vendor)
239 return EFI_INVALID_PARAMETER;
240
241 if (data_size && !data)
242 return EFI_INVALID_PARAMETER;
243
Heinrich Schuchardte0fa2cf2024-04-03 17:33:35 +0200244 /*
245 * EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS is deprecated.
246 * We don't support EFI_VARIABLE_ENHANCED_AUTHENTICATED_ACCESS.
247 */
248 if (attributes & (EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS | \
249 EFI_VARIABLE_ENHANCED_AUTHENTICATED_ACCESS))
Masahisa Kojima26a35022023-02-21 11:33:17 +0900250 return EFI_UNSUPPORTED;
251
252 /* Make sure if runtime bit is set, boot service bit is set also */
253 if ((attributes &
254 (EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_BOOTSERVICE_ACCESS)) ==
255 EFI_VARIABLE_RUNTIME_ACCESS)
256 return EFI_INVALID_PARAMETER;
257
258 /* only EFI_VARIABLE_NON_VOLATILE attribute is invalid */
259 if ((attributes & EFI_VARIABLE_MASK) == EFI_VARIABLE_NON_VOLATILE)
260 return EFI_INVALID_PARAMETER;
261
262 /* Make sure HR is set with NV, BS and RT */
263 if (attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD &&
264 (!(attributes & EFI_VARIABLE_NON_VOLATILE) ||
265 !(attributes & EFI_VARIABLE_RUNTIME_ACCESS) ||
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200266 !(attributes & EFI_VARIABLE_BOOTSERVICE_ACCESS)))
267 return EFI_INVALID_PARAMETER;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900268
Ilias Apalodimasc28d32f2024-04-18 15:54:50 +0300269 return EFI_SUCCESS;
270}
271
272efi_status_t efi_set_variable_int(const u16 *variable_name,
273 const efi_guid_t *vendor,
274 u32 attributes, efi_uintn_t data_size,
275 const void *data, bool ro_check)
276{
277 struct efi_var_entry *var;
278 efi_uintn_t ret;
279 bool append, delete;
280 u64 time = 0;
281 enum efi_auth_var_type var_type;
282
283 ret = setvariable_allowed(variable_name, vendor, attributes, data_size,
284 data);
285 if (ret != EFI_SUCCESS)
286 return ret;
287
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900288 /* check if a variable exists */
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200289 var = efi_var_mem_find(vendor, variable_name, NULL);
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900290 append = !!(attributes & EFI_VARIABLE_APPEND_WRITE);
Heinrich Schuchardt19327c12024-04-03 17:33:33 +0200291 attributes &= ~EFI_VARIABLE_APPEND_WRITE;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900292 delete = !append && (!data_size || !attributes);
293
294 /* check attributes */
Heinrich Schuchardt7dda1632020-07-14 21:25:28 +0200295 var_type = efi_auth_var_get_type(variable_name, vendor);
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200296 if (var) {
297 if (ro_check && (var->attr & EFI_VARIABLE_READ_ONLY))
298 return EFI_WRITE_PROTECTED;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900299
Heinrich Schuchardt7dda1632020-07-14 21:25:28 +0200300 if (IS_ENABLED(CONFIG_EFI_VARIABLES_PRESEED)) {
Heinrich Schuchardtb191aa42021-08-26 04:30:24 +0200301 if (var_type >= EFI_AUTH_VAR_PK)
Heinrich Schuchardt7dda1632020-07-14 21:25:28 +0200302 return EFI_WRITE_PROTECTED;
303 }
304
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900305 /* attributes won't be changed */
306 if (!delete &&
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200307 ((ro_check && var->attr != attributes) ||
Heinrich Schuchardt3b51c3a2024-04-03 17:33:34 +0200308 (!ro_check && ((var->attr & ~EFI_VARIABLE_READ_ONLY)
309 != (attributes & ~EFI_VARIABLE_READ_ONLY))))) {
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200310 return EFI_INVALID_PARAMETER;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900311 }
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200312 time = var->time;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900313 } else {
Masahisa Kojima584a2ad2024-04-02 18:09:50 +0900314 /*
315 * UEFI specification does not clearly describe the expected
316 * behavior of append write with data size 0, we follow
317 * the EDK II reference implementation.
318 */
319 if (append && !data_size)
320 return EFI_SUCCESS;
321
322 /*
323 * EFI_VARIABLE_APPEND_WRITE to non-existent variable is accepted
324 * and new variable is created in EDK II reference implementation.
325 * We follow it and only check the deletion here.
326 */
327 if (delete)
328 /* Trying to delete a non-existent variable. */
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200329 return EFI_NOT_FOUND;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900330 }
331
Heinrich Schuchardtb191aa42021-08-26 04:30:24 +0200332 if (var_type >= EFI_AUTH_VAR_PK) {
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900333 /* authentication is mandatory */
334 if (!(attributes &
335 EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS)) {
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200336 EFI_PRINT("%ls: TIME_BASED_AUTHENTICATED_WRITE_ACCESS required\n",
AKASHI Takahiroce3c3862020-06-09 14:09:34 +0900337 variable_name);
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200338 return EFI_INVALID_PARAMETER;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900339 }
340 }
341
342 /* authenticate a variable */
343 if (IS_ENABLED(CONFIG_EFI_SECURE_BOOT)) {
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900344 if (attributes &
345 EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS) {
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200346 u32 env_attr;
347
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900348 ret = efi_variable_authenticate(variable_name, vendor,
349 &data_size, &data,
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200350 attributes, &env_attr,
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900351 &time);
352 if (ret != EFI_SUCCESS)
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200353 return ret;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900354
355 /* last chance to check for delete */
356 if (!data_size)
357 delete = true;
358 }
359 } else {
360 if (attributes &
Masahisa Kojima26a35022023-02-21 11:33:17 +0900361 EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS) {
AKASHI Takahiroce3c3862020-06-09 14:09:34 +0900362 EFI_PRINT("Secure boot is not configured\n");
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200363 return EFI_INVALID_PARAMETER;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900364 }
365 }
366
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900367 if (delete) {
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200368 /* EFI_NOT_FOUND has been handled before */
Heinrich Schuchardtab02c3f2020-11-02 19:32:24 +0100369 attributes = var->attr;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900370 ret = EFI_SUCCESS;
Masahisa Kojima584a2ad2024-04-02 18:09:50 +0900371 } else if (append && var) {
372 /*
373 * data is appended if EFI_VARIABLE_APPEND_WRITE is set and
374 * variable exists.
375 */
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200376 u16 *old_data = var->name;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900377
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200378 for (; *old_data; ++old_data)
379 ;
380 ++old_data;
381 ret = efi_var_mem_ins(variable_name, vendor, attributes,
382 var->length, old_data, data_size, data,
383 time);
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900384 } else {
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200385 ret = efi_var_mem_ins(variable_name, vendor, attributes,
386 data_size, data, 0, NULL, time);
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900387 }
388
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200389 if (ret != EFI_SUCCESS)
390 return ret;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900391
Ilias Apalodimas6b0f1942024-04-03 18:43:53 +0300392 efi_var_mem_del(var);
393
Heinrich Schuchardt99bfab82020-07-15 12:40:35 +0200394 if (var_type == EFI_AUTH_VAR_PK)
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200395 ret = efi_init_secure_state();
396 else
397 ret = EFI_SUCCESS;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900398
Heinrich Schuchardt90c42052023-01-19 14:49:33 +0100399 /*
400 * Write non-volatile EFI variables to file
401 * TODO: check if a value change has occured to avoid superfluous writes
402 */
403 if (attributes & EFI_VARIABLE_NON_VOLATILE)
Heinrich Schuchardt5f7dcf02020-03-19 18:21:58 +0000404 efi_var_to_file();
405
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200406 return EFI_SUCCESS;
AKASHI Takahiro767f6ee2020-04-14 11:51:41 +0900407}
408
Heinrich Schuchardt01df8cf2020-06-26 17:57:48 +0200409efi_status_t efi_query_variable_info_int(u32 attributes,
410 u64 *maximum_variable_storage_size,
411 u64 *remaining_variable_storage_size,
412 u64 *maximum_variable_size)
413{
Masahisa Kojima454a9442023-02-02 22:53:35 +0900414 if (attributes == 0)
415 return EFI_INVALID_PARAMETER;
416
417 /* EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS is deprecated */
418 if ((attributes & EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS) ||
419 ((attributes & EFI_VARIABLE_MASK) == 0))
420 return EFI_UNSUPPORTED;
421
422 if ((attributes & EFI_VARIABLE_MASK) == EFI_VARIABLE_NON_VOLATILE)
423 return EFI_INVALID_PARAMETER;
424
425 /* Make sure if runtime bit is set, boot service bit is set also. */
426 if ((attributes &
427 (EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_BOOTSERVICE_ACCESS)) ==
428 EFI_VARIABLE_RUNTIME_ACCESS)
429 return EFI_INVALID_PARAMETER;
430
Heinrich Schuchardt19327c12024-04-03 17:33:33 +0200431 if (attributes & ~EFI_VARIABLE_MASK)
Masahisa Kojima454a9442023-02-02 22:53:35 +0900432 return EFI_INVALID_PARAMETER;
433
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200434 *maximum_variable_storage_size = EFI_VAR_BUF_SIZE -
435 sizeof(struct efi_var_file);
436 *remaining_variable_storage_size = efi_var_mem_free();
437 *maximum_variable_size = EFI_VAR_BUF_SIZE -
438 sizeof(struct efi_var_file) -
439 sizeof(struct efi_var_entry);
440 return EFI_SUCCESS;
Heinrich Schuchardt01df8cf2020-06-26 17:57:48 +0200441}
442
Heinrich Schuchardt77d4d392019-01-18 19:52:05 +0100443/**
Heinrich Schuchardt01df8cf2020-06-26 17:57:48 +0200444 * efi_query_variable_info_runtime() - runtime implementation of
445 * QueryVariableInfo()
Heinrich Schuchardtce435282019-06-20 12:13:05 +0200446 *
447 * @attributes: bitmask to select variables to be
448 * queried
449 * @maximum_variable_storage_size: maximum size of storage area for the
450 * selected variable types
451 * @remaining_variable_storage_size: remaining size of storage are for the
452 * selected variable types
453 * @maximum_variable_size: maximum size of a variable of the
454 * selected type
455 * Returns: status code
456 */
Heinrich Schuchardt12472572023-02-10 09:06:17 +0100457static efi_status_t __efi_runtime EFIAPI efi_query_variable_info_runtime(
Heinrich Schuchardtce435282019-06-20 12:13:05 +0200458 u32 attributes,
459 u64 *maximum_variable_storage_size,
460 u64 *remaining_variable_storage_size,
461 u64 *maximum_variable_size)
462{
463 return EFI_UNSUPPORTED;
464}
Heinrich Schuchardt88192092019-06-20 13:52:16 +0200465
466/**
Heinrich Schuchardt29018ab2019-06-20 15:25:48 +0200467 * efi_set_variable_runtime() - runtime implementation of SetVariable()
Heinrich Schuchardte5b44622019-07-14 12:11:16 +0200468 *
469 * @variable_name: name of the variable
470 * @vendor: vendor GUID
471 * @attributes: attributes of the variable
472 * @data_size: size of the buffer with the variable value
473 * @data: buffer with the variable value
474 * Return: status code
Heinrich Schuchardt29018ab2019-06-20 15:25:48 +0200475 */
476static efi_status_t __efi_runtime EFIAPI
477efi_set_variable_runtime(u16 *variable_name, const efi_guid_t *vendor,
478 u32 attributes, efi_uintn_t data_size,
479 const void *data)
480{
Ilias Apalodimasc28d32f2024-04-18 15:54:50 +0300481 struct efi_var_entry *var;
482 efi_uintn_t ret;
483 bool append, delete;
484 u64 time = 0;
485
486 if (!IS_ENABLED(CONFIG_EFI_RT_VOLATILE_STORE))
487 return EFI_UNSUPPORTED;
488
489 /*
490 * Authenticated variables are not supported. The EFI spec
491 * in ยง32.3.6 requires keys to be stored in non-volatile storage which
492 * is tamper and delete resistant.
493 * The rest of the checks are in setvariable_allowed()
494 */
495 if (attributes & EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS)
496 return EFI_INVALID_PARAMETER;
497
498 ret = setvariable_allowed(variable_name, vendor, attributes, data_size,
499 data);
500 if (ret != EFI_SUCCESS)
501 return ret;
502
503 /* check if a variable exists */
504 var = efi_var_mem_find(vendor, variable_name, NULL);
505 append = !!(attributes & EFI_VARIABLE_APPEND_WRITE);
506 attributes &= ~EFI_VARIABLE_APPEND_WRITE;
507 delete = !append && (!data_size || !attributes);
508
509 /* BS only variables are hidden deny writing them */
510 if (!delete && !(attributes & EFI_VARIABLE_RUNTIME_ACCESS))
511 return EFI_INVALID_PARAMETER;
512
513 if (var) {
514 if (var->attr & EFI_VARIABLE_READ_ONLY ||
515 !(var->attr & EFI_VARIABLE_NON_VOLATILE))
516 return EFI_WRITE_PROTECTED;
517
518 /* attributes won't be changed */
519 if (!delete && (((var->attr & ~EFI_VARIABLE_READ_ONLY) !=
520 (attributes & ~EFI_VARIABLE_READ_ONLY))))
521 return EFI_INVALID_PARAMETER;
522 time = var->time;
523 } else {
524 if (!(attributes & EFI_VARIABLE_NON_VOLATILE))
525 return EFI_INVALID_PARAMETER;
526 if (append && !data_size)
527 return EFI_SUCCESS;
528 if (delete)
529 return EFI_NOT_FOUND;
530 }
531
532 if (delete) {
533 /* EFI_NOT_FOUND has been handled before */
534 attributes = var->attr;
535 ret = EFI_SUCCESS;
536 } else if (append && var) {
537 u16 *old_data = (void *)((uintptr_t)var->name +
538 sizeof(u16) * (u16_strlen(var->name) + 1));
539
540 ret = efi_var_mem_ins(variable_name, vendor, attributes,
541 var->length, old_data, data_size, data,
542 time);
543 } else {
544 ret = efi_var_mem_ins(variable_name, vendor, attributes,
545 data_size, data, 0, NULL, time);
546 }
547
548 if (ret != EFI_SUCCESS)
549 return ret;
550 /* We are always inserting new variables, get rid of the old copy */
551 efi_var_mem_del(var);
552
553 return EFI_SUCCESS;
Heinrich Schuchardt29018ab2019-06-20 15:25:48 +0200554}
555
556/**
557 * efi_variables_boot_exit_notify() - notify ExitBootServices() is called
558 */
559void efi_variables_boot_exit_notify(void)
560{
Heinrich Schuchardt5f7dcf02020-03-19 18:21:58 +0000561 /* Switch variable services functions to runtime version */
Heinrich Schuchardt29018ab2019-06-20 15:25:48 +0200562 efi_runtime_services.get_variable = efi_get_variable_runtime;
563 efi_runtime_services.get_next_variable_name =
564 efi_get_next_variable_name_runtime;
565 efi_runtime_services.set_variable = efi_set_variable_runtime;
Heinrich Schuchardt01df8cf2020-06-26 17:57:48 +0200566 efi_runtime_services.query_variable_info =
567 efi_query_variable_info_runtime;
Heinrich Schuchardt29018ab2019-06-20 15:25:48 +0200568 efi_update_table_header_crc32(&efi_runtime_services.hdr);
569}
570
571/**
Heinrich Schuchardt88192092019-06-20 13:52:16 +0200572 * efi_init_variables() - initialize variable services
573 *
574 * Return: status code
575 */
576efi_status_t efi_init_variables(void)
577{
AKASHI Takahiro434ffb62020-04-14 11:51:42 +0900578 efi_status_t ret;
579
Heinrich Schuchardtab7296c2020-07-04 18:34:15 +0200580 ret = efi_var_mem_init();
581 if (ret != EFI_SUCCESS)
582 return ret;
583
Ilias Apalodimas77bb1472022-12-29 10:13:22 +0200584 ret = efi_var_from_file();
585 if (ret != EFI_SUCCESS)
586 return ret;
Heinrich Schuchardt7dda1632020-07-14 21:25:28 +0200587 if (IS_ENABLED(CONFIG_EFI_VARIABLES_PRESEED)) {
588 ret = efi_var_restore((struct efi_var_file *)
Heinrich Schuchardt9ef82e22021-08-25 19:13:24 +0200589 __efi_var_file_begin, true);
Heinrich Schuchardt7dda1632020-07-14 21:25:28 +0200590 if (ret != EFI_SUCCESS)
591 log_err("Invalid EFI variable seed\n");
592 }
593
AKASHI Takahirof68a6d52020-08-13 17:05:29 +0900594
595 return efi_init_secure_state();
Heinrich Schuchardt88192092019-06-20 13:52:16 +0200596}