提交 6d2f27c5 编写于 作者: A AKASHI Takahiro 提交者: Heinrich Schuchardt

efi_loader: variable: support APPEND_WRITE

If EFI_VARIABLE_APPEND_WRITE is specified in attributes at
efi_set_variable(), specified data will be appended to the variable's
original value. Attributes other than APPEND_WRITE should not be
modified.

With this patch, APPEND_WRITE test in 'variables' selftest will pass.
Signed-off-by: NAKASHI Takahiro <takahiro.akashi@linaro.org>
上级 7dc10c93
...@@ -424,17 +424,17 @@ efi_status_t EFIAPI efi_set_variable(u16 *variable_name, ...@@ -424,17 +424,17 @@ efi_status_t EFIAPI efi_set_variable(u16 *variable_name,
efi_uintn_t data_size, const void *data) efi_uintn_t data_size, const void *data)
{ {
char *native_name = NULL, *val = NULL, *s; char *native_name = NULL, *val = NULL, *s;
const char *old_val;
size_t old_size;
efi_status_t ret = EFI_SUCCESS; efi_status_t ret = EFI_SUCCESS;
u32 attr; u32 attr;
EFI_ENTRY("\"%ls\" %pUl %x %zu %p", variable_name, vendor, attributes, EFI_ENTRY("\"%ls\" %pUl %x %zu %p", variable_name, vendor, attributes,
data_size, data); data_size, data);
/* TODO: implement APPEND_WRITE */
if (!variable_name || !*variable_name || !vendor || if (!variable_name || !*variable_name || !vendor ||
((attributes & EFI_VARIABLE_RUNTIME_ACCESS) && ((attributes & EFI_VARIABLE_RUNTIME_ACCESS) &&
!(attributes & EFI_VARIABLE_BOOTSERVICE_ACCESS)) || !(attributes & EFI_VARIABLE_BOOTSERVICE_ACCESS))) {
(attributes & EFI_VARIABLE_APPEND_WRITE)) {
ret = EFI_INVALID_PARAMETER; ret = EFI_INVALID_PARAMETER;
goto out; goto out;
} }
...@@ -445,35 +445,51 @@ efi_status_t EFIAPI efi_set_variable(u16 *variable_name, ...@@ -445,35 +445,51 @@ efi_status_t EFIAPI efi_set_variable(u16 *variable_name,
#define ACCESS_ATTR (EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_BOOTSERVICE_ACCESS) #define ACCESS_ATTR (EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_BOOTSERVICE_ACCESS)
if ((data_size == 0) || !(attributes & ACCESS_ATTR)) { old_val = env_get(native_name);
/* delete the variable: */ if (old_val) {
env_set(native_name, NULL); old_val = parse_attr(old_val, &attr);
ret = EFI_SUCCESS;
goto out;
}
val = env_get(native_name); /* check read-only first */
if (val) {
parse_attr(val, &attr);
/* We should not free val */
val = NULL;
if (attr & READ_ONLY) { if (attr & READ_ONLY) {
ret = EFI_WRITE_PROTECTED; ret = EFI_WRITE_PROTECTED;
goto out; goto out;
} }
/* if ((data_size == 0) || !(attributes & ACCESS_ATTR)) {
* attributes won't be changed /* delete the variable: */
* TODO: take care of APPEND_WRITE once supported env_set(native_name, NULL);
*/ ret = EFI_SUCCESS;
if (attr != attributes) { goto out;
}
/* attributes won't be changed */
if (attr != (attributes & ~EFI_VARIABLE_APPEND_WRITE)) {
ret = EFI_INVALID_PARAMETER; ret = EFI_INVALID_PARAMETER;
goto out; goto out;
} }
if (attributes & EFI_VARIABLE_APPEND_WRITE) {
if (!prefix(old_val, "(blob)")) {
return EFI_DEVICE_ERROR;
goto out;
}
old_size = strlen(old_val);
} else {
old_size = 0;
}
} else {
if ((data_size == 0) || !(attributes & ACCESS_ATTR) ||
(attributes & EFI_VARIABLE_APPEND_WRITE)) {
/* delete, but nothing to do */
ret = EFI_NOT_FOUND;
goto out;
}
old_size = 0;
} }
val = malloc(2 * data_size + strlen("{ro,run,boot,nv}(blob)") + 1); val = malloc(old_size + 2 * data_size
+ strlen("{ro,run,boot,nv}(blob)") + 1);
if (!val) { if (!val) {
ret = EFI_OUT_OF_RESOURCES; ret = EFI_OUT_OF_RESOURCES;
goto out; goto out;
...@@ -481,10 +497,7 @@ efi_status_t EFIAPI efi_set_variable(u16 *variable_name, ...@@ -481,10 +497,7 @@ efi_status_t EFIAPI efi_set_variable(u16 *variable_name,
s = val; s = val;
/* /* store attributes */
* store attributes
* TODO: several attributes are not supported
*/
attributes &= (EFI_VARIABLE_NON_VOLATILE | attributes &= (EFI_VARIABLE_NON_VOLATILE |
EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_BOOTSERVICE_ACCESS |
EFI_VARIABLE_RUNTIME_ACCESS); EFI_VARIABLE_RUNTIME_ACCESS);
...@@ -505,8 +518,13 @@ efi_status_t EFIAPI efi_set_variable(u16 *variable_name, ...@@ -505,8 +518,13 @@ efi_status_t EFIAPI efi_set_variable(u16 *variable_name,
} }
s += sprintf(s, "}"); s += sprintf(s, "}");
if (old_size)
/* APPEND_WRITE */
s += sprintf(s, old_val);
else
s += sprintf(s, "(blob)");
/* store payload: */ /* store payload: */
s += sprintf(s, "(blob)");
s = bin2hex(s, data, data_size); s = bin2hex(s, data, data_size);
*s = '\0'; *s = '\0';
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册