All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andy Lutomirski <luto@amacapital.net>
To: Kweh Hock Leong <hock.leong.kweh@intel.com>,
	Matt Fleming <matt.fleming@intel.com>,
	Ming Lei <ming.lei@canonical.com>,
	Sam Protsenko <semen.protsenko@linaro.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	linux-efi@vger.kernel.org,
	Ong Boon Leong <boon.leong.ong@intel.com>
Subject: Re: [PATCH v2 0/3] Enable user helper interface for efi capsule update
Date: Mon, 03 Nov 2014 11:33:23 -0800	[thread overview]
Message-ID: <5457D883.4050201@amacapital.net> (raw)
In-Reply-To: <1414984030-13859-1-git-send-email-hock.leong.kweh@intel.com>

On 11/02/2014 07:07 PM, Kweh Hock Leong wrote:
> From: "Kweh, Hock Leong" <hock.leong.kweh-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> 
> Hi Guys,
> 
> This patchset is created on top of "efi: Capsule update support" patch:
> http://permalink.gmane.org/gmane.linux.kernel.efi/4837
> 
> It leverages the request_firmware_nowait() to expose the user helper interface for user to upload the capsule binary and calling the
> efi_capsule_update() API to pass the binary to EFI firmware.

I don't get it.  Why is the firmware interface at all reasonable for
uploading capsules?

The firmware interface makes sense for nonvolatile firmware where
hotplugging something or otherwise loading a driver needs a blob.  But
uploading an EFI capsule is an *action*, not something that should
happen transparently.  If there's an EFI firmware update available and
the user wants to install it, then the userspace tool should install it,
and it shouldn't hang around in /lib/firmware.  In fact, you shouldn't
even need /lib to be on writable media to use this.

And you most certainly don't want the EFI capsule hanging around so that
it might be accidentally installed again if the hard disk is moved.

ISTM there should be some file in sysfs to which you can write a
capsule, or perhaps a chardev and an ioctl.

--Andy

> 
> Besides build in kernel, the design also cater for build as kernel driver module. This patchset introduce a new API (request_firmware_abort()) at firmware_class so that the driver module could be unloaded by calling the API to properly stop user helper interface and release the device.
> 
> Thanks.
> 
> ---
> changelog v2:
> [PATCH 1/3]
> * use fw_lookup_buf() instead of __fw_lookup_buf() function call
> * move the fw_lookup_buf() function out of the CONFIG_PM_SLEEP block
> 
> [PATCH 2/3]
> * no change
> 
> [PATCH 3/3]
> * no change
> 
> 
> Kweh, Hock Leong (3):
>   firmware loader: Introduce new API - request_firmware_abort()
>   firmware loader: fix hung task warning dump
>   efi: Capsule update with user helper interface
> 
>  drivers/base/firmware_class.c                  |   56 ++++--
>  drivers/firmware/efi/Kconfig                   |   13 ++
>  drivers/firmware/efi/Makefile                  |    1 +
>  drivers/firmware/efi/efi-capsule-user-helper.c |  246 ++++++++++++++++++++++++
>  include/linux/firmware.h                       |    4 +
>  5 files changed, 306 insertions(+), 14 deletions(-)
>  create mode 100644 drivers/firmware/efi/efi-capsule-user-helper.c
> 

  parent reply	other threads:[~2014-11-03 19:33 UTC|newest]

Thread overview: 70+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-03  3:07 [PATCH v2 0/3] Enable user helper interface for efi capsule update Kweh Hock Leong
2014-11-03  3:07 ` Kweh Hock Leong
2014-11-03  3:07 ` [PATCH v2 1/3] firmware loader: Introduce new API - request_firmware_abort() Kweh Hock Leong
     [not found]   ` <1414984030-13859-2-git-send-email-hock.leong.kweh-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-03 10:15     ` Henrique de Moraes Holschuh
2014-11-03 10:15       ` Henrique de Moraes Holschuh
     [not found]       ` <20141103101558.GA11739-ZGHd14iZgfaRjzvQDGKj+xxZW9W5cXbT@public.gmane.org>
2014-11-03 12:07         ` Matt Fleming
2014-11-03 12:07           ` Matt Fleming
2014-11-08 19:06     ` Greg Kroah-Hartman
2014-11-08 19:06       ` Greg Kroah-Hartman
     [not found]       ` <20141108190655.GA2638-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2014-11-13  2:51         ` Kweh, Hock Leong
2014-11-13  2:51           ` Kweh, Hock Leong
2014-11-17 15:12           ` Matt Fleming
     [not found]             ` <20141117151211.GB6810-HNK1S37rvNbeXh+fF434Mdi2O/JbrIOy@public.gmane.org>
2014-11-18  6:31               ` Kweh, Hock Leong
2014-11-18  6:31                 ` Kweh, Hock Leong
     [not found]                 ` <F54AEECA5E2B9541821D670476DAE19C2B85DA57-j2khPEwRog0FyVwBAnZdSLfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-11-19  2:05                   ` Greg Kroah-Hartman
2014-11-19  2:05                     ` Greg Kroah-Hartman
2014-11-03  3:07 ` [PATCH v2 2/3] firmware loader: fix hung task warning dump Kweh Hock Leong
     [not found]   ` <1414984030-13859-3-git-send-email-hock.leong.kweh-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-08 19:07     ` Greg Kroah-Hartman
2014-11-08 19:07       ` Greg Kroah-Hartman
     [not found] ` <1414984030-13859-1-git-send-email-hock.leong.kweh-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-03  3:07   ` [PATCH v2 3/3] efi: Capsule update with user helper interface Kweh Hock Leong
