Blame SOURCES/0405-zfs-Fix-possible-negative-shift-operation.patch

9723a8
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
9723a8
From: Darren Kenny <darren.kenny@oracle.com>
9723a8
Date: Tue, 24 Nov 2020 16:41:49 +0000
9723a8
Subject: [PATCH] zfs: Fix possible negative shift operation
9723a8
9723a8
While it is possible for the return value from zfs_log2() to be zero
9723a8
(0), it is quite unlikely, given that the previous assignment to blksz
9723a8
is shifted up by SPA_MINBLOCKSHIFT (9) before 9 is subtracted at the
9723a8
assignment to epbs.
9723a8
9723a8
But, while unlikely during a normal operation, it may be that a carefully
9723a8
crafted ZFS filesystem could result in a zero (0) value to the
9723a8
dn_datalbkszsec field, which means that the shift left does nothing
9723a8
and assigns zero (0) to blksz, resulting in a negative epbs value.
9723a8
9723a8
Fixes: CID 73608
9723a8
9723a8
Signed-off-by: Darren Kenny <darren.kenny@oracle.com>
9723a8
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
9723a8
---
9723a8
 grub-core/fs/zfs/zfs.c | 5 +++++
9723a8
 1 file changed, 5 insertions(+)
9723a8
9723a8
diff --git a/grub-core/fs/zfs/zfs.c b/grub-core/fs/zfs/zfs.c
b71686
index c6204367e..3dfde0807 100644
9723a8
--- a/grub-core/fs/zfs/zfs.c
9723a8
+++ b/grub-core/fs/zfs/zfs.c
9723a8
@@ -2667,6 +2667,11 @@ dnode_get (dnode_end_t * mdn, grub_uint64_t objnum, grub_uint8_t type,
9723a8
   blksz = grub_zfs_to_cpu16 (mdn->dn.dn_datablkszsec, 
9723a8
 			     mdn->endian) << SPA_MINBLOCKSHIFT;
9723a8
   epbs = zfs_log2 (blksz) - DNODE_SHIFT;
9723a8
+
9723a8
+  /* While this should never happen, we should check that epbs is not negative. */
9723a8
+  if (epbs < 0)
9723a8
+    epbs = 0;
9723a8
+
9723a8
   blkid = objnum >> epbs;
9723a8
   idx = objnum & ((1 << epbs) - 1);
9723a8