diff options
| author | Gary Ching-Pang Lin <glin@suse.com> | 2015-06-16 11:41:32 -0400 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2015-06-16 11:41:32 -0400 |
| commit | ed8363efd22f9ad4e29a7848615a75e471396610 (patch) | |
| tree | fb0ab84bd874dd93582453d85b1e8ed1edca9aa6 /shim.c | |
| parent | c9cf07a0e05fb2efb0ba490ee6ff614db4133bce (diff) | |
| download | efi-boot-shim-ed8363efd22f9ad4e29a7848615a75e471396610.tar.gz efi-boot-shim-ed8363efd22f9ad4e29a7848615a75e471396610.zip | |
Copy the MOK blacklist to a RT variable
Signed-off-by: Gary Ching-Pang Lin <glin@suse.com>
Diffstat (limited to 'shim.c')
| -rw-r--r-- | shim.c | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -1765,6 +1765,33 @@ EFI_STATUS mirror_mok_list() } /* + * Copy the boot-services only MokListX variable to the runtime-accessible + * MokListXRT variable. It's not marked NV, so the OS can't modify it. + */ +EFI_STATUS mirror_mok_list_x() +{ + EFI_GUID shim_lock_guid = SHIM_LOCK_GUID; + EFI_STATUS efi_status; + UINT8 *Data = NULL; + UINTN DataSize = 0; + + efi_status = get_variable(L"MokListX", &Data, &DataSize, shim_lock_guid); + if (efi_status != EFI_SUCCESS) + return efi_status; + + efi_status = uefi_call_wrapper(RT->SetVariable, 5, L"MokListXRT", + &shim_lock_guid, + EFI_VARIABLE_BOOTSERVICE_ACCESS + | EFI_VARIABLE_RUNTIME_ACCESS, + DataSize, Data); + if (efi_status != EFI_SUCCESS) { + console_error(L"Failed to set MokListRT", efi_status); + } + + return efi_status; +} + +/* * Check if a variable exists */ static BOOLEAN check_var(CHAR16 *varname) @@ -2160,6 +2187,8 @@ EFI_STATUS efi_main (EFI_HANDLE passed_image_handle, */ efi_status = mirror_mok_list(); + efi_status = mirror_mok_list_x(); + /* * Create the runtime MokIgnoreDB variable so the kernel can * make use of it |
