Blame SOURCES/0426-util-glue-efi-Fix-incorrect-use-of-a-possibly-negati.patch

9723a8
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
9723a8
From: Darren Kenny <darren.kenny@oracle.com>
9723a8
Date: Fri, 4 Dec 2020 15:04:28 +0000
9723a8
Subject: [PATCH] util/glue-efi: Fix incorrect use of a possibly negative value
9723a8
9723a8
It is possible for the ftell() function to return a negative value,
9723a8
although it is fairly unlikely here, we should be checking for
9723a8
a negative value before we assign it to an unsigned value.
9723a8
9723a8
Fixes: CID 73744
9723a8
9723a8
Signed-off-by: Darren Kenny <darren.kenny@oracle.com>
9723a8
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
9723a8
---
9723a8
 util/glue-efi.c | 14 ++++++++++++--
9723a8
 1 file changed, 12 insertions(+), 2 deletions(-)
9723a8
9723a8
diff --git a/util/glue-efi.c b/util/glue-efi.c
b71686
index 68f53168b..de0fa6d33 100644
9723a8
--- a/util/glue-efi.c
9723a8
+++ b/util/glue-efi.c
9723a8
@@ -39,13 +39,23 @@ write_fat (FILE *in32, FILE *in64, FILE *out, const char *out_filename,
9723a8
   struct grub_macho_fat_header head;
9723a8
   struct grub_macho_fat_arch arch32, arch64;
9723a8
   grub_uint32_t size32, size64;
9723a8
+  long size;
9723a8
   char *buf;
9723a8
 
9723a8
   fseek (in32, 0, SEEK_END);
9723a8
-  size32 = ftell (in32);
9723a8
+  size = ftell (in32);
9723a8
+  if (size < 0)
9723a8
+    grub_util_error ("cannot get end of input file '%s': %s",
9723a8
+		     name32, strerror (errno));
9723a8
+  size32 = (grub_uint32_t) size;
9723a8
   fseek (in32, 0, SEEK_SET);
9723a8
+
9723a8
   fseek (in64, 0, SEEK_END);
9723a8
-  size64 = ftell (in64);
9723a8
+  size = ftell (in64);
9723a8
+  if (size < 0)
9723a8
+    grub_util_error ("cannot get end of input file '%s': %s",
9723a8
+		     name64, strerror (errno));
9723a8
+  size64 = (grub_uint64_t) size;
9723a8
   fseek (in64, 0, SEEK_SET);
9723a8
 
9723a8
   head.magic = grub_cpu_to_le32_compile_time (GRUB_MACHO_FAT_EFI_MAGIC);