From: Mark Rutland <mark.rutland@arm.com>
To: Linn Crosetto <linn@hpe.com>
Cc: matt@codeblueprint.co.uk, ard.biesheuvel@linaro.org,
roy.franz@linaro.org, mingo@kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] arm64/efi: check SetupMode when determining Secure Boot status
Date: Wed, 24 Feb 2016 11:23:52 +0000 [thread overview]
Message-ID: <20160224112351.GA11579@leverpostej> (raw)
In-Reply-To: <1456273509-25249-1-git-send-email-linn@hpe.com>
On Tue, Feb 23, 2016 at 05:25:09PM -0700, Linn Crosetto wrote:
> According to the UEFI specification, the platform is operating in secure
> boot mode if SetupMode is 0 and SecureBoot is 1, and cannot operate in
> secure boot mode if SetupMode is set to 1.
I see the above is from the third-last paragraph of section 3.3 Globally
Defined Variables, (in 2.5 Errata A).
For the commit message, it might be good to split the quote from the
rest of the message (e.g. by putting it in a separate indented
paragraph), to make it clear which part is from the spec.
> Check the value of SetupMode when determining the state of Secure
> Boot.
It sounds like we should be doing this. I have a couple of comments
below.
> Signed-off-by: Linn Crosetto <linn@hpe.com>
> ---
> drivers/firmware/efi/libstub/arm-stub.c | 34 +++++++++++++++++++++------------
> 1 file changed, 22 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/firmware/efi/libstub/arm-stub.c b/drivers/firmware/efi/libstub/arm-stub.c
> index 3397902..7ef2e20 100644
> --- a/drivers/firmware/efi/libstub/arm-stub.c
> +++ b/drivers/firmware/efi/libstub/arm-stub.c
> @@ -20,26 +20,36 @@
>
> static int efi_secureboot_enabled(efi_system_table_t *sys_table_arg)
> {
> - static efi_guid_t const var_guid = EFI_GLOBAL_VARIABLE_GUID;
> - static efi_char16_t const var_name[] = {
> + static efi_char16_t const sb_var_name[] = {
> 'S', 'e', 'c', 'u', 'r', 'e', 'B', 'o', 'o', 't', 0 };
> + static efi_char16_t const sm_var_name[] = {
> + 'S', 'e', 't', 'u', 'p', 'M', 'o', 'd', 'e', 0 };
>
> + efi_guid_t var_guid = EFI_GLOBAL_VARIABLE_GUID;
> efi_get_variable_t *f_getvar = sys_table_arg->runtime->get_variable;
> - unsigned long size = sizeof(u8);
> - efi_status_t status;
> u8 val;
> + unsigned long size = sizeof(val);
I think this variable could have stayed as it was, it's logically an
unrelated change. Otherwise, point out the cleanup in the commit
message.
> + efi_status_t status;
>
> - status = f_getvar((efi_char16_t *)var_name, (efi_guid_t *)&var_guid,
> + status = f_getvar((efi_char16_t *)sb_var_name, (efi_guid_t *)&var_guid,
> NULL, &size, &val);
>
> - switch (status) {
> - case EFI_SUCCESS:
> - return val;
> - case EFI_NOT_FOUND:
> + if (status != EFI_SUCCESS)
> return 0;
> - default:
> - return 1;
> - }
That isn't quite the same as the existing behaviour. Previously for any
return value other than EFI_SUCCESS, we would fail-safe and assume
secure boot was enabled, whereas now we'll assume it is not.
I think we should retain the existing behaviour.
Mark.
> +
> + if (val == 0)
> + return 0;
> +
> + status = f_getvar((efi_char16_t *)sm_var_name, (efi_guid_t *)&var_guid,
> + NULL, &size, &val);
> +
> + if (status != EFI_SUCCESS)
> + return 0;
> +
> + if (val == 1)
> + return 0;
> +
> + return 1;
> }
>
> efi_status_t efi_open_volume(efi_system_table_t *sys_table_arg,
> --
> 2.1.4
>
next prev parent reply other threads:[~2016-02-24 11:24 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-24 0:25 [PATCH] arm64/efi: check SetupMode when determining Secure Boot status Linn Crosetto
2016-02-24 11:23 ` Mark Rutland [this message]
2016-02-26 0:18 ` [PATCH v2 0/2] arm64/efi: query Secure Boot status according to UEFI spec Linn Crosetto
2016-02-26 0:18 ` [PATCH v2 1/2] arm64/efi: report unexpected errors when determining Secure Boot status Linn Crosetto
2016-03-03 8:03 ` Ard Biesheuvel
2016-02-26 0:18 ` [PATCH v2 2/2] arm64/efi: check SetupMode " Linn Crosetto
2016-03-02 13:38 ` [PATCH v2 0/2] arm64/efi: query Secure Boot status according to UEFI spec Matt Fleming
2016-03-03 21:45 ` [PATCH v3 " Linn Crosetto
2016-03-03 21:45 ` [PATCH v3 1/2] arm64/efi: report unexpected errors when determining Secure Boot status Linn Crosetto
2016-03-04 7:57 ` Ard Biesheuvel
2016-03-03 21:45 ` [PATCH v3 2/2] arm64/efi: check SetupMode " Linn Crosetto
2016-03-04 8:01 ` Ard Biesheuvel
2016-03-04 11:08 ` [PATCH v3 0/2] arm64/efi: query Secure Boot status according to UEFI spec Mark Rutland
2016-03-07 14:08 ` Matt Fleming
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160224112351.GA11579@leverpostej \
--to=mark.rutland@arm.com \
--cc=ard.biesheuvel@linaro.org \
--cc=linn@hpe.com \
--cc=linux-kernel@vger.kernel.org \
--cc=matt@codeblueprint.co.uk \
--cc=mingo@kernel.org \
--cc=roy.franz@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox