Blame SOURCES/0257-fs-f2fs-Do-not-read-past-the-end-of-nat-bitmap.patch

1c6ba0
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
1c6ba0
From: Sudhakar Kuppusamy <sudhakar@linux.ibm.com>
1c6ba0
Date: Wed, 6 Apr 2022 18:49:09 +0530
1c6ba0
Subject: [PATCH] fs/f2fs: Do not read past the end of nat bitmap
1c6ba0
1c6ba0
A corrupt f2fs filesystem could have a block offset or a bitmap
1c6ba0
offset that would cause us to read beyond the bounds of the nat
1c6ba0
bitmap.
1c6ba0
1c6ba0
Introduce the nat_bitmap_size member in grub_f2fs_data which holds
1c6ba0
the size of nat bitmap.
1c6ba0
1c6ba0
Set the size when loading the nat bitmap in nat_bitmap_ptr(), and
1c6ba0
catch when an invalid offset would create a pointer past the end of
1c6ba0
the allocated space.
1c6ba0
1c6ba0
Check against the bitmap size in grub_f2fs_test_bit() test bit to avoid
1c6ba0
reading past the end of the nat bitmap.
1c6ba0
1c6ba0
Signed-off-by: Sudhakar Kuppusamy <sudhakar@linux.ibm.com>
1c6ba0
Signed-off-by: Daniel Axtens <dja@axtens.net>
1c6ba0
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
1c6ba0
(cherry picked from commit 62d63d5e38c67a6e349148bf7cb87c560e935a7e)
1c6ba0
(cherry picked from commit 92219e6d379b5b4d30b05361830b72ab1d95d281)
1c6ba0
---
1c6ba0
 grub-core/fs/f2fs.c | 33 +++++++++++++++++++++++++++------
1c6ba0
 1 file changed, 27 insertions(+), 6 deletions(-)
1c6ba0
1c6ba0
diff --git a/grub-core/fs/f2fs.c b/grub-core/fs/f2fs.c
1c6ba0
index 63702214b0..8898b235e0 100644
1c6ba0
--- a/grub-core/fs/f2fs.c
1c6ba0
+++ b/grub-core/fs/f2fs.c
1c6ba0
@@ -122,6 +122,7 @@ GRUB_MOD_LICENSE ("GPLv3+");
1c6ba0
 #define F2FS_INLINE_DOTS          0x10  /* File having implicit dot dentries. */
1c6ba0
 
1c6ba0
 #define MAX_VOLUME_NAME           512
1c6ba0
+#define MAX_NAT_BITMAP_SIZE       3900
1c6ba0
 
1c6ba0
 enum FILE_TYPE
1c6ba0
 {
1c6ba0
@@ -183,7 +184,7 @@ struct grub_f2fs_checkpoint
1c6ba0
   grub_uint32_t                   checksum_offset;
1c6ba0
   grub_uint64_t                   elapsed_time;
1c6ba0
   grub_uint8_t                    alloc_type[MAX_ACTIVE_LOGS];
1c6ba0
-  grub_uint8_t                    sit_nat_version_bitmap[3900];
1c6ba0
+  grub_uint8_t                    sit_nat_version_bitmap[MAX_NAT_BITMAP_SIZE];
1c6ba0
   grub_uint32_t                   checksum;
1c6ba0
 } GRUB_PACKED;
1c6ba0
 
1c6ba0
@@ -302,6 +303,7 @@ struct grub_f2fs_data
1c6ba0
 
1c6ba0
   struct grub_f2fs_nat_journal    nat_j;
1c6ba0
   char                            *nat_bitmap;
1c6ba0
+  grub_uint32_t                   nat_bitmap_size;
1c6ba0
 
1c6ba0
   grub_disk_t                     disk;
1c6ba0
   struct grub_f2fs_node           *inode;
1c6ba0
@@ -377,15 +379,20 @@ sum_blk_addr (struct grub_f2fs_data *data, int base, int type)
1c6ba0
 }
1c6ba0
 
1c6ba0
 static void *
1c6ba0
-nat_bitmap_ptr (struct grub_f2fs_data *data)
1c6ba0
+nat_bitmap_ptr (struct grub_f2fs_data *data, grub_uint32_t *nat_bitmap_size)
1c6ba0
 {
1c6ba0
   struct grub_f2fs_checkpoint *ckpt = &data->ckpt;
1c6ba0
   grub_uint32_t offset;
1c6ba0
+  *nat_bitmap_size = MAX_NAT_BITMAP_SIZE;
1c6ba0
 
1c6ba0
   if (grub_le_to_cpu32 (data->sblock.cp_payload) > 0)
1c6ba0
     return ckpt->sit_nat_version_bitmap;
1c6ba0
 
1c6ba0
   offset = grub_le_to_cpu32 (ckpt->sit_ver_bitmap_bytesize);
1c6ba0
+  if (offset >= MAX_NAT_BITMAP_SIZE)
1c6ba0
+     return NULL;
1c6ba0
+
1c6ba0
+  *nat_bitmap_size = *nat_bitmap_size - offset;
1c6ba0
 
1c6ba0
   return ckpt->sit_nat_version_bitmap + offset;
1c6ba0
 }
1c6ba0
@@ -438,11 +445,15 @@ grub_f2fs_crc_valid (grub_uint32_t blk_crc, void *buf, const grub_uint32_t len)
1c6ba0
 }
1c6ba0
 
1c6ba0
 static int
1c6ba0
-grub_f2fs_test_bit (grub_uint32_t nr, const char *p)
1c6ba0
+grub_f2fs_test_bit (grub_uint32_t nr, const char *p, grub_uint32_t len)
1c6ba0
 {
1c6ba0
   int mask;
1c6ba0
+  grub_uint32_t shifted_nr = (nr >> 3);
1c6ba0
 
1c6ba0
-  p += (nr >> 3);
1c6ba0
+  if (shifted_nr >= len)
1c6ba0
+    return -1;
1c6ba0
+
1c6ba0
+  p += shifted_nr;
1c6ba0
   mask = 1 << (7 - (nr & 0x07));
1c6ba0
 
1c6ba0
   return mask & *p;
1c6ba0
@@ -662,6 +673,7 @@ get_node_blkaddr (struct grub_f2fs_data *data, grub_uint32_t nid)
1c6ba0
   grub_uint32_t seg_off, block_off, entry_off, block_addr;
1c6ba0
   grub_uint32_t blkaddr = 0;
1c6ba0
   grub_err_t err;
1c6ba0
+  int result_bit;
1c6ba0
 
1c6ba0
   err = get_blkaddr_from_nat_journal (data, nid, &blkaddr);
1c6ba0
   if (err != GRUB_ERR_NONE)
1c6ba0
@@ -682,8 +694,15 @@ get_node_blkaddr (struct grub_f2fs_data *data, grub_uint32_t nid)
1c6ba0
         ((seg_off * data->blocks_per_seg) << 1) +
1c6ba0
         (block_off & (data->blocks_per_seg - 1));
1c6ba0
 
1c6ba0
-  if (grub_f2fs_test_bit (block_off, data->nat_bitmap))
1c6ba0
+  result_bit = grub_f2fs_test_bit (block_off, data->nat_bitmap,
1c6ba0
+                                   data->nat_bitmap_size);
1c6ba0
+  if (result_bit > 0)
1c6ba0
     block_addr += data->blocks_per_seg;
1c6ba0
+  else if (result_bit == -1)
1c6ba0
+    {
1c6ba0
+      grub_free (nat_block);
1c6ba0
+      return 0;
1c6ba0
+    }
1c6ba0
 
1c6ba0
   err = grub_f2fs_block_read (data, block_addr, nat_block);
1c6ba0
   if (err)
1c6ba0
@@ -833,7 +852,9 @@ grub_f2fs_mount (grub_disk_t disk)
1c6ba0
   if (err)
1c6ba0
     goto fail;
1c6ba0
 
1c6ba0
-  data->nat_bitmap = nat_bitmap_ptr (data);
1c6ba0
+  data->nat_bitmap = nat_bitmap_ptr (data, &data->nat_bitmap_size);
1c6ba0
+  if (data->nat_bitmap == NULL)
1c6ba0
+    goto fail;
1c6ba0
 
1c6ba0
   err = get_nat_journal (data);
1c6ba0
   if (err)