linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [tip: efi/urgent] efi/libstub: Handle NULL cmdline
       [not found] <20200729193300.598448-1-nivedita@alum.mit.edu>
@ 2020-08-22 13:38 ` tip-bot2 for Arvind Sankar
  0 siblings, 0 replies; only message in thread
From: tip-bot2 for Arvind Sankar @ 2020-08-22 13:38 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: stable, Arvind Sankar, Ard Biesheuvel, x86, LKML

The following commit has been merged into the efi/urgent branch of tip:

Commit-ID:     a37ca6a2af9df2972372b918f09390c9303acfbd
Gitweb:        https://git.kernel.org/tip/a37ca6a2af9df2972372b918f09390c9303acfbd
Author:        Arvind Sankar <nivedita@alum.mit.edu>
AuthorDate:    Wed, 29 Jul 2020 15:33:00 -04:00
Committer:     Ard Biesheuvel <ardb@kernel.org>
CommitterDate: Thu, 20 Aug 2020 11:18:55 +02:00

efi/libstub: Handle NULL cmdline

Treat a NULL cmdline the same as empty. Although this is unlikely to
happen in practice, the x86 kernel entry does check for NULL cmdline and
handles it, so do it here as well.

Cc: <stable@vger.kernel.org>
Signed-off-by: Arvind Sankar <nivedita@alum.mit.edu>
Link: https://lore.kernel.org/r/20200729193300.598448-1-nivedita@alum.mit.edu
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
---
 drivers/firmware/efi/libstub/efi-stub-helper.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/firmware/efi/libstub/efi-stub-helper.c b/drivers/firmware/efi/libstub/efi-stub-helper.c
index 37ff34e..f53652a 100644
--- a/drivers/firmware/efi/libstub/efi-stub-helper.c
+++ b/drivers/firmware/efi/libstub/efi-stub-helper.c
@@ -187,10 +187,14 @@ int efi_printk(const char *fmt, ...)
  */
 efi_status_t efi_parse_options(char const *cmdline)
 {
-	size_t len = strlen(cmdline) + 1;
+	size_t len;
 	efi_status_t status;
 	char *str, *buf;
 
+	if (!cmdline)
+		return EFI_SUCCESS;
+
+	len = strlen(cmdline) + 1;
 	status = efi_bs_call(allocate_pool, EFI_LOADER_DATA, len, (void **)&buf);
 	if (status != EFI_SUCCESS)
 		return status;

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-08-22 13:39 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20200729193300.598448-1-nivedita@alum.mit.edu>
2020-08-22 13:38 ` [tip: efi/urgent] efi/libstub: Handle NULL cmdline tip-bot2 for Arvind Sankar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).