All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] efi/efivars: create efivars mount point when get variable services are available
@ 2020-08-19  9:28 Lee, Chun-Yi
  2020-08-20  9:30 ` Ard Biesheuvel
  0 siblings, 1 reply; 3+ messages in thread
From: Lee, Chun-Yi @ 2020-08-19  9:28 UTC (permalink / raw)
  To: Ard Biesheuvel
  Cc: linux-efi, linux-kernel, Lee, Chun-Yi, Ilias Apalodimas, Ard Biesheuvel

The efivars filesystem depends on GetVariable or GetNextVariable EFI
runtime services. So the /sys/firmware/efi/efivars does not need to be
created when GetVariable and GetNextVariable are not available.

It is useful for userland to determine the availability of efivars
filesystem.

Cc: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Cc: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: "Lee, Chun-Yi" <jlee@suse.com>
---
 drivers/firmware/efi/efi.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/drivers/firmware/efi/efi.c b/drivers/firmware/efi/efi.c
index fdd1db025dbf..929fbf4dfd5d 100644
--- a/drivers/firmware/efi/efi.c
+++ b/drivers/firmware/efi/efi.c
@@ -404,11 +404,14 @@ static int __init efisubsys_init(void)
 	if (error)
 		goto err_remove_group;
 
-	/* and the standard mountpoint for efivarfs */
-	error = sysfs_create_mount_point(efi_kobj, "efivars");
-	if (error) {
-		pr_err("efivars: Subsystem registration failed.\n");
-		goto err_remove_group;
+	if (efi_rt_services_supported(EFI_RT_SUPPORTED_GET_VARIABLE |
+				      EFI_RT_SUPPORTED_GET_NEXT_VARIABLE_NAME)) {
+		/* and the standard mountpoint for efivarfs */
+		error = sysfs_create_mount_point(efi_kobj, "efivars");
+		if (error) {
+			pr_err("efivars: Subsystem registration failed.\n");
+			goto err_remove_group;
+		}
 	}
 
 	if (efi_enabled(EFI_DBG) && efi_enabled(EFI_PRESERVE_BS_REGIONS))
-- 
2.16.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] efi/efivars: create efivars mount point when get variable services are available
  2020-08-19  9:28 [PATCH] efi/efivars: create efivars mount point when get variable services are available Lee, Chun-Yi
@ 2020-08-20  9:30 ` Ard Biesheuvel
  2020-08-24 13:03   ` joeyli
  0 siblings, 1 reply; 3+ messages in thread
From: Ard Biesheuvel @ 2020-08-20  9:30 UTC (permalink / raw)
  To: Lee, Chun-Yi
  Cc: Ard Biesheuvel, linux-efi, Linux Kernel Mailing List, Lee,
	Chun-Yi, Ilias Apalodimas

On Wed, 19 Aug 2020 at 11:28, Lee, Chun-Yi <joeyli.kernel@gmail.com> wrote:
>
> The efivars filesystem depends on GetVariable or GetNextVariable EFI
> runtime services. So the /sys/firmware/efi/efivars does not need to be
> created when GetVariable and GetNextVariable are not available.
>
> It is useful for userland to determine the availability of efivars
> filesystem.
>
> Cc: Ilias Apalodimas <ilias.apalodimas@linaro.org>
> Cc: Ard Biesheuvel <ardb@kernel.org>
> Signed-off-by: "Lee, Chun-Yi" <jlee@suse.com>

Hello Joey,

This is not the right check to perform here: the efivarfs code could
be instantiated using a different efivars abstraction, so whether the
RT services are implemented is not entirely relevant.

Please look at commit f88814cc2578c121e6edef686365036db72af0ed
("efi/efivars: Expose RT service availability via efivars
abstraction") for an explanation of the underlying issue, and update
your patch accordingly.


> ---
>  drivers/firmware/efi/efi.c | 13 ++++++++-----
>  1 file changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/firmware/efi/efi.c b/drivers/firmware/efi/efi.c
> index fdd1db025dbf..929fbf4dfd5d 100644
> --- a/drivers/firmware/efi/efi.c
> +++ b/drivers/firmware/efi/efi.c
> @@ -404,11 +404,14 @@ static int __init efisubsys_init(void)
>         if (error)
>                 goto err_remove_group;
>
> -       /* and the standard mountpoint for efivarfs */
> -       error = sysfs_create_mount_point(efi_kobj, "efivars");
> -       if (error) {
> -               pr_err("efivars: Subsystem registration failed.\n");
> -               goto err_remove_group;
> +       if (efi_rt_services_supported(EFI_RT_SUPPORTED_GET_VARIABLE |
> +                                     EFI_RT_SUPPORTED_GET_NEXT_VARIABLE_NAME)) {
> +               /* and the standard mountpoint for efivarfs */
> +               error = sysfs_create_mount_point(efi_kobj, "efivars");
> +               if (error) {
> +                       pr_err("efivars: Subsystem registration failed.\n");
> +                       goto err_remove_group;
> +               }
>         }
>
>         if (efi_enabled(EFI_DBG) && efi_enabled(EFI_PRESERVE_BS_REGIONS))
> --
> 2.16.4
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] efi/efivars: create efivars mount point when get variable services are available
  2020-08-20  9:30 ` Ard Biesheuvel
