mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 03:49:32 +02:00
grub: patch CVE-2025-0677, CVE-2025-0684, CVE-2025-0685, CVE-2025-0686 and CVE-2025-0689
Cherry-pick patch mentioning these CVEs. (From OE-Core rev: f25e1296b8265414061b0b8f12110c6ee22bc7be) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
committed by
Steve Sakoman
parent
6a280848be
commit
c5b4efb1b0
@@ -0,0 +1,377 @@
|
|||||||
|
From 47b2dfc7953f70f98ddf35dfdd6e7f4f20283b10 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Daniel Axtens <dja@axtens.net>
|
||||||
|
Date: Sat, 23 Mar 2024 16:20:45 +1100
|
||||||
|
Subject: [PATCH] fs: Disable many filesystems under lockdown
|
||||||
|
|
||||||
|
The idea is to permit the following: btrfs, cpio, exfat, ext, f2fs, fat,
|
||||||
|
hfsplus, iso9660, squash4, tar, xfs and zfs.
|
||||||
|
|
||||||
|
The JFS, ReiserFS, romfs, UDF and UFS security vulnerabilities were
|
||||||
|
reported by Jonathan Bar Or <jonathanbaror@gmail.com>.
|
||||||
|
|
||||||
|
Fixes: CVE-2025-0677
|
||||||
|
Fixes: CVE-2025-0684
|
||||||
|
Fixes: CVE-2025-0685
|
||||||
|
Fixes: CVE-2025-0686
|
||||||
|
Fixes: CVE-2025-0689
|
||||||
|
|
||||||
|
Suggested-by: Daniel Axtens <dja@axtens.net>
|
||||||
|
Signed-off-by: Daniel Axtens <dja@axtens.net>
|
||||||
|
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
|
||||||
|
|
||||||
|
CVE: CVE-2025-0677
|
||||||
|
CVE: CVE-2025-0684
|
||||||
|
CVE: CVE-2025-0685
|
||||||
|
CVE: CVE-2025-0686
|
||||||
|
CVE: CVE-2025-0689
|
||||||
|
Upstream-Status: Backport [https://git.savannah.gnu.org/cgit/grub.git/commit/?id=47b2dfc7953f70f98ddf35dfdd6e7f4f20283b10]
|
||||||
|
Signed-off-by: Peter Marko <peter.marko@siemens.com>
|
||||||
|
---
|
||||||
|
grub-core/fs/affs.c | 9 +++++++--
|
||||||
|
grub-core/fs/cbfs.c | 9 +++++++--
|
||||||
|
grub-core/fs/jfs.c | 9 +++++++--
|
||||||
|
grub-core/fs/minix.c | 9 +++++++--
|
||||||
|
grub-core/fs/nilfs2.c | 9 +++++++--
|
||||||
|
grub-core/fs/ntfs.c | 9 +++++++--
|
||||||
|
grub-core/fs/reiserfs.c | 9 +++++++--
|
||||||
|
grub-core/fs/romfs.c | 9 +++++++--
|
||||||
|
grub-core/fs/sfs.c | 9 +++++++--
|
||||||
|
grub-core/fs/udf.c | 9 +++++++--
|
||||||
|
grub-core/fs/ufs.c | 9 +++++++--
|
||||||
|
11 files changed, 77 insertions(+), 22 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/grub-core/fs/affs.c b/grub-core/fs/affs.c
|
||||||
|
index ed606b3f1..352f5d232 100644
|
||||||
|
--- a/grub-core/fs/affs.c
|
||||||
|
+++ b/grub-core/fs/affs.c
|
||||||
|
@@ -26,6 +26,7 @@
|
||||||
|
#include <grub/types.h>
|
||||||
|
#include <grub/fshelp.h>
|
||||||
|
#include <grub/charset.h>
|
||||||
|
+#include <grub/lockdown.h>
|
||||||
|
|
||||||
|
GRUB_MOD_LICENSE ("GPLv3+");
|
||||||
|
|
||||||
|
@@ -703,11 +704,15 @@ static struct grub_fs grub_affs_fs =
|
||||||
|
|
||||||
|
GRUB_MOD_INIT(affs)
|
||||||
|
{
|
||||||
|
- grub_fs_register (&grub_affs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ {
|
||||||
|
+ grub_fs_register (&grub_affs_fs);
|
||||||
|
+ }
|
||||||
|
my_mod = mod;
|
||||||
|
}
|
||||||
|
|
||||||
|
GRUB_MOD_FINI(affs)
|
||||||
|
{
|
||||||
|
- grub_fs_unregister (&grub_affs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ grub_fs_unregister (&grub_affs_fs);
|
||||||
|
}
|
||||||
|
diff --git a/grub-core/fs/cbfs.c b/grub-core/fs/cbfs.c
|
||||||
|
index 8ab7106af..f6349df34 100644
|
||||||
|
--- a/grub-core/fs/cbfs.c
|
||||||
|
+++ b/grub-core/fs/cbfs.c
|
||||||
|
@@ -26,6 +26,7 @@
|
||||||
|
#include <grub/dl.h>
|
||||||
|
#include <grub/i18n.h>
|
||||||
|
#include <grub/cbfs_core.h>
|
||||||
|
+#include <grub/lockdown.h>
|
||||||
|
|
||||||
|
GRUB_MOD_LICENSE ("GPLv3+");
|
||||||
|
|
||||||
|
@@ -390,12 +391,16 @@ GRUB_MOD_INIT (cbfs)
|
||||||
|
#if (defined (__i386__) || defined (__x86_64__)) && !defined (GRUB_UTIL) && !defined (GRUB_MACHINE_EMU) && !defined (GRUB_MACHINE_XEN)
|
||||||
|
init_cbfsdisk ();
|
||||||
|
#endif
|
||||||
|
- grub_fs_register (&grub_cbfs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ {
|
||||||
|
+ grub_fs_register (&grub_cbfs_fs);
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
|
||||||
|
GRUB_MOD_FINI (cbfs)
|
||||||
|
{
|
||||||
|
- grub_fs_unregister (&grub_cbfs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ grub_fs_unregister (&grub_cbfs_fs);
|
||||||
|
#if (defined (__i386__) || defined (__x86_64__)) && !defined (GRUB_UTIL) && !defined (GRUB_MACHINE_EMU) && !defined (GRUB_MACHINE_XEN)
|
||||||
|
fini_cbfsdisk ();
|
||||||
|
#endif
|
||||||
|
diff --git a/grub-core/fs/jfs.c b/grub-core/fs/jfs.c
|
||||||
|
index 6f7c43904..c0bbab8a9 100644
|
||||||
|
--- a/grub-core/fs/jfs.c
|
||||||
|
+++ b/grub-core/fs/jfs.c
|
||||||
|
@@ -26,6 +26,7 @@
|
||||||
|
#include <grub/types.h>
|
||||||
|
#include <grub/charset.h>
|
||||||
|
#include <grub/i18n.h>
|
||||||
|
+#include <grub/lockdown.h>
|
||||||
|
|
||||||
|
GRUB_MOD_LICENSE ("GPLv3+");
|
||||||
|
|
||||||
|
@@ -963,11 +964,15 @@ static struct grub_fs grub_jfs_fs =
|
||||||
|
|
||||||
|
GRUB_MOD_INIT(jfs)
|
||||||
|
{
|
||||||
|
- grub_fs_register (&grub_jfs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ {
|
||||||
|
+ grub_fs_register (&grub_jfs_fs);
|
||||||
|
+ }
|
||||||
|
my_mod = mod;
|
||||||
|
}
|
||||||
|
|
||||||
|
GRUB_MOD_FINI(jfs)
|
||||||
|
{
|
||||||
|
- grub_fs_unregister (&grub_jfs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ grub_fs_unregister (&grub_jfs_fs);
|
||||||
|
}
|
||||||
|
diff --git a/grub-core/fs/minix.c b/grub-core/fs/minix.c
|
||||||
|
index 5354951d1..c267298b5 100644
|
||||||
|
--- a/grub-core/fs/minix.c
|
||||||
|
+++ b/grub-core/fs/minix.c
|
||||||
|
@@ -25,6 +25,7 @@
|
||||||
|
#include <grub/dl.h>
|
||||||
|
#include <grub/types.h>
|
||||||
|
#include <grub/i18n.h>
|
||||||
|
+#include <grub/lockdown.h>
|
||||||
|
|
||||||
|
GRUB_MOD_LICENSE ("GPLv3+");
|
||||||
|
|
||||||
|
@@ -734,7 +735,10 @@ GRUB_MOD_INIT(minix)
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
- grub_fs_register (&grub_minix_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ {
|
||||||
|
+ grub_fs_register (&grub_minix_fs);
|
||||||
|
+ }
|
||||||
|
my_mod = mod;
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -756,5 +760,6 @@ GRUB_MOD_FINI(minix)
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
- grub_fs_unregister (&grub_minix_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ grub_fs_unregister (&grub_minix_fs);
|
||||||
|
}
|
||||||
|
diff --git a/grub-core/fs/nilfs2.c b/grub-core/fs/nilfs2.c
|
||||||
|
index fc7374ead..08abf173f 100644
|
||||||
|
--- a/grub-core/fs/nilfs2.c
|
||||||
|
+++ b/grub-core/fs/nilfs2.c
|
||||||
|
@@ -34,6 +34,7 @@
|
||||||
|
#include <grub/dl.h>
|
||||||
|
#include <grub/types.h>
|
||||||
|
#include <grub/fshelp.h>
|
||||||
|
+#include <grub/lockdown.h>
|
||||||
|
|
||||||
|
GRUB_MOD_LICENSE ("GPLv3+");
|
||||||
|
|
||||||
|
@@ -1231,11 +1232,15 @@ GRUB_MOD_INIT (nilfs2)
|
||||||
|
grub_nilfs2_dat_entry));
|
||||||
|
COMPILE_TIME_ASSERT (1 << LOG_INODE_SIZE
|
||||||
|
== sizeof (struct grub_nilfs2_inode));
|
||||||
|
- grub_fs_register (&grub_nilfs2_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ {
|
||||||
|
+ grub_fs_register (&grub_nilfs2_fs);
|
||||||
|
+ }
|
||||||
|
my_mod = mod;
|
||||||
|
}
|
||||||
|
|
||||||
|
GRUB_MOD_FINI (nilfs2)
|
||||||
|
{
|
||||||
|
- grub_fs_unregister (&grub_nilfs2_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ grub_fs_unregister (&grub_nilfs2_fs);
|
||||||
|
}
|
||||||
|
diff --git a/grub-core/fs/ntfs.c b/grub-core/fs/ntfs.c
|
||||||
|
index de435aa14..8cc2ba3d5 100644
|
||||||
|
--- a/grub-core/fs/ntfs.c
|
||||||
|
+++ b/grub-core/fs/ntfs.c
|
||||||
|
@@ -27,6 +27,7 @@
|
||||||
|
#include <grub/fshelp.h>
|
||||||
|
#include <grub/ntfs.h>
|
||||||
|
#include <grub/charset.h>
|
||||||
|
+#include <grub/lockdown.h>
|
||||||
|
|
||||||
|
GRUB_MOD_LICENSE ("GPLv3+");
|
||||||
|
|
||||||
|
@@ -1320,11 +1321,15 @@ static struct grub_fs grub_ntfs_fs =
|
||||||
|
|
||||||
|
GRUB_MOD_INIT (ntfs)
|
||||||
|
{
|
||||||
|
- grub_fs_register (&grub_ntfs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ {
|
||||||
|
+ grub_fs_register (&grub_ntfs_fs);
|
||||||
|
+ }
|
||||||
|
my_mod = mod;
|
||||||
|
}
|
||||||
|
|
||||||
|
GRUB_MOD_FINI (ntfs)
|
||||||
|
{
|
||||||
|
- grub_fs_unregister (&grub_ntfs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ grub_fs_unregister (&grub_ntfs_fs);
|
||||||
|
}
|
||||||
|
diff --git a/grub-core/fs/reiserfs.c b/grub-core/fs/reiserfs.c
|
||||||
|
index 36b26ac98..cdef2eba0 100644
|
||||||
|
--- a/grub-core/fs/reiserfs.c
|
||||||
|
+++ b/grub-core/fs/reiserfs.c
|
||||||
|
@@ -39,6 +39,7 @@
|
||||||
|
#include <grub/types.h>
|
||||||
|
#include <grub/fshelp.h>
|
||||||
|
#include <grub/i18n.h>
|
||||||
|
+#include <grub/lockdown.h>
|
||||||
|
|
||||||
|
GRUB_MOD_LICENSE ("GPLv3+");
|
||||||
|
|
||||||
|
@@ -1417,11 +1418,15 @@ static struct grub_fs grub_reiserfs_fs =
|
||||||
|
|
||||||
|
GRUB_MOD_INIT(reiserfs)
|
||||||
|
{
|
||||||
|
- grub_fs_register (&grub_reiserfs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ {
|
||||||
|
+ grub_fs_register (&grub_reiserfs_fs);
|
||||||
|
+ }
|
||||||
|
my_mod = mod;
|
||||||
|
}
|
||||||
|
|
||||||
|
GRUB_MOD_FINI(reiserfs)
|
||||||
|
{
|
||||||
|
- grub_fs_unregister (&grub_reiserfs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ grub_fs_unregister (&grub_reiserfs_fs);
|
||||||
|
}
|
||||||
|
diff --git a/grub-core/fs/romfs.c b/grub-core/fs/romfs.c
|
||||||
|
index 1f7dcfca1..acf8dd21e 100644
|
||||||
|
--- a/grub-core/fs/romfs.c
|
||||||
|
+++ b/grub-core/fs/romfs.c
|
||||||
|
@@ -23,6 +23,7 @@
|
||||||
|
#include <grub/disk.h>
|
||||||
|
#include <grub/fs.h>
|
||||||
|
#include <grub/fshelp.h>
|
||||||
|
+#include <grub/lockdown.h>
|
||||||
|
|
||||||
|
GRUB_MOD_LICENSE ("GPLv3+");
|
||||||
|
|
||||||
|
@@ -475,10 +476,14 @@ static struct grub_fs grub_romfs_fs =
|
||||||
|
|
||||||
|
GRUB_MOD_INIT(romfs)
|
||||||
|
{
|
||||||
|
- grub_fs_register (&grub_romfs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ {
|
||||||
|
+ grub_fs_register (&grub_romfs_fs);
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
|
||||||
|
GRUB_MOD_FINI(romfs)
|
||||||
|
{
|
||||||
|
- grub_fs_unregister (&grub_romfs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ grub_fs_unregister (&grub_romfs_fs);
|
||||||
|
}
|
||||||
|
diff --git a/grub-core/fs/sfs.c b/grub-core/fs/sfs.c
|
||||||
|
index 983e88008..f64bdd2df 100644
|
||||||
|
--- a/grub-core/fs/sfs.c
|
||||||
|
+++ b/grub-core/fs/sfs.c
|
||||||
|
@@ -26,6 +26,7 @@
|
||||||
|
#include <grub/types.h>
|
||||||
|
#include <grub/fshelp.h>
|
||||||
|
#include <grub/charset.h>
|
||||||
|
+#include <grub/lockdown.h>
|
||||||
|
#include <grub/safemath.h>
|
||||||
|
|
||||||
|
GRUB_MOD_LICENSE ("GPLv3+");
|
||||||
|
@@ -779,11 +780,15 @@ static struct grub_fs grub_sfs_fs =
|
||||||
|
|
||||||
|
GRUB_MOD_INIT(sfs)
|
||||||
|
{
|
||||||
|
- grub_fs_register (&grub_sfs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ {
|
||||||
|
+ grub_fs_register (&grub_sfs_fs);
|
||||||
|
+ }
|
||||||
|
my_mod = mod;
|
||||||
|
}
|
||||||
|
|
||||||
|
GRUB_MOD_FINI(sfs)
|
||||||
|
{
|
||||||
|
- grub_fs_unregister (&grub_sfs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ grub_fs_unregister (&grub_sfs_fs);
|
||||||
|
}
|
||||||
|
diff --git a/grub-core/fs/udf.c b/grub-core/fs/udf.c
|
||||||
|
index b836e6107..a60643be1 100644
|
||||||
|
--- a/grub-core/fs/udf.c
|
||||||
|
+++ b/grub-core/fs/udf.c
|
||||||
|
@@ -27,6 +27,7 @@
|
||||||
|
#include <grub/fshelp.h>
|
||||||
|
#include <grub/charset.h>
|
||||||
|
#include <grub/datetime.h>
|
||||||
|
+#include <grub/lockdown.h>
|
||||||
|
#include <grub/udf.h>
|
||||||
|
#include <grub/safemath.h>
|
||||||
|
|
||||||
|
@@ -1455,11 +1456,15 @@ static struct grub_fs grub_udf_fs = {
|
||||||
|
|
||||||
|
GRUB_MOD_INIT (udf)
|
||||||
|
{
|
||||||
|
- grub_fs_register (&grub_udf_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ {
|
||||||
|
+ grub_fs_register (&grub_udf_fs);
|
||||||
|
+ }
|
||||||
|
my_mod = mod;
|
||||||
|
}
|
||||||
|
|
||||||
|
GRUB_MOD_FINI (udf)
|
||||||
|
{
|
||||||
|
- grub_fs_unregister (&grub_udf_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ grub_fs_unregister (&grub_udf_fs);
|
||||||
|
}
|
||||||
|
diff --git a/grub-core/fs/ufs.c b/grub-core/fs/ufs.c
|
||||||
|
index 01235101b..6b496e7b8 100644
|
||||||
|
--- a/grub-core/fs/ufs.c
|
||||||
|
+++ b/grub-core/fs/ufs.c
|
||||||
|
@@ -25,6 +25,7 @@
|
||||||
|
#include <grub/dl.h>
|
||||||
|
#include <grub/types.h>
|
||||||
|
#include <grub/i18n.h>
|
||||||
|
+#include <grub/lockdown.h>
|
||||||
|
|
||||||
|
GRUB_MOD_LICENSE ("GPLv3+");
|
||||||
|
|
||||||
|
@@ -899,7 +900,10 @@ GRUB_MOD_INIT(ufs1)
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
- grub_fs_register (&grub_ufs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ {
|
||||||
|
+ grub_fs_register (&grub_ufs_fs);
|
||||||
|
+ }
|
||||||
|
my_mod = mod;
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -913,6 +917,7 @@ GRUB_MOD_FINI(ufs1)
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
- grub_fs_unregister (&grub_ufs_fs);
|
||||||
|
+ if (!grub_is_lockdown ())
|
||||||
|
+ grub_fs_unregister (&grub_ufs_fs);
|
||||||
|
}
|
||||||
|
|
||||||
@@ -35,6 +35,7 @@ SRC_URI = "${GNU_MIRROR}/grub/grub-${PV}.tar.gz \
|
|||||||
file://CVE-2025-0690.patch \
|
file://CVE-2025-0690.patch \
|
||||||
file://CVE-2025-1118.patch \
|
file://CVE-2025-1118.patch \
|
||||||
file://CVE-2024-45778_CVE-2024-45779.patch \
|
file://CVE-2024-45778_CVE-2024-45779.patch \
|
||||||
|
file://CVE-2025-0677_CVE-2025-0684_CVE-2025-0685_CVE-2025-0686_CVE-2025-0689.patch \
|
||||||
"
|
"
|
||||||
|
|
||||||
SRC_URI[sha256sum] = "b30919fa5be280417c17ac561bb1650f60cfb80cc6237fa1e2b6f56154cb9c91"
|
SRC_URI[sha256sum] = "b30919fa5be280417c17ac561bb1650f60cfb80cc6237fa1e2b6f56154cb9c91"
|
||||||
|
|||||||
Reference in New Issue
Block a user