All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] ieee1275 : Add a check for invalid partition number
@ 2025-12-02 12:59 Avnish Chouhan
  2025-12-20 13:34 ` Daniel Kiper
  0 siblings, 1 reply; 4+ messages in thread
From: Avnish Chouhan @ 2025-12-02 12:59 UTC (permalink / raw)
  To: grub-devel; +Cc: daniel.kiper, alec.r.brown, Avnish Chouhan

Adding a check for invalid partition number. grub_strtoul() can fail
in several scenarios like invalid input, overflow, etc will result in
an invalid partition number which could lead to an undefined behavior.

Signed-off-by: Avnish Chouhan <avnish@linux.ibm.com>
---
 grub-core/kern/ieee1275/openfw.c | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/grub-core/kern/ieee1275/openfw.c b/grub-core/kern/ieee1275/openfw.c
index 3b492dd..e82dc34 100644
--- a/grub-core/kern/ieee1275/openfw.c
+++ b/grub-core/kern/ieee1275/openfw.c
@@ -512,7 +512,18 @@ grub_ieee1275_encode_devname (const char *path)
     }
   if (partition && partition[0])
     {
-      unsigned int partno = grub_strtoul (partition, 0, 0);
+      char *endptr;
+      grub_errno = GRUB_ERR_NONE;
+      unsigned int partno = grub_strtoul (partition, &endptr, 0);
+
+      if (grub_errno != GRUB_ERR_NONE || *endptr != '\0')
+        {
+          grub_free (partition);
+          grub_free (device);
+          grub_free (encoding);
+          grub_error (GRUB_ERR_BAD_ARGUMENT, N_("invalid partition number"));
+          return NULL;
+        }
 
       *optr++ = ',';
 
-- 
2.52.0


_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel

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

end of thread, other threads:[~2026-01-08 15:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-02 12:59 [PATCH v2] ieee1275 : Add a check for invalid partition number Avnish Chouhan
2025-12-20 13:34 ` Daniel Kiper
2026-01-02 13:50   ` Avnish Chouhan
2026-01-08 15:49     ` Daniel Kiper

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.