summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp
diff options
context:
space:
mode:
authorMarta Rybczynska <rybczynska@gmail.com>2022-02-18 11:05:29 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-02 00:21:37 +0000
commitb461e690255ddd41db9202dbab473c1390a06e69 (patch)
treeee41a8e5e7204a16cc9940ccfff20f6d8b3f4589 /meta/recipes-bsp
parent3348511b945c5b61e279a22f9be3c18416584ec9 (diff)
downloadpoky-b461e690255ddd41db9202dbab473c1390a06e69.tar.gz
grub: add a fix for a possible negative shift
This patch adds a fix for a possible negative shift in grub's zfs. It is a part of a security series [1]. [1] https://lists.gnu.org/archive/html/grub-devel/2021-03/msg00007.html (From OE-Core rev: d5a93d55b5f3bfd890aa2925869d2a5ba4299801) Signed-off-by: Marta Rybczynska <marta.rybczynska@huawei.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp')
-rw-r--r--meta/recipes-bsp/grub/files/0021-zfs-Fix-possible-negative-shift-operation.patch42
-rw-r--r--meta/recipes-bsp/grub/grub2.inc1
2 files changed, 43 insertions, 0 deletions
diff --git a/meta/recipes-bsp/grub/files/0021-zfs-Fix-possible-negative-shift-operation.patch b/meta/recipes-bsp/grub/files/0021-zfs-Fix-possible-negative-shift-operation.patch
new file mode 100644
index 0000000000..12418858f9
--- /dev/null
+++ b/meta/recipes-bsp/grub/files/0021-zfs-Fix-possible-negative-shift-operation.patch
@@ -0,0 +1,42 @@
1From c757779e5d09719666c3b155afd2421978a107bd Mon Sep 17 00:00:00 2001
2From: Darren Kenny <darren.kenny@oracle.com>
3Date: Tue, 24 Nov 2020 16:41:49 +0000
4Subject: [PATCH] zfs: Fix possible negative shift operation
5
6While it is possible for the return value from zfs_log2() to be zero
7(0), it is quite unlikely, given that the previous assignment to blksz
8is shifted up by SPA_MINBLOCKSHIFT (9) before 9 is subtracted at the
9assignment to epbs.
10
11But, while unlikely during a normal operation, it may be that a carefully
12crafted ZFS filesystem could result in a zero (0) value to the
13dn_datalbkszsec field, which means that the shift left does nothing
14and assigns zero (0) to blksz, resulting in a negative epbs value.
15
16Fixes: CID 73608
17
18Signed-off-by: Darren Kenny <darren.kenny@oracle.com>
19Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
20
21Upstream-Status: Backport [https://git.savannah.gnu.org/cgit/grub.git/commit/?id=a02091834d3e167320d8a262ff04b8e83c5e616d]
22Signed-off-by: Marta Rybczynska <marta.rybczynska@huawei.com>
23---
24 grub-core/fs/zfs/zfs.c | 5 +++++
25 1 file changed, 5 insertions(+)
26
27diff --git a/grub-core/fs/zfs/zfs.c b/grub-core/fs/zfs/zfs.c
28index 36d0373..0c42cba 100644
29--- a/grub-core/fs/zfs/zfs.c
30+++ b/grub-core/fs/zfs/zfs.c
31@@ -2667,6 +2667,11 @@ dnode_get (dnode_end_t * mdn, grub_uint64_t objnum, grub_uint8_t type,
32 blksz = grub_zfs_to_cpu16 (mdn->dn.dn_datablkszsec,
33 mdn->endian) << SPA_MINBLOCKSHIFT;
34 epbs = zfs_log2 (blksz) - DNODE_SHIFT;
35+
36+ /* While this should never happen, we should check that epbs is not negative. */
37+ if (epbs < 0)
38+ epbs = 0;
39+
40 blkid = objnum >> epbs;
41 idx = objnum & ((1 << epbs) - 1);
42
diff --git a/meta/recipes-bsp/grub/grub2.inc b/meta/recipes-bsp/grub/grub2.inc
index 3c5274fd96..360e86685b 100644
--- a/meta/recipes-bsp/grub/grub2.inc
+++ b/meta/recipes-bsp/grub/grub2.inc
@@ -67,6 +67,7 @@ SRC_URI = "${GNU_MIRROR}/grub/grub-${PV}.tar.gz \
67 file://0018-disk-ldm-Fix-memory-leak-on-uninserted-lv-references.patch \ 67 file://0018-disk-ldm-Fix-memory-leak-on-uninserted-lv-references.patch \
68 file://0019-disk-cryptodisk-Fix-potential-integer-overflow.patch \ 68 file://0019-disk-cryptodisk-Fix-potential-integer-overflow.patch \
69 file://0020-hfsplus-Check-that-the-volume-name-length-is-valid.patch \ 69 file://0020-hfsplus-Check-that-the-volume-name-length-is-valid.patch \
70 file://0021-zfs-Fix-possible-negative-shift-operation.patch \
70 " 71 "
71SRC_URI[md5sum] = "5ce674ca6b2612d8939b9e6abed32934" 72SRC_URI[md5sum] = "5ce674ca6b2612d8939b9e6abed32934"
72SRC_URI[sha256sum] = "f10c85ae3e204dbaec39ae22fa3c5e99f0665417e91c2cb49b7e5031658ba6ea" 73SRC_URI[sha256sum] = "f10c85ae3e204dbaec39ae22fa3c5e99f0665417e91c2cb49b7e5031658ba6ea"