forked from pool/grub2
e016790fe1
- Security fixes and hardenings for boothole 3 / boothole 2022 (bsc#1198581) * 0001-video-Remove-trailing-whitespaces.patch * 0002-loader-efi-chainloader-Simplify-the-loader-state.patch * 0003-commands-boot-Add-API-to-pass-context-to-loader.patch - Fix CVE-2022-28736 (bsc#1198496) * 0004-loader-efi-chainloader-Use-grub_loader_set_ex.patch - Fix CVE-2022-28735 (bsc#1198495) * 0005-kern-efi-sb-Reject-non-kernel-files-in-the-shim_lock.patch * 0006-kern-file-Do-not-leak-device_name-on-error-in-grub_f.patch * 0007-video-readers-png-Abort-sooner-if-a-read-operation-f.patch * 0008-video-readers-png-Refuse-to-handle-multiple-image-he.patch - Fix CVE-2021-3695 (bsc#1191184) * 0009-video-readers-png-Drop-greyscale-support-to-fix-heap.patch - Fix CVE-2021-3696 (bsc#1191185) * 0010-video-readers-png-Avoid-heap-OOB-R-W-inserting-huff-.patch * 0011-video-readers-png-Sanity-check-some-huffman-codes.patch * 0012-video-readers-jpeg-Abort-sooner-if-a-read-operation-.patch * 0013-video-readers-jpeg-Do-not-reallocate-a-given-huff-ta.patch * 0014-video-readers-jpeg-Refuse-to-handle-multiple-start-o.patch - Fix CVE-2021-3697 (bsc#1191186) * 0015-video-readers-jpeg-Block-int-underflow-wild-pointer-.patch * 0016-normal-charset-Fix-array-out-of-bounds-formatting-un.patch - Fix CVE-2022-28733 (bsc#1198460) * 0017-net-ip-Do-IP-fragment-maths-safely.patch * 0018-net-netbuff-Block-overly-large-netbuff-allocs.patch * 0019-net-dns-Fix-double-free-addresses-on-corrupt-DNS-res.patch * 0020-net-dns-Don-t-read-past-the-end-of-the-string-we-re-.patch * 0021-net-tftp-Prevent-a-UAF-and-double-free-from-a-failed.patch * 0022-net-tftp-Avoid-a-trivial-UAF.patch * 0023-net-http-Do-not-tear-down-socket-if-it-s-already-bee.patch OBS-URL: https://build.opensuse.org/request/show/981228 OBS-URL: https://build.opensuse.org/package/show/Base:System/grub2?expand=0&rev=416
138 lines
5.0 KiB
Diff
138 lines
5.0 KiB
Diff
From 2576115cc77c45d2a77d7629b8c2f26a3a58822b Mon Sep 17 00:00:00 2001
|
|
From: Darren Kenny <darren.kenny@oracle.com>
|
|
Date: Tue, 29 Mar 2022 15:52:46 +0000
|
|
Subject: [PATCH 30/32] fs/btrfs: Fix more ASAN and SEGV issues found with
|
|
fuzzing
|
|
|
|
The fuzzer is generating btrfs file systems that have chunks with
|
|
invalid combinations of stripes and substripes for the given RAID
|
|
configurations.
|
|
|
|
After examining the Linux kernel fs/btrfs/tree-checker.c code, it
|
|
appears that sub-stripes should only be applied to RAID10, and in that
|
|
case there should only ever be 2 of them.
|
|
|
|
Similarly, RAID single should only have 1 stripe, and RAID1/1C3/1C4
|
|
should have 2. 3 or 4 stripes respectively, which is what redundancy
|
|
corresponds.
|
|
|
|
Some of the chunks ended up with a size of 0, which grub_malloc() still
|
|
returned memory for and in turn generated ASAN errors later when
|
|
accessed.
|
|
|
|
While it would be possible to specifically limit the number of stripes,
|
|
a more correct test was on the combination of the chunk item, and the
|
|
number of stripes by the size of the chunk stripe structure in
|
|
comparison to the size of the chunk itself.
|
|
|
|
Signed-off-by: Darren Kenny <darren.kenny@oracle.com>
|
|
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
|
|
---
|
|
grub-core/fs/btrfs.c | 55 ++++++++++++++++++++++++++++++++++++++++++++
|
|
1 file changed, 55 insertions(+)
|
|
|
|
diff --git a/grub-core/fs/btrfs.c b/grub-core/fs/btrfs.c
|
|
index 626fd2daa0..62fe5e6a69 100644
|
|
--- a/grub-core/fs/btrfs.c
|
|
+++ b/grub-core/fs/btrfs.c
|
|
@@ -938,6 +938,12 @@ grub_btrfs_read_logical (struct grub_btrfs_data *data, grub_disk_addr_t addr,
|
|
return grub_error (GRUB_ERR_BAD_FS,
|
|
"couldn't find the chunk descriptor");
|
|
|
|
+ if (!chsize)
|
|
+ {
|
|
+ grub_dprintf ("btrfs", "zero-size chunk\n");
|
|
+ return grub_error (GRUB_ERR_BAD_FS,
|
|
+ "got an invalid zero-size chunk");
|
|
+ }
|
|
chunk = grub_malloc (chsize);
|
|
if (!chunk)
|
|
return grub_errno;
|
|
@@ -996,6 +1002,16 @@ grub_btrfs_read_logical (struct grub_btrfs_data *data, grub_disk_addr_t addr,
|
|
stripe_length = grub_divmod64 (grub_le_to_cpu64 (chunk->size),
|
|
nstripes,
|
|
NULL);
|
|
+
|
|
+ /* For single, there should be exactly 1 stripe. */
|
|
+ if (grub_le_to_cpu16 (chunk->nstripes) != 1)
|
|
+ {
|
|
+ grub_dprintf ("btrfs", "invalid RAID_SINGLE: nstripes != 1 (%u)\n",
|
|
+ grub_le_to_cpu16 (chunk->nstripes));
|
|
+ return grub_error (GRUB_ERR_BAD_FS,
|
|
+ "invalid RAID_SINGLE: nstripes != 1 (%u)",
|
|
+ grub_le_to_cpu16 (chunk->nstripes));
|
|
+ }
|
|
if (stripe_length == 0)
|
|
stripe_length = 512;
|
|
stripen = grub_divmod64 (off, stripe_length, &stripe_offset);
|
|
@@ -1015,6 +1031,19 @@ grub_btrfs_read_logical (struct grub_btrfs_data *data, grub_disk_addr_t addr,
|
|
stripen = 0;
|
|
stripe_offset = off;
|
|
csize = grub_le_to_cpu64 (chunk->size) - off;
|
|
+
|
|
+ /*
|
|
+ * Redundancy, and substripes only apply to RAID10, and there
|
|
+ * should be exactly 2 sub-stripes.
|
|
+ */
|
|
+ if (grub_le_to_cpu16 (chunk->nstripes) != redundancy)
|
|
+ {
|
|
+ grub_dprintf ("btrfs", "invalid RAID1: nstripes != %u (%u)\n",
|
|
+ redundancy, grub_le_to_cpu16 (chunk->nstripes));
|
|
+ return grub_error (GRUB_ERR_BAD_FS,
|
|
+ "invalid RAID1: nstripes != %u (%u)",
|
|
+ redundancy, grub_le_to_cpu16 (chunk->nstripes));
|
|
+ }
|
|
break;
|
|
}
|
|
case GRUB_BTRFS_CHUNK_TYPE_RAID0:
|
|
@@ -1051,6 +1080,20 @@ grub_btrfs_read_logical (struct grub_btrfs_data *data, grub_disk_addr_t addr,
|
|
stripe_offset = low + chunk_stripe_length
|
|
* high;
|
|
csize = chunk_stripe_length - low;
|
|
+
|
|
+ /*
|
|
+ * Substripes only apply to RAID10, and there
|
|
+ * should be exactly 2 sub-stripes.
|
|
+ */
|
|
+ if (grub_le_to_cpu16 (chunk->nsubstripes) != 2)
|
|
+ {
|
|
+ grub_dprintf ("btrfs", "invalid RAID10: nsubstripes != 2 (%u)",
|
|
+ grub_le_to_cpu16 (chunk->nsubstripes));
|
|
+ return grub_error (GRUB_ERR_BAD_FS,
|
|
+ "invalid RAID10: nsubstripes != 2 (%u)",
|
|
+ grub_le_to_cpu16 (chunk->nsubstripes));
|
|
+ }
|
|
+
|
|
break;
|
|
}
|
|
case GRUB_BTRFS_CHUNK_TYPE_RAID5:
|
|
@@ -1150,6 +1193,8 @@ grub_btrfs_read_logical (struct grub_btrfs_data *data, grub_disk_addr_t addr,
|
|
|
|
for (j = 0; j < 2; j++)
|
|
{
|
|
+ grub_size_t est_chunk_alloc = 0;
|
|
+
|
|
grub_dprintf ("btrfs", "chunk 0x%" PRIxGRUB_UINT64_T
|
|
"+0x%" PRIxGRUB_UINT64_T
|
|
" (%d stripes (%d substripes) of %"
|
|
@@ -1162,6 +1207,16 @@ grub_btrfs_read_logical (struct grub_btrfs_data *data, grub_disk_addr_t addr,
|
|
grub_dprintf ("btrfs", "reading laddr 0x%" PRIxGRUB_UINT64_T "\n",
|
|
addr);
|
|
|
|
+ if (grub_mul (sizeof (struct grub_btrfs_chunk_stripe),
|
|
+ grub_le_to_cpu16 (chunk->nstripes), &est_chunk_alloc) ||
|
|
+ grub_add (est_chunk_alloc,
|
|
+ sizeof (struct grub_btrfs_chunk_item), &est_chunk_alloc) ||
|
|
+ est_chunk_alloc > chunk->size)
|
|
+ {
|
|
+ err = GRUB_ERR_BAD_FS;
|
|
+ break;
|
|
+ }
|
|
+
|
|
if (is_raid56)
|
|
{
|
|
err = btrfs_read_from_chunk (data, chunk, stripen,
|
|
--
|
|
2.34.1
|
|
|