@ 2020-08-24 13:03   ` joeyli
  0 siblings, 0 replies; 3+ messages in thread
From: joeyli @ 2020-08-24 13:03 UTC (permalink / raw)
  To: Ard Biesheuvel
  Cc: Lee, Chun-Yi, Ard Biesheuvel, linux-efi,
	Linux Kernel Mailing List, Ilias Apalodimas

Hi Ard,

On Thu, Aug 20, 2020 at 11:30:27AM +0200, Ard Biesheuvel wrote:
> On Wed, 19 Aug 2020 at 11:28, Lee, Chun-Yi <joeyli.kernel@gmail.com> wrote:
> >
> > The efivars filesystem depends on GetVariable or GetNextVariable EFI
> > runtime services. So the /sys/firmware/efi/efivars does not need to be
> > created when GetVariable and GetNextVariable are not available.
> >
> > It is useful for userland to determine the availability of efivars
> > filesystem.
> >
> > Cc: Ilias Apalodimas <ilias.apalodimas@linaro.org>
> > Cc: Ard Biesheuvel <ardb@kernel.org>
> > Signed-off-by: "Lee, Chun-Yi" <jlee@suse.com>
> 
> Hello Joey,
> 
> This is not the right check to perform here: the efivarfs code could
> be instantiated using a different efivars abstraction, so whether the
> RT services are implemented is not entirely relevant.
> 
> Please look at commit f88814cc2578c121e6edef686365036db72af0ed
> ("efi/efivars: Expose RT service availability via efivars
> abstraction") for an explanation of the underlying issue, and update
> your patch accordingly.
>

Thanks for youre review! I will look at f88814cc257 and change my
patch for v2.

Joey Lee
 
> 
> > ---
> >  drivers/firmware/efi/efi.c | 13 ++++++++-----
> >  1 file changed, 8 insertions(+), 5 deletions(-)
> >
> > diff --git a/drivers/firmware/efi/efi.c b/drivers/firmware/efi/efi.c
> > index fdd1db025dbf..929fbf4dfd5d 100644
> > --- a/drivers/firmware/efi/efi.c
> > +++ b/drivers/firmware/efi/efi.c
> > @@ -404,11 +404,14 @@ static int __init efisubsys_init(void)
> >         if (error)
> >                 goto err_remove_group;
> >
> > -       /* and the standard mountpoint for efivarfs */
> > -       error = sysfs_create_mount_point(efi_kobj, "efivars");
> > -       if (error) {
> > -               pr_err("efivars: Subsystem registration failed.\n");
> > -               goto err_remove_group;
> > +       if (efi_rt_services_supported(EFI_RT_SUPPORTED_GET_VARIABLE |
> > +                                     EFI_RT_SUPPORTED_GET_NEXT_VARIABLE_NAME)) {
> > +               /* and the standard mountpoint for efivarfs */
> > +               error = sysfs_create_mount_point(efi_kobj, "efivars");
> > +               if (error) {
> > +                       pr_err("efivars: Subsystem registration failed.\n");
> > +                       goto err_remove_group;
> > +               }
> >         }
> >
> >         if (efi_enabled(EFI_DBG) && efi_enabled(EFI_PRESERVE_BS_REGIONS))
> > --
> > 2.16.4
> >


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-08-24 13:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-19  9:28 [PATCH] efi/efivars: create efivars mount point when get variable services are available Lee, Chun-Yi
2020-08-20  9:30 ` Ard Biesheuvel
2020-08-24 13:03   ` joeyli

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.