2014-11-03  3:07     ` Kweh Hock Leong
     [not found]     ` <1414984030-13859-4-git-send-email-hock.leong.kweh-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-04  4:32       ` Greg Kroah-Hartman
2014-11-04  4:32         ` Greg Kroah-Hartman
     [not found]         ` <20141104043247.GA23418-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2014-11-04  5:20           ` Andy Lutomirski
2014-11-04  5:20             ` Andy Lutomirski
     [not found]             ` <CALCETrXjJju+cMWJfB6W5kSD=Ox5y+Hj_AfmbbbOTOh8CV8eaQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-11-04  6:04               ` Kweh, Hock Leong
2014-11-04  6:04                 ` Kweh, Hock Leong
     [not found]                 ` <F54AEECA5E2B9541821D670476DAE19C2B80EAE4-j2khPEwRog0FyVwBAnZdSLfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-11-04  6:32                   ` Andy Lutomirski
2014-11-04  6:32                     ` Andy Lutomirski
     [not found]                     ` <CALCETrU2wk_FdcD6E+oMcp-tF97zN7f+w7q5rfPWBaNKrrmxVg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-11-04  8:03                       ` Kweh, Hock Leong
2014-11-04  8:03                         ` Kweh, Hock Leong
2014-11-04 14:18                       ` Matt Fleming
2014-11-04 14:18                         ` Matt Fleming
     [not found]                         ` <1415110688.26277.36.camel-ZqTwcBeJ+wsBof6jY8KHXm7IUlhRatedral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-04 14:57                           ` Andy Lutomirski
2014-11-04 14:57                             ` Andy Lutomirski
     [not found]                             ` <CALCETrW1UaOCcb-32SOUhi_Zh5vLzV+VwyffThVvso23z04SHA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-11-04 15:40                               ` Greg KH
2014-11-04 15:40                                 ` Greg KH
     [not found]                                 ` <20141104154017.GA28113-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2014-11-04 16:35                                   ` Andy Lutomirski
2014-11-04 16:35                                     ` Andy Lutomirski
2014-11-06 12:53                                     ` Kweh, Hock Leong
2014-11-06 12:53                                       ` Kweh, Hock Leong
2014-11-06 16:52                                       ` Andy Lutomirski
     [not found]                                         ` <CALCETrUi0ssZbOpHyVmh6jx68Oj=0h4BwfM0uLio8Qbaeu9gJw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-11-10  8:31                                           ` Kweh, Hock Leong
2014-11-10  8:31                                             ` Kweh, Hock Leong
     [not found]                                             ` <F54AEECA5E2B9541821D670476DAE19C2B851058-j2khPEwRog0FyVwBAnZdSLfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-11-10 19:31                                               ` Andy Lutomirski
2014-11-10 19:31                                                 ` Andy Lutomirski
2014-11-08 13:05                                     ` Matt Fleming
     [not found]                                       ` <20141108130556.GM3592-HNK1S37rvNbeXh+fF434Mdi2O/JbrIOy@public.gmane.org>
2014-11-08 15:54                                         ` Andy Lutomirski
2014-11-08 15:54                                           ` Andy Lutomirski
2015-02-27  5:06       ` Roy Franz
2015-02-27  5:06         ` Roy Franz
     [not found]         ` <CAFECyb-JhpFm4WcWL8NU8zbK=xphGtG=B7q0PLhffmYDV-a_PQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-02-27 11:35           ` Kweh, Hock Leong
2015-02-27 11:35             ` Kweh, Hock Leong
2014-11-03 19:33 ` Andy Lutomirski [this message]
     [not found]   ` <5457D883.4050201-kltTT9wpgjJwATOyAt5JVQ@public.gmane.org>
2014-11-03 21:27     ` [PATCH v2 0/3] Enable user helper interface for efi capsule update Greg Kroah-Hartman
2014-11-03 21:27       ` Greg Kroah-Hartman
     [not found]       ` <20141103212706.GE7379-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2014-11-03 21:32         ` Andy Lutomirski
2014-11-03 21:32           ` Andy Lutomirski
     [not found]           ` <CALCETrUNCuFvwkzbU4dWB0GH4mJKKV1e6jCNrSLVJe+n_et3kQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-11-03 23:02             ` Greg Kroah-Hartman
2014-11-03 23:02               ` Greg Kroah-Hartman
     [not found]               ` <20141103230234.GA9427-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2014-11-03 23:08                 ` Andy Lutomirski
2014-11-03 23:08                   ` Andy Lutomirski
     [not found]                   ` <CALCETrUtxqLaziC_f6iTEgKNhmTgJR6bOLJ=e=O22X_RsBc9sw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-11-04  0:38                     ` Greg Kroah-Hartman
2014-11-04  0:38                       ` Greg Kroah-Hartman
     [not found]                       ` <20141104003849.GA15147-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2014-11-04  1:14                         ` Andy Lutomirski
2014-11-04  1:14                           ` Andy Lutomirski
2014-11-04 14:07                         ` Matt Fleming
2014-11-04 14:07                           ` Matt Fleming
     [not found]                           ` <1415110071.26277.28.camel-ZqTwcBeJ+wsBof6jY8KHXm7IUlhRatedral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-05  9:52                             ` Kweh, Hock Leong
2014-11-05  9:52                               ` Kweh, Hock Leong

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=5457D883.4050201@amacapital.net \
    --to=luto@amacapital.net \
    --cc=boon.leong.ong@intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=hock.leong.kweh@intel.com \
    --cc=linux-efi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=matt.fleming@intel.com \
    --cc=ming.lei@canonical.com \
    --cc=semen.protsenko@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 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.