summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/grub/files/CVE-2020-27779_3.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-bsp/grub/files/CVE-2020-27779_3.patch')
-rw-r--r--meta/recipes-bsp/grub/files/CVE-2020-27779_3.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-bsp/grub/files/CVE-2020-27779_3.patch b/meta/recipes-bsp/grub/files/CVE-2020-27779_3.patch
new file mode 100644
index 0000000000..f9a6a73ebc
--- /dev/null
+++ b/meta/recipes-bsp/grub/files/CVE-2020-27779_3.patch
@@ -0,0 +1,37 @@
1From e4f5c16f76e137b3beb6b61a6d2435e54fcb495c Mon Sep 17 00:00:00 2001
2From: Javier Martinez Canillas <javierm@redhat.com>
3Date: Wed, 24 Feb 2021 22:59:59 +0100
4Subject: [PATCH] commands/setpci: Restrict setpci command when locked down
5
6This command can set PCI devices register values, which makes it dangerous
7in a locked down configuration. Restrict it so can't be used on this setup.
8
9Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
10Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
11
12Upstream-Status: Backport [https://git.savannah.gnu.org/cgit/grub.git/commit/?id=58b77d4069823b44c5fa916fa8ddfc9c4cd51e02]
13CVE: CVE-2020-27779
14Signed-off-by: Marta Rybczynska <marta.rybczynska@huawei.com>
15---
16 grub-core/commands/setpci.c | 8 ++++----
17 1 file changed, 4 insertions(+), 4 deletions(-)
18
19diff --git a/grub-core/commands/setpci.c b/grub-core/commands/setpci.c
20index d5bc97d..fa2ba7d 100644
21--- a/grub-core/commands/setpci.c
22+++ b/grub-core/commands/setpci.c
23@@ -329,10 +329,10 @@ static grub_extcmd_t cmd;
24
25 GRUB_MOD_INIT(setpci)
26 {
27- cmd = grub_register_extcmd ("setpci", grub_cmd_setpci, 0,
28- N_("[-s POSITION] [-d DEVICE] [-v VAR] "
29- "REGISTER[=VALUE[:MASK]]"),
30- N_("Manipulate PCI devices."), options);
31+ cmd = grub_register_extcmd_lockdown ("setpci", grub_cmd_setpci, 0,
32+ N_("[-s POSITION] [-d DEVICE] [-v VAR] "
33+ "REGISTER[=VALUE[:MASK]]"),
34+ N_("Manipulate PCI devices."), options);
35 }
36
37 GRUB_MOD_FINI(setpci)